
/** 
 * Set the page defaults, and 0 the margin and padding. 
 * 
 **/
html, body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color:#444444;
	background-color: #282828;
}

/** 
 * The is the outer container which includes the player container, 
 * tehe technical support link, and the StreamOn! logo.
 **/
#outer_container {
	/* This centers the outer box */
	margin-right: auto;
	margin-left: auto;
	width: 480px;

	margin-top: 15px;
	margin-bottom: 30px;

	padding-bottom: 0px;	
	padding-left:0px;
	padding-right:0px;
	padding-top: 0px;
}

/** 
 * The is the player container which includes the metadata, logo,
 * stream buttons, and the volume buttons.
 **/
#player_container {
	display: block;
	background-color: #000000;
	background-image: url('/player/player2011elements/gradient-noalpha.gif');
	background-repeat: repeat-x;
	background-position: bottom;

	border: 3px solid #323232;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#metadata_box {
	display: block;
	background-color: #FFFFFF;
	margin: 10px;
	padding: 15px;

	font-size: 16px;

	border: 3px solid #9BCC37;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

#streamon_status {
	width: 315px;
	text-align: left;
}

#stream_buttons {
	margin: 15px;
}

span.player_btn {
}

#logo_box {
	display: block;
	background-color: #FFFFFF;
	border: 1px solid #444444;
	padding: 5px;
	/* IE will place the image below the two corner images if there is not
	 * enough room to place the image inbetween. thus: 89 + 14 +1 = 104
	 */
	width: 104px;
	height: 42px;
	/* This is used to "push down" the bottom of the player container */
	margin-bottom: 10px;
	margin-top: auto;
	margin-right: auto;
	margin-left: auto;
	/* you can do custom positioning using the below rules.
	margin-right: 175px;
	margin-left: 175px;*/

	border: 1px solid #000000;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
}

#logo_box_expander {
	margin: auto;
	width: 90px;
	height: 42px;
}

#volume_box {
	margin-right: 10px;
	margin-top: 8px;
	width: 150px;
	/*border: 1px solid blue;*/
}

.volume_buttons {
	margin-top: 6px;
}

#streamon_mute {
	margin-left: 8px;
}

#streamon_unmute {
	margin-right: 8px;
}

#streamon_volume {
        width: 140px;
        height: 22px;
        margin-right: auto;
        margin-left: auto;

        font-weight: bold;
	text-align: left;

        background-color: #DDDDDD;
        padding: 2px;

        -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
	border-radius: 6px;
}

#streamon_volume .level {
        background-color: #999999;
        width: 55%;
        height: 21px;
	
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 6px;
}


/** 
 * Bottom container for the technical support link and the 
 * StreamOn! logo.
 **/
#bottom_container {
	/* Distance between the StreamOn! logo and the player box */
	margin-top: 30px;
}

#streamon_logo_container {
}

#streamon_logo_container img {
    border: 0px;
}

#streamon_support {
	font-size: 12px;
	color: #999999;
}

/** 
 * Generalally useful classes.
 * 
 **/
.left_float {
	float: left;	
	/* this fixes the IE doubled float margin bug */
	display: inline;
}
.right_float {
	float: right;
	/* this fixes the IE doubled float margin bug */
	display: inline;
}
/* This rule is used in HTML rendered by jQuery */
div.clear {
	clear: both;
}



