
.shadetabs ul{
padding: 0;
margin: 0;
font: bold 90% default;
list-style-type: none;

}

.shadetabs li{
display: inline;
margin: 0;

}

.shadetabs li a{
	padding: 3px 7px;
	text-decoration: none;
	padding-right: 32px; /*extra right padding to account for curved right edge of tab image*/
	color: blue;
	background: transparent url(images/righttabdefault.gif) 100% 1px no-repeat; /*give illusion of shifting 1px down vertically*/
	border-left: 1px solid #dbdbd5;
	position: relative;
	display: block;
	float: left;
	margin-left: -20px; /*shift tabs 20px to the left so they overlap*/
	left: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bolder;
}

.shadetabs li a:visited{
color: blue;
}

.shadetabs li a:hover{
text-decoration: none;
}

.shadetabs li.selected a{ /*selected tab style*/
color: black;
z-index: 100; /*higher z-index so selected tab is topmost*/
top: 1px; /*Shift tab 1px down so the border beneath it is covered*/
background: transparent url(images/righttabselected.gif) 100% 0 no-repeat;
}

.shadetabs li.selected a:hover{
text-decoration: none;
}

.tabcontentstyle{ /*style of tab content oontainer*/
clear:both;
border: 1px solid #bbb8a9;

width: 400px;
margin-bottom: 1em;
padding: 10px;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block!important;
}
}
</style>

<!--[if IE]>
<style type="text/css">
.shadetabs{
height: 1%;  /*Apply Holly 3px jog hack to get IE to position bottom border correctly beneath the menu*/
}
</style>
