/* CSS Tabs */
#navcontainer {
     position: relative;
      margin: 0px auto;
      float: left;
}
#navlist {
padding: 1px;
margin: 0px;
font: 8px Verdana, sans-serif;
font-weight: bold;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
background-color: #000000;
width: 558px;


}
#navlist li {
	list-style: none;
	margin: 0px;
	display: inline;
	line-height:43px;
	background-color: #000000;
    width: 153px;

}
#navlist li a {

	text-decoration: none;
	padding-top: 17px;
	padding-bottom: 17px;
	padding-left: 20px;
	padding-right: 20px;
	margin-right: 0px;
	border: 1px solid #000000;
	color: #ffffff;
	line-height: 43px;
	background-color: #222B30;
}

#navlist li a:link { color: #FFFFFF; }   /* not touched as yet */


#navlist li a:visited{
	background-color: #222B30;
	color: #ffffff;
}
#navlist li a:hover {

	text-decoration: none;
	background-color: #393E44;
	color: #ffffff;
}
#navlist li.selected{
	position: relative;
}
#navlist li.selected a{ /*selected main tab style */
	border-bottom-color: #000000;
	background-color: #222B30;
	color: #ffffff;
}
#navlist li.selected a:hover{ /*selected main tab style */
	text-decoration: none;
	background-color: #393E44;
}
.tabcontentstyle{ /*style of tab content oontainer*/
border: 1px solid #161616;
width: 558px;
/* margin-bottom: 1em; (spacer underneath tab layout and content area */
padding: 0px;
background-color: #222B30;
}

.tabcontent{
display:none;
}

@media print {
.tabcontent {
display:block!important;
}

