/* CSS for  */

* {
	margin: 0;
	padding: 0;
}
body {
	text-align: center;
	color: #777777;
  font: 62.5% Arial, Helvetica, sans-serif; /* 62.5% resets 1em to the equivalent of 10px */
	background: url('/images/bg-body.jpg') top center no-repeat #293b6b;
}


/* Global Styles */

a, a:link { color: #1c3f95; text-decoration: none; }
a:hover { text-decoration: underline; }
a.broken, a.highlight { color: #FFFFFF; background: #B60016; } /* Use this class on links that are broken during site development */

h1 {
	margin: 0;
	padding: 0;
	color: #a51d21;
	font-size: 1.5em;
	font-weight: normal;
	background: url('/images/bg-header.gif') bottom repeat-x #FFFFFF;
}
h1 span {
	display: block;
	padding: 15px 20px;
	background: url('/images/nav-separator.gif') right repeat-y; 
}
h2 {
	margin: 0;
	padding: 15px 20px;
	color: #a51d21;
	font-size: 1.5em;
	font-weight: normal;
	background: url('/images/bg-header.gif') bottom repeat-x #FFFFFF;
}
#home h2 { color: #666666; }

h3 {
	color: #606a83;
	font-size: 1.1em;
	margin: 0;
	padding: 0 0 5px 0;
}

table { border-collapse: collapse; } /* Removes all padding and spacing from table cells */
input, select, option, textarea { padding: 2px; }
object, embed { border: 0; outline: 0; }
fieldset { border: 1px solid #666666; padding: 10px; }
legend { color: #666666; font-weight: bold; }
ul, ol { margin: 0 0 20px 35px; padding: 0; }
li { margin: 0 0 5px 0; }
p { margin: 0; padding: 0 0 20px 0; }
hr { margin: 0 0 15px 0; padding: 0; border: 1px solid #000000; }

.l, .left { float: left; }
.r, .right { float: right; }
.clear { clear: both; }
.clear-l { clear: left; }
.clear-r { clear: right; }

.b, .bold { font-weight: bold; }
.u, .underline { text-decoration: underline; }
.i, .italic { font-style: italic; }
.small { font-size: .79em; } /* IE has trouble recognizing intervals of .1 so we use .11 to make it happy */
.large { font-size: 1.2em; }
.x-large { font-size: 1.4em; }
.x-x-large { font-size: 1.6em; }
.t-c, .text-center { text-align: center; }
.t-r, .text-right { text-align: right; }
.t-l, .text-left { text-align: left; }

img { border: 0; }
img.l, img.left { margin: 0 10px 10px 0; }
img.r, img.right { margin: 0 0 10px 10px; }

.email_confirm, .hide, .hideme { display: none; }
#form_error { font-weight: bold; color: #ed1c24; }

/* Site Colors */

.black { color: #000000; }
.gray, .grey { color: #777777; }
.light-gray { color: #eff1f5; }
.white { color: #FFFFFF; }
.green { color: #008302; }
.red { color: #a51d21; }

.blue { color: #1c3f95; }
.light-blue { color: #869eda; }
.alt-blue { color: #606a83; }
.blue { color: #1c3f95; }
.yellow { color: #de9229; }


/* Navigation */
/* Based on Son of Suckerfish: http://www.htmldog.com/articles/suckerfish/dropdowns */

#nav {
	float: right;
	width: 596px;
	height: 49px;
	margin: 60px -10px 0 5px;
	font-size: 1.6em;
	background: url('/images/bg-nav.png') top left no-repeat;
}

#nav ul { /* Begin First Level Lists */
	margin: 0;
	padding: 1px 0 0 5px;
  line-height: 1;
	list-style: none;
}
#nav ul li { /* All List Items */
	float: left;
	margin: 0;
	padding: 0;
	width: auto; /* width needed or else Opera goes nuts */
}
#nav ul li a {
	display: block;
	position: relative;
	z-index: 999;	
	margin: 0;
	width: auto;
	color: #777777;
}

#nav ul li a span {
	display: block;
	padding: 11px 28px;
	background: url('/images/nav-separator.gif') right repeat-y;
}
#nav ul li.last a span { padding: 11px 27px 11px 28px; background: none; }

#nav ul li a:hover,
#nav ul li.active a,
#nav ul li.last.active a span,
#nav ul li.active.last a,
#nav ul li.last a:hover span { background: url('/images/bg-nav-hover.gif') bottom repeat-x; color: #FFFFFF; text-decoration: none; }

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul { /* lists nested under hovered list items */
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
}


/* Footer Nav */
/* Basic formatting for using the same list as the main nav */

#footer ul { 
	float: left;
	margin: 0;
	padding: 0;
	line-height: 1em; /* Makes borders happy */
	list-style: none;
}
#footer ul li {
	float: left;
	margin: 0 0 0 5px;
	padding: 0 5px 0 0;
	border-right: 1px solid #FFFFFF;
}
#footer ul li a { text-decoration: none; }
#footer ul li a:hover { text-decoration: underline; }
#footer ul li.last { border: 0; } 
#footer ul ul { display: none; }


/* Layout */

#wrap {
	width: 932px;
	margin: 0 auto;
	text-align: center;
}

#header { 
	height: 120px;
	text-align: left; 
}
#logo { margin: 10px 0 5px 20px; position: absolute; }

#flash { margin: 0 0 15px 0; }

#home-content {
	text-align: left;
	font-size: 1.2em;
	line-height: 1.5em;
}

#home-left,
#home-right {	min-height: 360px; }

#home-left {
	float: left;
	width: 585px;
	margin: 0 10px 0 0;
	background: #FFFFFF;
	border: 1px solid #888e9f;
}
#home-left .padding { padding: 15px 25px; }
#who-we-are {
	float: left;
	width: 353px;
}
#services {
	float: left;
	width: 232px;
}

#home #services h2 { padding: 0; } 

#home #services h2 span {
	display: block;
	padding: 15px 20px;
	background: url('/images/nav-separator.gif') left repeat-y; 
}

#services ul { margin: 0 0 20px 15px; padding: 0; }
#services ul li { margin: 0; padding: 0 0 8px 0; }

a.learn-more {
	display: block;
	width: 101px;
	height: 34px;
	background: url('/images/button-learn-more.gif') top left no-repeat;
}
a.learn-more:hover { background: url('/images/button-learn-more.gif') bottom left no-repeat; text-decoration: none; }

#home-right {
	float: left;
	width: 333px;
	background: #FFFFFF;
	border: 1px solid #888e9f;
}
#home-right .padding { padding: 15px 25px; }

#interior-content {
	text-align: left;
	font-size: 1.2em;
	line-height: 1.5em;
	background: url('/images/bg-content.gif') top left repeat-y #FFFFFF;
}
#interior-left {
	float: left;
	width: 724px;
	background: url('/images/bg-shadow.gif') 0px 47px repeat-x #FFFFFF;
}
#interior-left .padding { padding: 15px 20px; }

#interior-left h2 {
	margin: 0 0 15px 0;
	padding: 0 0 5px 0;
	color: #1c3f95;
	font-size: 1.4em;
	font-weight: normal;
	background: none;
	border-bottom: 1px solid #d6d5d3;
}

#banner { padding: 0 0 0 1px; }

#interior-right {
	float: left; 
	width: 208px;
	background: url('/images/bg-shadow.gif') 0px 47px repeat-x #FAFAFA;
}
#interior-right .news { padding: 15px 20px; }

#interior-right .contact {
	padding: 15px 0;
	background: #eff1f5;
	text-align: center;
}
a.contact-us {
	display: block;
	width: 171px;
	height: 36px;
	background: url('/images/button-contact-us.gif') top left no-repeat;
}
a.contact-us:hover { background: url('/images/button-contact-us.gif') bottom left no-repeat; text-decoration: none; }
#interior-right a.contact-us { margin: 0 auto; text-align: center; }

#interior-right .quote { line-height: 2em; padding: 15px 20px; }
.quote .red { font-family: Palatino Linotype, Book Antiqua, Palatino, "Times New Roman", Times, serif; }


ol#sliding-content, 
ol#sliding-content ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ol#sliding-content li a.heading {
	display: block;
	clear: both;
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
	color: #1c3f95;
	font-size: 1.4em;
	font-weight: normal;
	background: none;
	border-bottom: 1px solid #d6d5d3;
}
ol#sliding-content li a.heading:hover { text-decoration: none; }
ol#sliding-content li a.heading img { vertical-align: middle; padding-left: 10px; }

ol#sliding-content li { margin: 0; padding: 0; }

#email-form label {
	font-weight: bold;
	display: block;
	color: #1c3f95;
}
#email-form input.text,
#email-form textarea.textarea { border: 1px solid #CCCCCC; color: #777777; margin: 0 0 10px 0; width: 307px; }
#email-form select { border: 1px solid #CCCCCC; color: #777777; margin: 0 0 10px 0; width: 313px; padding: 0; }
#email-form textarea.textarea { height: 118px; font-family: Arial, Helvetica, sans-serif; font-size: 1.1em; letter-spacing: .05em; }

#footer {
	clear: both;
	padding: 15px 160px 15px 160px;
	font-size: 1.1em;
	color: #FFFFFF;
	line-height: 1em;
}
#footer p { padding: 0 0 15px 0; }
#footer a { color: #FFFFFF; }
#footer a.bwm { }
#footer a.bwm:hover { color: #3f8aca; } /* Blue Water blue for hover */

