/* Custom Styles */
:focus{outline:none;}
p + p {
	margin-top:-1.5em;
	text-indent:0;
}

body {
	font-size: 0.7em;
}

a,
a:visited {
	color: #000000;
}

#top_nav {
	margin-top:50px;
}
#top_nav a,
#top_nav a:visited {
	width:120px;
	height:25px;
	background-image: url(../images/interface/top_nav_bg.gif);
	background-repeat: no-repeat;
	display: block;
	float: right;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	margin-right:5px;
	font-size:1.3em;
	padding-top:5px;
}

#top_nav a:hover,
#top_nav a.active {
	background-position: -120px 0;
}

h1{
	font-size: 3em;
	margin-bottom:0;
}

#info_text p {
	font-size:1.3em;
}

#options a {
	font-size: 1.5em;
}

#options .tabs a {
	font-size: 0.95em;
}


#footer {
	text-align: center;
}

#player_title h2 {
	background:none repeat scroll 0 0 #000000;
	color:#FFFFFF;
	font-size:1.2em;
	font-weight:bold;
	padding-left:10px;
	margin-bottom: 0;
}

#player {
	height:386px;
	background-color: #CCC;
}

#contact {
	margin-top:20px;
}

/* Scroller */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
#player_nav {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 810px;
	height:100px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(../images/interface/scroller_grad.png) repeat-x;
	float: left;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
#player_nav .player_nav_items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.player_nav_items div {
	float:left;
	width:810px;
}

/* single scrollable item */
#player_nav img {
	float:left;
	margin:6px 5px 9px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:80px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
#player_nav .active {
	border:2px solid #000;
	position:relative;
	cursor:default;
}

.scroller_nav {
	height:102px;
	width:69px;
	float: left;
}

/* Scroller Buttons */
/* this makes it possible to add next button beside scrollable */
.scrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../images/interface/scroller_nav.gif) no-repeat;
	display:block;
	width:69px;
	height:102px;
	float:left;
	margin:0;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right 				{ background-position: 0 -102px; clear:right; margin-right: 0px;}
a.right:hover 		{ background-position:-69px -102px; }
a.right:active 	{ background-position:-138px -102px; } 

/* left */
a.left				{ margin-left: 0px; } 
a.left:hover  		{ background-position:-69px 0; }
a.left:active  	{ background-position:-138px 0; }

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;
}

.scroller_nav_prev {
	background:url(../images/interface/scroller_nav.gif) no-repeat;
	background-position: 0 0;
}

.scroller_nav_next {
	background:url(../images/interface/scroller_nav.gif) no-repeat;
	background-position: 0 -102px;
}

/* End Scroller */

/* Tabs */
/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:20px;
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin: 0 1px 0 0 !important;
	list-style-image:none !important;

}

/* link inside the tab. uses a background image */
.tabs a { 
	font-size:11px;
	display:block;
	height: 20px;  
	line-height:20px;
	width: 90px;
	text-align:center;	
	text-decoration:none;
	color:#FFF;
	padding:0px;
	margin:0px;	
	position:relative;
	background-image: url(../images/interface/playlist_nav_bg.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	height: 20px;  
	line-height:20px;
	background-position: -90px 0;
	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	cursor:default !important; 


	height: 20px;  
	line-height:20px;
	background-position: -90px 0;
	border-bottom: #000;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
.tabs .w1 			{ width:134px; }
.tabs .w1:hover 	{ }
.tabs .w1.current {  }

/* width 2 */
.tabs .w2 			{  width:154px; }
.tabs .w2:hover 	{ }
.tabs .w2.current {  }


/* width 3 */
.tabs .w3 			{ width:174px; }
.tabs .w3:hover 	{  }
.tabs .w3.current {  }

/* width 4 */
.tabs .w4 			{ width:194px; }
.tabs .w4:hover 	{  }
.tabs .w4.current {  }


/* tab pane styling */
.panes div.pane {
	/*padding:15px 10px;*/
	border:1px solid #000;
	border-top: 1px solid #666;
	/*height:100px;*/
	/*font-size:14px;*/
	background-color:#fff;
	padding-bottom:10px;
}

#options .option {
	width: 560px;
	margin-left:15px;
	margin-bottom:5px;
	padding-bottom: 5px;
	border-bottom: 1px dotted #CCC;
}

#options .first {
	margin-top:15px;
}

.pane .subnav {
	background-color: #000;
	height:30px;
	margin-bottom:10px;
}

#playlist_top_divider {
	width:560px;
	height:5px;
	margin:0 15px 0 15px;
	border-top:1px dotted #ccc;
}

#options .pane .subnav a,
#options .pane .subnav a:visited {
	font-size: 0.95em;
	color: #AAA;
	margin-left:5px;
	padding-left:5px;
	display:block;
	float:left;
	margin-top:7px;
	border-left:1px dotted #AAA;
	text-decoration: none;
}

#options .pane .subnav a.first {
	border-left:none;
}

#options div.panes {
	margin-top:-1px;
}

#options .pane .subnav a.active {
	color:#FFF;
	background: none;
	text-decoration: underline;
} 

#options .pane .subnav a:hover {
	color:#FFF;
	text-decoration: underline;
}

.option a,
.option a:visited {
	display:block;
	text-decoration: none;
	height:80px;
	overflow: hidden;
}

.option a:hover {
	background-color: #EEE;
}

.option a img {
	float:left;
	margin-right:10px;
	
}

#options a.active {
	background-color: #EEE;
	color: #000;
}

.addthis_toolbox {
	margin-top:10px;
}

/* /pangeavr */
body.pangeavr #header {
	border-bottom:10px solid #000;
}

body.pangeavr .instructions {
	margin: 20px 0 0 0;
}

body.pangeavr .instructions img{
	float: right;
	margin: 60px 0 0 20px;
}

body.pangeavr .instructions h4 {
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 0.5em;
}

body.pangeavr h1 {
	margin-bottom:10px;
}

body.pangeavr p.summary {
	margin-bottom:30px;
}

body.pangeavr #footer {
	border-top:1px solid #ccc;
	margin: 20px 0 10px 0;
	padding-top:10px;
}

/* End Tabs */
