﻿/*
ProductCart Shopping Cart Software, Copyright Early Impact LLC 2006, All Rights Reserved
Use this stylesheet to change the look of the default header and footer that ship with ProductCart.

If styles modified using this page do not appear in your storefront, please check the following
two items before anything else:

(1) Make sure that header.asp links to this stylesheet. The code goes before the closing </head> tag:

<link type="text/css" rel="stylesheet" href="pcStorefront.css" />

(2) Make sure that header.asp contains the following code at the very top of the page, before anything else.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

(3) The styles included under "MAIN Styles" are the ones that used to be controlled by the Display Settings
area of the ProductCart Control Panel in previous versions of the software. Unless you want to, you DO NOT need
to change any of the other styles.

*/

/*-----------------------------------------------------------------------------------------
	MAIN Styles - They apply to the entire storefront, unless otherwise defined below
	----------------------------------------------------------------------------------------*/

	/* pcMain is the container for all information displayed by ProductCart on the page
	   This is where you can change the font used storewide, for example.  */
	#pcMain {
		font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
		font-size: small;  /* gbdg-ebg 06/08/2011 */
		color: #333333;
		text-align: left;
		background-color: #FFFFFF;
		width: 100%;
	}
	
	/* The following two statements assign a style to links storewide. They are sometimes
	   overwritten by other styles that target specific links. */
    /* gbdg-ebg 06/08/2011 Begins */
	a {
		color: #336699;
	}
	
	a:hover {
		color: #95ac65;
		text-decoration: none;
	}
   /* gbdg-ebg 06/08/2011 Ends */
/*-----------------------------------------------------------------------------------------
	 Storefront Tables - Styles within the table are defined later 
	----------------------------------------------------------------------------------------*/

	/* pcMainTable is the container for all information displayed on the
     by ProductCart on the page */
		.pcMainTable {
			width: 100%;
			border: 0;
			border-collapse: collapse;
		}

	/* pcShowProducts is the table that organizes the display of products
	   (e.g. in a category or when viewing best sellers or new arrivals.
		 By default it's set to 100% width and to align in the center of the page. */
		.pcShowProducts {
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			width: 100%;
			border: 0px dotted #E1E1E1;
			margin-top: 10px;
			padding: 5px;
		}
		
		.pcShowProducts td {
			padding: 3px;
			vertical-align: bottom;
		}
		
	/* pcShowContent is the table that organizes the display of information other than
	   products. It does not have a dotted border around it. 
		 By default it's set to 100% width and to left of the page. */
		.pcShowContent {
			text-align: left;
			margin-left: 0;
			width: 100%;
			border: 0;
			border-collapse: collapse;
			margin-top: 5px;
			padding: 5px;
		}
		
		.pcShowContent td {
			padding: 3px;
			vertical-align: top;
		}
		
	/* pcShowCart is the table that organizes the display of information on
		 the shopping cart page */
		.pcShowCart {
			text-align: left;
			margin-left: 0;
			width: 100%;
			border: 0;
			border-collapse: collapse;
		}

		.pcShowCart td {
			padding: 1px;
			vertical-align: top;
		}
		
		.pcShowCartPrices {
			text-align: left;
			padding-left: 3px;
		}
		
	/* pcShowList is used when showing a list of items such as quantity discounts */
		.pcShowList {
			text-align: left;
			width: 80%;
			border: 1px solid #e1e1e1;
			border-collapse: collapse;
		}

/* Styles within MAIN TABLE */

	/* Style the page title */
	.pcMainTable h1 {
        /* gbdg-ebg 06/08/2011  */
		background: #657a37 url(/store/pc/images/h1_corner.gif) top left no-repeat;
		font-size: 18px;
		font-weight: bold;
		color: #ffffff;  /* gbdg-ebg 06/08/2011 */
		margin: 0 0 5px 0;
		padding: 5px;
		text-align: left;
	}
	
	/* Style the table title (e.g. table showing quantity discounts) */
	.pcMainTable h2 {
		background-color: #F5F5F5;
		font-size: 15px;
		margin: 0 0 5px 0;
		padding: 5px;
	}
	
	.pcMainTable h3 {
		font-size: 12px;
		margin-top: 10px;
		margin: 5px 0 5px 0;
		padding: 5px;
	}
	
	/* Style the table headings */
	.pcMainTable th {
		background-color: #cde1a2;  /* gbdg-ebg 06/08/2011 */
		font-size: 12px;
		font-weight: bold;
		padding: 4px;
		border-bottom: 1px solid #E1E1E1;
		text-align: left;
	}
	
	/* Remove the default marging from paragraphs */	
	.pcMainTable p {
		margin: 0 0 0 5px;
	}
	
/* Style within SHOW PRODUCTS table */

	/* Add background color on mouse over when browsing */
	.pcShowProductBgHover {
		/*background-color: #F7F7F7;*/
	}
		/* Remove it on mouse out */
		.pcShowProductBg {
			background: none;
		}

	/* Style the product name */
	.pcShowProductName {
		font-size: 12px;
		color: #CC6600;
		font-weight: bold;  /* gbdg-ebg 06/08/2011 */
	}
	
	/* Style the product sku */
	#pcMain .pcShowProductSku {
		color: #666666;
	}

    /* PRV41 Start              */
	/* Style the product rating */
	#pcMain .pcShowProductRating {
		color: #666666;
	}
    /* PRV41 End                */

	
	/* Style the product weight */
	#pcMain .pcShowProductWeight {
		color: #666666;
	}
	
	/* Style the product brand */
	#pcMain .pcShowProductBrand {
		color: #666666;
	}
	
	/* Style the product stock */
	#pcMain .pcShowProductStock {
		color: #666666;
	}
	
	/* Style the Product BTO Default Config */
	#pcMain .pcShowProductBTOConfig {
		color:#666666;
	}
	
	/* Style the Product Custom Search */
	#pcMain .pcShowProductCustSearch {
		color:#666666;
	}
	
	#pcMain .pcShowProductCustSearch a {
		text-decoration: none;
	}

	
	/* Style the Product Free Shipping Text */
	#pcMain .pcShowProductShipping {
		color:#666666;
	}
	
	/* Change font color for "Show Product's Price" feature */
	#pcMain .pcShowProductPrice {
       /* gbdg-ebg 06/08/2011 Begins */
			color: #336699;
		font-family: Arial, Helvetica, sans-serif;
    /* gbdg-ebg 06/08/2011 Ends */
	}

	/* Increase size of online price on Product Details page */
	#pcMain .pcShowProductMainPrice {
		font-size: 15px;
	}
	
	/* Strikethrough for List Price */
	#pcMain .pcShowProductListPrice {
		text-decoration:line-through;
	}
	
	/* Change font color for "Show Savings" feature */
	#pcMain .pcShowProductSavings {
		color: #090;
		font-weight: bold;
	}
	
	/* Style the short product description */
	#pcMain .pcShowProductSDesc {
		color:#666666;
		padding-right: 30px;
	}
	
	/* Style the "Not for Sale" text */
	#pcMain .pcShowProductNFS {
		width: 200px;
		background-color: #E9EEFE;
		border: 1px solid  #CCC;
		background-image:url(images/pcv4_st_icon_info.png);
		background-repeat: no-repeat;
		background-position: 8px 8px;
		margin: 10px 0 15px 10px;
		padding: 8px 10px 8px 30px;
		color: #000000;
		font-size: 12px;
		text-align: left;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	/* Style the paragraph that includes the "More Details" button */
	.pcShowProductLink {
		padding-top: 3px;
	}
	
	/* Style the paragraph that includes the "Sort by" drop-down */
	.pcSortProducts {
		text-align: right;
	}

	/* pcShowProductsH handles the table that shows product info
	   when products are displayed horizontally */
		 
		.pcShowProductsH {
			width: 150px;
			height: 200px;  /* gbdg-ebg 06/08/2011 Begins */
			text-align: center;
			margin-left: auto;
			margin-right: auto;
			border: 0px solid #E1E1E1;  /* gbdg-ebg 06/08/2011 Begins */
		}
		
		.pcShowProductImageH {
			height: 125px;
			vertical-align: middle; /* gbdg-ebg 06/08/2011 Begins */
			text-align: center;
			padding-bottom: 3px;
		}
		
		#pcMain .pcShowProductImageH img {
			padding: 5px;
		}
		
		#pcMain .pcShowCategoryImage img {
			border: 1px solid #E1E1E1;
			padding: 5px;
		}
		
		#pcMain .pcShowProductInfoH {
			height: 100px;
			margin-top: 5px;
			vertical-align: top;
		}
		
		.pcShowProductInfoH p {
			text-align: left;/* gbdg-ebg 06/08/2011 Begins */
		}
		
	/* pcShowProductsHCS handles the table that shows product info
	   when cross selling products are shown with images */
		
		.pcShowProductsHCS {
		 width: 125px;
		 height: 225px;
		 text-align: center;
		 margin-left: auto;
		 margin-right: auto;
		}
	
	/* pcShowProductsP handles the table that shows product info
	   when products are displayed vertically */
		 
		.pcShowProductsP {
			margin: 5px;
			padding: 5px;
			width: 100%;
		}
		
		.pcShowProductImageP {
			width: 125px;
			text-align: center;
		}
		
		#pcMain .pcShowProductImageP img {
			border: 1px solid #E5E5E5;
			padding: 5px;
		}
		
		.pcShowProductInfoP {
			text-align: left;
			width: 95%;
			padding-left: 10px;
		}
		
	/* pcShowProductsL handles the table that shows product info
	   when products are displayed in a list */
		 
		.pcShowProductsL {
			width: 100%;
			text-align: left;
		}
		
		.pcShowProductsLheader {
			text-align: left;
			background-color:#F7F7F7;
		}
		
		.pcShowProductsLCell {
			vertical-align: top;
			text-align: left;
		}
		
		.pcShowProductImageL {
			height: 25px;
			width: 25px;
			text-align: left;
			padding: 5px 5px 0 5px;
		}
		
		/* Add background color on mouse over */
		.pcShowProductsLhover {
			background-color: #F0F7FE;
			width: 100%;
			text-align: left;
		}
		
	/* pcShowProductsM handles the table that shows product info
	   when products are displayed in a list with the quantity field */
		 
		.pcShowProductsMheader {
			text-align: left;
			background-color:#F7F7F7;
		}
		
		.pcShowProductsM {
			width: 100%;
			text-align: left;
			vertical-align: top;
		}
		
		.pcShowProductImageM {
			height: 25px;
			width: 25px;
			text-align: left;
			padding: 0 5px 0 5px;
		}
		
		/* Add background color on mouse over */
		.pcShowProductsMhover {
			background-color: #F0F7FE;
			width: 100%;
			text-align: left;
			vertical-align: top;
		}
		
		
		
/*-----------------------------------------------------------------------------------------
	 ProductCart Build To Order
	----------------------------------------------------------------------------------------*/
		 
		/* Style the product configuration pages */
		.pcBTOmainTable {
			width: 100%;
			background-color: #FFFFFF;
			border: 0;
			border-collapse: collapse;
		}
		
		.pcBTOfirstRow {
			background-color: #F5F5F5;
		}
		
		.pcBTOsecondRow {
			background-color: #E1E1E1;
		}
		
		/* Style the pop-up window used by ProductCart Build To Order to show additional
			 item information on the configuration pages */
		.pcBTOpopup {
			width: 98%;
			background-color: #FFFFFF;
			border: 0;
			border-collapse: collapse;
			margin: 5px;
			font-size: 10px;
		}
		
		.pcBTOpopup img {
			margin: 5px;
			vertical-align: bottom;
			text-align: center;
			padding-bottom: 3px;
		}
		
		/* Style the detailed product configuration when shown on the shopping cart page
			 order details page, etc. */
		.pcShowBTOconfiguration {
			text-align: left;
			background-color:#F7F7F7;
		}
		
		.pcShowBTOconfiguration p {
			font-size: 10px;
			color:#666666;
		}
		
/*-----------------------------------------------------------------------------------------
	 Browse by Category or Brand
	----------------------------------------------------------------------------------------*/
		 
		.pcShowCategory {			
			text-align: center;
			margin-left: auto;
			margin-right: auto;
		}
		
		.pcShowCategory td {
			vertical-align: bottom;
		}
		
		.pcShowCategoryP {
			width: 100%;
			text-align: left;
		}
		
		.pcShowCategoryImage {
			height: 125px;
			vertical-align: bottom;
			text-align: center;
			padding-bottom: 3px;
		}
		
		.pcShowCategoryImage img {
			border: 1px solid #E5E5E5;
			padding: 5px;
		}
		
		.pcShowCategoryInfo {
			margin-top: 5px;
			vertical-align: top;
		}
		
		.pcShowCategoryInfo p {
			text-align: center;
		}
		
		.pcShowCategoryInfoP {
			width: 100%;
			margin-top: 5px;
			text-align: left;
			vertical-align: top;
		}
		
		/* Add background color on mouse over when browsing */
		.pcShowCategoryBgHover {
			/*background-color: #F7F7F7;*/
		}
			/* Remove it on mouse out */
			.pcShowCategoryBg {
				background: none;
			}

/*-----------------------------------------------------------------------------------------
	 Product details page
	----------------------------------------------------------------------------------------*/
	
		/* Visually separate prices from the rest of the information */
		.pcShowPrices {
			margin-top: 10px;
			margin-bottom: 10px;
			font-weight: bold;
		}
		
		
/*-----------------------------------------------------------------------------------------
	 Page Navigation
	----------------------------------------------------------------------------------------*/
	
	/* pcPageNav handles the page navigation at the bottom of the page, when present. */
	.pcPageNav {
		text-align: left;
		width: 100%;
		border: 0;
		border-collapse: collapse;
		margin: 10px 0 10px 5px;
	}
	
	.pcPageNav a:hover {
		color: #000000;
		text-decoration: none;
	}
	
	.pcPageName a:link, #pcCatNav a:visited {
		color: #999999;
	}

/*-----------------------------------------------------------------------------------------
	 Forms
	----------------------------------------------------------------------------------------*/

	/* Clear the margins for all forms used by ProductCart */
	#pcMain form {
		margin: 0;
		}
		
	/* Control margin and spacing on p tags used in forms */
	#pcMain .pcForms td p {
		padding: 0;
		margin: 0;
	}
		
	.pcForms input {
        /* gbdg-ebg 06/08/2011 Begins */
		border: 1px solid #a5acb2;
		color: #333333;
		padding: 3px;
        /* gbdg-ebg 06/08/2011 Begins */
	}
	
	.pcForms input:focus {
		border: 1px solid #999999;
		background-color: #FFFFCC;
	}
	
	.pcForms textarea {
		border: 1px solid #CCCCCC;
		background-color: #F7F7F7;
		font-size: 11px;
		color:#666666;
		padding: 2px 3px 2px 3px;
	}
	
	.pcForms textarea:focus {
		border: 1px solid #999999;
		background-color: #FFFFCC;
	}
	
	/* Style drop-down menus */
	.pcForms select {
		font-size: 10px;
		color: #333333;
		background-color: #F5F5F5;
		border: 1px solid #CCCCCC;
	}
	
	/* Style fieldsets */	
	.pcForms fieldset {
		border: 1px solid #CCCCCC;
		padding: 10px;
	}
	
	/* Style submit image button */
	#submit {
		border: 0;
		background-color: transparent;
		padding: 0px;
	}
	/* Style submit image button */
	#pcMain .submit {
		border: 0;
		background-color: transparent;
		padding: 0px;
	}
	
	/* Style submit button (when an image is NOT used) */
	#pcMain .submit2 {
		border: 1px solid #CCCCCC;
		background-color: #FFFFCC;
		font-size: 11px;
		color:#666666;
		padding: 2px 3px 2px 3px;
	}
	
	/* Style the transparent fields used by ProductCart Build To Order and Apparel Add-on */
	#pcMain .transparentField {
		border: 0;
		background-color: transparent;
		padding: 0;
	}	
	
	/* Clear border on checkboxes to fix IE bug */
	#pcMain .clearBorder {
		border: 0;
		background-color: transparent;
	}	
	
/*-----------------------------------------------------------------------------------------
	 Search results page
	----------------------------------------------------------------------------------------*/

	/* Style list of categories in the category search results */
	.pcCatSearchResults ul {
		list-style-type: none;
		margin: 0 0 20px 15px;
		padding: 0;
	}

	.pcCatSearchResults ul li {
		margin: 2px 0 0 0;
	}


/*-----------------------------------------------------------------------------------------
	 Other styles
	----------------------------------------------------------------------------------------*/

	/* Remove the default border from images */	
	#pcMain img {
		border: 0; 
	}

	/* Style the page description at the top of the page, when available */
    /* gbdg-ebg 06/08/2011 Begins */
	.pcPageDesc {
		background: #e8f3ce url(/store/pc/images/cat_desc_bg.gif) bottom repeat-x;
	}
	.pcPageDesc td {
		padding: 0;
	}
	.pcPageDesc h1 {
		background: none;
		color: #4c5d29;
	}
	 /* gbdg-ebg 06/08/2011 Ends */
	/* Styles section titles on pages with different sections (e.g. search results) */
	.pcSectionTitle {
		background-color: #c5db96;  /* gbdg-ebg 06/08/2011 */
		text-align: left;
		padding: 5px;
		font-size: 1.1em;  /* gbdg-ebg 06/08/2011 */
		font-weight: bold;
		color: #4b5b28;  /* gbdg-ebg 06/08/2011 */
	}	
		
	/* Example of usage: preview search results text on advanced search page */
	.pcTextMessage {
		color: #0066FF;
		font-weight: bold;
		}
		
	/* Example of usage: how to add products to your Gift Registry */
	.pcInfoMessage {
		width: auto;
		min-width: 50%;
		background-color: #E9EEFE;
		border: 1px solid  #CCC;
		background-image:url(images/pcv4_st_icon_info.png);
		background-repeat: no-repeat;
		background-position: 8px 8px;
		margin: 10px 0 15px 10px;
		padding: 8px 10px 8px 30px;
		color: #000000;
		font-size: 12px;
		text-align: left;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	/* Example of usage: successfully completed checkout step */
	.pcSuccessMessage {
		width: auto;
		min-width: 50%;
		background-color: #F0F7FE;
		border: 1px solid  #CCC;
		background-image:url(images/pcv4_st_icon_success_small.png);
		background-repeat: no-repeat;
		background-position: 8px 8px;
		margin: 10px 0 15px 10px;
		padding: 8px 10px 8px 30px;
		color: #000000;
		font-size: 12px;
		text-align: left;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}

	/* Styles alert and friendly error messages shown to the customer in the storefront */
	.pcErrorMessage {
		width: auto;
		min-width: 50%;
		background-color: #f9f6e4; /* gbdg-ebg 06/08/2011 */
		border: 1px solid #996600;  /* gbdg-ebg 06/08/2011 */
		background-image:url(images/pcv4_st_icon_error_small.png);
		background-repeat: no-repeat;
		background-position: 8px 8px;
		margin: 10px 0 15px 10px;
		padding: 8px 10px 8px 30px;
		color: #996600; /* gbdg-ebg 06/08/2011 */
		font-size: 12px;
		text-align: left;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;

	}	
	
	/* Example of usage: promotion details on shopping cart page (viewcart.asp) */
	.pcPromoMessage {
		width: 80%;
		background-color: #E9EEFE;
		border: 1px solid  #CCC;
		background-image:url(images/pc4_promo_icon.png);
		background-repeat: no-repeat;
		background-position: 4px 4px;
		margin: 10px 0 15px 10px;
		padding: 8px 10px 8px 30px;
		color: #000000;
		font-size: 12px;
		text-align: left;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
	}
	
	/* Styles small text shown in various pages (e.g. "(mm/yy)" on the credit card page */
	.pcSmallText {
		font-size: 11px;
		color: #777777;
		}
	/* gbdg-ebg 06/08/2011 Begins */
    .SmallText {
	font-size: 10px;
	color:#333333;
	font-family: Verdana, "Trebuchet MS", Arial;
		}
	#search .pcSmallText a{
		color: #466921;
		text-decoration: none;
		font-family: Arial, Helvetica, sans-serif; 
	}
   /* gbdg-ebg 06/08/2011 Ends */

	/* Styles small text shown in various pages (e.g. "(mm/yy)" on the credit card page */
	.pcLargerText {
		font-size: 14px;
		font-weight: bold;
		}
		
	/* Sets the height of an empty table row */
	.pcSpacer {
		height: 10px;
	}
		
	/* Horizontal line */
	#pcMain hr {
	color: #e5e5e5;
	background: #e5e5e5;
	border: 0;
	height: 1px;
	}
	
	/* Add spacing to list items */
	#pcMain li {
	padding-bottom: 3px;
	}

/*-----------------------------------------------------------------------------------------
 ProductCart Product ViewPrd.asp Images
----------------------------------------------------------------------------------------*/	

	#pcMain .pcShowMainImage {
    /* gbdg-ebg 06/08/2011 Begins */
		width: 307px;
		height: 309px;		
		margin: 0 12px 0 0;
		background: url(/images/prod_image_bg.gif) top left no-repeat;
    /* gbdg-ebg 06/08/2011 Begins */
	}
	
	
	#pcMain .pcShowAdditional {
		width: 240px;
		text-align: center;
		margin-left: auto;
		margin-right: auto;			
	}
	
	#pcMain .pcShowAdditionalImage {
		vertical-align: top;
		text-align: center;
		padding: 0 0 0 0;
	}
	
	#pcMain .pcShowAdditional img {
		width: 50px;
		height: 50px;
		border: 1px solid #cccccc;
		margin-bottom: 6px;
	}
	
/*-----------------------------------------------------------------------------------------
	 ProductCart v2.7x styles
	----------------------------------------------------------------------------------------*/
	
	/* Printer-friendly version of order details page */
	table.invoice {
		border-collapse:collapse;
		border: 1px solid #333333;
	}
	td.invoice {
		border: 1px solid #666666;
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size:11px;
		vertical-align:top;
		text-align:left;
	}
	td.invoiceNob {
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size:11px;
		vertical-align:top;
		text-align:left;
	}
	
/*-----------------------------------------------------------------------------------------
 'Stay on Page' when Adding to the Cart - Confirmation message window
----------------------------------------------------------------------------------------*/	
	#overlayX {
		 visibility: hidden;
		 position: absolute;
		 left: 0px;
		 top: 0px;
		 width:100%;
		 height:100%;
		 text-align:center;
		 z-index: 1000;
	}

	.UpdateCartDivX {
		 width:300px;
		 margin: 100px auto;
		 background-color: #fff;
		 border:1px solid #000;
		 padding:15px;
		 text-align:center;
	}
	
	#overlay table {text-align: center;
	 margin: 0 auto;/*this helps center the table within the div#overlay*/
	 }
	
	#overlay {
	 visibility: hidden;
	 position: absolute;
	 background: url('images/shadowAlpha.png') no-repeat right bottom !important; /*for browsers that supports transparent .png files*/
	 background: url('images/shadow.gif') no-repeat right bottom; /*for older browsers that does NOT support transparent .png files*/
	 margin: 10px auto 10px auto !important;/*'auto' is used to center the div for Firefox*/
	 margin: 10px auto 10px auto; 
	 left: 400px;/*positioned from the left of parent div*/
	 top: 300px;/*postion from the top of parent div*/
	 width: 390px;/*adjust the width of the window*/
	 z-index: 1000;
	 text-align:center;
	}
	
	.UpdateCartDiv {
	
	 background: #F0F7FE;
	 position:relative; 
	 bottom:6px;/*offsets the div to show the shadow background*/
	 right: 6px;/*offsets the div to show the shadow background*/
	 border: 1px solid #999999;
	 padding:4px;/*adds padding all around so that it does not butt up against the div#overlay image*/
	 text-align:center;
	}
/* gbdg-ebg 06/08/2011 Begins */
/* END */

/*copyright ----------------------------*/
#copyright {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #ffffff;
}
#copyright a {
	color: #ffffff;
}

#prod_name {
	background: #95ac65;
	color: #ffffff;
}
#prod_name td.prodName {
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: large;
	padding: 5px;
	font-weight: bold;
}

#price_breaks {
	background: #ebe3bd url(/images/orng_gradient.gif) top repeat-x;
	padding:0;
	border:0;
	width: 99%;
}
#price_breaks td {
	padding: 3px;
}
#form {
	background: #f2f9e3;
}
#form input, #form select {

}
#form td {
	padding: 8px;
}
#form tr.odd {
	background: #f2f9e3;
	font-size: 10pt;
}
#bluebox {
	background: #c6daeb;
	padding: 0;
}
#bluebox td {
	padding: 0;
}
#bluebox thead td {
	background: url(/images/bluebox_t.gif) repeat-x top;
}
#bluebox tfoot td {
	background: url(/images/bluebox_b.gif) repeat-x;
}
#bluebox td.left {
	background: url(/images/bluebox_l.gif) repeat-y left;
}
#bluebox td.right {
	background: url(/images/bluebox_r.gif) repeat-y right;
}

/****************************************
navigation
****************************************/
#nav th {
	background: #7ba5cb url(/images/nav_hlight_tile.gif) repeat-x;
	height: 36px;
	font-weight: bold;
	white-space: nowrap;
}
#nav th a {
	padding: 10px;
	text-decoration: none;
	color: #ffffff;
	font-size: 17px;
}
#nav th a:hover {
	color: #b5d1e8;
}
#nav th.pipe, #nav td.pipe {
	text-align: center;
	vertical-align: middle;
}
#nav td {
	background: url(/images/nav_bg.gif) repeat-x;
}
#nav td a {
	color: #754e01;
	padding: 10px;
	text-decoration: none;
	font-size: 17px;
	font-weight: bold;
	white-space: nowrap;
}
#nav td a:hover, #nav td a.hot {
	background: url(/images/nav_bg_over.gif) repeat-x left 3px;
	color: #ffffff;
}
#nav_arrow {
	position: absolute;
	margin-top: -4px;
	margin-left: 40px;
}





#home_teaser {
	color: #ffffff;
	font-size: small;
	font-family: Arial, Helvetica, sans-serif;
}
#home_teaser h1 {
	color: #ffffff;
	font-size: 2em;
	padding:0;
	font-family: Trebuchet MS, Arial, sans-serif;
	line-height: 20px;
}
h1.featured {
	background: #557fa6 url(/images/featured_prods_left.gif) left top no-repeat;
}
h1.alert {
	background: #fde6b5 url(/images/alert_left.gif) left top no-repeat;
	color: #f83610;
	font-size: medium;
	padding: 6px;
}
#featured_box {
	background: #dfe7ee url(/images/featured_box_bg.gif) repeat-x;
	border:0;
}
#featured_box td {
	border:0;
	padding:0;
}
#featured_box td.left {
	background: none;
	border-left: 1px solid #dde6ee;
}
#featured_box td.rightt {
	border-right: 1px solid #dde6ee;
	background: none;
	text-align: right;
	padding:0;
	width: 8px;
}
#featured_box td.top {
	border-top: 1px solid #dde6ee;
}
#featured_box td.bottom {
	border-bottom: 1px solid #dde6ee;
}

#footer {
	width: 1000px;
	background: #dbe1cf url(/images/footer_bg.jpg) 13px left repeat-x;
	text-align: center;
	margin: auto;
}
#footer td {
	background: #dbe1cf url(/images/footer_bg.jpg) top left repeat-x;
	border-right: 1px solid #ffffff;
	border-left: 1px solid #cedab7;
}
#footer thead td {
	background:url(/images/footer_top_tile.jpg) repeat-x top;
	border:0;
}
#footer tfoot td {
	background:url(/images/footer_bttm_tile.jpg) repeat-x bottom;
	border:0;
}
#footer td.foot_left {
	background: url(/images/footer_left_tile.jpg) repeat-y left;
	border:0;
}
#footer td.foot_right {
	background:url(/images/footer_right_tile.jpg) repeat-y right;
	border:0;
}
#footer table {
	background: transparent;
}
#footer table td {
	padding-left: 20px;
	background: transparent;
	border:0;
}

/*******************************************************
symptom checker
*******************************************************/
#symptom_panel {
	background: #c4da95 url(/images/symptom_box_bg.gif) top repeat-x;
	height: 309px;
	font-size: small;
}
#symptom_panel td.symp_box_l {
	border-left: 1px solid #86a73e;
}
#symptom_panel td.symp_box_r {
	border-right: 1px solid #86a73e;
}
#symptom_panel td.symp_box_bttm {
	background: url(/images/symptom_box_bttm_bg.gif) repeat-x bottom;
}
#symptom_panel h1 {
	background: #aec47f url(/images/symptom_box_h1_l.gif) left top no-repeat;
	color: #ffffff;
	height: 30px;
	margin: 0;
	padding-left: 10px;
	font-size: 1.6em;
}
#symptom_cond_panel {
	background: #acc5db url(/images/symptom_cond_bg.jpg) no-repeat;
}
#symptom_cond_panel {
	height: 209px;
	width: 351px;
	border-bottom: 1px solid #476c96;
}
#symptom_cond_panel td {
	padding: 0 9px 0 9px;
}
#symptom_cond_panel h1 {
	height:30px;
	background: #6f9bc4 url(/images/symptom_cond_h1_l.gif) left top no-repeat;
	padding-left: 10px;
	color: #ffffff;
	font-size: 1.6em;
}
#conditionList {
	width: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	height: 100px;
	font-size: small;
	background: #ffffff;
}
#conditionList td {
	padding: 1px;
}
#conditionList td a {
	padding: 3px;
	width: 98%;
	display: block;
	text-decoration: none;
}
#conditionList td a:hover {
	background: #6f9bc4;
	color: #ffffff;
}
#conditionList td.odd {
	background: #dee9f4;
	font-size: 10pt;
}
#conditionList td.even {
	background: #bdd1e3;
}
#conditionList td.selected {
	background: #336699;
	color: #ffffff;
}

#help_bubble {
	width:155px;
	position: absolute;
	z-index: 9999;
}
#help_bubble th {
	background: #3e79b0;
	color: #ffffff;
	font-size: small;
	font-weight: bold;
	padding:10px;
	text-align: left;
}
#help_bubble td.help_right{
	background: #3e79b0 url(/images/help_bubble_right.gif) repeat-y right top;
	width: 4px;
}
#help_bubble td.help_left{
	background: #3e79b0 url(/images/help_bubble_left.gif) repeat-y left top;
	width: 4px;
}
#help_arrow {
	position: relative;
	left: 3px;
}
#close_help {
	position: relative;
	top: -7px;
	left: 5px;
	cursor: pointer;
}

#conditions {
	overflow-x: hidden;
}
#conditions table, #symptoms table {
	width: 100%;
}
#conditions td a, symptoms label {
	padding: 3px 3px 3px 20px;
	width: 100%;
	display: block;
	text-decoration: none;
	color:#333333;
	cursor: pointer;
}
#conditions td a:hover, #symptoms td:hover {
	text-decoration: none;
	color: #ffffff;
	background: #6f9bc4;
}
.r_even {
	background: #f2f9e3;
	font-size: 10pt;
}
.selected {
	color: #ffffff;
	background-color: #6f9bc4;
}

#title_bar_grn th {
	background: #b7d381 url(/images/title_bar_grn_bg.gif) repeat-x top;
	color: #334c14;
	font-family: Trebuchet MS, Arial, sans-serif;
	font-size: medium;
}
#title_bar_grn td {
	background: #ecf3da;
	padding-bottom: 5px;
	padding-top: 5px;
}
div.quick_list {
	overflow-y: auto;
	overflow-x: hidden;
	padding: 0 10px 0 10px;
	height: 212px;
}
div.list {
	height: 300px;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 0 10px 0 10px;
}
div.list ul, div.quick_list ul {
	margin: 0;
	padding: 0;
}
div.list li, div.quick_list li {
	list-style: none;
	font-size: small;
	border-bottom: 1px solid #c3cfa4;
}
div.list li.type, div.quick_list li.type {
	font-size: small;
	border-bottom: 0;
	font-weight: bold;
	background: #ffffff;
}
div.list li a, div.quick_list li a {
	display: block;
	width: 100%;
	padding-top:2px;
	padding-bottom: 2px;
	text-decoration: none;
}
div.list li a:hover, div.quick_list li a:hover {
	background: #ffffff;
}
table.auto_complete {
	position: absolute;
	overflow: hidden;
	height: 150px;
	width: 290px;
	background: #6f9bc4;
	padding:0;
}
table.auto_complete td{
	height: 10px;
	padding:0;
	margin: 0;
	background: #6f9bc4;
}
table.auto_complete a {
	background: #6f9bc4;
	font-size: small;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	padding:0;
	margin: 0;
	display: block;
	width: 100%;
}
table.auto_complete a:hover {
	background: #336699;
}

div.full_story {
	display: none;
	font-size: small;
	padding-left: 70px;
}
#story_summary {
	background: #ffffff;
	padding: 10px;
	border-bottom: 6px solid #ecf3da;
}

#accordian td {
	background: #f1f4f7;
	padding: 5px;
	font-size: small;
	font-weight: bold;
	border-bottom: 2px solid #ffffff;
}
#grn_panel {
	background: #c4da95 url(/images/grn_pnl_bg.gif) repeat-x top;
}
#blue_panel {
	background: #87a7c3 url(/images/blue_pnl_bg.gif) repeat-x top;
}
#grn_panel table#header {
	background: #657a37;
	color: #ffffff;
	font-size: large;
	font-weight: bold;
	height: 30px;
}
#story table td {
	background: #ffffff; !important
}
#story table {
	position: inherit;
}
#story table img {
	padding: 10px;
}

#conds ul {
	list-style: none;
}
#conds li {
	padding: 8px;
	list-style: none;
	font-size: small;
}
#conds li a {
	font-weight: bold;
}
.Verdana {
	font-family: Verdana, "Trebuchet MS", Arial;
	font-size: 13px;
	line-height: 18px;
}  !important

.odd {
	background: #ffffff;
	font-size: 10pt;
}
.specialfield {
display: none
}
/* gbdg-ebg 06/08/2011 Ends */
/* END */
