/* layout */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ddd;
	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;
}
.oneColFixCtrHdr #container {
	width: 1004px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #e9e9cf;
	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. */
	
}

.oneColFixCtrHdr #header {
	
	padding: 20px 10px 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. */
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.oneColFixCtrHdr #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 */
}

.clearfloat {
	clear:both;
}

/* navigation */

#navbar {
	margin:0;
	padding:0;
	list-style: none;
    width:1024px;
    height: 62px;
    overflow: hidden;
		}
#navbar li {
    float: left;
}
#navbar a {
	display: block;
	background-image: url(nav/nav.gif);
	padding-top: 62px; /* same as height of #example-nav */
	text-decoration: none; /* needed for IE8 beta, otherwise it still shows the underlines */
}
#navbar-logo {
    width: 270px;
}
#navbar-home {
    width: 96px;
	background-position: -284px 0px;
}
#navbar-home:hover {
    background-position: -284px -62px;
}
#navbar-port {
    width: 188px;
	background-position: -380px 0px;
}
#navbar-port:hover {
    background-position: -380px -62px;
}
#navbar-cont {
    width: 156px;
	background-position: -569px 0px;
}
#navbar-cont:hover {
    background-position: -569px -62px;
}
#navbar-link {
    width: 118px;
	background-position: -724px 0px;
}
#navbar-link:hover {
    background-position: -724px -62px;
}
#navbar-end {
    width:176px;
	background-position: -842px -0px;
}

/* typography etc */
h1, h2, h3, h4, h5, h6 {
	color: #444;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: lighter;
}
h1 {
	font-size: 40px;
	letter-spacing: -2px;
	line-height:48px;
	}
h2 {
	font-size: 30px;
	letter-spacing: -1px;
	line-height:26px;

}
h3 {
	font-size: 23px;
	letter-spacing: -1px;
	line-height:17px;

}
h4 {
	font-size: 18px;
	letter-spacing: -1px;

}
p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	letter-spacing: -1px;
	color: #555;
	width: 600px;
	margin: 0 0 5px 0;
}
a:link, a:visited {
	color: #222;
	}

	
/* tom-imagery */

.photo {
	border:20px solid #ffffff;
	margin:0 0 20px 20px;
	float:right;
}
.bookbank img{
	margin:0 20px 20px 0;
	float:left;
	border:1px solid #444444;
}




