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



body {
	margin: 0;
	}

/* Links and Images */
 a, a:link, a:visited, a:active, a:hover {
 }
 img {
 border: none;
 }
 
 #container {
	 width: 100%;
	 height: 100%;
	 margin-left: auto;
	 margin-right: auto;
 }
 
 #header-container {
	 background-color: #F00;
	 width: 100%;
	 height: 100px;
	 margin-left: auto;
	 margin-right: auto;
 }
 
 .header {
	 width: 1000px;
	 height: 100px;
	 margin-left: auto;
	 margin-right: auto;
 }
 
  #navigation-container {
	background-repeat: no-repeat;
	width: 100%;
	height: 45px;
	background-image: linear-gradient( #FFF, #F00);
}
 
 #menu, #menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu {
	width: 960px;
	margin: 0px auto;
	border: 0px solid #000;
	background-color: #ff0004;
	background-image: linear-gradient( #FFF, #F00);
	border-radius: 0px;
	box-shadow: 0 0px 0px #777;
}

#menu {
	zoom:1;
}

#menu:before,
#menu:after {
	content: "";
	display: table;
}

#menu:after {
	clear: both;
}

#menu li {
	float: left;
	border-right: 0px solid #000;
	box-shadow: 0px 0 0 #444;
	position: relative;
}

#menu a {
	float: left;
	padding: 12px 30px;
	color: #000;
	text-transform: uppercase;
	font: bold 15px Arial, Helvetica;
	text-decoration: none;
	text-shadow: 0 1px 0 #000;
}

#menu li:hover > a {
	color: #fafafa;
}

*html #menu li a:hover { /* IE6 only */
	color: #fafafa;
}

#menu ul {
	margin: 20px 0 0 0;
	_margin: 0; /*IE6 only*/
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	left: 0;
	z-index: 1;    
	background: #000;	
	background: linear-gradient(#444, #111);
	box-shadow: 0 -0px 0 rgba(255,255,255,.3);	
	border-radius: 0px;
	transition: all .2s ease-in-out;  
}

#menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	margin: 0;
}

#menu ul ul {
	top: 0;
	left: 150px;
	margin: 0 0 0 20px;
	_margin: 0; /*IE6 only*/
	box-shadow: -0px 0 0 rgba(255,255,255,.3);		
}

#menu ul li {
	float: none;
	display: block;
	border: 0;
	_line-height: 0; /*IE6 only*/
	box-shadow: 0 0px 0 #111, 0 0px 0 #666;
}

#menu ul li:last-child {   
	box-shadow: none;    
}

#menu ul a {    
	padding: 10px;
	width: 130px;
	_height: 10px; /*IE6 only*/
	display: block;
	white-space: nowrap;
	float: none;
	text-transform: none;
}

#menu ul a:hover {
	background-color: #03F;
	background-image: linear-gradient(#04acec, #0186ba);
}

#body {
	width: 1000px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.body {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

#footer-container {
	background-color: #F00;
	width: 100%;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
}

.footer {
	background-image: url(images/samfooter.jpg);
	width: 1000px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
}
 
