﻿/* --------------------------------------------------------------- */
/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */
/* --------------------------------------------------------------- */

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */
body, p, td { font: normal 11px tahoma;}

/* Defines the body tag */
body {
	background: #333 url(images/bg.gif) top left repeat-x;
	margin: 0; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0; /* Always apply padding if you apply margins */
}

div {
	margin: 0;
	padding: 0;}

/* Redefines the p tag */
p {}

/* GENERAL H1 TAG */
h1,h2,h3,h4,p {
	font-weight: normal;
	margin: 0;
	padding: 0;}

/* GENERAL H2 TAG */
h1 { font-size: 22px;}

/* GENERAL H2 TAG */
h2 { font-size: 18px;}

img { border: 0;}

/* Creates the general link style for the site. This is not the main navigation.  */
a {
	text-decoration: underline;
	font-weight: bold;
	color: #f00;}
a:visited { text-decoration: none;}
a:hover {
	text-decoration: none;
	color: #000;}
a:active { text-decoration: none;}

/* -------------------------------------------------------- */
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* -------------------------------------------------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  { border-collapse: collapse;}

/* DIV CONTAINER */
div#container {
	position: relative;
	margin: 0 auto;
	width: 770px;
}

/* DIV HEADER */
div#header {
	width: 770px;
	height: 155px;
	background: url(images/header_bg.gif) top left no-repeat;}

	#header H1 {
		position: absolute;
		top: 50px;
		left: 400px;
		width: 370px;
		text-align: right;
		font-weight: bold;
		color: #003366;}

/* DIV BODY */
div#body {
	width: 770px;
	clear: both;
	background: url(images/body_bg.gif) top left repeat-y;}

div#img {
	float: left;
	width: 250px;}

div#content {
	float: left;
	width: 520px;
	background: none;}
	#content h1 {
		padding: 10px;
		background: url(images/h1_bg.gif) top left no-repeat;}
	#content h2 {
		padding: 5px 10px;}
	#content p {
		clear: both;
		padding: 5px 10px;}
	#content dl {
		padding: 5px 10px;}
	#content dt {}
	#content dd {}

dl.services {
	float: left;
	width: 150px;}
	.services dt {
		padding: 3px 0;
		text-indent: 15px;
		background: url(images/bullet.gif) left center no-repeat;}

/* DIV FOOTER */
div#footer {
	clear: both;
	width: 770px;
	font-size: 10px;
	background: #333;}

	/* DIV UTILITY NAV */
	div#utilnav {
		margin-left: 250px;
		width: 520px;
		text-align: center;
		font-size: 10px;
		padding: 3px 0;
		color: #fff;
		background: #333;}
		#utilnav a {
			text-decoration: none;
			font-size: 11px;
			color: #fff;}
		#utilnav a:hover {
			text-decoration: underline;
			color: #fc0;}
	
	/* DIV COPYRIGHT */
	div#copyright {
		margin-left: 250px;
		width: 520px;
		font-size: 9px;
		color: #fff;
		padding: 3px 0;
		text-align: center;}
		#copyright a {
			text-decoration: none;
			color: #fff;}
		#copyright a:hover {
			text-decoration: underline;
			color: #fc0;}

/* -------------------------------------------------- */
/* ----------------- IMAGE ELEMENTS ----------------- */
/* -------------------------------------------------- */
img.left {
	float: left;}
img.right {
	float: right;}
.clear {
	clear: both;}

/* -------------------------------------------------------*/
/* ----------------- CSS HORIZONTAL NAV ----------------- */
/* -------------------------------------------------------*/

/* NAVIGATION CONTAINER */
div#nav {
	position: absolute;
	top: 125px;
	left: 250px;
	width: 250px;
	height: 25px;}
	
div#nav li a#current, div#nav li a#current:hover{
	background: #fff;
	color: #000;}

/* UL TAG */
div#nav ul {
	margin:0;
	padding:0;
	list-style:none;
	font-size:85%;
	text-transform:uppercase;} 

div#nav li {
	float:left;
	margin:0;
	padding:0;
	line-height:normal;
	text-indent:0;}

div#nav li a {
	display:block;
	padding:7px 10px;
	margin: 0 2px 0 0;
	color:#666;
	text-decoration:none;
	background-color:#ccc;
	font-weight: bold;}

* html #nav a {
	width: 1%;}

div#nav li a:hover {
	background: #333;
	color: #fff;}
