@import "layout.css";
@import url('layout.css');
@import "forms.css";
@import url('forms.css');

body {
	text-align: center;
	margin: 0px auto;
	padding: 0px;
	background-color: #000;
	font-family: Tahoma, Arial, geneva, verdana;
	font-size: 11px;
	color: #000000;
}

td, th {
	font-family: Tahoma, Arial, geneva, verdana;
	font-size: 11px;
}

a {
	text-decoration: none;
	color: #1C40B6;
}

a:hover {
	text-decoration: underline;
	color: #1C40B6;
}

a.lnknav {
	text-decoration: none;
	color: #FFF;
}

a.lnknav:hover {
	text-decoration: none;
	color: #1C40B6;
}

h1 {
	font-size: 14px;
	font-weight: bold;
	color: #1C40B6;
	margin: 0px 0px 10px 0px;
}

h2 {
	font-size: 13px;
	font-weight: bold;
	color: #1C40B6;
	margin: 10px 0px 10px 0px;
}

h3 {
	font-size: 12px;
	color: #1C40B6;
	margin: 0px 0px 10px 0px;
}

form {
	margin: 0px;
	padding: 0px;
}

hr.searchline {
	width: 120px;
	height: 1px;
	color: #617ACC;
	border-top: 1px solid #617ACC;
	margin: 6px 0px;
	padding: 0px;
}

.footimg {
	border: 0px;
	margin-left: 4px;
}

.price {
	font-weight: bold;
	font-size: 13px;
	color: #1C40B6;
}
.prodimg {
	margin: 0px 0px 10px 10px;
	float: left;
	border: 0px;
}
.mkmod {
	color: #1C40B6;
}

/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";              /* the period is placed on the page as the last thing before the div closes */
		display: block;          /* inline elements don't respond to the clear property */ 
    height: 0;                  /* ensure the period is not visible */
    clear: both;               /* make the container clear the period */
    visibility: hidden;	     /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}   /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */