/* ######### CSS for Shade Tabs. Remove if not using ######### */

#tabcontainer{
	width:600px;/*set this to control the size of the tab wrapper and total bg color*/
	height:auto;
	padding:0px;
}

#tabtextbox{
	width:600px;/*set this to control the size of the tab child div and bg color*/
	height:400px;
	background-color: #D5EDFF;
	position: absolute;
	top: 20px;
	border-top-width: 2px;
	border-bottom-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-top-color: #C7DDEE;
	overflow: scroll;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #C7DDEE;
	border-bottom-color: #C7DDEE;
	border-left-color: #C7DDEE;
}

.shadetabs{
	padding: 0px;
	margin-left: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	list-style-type: none;
	text-align: left; /*set to left, center, or right to align the menu as desired*/
	font-family: Georgia;
	font-size: 16px;
	font-style: italic;
	text-decoration: none;
}

.shadetabs li{
	display: inline;
	padding-top: 2px;
	margin-left: 0px;
	margin-right: -2px;/*this padding controls the space to the left and right of the tab button text box container*/
	background-image: url(../Images/shade.png);
	background-repeat: repeat-x;
}

.shadetabs li a{
	text-decoration:none
	position: relative;
	z-index: 1;
	padding-left: 10px; 
	padding-right: 10px; 
	padding-top: 2px; /* this padding controls the space to the left and right of the tab button text*/
	color: #09F;
	text-decoration: none;
}

.shadetabs li a:hover{
	text-decoration: none;
}

.shadetabs li a.selected{ /*selected main tab style */
	background-image:url(../Images/shadeactive.png);
	color: #FFF;
	text-decoration: none;
}

.shadetabs li a.selected:hover{ /*selected main tab style */
text-decoration: none;
}


.tabcontent{
	display:none;
	margin: 10px;/*this controls the margin of the interior content*/
}
#events li{
	line-height: 40px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #8C8F90;
	list-style-type: none;
	font-family: Verdana, serif;
	font-size: 12px;
	color: #666;
	text-align: left;
	margin-left: -40px;
}

@media print {
.tabcontent {
display:block !important;
}
}


