@charset "utf-8";
/* CSS Document */

/* Used to fade tab with especial effect*/
div.fadehover {
	position: relative;
	}
 
img.a1 {
	position: absolute;
	left: 0;
	top: 0;
		z-index: 10;
	}
 
img.b {
	position: absolute;
	left: 0;
	top: 0;
	}

/*css starts here*/	 
ul.tabImageTop {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 89px; /*--Set height of tabs--*/
	border-bottom: 0px solid #fff;
	border-left: 0px solid #fff;
	width: 100%;
} 
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 22px; /*--Set height of tabs--*/
	border-bottom: 0px solid #fff;
	border-left: 0px solid #fff;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 22px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: none; /*--Vertically aligns the text within the tab--*/
	border: 0px solid #fff;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	/*background: #e0e0e0;*/
}
ul.tabs li a {
	text-decoration: none;
	color: #fff;
	display: block;
	font-size: 1.2em;
	padding: 0 0px;
	border: 0px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #fff;
	border-bottom: 0px solid #fff; /*--Makes the active tab look like it's connected with its content--*/

}

.tab_container {
	border: 0px solid #fff;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
	vertical-align:top;
}
.tab_content {
	padding: 8px 20px;
	font-size: 1.2em;
	vertical-align:top;
	background: #fff;
}