@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ccc;
	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;
}

* {
   padding:0;
   margin:0;
}


.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:830px;
	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. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header { 
	height: 245px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	width:780px;
	background: #fff; 
	padding: 0px 0px 0px 0px;  /* 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. */
	z-index:2;
} 
.header_logo{
position:absolute;
top:10px;
margin:0px 0px 0px 10px;
height:60px;
width:240px;
z-index:10;

}
.header_colors{
background-image:url(images/header_colors.gif);
background-repeat:no-repeat;
position:absolute;
top:0px;
margin:0px 0px 0px 0px;
height:90px;
width:780px;
z-index:9;
}

.header_image{
background-image:url(images/header_background_image.gif);
background-repeat:no-repeat;
position:absolute;
top:41px;
margin:0px;
height:200px;
width:780px;
z-index:8;
}

.header_bottom_line{
background-image:url(images/grey_line.gif);
background-repeat:repeat-x;
position:absolute;
top:242px;
width:776px;
height:1px;
margin:0px 2px 0px 2px;
}

/*Begin Recreation Header*/
.thrColAbsHdr #rec_header { 
	height: 245px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	width:780px;
	background: #fff; 
	padding: 0px 0px 0px 0px;  /* 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. */
	z-index:2;
} 
.rec_header_logo{
position:absolute;
top:10px;
margin:0px 0px 0px 10px;
height:60px;
width:240px;
z-index:10;

}
.rec_header_colors{
background-image:url(images/rec_header_colors.gif);
background-repeat:no-repeat;
position:absolute;
top:0px;
margin:0px 0px 0px 0px;
height:90px;
width:780px;
z-index:9;
}

.rec_header_image{
background-image:url(images/rec_header_background_image.gif);
background-repeat:no-repeat;
position:absolute;
top:41px;
margin:0px;
height:200px;
width:780px;
z-index:8;
}

.rec_header_bottom_line{
background-image:url(images/grey_line.gif);
background-repeat:repeat-x;
position:absolute;
top:242px;
width:776px;
height:1px;
margin:0px 2px 0px 2px;
}
/*End Recreation Header*/


#top_nav{
position:absolute;
top:56px;
right: 18px;
z-index:10;
font-weight: 800;
font-size:10px;
}

#top_nav:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

#top_nav ul{
text-indent: 10px;
padding: 3px 0;
margin: 0;
text-align: center; /*set value to "center" for example to center items*/
}

#top_nav ul li{
display: inline;
}

#top_nav ul li a{
color: #fff;
padding: 3px 0;
padding-right: 15px;
margin: 0;
text-decoration: none;
background: transparent url(images/top_menu_divider.gif) top right no-repeat;
}

#top_nav ul li a:visited{
color: #fff;
} 

#top_nav ul li a:hover{
color:#fff;
text-decoration:underline;
}



/*Begin Recreational Top Nav*/
#rec_top_nav{
position:absolute;
top:56px;
right: 18px;
z-index:10;
font-weight: 800;
font-size:10px;
}

#rec_top_nav:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

#rec_top_nav ul{
text-indent: 10px;
padding: 3px 0;
margin: 0;
text-align: center; /*set value to "center" for example to center items*/
}

#rec_top_nav ul li{
display: inline;
}

#rec_top_nav ul li a{
color: #fff;
padding: 3px 0;
padding-right: 15px;
margin: 0;
text-decoration: none;
background: transparent url(images/rec_top_menu_divider.gif) top right no-repeat;
}

#rec_top_nav ul li a:visited{
color: #fff;
} 

#rec_top_nav ul li a:hover{
color:#fff;
text-decoration:underline;
}

/*End Recreational Top Nav*/
















/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */


/* Left Nav CSS */
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 245px;
	left: 0;
	width: 145px; /* 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 */
	height:485px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 5px 1px 5px; /* padding keeps the content of the div away from the edges */
	margin:0px 5px 0px 0px;
}

.left_nav{
list-style-type: none;
padding: 0;
margin:0;



}
.left_nav li a{
background: no-repeat 8px center;
font: bold 11px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: #cc0000;
display:block;
width:130px;
padding:3px 0 0 20px;
text-decoration: none;


}

* html .left_nav li a{ 
width: 130px;
}

.left_nav li a:visited, .left_nav li a:active{
color: #cc0000;
}

.left_nav li a:hover{
color: #cc0000;
text-decoration:underline;
background-image:url(images/yellow_arrow.gif); /*onMouseover image change. Remove if none*/
}

#left_nav_header{
display:block;
width:auto;
padding:5px 0px 0px 0px;
margin:5px 0 0 0px;

}

#left_nav_header_1{
display:block;
width:auto;
padding:0;
margin:2px 0 0 0px;
}


.left_nav_basic{
list-style:none;
padding:0px;
margin:20px 0 0 0;
}

.left_nav_basic li a {
font-family:Arial, Helvetica, sans-serif;
font-size:13px;
font-weight:bold;
padding:4px 5px;
margin:0;
text-decoration:none;
color:#333;
display:block;
width:auto;


}

.left_nav_basic li a:hover{
text-decoration:underline;
color:#333;

}



/*End Left Nav CSS */





/*Begin Recreational Left Nav CSS*/

/* Left Nav CSS */
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 245px;
	left: 0;
	width: 145px; /* 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 */
	height:485px;
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 1px 5px 1px 5px; /* padding keeps the content of the div away from the edges */
	margin:0px 5px 0px 0px;
}

.rec_left_nav{
list-style-type: none;
padding: 0;
margin:0;



}
.rec_left_nav li a{
background: white  no-repeat 8px center;
font: bold 11px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: #0000FF;
display:block;
width:130px;
padding:2px 0 0 20px;
text-decoration: none;


}

* html .rec_left_nav li a{ 
width: 130px;
}

.rec_left_nav li a:visited, .rec_left_nav li a:active{
color: #0000FF;
}

.rec_left_nav li a:hover{
color: #0000FF;
text-decoration:underline;
background-color: #fff;
background-image:url(images/yellow_arrow.gif); /*onMouseover image change. Remove if none*/
}


/*End Recreational Left Nav CSS */


















/*Begin Right Sidebar*/
.thrColAbsHdr #sidebar2 {
position: absolute;
background-color:#fff;
top: 245px;
right: 0;
width: 181px; /* 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 */
height:300px;
background-color:#333;/*Background tag space */ /* the background color will be displayed for the length of the content in the column, but no further */
padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
margin:0px 10px 0px 18px;
}

.right_top{
background-color:#e4c284;
height:40px;
width:182px;
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
font-weight:400;
color:#333;
text-align:center;
margin:0px 0px 0px 0px;
padding:15px 0px 0px 0px;
}

.file_folder{
margin:0px 0px 0px 0px;
width:182px;
height:12px;
}

.right_bottom{
background-color:#999999;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#fff;
font-weight:200;
line-height:20px;
width:172px;
height:238px;
padding:5px 5px 0px 5px;
margin:0px 0px 0px 0px;
}

.right_bottom a{
text-decoration:none;
color:#fff;
}

.right_bottom a:hover{
text-decoration:underline;
color:#fff;

}

/*End Right Sidebar*/










/*Begin Main Content */


.thrColAbsHdr #mainContent {
	margin: 0px 0 0 160px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:290px;
	width:391px;
	background-color:#e4c284;
}

h2{
font-family:Arial, Helvetica, sans-serif;
font-size:18px;
font-weight:400;
color:#111;
padding:0px 0px 0px 0px;
margin:0px 0px 0px 0px;


}

.thrColAbsHdr #mainContent p{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:16px;
color:#000;

}

/* End Main Content*/



.thrColAbsHdr #pageguts { 
margin: 0 160px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height:290px;
	width:391px;
	background-color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

.pageguts_text{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
line-height:20px;
color:#333;
}





/*Begin Featured Products CSS*/

.thrColAbsHdr #body_bottom_bar{
position:absolute;
background-color:#fff;
top: 565px;
left:150px;
width: 611px; /* 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 */
height:185px;
/*Background tag space */ /* the background color will be displayed for the length of the content in the column, but no further */
padding: 0px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
margin:0px 10px 0px 10px;
}

.featured_product_header{

background-color:#e4c284;
height:20px;
width:611px;
padding:0;
margin:0;
}

.fph_text{
font-family:Arial, Helvetica, sans-serif;
font-size:14px;
color:#333333;
font-weight:bold;
padding:2px 0 0 10px;


}

.fph_dots{
background-image:url(images/4_v_dots.gif);
background-repeat:repeat-x;
height:9px;
width:611px;
margin:2px 0 0 0;
padding:0;

}

.fp_table{
width:611px;
height:150px;
margin:0;
padding:2px 0 0 0 ;

}

/*Featured Products Item CSS*/

.fp_item{
vertical-align:top;
text-align:center;
margin:0;
padding:3px 0 0 0 ;
width:150px;
}

.fp_image{
text-align:center;

}

.fp_name_cost_block{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333;
font-weight:bold;
margin:0 0 0 3px;

}
.fp_name_cost_space{
color:#fff;
width:10px;

}

.fp_name{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333;
font-weight:bold;

}

.fp_name a{
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#333;
font-weight:bold;
text-decoration:none;
}

.fp_name a:hover{
text-decoration:underline;
}



.fp_cost{

font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#cc0000;
font-weight:bold;

}

.add_to_cart{
margin:0 0 0 0;
padding:0

}

.view_all{
font-family:Arial, Helvetica, sans-serif;
font-size:8px;
color:#cc0000;

margin:5px 0 0 0 ;
}

.view_all a{
font-family:Arial, Helvetica, sans-serif;
font-size:9px;
color:#cc0000;
margin:5px 0 0 0;
text-decoration:none;
}


.view_all a:hover{
color:#cc0000;
text-decoration:underline;

}

.fp_bottom_dot{
background-image:url(images/fp_bottom_line.gif);
background-repeat:repeat-x;
width:611px;
height:1px;

}


.fp_dot_divider{
background-image:url(images/vertical_dot.gif);
background-repeat:repeat-y;
width:1px;
height:150px;
margin:0 1px 0 1px;



}














/* Begin Footer */

.thrColAbsHdr #footer {
	position:absolute;
	top:790px;
	left:0px;
	width:100%;
	height:65px;
	padding: 0px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin:0px 0px 0px 0px;
	background:#fff;
} 

.thrColAbsHdr #footer .bottom_line{
background-image:url(images/grey_line.gif);
background-repeat:repeat-x;
width:776px;
height:1px;
margin:2px 2px 0px 2px;
padding:0px;
}

.footer_table{
width:762px;
height:60px;
background-color:#999999;
margin:2px 9px 0 9px;
padding:0 0 0 0;

}

.thrColAbsHdr #footer .bottom_block{
background-image:url(images/grey_line.gif);
background-repeat:repeat;
width:762px;
height:48px;
margin:2px 9px 0 9px;
padding:0px;
}

.footer_nav_left{
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
color:#fff;
margin:0;
padding:3px 0 0 5px;
}

.footer_nav_left a{
color:#fff;
text-decoration:none;

}

.footer_nav_left a:hover{

color:#fff;
text-decoration:underline;

}

.footer_nav_right_container{
margin:0;
padding: 3px 0 15px 0;

}


.footer_nav_right{
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
font-weight:bold;
color:#fff;
margin:0;
padding: 3px 5px 0 0;
}

.footer_nav_right a{
color:#fff;
text-decoration:none;
}

.footer_nav_right a:hover{
color:#FFF;
text-decoration:underline;
}

.legal{
font-family:Arial, Helvetica, sans-serif;
font-size:9px;
color:#cc0000;
margin: 0 0 2px 0;
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 */
	float: left;
	margin-right: 8px;
}
#siteby {
	color: #FFFFFF;
	text-decoration: none;
}
#siteby a {
	color: #FFFFFF;
	text-decoration: none;
}
#siteby a:hover {
	color: #cc0000;
	text-decoration: underline;
}
.legal a {
	font-family:Arial, Helvetica, sans-serif;
	font-size:9px;
	color:#cc0000;
	margin: 0 0 2px 0;
	text-align:center;
	text-decoration: none;
}
.legal a:hover {
	font-family:Arial, Helvetica, sans-serif;
	font-size:9px;
	color:#cc0000;
	margin: 0 0 2px 0;
	text-align:center;
	text-decoration: underline;
}
