/* CSS Document */

/*
Begin ClipChannel CSS

Simply toggle the display attributes as you wish.
block = show it
none = hide it
*/

/* Show/Hide Genre Buckets */
div.top_news
{
	display: block;
}
div.business
{
	display: block;
}
div.entertainment
{
	display: block;
}
div.strange_news
{
	display: block;
}
div.tech
{
	display: block;
}

/*
Show/Hide Individual Clips
Up to 10 clips can be shown per genre
*/
div #cm_clip_1, div #cm_clip_2, div #cm_clip_3, div #cm_clip_4, div #cm_clip_5, div #cm_clip_6, div #cm_clip_7, div #cm_clip_8, div #cm_clip_9, div #cm_clip_10 {
	display: block;
}

/* General Clip CSS */

/* main container and border */
.cm_clip
{
	display: block;
	float: left;
	margin-bottom: 10px;
	margin-right: 10px;
	padding: 3px;
	border: 1px solid #CCCCCC;
	width: 242px;
	min-height: 200px;
}

/* thumbnail image */
.cm_thumbnail
{
	display: block;
	padding-right: 5px;
	border: 0px;
	width: 100px;
	height: 75px;
	float: left;
}

/* play button */
.cm_button
{
	display: block;
	padding-right: 5px;
	border: 0px;
	width: 100px;
	float: left;
	clear: both;
}

/* title link */
.cm_title
{
	display: block;
	vertical-align: top;
}

/* title link style */
/*
Note: Simply comment this out to have the links inherit
the default style for your page, or add as many link attributes
as you wish to customize!
*/
a.cm_title_link:link, a.cm_title_link:visited
{
	font-weight: bold;
}

/* secondary header */
/*
Note: This is usually used for a header when the above 
".cm_title" is turned OFF, as the information is identical.
*/
.cm_show_name
{
	display: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	vertical-align: top;
}

/* content provider, market, etc. */
.cm_channel_info
{
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	vertical-align: top;
}

/* time and date */
.cm_time
{
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000000;
	vertical-align: top;
}

/* descriptive text */
.cm_description
{
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #000000;
	vertical-align: top;
}

/*
End ClipChannel CSS
*/
