﻿/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:31px;
	border-bottom:1px solid #CCC;
	z-index: 0px;
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */

.tabs a { 
    background-color:   #edf5f8;
    border:             1px solid #CCC;
    font-family: Arial, Verdana, Tahoma, MS Sans-Serif;
	font-size:12px;
	font-weight: bold;
	display:block;
	height: 30px; 	 
	line-height:30px;	 
	text-align:center;	
	text-decoration:none;
	color:#b6042d;
	padding:0px;
	margin:0px;	
	position:relative;
	
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-left-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;    
    -moz-border-radius-bottomleft   : 0px;
    -moz-border-radius-bottomright   : 0px;
    -moz-border-radius-topleft   : 5px;
    -moz-border-radius-topright   : 5px;
}
 
.tabs a:active {
	background-color:   #FFFFFF;
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background-color:   #edf5f8;
	color:#000 !important;
}

/* 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 {
	background-color:   #FFFFFF;
	cursor:default !important; 
	color:#000 !important;
	border-bottom-color: #FFFFFF;
}


/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */

/* width 1 */
.tabs .w1 			{ background-color: #edf5f8; width:75px; }
.tabs .w1:hover 	{ background-color: #EFEFEF; }
.tabs .w1.current { background-color: #FFFFFF; }

/* width 2 */
.tabs .w2 			{ background-color: #edf5f8 ; width:80; }
.tabs .w2:hover 	{ background-color: #EFEFEF; }
.tabs .w2.current { background-color: #FFFFFF; }


/* width 3 */
.tabs .w3 			{ background-position: -193px -0px; width:174px; }
.tabs .w3:hover 	{ background-position: -193px -31px; }
.tabs .w3.current { background-position: -193px -62px; }

/* width 4 */
.tabs .w4 			{ background-position: -0px -0px; width:194px; }
.tabs .w4:hover 	{ background-position: -0px -31px; }
.tabs .w4.current { background-position: -0px -62px; }


/* initially all panes are hidden */ 
.panes .pane 
{
	display:none;		
}

.panes div.menu
{
	width: 218px;
	height: 250px;
	border: solid 1px #CDCDCD;
	border-top-color: #FFFFFF;
	padding:0px;
	margin:0px;	
}

.panes div.menu ul.item
{
	width: 218px;
	height: 217px;	
	overflow:hidden;
	padding:0px;
	margin:0px;	
}

.panes div.tool
{
	width: 218px;
	height: 25px;
	margin-top:5px;
	margin-left:20px;
}

.panes div ul {margin-bottom:10px;}
.panes div ul li {display:block; padding-botrom:5px; padding-top:5px; padding-left:15px;margin-left:10px;margin-right:5px; background:url(../images/dot_rec_small.jpg) left 10px no-repeat;}
.panes div ul li a {color:#333;}
