/**************** 
file:			styles.css
description:	default style sheet for entire site 
*************/

/********** default site wide styles ***********/
	body {
		margin:0;
		padding:0;
		font-family: Arial;
		font-size: 12px;
		/*background-image:url(/images/common/snowBG.jpg); 
		background-color:#0B6CA3;*/
		background-color:#fff;
		background-repeat:repeat;
	}
	
	#container {
		background-color:#fff; 
		width:955px;
		margin:5px auto;
		overflow:hidden;
		position:relative;
		z-index:0;
		padding:3px;
	}
	
	input, select, textarea, td, a, p {font-family: Arial; font-size: 12px; }
	a {	color:#0B6CA3; text-decoration:underline;	}
	a:hover {color:#548AFF; text-decoration:none;	}
	table { background-color:#ffffff; }
	
	h1 {font-size:24pt;color:#000;margin:0;font-weight:normal;}
	h2 {font-size:20pt;color:#000;margin:0;font-weight:normal;}
	h3 {font-size:16pt;color:#000;margin:0;font-weight:normal;}
	h4 {font-size:14pt;color:#000;margin:0;font-weight:normal;}
	
	/****************************** top nav menus styles ********************************/
	
	/*
		Container for the menu. We set top and bottom borders only because the menu container
		stretches the entire window width. Note that this container can go inside a fixed width
		element that is centered on the page, if you so desire. It can even go inside a table cell.
	*/	
	
	#menuwrapper { margin: 0; padding:0; width:100%;}
	
	/* Clears the floated menu items. Assigned to a BR tag placed just before menuwrapper's closing DIV tag */
	.clearit { clear: both; height: 0; line-height: 0.0; font-size: 0; }
	
	/*
		topNavMenuBar is the root UL and topNavMenuBar ul applies to all the sub-menu ULs. 
		We set padding and margin to zero to eliminate all indentation, turn bullets off,
		and set a font-family different from the global font-family declared for the body element above. 
		This sets font for just the menu. Do not add a font-size here.
	*/
	#topNavMenuBar { padding: 0; margin: 0; list-style: none;}
	#topNavMenuBar ul { padding: 0; margin: 0;	list-style: none; }
	
	/*
		Root-Level Links.  Do not change the first two properties. Adjust padding values to make the root links taller and to offset them
		from the left and right edges of the link box. The border right creates a separator between links. Font-size is set here and will apply to all menu levels.
	*/
	#topNavMenuBar a {
		display: block;
		text-decoration: none;
		padding: 7px 4px 7px 4px;
		border-right: 1px solid #fff;
		font-family: Helvetica;
		font-size:11px;
		background-color:#0B6CA3;
		background-image:url(/images/nav/navBackGradientDark.gif);
		background-repeat:repeat-x;
		
	}
	/*
		Class assigned to those Root-Level links that have associated Sub-Menus. The top and bottom padding assigned this element must be the same as
		that assigned to the topNavMenuBar a element. The right padding is increased to accomodate the display of background image depicting a downward
		pointing arrow.
	*/
	#topNavMenuBar a.category {
		padding: 7px 4px 7px 4px;
		color: #fff;
		font-weight:bold;
		text-align:center;
		width:71px;
		height:27px;
		vertical-align:middle;
		/*word-wrap:break-word; */
	}
	
	#topNavMenuBar a.astv { padding: 3px 3px 3px 3px; width:68px; text-align:center; }
	
	/*
		The Root-Level list items. Floating left allows them to appear horizontally. Width is for IE5 Mac. The last rule in
		this style sheet will set the width for this element to auto for all other browsers - hiding it from IE5 Mac. The width is proportional.
		As you add and edit root menu items, you will need to test this width to ensure it is wide enough to accomodate all text.
	*/
	#topNavMenuBar li { float: left; width: 10em; }
	
	/*
		Sets width for Sub-Menu box and the List Items inside - in proportional em units. This allows the sub-menu width to expand if users resize the text in their browsers.
	*/
	#topNavMenuBar li ul, #topNavMenuBar ul li  { width: 15em; }
	/*
		The sub-menu links. We set color and turn off the right border, which would otherwise be inherited from the root link rule. We set top and 
		bottom padding less than the root items and increas the left padding to indent the sub-menu links a small amount in from the root links.
	*/
	
	#topNavMenuBar ul li a  { color: #fff; }
	/*
		Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
		Positioned Absolutely to allow them to appear below their root trigger.
		Set to display none to hide them until trigger is moused over.
		Background Color must be set or problems will be encountered in MSIE.
		Right and bottom borders are set to simulate a raised look.
		A gradient background image is assigned.
	*/
	#topNavMenuBar li ul {
		position: absolute;
		display: none;
		background-color: #fff;
		border-left: 2px solid #0B6CA3;
		border-right: 2px solid #0B6CA3;
		border-bottom: 2px solid #0B6CA3;
	}
	/*
		Changes the Text color and background color when the Root-Level
		menu items are moused over. The second selector sets color and background
		when Root-Level items are accessed with the keyboard tab key. The third
		selector sets an active state to support keyboard access in MSIE. The fourth 
		selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
		Note that IE7 supports hover on elements other than links and so behaves
		like Firefox, Opera, and Safari - making the menu operable even if JavaScript
		is not enabled.
	*/
	#topNavMenuBar li:hover a, #topNavMenuBar a:focus, #topNavMenuBar a:active,  #topNavMenuBar a:hover {
		color: #0B6CA3;
		background-color: #E6F0F6; 
		background-image:none;	
		visibility: visible;
		
	}
	/* Set the Sub-Menu UL to be visible when its associated Root-Level link is moused over. The second selector is assigned to IE5 and IE6 via the P7_ExpMenu script. */
	#topNavMenuBar li:hover ul { display: block; z-index: 996;}
	
	/* 
		Sets the Text color of the Sub-Level links when the Root-Level menu items are moused over. The second selector is 
		assigned to IE5 and IE6 via the P7_ExpMenu script. The color set should march the normal Sub-Level link color
		in the rule: #topNavMenuBar ul li a. The background color must be transparent to allow the underlying gradient background on the UL
		to show through. 
	*/
	#topNavMenuBar li:hover ul a { color: #0B6CA3; background-color: transparent; }
	
	/* The normal hover class for Sub-Level links. The Important directive is required for older browsers. */
	#topNavMenuBar ul a:hover {
		background-color: #0B6CA3!important;
		color: #FFFFFF!important;
	}
	/* The single backslash \ character inside this comment causes IE5 Mac to ignore the following rule, which allows other
	browsers to render top-level menu items to their natural width. Do not edit this rule in any way. */
	#topNavMenuBar li {width: auto;}

	/************ end top nav menus style *********************/
	
	#cartBox {
		width:169px; 
		text-align:center;
		margin-top:5px;
		height:60px;
	}
	#searchBox {
		font-family: Arial; font-size: 14px;  font-weight:bold;
		color:#000;
		vertical-align:middle;
		padding:5px;
	}
	#searchBox form {margin: 0px; padding:0px; }	
	#searchBox input {font-family: Arial; font-size: 12px; margin-left:5px; margin-right:5px; }
	#searchBox input, img {vertical-align:middle;}
	
	.searchBar { background-color:#fff; height:25px;}	


/********** left nav styles ***********/
	#leftNav {
		background-color:#fff;
		color:#000; 
		font-weight:bold;
		width:15%;
		vertical-align:top;
	}
		 
	#navRows { background-color:#fff; padding:5px; border-left: 1px solid #ccc; border-right: 1px solid #ccc;}
	#navRows a { color:#0B6CA3; text-decoration:underline; font-weight:normal; }
	#navRows a:hover { text-decoration:none;}
	#navRowSelected { background-color:#fff; font-weight:bold; color:#0B6CA3; }
	
	.navHeader { 
		font-size:14px; font-family:Arial, Helvetica, sans-serif; font-weight:bold;
		color:#0B6CA3;
		padding:5px;
	}
	.navCatHeading {
	 	border: 1px solid #ccc;	
		background-color:#0B6CA3;
		background-image:url(/images/nav/navBackGradientDark.gif);
		font-size:11px; font-family:Arial, Helvetica, sans-serif; font-weight:bold;
		color:#fff;
		padding:5px;
	}
	
	.navCatHeading a {color:black; text-decoration:underline; }
	.navDivider { border-top: 1px solid #ccc; }	
	.navBox {
		font-size:16px; font-family:Arial, Helvetica, sans-serif; font-weight:bold;
		color:#0B6CA3;
		background-color:#E6F0F6;
		border: 1px solid #0B6CA3;	
		text-align:center;
		vertical-align:middle;
	}
	
	/*** rv items ****/
	.rvHeader {
		background-color:#E6F0F6; 
		color:#000; 
		font-weight:bold; 
		border: 1px solid #ccc;
		padding:5px;
		text-align:center;
	}
	.rvItems {
		text-align:center;
		background-color:#fff; 
		border-left: 1px solid #ccc; border-right: 1px solid #ccc;
		padding:5px;
	}
			
			
/********** center content ***********/
	#centerContent { background-color:#fff; width:85%; vertical-align:top; padding: 0 0 0 5px;}

/********** footer styles ***********/
	#footer { width:100%; }
		#footer a {	color:#333; text-decoration:none; }
		#footer a:hover { color:#548AFF; text-decoration:underline;	}
		#footer .spacerRow {border-bottom:1px solid #ccc;}
		#footer .heading {font-size:14px; font-weight:bold;}


/***** breadcrumb styles ************/
	#breadcrumbs {padding:5px 5px 0 0;} 
	#breadcrumbs a { color:#666666; text-decoration:none; margin:0 5px 0 0; }
	#breadcrumbs a:hover {color:#666666; text-decoration:underline;	}
	#breadcrumbs .caret{ margin:0 5px 0 0; }

/************ product related styles ************/
	
	.tableRowHeading { font-weight:bold; background-color:#0B6CA3; color:#fff; font-size:12px;}
	.featuredProduct { font-size:12px; font-family: Helvetica, sans-serif; color:#0B6CA3; font-weight:bold;}
		
	.featItemBorder {  border: 1px solid #ccc; }
	.prodGalleryBorder { vertical-align:top; }
	.itemDescription { line-height:1.5; margin-top:3px; font-size:14px;}
	.price {color:#c00; font-weight:bold; font-size:14px;}
	.galleryPrice {color:#c00; font-weight:bold; font-size:12px; text-align:center; vertical-align:middle;}
	.prodRating {color:#0B6CA3; font-weight:bold; font-size:14px;}
	.paddedFormField {padding:5px;}
	.prodDataRowHeading { font-weight:bold; background-color:#0B6CA3; border-bottom: 1px solid #fff; color:#fff; font-size:14px; padding:4px; }
	.moreColors { font-size:11px; font-style:italic; color:#666666; }
	
	.prodGalleryBorder { vertical-align:top; }
	.addlImages {background-color:#f7f7f7;}
	.addlImages img {border:1px solid #333;}
	.prodDetailDivider {border-top:1px dotted #ccc;}
	
	#membersClub {font-size:14px; color: #333; background-color:#fff; border:1px dotted #ccc; padding:10px; }
	#membersClub a {font-size:14px;font-weight:bold; }
	#membersClub h2 {font-size:20px; font-family:Helvetica; color:#333;}
	
	#prodDetailAddTable {background-color:#f7f7f7;}
	
	#pageNavigation { text-align:right; padding:10px; } 
	#pageNavigation a { color:#0042D1; text-decoration:none;	}
		#pageNavigation a:hover { color:#548AFF; text-decoration:underline;	}
	
	.pageNum {margin:3px 5px 3px 5px; }
	
	
	#itemHeader {background-color:#fff; border-bottom: 1px dotted #ccc; padding:5px;}
	#itemHeader h1{ font-size:22px; color:#0B6CA3; font-family:Helvetica, sans-serif; }
	
	#itemDescription { font-size:14px; font-family:Helvetica, sans-serif; line-height:1.8em; }
	#itemDescription ul { font-size:14px; font-family:Helvetica, sans-serif; line-height:1.8em; }
	#itemDescription p li{ font-size:14px; font-family:Helvetica, sans-serif; line-height:1.8em; }
	
	#subcatLinks a { color:#0B6CA3; text-decoration:underline; }
	#subcatLinks a:hover { text-decoration:none;}
	
	/*** people also like styles ****/
	.peopleViewHeader {
		background-color:#f7f7f7; 
		color:#333; 
		font-weight:bold; 
		padding:5px;
		text-align:center;
		font-size:14px;
	}
	.peopleViewItems { text-align:left; background-color:#fff; padding:5px; border-bottom: 1px dotted #ccc;}	
	.peopleViewBottom { border-top: 1px solid #fff;	}
	
/***** form related styles ************/
	.formLabel { font-weight:bold; }
	.errorMsg { color: #c00; font-weight:bold; }
	.reqField { color: #c00;}
	.reqBlueText { color: #244469; font-weight:normal;}
	.formDivider { border-top: 1px solid #ccc; text-align:right;}
	.paddedFormField { padding:5px;}
	
	#errorbox {
		float:left;
		padding:8px;
		margin:2px 0 8px 6px;
		font-weight:bold;
		color:#c00;
		text-align:left;
		border:1px solid #f00;
		background-color:#FFF7F7;
	}
	
	.errorHighlight { border:2px solid #f00;}

/***** miscellaneous styles ************/
	.moreGreatValues { 
		font-size:16px; font-family:Arial, Helvetica, sans-serif; font-weight:bold;
		background-color:#E6F0F6;
		border-bottom: 1px solid #0B6CA3;		
	}
	
	.pageHeader { 
		font-size:16px; font-family: Helvetica, sans-serif; font-weight:bold;
		background-color:#fff;
		color:#0B6CA3;	
		border-bottom: 1px solid #0B6CA3;
		padding:5px;
	}
	
	/**** border classes *****/
	.leftDivider {border-left: 1px solid #ccc; }
	.rightDivider {border-right: 1px solid #ccc; }
	.topDivider { border-top:  1px solid #ccc; }
	.bottomDivider { border-bottom:  1px solid #ccc; }
	.bottomDottedDivider { border-bottom:  1px dotted #ccc; }
	.topBottomBorder { border-top:  1px solid #ccc;  border-bottom:  1px solid #ccc; }
	.fullBorder {  border: 1px solid #ccc; }
	.line_right { border-right: 1px solid #CCCCCC; padding-top:3px; }
	.line_right_left { border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; }

	.clearance { background-color:#c00; }

/*** xl image pop up styles ***/
.xlImageTable {
	border-collapse:collapse; background-color:#FFFFFF; 
	border:1px solid #CCC; 
}
.xlTableLeftNav { border-right:1px solid #CCC; }

/********** Javascript Required block **********/
	div#noJavascript { background: #D2E4F2; border:1px solid #244469; padding:1.2em; text-align:center; width:502px; margin:0 auto;}
	div#noJavascript div{ background: #fff; border:1px solid #244469; padding:.5em; color: #000; }
	div#noJavascript h2 { color:#244469; font-size:18px; }
	div#noJavascript p { font-size : 12px; margin-bottom:0; line-height:1.2em; margin-top:.5em; }
/********** /Javascript Required block **********/

#informationalBox {
	float:left;
	padding:8px;
	margin:2px 0 8px 6px;
	font-weight:bold;
	color:#0B6CA3;
	text-align:left;
	border:1px dotted #ccc;
	background-color:#F7F7F7;
	font-size:14px;
}
.msgHeading {font-size:18px: font-family:Helvetica;} 

.cqsHeader { 
	font-size:16px; font-family: Helvetica, sans-serif; font-weight:bold;
	background-color:#0B6CA3;
	color:#fff;	
	padding:5px;
}

.loginHeader {
	font-size:16px; font-family: Helvetica, sans-serif; font-weight:bold;
	background-color:#0B6CA3;
	color:#fff;	
	padding:5px;
}

/* .giftShopHeader {
	background-color:#990000; 
	color:#fff; font-weight:normal; font-size:18px; text-align:center; font-family:helvetica;
} */

.giftShopHeader {
	background-color:#fff; 
	color:#0B6CA3; border-bottom:2px solid #0B6CA3; 
	font-size:24px; text-align:left; font-family:Helvetica; text-transform:uppercase;
}
#twelveDaysPrice {color:#CC0303; font-weight:bold; font-size:18px;}
#twelveDaysOldPrice {color:#666666; text-decoration:line-through; font-size:16px;}
