/* CSS Document */

/* Shade tabs */

.shadetabs {
	padding: 3px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font-weight: bold;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
}

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

.shadetabs li a, .shadetabs li span {
	text-decoration: none;
	position: relative;
	padding: 3px 6px;
	margin-right: 3px;
	border: 1px solid #ddd;
	color: #7185b5;
	background: #fff;
}

.shadetabs li a:visited, .shadetabs li span:visited {
	color: #7185b5;
}

.shadetabs li a:hover {
	text-decoration: none;
	background: #7185b5;
	color: #fff;
}

.shadetabs li a.selected, .shadetabs li span.selected { /*selected main tab style */
	position: relative;
	background: #7185b5;
	color: #fff;
	top: 0px;
}

.shadetabs li a.selected:visited, .shadetabs li span.selected:visited {
	color: #fff;
}

.shadetabs li a.selected:hover, .shadetabs li span.selected:hover { /*selected main tab style */
	text-decoration: none;
	color: #fff;
}
