/* CSS Document */
ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #ccc;
	font-family:Arial, Helvetica, sans-serif, Tahoma;
	font-size:13px;
	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered-Vertically aligns the text within the tab--*/
	/*border: 1px solid #999;*/
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #FFF;
	font-family:Arial, Helvetica, sans-serif, Tahoma;
	font-size:12px;
	line-height:18px;
}
ul.tabs li.nonimage{
	background-image:none;
}
ul.tabs li a {
	text-decoration: none;
	color: #7F8180;
	display: block;
	padding: 0 20px;
	border: 1px solid #fff; /*--Gives the bevel look with a 1px white border inside the list item--*/
	
	outline: none;
}
ul.tabs li a:hover {
	
}
html ul.tabs li.active{ /*--Makes sure that the active tab does not listen to the hover properties--*/
	background:#fff;
	border: 1px solid #ccc; /*--Makes the active tab look like it's connected with its content--*/
	border-bottom: 1px solid #fff;
}
html ul.tabs li.active a{
	font-weight:bold;
	color:#000;
}
.tab_container {
	border-bottom: 1px solid #ccc;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #fff;
}
.tab_container ul{
	margin:0 0 0 0px;
	padding:0;
}
.tab_container ul li{
   background-image:url(../images/zero.gif);
   background-repeat:no-repeat;
   background-position:left 5px;
   padding:0 0 0 22px;
   list-style:none;
   margin:0 0 5px 0;
}
.tab_container ol{
	margin:0 0 0 0px;
	padding:0;
}
.tab_container ol li{
	background-image:url(../images/zero.gif);
    background-repeat:no-repeat;
    background-position:left 5px;
    padding:0 0 0 22px;
    list-style:none;
	margin:0 0 5px 0;
}
.tab_content {
	padding: 18px;
	/*font-size: 1.2em;*/
}


