@charset "utf-8";
/* CSS Document */

body {
	margin: 10px auto; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
/*	background: #E2DDB5; */
	background:#001535 url(../images/pagebkgd.jpg) repeat-x;
	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 */
}
div.container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid gray;
	text-align: left; /* this overrides the text-align: center on the body element. */
} /* Fix error */
#topcontact {
	/*position:fixed; */
	top:0;
	right:0;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#5A5A5A;
	text-align:right;
	padding-right: 18px;
	padding-top: 6px;
	background-color: #FFFFFF;
}
/* STYLING FOR 3 COLUMN SUB PAGES */
.thrColFixHdr #header {
	margin-bottom: 25px;
	padding: 0 0px 0 0px;  /* 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. */
} 
.thrColFixHdr #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 */
}
/* :BUG: The example in the book uses an img element to display the image.
However IE6/7 seems to have problems displaying the anchors as block when over an image element
As such, I have updated the example to use background images instead  FROM CSS MASTERY FILES IMAGE MAP EXAMPLE*/

#navbar {
	text-align:right;
	padding-right: 18px;
	padding-bottom: 10px;
	top: 73px;
	right: 0px;
	float: right;
	margin-top: -40px;
}
#linkmap {
	width: 760px;
	height: 100px;
	position: relative;
	background:url(../images/header_logobkgd.jpg) no-repeat;
}
#linkmap ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
#linkmap .home a {
	position: absolute;
	text-indent: -1000em;
	top: 40px;
	left: 5px;
	width: 290px;
	height: 60px;
}
#linkmap .email a {
	background:url(../images/transparent.gif) no-repeat;
	position: absolute;
	text-indent: -1000em;
	top: 0px;
	left: 560px;
	width: 195px;
	height: 30px;
}
#footer {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height:14px;
	color:#5A5A5A;
	text-align:center;
	background-color: #FFFFFF;
	padding-bottom:20px;
}
#footer a:visited {
	color: #4b3c25;
}
.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;
}

