@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background:#333;
	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;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	background-image:url(../designImages/Background.png);
	background-repeat:repeat-y;
	background-position:center;
}
#container { 
	width: 660px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#topSpacer {
	position:fixed;
	top:0;
	background:#000000;
	height:2px;
	width:100%;
} 
#addressBar {
	position:fixed;
	top:2px;
	background:#EF3839;
	font-weight:700;
	color:#FFFFFF;
	font-size:10px;
	padding:5px 10px 5px 10px;
	letter-spacing: .25em;
	width:100%;
}
#header {
margin-top:23px;
} 
#sideNav {
	float: left;
	width: 200px;
}
#sideNavImageBox {
	width:200px;
	height:75px;
	background-color:#CCFFFF;
	border-bottom:#000 3px solid;
}
#sideNavLinkBox1 {
	width:195px;
	height:12px;
	background-color:#EF3839;
	font-weight:bold;
	color:#FFF;
	font-size:10px;
	padding:3px 0 3px 5px;
	letter-spacing:.125em;
}
#sideNavLinkBox2 {
	width:180px;
	height:12px;
	background-color:#999;
	font-weight:normal;
	color:#FFF;
	font-size:10px;
	padding:3px 0 3px 20px;
	letter-spacing:.125em;
}
#slideShow { 
	margin: 0 0 0 210px;
	width:450px;
	height:384px;
	background-color:#CCFFFF;
}
#mainContent { 
	margin: 0 0 0 210px;
	width:450px;
	height:384px;
	font: 80% Arial, Helvetica, sans-serif;
	letter-spacing:.125em;
	line-height:1.25em;
	color:#666;
} 
#placement {
	width:139px;
	height:120px;
	background-image:url(../designImages/placement.png);
	background-color:#999;
	margin:0 10px 10px 0;
	
}
#about {
	padding:0 40px 10px 40px;
	font: 80% Arial, Helvetica, sans-serif;
	letter-spacing:.125em;
	line-height:1.25em;
	color:#666;
	clear:both;
	margin-bottom:20px;
}
#contactAddress {
	margin: 0 auto;
	text-align:center;
	font: 80% Arial, Helvetica, sans-serif;
	letter-spacing:.125em;
	line-height:1.25em;
	color:#666;
	padding:10px 0 0 0;
}
#contact{
	margin: 0 auto;
	width:450px;
	height:384px;
	font: 80% Arial, Helvetica, sans-serif;
	letter-spacing:.125em;
	line-height:1.25em;
	color:#666;
	padding-top:20px;
}
#footerSpacer {
	 height:10px;
}
#footer { 
	background:#EF3839;
	font-weight:700;
	color:#FFFFFF;
	font-size:10px;
	padding:5px 0 5px 0;
	text-align:center;
	position:fixed;
	bottom:2px;
	width:100%;
	letter-spacing:.125em;
}
#bottomSpacer { 
	background:#000000;
	width:100%;
	height:2px;
	position:fixed;
	bottom:0;
} 
#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: 5px 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}

img { 
border: 0; 
}

A:link {text-decoration: none; color:#FFF;}
A:visited {text-decoration: none; color:#FFF;}
A:active {text-decoration: none; color:#FFF;}
A:hover {text-decoration: none; color:#FFF;}