@charset "utf-8";
/* CSS Document */


body {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	background-image: url(../images/background_images/body_bg.jpg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #333333;
	background-color: #191919;
}

p {
	text-align: justify;
}

h1 { display: block; font-size: 22px; color: #333333; }
h2 { display: block; font-size: 20px; color: #333333; }
h3 { display: block; font-size: 18px; color: #333333; }
h4 { display: block; font-size: 16px; color: #333333; }
h5 { display: block; font-size: 14px; color: #333333; }

a:link {
	color: #5F554C;
	font-weight: bold;
}

a:visited {
	color: #CC3300;
	font-weight: bold;
	text-decoration: underline;
}

a:hover {
	color: #9F6F45;
	font-weight: bold;
}

.align_left { text-align: left; }
.align_right { text-align: right; }
.align_center { text-align: center; }

.float_left { float: left; }
.float_right { float: right; }

.clear_right { clear: right; }
.clear_left { clear: left; }
.clear_both { clear: both; }


.extender {
	clear: both;
}

.important {
	font-weight: bold;
	font-size: 14px;
	margin: 5px 0 5px 0;
	color: #804C4E;
}




/******************************

	    Structure Frame

*******************************/

#frame {
	display: block;
	width: 980px;
	height: 540px;
	margin: -270px 0 0 -490px;
	padding: 0;
	background-position: top left;
	background-repeat: no-repeat;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	left: 50%;
}

body#landing_page #frame { background-image: url(../images/background_images/landing_page.jpg); }
#frame { background-image: url(../images/background_images/search_results.jpg); }


/******************************

	 Structure Header

*******************************/

#header {
	display: block;
	width: 980px;
	height: 50px;
}


/******************************

	 Main Navigation

*******************************/

#navigation {
	display: block;
	width: 740px;
	height: 25px;
	float: left;
	margin: 0;
	padding: 18px 0 0 0;
}




/******************************

	 Main Drop Down Menu

*******************************/



/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0 0 0 5px;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 740px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 200px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 205px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
	padding: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal li a:link, ul.MenuBarHorizontal li a:visited 
{
	display: block;
	cursor: pointer;
	background-color: transparent;
	padding: 8px 6px 8px 6px;
	color: #333333;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
}

ul.MenuBarHorizontal li a:hover 
{
	display: block;
	cursor: pointer;
	background-color: #333333;
	padding: 8px 6px 8px 6px;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
}

ul.MenuBarHorizontal li ul li a:link, ul.MenuBarHorizontal li ul li a:visited
{
	display: block;
	cursor: pointer;
	background-color: #333333;
	padding: 3px 3px 3px 7px;
	color: #FFFFFF;
	text-decoration: none;
	border: none;
	font-size: 10px;
	font-weight: 400;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #333333;
}

ul.MenuBarHorizontal li ul li a:hover {
	background-color: #CCCCCC;
	color: #333333;
	padding: 3px 3px 3px 7px;
	border: none;
	font-size: 10px;
}

/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal li a.MenuBarItemHover, ul.MenuBarHorizontal li a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal li a.MenuBarSubmenuVisible
{
	background-color: #333333;
	color: #FFFFFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: transparent;
	}
	
	ul.MenuBarHorizontal li.MenuBarItemIE 
	{
		display: inline;
		f\loat: left;
		background: transparent;
	}
}


/******************************

	    Structure Search

*******************************/

#search {
	display: block;
	width: 220px;
	height: 25px;
	float: right;
	margin: 0;
	padding: 22px 15px 0 0;
	text-align: right;
}

/******************************

	    Structure Corpus

*******************************/

#corpus {
	display: block;
	clear: both;
}

#content {
	display: block;
	width: 699px;
	height: 430px;
	float: right;
	margin: 10px 10px 0 0;
	padding: 10px;
	overflow: auto;
}

#secondary_content {
	display: block;
	width: 213px;
	height: 390px;
	float: left;
	margin: 6px 0 0 5px;
	padding: 10px;
	overflow: auto;
}

/******************************

	    Structure Footer

*******************************/

#footer {
	display: block;
	clear: both;
	float: right;
	width: 700px;
	height: 18px;
	padding: 8px 20px 0 0;
	text-align: right;
	color: #000000;
	font-size: 10px;
}


/******************************

	Structure Item Details

******************************/


#item_details{
	display: block;
}

#item_image{
	display: block;
	width: 240px;
	float: left;
}

#item_description{
	display: block;
	margin: 0 15px 0 0;
	padding: 0;
	width: 425px;
	float: right;
}

.item_status{
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #ce745f;
}

.item_title{
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #9d1e23;
}

.item_price{
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #ce745f;
	text-align: right;
}


ul.item_navigation {
	display: block;
	margin: 25px 0 0 0;
	padding: 0;
	list-style: none;
}

ul.item_navigation li{
	float: right;
	margin: 5px 0 5px 0;

}

ul.item_navigation li a, ul.item_navigation li a:visited{
	display: block;
	padding: 2px 5px 2px 5px;
	margin: 0 0 0 5px;
	background-color: #9d1e23;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}

ul.item_navigation li a:hover{
	background-color: #ce745f;
	color: #FFFFFF;
}

#item_details_secondary {
	display: block;
	clear: both;
	margin: 0;
	padding: 15px 0 0 0;
}

#item_details_left{
	display: block;
	width: 400px;
	float: left;
}

#item_details_thumbnails{
}

.subtitle{
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #ce745f;
	text-align: left;
}

#item_details_thumbnails a img{
	border: #EFD2A4 solid 3px;
	margin: 2px;
	padding: 0;
}

#item_details_thumbnails a:hover img{
	border: #9d1e23 solid 3px;
}


#item_details_right {
	display: block;
	margin: 5px 15px 5px 5px;
	padding: 0;
	width: 250px;
	float: right;
	text-align: right;
}

#item_details_right ul{
	display: block;
	margin: 0;
	padding: o;
	list-style: none;
}


#item_details_right ul li{
	margin: 5px;
	padding: o;
}

/******************************

	Structure Search Results

******************************/

#search_results{

}

#search_results .item{
	display: block;
	margin: 0 0 5px 0;
	padding: 5px 0 7px 0;
	border-bottom: #999999 dotted 1px;
}

#search_results .item_image{
	display: block;
	float: left;
	margin: 0 10px 0 0;
}

#search_results .item_image a img.first_image{
	border: none;
	padding: 0;
	margin: 0;
}

#search_results .item_image img{
	border: none;
	display: block;
	float: left;
	padding: 0;
	margin: 0 0 0 -15px;
}

#search_results .item_image img.first_image{
	padding: 0;
	margin: 0;
	clear: both;
}

#search_results .item_overview{
	display: block;
	padding: 0 0 0 65px;
}

#search_results .item_status{
	font-size: 12px;
	float: right;
}

#search_results .item_title a:link, #search_results .item_title a:visited{
	display: block;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 13px;
	font-weight: bold;
	text-transform: none;
	color: #9d1e23;
	text-decoration: none;
}

#search_results .item_title a:hover{
	color: #ce745f;
}


#search_results .item_description{
	font-weight: bold;
}

#search_results .item_description p{
	margin: 2px 0 0 0;
}

#search_results .item_navigation{
	margin: 6px 0 6px 0;
    clear: both;
}

#search_results .item_navigation a{
	font-size: 11px;
	font-weight: normal;
}

#search_results .price{
	padding: 0;
	margin: 6px 0 0 0;
	float: left;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
	color: #ce745f;
}

#breadcrumbs {
	color: red;
	margin: 0 0 10px 0;
}

div#breadcrumbs a{
	text-transform: lowercase;
}


/******************************

	 This section is for image sets

*******************************/


#search_results .image_set_initial {
	clear: both;
}


#search_results .image_set{
	clear: both;
}

#search_results .image_set img{
	margin: -35px 0 0 -15px;
}

#search_results .image_set img.first_image{
	margin: -35px 0 0 0;
}





/******************************

	 Home Page Landing

*******************************/


/*********  This line is for testing only Please remove before release - START ***********

body#home_page {
	background-image: none;
}


********  This line is for testing only Please remove before release - END ************/



body#home_page #landing_page_content {
	display: block;
	width: 530px;
	height: 380px;
	margin: 0 10px 80px 10px;
	padding: 0 0 0 0;
	overflow: auto;

}

body#home_page #frame { background-image: url(../images/background_images/home_page.jpg); }

body#home_page .main_category_link{
	display: block;
	width: 125px;
	height: 125px;
	position: relative;
	float: left;
	background-position: top;
	background-repeat: no-repeat;
}

body#home_page .main_category_link span{ 
	display: none;
}

body#home_page #link_1{ 
	top: 73px;
	left: 34px;
	background-image: url(../images/background_images/link_1.jpg);
}

body#home_page #link_2{ 
	top: 73px;
	left: 47px;
	background-image: url(../images/background_images/link_2.jpg);
}

body#home_page #link_3{ 
	top: 73px;
	left: 60px;
	background-image: url(../images/background_images/link_3.jpg);
}

body#home_page #link_4{ 
	top: 73px;
	left: 74px;
	background-image: url(../images/background_images/link_4.jpg);
}

body#home_page #link_5{
	top: 116px;
	left: 34px;
	background-image: url(../images/background_images/link_5.jpg);
}

body#home_page #link_6{ 
	top: 116px;
	left: 47px;
	background-image: url(../images/background_images/link_6.jpg);
}

body#home_page #link_7{ 
	top: 116px;
	left: 60px;
	background-image: url(../images/background_images/link_7.jpg);
}

body#home_page #link_8{ 
	top: 116px;
	left: 74px;
	background-image: url(../images/background_images/link_8.jpg);
}


/*******************  Center Column  ******************/

.centerColumn {
	 width: 680px; 
	 margin: 0; 
	 font-size: 12px;
}

.centerColumn legend{
	color: #672F32;

}

.centerColumn a{
	text-decoration: underline;
}

.centerColumn img{
	border: none;
}



/******************* Shopping Cart ******************/

#shoppingCartDefault {
	 width: 680px; 
	 margin: 0; 
	 font-size: 12px;
}

#shoppingCartDefault legend{
	color: #672F32;

}

#shoppingCartDefault a{
	text-decoration: underline;
}

#shoppingCartDefault img{
	border: none;
	vertical-align: middle;
}

.buttonRow {
}


/******************* POP UP PAGES ******************/


body#popupShippingEstimator {
	background-color: #FFFFFF;
	background-image: none;

}


.shippingEstimatorWrapper {
	padding: 20px;
}



/******************* SHOPPING CART ADJUSTMENTS ******************/


.rowEven{

}

.rowOdd{
	background-color: #EFEFEF;
}


/******************* CUSTOM PAGE FOOTER LINKS ******************/


.footer_links{
	display: block;
	text-align: center;	
	padding: 20px 10px 30px 10px ;
}

.footer_links ul{
	list-style: none;
	margin: none;
	padding: none;
}

.footer_links ul li{
	display: inline;
	padding: 0 10px 0 10px;
	border-left: #794547 none 1px;
	border-right: #794547 solid 1px;
}

/******************* SHOPPING CART PAGE FOOTER LINKS ******************/


#navSupp {
	margin: 10px 0 10px 0;
}

#navSupp ul {
	list-style: none;
	margin: 0;
}

#navSupp ul li {
	display: inline;
}


#siteinfoLegal {
	text-align: right;
}