@charset "UTF-8";
/* CSS Document */
/* root element for tabs  */
ul.tabs, ul.tabs-1{
	list-style:none;
	margin:0;
	padding:0;
	height:30px;	
}

/* single tab */
ul.tabs li, ul.tabs-1 li {
	float:left;
    font-family:Tahoma,serif;
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important;
}

/* link inside the tab. uses a background image */
ul.tabs a, ul.tabs-1 a {
	font-size:14px;
	display:block;
	height: 30px;
	line-height:30px;
	text-align:center;
	color:#000;
    width:110px;
	padding:0;
	margin:0;
	position:relative;
	top:1px;
}

ul.tabs, ul.tabs-1 a:active {
	outline:none;

}

/* when mouse enters the tab move the background image */
ul.tabs, ul.tabs-1 a:hover {
	color:#000;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, 
ul.tabs-1 a.current,
ul.tabs a.current:hover, 
ul.tabs-1 a.current:hover,
ul.tabs, ul.tabs-1 li.current a {
  	cursor:default !important;
	color:#FFF !important;
    text-decoration:none;
}


ul.tabs .current {background: #003366; }
.col_active{background: #003366; color: #CCCCCC;}
.col_active a {color: #fff; font-weight:bold;}

ul.tabs-1 .current {background: #003366; }

/* initially all panes are hidden */
div.panes div.pane {
	display:none;
}


/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 320px;
}

/* accordion header */
#accordion h2 {
	background:#E1EBEF;
	margin:0;
	padding:5px 15px;
    font-family:Tahoma,serif;
    text-decoration:underline;
    color: #2569c2;
	font-size:18px;
	font-weight:normal;
	border:1px solid #fff;
	border-bottom:1px solid #E1EBEF;
	cursor:pointer;
}

/* currently active header */
#accordion h2.current {
	cursor:default;
    text-decoration:none;
	background-color:#fff;
    background:#003366;
    color: #fff;
}

/* accordion pane */
#accordion div.pane {
	border:1px solid #fff;
	display:none;
	height:200px;
	padding:15px;
	color:#000;
	font-size:12px;
}

/* a title inside pane */
#accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
}

