ul.tabs {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
ul.tabs li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
   width: 150px;

}
ul.tabs li a {
   display:block;
   margin:0 0 0 1px;
   padding:3px 10px;
   background:#95C5E3;
   color:#FF0000;
   text-decoration:none;
   line-height:1.3em
}
ul.tabs li a:hover {
	background:#369;
   color:#fff;

}
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--*/
   color:#fff;
   background:#369;
   font-weight:bold;
}

.tab_container {
	border: 1px solid #999;
	border-top: 1px solid #999;
	overflow: hidden;
	clear: both;
	float: left; 
	width: 100%;
}
.tab_content {
	padding: 10px;
	font-size: 1.2em;
}