@charset "utf-8";
/* CSS Document */

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}
body {
	background-color: #FF0000;
	background-image: url(../images/blend.jpg);
	background-repeat: repeat-x;
}

#wrap {
	min-height: 100%;
	width:1024px;
	margin-left:auto;
	margin-right:auto;
}

#header{
	padding-top:15px;
	height: 200px;
}

#header h1{
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 68px;
	font-style: normal;
	font-weight: bold;
	color: #FFF;
	text-shadow: 4px 4px 4px black;
	text-align: center;
	line-height: 58px;
	font-variant: small-caps;
}

#header h2{
	font-family:  Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-weight: bold;
	color: #000;
	text-align: center;
	padding-top:25px;
	letter-spacing: -.03em;
}

#main {
	overflow:auto;
	padding-bottom: 50px;
	clear:both;
}  /* must be same height as the footer */

#footer {
	position: relative;
	margin-top: -50px; /* negative value of footer height */
	height: 50px;
	clear:both;
	width:1024px;
	margin-left:auto;
	margin-right:auto;
} 

#footer h2{
	font-family: Corbel, Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-style: italic;
	font-weight: bold;
	color: #FFF;
	text-shadow: 2px 2px 4px black;
	text-align: center;
}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}

#logo{
	float:left;
}

#topnav{
	width:888px;
	height:30px;
	background-color: #000;
	float: right;
}
#topnav ul{
	padding-top:5px;
	font-family: Corbel, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	list-style-type: none;
}
#topnav li{
	display:inline;
	
	color: #FFF;
	padding-left:35px;
}
#topnav a{
	text-decoration: none;	
	color: #FFF;
}
#topnav a:hover{
	color: #F00;	
}

#content{
	width: 900px;
	border-right-width: 12px;
	border-right-style: solid;
	border-right-color: #000;
	background-color: #FFF;
	min-height: 500px;
	float: right;
	border-bottom-width: 12px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}

#leftnav{
	width: 100px;
	float: left;
}
#leftnav ul{
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	list-style-type: none;
	letter-spacing: -0.03em;
	line-height: 16px;
}
#leftnav li{

	padding-bottom:25px;
	height:50px;
	background-image: url(../images/paw.png);
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	width: 60px;
}
#leftnav li p{
	padding-top:25px;
	text-align: center;
}
#leftnav li a{
	color: #000;
	text-decoration: none;

}

#leftnav li a:hover{
	color:#039;
}
/* IMPORTANT

You also need to include this conditional style in the <head> of your HTML file to feed this style to IE 6 and lower and 8 and higher.

<!--[if !IE 7]>
	<style type="text/css">
		#wrap {display:table;height:100%}
	</style>
<![endif]-->

*/