@charset "UTF-8";
body  {
	font: 11px/14px "Trebuchet MS", Arial, Helvetica, sans-serif;
	/*font:12px Calibri, Arial;*/
	background: #B0C1DD url(img/bg.png) top left repeat-x;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #000000;
}
#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background: #DDDDDD url(img/head.jpg) top left no-repeat;
	height:125px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	width:920px; 
	float:left;
} 
#header #nav_img{
	width:180px;
	float:left;
	padding-top:0px;
	height:100px;
	text-align:center;
}



#header #nav {
	width:500px;
	float:left;
	padding-top:85px;
	text-align:center;
	padding-left:0px;
	color:#fff;
}


#header #nav 	a:link	{
	color:#fff;
	text-decoration:none;
	padding:3px 10px;
}
#header #nav a:visited	{
	color:#fff;
	text-decoration:none;
	padding:3px 10px;
}
#header #nav 	a:hover	{
	color:#ffff00;
	font-weight:bold;
	text-decoration:none;
	padding:3px 10px;
}






#header	#nav	ul {
  padding: 0;
  margin: 0;
  list-style: none;
  }
  
  
#header	#nav	li {
  float: left;
  position: relative;
  padding:0px 15px;
	color:#fff;
	list-style-type:none;
	text-decoration:none;
	font:"Trebuchet MS", Arial, Helvetica, sans-serif bold;
	padding:0px 10px;
  }
  
#header	#nav	li ul {
  display: none;
  position: absolute; 
  top: 5em;
  left: 0;
	 border-bottom:1px solid #000;
  }
  
#header	#nav	li > ul {
	top: auto;
	left: auto;
	width:285px;
	}


#header	#nav	li:hover ul { 
	display: block; 
	background:#fff url(http://www.patriotnation.us/img/menubg.png) top left repeat; 
	border:1px solid #000; 
	padding-right:3px;
	width:200px;
	text-decoration:none;
}
  


  
#header	#nav li ul a:link	{
	color:#333;
	padding:0px;
	font:bold;
	text-decoration:none;
	width:135px;
	text-align:right;
}
#header	#nav li ul a:visited	{
	color:#333;
	padding:0px;
	font:bold;
	text-decoration:none;
	width:185px;
	text-align:right;
}
#header	#nav li ul	a:hover	{
	color:#ff0000;
	padding:0px;
	font:bold;
	text-decoration:none;
	background-color:#fff;
	width:185px;
	/*border-bottom:1px solid #666;*/
	text-align:right;
}



#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #B0C1DD url(img/menu_bot.jpg) bottom left no-repeat; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	min-height:600px;
	float:left;
}


#sidebar1	#search	{
	border:0px solid #333;
	width:150px;
	height:30px;
	float:left;
	padding:20px 5px;
	background:url(img/search_bg.png) top left no-repeat;
}


#sidebar1	a:link	{
	display:block;
	color:#666;
	text-decoration:none;
	padding:3px;
}
#sidebar1	a:visited	{
	display:block;
	color:#666;
	text-decoration:none;
	padding:3px;
}
#sidebar1	a:hover	{
	display:block;
	color:#000;
	background-color:#ccc;
	text-decoration:none;
	padding:3px;
}

#sidebar1	h2	{
	font:14px Arial, Helvetica, sans-serif bold;
	color:#fff;
	background-color:#5B72AB;
	padding-left:2px;
}


#mainContent { 
	margin: 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height:500px;
	width:760px;
	float:left;
} 
#footer { 
	padding: 10px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(img/foot.png) top left no-repeat;
	height:150px;
	width:920px;
	float:left;
	text-align:center;
} 

#footer	a:link	{
	color:#666;
	padding:3px 5px;
	text-decoration:none;
}
#footer	a:visited	{
	color:#666;
	padding:3px 5px;
	text-decoration:none;
}
#footer	a:hover	{
	color:#000;
	padding:3px 5px;
	text-decoration:none;
}

#time	{
	width:250px;
	float:right;
	color:#fff;
	border:0px solid #B0C1DD;
	font:11px Tahoma, Geneva, sans-serif;
}


img	{
	border:0px;
}

#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 */
}
.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 */
	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 a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


p	{
	margin:0px;
	padding:2px 0px;
}

.money	{
	color:#880000;
	font-weight:bold;
}

.small	{
	font:10px "Times New Roman", Times, serif;
	color:#333;
}

a.shop:link	{
	text-decoration:none;
	color:#000;
}
a.shop:visited	{
	text-decoration:none;
	color:#000;
}
a.shop:hover	{
	text-decoration:none;
	color:#000;
}



#menu	{
font-size:16px;
float:left;
width:125px;
margin:0px;
padding:0px;
background-color:#aec1dd;
/*
border-right: solid 1px #5EBA35;
border-top: solid 1px #5EBA35;
border-bottom: solid 1px #5EBA35;
*/
}



.menubox	{
width:120px;
/*
border-left:1px solid #4071aa;

border-left:1px solid #4071aa;
border-bottom:1px solid #4071aa;
*/
background-color:#aec1dd;
min-height:400px;
}


a.menulink:link	{
	display:block;
	width:120px;
	font-size:11px;
padding-bottom:5px;
padding-top:3px;
padding-left:3px;
	color:#000000;
	background-color:#aec1dd;
	text-decoration:none;
	font-weight: normal;
	padding-left:3px;
}
a.menulink:visited	{
	display:block;
	width:120px;
padding-bottom:5px;
padding-top:3px;
padding-left:3px;
	font-size:11px;
	color:#000000;
	background-color:#aec1dd;
	font-weight:normal;
	text-decoration:none;
	padding-left:3px;
}
a.menulink:hover	{
	display:block;
	width:120px;
	font-size:11px;
padding-bottom:5px;
padding-top:3px;
padding-left:6px;
	color:#ffffff;
	background-color:#336699;
	text-decoration:none;
	padding-left:3px;
}


a.menulink2:link	{
height:11px;
font-family:tahoma,"Trebuchet MS", Arial;
font-size:12px;
color:#000000;
padding-bottom:5px;
padding-top:3px;
padding-left:3px;
font-weight:normal;
text-decoration:none;
margin-bottom:2px;
	width:120px;
}
a.menulink2:visited	{
height:11px;
font-family:tahoma,"Trebuchet MS", Arial;
font-size:12px;
font-weight:normal;
padding-bottom:5px;
padding-top:3px;
padding-left:3px;
color:#000000;
text-decoration:none;
margin-bottom:2px;
	width:120px;
}
a.menulink2:hover		{
width:100%;
height:11px;
font-family:tahoma,"Trebuchet MS", Arial;
font-size:12px;
padding-bottom:5px;
padding-top:3px;
padding-left:3px;
color:#ffffff;
font-weight:normal;
text-decoration:none;
background-color:#336699;
margin-bottom:2px;
	width:120px;
}



.menuhead	{
background-color:#2F486F;
font-family:"Trebuchet MS", Tahoma, Arial;
font-size:12px;
color:#ffffff;
font-weight:bold;
	width:120px;
}



#menu	a.link:link	{
display:block;
width:96px;
color:#333333;
text-decoration:none;
font-weight:normal;
}
#menu	a.link:visited	{
display:block;
width:96px;
color:#333333;
text-decoration:none;
font-weight:normal;
}
#menu	a.link:hover	{
display:block;
width:96px;
color:#333333;
text-decoration:none;
font-weight:normal;
}


a.xsmall:link	{
text-decoration:none;
color:#B0C1DD;
}
a.xsmall:visited	{
text-decoration:none;
color:#B0C1DD;
}
a.xsmall:hover	{
text-decoration:none;
color:#B0C1DD;
}








.botbox	{
vertical-align:justify;
color:#333333;
float:left;
width:125px;
font-size:12px;
line-height:2.5em;
padding:2px;
text-align:center;
margin:2px auto 2px auto; 
}



#linktable	{
float:left;
border:1px solid #000000;
padding-left:5px;
margin-top:22px;
background-color:#B0C1DD;
width:280px;
}



#menutable	{
float:left;
width:125px;
padding:0px 3px 3px 3px;
margin:3px 0 0 3px;
text-align:center;
}




marquee	{
width:615px;
background-color:#432817;
color:#ffffff;
margin:4px 0px 4px 0px;
padding:3px
}

content_l { /* main textual content area (left box) */
	margin:0 auto;
	padding:5px;
	display:inline;
	float:left;
	width:290px;
}
#content_r { /* main textual content area (right box) */
	margin:0 auto;
	padding:5px;
	display:inline;
	float:right;
	width:290px;
	background-color:#2F486F;
}



.botbox	{
vertical-align:justify;
color:#333333;
float:left;
width:125px;
font-size:12px;
line-height:2.5em;
padding:2px;
text-align:center;
margin:2px auto 2px auto; 
}



.ltbox33	{
float:left;
width:225px;
border:0px solid #cccccc;
padding:0px 0px 0px 0px;
margin:1px 2px 2px 2px;
min-height:200px;
}


#index_bot		{
	width:420px; 
	float:left; 
	background:#AD9E7B;
	 min-height:230px;
	 border:1px solid #000;
	 margin:5px 0px 15px 0px;
	 color:#fff;
	 line-height:1.5em;
	 padding:5px;
	 font:15px;
	 font-weight:normal;
}

#index_bot		h1	{
	padding:0px 0px 5px 0px;
	margin:0px 0px 20px 0px;
	border-bottom:1px solid #fff;
	color:#fff;
}


#header_wrapper, #nav_wrapper, #content_wrapper {
	background-color:#ffffff;
	width:630px;
	
}