@CHARSET "UTF-8";

/* ---------------------- TABS MENU  ---------------------- */

.tabs_menu {
	padding: 0px;
	clear: both;
	width: 100%;
	
}

.tabs_menu div{
	text-align: center;
}

.tabs_menu div a {
	float: left;
	cursor: pointer;	
	padding: 5px 15px;
	text-decoration: none;
	margin-right: 2px;
	background:#eee;
	color:#bbb;	
	/* mozilla */
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-topright: 6px;
	/* safari */
	-webkit-border-top-left-radius: 6px;
	-webkit-border-top-right-radius: 6px;

}

.tabs_menu div a.active-tab {
	background: #91C67E;
	color:#fff;
	font-weight: bold;
}

.panel {
	clear: both;
	display: none;
}

.panel.active-tab-body {	
	padding:5px 5px 0px 5px;
	display: block;
	border: 1px dotted #91C67E;
}

/* ---------------------- TABS MENU TOP ---------------------- */

	
.tabs_menu_horizontal{
	margin: 0 0 5px 0;
	padding: 0px;
	clear: both;
	border-right: 3px solid #2A65DB;
	width: 100%;
	height: 25px;
}

.tabs_menu_horizontal div {
	cursor: pointer;	
	padding: 5px 10px;
	text-decoration: none;
	margin-bottom: 6px;
	background:#eee;
	color:#bbb;
	
	text-align:right;
	
	/* mozilla */
	-moz-border-radius-topleft: 6px;
	-moz-border-radius-bottomleft: 6px;
	/* safari */
	-webkit-border-top-left-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;

}

.tabs_menu_horizontal div.active-tab {
	background: #2A65DB;
	color:#fff;
}

/* ---------------------- TABS MENU TOP ---------------------- */

.tabs_menu_top {
	margin: 0 0 5px 0;
	padding: 0px;
	clear: both;
	border-top: 3px solid #2A65DB;
	width: 100%;
	height: 25px;
}

.tabs_menu_top div {
	float: left;
	cursor: pointer;	
	padding: 5px 10px;
	text-decoration: none;
	margin-left: 6px;
	background:#eee;
	color:#bbb;
	
	/* mozilla */
	-moz-border-radius-bottomleft: 6px;
	-moz-border-radius-bottomright: 6px;
	/* safari */
	-webkit-border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;

}

.tabs_menu_top div.active-tab {
	background: #2A65DB;
	color:#fff;
}


/* ------ ACCORDION  VERTICAL ------- */

.accordion_toggle {
	display: block;
	background-color: #999;
	color: #ddd;
	padding: 5px 5px;
	border-bottom: 1px solid #fff;
	cursor: pointer;
}
		
.accordion_toggle_active {
	display: block;		
}
		
.accordion_content {
	background-color: #EDF1F4;
	color: #444444;
	overflow: hidden;
	padding: 0px 10px;
}

/* ------------- */