@charset "utf-8";
/* CSS Document */


body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

.mattblacktabs{
	width: 100%;
	overflow: hidden; /*bottom horizontal line that runs beneath tabs*/
}

.mattblacktabs ul{
	margin: 0;
	padding: 0; /*offset of tabs relative to browser left edge*/
	font: bold 12px Verdana;
	list-style-type: none;
}

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

.mattblacktabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	padding: 7px 23px; /*padding inside each tab*/
	border-right: 1px solid white; /*right divider between tabs*/
	color:#000000;
	background: #dadada; /*background of tabs (default state)*/
}
.mattblacktabs li a:hover{
color: #ffffff;
background:#02b8d9; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

.mattblacktabs li .current{
color: #ffffff;
background:#02b8d9; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}
