/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px 0px 20px;
	padding: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	background-image: url(images/bg.jpg);
}
/* Sets the margin and padding to zero */
ul, li {
	 margin: 0;
	 padding: 0;
	 text-align: left;  /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* 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.) */

p, h1, h2, h3, h4, h5, a, ul, li, ol, td {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: #4F4F4F;
}
/* Redefines the p tag */
p {
	font-size: 12px;
	line-height: 16px;
	margin-right: 10px;
	margin-left: 10px;
	margin-bottom: 20px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}

h1 {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	font-size: 20px;
	font-weight: bold;
	color: #FE0000;
}
h2 {
	font-size: 16px;
	font-weight: bold;
	color: #1860AF;
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 10px;
	margin-bottom: 20px;
}
h3 {
	font-size: 18px;
	font-weight: bold;
	color: #FE0000;
	font-family: Arial, Helvetica, sans-serif;
	margin-bottom: 0px;
	text-transform: uppercase;
	text-align: center;
}
h4 {
	font-size: 14px;
	font-weight: bold;
	color: #FE0000;
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 10px;
	margin-bottom: 20px;
	text-transform: uppercase;
}/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	margin: 0px;
	padding: 0px;
	font-weight: bold;
	color: #306FB8;
}
a:hover {
	text-decoration: underline;
	color: #FE003A;
	font-weight: bold;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: url(images/header.gif) no-repeat;
	position: relative;
	width: 960px;
	height: 410px;
	margin: 0px;
	padding: 0px;
	text-align: left;
	vertical-align: top;
}
div#headerimg {
	position: absolute;
	top: 124px;
}
/* Creates the div container for the site. */
div#container {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 0px;
	margin-bottom: 0px;
	padding: 0px;
	position: relative;
	background-color: #FFFFFF;
}

/* Creates the div for the content */
div#content {
	margin: 0px;
	padding: 0px 0px 0px 25px;
	text-align: left;
	width: 650px;
	float: left;
}
div#content img {
	margin: 0px;
	padding: 0px;
	border: none;

}
div#content img.right {
	clear: right;
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
	padding: 2px;
}
div#utilitynav {
	font: 10px Arial, Helvetica, sans-serif;
	color: #C1D7ED;
	text-transform: uppercase;
	text-align: center;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FE0000;
	padding-top: 5px;
	margin-right: auto;
	margin-left: auto;
}
div#utilitynav a:link, div#utilitynav a:visited {
	font-size: 10px;
	text-decoration: none;
	font-weight: normal;
	color: #C1D7ED;
	text-align: center;
}
div#utilitynav a:hover {
	text-decoration: none;
	color: #269BD0;
}
div#contentbottom {
	clear: both;
	padding: 5px 0px 0px;
	width: 960px;
	background-image: url(images/footer.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 10px;
	margin-top: 0px;
	text-align: left;
}
div#footer {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	text-transform: capitalize;
	width: 960px;
	margin: 0px auto;
	padding: 0px;
	position: relative;
	text-align: center;
}
/* Styles the copyright div */
div#copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #999999;
	text-transform: capitalize;
	position: absolute;
	width: 960px;
	left: 10px;
	text-align: left;
}
div#nav {
	position: absolute;
	top: 94px;
	z-index: 10;
	left: 0px;
}
ul#mainnav {
	font: bold 11px Arial, Helvetica, sans-serif;
	margin: 0;
	position: relative;
	padding: 0px;
	width: 960px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
	position: relative;	
	float: left;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	color: #FCDB14;
	display: block;
	padding:7px 42px 8px 43px;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #EC2806;
	font-weight: bold;
}

/* Creates our hover status. */
ul#mainnav li a:hover {
	color: #fff;
	width: auto;
}

/* Creates our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	color: #fff;
	width: auto;
	text-transform: uppercase;
}

/* ----------------- DROP-DOWN NAVIGATION -------------------------*/
ul#mainnav li ul {
	position: absolute;
	top: 30px;
	left: 0;
	width: 170px;
	display: none;
	background: #18144C;
	}
ul#mainnav li>ul {
	top: auto;
	left: auto;
}
/* Fix IE. Hide from IE Mac \*/
* html ul#mainnav li li { float: none; height: 1%; }
* html ul#mainnav li li a { height: 1%; }
/* End */
ul#mainnav li li {
	display: block;
	float: none;
}
ul#mainnav li:hover ul, ul#mainnav li.over ul {
	display: block;
	z-index: 2;
}
ul#mainnav li ul li a, ul#mainnav li ul li a:link, ul#mainnav li ul li a:visited, ul#mainnav li ul li a:active {
	display: block;
	width: 170px;
	color: #6CB9FD;
	z-index: 2;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 30px;
	background-color: #18154E;
	border-top: none;
	border-right: none;
	border-bottom: 1px solid #231D6D;
	border-left: none;
}
ul#mainnav li ul li a:hover {
	width: 170px;
	color: #ffffff;
	z-index: 2;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 30px;
}

ul#list {
	font-size: 12px;
	padding: 0px;
	margin-left: 60px;
	line-height: 16px;
	margin-bottom: 20px;
}
ul#list li {
	list-style-position: outside;
	line-height: 20px;
	list-style-image: url(images/bullet.gif);
}
ul#list2 {
	font-size: 12px;
	padding: 0px;
	margin-left: 25px;
	line-height: 16px;
	margin-bottom: 20px;
}
ul#list2 li {
	list-style-position: outside;
	line-height: 20px;
	list-style-image: url(images/bullet.gif);
}
ul#number {
	font-size: 12px;
	padding: 0px;
	margin-left: 60px;
	line-height: 16px;
	margin-bottom: 20px;
}
ul#number li {
	list-style-position: outside;
	line-height: 20px;
	list-style-type: decimal;
}
.name {
	color: #FE0000;
	text-transform: uppercase;
}
.clear {
	clear: both;
}
/* ----------------- 2 COLUMN FORM  ------------------- */
div#form {
	width: 700px;
	margin-right: auto;
	margin-left: auto;
}
input {
	margin-bottom: 10px;
	width: 200px;
	color: #4F4F4F;
	font-family: Arial, Helvetica, sans-serif;
}
textarea {
	margin-bottom: 10px;
	width: 200px;
	height: 70px;
	color: #4F4F4F;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
label {
	padding: 5px 20px 0 0;
	display: block;
	text-align: left;
	color: #4F4F4F;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
textarea#comments {
	width: 90%;
	color: #4F4F4F;
}
div#right {
	float: right;
	margin: 0px;
	width: 260px;
	padding: 8px 8px 8px 0px;
	text-align: right;
}
div#bluebox {
	border: 1px solid #C1D7ED;
	background-color: #E5EBF3;
	margin-bottom: 8px;
	width: 250px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
div#bluebox p {
	font-size: 11px;
	color: #1960AF;
	font-style: italic;
	font-weight: bold;
	padding: 15px;
	margin: 0px;
}
div#list {
	float: left;
	width: 300px;
}
.line {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #C1D7ED;
}
.blue {
	color: #1960AF;
}
div#header img.emergency {
	position: absolute;
	top: 0px;
	right: 0px;
	border: none;
}
h5 {
	font-size: 14px;
	font-weight: bold;
	color: #FE0000;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	background-color: #E4EBF1;
	padding: 5px;
	border: 1px solid #C1D7ED;
	clear: both;
	margin: 0px;
}
div#gallery img {
	border: 1px solid #C1D7ED;
	padding: 2px;
	margin-bottom: 5px;
}
h2 a {

	font-size: 16px;
	font-weight: bold;
	color: #1860AF;
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 10px;
	margin-bottom: 20px;
}
div#header img.specials {
	position: absolute;
	left: 345px;
	top: 0px;
	border: none;
}
div#content img.bigdoors {
	border: 1px solid #C1D7ED;
	padding: 2px;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-top: 20px;
}
div#coupon {
	border: 4px dashed #1860AF;
	font-size: 36px;
	color: #FE0000;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	margin-right: 60px;
	margin-left: 50px;
	padding: 20px;
	margin-bottom: 20px;
}
div#column {
	float: left;
	width: 315px;
	margin-left: 10px;
}
div#column h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0px 15px 10px 0px;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2E296B;
	background-color: #165AA4;
	text-indent: 2pt;
	font-weight: bold;
}
div#column img {
	margin-bottom: 15px;
}
div#bigcolumn {
	clear: both;
	width: 635px;
}
div#bigcolumn img {

	margin-bottom: 15px;
}
div#bigcolumn h2 {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0px 0px 10px 10px;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #332E70;
	background-color: #165AA4;
	text-indent: 2pt;
	font-weight: bold;
}
div#column p {

	font-size: 11px;
	line-height: 14px;
	margin-right: 15px;
	margin-bottom: 15px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}
div#columnsm {
	float: left;
	width: 205px;
	margin-left: 10px;
}
div#columnsm p {


	font-size: 11px;
	line-height: 14px;
	margin-right: 15px;
	margin-bottom: 15px;
	text-transform: none;
	padding: 0px;
	margin-top: 0px;
}
div#columnsm img {
	margin-bottom: 15px;
	margin-left: 50px;
}
div#columnsm h2 {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0px 15px 10px 0px;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2E296B;
	background-color: #1860AF;
	text-indent: 2pt;
	font-weight: bold;
}
td p {
	font-size: 11px;
	line-height: 16px;
	text-transform: none;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
}
div#column img.right {
	margin-bottom: 15px;
	float: right;
	margin-left: 5px;
	margin-top: 0px;
	margin-right: 0px;
	padding: 0px;
}
.clearleft {
	clear: right;
}
table h2 {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0px;
	padding: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2E296B;
	background-color: #165AA4;
	text-indent: 2pt;
	font-weight: bold;
}
