@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: #333333;
	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
	background-image: url(images/sitedesign/ltswirlbg.jpg);
}
#container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	background-color: #FFFFFF;
	margin-top: 10px;
}
#header {
	background: url(images/sitedesign/aheader.gif) no-repeat bottom center;
	padding: 5px 10px 0 20px;  /* 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. */
	text-align: center;

}
#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 */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #C97A27;
	font-weight: lighter;
	font-size: 1.5em;
	text-transform: lowercase;
}
#header h2 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	font-weight: lighter;
	font-size: .75em;
	text-transform: lowercase;
	padding: 15px 0;
	text-align: left;
}
#MainNav {
	height: 31px;
	background-color: #FFFFFF;
}
#MainNav ul{
	list-style:none;
	text-align: right;
	padding-right: 1em;
	font-size: .7em;
}
#MainNav #currentpage a {
	color: #03A197;
}
#SubNav {
	border-top-style: dotted;
	border-top-color: #CCCCCC;
	border-top-width: 1px;
	padding-top: 0.5em;
	padding-bottom: 1.5em;
}
#SubNav ul {
	margin:0 0 0 0;
	padding:0;
	list-style:none;
	text-align: center;
	vertical-align: middle;
	font-size: .7em;
    }
#MainNav li,
#SubNav li{
	display:inline;
	margin:0;
	padding:0 1.25em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight:bold;
	list-style-type: none;
	text-transform: lowercase;
	color: #03A197;
	white-space: nowrap;
	}
#MainNav li a,
#SubNav li a {
	text-decoration: none;
	color: #CCCCCC;
}
#MainNav li a:hover,
#SubNav li a:hover {
	color: #666666;
}
#mainContent {
	background: #FFFFFF;
}
#mainContent h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #03A197;
	font-weight: normal;
	font-size: 1.1em;
	text-transform: lowercase;
	padding:0px 20px;
	text-align: left;
}
#mainContent ul {
	list-style:none;
	text-align:center;
	vertical-align:middle;
}
#mainContent li {
	display:inline;
	padding-right: 5px;
}
#mainContent h3 {
	font-size:0.8em;
	padding-left:0.7em;
	color: #333333;
	font-weight: bolder;
	text-align: left;
	padding-top: 0.3em;
	padding-bottom: 0px;
}
.serif {
	color:#666666;
	font-size:.85em;
	font-family: "Times New Roman", Times, serif;
	padding-left: 0.7em;
}
.sansserif {
	color:#666666;
	font-size:0.8em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding-left: 0.7em;
	padding-right: .7em;
}	
#footer {
	clear:both;
	height: 31px;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(images/sitedesign/wire.gif);
	background-repeat: no-repeat;
}
#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 */
	text-align: right;
	font-size: 0.6em;
	color: #999999;
}
a:link {
	color: #999999;
	text-decoration:none;
}
a:hover {
	color: #03A197;
	text-decoration: underline;
}
a:visited {
	color:#999999;
	text-decoration: none;
}
.imgfloatright {
	padding: 0.5em;
	float: right;
	width: 400px;
	font-size: 0.7em;
	color: #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	text-decoration: none;
}
.floatright {
	float: right;
	padding: 1em 1em 1em 1em;
}
.imgfloatleft {
	padding: 0.5em;
	float: left;
	width: 400px;
	font-size: 0.7em;
	color: #CCCCCC;
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	text-decoration: none;
	margin-right: 0.5em;
	margin-left: .5em;
}
