﻿@charset "utf-8";
body {
	background-color: #999;
	background-image: url(../images/backgound.gif);
	margin: 10px;
	font-family: Arial, Helvetica, sans-serif;
}

p {
	margin-bottom: 0px;	
}

h1 {
	font-size: 23px;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	color: #0090d7;
	border-bottom-color: #0090d7;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
h2 {
    color: #000;
    font-size: 21px;
    border-bottom: solid 1px #000;
}
h3 {
    color: #0090d7;
    font-size: 17px;
}
table h3 {
    margin-top: 0px;
}
a {
    color: #0090d7;
    text-decoration: underline;
}
a:hover {
    color: #000;
    text-decoration: underline;
}
/*
a {
	color: #000;
	text-decoration: none;		
}
a:visited {
	color: #333;	
}
a:hover {
	color: #0090d7;
	text-decoration: underline;
}
*/
a img {
	border: none;	
}

/**
 *	Common Classes
 */
.clear {
	clear: both;
	margin: 0px;
	height: 1px;
}
a.grey {
	font-size: 21px;
	color: #7a7978;
	font-weight: bold;
	text-decoration: none;
}
a.grey:hover, .blue {
	color: #0090d7;
}
a.grey img {
	border: none;
	margin: 0px 0px -5px 12px;
}
.clickable {
	cursor: pointer;	
}
.img_left {
    float: left;
    margin: 0px 10px 10px 0px;
}
.img_right {
    float: right;
    margin: 0px 0px 10px 10px;
}
/**
 *	End Common Classes
 */
/**
 *	Header Styles
 */
.header {
	height: 70px; /* 90px with padding */
	width: 750px; /* 800px with padding */
	padding: 10px 25px;
	margin: 0px auto;
	
	/* background */
	background-color: #FFF;
	background-image: url(../images/header_background.gif);
	background-repeat: repeat-x;
	
	/* border */
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #e8e8e8;
	border-right-color: #e8e8e8;
	border-left-color: #e8e8e8;
	
	/* rounded border */
	-webkit-border-radius: 6px 6px 0px 0px;    /* for Safari */
	-moz-border-radius: 6px 6px 0px 0px;       /* for Firefox */	
}
.header .left {
	float: left;
}
.header .logo {
	margin-top: 15px;
}

.header .right {
	width: auto;
	float: right;
}
.header .phone_number {
	width: auto;
	font-size: 23px;
	color: #0090d7;
	font-weight: bold;
	padding-left: 25px;
	background-image: url(../images/phone_icon.gif);
	background-repeat: no-repeat;
}

/**
 *	End of Header Styles
 */
 
/**
 *	Bing Search Box Styles
 */
#WLSearchBoxDiv {
	margin-top: 10px;
	background-color: #FFF;
	border: solid 1px #016fa9;
	padding: 3px;
	height: 21px;
}
#WLSearchBoxInput {
	width: 140px;
	
	vertical-align: top;
	border: solid 1px #FFF;	/* hide the border */
}
#WLSearchBoxButton {
	vertical-align: top;
	width: 19px;
	height: 21px;
	margin-top: 1px;
}
/**
 *	End of Bing Search Box Styles
 */
/**
 *	Navigation Bar Styles
 */
.navigation {
	display: block;
	width: 800px;
	height: 42px;
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	
	/* background */
	background-color: #0090d7;
	background-image: url(../images/navigation_background.gif);
	background-repeat: repeat-x;
	
	/* border */
	border: solid 1px #0090d7;
}

.navigation li {
	display: block;
	width: 90px;
	margin-right: 5px;
	float: left;
	margin-left: 5px;
}

.navigation a {
	display: block;
	height: 38px; /* 40px with padding */
	width: 100px;
	color: #FFF;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	padding-top: 4px;
}

.navigation a.wide {
	width: 100px;
}

.navigation a:hover {
	background-color: #FFF;
	color: #0090d7;
}

.navigation .sub_navigation {
	position: absolute;
	width: auto;
	margin: 0px;
	padding: 0px;
	list-style: none;
	
	/* background */
	background-color: #0090d7;
	/* border */
	border: solid 1px #0090d7;
	
	display: none; 
}

.navigation li:hover .sub_navigation {
	display: block;
}

.navigation .sub_navigation li {
	display: block;
	width: auto;
	float: none;
	margin: 0px;
	padding: 0px;
}

.navigation .sub_navigation a {
	height: auto;
	width: auto;
	text-align: left;
	padding: 7px;
	border-bottom: solid 1px #FFF;
}
.navigation .sub_navigation a.no_border {
	border-bottom: none;
}
/**
 *	End of Navigation Bar Styles
 */
.main_content {
	width: 750px;
	margin: 0px auto;
	padding: 10px 25px;
	
	/* background */
	background-color:#FFF;
	background-image: url(../images/main_content_background.gif);
	background-repeat: repeat-x;
	
	/* border */
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #e8e8e8;
	border-left-color: #e8e8e8;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFF;
}
/**
 *	Footer Shadow
 */
.footer_shadow {
	width: 800px;
	height: 10px;
	margin: 0px auto;
}

.footer_shadow div {
	float: left;	
	height: 10px;
}
.footer_shadow .left {
	background-image: url(../images/footer_shadow_left_corner.png);
	width: 10px;
}
.footer_shadow .middle {
	float: left;
	background-image: url(../images/footer_shadow.png);
	width: 780px;
	height: 10px;
}
.footer_shadow .right {
	background-image: url(../images/footer_shadow_right_corner.png);
	width: 10px;
}
/**
 *	End of Footer Shadow
 */
/**
 *	Footer
 */
.footer {
	width: 750px;
	margin: 10px auto 0px auto;
	padding: 10px 25px;
	background-color: #FFF;
	
	/* border */
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #e8e8e8;
	border-right-color: #e8e8e8;
	border-left-color: #e8e8e8;
	
	/* rounded border */
	/* rounded border */
	-webkit-border-radius: 6px 6px 0px 0px;    /* for Safari */
	-moz-border-radius: 6px 6px 0px 0px;       /* for Firefox */
}

.footer .address {
	width: 190px;
	text-align: center;
	float: left;
}

.footer .address h1 {
	color: #0090d7;
	font-size: 15px;
	font-weight: bold;
	margin: 0px;
	border: none;
}

.footer .address h2 {
    color: #000;
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
    border: none;
}

.footer .address p {
	margin: 0px;
	font-size: 14px;
}

.footer .call_now {
	width: auto;
	float: right;
	text-align: right;
	background-image: url(../images/contact_bubbles.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}

.footer .call_now p {
	color: #0090d7;
	font-size: 17px;
	font-weight: bold;
	margin: 0px;		
}

.footer .call_now p.phone_number {
	color: #000;
	font-size: 29px;
	font-weight: bold;		
}
/**
 *	Subfooter
 */
.sub_footer {
	width: 780px;
	margin: 10px auto;
	padding: 0px 10px;
}

.sub_footer .links {
	width: 615px;
	text-align: center;
	float: left;
}

.sub_footer a {
	font-size: 12px;
	color: #000;
	text-decoration: none;
}

.sub_footer a:hover {
	color: #0090d7;
	text-decoration: underline;	
}

.sub_footer .usa_eyes {
	display: block;
	float: right;
	border: none;
}
.copywrite {
	width: 800px;
	margin: 0px auto;
	text-align: center;
	font-size: 12px;
	
}