@charset "UTF-8";
body  {
	font: Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container { 
	width: 752px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	}
	 
#header { 
	background: #FFFFFF; 
	width: 752px;
} 
	
	
a {
font: 12px Arial, Helvetica, sans-serif;
color: #b61c1c;
}

a:hover {
color: #000099;
}

.red {color: #b61c1c;}
.lightGray {color: #6d6d6d; font: 11px Arial, Helvetica, sans-serif; line-height:125%}

/* 
*********************
NAVIGATION 
*********************
*/

#navigation { 
	background: #FFFFFF; 
	width: 752px;
} 
	

/* 
*********************
PHOTO AND FLASH HEADER
*********************
 */


#photoBar {
	border-left: #999999 1px solid;
	border-right: #999999 1px solid;
	border-bottom: #999999 1px solid;
	width: 750px;
	margin: 0; 
	clear:both;
}

	#redbox {
	background:url(../images/red-fence.jpg) top no-repeat;
	font: 12px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	}

#sidebar1 {
	float: left; 
	width: 201px; 
	border: #FFFFFF 8px solid; /*makes width of the entire div221*/
	background: url(../images/left_side_bg.gif) top repeat-x; 
	text-align: center;
	margin: 0px;
	padding: 0px;
	}

	#sidebar1 p {
	text-align: left;
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	line-height:125%;
	margin: 5px 25px 0 45px;
	}

#mainContent { 
	margin: 0 0 0 219px;
	width: 530px;
	padding: 0;
	} 
	
	#topTable {
	border: #999999 1px solid;
	margin: 8px 0 0 0;
	padding: 0;
	background: url(../images/topTable_bg.gif) top repeat-x;
	}
	
	
	.topTableContent {
	padding: 10px 10px 5px 10px;
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	line-height:125%;
	}
	
	#topTable h1 {font: 16px Arial, Helvetica, sans-serif; color: #b61c1c; padding: 10px 10px 0px 10px; font-weight:bold;}
	
	#topTable h2 {font: 16px Arial, Helvetica, sans-serif; color: #b61c1c; padding: 10px 10px 0px 10px; font-weight:bold;}
	
	#topTable h4 {font: 16px Arial, Helvetica, sans-serif; color: #b61c1c; padding: 10px 10px 0px 10px; font-weight:bold;}
	
	#topTable h5 {font: 16px Arial, Helvetica, sans-serif; color: #b61c1c; padding: 10px 10px 0px 10px; font-weight:bold;}
	
	#topTable h6 {font: 16px Arial, Helvetica, sans-serif; color: #b61c1c; padding: 10px 10px 0px 10px; font-weight:bold;}
	
	
	#topTable ul {
	margin: 0;
	padding: 0 0 0 10px;
	}
	
	#topTable li {
	margin: 0;
	padding: 0
	}
	
	
	#topTable p {
	padding: 5px 10px 0px 10px;
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	line-height:125%;}
	
	#waystohelp {
	width: 534px !important; /*this is the real width */
	width: 530px; /*this is for IE */
	margin-top: 8px;
	}
	
	.helpButton {
	width: 176px !important; /*this is the real width */
	width: 174px; /*this is for IE */
	float: left;
	background: url(../images/helpbutton_bg.gif) top repeat-x;
	border-right: #8c8c8c 1px solid;
	margin-left: 1px;
	text-align:center;
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	line-height:125%;
	margin-bottom: 15px !important;
	}
	
	.buttonText {
	height:100px; margin: 15px 10px 8px 15px;
	}
	
	.grayButton {
	height: 35px; margin: 0;
	}
	
	.infoTight {
	line-height: normal;
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	padding-top: 10px!important;
	margin: 0;
	}
	
#footerContact { 
	padding: 20px 5px 15px 5px;
	font: 12px Arial, Helvetica, sans-serif;
	color: #b70a0a;
} 
	#footerAddress {float: left;}
	#footerPhone {float: right;}
	
#footer { 
	padding: 0 10px 40px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../images/footer_bg.jpg) top no-repeat; 
} 

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 15px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

#footer img {margin-right: 30px;}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* VIDEO ON HOME PAGE */
#videos ul {padding: 0; margin-left: 0px; text-align:left}
#videos li {display: block; float: left; list-style-type: none; padding-left: 0; margin-bottom: 12px; margin-right: 8px ; border:#999999 1px solid }

/* VIDEO ON VIDEO PAGE */
.videoPage ul {padding: 0 0 15px 0; margin-left: 0px; text-align:left;}
.videoPage li {display: inline; list-style-type: none; padding-left: 0; margin-bottom: 12px; margin-right: 8px ; }


/* PRESS RELEASE STYLES */

h3 {
	background: url(../images/dateheader.png) top left no-repeat;
	font: 10px Arial, Helvetica, sans-serif;
	color: #333333;
	width: 480px;
	min-height:26px;
	margin: 30px 0 -10px 8px;
	padding: 5px 0 0 4px;
}

/* ORDER FORM TABLE */

#orderform {
	margin-left: 18px;
	width: 450px;}

#orderform td {
	font: 12px Arial, Helvetica, sans-serif;
	color: #1f1f1f;
	line-height:125%;}