@charset "utf-8";
/* CSS Document */

body  {
	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;
	font-family: "Times New Roman", Times, serif;
}
.thrColFixHdr #container {
	width: 900px;
	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. */
	background-color: #FFFFFF;
	background-image:url(_images/contBg3.gif)
} 
#header {
	padding: 0;
	height: 200px;
	margin: 0;
	position: relative;
}
#header #homeButton {
	position: absolute;
	left: 18px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #homeButton a:link, #header #homeButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/HomeBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #homeButton a:hover, #header #homeButton a:active{
	background-position: left bottom;
	border: none;
}
#header #aboutUsButton {
	position: absolute;
	left: 142px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #aboutUsButton a:link, #header #aboutUsButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/AboutBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #aboutUsButton a:hover, #header #aboutUsButton a:active{
	background-position: left bottom;
	border: none;
}
#header #productsButton {
	position: absolute;
	left: 266px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #productsButton a:link, #header #productsButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/ProdBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #productsButton a:hover, #header #productsButton a:active{
	background-position: left bottom;
	border: none;
}
#header #newsButton {
	position: absolute;
	left: 390px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #newsButton a:link, #header #newsButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/NewsBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #newsButton a:hover, #header #newsButton a:active{
	background-position: left bottom;
	border: none;
}
#header #partnersButton {
	position: absolute;
	left: 514px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #partnersButton a:link, #header #partnersButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/PartBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #partnersButton a:hover, #header #partnersButton a:active{
	background-position: left bottom;
	border: none;
}
#header #subscribeButton {
	position: absolute;
	left: 638px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #subscribeButton a:link, #header #subscribeButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/SubBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #subscribeButton a:hover, #header #subscribeButton a:active{
	background-position: left bottom;
	border: none;
}
#header #contactButton {
	position: absolute;
	left: 762px;
	top: 107px;
	width: 3px;
	height: 33px;
}
#header #contactButton a:link, #header #contactButton a:visited{
	text-indent: -1000em;
	display: block;
	background:url(_images/ContBtnNew.gif) no-repeat left top;
	height: 30px;
	width: 120px;
}
#header #contactButton a:hover, #header #contactButton a:active{
	background-position: left bottom;
	border: none;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 18px;
	background-image: none;
	height: auto;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 165px;
	padding-top: 0px;
	padding-right: 18px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: auto;
	border-left-width: 1px;
	border-left-style: dotted;
	border-left-color: #C0C0C0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 195px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
	color: #030303;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: left;
	font-size: 14px;
	/*background-image:url(_images/mainContentBg.gif);
	background-repeat:no-repeat;*/
} 
.thrColFixHdr #footer {
	background-color: #FFF;
	padding: 0;
	height: 120px;
	margin: 0;
	position: relative;
	background-image: url(_images/FooterBg.gif);
} 
.thrColFixHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
#navcontainer
{
	width: 165px;
	padding: 0px;
	margin-bottom: 0em;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #FFF;
	font-size: 14px;
}

#navcontainer ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-bottom-color: #000;
	background-color: #000;
	background-image: url(_images/NavA2.gif);
	background-repeat: repeat;
}

#navcontainer li
{
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
	border-left-width: 0px;
	border-left-style: solid;
	border-left-color: #ABABAB;
}

#navcontainer li a
{
	display: block;
	padding: 6px 6px;
	color: #FFF;
	text-decoration: none;
	width: 153px;
}

#navcontainer li a:hover
{
	background-color:#a4a4a4;
	color: #fff;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-image: url(_images/NavB.gif);
	background-repeat: repeat-x;
	font-size: 14px;
}

#navcontainer li li
{
	border-bottom: 0;
	margin: 0;
}

#navcontainer li li a
{
	padding: 4px .5em 4px 1.3em;
	background-color: #545454;
	width: 139px;
	border-bottom-color: #000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}

#navcontainer li li li a
{
padding: 3px .5em 3px 1.9em;
background-color:#CCC;
width: 8.2em;
}
.thrColFixHdr #footer2 {
	padding: 0 10px 0 20px;
	background-color: #FFF;
	background-image: none;
	background-repeat: no-repeat;
}
.thrColFixHdr #container #mainContent h1 {
	color: #000;
	font-size: 28px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.thrColFixHdr #container #mainContent h2 {
	color: #ABABAB;
}
.thrColFixHdr #container #mainContent p {
	color: #030303;
	text-align: justify;
}
.thrColFixHdr #container #footer table tr td {
	color: #FFF;
	font-size: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.thrColFixHdr #container #footer table tr td a {
	color: #FFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.thrColFixHdr #container #sidebar1 p {
	font-size: 14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #333;
}
.thrColFixHdr #container #mainContent .wrapper {

}
.wrapper table tr td img {
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #555;
}
.wrapper table tr td img:hover {
	border-bottom-width: 5px;
	border-bottom-style: solid;
	border-bottom-color: #F00;
}
.thrColFixHdr #container #sidebar1 #navcontainer h2 {
	color: #666;
	font-size: 20px;
}
.thrColFixHdr #container #sidebar1 #navcontainer h3 {
	color: #666;
	font-size: 18px;
}
.emailFont {
	font-size: 11px;
}
.redFont {
	color: #F00;
}

