﻿ul.tabs 
{
    margin: 0 auto;
    padding: 0;
    height: 32px;
    margin-bottom: 1px;
    /**border-left: 1px solid #999;**/
}
ul.tabs li 
{
    display: inline-block;
    *display: inline;
    *zoom: 1;
    text-align: center;
    line-height: 31px;
	margin: 0;
	padding: 0;
	height: 32px; /*--Subtract 1px from the height of the unordered list--*/
	border: 1px solid #999;
	background: #e0e0e0;
	border-bottom-style:none;
}
ul.tabs li a {
	text-decoration: none;
	color: #2C4C84;
	display: block;
	font-size: 10pt;
	font-weight: bold;
	font-family: Verdana;
	/**font-weight: bold; **/
	padding: 0 10px;
    margin-bottom: -1px;
	/**border: 1px solid #fff;**/ /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	width: 140px;
}
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: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
}