@charset "UTF-8";
#wrapper {
	width: 892px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/back.jpg);
	background-repeat: repeat-y;
	clear: none;
}
.text {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #491D07;
	line-height: 20px;
}
.pad {
	padding-left: 5px;
	margin-left: 10px;
}
#footer {
	background-image: url(images/bottom.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 28px;
}
#top {
	background-image: url(images/top.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	height: 28px;
	margin: 0px;
}
#flash {
	text-align: center;
	width: 892px;
}
#logo {
	width: 210px;
	height: 140px;
	float: left;
}
#navigation {
	width: 600px;
	float: right;
	height: 20px;
	text-align: right;
	font-family: Verdana, Geneva, sans-serif;
	color: #471E07;
	font-size: 15px;
	padding-top: 120px;
}
#navigation a {
	color: #491D07;
	text-decoration: none;
	background-color: #F7F7F7;
	padding: 5px;
	height: 40px;
	line-height: 20px;
}
#navigation a:hover {
	color: #F7F7F7;
	background-color: #4A1E07;
}
#header {
	padding-top: 10px;
	padding-right: 35px;
	padding-bottom: 10px;
	padding-left: 20px;
	height: 145px;
}
#right {
	float: right;
	width: 260px;
	padding-right: 20px;
	height: auto;
	clear: none;
}
#innerwrapper {
	height: auto;
	float: left;
}
#left {
	float: left;
	height: auto;
	width: 560px;
	margin-left: 34px;
}
.clearfloat {
	font-size: 1px;
	line-height: 0px;
	clear: both;
	height: 0px;
}
.textCopy {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 40px;
	color: #491D07;
}
.textCopy2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 50px;
	color: #491D07;
}
#form1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #185DA5;
	height: 180px;
	width: 250px;
	padding-top: 130px;
	float: right;
	padding-right: 0px;
	margin-right: 72px;
}
#pic1 {
	height: 121px;
	width: 218px;
	background-image: url(images/hots_10.jpg);
	margin-top: 70px;
	margin-left: 25px;
}
#pic2 {
	height: 121px;
	width: 218px;
	background-image: url(images/hots_12.jpg);
	margin-top: 70px;
	margin-left: 25px;
}
#text2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #195EA7;
	width: 218px;
	margin-left: 25px;
}
#but {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #195EA7;
	text-align: right;
	width: 218px;
	margin-left: 25px;
}
#pic3 {
	height: 200px;
	width: 218px;
	background-image: url(images/man_14.jpg);
	margin-top: 77px;
	margin-left: 25px;
	background-repeat: no-repeat;
	background-position: right top;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #195AAD;
}
#content2 {
	font-family: Verdana, Geneva, sans-serif;
	width: 902px;
	float: right;
	background-image: url(images/back_03.jpg);
	background-repeat: repeat-x;
	clear: none;
	padding-left: 35px;
	padding-top: 20px;
	padding-right: 20px;
}
#cont_left {
	width: 440px;
	float: left;
}
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	font-family: verdana, arial, sans-serif;
	font-size: 10px;
}

form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 150px;
	padding: 0;
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
	text-decoration:underline;    /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
#left2 {
	float: left;
	height: auto;
	width: 825px;
	margin-left: 34px;
}
