@charset "utf-8";
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: #CCC;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	background-image: url(../graphics/backpage.jpg);
}
abbr[title], acronym[title], span[title], strong[title] {
	border-bottom: dashed #FF0000 1px;
	cursor: help;
}
acronym:hover, abbr:hover {
	cursor: help;
}
#tickerbox1 {
	float: right;
	border: solid #255F9E 1px;
	margin-left: 20px;
	clear: right;
	padding-left: 10px;
}
#container {
	width: 950px;
	margin: 0 auto; /* 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. */
	background-color: #011E2C;
	background-image: url(../graphics/p2bg.jpg);
	background-repeat: no-repeat;
	margin-top: 10px;
}
#printheader {
	display: none;
	visibility: hidden;

}
#header {
	padding: 0 10px 0 20px;
	height: 105px;
	background-position: 90px;
} 
#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 */
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 10px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px 15px 10px;
}
#topnav {
	height: 2em;
	color: #FFF;
	padding-right: 170px;
	margin-top: 20px;
	margin-bottom: 10px;
}
a.menu:link {
	color: #000000;
	float: right;
	background-color: #CCCCCC;
	padding: 2px 5px 2px 5px;
	margin: 0px 0px 0px 3px;
	text-decoration: none;
	border: solid #005c9f 1px;
	height: 15px;
	text-align: left;
}
a.menu:active {
	color: #000000;
	float: right;
	background-color: #CCCCCC;
	padding: 2px 5px 2px 5px;
	margin: 0px 0px 0px 3px;
	text-decoration: none;
	border: solid #005c9f 1px;
	height: 15px;
	text-align: left;
}

a.menu:visited {
	color: #000000;
	float: right;
	background-color: #CCCCCC;
	padding: 2px 5px 2px 5px;
	margin: 0px 0px 0px 3px;
	text-decoration: none;
	border: solid #005c9f 1px;
	height: 15px;
	text-align: left;
}
a.menu:hover {
	color: #000000;
	float: right;
	background-color: #20A0FF;
	padding: 2px 5px 2px 5px;
	margin: 0px 0px 0px 3px;
	text-decoration: none;
	border: solid #005c9f 1px;
	height: 15px;
	text-align: left;
}
#middleContent {
	margin: 0 210px;
}
#mainContent {
	margin: 0px 10px 0px 210px;
}
#fullContent {
	margin: 0px 10px 0px 25px;
}
#gallery {
	text-align: center;
}
#centered {
	margin: 0 auto;
}
.holder {
	padding: 5px 20px 5px 20px;
	margin: 5px 0px 10px 0px;
	border: none;
}
.holder_smallertxt {
	padding: 5px 20px 5px 20px;
	margin: 5px 0px 10px 0px;
	border: none;
	font-size: .8em;
}

a:link{
	color: #3CF;
	text-decoration: none;
} 

a:visited{
	color: #3CF;
	text-decoration: none;
} 
a:hover{
	color: #F00;
	text-decoration: none;
}


#footer {
	padding: 0 10px 0 10px;
	background-color: #005C9F;
	margin-top: 20px;
} 

#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 */
}
.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;
	margin-bottom: 10px;
}
.clearrightflt {
	margin-left: 8px;
	clear: right;
}
.img {
	border: none;
}
.avoidspan {
	color: #C63;
	font-weight: bold;
}
.tipspan {
	color: #090;
	font-weight: bold;
}
.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;
}
