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

body {
	background: #1D1D1D;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: center; /* Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
	color: #FFFFFF;
}
.topname {
	font: bold 33px "Times New Roman", Times, serif;
	color: #1D1D1D;
	position: absolute;
	left: 158px;
	top: 3px;
	width: 422px;
}


/* 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, lo, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p {
	font-size: 12px;
}
h1 {
}
h2 {
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
}
a:visited {
}
a:hover {
}
a:active {
}

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

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

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	height: 150px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 5px solid #1C87C1;
	border-right: 5px none #1C87C1;
	border-bottom: 5px solid #1C87C1;
	border-left: 5px none #1C87C1;
	background: url(images/header.jpg) no-repeat;
}
div#header2 {
	height: 150px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	border-top: 5px solid #1C87C1;
	border-right: 5px none #1C87C1;
	border-bottom: 5px solid #1C87C1;
	border-left: 5px none #1C87C1;
	background: url(images/shutters.jpg) no-repeat;
}
.content {
	padding: 6px;
	float: left;
	width: 415px;
	position: relative;
}
.content2 {
	padding: 0px;
	float: left;
	width: 590px;
	position: relative;
}

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/* Creates the div container for the footer. */
div#footer {
	font: 11px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	height: 60px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 10px;
	clear: both;
	background: #6180B4;
}
div#footer p {
}
div#footer a:link {
}
div#footer a:visited {
}
div#footer a:hover {
}
div#footer a:active {
}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
}
img.right {
	float: right;
}
clear {
	clear: both;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: 0px;
	padding: 0px;
	width: 160px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}
.contactus {
	font: 11px Arial, Helvetica, sans-serif;
	color: #000000;
	position: absolute;
	left: 605px;
	top: 13px;
	width: 157px;
}


/* 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 {
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	width: 162px;
	border-bottom: 1px solid #FFFFFF;
	padding: 6px 0px 6px 6px;
	background: #6180B4;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #9CAFCF url(images/pgname.gif);
	color: #FFFFFF;
}
div#imv_copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
.callout {
	font-size: 12px;
	color: #000000;
	float:right;
	margin-right:-160px;
	margin-left:20px;
	position:relative;
	width: 150px;
	background: #E6F0F9 url(images/pgname.gif) no-repeat center top;
	padding: 26px 6px 6px;
	border: 1px solid #6180B4;
	height: 240px;
}

/*  Tabbed MAIN NAVIGATION ----------------------------- */
/* Removes all margins and padding except bottom padding, which provides room to put our border. This serves as the resting place for our tabs. */

ul#mainnav2 {
	margin: 0px;
	padding: 0px 0px 24px;
	width: auto;
	border-bottom: 5px none #336600;
}
/* This creates the tabs. We set a height for each tab, give it a border and place 2 pixels of space between each tab. We float them left on the navbar and remove the bullets. */

ul#mainnav2 li {
	float: left;
	border: 1px none #336600;
	list-style: none;
	width: 90px;
	margin-top: 2px;
	margin-bottom: 2px;
}

/* This creates the style for our links. */

ul#mainnav2 li a:link, ul#mainnav2 li a:visited, ul#mainnav2 li a:active {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	padding: 12px 4px 4px;
	font-size: 11px;
	background: url(images/button.gif) no-repeat;
	text-align: center;
}
/* Creates hover and current ("on") status for each link. Apply current class to  link to highlight tab.*/

ul#mainnav2 li a:hover, ul#mainnav2 li a.current:link, ul#mainnav2 li a.current:visited {
	color: #FFFFFF;
	border-bottom-style: none;
	background: url(images/buttonon.gif) no-repeat;
}
/* ----------------- CUSTOM CLASSES ----------------- */div#container {
	font: 12px Arial, Helvetica, sans-serif;
	color: #000000;
	background: #FFFFFF;
	width: 770px;
	position: relative;
	margin: 20px auto;
	border: 1px solid #FFFFFF;
}
div#top {
	height: 80px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.topnav {
	position: absolute;
	left: 495px;
	top: 49px;
	width: 278px;
}
.logoholder {
	position: absolute;
	left: -29px;
	top: -85px;
}
.navleft {
	float: left;
	height: 250px;
	width: 160px;
	margin-right: 10px;
}
.tabtop {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #666666;
}
#container .content strong {
	color: #4D6B9F;
}
.footerleft {
	padding: 0px;
	float: right;
	width: 300px;
}
#container #footer a {
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}
#imv_copyright a {
	color: #FFFFFF;
	text-decoration: none;
}
.slogan {
	position: absolute;
	left: 195px;
	top: 33px;
}
button {
	color: #FFFFFF;
	background: #1D1D1D;
}
input {
	color: #FFFFCC;
	background: #1D1D1D;
	border-style: none;
	font-size: 11px;
}


div#clear {
	clear:both;
}