@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #666666;
	background-image: url(../images/background.jpg);
}
.skiplinks {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	font-variant: normal;
	color: #000000;
	text-align: right;
}

.twoColFixLtHdr #container {
	width: 925px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color: #000;
} 
.twoColFixLtHdr #container #tanslate {
	float: right;
}

.twoColFixLtHdr #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #666666;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 15px;
	padding-left: 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	text-align: justify;
	background-color: #FFFFFF;
	border-right-width: 1px;
	border-right-style: none;
	border-right-color: #666666;
	margin-top: 0px;
	left: 0px;
	top: 0px;
}
.twoColFixLtHdr #sidebar1 ul {
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	padding-bottom: 0px;
}
.twoColFixLtHdr #sidebar1 ul a {
	list-style-type: none;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 ul a:hover {
	list-style-type: none;
	text-decoration: underline;
}



.twoColFixLtHdr #sidebar1 h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-image: url(../images/footer.jpg);
	padding-left: 5px;
}
.twoColFixLtHdr #sidebar1 h3 a {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-image: url(../images/footer.png);
	padding-left: 5px;
	text-decoration: none;
}
.twoColFixLtHdr #sidebar1 h3 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-image: url(../images/footer.png);
	padding-left: 5px;
	text-decoration: underline;
}



.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 240px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #CCCCCC;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCCCCC;
} 

.twoColFixLtHdr #container #mainContent .subheader {
	text-align: center;
	font-style: italic;
}
.twoColFixLtHdr #container #mainContent h2 {
	text-align: center;
}

.twoColFixLtHdr #container #mainContent ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #333333;
	list-style-type: circle;
	text-align: justify;
}
.twoColFixLtHdr #container #mainContent ol li {
	padding-bottom: 2px;
	margin-bottom: 2px;
}
.twoColFixLtHdr #container #mainContent ol {
	padding-bottom: 4px;
	padding-top: 5px;
	text-align: justify;
}

.twoColFixLtHdr #container #mainContent ul a {
	text-decoration: none;
}
.twoColFixLtHdr #container #mainContent ul a:hover {
	text-decoration: underline;
}

.twoColFixLtHdr #footer {
	background-color: #DDDDDD;
	background-image: url(../images/footer.jpg);
	color: #FFFFFF;
	margin-top: 5px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #container #footer a {
	color: #FFFFFF;
	text-decoration: none;
}

.twoColFixLtHdr #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-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #FFFFFF;
	text-align: center;
}
.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;
	z-index: 5;
}
.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;
}
.twoColFixLtHdr #breadcrumb {
	margin: 5px;
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	font-variant: small-caps;
}
.twoColFixLtHdr #innerLinks {
	color: #000000;
	background-color: #CCCCCC;
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 5px;
	border: thin solid #666666;
	font-size: small;
}
.twoColFixLtHdr #innerLinksLeft {
	color: #000000;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
	padding: 5px;
	font-size: small;
	width: 300px;
	border: thin ridge #333333;
	height: 185px;
}
.twoColFixLtHdr #innerLinksLeft ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #333333;
	list-style-position: inside;
	list-style-type: none;
	margin-left: -5px;
}

.twoColFixLtHdr #innerLinksLeft h4 {
	color: #FFFFFF;
	background-color: #000000;
	padding-left: 5px;
	background-image: url(../images/footer.jpg);
}

.twoColFixLtHdr #innerLinksRight {
	color: #000000;
	float: right;
	margin-top: 20px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 5px;
	font-size: small;
	width: 300px;
	border: thin ridge #333333;
	height: 329px;
}
.twoColFixLtHdr #innerLinksRight h4 {
	color: #FFFFFF;
	background-color: #000000;
	padding-left: 5px;
	background-image: url(../images/footer.jpg);
}
.twoColFixLtHdr #innerLinksRight ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #000000;
	list-style-position: inside;
	list-style-type: none;
	margin-left: -5px;
}

.skiplinks a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	font-variant: normal;
	color: #FFFFFF;
	text-align: right;
	padding: 1px;
	margin: 1px;
}
.photoLeft {
	text-align: left;
	float: left;
	padding-top: 4px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
}
.unorderedList {
	list-style-position: inside;
	list-style-type: disc;
	margin-bottom: 5px;
	margin-left: -8px;
	font-size: small;
}
.photoRight {
	text-align: left;
	float: right;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 15px;
}
.twoColFixLtHdr #container #footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.twoColFixLtHdr #breadcrumb a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	font-variant: small-caps;
	text-decoration: none;
	margin-top: 5px;
	margin-right: 1px;
	margin-bottom: 5px;
	margin-left: 1px;
	padding-top: 5px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
}
.twoColFixLtHdr #breadcrumb a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	font-variant: small-caps;
	text-decoration: underline;
	margin-top: 5px;
	margin-right: 1px;
	margin-bottom: 5px;
	margin-left: 1px;
	padding-top: 5px;
	padding-right: 1px;
	padding-bottom: 5px;
	padding-left: 1px;
}
.twoColFixLtHdr #sidebar1 ul li {
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	padding-bottom: 1px;
}
.twoColFixLtHdr #innerLinksRight ul a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #3A00D5;
	list-style-position: inside;
	list-style-type: none;
	margin-left: -5px;
	text-decoration: none;
}
.twoColFixLtHdr #innerLinksRight ul a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #3A00D5;
	list-style-position: inside;
	list-style-type: none;
	margin-left: -5px;
	text-decoration: underline;
}
.fees {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #000000;
	text-align: left;
	margin: 0%;
}
.commandStaff {
	margin-top: 4px;
	margin-bottom: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.bolded {
	font-weight: bold;
}
.standout {
	text-align: center;
	font-size: medium;
	font-style: italic;
	font-variant: small-caps;
}
.twoColFixLtHdr #newinfo {
	color: #000000;
	float: left;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
	padding: 5px;
	font-size: small;
	width: 300px;
	border: thin ridge #333333;
}
.twoColFixLtHdr #newinfo h4 {
	color: #000;
	background-color: #000000;
	padding-left: 5px;
	background-image: url(../images/footer.jpg);
}
.twoColFixLtHdr #newinfo ul {
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	color: #333333;
	list-style-position: inside;
	list-style-type: none;
	margin-left: -5px;
}
.twoColFixLtHdr #stackedRSS {
	color: #000000;
	float: right;
	margin-top: 0px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 10px;
	padding: 5px;
	font-size: small;
	width: 300px;
	border: thin ridge #333333;
	height: 750px;
}
.twoColFixLtHdr #paleft {
	color: #000000;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 20px;
	padding: 5px;
	font-size: small;
	width: 250px;
	height: 185px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
}
.twoColFixLtHdr #mainContentPlayer {
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	border-bottom-width: 1px;
	border-bottom-style: none;
	border-bottom-color: #CCCCCC;
	margin: 0;
}
.highlight {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-style: italic;
	color: #000000;
	background-color: #FFFF33;
	text-align: center;
}
.key {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	padding-left: 10px;
	margin-left: 5px;
	font-size: small;
}
.bookedInfo {
	margin-left: 150px;
	margin-top: 5px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dashed;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #CCCCCC;
	border-left-style: solid;
	border-bottom-style: none;
}

.bookedHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	font-variant: small-caps;
	color: #000000;
	text-align: left;
}

.bookedData {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	padding-left: 0px;
	font-size: small;
	list-style-type: none;
	padding-bottom: 2px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
}
.bookedphoto {
	text-align: left;
	float: left;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	height: 135px;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
p a {
	text-decoration: none;
}
p a:hover {
	text-decoration: underline;
}
.twoColFixLtHdr #container #mainContent h5 {
	margin-left: 0px;
}
.subheader {
	text-align: center;
	font-style: italic;
}
.ulAlpha {
	list-style-type: upper-alpha;
}
.ulCircle {
	list-style-type: circle;
}
.ulNone {
	list-style-type: none;
}
.olRoman {
	list-style-type: upper-roman;
}


img a:link {
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.indent {
	margin-left: 15px;
}
.imgcenter {
	text-align: center;
	margin-left: 218px;
}
#addthis_toolbox  addthis_default_style   {
	float: right;
	width: 25%;
}
.twoColFixLtHdr #mainContenthtk {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	border-bottom-width: 1px;
	border-bottom-color: #CCCCCC;
	border-left-width: 1px;
	border-left-color: #CCCCCC;
	width: 780px;
}
.twoColFixLtHdr #container #translate {
	float: right;
}
img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
table {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
}
tr {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666;
}
