/*=================================================================================================================================================
jQuery Tools Tabs-
Based on jQuery Tools.

=================================================================================================================================================*/

/*-------------------------------------------------------------------------------------------------------------------------------------------------
tabs 
-------------------------------------------------------------------------------------------------------------------------------------------------*/
ul.tabs,ul.ajaxTabs {

height:30px;
margin:0 !important;
padding:0;
border-bottom:1px solid #FFF;
}
ul.tabs li,ul.ajaxTabs li {
float:left;
list-style-type:none;
margin:0;
padding:0;	
}
ul.tabs li a,ul.ajaxTabs li a{

background: url(../../bg_images/tabButton.jpg) repeat-x 0 -36px;
color:#336799;
border-top:1px solid #FFF;
border-left:1px solid #CCC;
border-right:1px solid #FFF;
border-bottom:1px solid #FFF;
display:block;
float:left;
font-size:12px;
height:20px;
margin-right:0px;
padding:5px 0;
position:relative;
text-decoration:none;
top:1px;
width:135px;
text-align:center;
}
ul.tabs li a:hover,ul.ajaxTabs li a:hover{
background:#DDDDDD none;
border-bottom:1px solid #CCC;
}
ul.tabs li a.current,ul.ajaxTabs li a.current {
background: url(../../bg_images/tabButton.jpg) repeat-x 0 0;
outline:none;
border-bottom:2px solid #336799;
color:#FFF;
cursor:default;	
}

/*panes*/
div.panes{
	height:150px;
	overflow:hidden;
}
div.panes div.pane{
background:none;
min-height:120px;
padding:0.3em 0;
color:#FFF;
font-size:80%;
display:none;
height:120px;
overflow:hidden;
margin-top:10px;
}

/*panes*/
div.ajaxPanes{
	
}
div.ajaxPanes div.pageContainer{
padding:1em;
background:#DDDDDD;
border-color:#666666;
border-style:solid;
border-width:0 1px 1px;
min-height:150px;
}
div.ajaxPanes div.pageContainer div
{
display:block;
height:300px;	
overflow:auto;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------------
accordion 
-------------------------------------------------------------------------------------------------------------------------------------------------*/
.accordion{
	border:1px solid #EEE;	
}
/*h2 tags act as the triggers*/
.accordion h2{
border:1px solid #DDD;
	border-right-color:#f8f8f8;
	border-top-color:#f8f8f8;
	background:#EEE url(../../bg_images/buttonBG.jpg) repeat-x 0 -59px;
cursor:pointer;
font-size:14px;
font-weight:normal;
margin:0;
padding:5px 15px;	
}
.accordion h2:hover{
background:#EEE url(../../bg_images/buttonBG.jpg) repeat-x 0 -20px;	
	border:1px solid #D1D8DF;
	border-top-color:#999;
	border-left-color:#999;
	outline:none;
	color:#666;
}
.accordion h2.current{
background:#f1f1f1 repeat scroll 0 0;	
}
.accordion h2:active{
background:#DDDDDD repeat scroll 0 0;	
}
.accordion div.pane
{
background:#F9f9f9;
border-color:#FFFFFF;
border-style:solid;
border-width:0 2px;
color:#666;
font-size:12px;
padding:0.3em;	
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------
horizontal accordion
--------------------------------------------------------------------------------------------------------------------------------------------------*/

.hAccordion {

background:#EEEEEE;
border:1px solid #DDDDDD;
height:750px;
padding:4px;
width:90%;
overflow:hidden;
}
/*images used as the trigger*/
.hAccordion img {
cursor:pointer;
float:left;
margin-right:10px;
opacity:0.5;

}
.hAccordion img.current {
cursor:default;
opacity:1;
}
.hAccordion div.pane {
float:left;
margin-right:10px;
width:0;
height:750px;
overflow:hidden;
display:block;
}
.hAccordion div.pane div.hPane {
color:#444444;
width:780px;
margin-bottom:0.2em;

}
.hAccordion div p {


}



/*---------------------------------------------------------------------------------------------------------------------------------------------------
Slideshow
--------------------------------------------------------------------------------------------------------------------------------------------------*/

/* container for slides */
.slideshow {
	background:#fff repeat-x;
	border:1px solid #666;
	position:relative;	
	height:300px;	
	width:650px;
	float:left;	
	margin:15px;
	cursor:pointer;
	
	/* CSS3 for modern browsers ie. NOT FOR IE*/
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;	
}

/* single slide */
.slideshow div {
	position:absolute;
	top:0;
	left:0;		
	margin:7px;
	padding:15px 30px 15px 15px;
	height:256px;
	font-size:12px;
}

/* header */
.slide h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* slideshowTabs tabs (those little circles below slides) */
.slideshowTabs {
	clear:both;
	margin-left:330px;
}

/* single tab */
.slideshowTabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background: url(../scrollable/arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;	
	text-indent:-999em;
	display:block;
	outline:none;
}

/* mouseover state */
.slideshowTabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slideshowTabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	display:block;
	width:18px;
	height:18px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background:url(../scrollable/arrow/right.png) no-repeat;}
.forward:hover 		{ background-position:0 -18px; }
.forward:active 	 	{ background-position:0 0; } 


/* prev */
.backward			{background: url(../scrollable/arrow/left.png) no-repeat;}
.backward:hover  		{ background-position:0 -18px; }
.backward:active  	{ background-position:0 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}


