/*css Reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: baseline;
}
 *
{
  	-moz-user-select:none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: #FFF;
	background: #000000;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}

/*end Reset*/

/*Layout*/

#viewerarea{
	margin-right: auto;
	margin-left: auto;
	position: relative;
	width: 640px;
	height: 504px;
	border: 1px solid #333;
}

#message{
	height: 10px;
	font-size: 9px;
}

#video{
	height: 480px;
	width: 640px;
	float: left;
	background-repeat: no-repeat;
	background-position: right top;
}

#videowrapper{position:relative;}
#videocontrols{
	height: 24px;
	line-height: 24px;
	background-image: url(../images/controlbar-bg.png);
	background-repeat: repeat-x;
	background-position: left center;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
}
#readahead{
	background-color:#FFF;
	background-repeat:no-repeat;
	background-position:-1200px top;
	background-image: url(../images/read-ahead-bg.png);
	}

/*end Layout*/

/*Styling*/
a{color:#39F;}
/* Styling of the channels table */
/*control bar styling*/
.vcsection{
	float:left;
	height:24px;
	vertical-align:middle;
	text-align:center;
}

.vcbutton{
	display:inline-block;
	width:24px;
	padding-left:1px;
	padding-right:1px;
	background-repeat: no-repeat;
	background-position: center center;
	height: 24px;
}

#playbutton{background-image: url(../images/btn-play1.png);}
#playbutton:hover{background-image: url(../images/btn-play2.png);}
#playbutton:active{background-image: url(../images/btn-play3.png);}
#playbutton.paused{background-image:url(../images/btn-pause1.png);}
#playbutton.paused:hover{background-image:url(../images/btn-pause2.png);}
#playbutton.paused:active{background-image:url(../images/btn-pause3.png);}

#stopbutton{background-image: url(../images/btn-stop1.png);}
#stopbutton:hover{background-image: url(../images/btn-stop2.png);}
#stopbutton:active{background-image: url(../images/btn-stop3.png);}

#fullbutton{background-image: url(../images/btn-fullscreen1.png);}
#fullbutton:hover{background-image: url(../images/btn-fullscreen2.png);}
#fullbutton:active{background-image: url(../images/btn-fullscreen3.png);}

/*end control bar styling*/

/*test result styling*/
#testresults ul li{
	padding-left: 26px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
	background-image: url(../images/ok.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#testresults ul li div{
	display:none;
	color:#CCC;
}
#testresults ul li.error{
background-image: url(../images/error.png);}
/*end test result styling*/

/*end Styling*/

