/* CSS Document */

/* ------------------------------- formatting ----------------------------- */

body {
	margin: 0;
	padding: 0;
	scrollbar-face-color:#B40500;
	scrollbar-arrow-color:#FFFE8A;
	scrollbar-track-color:#AAAAAA;
	scrollbar-shadow-color:#4A4218;
	scrollbar-highlight-color:#FFEB66;
	scrollbar-3dlight-color:#FFFFFF;
	scrollbar-darkshadow-Color:#FFFFFF;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-repeat: no-repeat;
}

h1 {
	font: bold x-large Verdana, Arial, Helvetica, sans-serif;
	color: #43616B;
	margin-top: 0px;
	}

h2 {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #9C1A1E;
	}
	
h3 {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #9C1A1E;
	}
	
h4 {
	font: bold small Verdana, sans-serif;
	color: #9C1A1E;
	margin-bottom: 2px;
	}

h5 {
	font: italic bold small Verdana, Arial, Helvetica, sans-serif;
	color: #43616B;
	margin-top: 2px;
	}
	
p {
	font: 0.7em Verdana, sans-serif;
	}

#center p {
	font: 0.8em Verdana, sans-serif;
	}
	
#footer p {
	margin: 4px;
	text-align: center;
	}

a {
	color: #34339B;		
	}
a:hover {
	color: #9C191E;	
	}

hr {
	color: #A5B5C6;
	height: 1px;
	}
	
a img {
	border: 0px none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}

div#top a {
	display: block;
	background-color: #FFFFFF;
	}



.textbox {					/* Until IE understands <css> input[type="file"] { </css> It's better to define a new style then it is to re-define the input tag because radio buttons cop a beating */
	padding: 4px;
	font:  small verdana, sans-serif;
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
	}

.button {
	padding: 2px;
	font: bold small verdana, sans-serif;
	color: #fff;
	background-color: #5C6F90;
	border: 1px solid #000;
	}

.latestarticle {
	margin-bottom: 0px;
	}
	
.headshot {
	display: inline;
	float: left;
	margin: 0px 0.5em 0.5em 0px;
	}
	

/* 

------------------------------- layout ----------------------------- 

Notes:

Do not mix px widths with % widths for margins, borders or padding because 
the total box width = set width + padding + border.  (It helps if you can add them together)

The box model hack is used to fix an bug in IE5-Win ...for an explanation from the guy that
wrote it go to http://www.tantek.com/CSS/Examples/boxmodelhack.html

IE6-Win will behave like IE5-Win  if you include <?xml version="1.0"?>  It is apparently
unneccessary so leave it out!

Left Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |   0    |          25%         |   0    |	
 
Center Margins:
 |  marg  |         width        |  marg  | 
 ------------------------------------------
 |   25%  |        (auto)        |   25%  |

Right Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |  1.5%  |          22%         |  1.5%  |				total width= 25%
 

*/

#top {
	padding: 0px;
	background: #FFFFFF no-repeat;
	border-bottom: none;
	}
	
#center {
	margin: 0px 25%;
	padding: 1% 3%;
	background: #fff no-repeat center;
	color: #000;
	border: 1px solid #666666;
	}

#left {
	position: absolute;
	padding: 0px;
	top: 127px;
	width: 130px;
	background: #666666 repeat-x left bottom;
	left: 10px;
	}

#otherleftstuff {
	width: 88%;
	padding: 5px 6% 40px;
	}

#news {
	position: absolute;
	width: 21.9%;
	height: 250px;
	overflow: hidden;
	margin-left: 75%;
	padding: 0px 1.5%;
	top: 126px;
	background-color: #153976;
	border-top: 1px solid #FFFFFF;
	right: 6px;
	left: 497px;
	}

div#news p.row {
	width: 100%;
	margin: 0px 0px 1em 0px;
	}

div#news p.row span.leftcol {
	float: left;
	color: #D6D6D6;
	}
	
div#news p.row span.rightcol {
	width: 70%;
	float: right;
	}
	
div#news p.row span.rightcol a {
	color: #D6D6D6;
	font-weight: bold;
	}
	
div#news p.row span.rightcol a:hover {
	color: #A4B5C5;
	}
	
.spacer {
	display: block;
	height: 1px;
	font: 1px /1 sans-serif;
	clear: both;
	}
		
div#topcontent {
	position: absolute;
	top: 10px;
	right: 0px;
	width: 80%;
	}

#topcontent h2, #topcontent p {
	display: inline;
	margin-right: 0.5em;
	}


#footer {
	clear: both;
	border-top: 1px solid #5C6F90;
	border-bottom: 1px solid #5C6F90;
	background-color: #D6D6D6;
	color: #000;
	}


/* --------------------- Feature Image and Transparency Trick --------------- */


#featureimg {
	margin: 0px 25% 0px 170px;
	height: 250px;
	background: #153976 url(images/sky.jpg) no-repeat right top;
	text-align: center;
	border-top: 1px solid #A5B5C6;		/*	Without this 1px border, Mozilla/Netscape applies the 200px margin from the child element (div#mstrans) - I don't know why? In these crazy topsy turvey times it seems that nothing is certain  */  
	}
	

/* 

-------------------------------- Navigation ------------------------------ 

List tips courtesy of A List Apart: http://www.alistapart.com/stories/taminglists/

*/


ul#mainnav {
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: #D6D6D6;
	}
		
ul#mainnav li {
	display: block;
	border-top: 1px solid #FFFFFF;
	}

ul#mainnav li a {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 6px 6%;
	background-color: #666666;
	font: normal 0.6em/1 Verdana, Arial, Helvetica, sans-serif;		/* If you get an unwanted gap after your a block (IE-Win) try increasing the line height		*/
	color: #fff;
	text-decoration: none;
	width: 88%;				/* 	Causes Problems in IE5-Mac and Netscape/Mozzilla - see next fix		*/
	}

ul#mainnav li a:hover {
	background-color: #999999;
	color: #FFFFFF;
	}
	
ul#mainnav ul.subnav {
	margin: 0px;
	list-style: none;
	padding: 0px;
	border: 0px solid pink;
	}

ul#mainnav ul.subnav li {
	border-top: 0 none #666666;
	padding-left: 1.5em;
	border-right: 0px solid #666666;
	border-bottom: 0px solid #666666;
	border-left: 0px solid #666666;
	}

ul#mainnav ul.subnav li a {
	padding: 1px;
	margin: 0px;
	font: bold 0.6em/1.3 verdana, sans-serif;
	color: #666666;
	background-color: transparent;
	border: 0px solid yellow;
	}

ul#mainnav ul.subnav li a:hover {
	color: #333333;
	background-color: transparent;
	text-decoration: underline;
	}
.bounding {
	background-position: center;
	width: 800px;
}
#mainhome {
	position: absolute;
	padding: 3px;
	top: 127px;
	width: 453px;
	left: 149px;
	border: 1px solid;
	height: 57px;
	font-size: small;
	list-style-type: square;
}
#mainright {
	position: absolute;
	padding: 2px;
	top: 127px;
	width: 166px;
	height: 594px;
	background: #999999 repeat-x left bottom;
	left: 621px;
	border: 1px solid;
	height: 127px;
	background-color: #CCCCCC;
}
#rightnewprod {
	position: absolute;
	padding: 2px;
	top: 260px;
	width: 166px;
	height: 594px;
	left: 621px;
	border-top: 1px none;
	border-right: 1px solid;
	border-bottom: 1px solid;
	border-left: 1px solid;
}
#righttradeshow {
	position: absolute;
	padding: 2px;
	top: 966px;
	width: 166px;
	height: 156px;
	left: 621px;
	border: 1px solid;
}
.smallheadline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
}
#mainspecials {
	position: absolute;
	padding: 3px;
	top: 214px;
	width: 453px;

	left: 150px;
	border-top: 1px solid;
	border-right: 1px solid;
	border-bottom: 1px solid;
	border-left: 1px solid;
}
.smaltext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: normal;
	line-height: 11px;
}
.textlinks {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 14px;
}
a:link {
	color: b40500;
	text-decoration: none;
}
a:active {
	color: b40500;
	text-decoration: none;
}
a:hover {
	color: b40500;
	text-decoration: none;
}
a:visited {
	color: b40500;
	text-decoration: none;
}
#mainsecond {
	position: absolute;
	padding: 3px;
	top: 127px;
	width: 453px;
	height: 594px;
	left: 149px;
	border: 1px solid;
}

#secondright {
	position: absolute;
	padding: 2px;
	top: 127px;
	width: 166px;
	height: 594px;
	left: 621px;
	border: 1px solid;
	height: 548px;
	background-color: #FFFFFF;
}
.bodytxtbold {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
}
.pageheadline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	color: #B40500;
}
#mainproduct {
	position: absolute;
	padding: 3px;
	top: 127px;
	width: 638px;

	left: 149px;
	border: 1px solid;
}
.bodytxthome {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	list-style-type: square;
	line-height: 14px;
}
.bodytxt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	list-style-type: square;
}
#salessecond {
	position: absolute;
	padding: 3px;
	top: 127px;
	width: 630px;
	height: 594px;
	left: 149px;
	border: 1px solid;
}
.smallheadlineRED {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #B40500;
}
#prodtable {
	border: 1px solid #666666;  
	border-collapse: collapse;
	}    
#prodtd {
	border: 1px solid #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: center;
	 }    
#prodth {
	border: 1px solid #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 10px;
	text-align: center;
	} 

