/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #000000;
	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. */
}

/* 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;
	margin-bottom: 5px;
	line-height: 16px;
	clear: left;
}
h1 {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #000;
	text-transform: uppercase;
}
h2 {
	color: #DE1C18;
	font: bolder 14px Arial, Helvetica, sans-serif;
	margin-top: 10px;
}
h3 {
	color: #FFFFFF;
	background: #000000;
	font: bold 12px Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	padding: 3px;
	border-left: 5px solid #D61818;
	margin-top: -5px;
	letter-spacing: 1px;
}
h4 {
}
/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
}
a:visited {
}
a:hover {
}
a:active {
}
address {
	color: #FFFFFF;
	text-align: center;
	font: normal 11px Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 770px;
	margin-right: auto;
	margin-left: auto;
}
/* Creates the div container for the site. */
div#container {
	background: url(images/bg_page.gif) repeat-y;
	width: 770px;
	margin: 0px auto;
}
div#leftcolumn {
	float: left;
	width: 320px;
}
div#rightcolumn {
	float: right;
	width: 320px;
}
/* Creates the div for the content */
div#content {
	width: 700px;
	padding-top: 25px;
	margin-right: auto;
	margin-left: auto;
}
/* Creates the div container for the footer. */
div#footer {
	clear: both;
	background: url(images/footer.gif) no-repeat;
	height: 38px;
	width: 770px;
}
div#utilitynav {
	color: #FFFFFF;
	text-align: center;
	height: 11px;
	clear: both;
}
div#utilitynav a {
	font-size: 11px;
	color: #FFFFFF;
	text-align: center;
}
div#utilitynav p {
	text-align: center;
}
/* Styles the copyright div */
div#copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	margin-top: 10px;
}
div#copyright a {
	font-size: 9px;
}
/* -----------------IMAGE ELEMENTS ----------------- */
.left {
	float: left;
	margin-right: 15px;
}
.right {
	float: right;
	margin-left: 15px;
	margin-bottom: 20px;
}
.clear {
clear: both;
}
div.imgleft {
	width: 260px;
	float: left;
	margin-left: 10px;
	margin-right: 20px;
}

div.imgright {
	width: 310px;
	float: right;
	margin-left: 15px;
}
div#audio img {
	float: left;
}
div#footer img {
	float: left;
}
div.services img {
	margin-left: 20px;
}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
}
/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	background: url(images/bg_nav.gif) no-repeat left top;
	float: left;
	width: 100%;
	margin: 0px;
	list-style-type: none;
	/*height: 31px;*/
	padding-left: 50px;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px auto;
	padding: 3px 0px 0px 0px;
	height: 25px;
	}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	text-decoration: none;
	text-align: center;
	display: block;
	width: auto;
	padding: 5px 6px;
	margin: 0px;
	border-right: 1px solid #FFFFFF;
	color: #FFFFFF;

}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	background: #000;
	border-bottom: 3px solid #FFFFFF;
}
/* ---------------------------- LIST ELEMENTS ----------------------------  */
li {
	font-size: 11px;
	line-height: 13px;
	margin-bottom: 5px;
}
  ul.left {
	float: left;
	width: 300px;
	margin: 0px 20px 30px 15px;
	padding: 0px 0px 15px 0px;
	border: 0px none;
	list-style-position: inside;
	list-style-type: square;
  }
ul.right {
	float: left;
	width: 180px;
	margin: 10px 0px 0px;
	padding: 15px 0px;
	border: 0px none;
	list-style-position: inside;
	list-style-type: square;
}

/* ---------------------------- CUSTOM CLASSES ----------------------------  */
div.white {
	border: 5px solid #000000;
	background: #FFFFFF;
	margin: 10px auto;
	padding: 5px;
	width: 550px;
	clear: both;
}
div.white2 {
	border: 5px solid #000000;
	background: #FFFFFF;
	margin: 10px auto;
	padding: 5px;
	width: 330px;
	clear: both;
	float: left;
}
div.services {
	border: 3px solid #000000;
	background: #FFFFFF;
	padding: 5px;
	width: 300px;
	margin-bottom: 15px;
	margin-top: 20px;
}

div.inset {
	clear: both;
	width: 600px;
	margin: 15px auto;
}

div.right {
	float: right;
	width: 300px;
}
div.imgleft p {
	font-size: 11px;
	font-weight: bold;
	text-align: center;
}


/* ---------------------------- UBOLTS TABLE ----------------------------  */
table {
border-collapse: collapse;
padding: 0px;
margin: 0px;
}
table#ubolts {
width: 300px;
border-collapse: collapse;
padding: 0px;
margin: 0px;
}
table#ubolts td {
	width: 150px;
	font-size: 11px;
	vertical-align: top;
}
table#ubolts tr {
padding: 0px;
}
table#ubolts p {
	font-size: 11px;
}
table#ubolts td.gray {
	background: #CCCCCC;
}


