﻿/* root element for tabs  */
ul.tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 	
}

/* single tab */
ul.tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	float:left;
	font-size:110%;
	font-weight:bold;
	display:block;
	padding:5px 10px;	
	text-decoration:none;
	/*border:1px solid #666;	*/
	border-bottom:0px;
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	position:relative;
	top:1px;	
	outline:0;
	-moz-border-radius:4px 4px 0 0;	
}

ul.tabs a:hover 
{
    border:1px solid #666;
	background-color:#9FBD4D;
	color:#fff;
}
	
/* selected tab */
ul.tabs a.current {
	background-color:#9FBD4D;
	border-bottom:1px solid #ddd;	
	color:#fff;	
	cursor:default;
}

	
/* tab pane */
.panes div {
	display:none;
	min-height:300px;
	padding-top:15px;
}


/* Tag */
a.tag { display:block; width:100%; min-height:34px; background-color:#fff; text-align:center; font-weight:bold;}
a.tag:hover{ background-color:#9FBD4D; color:#fff;}
a.tagcurrent {display:block; width:100%; min-height:34px; background-color:#9FBD4D; color:#fff; font-weight:bold;}
a.tag .current {display:block; width:100%; min-height:34px; background-color:#9FBD4D; color:#fff; font-weight:bold;}


/* ============================================================================================== */
/* container for slides */
.slideHili {
	position:relative;	
	width:395px;
	height:265px;
	float:left;	
	cursor:pointer;
}

/* single slide */
.slideHili div {
	font-size:12px;
	display:none;
	position:absolute;
	top:0;
	left:0;		
	width:395px;
	height:265px;
	overflow:hidden;
	text-align:center; vertical-align:middle;
}

/* header */
.slideHili h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
.slidetabs {
	clear:both;
	margin-left:20px;
}

/* single tab */
.slidetabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/menu/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

/* mouseover state */
.slidetabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.slidetabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	background:#fff url(../images/menu/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

/* ======== Tooltip ================*/
.imgpview_tip { display:none; background-image:url(../images/web/bg_black40.png); 
           color:#fff; min-height:100px; width:400px; }
