@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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 */
	background-image: url(images/background2.jpg);
	 background-repeat: repeat-x;
    background-color: #FFFFFF;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 980px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #A1A1A1;
	border-right-color: #A1A1A1;
	border-bottom-color: #A1A1A1;
	border-left-color: #A1A1A1;
} 

/* 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: 95px;  /* 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. */
	background-image: url(images/layout/big_logo.gif);
	background-repeat: no-repeat;
	background-color:#23580E;
} 

.breadcrumb0 {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #444;
font-size: 11px;
}

    
.breadcrumb1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #666;
font-size: 11px;
}    

.breadcrumb2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
color: #999999;
font-size: 11px;
}

.bestsellingheading {
font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #33cc33;
}

.product_cata_name{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #000000;
text-decoration: none;
}

.smallpricetext {
	font-size: 10px;
	color: #FF0000;
}
	
.tinybodytext{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #666666;
}

.bestsellers{
	padding: 10px 0px 10px 0px;
}

h1 {
	display: inline;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #4F3529;
}

h5 {
		display: inline;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #4F3529;
}


a {
 	text-decoration: none;
    color: #F5A402;
}

a:hover {
	color: #F39200;
}

.hr {
	color: #333333;
}
	
.thrColAbsHdr #header_image_holder a {
	
	text-decoration: none;
}	
.thrColAbsHdr #header_image_holder {
	vertical-align: bottom; 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-align: right;
	height: 140px;
	width: 970px;
	background-repeat:no-repeat;
}

.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.thrColAbsHdr #sidebar1 {
	/*position: absolute;*/
	float: left;
	top: 136px;
	left: 0;
	width: 140px;
    padding: 15px 10px 15px 10px; 
    background-image: url(images/layout/sidebar_background1.jpg);
    background-repeat:no-repeat;
}

.thrColAbsHdr #sidebar2 {
	/*position: absolute; */
	float:right;
	top: 136px;
	right: 0;
	width: 140px; /* 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 */

	padding: 15px 10px 15px 15px; /* padding keeps the content of the div away from the edges */
       background-image: url(images/layout/sidebar_background2.png);
    background-repeat:no-repeat;
}

.thrColAbsHdr #mainContent { 
	/* margin: 0 175px; /* 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: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 645px;
	float: left;
}

.thrColAbsHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
} 
.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.bodytext {
font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

.searchbutton , .buynow {
	color: #FFFFFF;
	background-color:#FD871C;
	font-family: Arial, Helvetica, sans-serif;
   color:#fff;
   font-size: 12px;
   border:1px solid;
   cursor:pointer;
}

#catahead{
	padding: 10px 0px 20px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 16px;
}

productThumb{
float:left;
}

.catagroup {
border: 1px solid #000000;
width: 150px;
padding: 5px 5px 5px 5px;
}

.smallgrey{
	font-size: 9px;
   color:#666666;
}

ul {
    margin: 0;
	display: inline;
}

#navbread {
	margin:3px 10px;
}

#sidebar1 li
{
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 10px;
        list-style: none;
        margin: 0;
        padding: 0.35em;
        border-top: 1px solid #dddddd;
		}

#sidebar1 li a { 
        text-decoration: none;
        color: #333333;
         }
         
#sidebar1 li a:hover { 
        color: #F39200;
         }
         
#videolist li {
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 10px;
        list-style: none;
        margin: 0;
        padding: 0.35em;
        border-top: 1px solid #FDF4E4;
		}

#videolist li a  { 
        text-decoration: none;
        color: #F39200;
         }
         
#videolist li a:hover  { 
        color: #FF0000;
         }         

.backcross {
	color: #999999;
	background-image: url(images/layout/red_cross.gif);
	background-repeat: no-repeat;
}

.greybox {
	border: 1px solid #E9E9E9;
}

.gbhigh {
	border: 1px solid #F39200;
}

.backtick {
	background-image: url(images/layout/green_tick.gif);
}

#shoppingcartdisplay{
padding: 0px 0px 25px 0px;
}

.green {
	color: #FD871C;
    font-size:20px;
}

.tinybodytext {
font-size:8px;
}


/* ================================================================ 
This copyright notice must be kept untouched in the stylesheet at 
all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/multi-column.html
Copyright (c) 2005-2009 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.thrColAbsHdr #nav {
	height: 35px;
	background-image: url(images/layout/navbar_background.png);
	background-repeat: repeat-x;
	text-align: center;
	padding: 0px 0px 0px 0px;
}

.searchbox { display:inline;}

#menu {height:35px; position:relative; font-size:10px; margin: 0; z-index:1000; padding-right:5px; }
#menu table.ie6 {border-collapse:collapse; margin:0; padding:0; }

#menu ul {padding:0 5px 0 0px; margin:0; list-style: none;}
#menu ul li {float:left;}
#menu ul li a {display:block; padding:7px 0 0 25px; float:left;text-decoration:none; color:#fff;   height:20px; font-size:10px; }
 
#menu ul li div.holder {position:absolute; left:-9999px;}

#menu ul li div .leftSide {float:left;background: url(images/layout/dropLeft.png) no-repeat left bottom;}
#menu ul li div .rightSide {float:left; margin-left:19px; display:inline; padding:0 19px 0 0; background:  url(images/layout/dropLeft-copy.png) no-repeat right bottom;}

#menu ul li:hover {position:relative;}
#menu ul li a:hover {color:#F39200; background-position:right center; white-space:nowrap; position:relative;}
#menu ul li a:hover b {color:#F39200; background-position:left center;}
#menu ul li a.sub:hover {color:#F39200; background-position:right bottom; white-space:nowrap; position:relative;}
#menu ul li a.sub:hover b {color:#F39200; background-position:left bottom;}

#menu ul li:hover > a {color:#F39200; position:relative;}
#menu ul li:hover a.sub {color:#F39200; background-position:right bottom; white-space:nowrap; position:relative;}
#menu ul li:hover a.sub > b {color:#F39200; background-position:left bottom;}

/* this is part that moves stuff around */
#menu ul :hover div.holder {position:absolute; top: 27px; left:4px; margin: 0; padding: 0;}

#menu ul li.dinning a:hover div.holder { left:-235px; top:27px; bottom:10px;}
#menu ul li.dinning:hover div.holder { left:-236px; top:27px; bottom:10px;}

#menu ul li.right a:hover div.holder {left:auto; right:-27px; top:27px;}
#menu ul li.right:hover div.holder {left:auto; right:-28px; top:27px;}

#menu ul dl {width:auto; margin:5px 0 20px 0; padding:0 5px;list-style:none; }
/*#menu ul dl dt {padding:0 10px; margin:10px 0 0 0; line-height:20px; background:#666; color:#fff; white-space:nowrap;}
#menu ul dl dt a{padding:0 10px; margin:0; line-height:20px; background:#666; color:#fff; white-space:nowrap;}
*/
#menu ul dl dt {padding:0; margin:0;}
#menu ul dl dt a{padding:0 10px; margin:10px 0 0 0; line-height:20px; background:#666; color:#fff; white-space:nowrap; float:none;}

#menu ul dl dd {display:block; padding:0; margin:0; clear:left;}
#menu ul dd a {background-image: none; display:block; height: 20px; line-height: 20px; color:#421; text-align:left; margin: 0; padding:0 10px;font-weight:normal; white-space:nowrap; float:none;}
#menu ul dd a:hover {color:#F39200;;}

#menu ul table td {vertical-align:top;}

.level1 a:hover {color:#666666}

#lev1 {  font-size:12px ; margin:10px 0 0 0;}
.lev1 a {color:#333333;}
.lev1 a:Hover {color:#000000;}

.lev2 {font-size:10px;  margin:10px 0 0 10px;}
.lev2 a {color:#666666;}
.lev2 a:Hover {color:#333333;}

.lev3 {font-size:9px;padding:10px  0 0 15px;}
.lev3 a {color:#999999;}
.lev3 a:Hover {color:#666666;}

.lev4 { font-size:8px ; margin:10px  0 0 20px;}
.lev4 a {color:#CCCCCC;}
.lev4 a:Hover {color:#999999;}

.prodCount {color:#999999 ;font-size:8px ;}

#inputDetail {position:fixed; left:20px; top:0px ; font-size:10px ; width:200px ; background-color:#999999; padding:10px  5px 5px 5px; }

#inputDetail dd {font-size:8px}

.searchForm {
color:#F39200;
 font-size:16px ; 
 padding: 10px 10px;
}
.phoneNumber{font-size:25px; color:#FFFFFF}

.bubbleInfo {
    position: relative;
	display:inline;
}

.popup {
    position: absolute;
    display: none; /* keeps the popup hidden if no JS available */
	z-index:1000;
}

.fader{opacity:0;display:none;}

.jqrollcontainer {
	width: 400px;
	background-color:#FFF;
	border: #CCC 1px solid;
	padding: 10px;
	margin: 50px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: 3px 3px 8px #999;
	-webkit-box-shadow: 3px 3px 8px #999;
	box-shadow: 3px 3px 8px #999;
}

.jqrollname {
	font-family: Arial, Helvetica, sans-serif;
	font-size:medium;
	font-weight: normal;
	color: #666;
	font-weight:bold;
}

.jqrollprice {
	color: #FF0000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}

.jqrolldesc {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #666;
}

.jqimg {
	padding:7px;
	width: 180px;
	float:left;
}

.jqrolltext {
	float: left;
	width: 200px;
}

.clear {
	clear:both
}

/* Footer */

h3 {
	color:#FF6600;
	font-size:13px;
	text-align: left;
}

h3 a{
	color:#FF6600;
	font-size:13px;
	text-align: left;
	text-decoration:underline;
}

h3 a:hover{
	color:#FF6600;
	font-size:13px;
	text-align: left;
	text-decoration:none;
}

.footersection {
	width: 930px;
	border-top: #FFDAB9 1px solid;
	margin: 0px auto;
	clear:both;
}

.footerreason {
	width: 300px;
	margin-left: 10px;
	float:left;
}

.footerreasonimg {
	float:left;
	display:inline;
	height: 80px;
}

.footerreason p {
	float:left;
	font-size:11px;
	display:inline;
	width: 180px;
	text-align:left;
	margin-left: 10px;
	margin-top: 0px;
	line-height:16px;
	color:#666;
}

#companyinfo {
	font-size:11px;
	color: #444;
	text-align:left;
	float: left;
}

.footernavlist{
	float:left;
	width: 20%;
	padding: 20px;
}

.footernavlist ul {
	color: #777;
	list-style:none;
	line-height:14px;
	text-align: left;
	font-size:10px;
}

.footernavlist ul a{
	color: #777;
}

.footernavlist ul a:hover{
	color: #FF6600;
}

#footertestimonial {
	float:right;
	width: 400px;
}

#footertestimonialimg {
	width: 50px;
	height: 60px;
	float: left;
	border:#FF6600 1px solid;
	}
	
#footertestimonial p {
	float:right;
	font-size:12px;
	text-align:left;
	margin-left:10px;
	line-height:16px;
	color:#444;
	width: 330px;
}

#footertestimonial p a {
	font-weight:bold;
}

#footertestimonialname {
	font-size:9px;
	color:#666;
}

#footerratingholder {
	width:500px;
	float:left;
}

.footerrating {
	width: 250px;
	height: 30px;
	float: left;
}

.footerratingstars {
	float: right;
	height: 30px;
	display: inline;
}

.footerrating p {
	font-size:11px;
	float: left;
	display: inline;
	text-align:right;
	width: 130px;
	color:#444;
}


/* Shop by brand */

.shopbrand {
		list-style:none;
			text-align: center;


}

.shopbrand li{
	list-style:none;
	display:inline;
	width: 149px;
	height: 180px;
	float:left;
		text-align: center;

}

.shopbrand li h2 a{
	color:#FF6600;
	font-size:12px;
	margin: auto;
	text-decoration:underline;
	position:relative;
	Top: 105px;
	text-align: center;

}

.shopbrand li h2 a:hover{
	text-decoration:none;
}

.shopbrand li img{
	margin:0px auto;
	border: 0px;
	height:100px;
	position:relative;
	top: -50px;
	
}
