﻿@import url("layout.css");
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #fafaff;
	background-image: url("../images/background.gif");
	background-repeat: repeat;
	background-attachment: scroll;
	
}

/*/////////////////////////////////////////////////////////
// The contained is the main layer that holds all the other
// layers on the page. It is set up to auto center and to 
// size the page to 700 pixels wide. This allows it to fit
// on a standard 800x600 resolution display 
/////////////////////////////////////////////////////////*/
#container {
	position:relative;
	width: 700px;			/* Page will always be 700 pixels wide 								*/
	margin: 10px;			/* Sets a margin around the entire page of 10 pixels				*/
	margin-left:auto;		/* Margin-right/left with auto sets page to be centered in browser	*/
	margin-right:auto;
	padding:10px;
	background-color: #fafaff;
}

/*/////////////////////////////////////////////////////////
// The following masthead definition effect how the header
// appears across the top of the page. Backgrond color etc
// should be changed here. 
/////////////////////////////////////////////////////////*/
#masthead {
	position:relative;
	width: 100%;
	height: 100px;
	background-image: url("../images/NewportBridgeHeader w NCC.jpg");
	background-color: #F2F7F6;
}
#masthead h1 {
	color: #023e74;
}
#masthead h3 {
	color: #023e74;
}
#masthead p{
	width: 100%;
	float:right;
}

#masthead img {
	border-style:none;
	margin: 0;
	padding: 0;
}

/*/////////////////////////////////////////////////////////
// The navigation definitions control how the objects
// in the button navigation area appear. It is defaulted
// to float left
/////////////////////////////////////////////////////////*/
#navigation {
	position: relative;
	height: 100%;
	float: left;
	width: 110px;
	background-color: #F2F7F6;
}

#navigation ul {
	list-style-type:none;
	background-color:inherit;
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

#navigation li {
	background-color:inherit;
	margin: 0;
	padding: 0;
}

#navigation a {
	color: #023e74;
	background-color:inherit;
	text-decoration: none;
	padding: 0px;
}

#navigation img {
	border-style:none;
	background-color:inherit;
	height:20px;
	width:100px;
	margin: 0px;
	padding: 0;
}

/*/////////////////////////////////////////////////////////
// The footer definitions control how the objects
// in the lower hperlink menu area appear. 
/////////////////////////////////////////////////////////*/
#footer {
	position:relative;
	float:none;
	text-align: center;
	clear: both;
	width: 100%;
	background-color: #fefeff;
}

#footer p {
	color: #808080;
	margin-top: 5px;
	width: 100%
}
#footer a {
	color: #5f8ea9;
	text-decoration: underline;
}
#footer a:hover {
	color: #33627d;
	text-decoration: none;
}

#content {
	position: relative;
	float: left;
	background-color: #F2F7F6;
	margin:0;
	padding-top:20px;
	padding-left:10px;
}

/* Content Styles */
h6 {
	color: #023e74;
}
h2 {
	border-bottom: none;
	color: #023e74;
}
h5 {
	color: #023e74;
}
h4 {
	color: #023e74;
}
h3 {
	color: #023e74;
}
#content h1 {
	color: #023e74;
}
#content img {
	padding: 3px;
}
a {
	color: #5f8ea9;
	text-decoration: underline;
}
a:hover {
	color: #33627d;
	text-decoration: underline;
}
.style_bold {
	font-weight: bold;
}
.style_italic {
	font-style: italic;
}