body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
	background-image: url(./img/bg_slice_1.jpg);
	background-repeat: repeat-x;
}
table, tr, th, td{
	text-align:left;
	vertical-align: top;
	padding-top: 5px;
	padding-bottom: 5px;
}
a {
	color: #333333;
	font-weight: bold;
	text-decoration: none;	
}
a:hover {
	text-decoration: underline;
}
.warning {
	font-weight: bold;
	color: #cc3300;
	background-color: #d2ecf7;
}
.holiday #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser C-storeome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #b6dff1;
	border-left-color: #b6dff1;
} 
.holiday #header {
	background: #ffffff; 
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.holiday #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.holiday #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #b6dff1; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 5px;
}
.holiday #sidebar2 {
	float: right; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ffffff; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 0px;
}
.holiday #mainContent {
	background: #ffffff;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
.holiday #mainContent_index {
	margin-left: 240px;
}
.holiday #mainContent_calendar {
	margin-right: 3px;
	margin-left: 50px;
}
.special {
	border-top-width: 5px;
	border-right-width: 50px;
	border-bottom-width: 5px;
	border-left-width: 50px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #CC3300;
	border-right-color: #CC3300;
	border-bottom-color: #CC3300;
	border-left-color: #CC3300;
	padding: 13px;
	line-height: 22px;
	font-size: 18px;
	font-style: italic;
	background-color: #b6dff1;
}
.holiday #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#582c16;
} 
.holiday #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.clearleft { 
	clear:left;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
ul#Top_Nav {
	list-style-type: none;
	background-color: #582c16;
	margin: 0px;
	padding: 0px;
	width:780px;
	float: left;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #582c16;
	border-bottom-color: #582c16;
}
ul#Top_Nav li{
	display: inline;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 9px;
	background-color: #582c16;
	float: left;
	padding-left: 11px;
}
ul#Top_Nav li a{
	text-decoration: none;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
}
ul#Top_Nav li.main_nav_active a:link, ul#Top_Nav li.main_nav_active a:visited{
	color: #000000;
	background-color: #b6dff1;
	padding-top: 10px;
	padding-right: 18px;
	padding-bottom: 10px;
	padding-left: 18px;
}
ul#Top_Nav li.main_nav a:link, ul#Top_Nav li.main_nav a:visited{
	color: #FFFFFF;
	background-color: #582c16;
	padding-top: 10px;
	padding-right: 18px;
	padding-bottom: 10px;
	padding-left: 18px;
}
ul#Top_Nav li.main_nav a:hover, ul#Top_Nav li.main_nav a:active {
	color: #000000;
	background-color: #b6dff1;
	padding-top: 10px;
	padding-right: 18px;
	padding-bottom: 10px;
	padding-left: 18px;
}
ul#Sub_Nav {
	list-style-type: none;
	margin: 0px;
	padding: 0px;

}
ul#Sub_Nav li{
	margin: 0px;
	padding-top: 12px;
	padding-bottom: 13px;
	width: 170px;
	float:left;
	clear:left

}
ul#Sub_Nav li a{
	text-decoration: none;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
ul#Sub_Nav li a:link, ul#Sub_Nav li a:visited{
	color: #000000;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 5px;
}
ul#Sub_Nav li a:hover, ul#Sub_Nav li a:active{
	color: #CC3300;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 5px;
	text-decoration: underline;
}
h1 {
	font-size: 20px;
	margin-top: 20px;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
h2 {
	font-size: 16px;
	color: #CC3300;
}
h3 {
	font-size: 14px;
}
#footer p {
	color: #FFFFFF;
}
.headerlinks a{
	text-decoration: none;
	color: #582c16;
}
.headerlinks a:link, .headerlinks a:visited{
	text-decoration: none;
}
.headerlinks a:hover, .headerlinks a:active{
	text-decoration: underline;
}

#header img {
	display: inline;
	float:left;
	margin-top: 5px;
	clear: none;
	margin-bottom: 5px;
}
#hlinks {
	display: inline;
	float: left;
	position: relative;
	clear: none;
	padding-top: 50px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 25px;
}
#header p {
	padding: 0px;
	margin-top: 6px;
	margin-right: 3px;
	margin-bottom: 6px;
	margin-left: 3px;
	font-weight: bold;
}
.calendar table{
	color: #000066;
	border: 1px solid #CC3300;
	float:right
}
.calendar th{
	text-align: center;
	color: #000066;

}
.calendar td{
	color: #000066;
	text-align: center;
	background-color:#CC3300;
	padding: 3px;
}
.calendar a{
	text-decoration: none;
	font-size: 15px;
}
.calendar a:link, .calendar a:visited{
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
}
.calendar a:hover, .calendar a:active{
	text-decoration: none;
	font-weight: bold;
	color: #000033;
}
.calendar_ext table{
	color: #000066;
	width: 600px;
	margin-bottom: 50px;
	float: left;
}
.calendar_ext th{
	text-align: left;
	background-color:#CC3300;
	color: #FFFFFF;
	padding: 5px;
}
.calendar_ext td{
	color: #000066;
	text-align: left;
	background-color:#ffffff;
	padding: 5px;
}
.calendar_ext td.offset{
	color: #000066;
	text-align: left;
	background-color: #D2ECF7;
	padding: 5px;
}
.calendar_ext a{
	text-decoration: none;
	font-size: 15px;
}
.calendar_ext a:link, .calendar a:visited{
	text-decoration: none;
	font-weight: bold;
	color: #ffffff;
}
.calendar_ext a:hover, .calendar a:active{
	text-decoration: none;
	font-weight: bold;
	color: #000033;
}
#dynamic_content {
	background-color: #D2ECF7;
	position: absolute;
	left: 0px;
	top: 0px;
}
#content {
	padding-top: 80px;
	padding-right: 20px;
	padding-bottom: 100px;
	padding-left: 20px;
	border: 1px inset #0000ff;
}
#mainContent p, #mainContent_index p {
	line-height: 20px;
	margin-right: 100px;
}
li#active_sub{
	background-color:#FFFFFF;
}
li#active_sub a{
	text-transform: uppercase; 
	font-weight:bold; 
	text-decoration: none; 
	font-size: 13px;
}
 

.warning {
	font-weight: bold;
	color: #FF0000;
	background-color: #CCCCCC;
}
ol {
	padding: 0px;
	margin-top: 0px;
	margin-right: 100px;
	margin-bottom: 0px;
	margin-left: 20px;
	line-height: 20px;
}
#specialtable td{
	border: 1px solid #cc3300;
	background-color: #d2ecf7;
	padding: 3px;
}
.today{
	background:#666666;
}
