@charset "utf-8";
/* CSS Document */
*
a, a:visited, a:focus, a:active	{
	outline:none;
	border-style: none;
	border-color:none;
	color: #00F;
	text-decoration:underline;
	}
p	{
	color:#000;
	font-size:18px;
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
}
img	{
	border-style:none;
}
body  {
	background: #D3D2CE;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	margin-top: 2px;
	margin-bottom: 2px;
	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 */
	outline:none;

}
#container {
	width: 1080px;  /* this will create a container 80% of the browser width */
	background: #D3D2CE;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border:none;
	text-align: center; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #D3D2CE; 
}
#header .head	{
	width:525;
}
#mid { 
}
#mid2 {
	text-align:left;
}
#mid2 p	{
	margin: 0 0 0 10px;
}
#mid2 h1	{
	margin: 0 0 0 10px;
}
.thmb-row	{
	text-align:center;
	margin: 5px;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#003300;
} 
#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 */
}
/* misc */
#hmbtn	{
	float:left;
	margin:30px 0 0 50px;
}
#head	{
	width:525;
}


/* Miscellaneous classes for reuse */

.btn	{
	width:164;
	height:56;
	text-align:center;
	}
.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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.foot	{
	color:#000
	}