/*=================================================================================================================================================
jQuery Tools Tabs-
Based on jQuery Tools.

=================================================================================================================================================*/

/*-------------------------------------------------------------------------------------------------------------------------------------------------
tabs 
-------------------------------------------------------------------------------------------------------------------------------------------------*/
ul.tabs,ul.ajaxTabs {
border-bottom:1px solid #666666;
height:30px;
margin:0 !important;
padding:0;
}
ul.tabs li,ul.ajaxTabs li {
float:left;
list-style-type:none;
margin:0;
padding:0;	
}
ul.tabs li a,ul.ajaxTabs li a{
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
background-color:#EFEFEF;
border-color:#666666 #666666 -moz-use-text-color;
border-style:solid solid none;
border-width:1px 1px 0;
color:#777777;
display:block;
float:left;
font-size:13px;
height:18px;
margin-right:2px;
padding:5px 30px;
position:relative;
text-decoration:none;
top:1px;	
}
ul.tabs li a:hover,ul.ajaxTabs li a:hover{
background-color:#CCCCCC;	
}
ul.tabs li a.current,ul.ajaxTabs li a.current {
background:#DDDDDD;
border-bottom:2px solid #DDDDDD;
color:#000000;
cursor:default;	
}

/*panes*/
div.panes{
	
}
div.panes div{
background:#DDDDDD;
border-color:#666666;
border-style:solid;
border-width:0 1px 1px;
min-height:150px;
padding:1em;	
}
/*panes*/
div.ajaxPanes{
	
}
div.ajaxPanes div.pageContainer{
padding:1em;
display:block;
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 #666;	
}
/*h2 tags act as the triggers*/
.accordion h2{
background:#CCCCCC repeat scroll 0 0;
border-color:#FFFFFF #FFFFFF #DDDDDD;
border-style:solid;
border-width:1px;
cursor:pointer;
font-size:14px;
font-weight:normal;
margin:0;
padding:5px 15px;	
}
.accordion h2:hover{
background:#EEEEEE repeat scroll 0 0;	
}
.accordion h2.current{
background:#f1f1f1 repeat scroll 0 0;	
}
.accordion h2:active{
background:#DDDDDD repeat scroll 0 0;	
}
.accordion div.pane
{
background:#FFFFFF;
border-color:#FFFFFF;
border-style:solid;
border-width:0 2px;
color:#666;
font-size:12px;
height:200px;
padding:15px;	
}
/*---------------------------------------------------------------------------------------------------------------------------------------------------
horizontal accordion
--------------------------------------------------------------------------------------------------------------------------------------------------*/

.hAccordion {

background:#EEEEEE;
border:1px solid #DDDDDD;
height:60px;
padding:4px;
width:482px;
overflow:hidden;
}
/*images used as the trigger*/
.hAccordion img {
cursor:pointer;
float:left;
margin-right:10px;
opacity:0.5;
max-height:64px;
}
.hAccordion img.current {
cursor:default;
opacity:1;
}
.hAccordion div.pane {
float:left;
margin-right:10px;
width:0;
height:64px;
overflow:hidden;
display:block;
}
.hAccordion div h3 {
color:#444444;
width:220px;
margin-bottom:0.2em;

}
.hAccordion div p {
width:220px;

}



/*---------------------------------------------------------------------------------------------------------------------------------------------------
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;		
}

