@charset "UTF-8";
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #000 /*url(img/bg.jpg) top center no-repeat fixed*/;
	margin: 0;
	padding: 0;
	color: #fff;
}
#bar	{
	background:url(img/nav_bar.png) top left repeat-x;
	width:100%; 
	float:left;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	padding:2px 0px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
#container {
	width: 812px;
	min-height:400px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	width:812px;
	height:150px;
	float:left;
	background:#000 url(img/head_bg.png) top right no-repeat;
}


#nav	{
	width:832px; 
	float:left;
	height:20px;
	padding:7px 15px;
	border:0px solid #fff;
}

#nav	a:link	{
	color:#fff;
	padding:7px 10px;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-decoration:none;
	background:url(img/menu_border.png) top right no-repeat;
	border:0px solid #fff;
}

#nav	a:visited	{
	color:#fff;
	padding:7px 10px;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-decoration:none;
	background:url(img/menu_border.png) top right no-repeat;
	border:0px solid #fff;
}

#nav	a:hover	{
	color:#ffffcc;
	padding:7px 10px;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	text-decoration:none;
	background:url(img/menu_border.png) top right no-repeat;
	border:0px solid #fff;
}




/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

#content {
	width:792px;
	min-height:400px;
	float:left;
	margin-top:30px;
	padding: 10px;
}

/* ~~ The footer ~~ */
#footer {
	width:812px;
	float:left;
	padding: 10px 0;
	color:#fff;
	font:10px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
 
#footer		a:link, a:visited	{
	color:#ffff00;
	text-decoration:none;
	padding:3px 10px;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#footer		a:hover	{
	color:#ffffcc;
	text-decoration:none;
	padding:3px 10px;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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 can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#top_box	{
	width:812px;
	height:330px;
	margin-top:-40px;
	float:left;
	background:url(img/top_box.png) top center;
}

#top_left_box	{
	width:155px;
	margin:5px 0 0 5px;
	float:left; 
	color:#FDC688;
	border-bottom:1px solid #F60;
	font-size:11px;
	text-align:center;
}
.top_left_box	{
	width:155px;
	margin:5px 0 0 5px;
	float:left; 
	color:#FDC688;
	border-bottom:1px solid #F60;
	font-size:11px;
	text-align:center;
}

#top_left_box	a:link	{
	color:#FDC688;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#top_left_box	a:visited	{
	color:#FDC688;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#top_left_box	a:hover	{
	color:#ffffcc;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}



.top_left_box	a:link	{
	color:#FDC688;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.top_left_box	a:visited	{
	color:#FDC688;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.top_left_box	a:hover	{
	color:#ffffcc;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}



.bot_left_box	{
	width:145px;
	min-height:100px;
	margin:5px 0 0 5px;
	float:left; 
	color:#FDC688;
	font-size:11px;
	text-align:center;
}
#bot_left_box	{
	width:145px;
	min-height:100px;
	margin:5px 0 0 5px;
	float:left; 
	color:#FDC688;
	font-size:11px;
	text-align:center;
}

#bot_left_box	a:link	{
	text-decoration:none;
	color:#D04C17;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#bot_left_box	a:visited	{
	text-decoration:none;
	color:#D04C17;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#bot_left_box	a:hover	{
	text-decoration:none;
	color:#ffffcc;
	font:12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}



#bot_box	{
	width:812px;
	height:260px;
	float:left;
	margin-left:5px;
}

#bot_box_left	{
	width:268px;
	float:left;
	background:url(img/sm_box.png) top center no-repeat;
	height:260px;
}
#bot_box_center	{
	width:268px;
	float:left;
	background:url(img/sm_box2.png) top center no-repeat;
	height:260px;
}
#bot_box_right	{
	width:268px;
	float:left;
	background:url(img/sm_box3.png) top center no-repeat;
	height:260px;
}



#bot_box2	{
	width:812px;
	height:260px;
	float:left;
	margin-left:5px;
	background-color:#000; height:30px;
	color:#F90;
	text-align:center;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding-top:5px;
}

#bot_box2	a:link	{
	color:#f90;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#bot_box2	a:visited	{
	color:#f90;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
#bot_box2	a:hover	{
	color:#ffffcc;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

#round_box	{
	border: 2px solid #f90;
background-color: #000;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding:5px 0px;

}

#round_box:hover	{
	border: 2px solid #f90;
background-color: #222;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
padding:5px 0px;

}

#round_box	h3	{
	color:#fff;
	font-size:22px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:lighter;
	border-bottom:1px solid #f90;
	 padding:0px 15px;
}

#round_box	h4	{
	color:#fff;
	font-size:13px;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-weight:lighter;
	border-bottom:1px solid #f90;
	 padding:0px 15px;
}
/*
#round_box	a:link, a:visited	{
	color:#f60;
	display:block;
	text-decoration:none;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter;
	 padding:3px 15px;
}
#round_box	a:hover	{
	color:#fb0;
	display:block;
	text-decoration:none;
	font:14px "Lucida Sans Unicode", "Lucida Grande", sans-serif lighter; 
	padding:3px 15px;
}*/
