/*
  $Id: stylesheet.css,v 1.56 2003/06/30 20:04:02 hpdl Exp $

  osCommerce, Open Source E-Commerce Solutions

  Copyright (c) 2003 osCommerce

  Released under the GNU General Public License
*/

/* Sample vertical fly-out menu */

/* The following is *A SAMPLE ONLY* and is based off the "suckerfish"
   drop-down menu. Is it provided only as an example of what is possible
   using CSS and unordered lists.

   See: http://www.htmldog.com/articles/suckerfish/dropdowns/example/bones3.html
   and : http://www.htmldog.com/articles/suckerfish/dropdowns/

   For best effect, you'll want to set the config to render the whole tree,
   and you may want to add some before/after html to clear floats, etc...

   Note: to overcome MSIE's deficiency of not recognizing elements besides the 
   anchor tag for the hover event, add the following JS to your template header

<script type="text/javascript"><!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]></script>


*/



#nav, #nav ul { /* all lists */
	float: left;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 14px;

}

#nav a {
    display: block;
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #95cd0b;
  font-weight : bold;
}

#nav li { /* all list items */
	float: left;
    display: block;
 /* width needed or else Opera goes nuts */
	
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em;
    background: #ffffff;
	width: 180px;
	height:14px ;
	list-style: disc;
	/* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li{
	width: 180px;
	height: 16px;	
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;

}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	display:block;
	top: 230px;

}

	
/* Menu items with subcategories */	
#nav a.daddy {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #95cd0b;
  height: 16px;
  font-weight : bold; 
}

/* Selected items with subcategories */	
#nav li.selected {
  color: #e16ced;
	float: left;
}

.boxText { font-family: Verdana, Arial, sans-serif; font-size: 10px; color: #3bb000; }
.errorBox { font-family : Verdana, Arial, sans-serif; font-size : 10px; background: #ffb3b5; font-weight: bold; }
.stockWarning { font-family : Verdana, Arial, sans-serif; font-size : 10px; color: #cc0033; }
.productsNotifications { background: #f2fff7; }
.orderEdit { font-family : Verdana, Arial, sans-serif; font-size : 10px; color: #70d250; text-decoration: underline; }

BODY {
  background: #ffffff;
  color: #088000;
  margin: 0 auto;
}

A {
  color: #3bb000;
  text-decoration: underline;
}

A:hover {
  color: #ff6600;
  text-decoration: underline;
}

FORM {
	display: inline;
}

TR.header {
  background-image: url(images/template/head.jpg);
  background-repeat: no-repeat;  
}

TR.headerNavigation {
  background-image: url(images/template/heading_menu.jpg);
  background-repeat: repeat-x;  
  height: 40px;
}

TD.headerNavigation {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #ffffff;
  font-weight : bold;
  height: 40px;
}


TR.headerMenu , TD.headerMenu{
  background-image: url(images/template/heading_neck.jpg);
  background-repeat: repeat-x;  
  height: 40px;  
}

TR.headerMenu  a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #95cd0b;
  height: 40px;
  font-weight : bold;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 20px;  
  text-decoration: underline;  
}

TR.headerMenu  a:hover{
  color: #c636ef;  
}

TR.headerinf , TD.headerinf{
  background-image: url(images/template/info_bk.gif);
  background-repeat: repeat-x;  
  height: 40px;  
}

TR.headerinf  a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #e27a00;
  height: 40px;
  font-weight : bold;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;  
  text-decoration: underline;  
}

TR.headerinf  a:hover{
  color: #c636ef;  
}


A.headerNavigation { 
  color: #FFFFFF; 
}

A.headerNavigation:hover {
  color: #ffffff;
}

TR.headerError {
  background: #ff0000;
}

TD.headerError {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  background: #ff0000;
  color: #ffffff;
  font-weight : bold;
  text-align : center;
}

TR.headerInfo {
  background: #00ff00;
}

TD.headerInfo {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  background: #00ff00;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

#sock {
  background: #84b690;
  background-image: url(images/template/sock.jpg);
  background-repeat: repeat-x;
  height: 40px;
}

TR.footer {
  background: #84b690;
}

.footers {
  background: #8ab116;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;
}

.footers a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;
}

.footers a:hover{
  color: #8c0eac;
}

.footer_1 {
  background-image: url(images/template/foot_bk.gif);
  background-repeat: repeat-x;
  height: 69px;
}

.footer_2 {
  background-image: url(images/template/foot_img.gif);
  background-repeat: no-repeat;
  background-position: right;
  height: 69px; 
}

.box_cart{
  background-image: url(images/template/box_cart.gif);
  background-repeat: no-repeat;
  width: 200px;
  height: 120px;
}

.box_cart a{
  margin-bottom: 65px;
  margin-right: 15px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 10px;
  color: #8c0eac;
  font-weight: bold;  
}


.box_new {
  background-image: url(images/template/box_new.gif);
  background-repeat: no-repeat;
}


.box_new a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 10px;
  color: #8c0eac;
  font-weight: bold;
}

TD.footer {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  background: #84b690;
  color: #ffffff;
  font-weight: bold;
}

.infoBox {

}

.infoBoxContents {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

.infoBoxNotice {
  background: #FF8E90;
}

.catbox1, .subcatbox1 {
  background-image: url(images/template/categories1.gif);
  background-repeat: no-repeat;
  height: 215px;
  width: 400px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;    
}

#cart_head {
  background-image: url(images/template/button_cart.gif);
  background-repeat: no-repeat;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #8c0eac;    
}

.cat_head {
  background-image: url(images/template/cat_head.gif);
  background-repeat: no-repeat;
  height: 300px;
  width: 600px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #ffffff;    
}

.catbox1 a, .subcatbox1 a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 15px;
  color: #8c0eac;
  font-weight: bold;
  margin-right: 25px;  
}

.catbox2, .subcatbox2 {
  background-image: url(images/template/categories2.gif);
  background-repeat: no-repeat;
  height: 215px;
  width: 400px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;    
}

.catbox2 a, .subcatbox2 a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 15px;
  color: #8c0eac;
  font-weight: bold;
  margin-right: 25px;  
}

.login_b {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #8c0eac;
  font-weight: bold;
}

.login_b a{
  color: #ffffff;
  font-weight: bold;
}

.login_box {
  background-image: url(images/template/bk_login.gif);
  background-repeat: no-repeat;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #8c0eac;
  font-weight: bold;
}

.login_box a{
  color: #000000;
  font-weight: bold;
}

.search_box {
  background-image: url(images/template/bk_search.gif);
  background-repeat: no-repeat;
}

.catbox3, .subcatbox3 {
  background-image: url(images/template/categories3.gif);
  background-repeat: no-repeat;
  height: 215px;
  width: 400px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;    
}

.catbox3 a, .subcatbox3 a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 15px;
  color: #ffffff;
  font-weight: bold; 
  margin-right: 25px;  
}

.subcatbox1 {
  background-image: url(images/template/subcategories1.gif);
  background-repeat: no-repeat;   
}

.subcatbox2 {
  background-image: url(images/template/subcategories2.gif);
  background-repeat: no-repeat;   
}

.subcatbox3 {
  background-image: url(images/template/subcategories3.gif);
  background-repeat: no-repeat;   
}

.scroller {
  margin-bottom: 20px;
}

.infoBoxNoticeContents {
  background: #FFE6E6;
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

.info_desc {

  color: #8c0eac;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
}

TD.infoBoxHeading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  background: #bbc3d3;
  color: #ffffff;
}

TD.infoBox, SPAN.infoBox {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

TR.accountHistory-odd, TR.addressBook-odd, TR.alsoPurchased-odd, TR.payment-odd, TR.productListing-odd, TR.productReviews-odd, TR.upcomingProducts-odd, TR.shippingOptions-odd {

}

TR.accountHistory-even, TR.addressBook-even, TR.alsoPurchased-even, TR.payment-even, TR.productListing-even, TR.productReviews-even, TR.upcomingProducts-even, TR.shippingOptions-even {

}

TABLE.productListing {
border-spacing: 1px;
}

TR.productListing-odd {
  background-image: url(images/template/prod_even.gif);

  background-position: center;
  height: 300px;
  width: 250px;
  padding-bottom: 0;
}

TR.productListing-odd a{
  font-family: Tahoma, Arial, sans-serif;
  margin-top: 15px;
  font-size: 11px;
  font-weight: bold;  
  color: #8c0eac;
}

TR.productListing-even {
  background-image: url(images/template/prod_even.gif);
  background-repeat: repeat-x;
  background-color: #cccccc;
  height: 300px;
  width: 250px;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #8c0eac;
  padding-bottom: 0;
}

TR.productListing-even a{
  font-family: Tahoma, Arial, sans-serif;
  margin-top: 15px;
  font-size: 11px;
  font-weight: bold;  
  color: #8c0eac;
}

.productListing-heading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  background: #FFFFFF;
  color: #FFFFFF;
  font-weight: bold;
}

TD.productListing-data {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #3bb000;
  padding-bottom: 0;  
}

A.pageResults {
  color: #0000FF;
}

A.pageResults:hover {
  color: #0000FF;
}

TD.pageHeading, DIV.pageHeading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #8c0eac;
}

.category_desc {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  margin-left: 50px;
  margin-right: 35px;
  margin-top: 30px;
  color: #ffffff;
}

.p_info {
  background-image: url(images/template/prod_info.gif);
  background-repeat: no-repeat; 
  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #8c0eac;
}

.p_info p{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  margin-left: 20px;
}
.p_info a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #8ab116;
}

.p_info_sub {

  font-family: Tahoma, Arial, sans-serif;
  font-size: 16px;

  color: #8c0eac;
}

.p_info_sub p{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #ffffff;
  margin-left: 20px;
  padding-right: 20px;
}
.p_info_sub a{
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  color: #8ab116;
}

.category_head {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #8c0eac;
  margin-left: 40px;
  margin-top: 50px;
}

.hidden_text {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #8c0eac;
}

.listing_result {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #8ab116;
}

.listing_result a{
  color: #8ab116;
  text-decoration: underline;  
}

.listing_result a:hover{
  color: #acde17;
  text-decoration: underline;  
}

TR.subBar {
  background: #f4f7fd;
}

TD.subBar {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #000000;
}

TD.main, P.main {
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.5;
}

TD.smallText, SPAN.smallText, P.smallText {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
}

TD.smallText a{ color: #3bb000; }
TD.smallText a:hover{ color: #ff6600; }

SPAN.smallText a{ color: #3bb000; }
SPAN.smallText a:hover{ color: #ff6600; }

P.smallText a{ color: #3bb000; }
P.smallText a:hover{ color: #ff6600; }

TD.smallText_ft {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #ffffff;
}

TD.smallText_ft  a{
  color: #ffffff;
}

TD.smallText_ft  a:hover{
  color: #8c0eac;
}

TD.accountCategory {
  font-family: Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #aabbdd;
}

TD.fieldKey {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

TD.fieldValue {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

TD.tableHeading {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

SPAN.newItemInCart {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #ff0000;
}

CHECKBOX, INPUT, RADIO, SELECT {
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

TEXTAREA {
  width: 100%;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

SPAN.greetUser {
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #f0a480;
  font-weight: bold;
}

TABLE.formArea {
  background: #f1f9fe;
  border-color: #7b9ebd;
  border-style: solid;
  border-width: 1px;
}

TD.formAreaTitle {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
}

SPAN.markProductOutOfStock {
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #c76170;
  font-weight: bold;
}

SPAN.productSpecialPrice {
  font-family: Verdana, Arial, sans-serif;
  color: #ff0000;
}

SPAN.errorText {
  font-family: Verdana, Arial, sans-serif;
  color: #ff0000;
}

.moduleRow { }
.moduleRowOver { background-color: #D7E9F7; cursor: pointer; cursor: hand; }
.moduleRowSelected { background-color: #E9F4FC; }

.checkoutBarFrom, .checkoutBarTo { font-family: Verdana, Arial, sans-serif; font-size: 10px; color: #8c8c8c; }
.checkoutBarCurrent { font-family: Verdana, Arial, sans-serif; font-size: 10px; color: #000000; }

/* message box */

.messageBox { font-family: Verdana, Arial, sans-serif; font-size: 10px; }
.messageStackError, .messageStackWarning { font-family: Verdana, Arial, sans-serif; font-size: 10px; background-color: #ffb3b5; }
.messageStackSuccess { font-family: Verdana, Arial, sans-serif; font-size: 10px; background-color: #99ff00; }

/* input requirement */

.inputRequirement { font-family: Verdana, Arial, sans-serif; font-size: 10px; color: #ff0000; }
    TD.category_header, DIV.category_header {
       font-family    : Verdana, Arial, sans-serif;
       font-size      : 1.5em;
       font-weight    : bold;
       color          : Black;
       margin-top     : 1.82em;
       margin-bottom  : 1.82em;
       line-height    : 1.5;
    }

    TD.category_sub_header, DIV.category_sub_header {
       font-family    : Verdana, Arial, sans-serif;
       font-size      : 1em;
       margin-top     : 1em;
       margin-bottom  : 1em;
    }
    TD.category_sub_desc, DIV.category_sub_desc {
       font-family    : Verdana, Arial, sans-serif;
       font-size      : 0.7em;
       background     : #DCDCDC;
       margin-bottom  : 1em;
    }
ul.sitemap {
color: #ff0000;
}

#cart {
  background: #ffffff;
  background-image: url(images/template/menu_enquiry.gif);
  background-repeat: no-repeat;
  height: 100px;
  width: 180px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

#wish {
  background: #ffffff;
  background-image: url(images/template/menu_wishlist.gif);
  background-repeat: no-repeat;
  width: 180px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

#login{
  background: #ffffff;
  background-image: url(images/template/menu_login.gif);
  background-repeat: no-repeat;
  width: 180px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

#information{
  background: #ffffff;
  background-image: url(images/template/menu_information.gif);
  background-repeat: no-repeat;
  width: 180px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

#search{
  background: #ffffff;
  background-image: url(images/template/menu_search.gif);
  background-repeat: no-repeat;
  width: 180px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

#scrolling{
  float: left;
  width: 420px;
}




.wish {
  font-family: Verdana, Arial, sans-serif;
  font-size: 10px;
  color: #3bb000;
}

.wish  a{
  color: #3bb000;
}

.wish  a:hover{
  color: #ff6600;
}

#cat {
  background-image: url(images/template/cat.jpg);
  background-repeat: no-repeat;
  width: 250px;
}

#infopg{
  background-image: url(images/template/info.jpg);
  background-repeat: no-repeat;
  width: 250px;
}

.infopg {
  display:block;
  width: 150px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #3bb000;
}

.cat {
  display:block;
  width: 150px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #3bb000;
  border-bottom: solid 1px #ff6600;
}

.listname {
   width:150px;
   border:0;
   padding:0;
   margin:0;
}

/*-------------------------------------*/
/*   Horizontal Drop-Down Menu Style   */
/*-------------------------------------*/

.horbar	{   /* Color of main horizontal menubar and border */

}

.horizitem	{          /* Behaviour of main horizontal menu items, leave as is for proper operation */
	float: left;
	white-space: nowrap;
}

.horizitem a {              /* Font style, size of submenu items */
	text-decoration: none;
	position: relative;	
	display: block;	
}

.horizitem a:link, .horizitem a:visited 	{      /* Font style & color of main menu items */

	text-decoration: none;
}

.horizitem a:hover	{       /* Font style & color, background menu color of main menu item when hovered over */
	color: #ffffff;
	text-decoration: none;
}

.horizitem a:active	{       /* Font style & color, background menu color of main menu item when clicked */
	color: #ffff00;
	text-decoration: none;
}

.horizsubmenu	{       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
}

.horizsubframe	{      /* Color of submenu item and border */
	background-color: #ffffff;
	
	position: relative;
	display: block;	
}

.horizsubitem	{       /* Behaviour of sub-menu items - leave as is for proper operation of submenus */
	text-align: left;
	white-space: nowrap;
}

.horizsubitem a {            /* Font style, size of submenu items */
	  font-family: Tahoma, Arial, sans-serif;
  font-size: 12px;
  color: #95cd0b;
  font-weight : bold;
	text-decoration: none;
	position: relative;
	display: block;	
}

.horizsubitem a:link, .horizsubitem a:visited	{       /* Font color, style of submenu items */
	
	text-decoration: none;
}

.horizsubitem a:hover	{      /* Font color, style, background submenu color of submenu item when hovered over */
	color: #8c0eac;
	background-color: #95cd0b;
	text-decoration: none;
}

.horizsubitem a:active	{      /* Font color, style, background submenu color of submenu item when clicked */
	color: #ffff00;		
	text-decoration: none;
}

.horizsubitem .horizfwdarr, .horizitem .horizfwdarr	{      /* Positioning of right arrow for submenus */
	position: absolute;
	top: 5px;
	right: 8px;
}

.dmselected {   /* Style override for selected category tree */
		font-weight: bold;
}

.horbar .dmselected {   /* Style override for selected root category */

}

