

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.titletabs{
width: 100%;
overflow: hidden;
/* border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/
font-size:18px;
}

.titletabs ul{
margin: 0;
padding: 0;
padding-left: 0px; /*offset of tabs relative to browser left edge*/
list-style-type: none;
font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #C0CDDB;
	font-weight: bold;

}

.titletabs li{
display: inline;
margin: 0;
}

.titletabs li a {
	float: left;
	display: block;
	text-decoration: none;
	font-weight: bolder;
	font-size:18px;
	margin: 0;
	padding: 4px 4px; /*padding inside each tab*/
	padding-left:20px;
	padding-right:20px;
	/* border-right: 2px solid #C0CDDB; /*right divider between tabs*/
	color: #FFFFFF;
	background-color: #9FACAF;/* background: #8ABCD7; /*background of tabs (default state)*/
}

.titletabs li a:visited{
font-size:18px;
background-color: #9FACAF;
color: #FFFFFF;
}

.titletabs li a:hover{
	background-color: #3A5B73; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: white;
	font-size:18px;
	text-decoration:none;
	
}
.titletabs li.selected a, .titletabs li.selected a:visited {
	background-color: #2E495C; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
	color: white;	
	font-size:18px;
	
}
