@charset "utf-8";
/*html { height: 100%; margin-bottom: 1px; } Force vertical scrollbar , to prevent content from shifting horizontally */
body  {
	font: 100% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	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 */
	color: #000000;
	background: url(/i/page_bkg7.png) repeat;
	overflow: -moz-scrollbars-vertical;  /* Force vertical scrollbar in FF, to prevent content from shifting horizontally */}

.thrColFixHdr #container {
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	margin: 0 auto 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. */} 

.thrColFixHdr #header { 
	background: #000000 /* url(/i/header_bkg.png) no-repeat*/ ;  /* THIS SETS BACKGROUND COLOR OF HEADER DIVISION. I COMMENTED SOME CODE OUT SO IT DOESN'T USE THE PNG. THIS SETS COLOR FOR HEATHER WHERE NAV BAR IS */
	padding: 0 12px 0 0;  /* 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. */
	height: 130px;
} 
.thrColFixHdr #header a, .thrColFixHdr #header a img {
	border: none;
}
.thrColFixHdr #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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #header img#logo {
	float: left;
	margin: 0;
}


/* Suckerfish menu */

#nav, ul#nav, #nav ul { /* all lists */
	margin: 0 0 0 300px;  /* ORIGINAL 0 0 0 234 px */
	padding: 90px 0 0 0;
	list-style: none;
	font-size: 15px;
	line-height: 1;
	cursor: default;
	z-index: 1000;
}
html:first-child ul#nav { padding-top: 89px; } /* for Opera */
#nav ul {
	border: 1px solid #000;
}
#nav a {
	display: block;
	width: 8em;
	padding: 0.5em;
	background-color: #333333; /* THIS SETS BACKGROUND COLOR FOR NAV BAR (I.E. NAV DIVISION). IF LEFT TO TRANSPARENT, IT USES COLOR OF HEADER DIVISION */
	color: #F00;   /* SETS NAV BAR FONT TO RED */
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}

#nav a:hover, #nav a:focus
{
	background-color: #000000; /* THIS SETS BACKGROUND COLOR FOR NAV BAR (I.E. NAV DIVISION) WHEN HOVERING */
	color: #fff; /* HOVER CHANGES NAV BAR FONT TO WHITE */
}
#nav a.parent {
	background: url(/i/Down.gif) center left no-repeat;
	padding-left: 1em;
}
#nav a.parent:hover, #nav a.parent:active {
	background: url(/i/DownHover.gif) center left no-repeat;
}
#nav li { /* all list items */
	float: left;
	width: 10.5em; /* width needed or else Opera goes nuts */
	margin: 0;
	padding: 0;
}

/* Style the top level menu item for the curent page */ /* I DELEATED AND ADDED SOME CODE TO THIS SECTION TO MAKE IT WORK AS IT SHOULD */
 
body#sectionhome #nav li#home a, body#sectionproducts #nav li#products a, body#sectionwatcateg #nav li#watcateg a, body#sectioncontact #nav li#contact a {
	color: #fff;
	cursor: default;
}
body#sectionhome #nav li#home li a, body#sectionproducts #nav li#products li a, body#sectionwatcateg #nav li#watcateg li a, body#sectioncontact #nav li#contact li a {
	color: #F00;
	cursor: pointer;
	background-image: none;
}
body#sectionhome #nav li#home a:hover, body#sectionhome #nav li#home a:active,body#sectionproducts #nav li#products li a:hover, body#sectionproducts #nav li#products li a:active, body#sectionwatcateg #nav li#watcateg li a:hover, body#sectionwatcateg #nav li#watcateg li a:active, body#sectioncontact #nav li#contact a:hover, body#sectioncontact #nav li#contact a:active {
	color: #fff;
}

/* ------- */

#nav li ul { /* second-level lists */
	position: absolute;
	width: 8.2em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: 0;
	padding: 0;
	background-color: #000;
}
#nav li ul a {
	width: 7.2em; /*Width of dropdown menus */
}

/* Menu items that have a submenu have the class designation submenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
#nav li ul a.submenu {
	width: 7em;
	background-image: url(/i/Right.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
#nav li ul a.submenu:hover, #nav ul li a.submenu:active
{
	background-image: url(/i/RightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
#nav li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 8em;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
/* End of Suckerfish Menu */



.thrColFixHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 208px; /* padding keeps the content of the div away from the edges */
	background-color: #333;
	padding: 0 0 0 12px;
}
.thrColFixHdr #sidebar2 p.contactInfo {
	color: #6b6c6c;
	font-size: 14px;
	margin: 0;
}
.thrColFixHdr #sidebar2 p.contactInfo a:link, .thrColFixHdr #sidebar2 p.contactInfo a:visited {
	color: 6b6c6c;
	text-decoration: none;
}
.thrColFixHdr #sidebar2 p.contactInfo a:hover, .thrColFixHdr #sidebar2 p.contactInfo a:active {
	color: #fff;
	background-color: #AA7A38;
	text-decoration: none;
}
.shortcut {
	background-color: transparent;
	background-image: url(/i/shortcut_bkg.png);
	background-repeat: repeat-x;
	vertical-align: middle;
	height: 48px;
	width: 186px;
	padding: 3px 0 0 6px;
	color: #AA7A38;
	margin: 0 0 12px 0;
}
.shortcut h3 {
	color: #AA7A38;
	font-size: 14px;
	line-height: 21px;
	margin: 0;
}
.shortcut p, .shortcut p a:link, .shortcut p a:visited {
font-size: 11px;
margin: 0;
padding: 0;
line-height: normal;
color: #AA7A38;
text-decoration: none;
}
.shortcut p a:hover, .shortcut p a:active {
color: #ffc;
background-color: 6b6c6c;
text-decoration: none;
}


.thrColFixHdr #mainContent {
	margin: 0 1px 0 228px; /* 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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 12px 12px 12px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: 1px solid #000;
	border-right: 1px solid #000;
} 
.thrColFixHdr #mainContent #mainFeature { 
	width: 595px;
	height: 360px;
	margin: 0 0 12px 0;
	padding: 0;
} 
.thrColFixHdr #mainContent h1 { 
	color: #AA7A38;
	font-size: 24px;
	margin: 0;
} 
.thrColFixHdr #mainContent h2 { 
	color: #AA7A38;
	font-size: 18px;
	margin: 1em 0 0 0;
} 
.thrColFixHdr #mainContent p, .thrColFixHdr #mainContent ul, .thrColFixHdr #mainContent ol { 
	color: #AA7A38;
	margin: .5em 0;
	font-size: .95em;
}
.thrColFixHdr #mainContent ul {
	padding: 0 0 0 1em;
	list-style-type: square;
}
.thrColFixHdr #mainContent h2 + p, .thrColFixHdr #mainContent h2 + ul { 
	margin-top: 0;
}
.thrColFixHdr #mainContent p a, .thrColFixHdr #mainContent ul a { 
	color: #AA7A38;
	text-decoration: none;
	font-weight: bold;
} 
.thrColFixHdr #mainContent p a:hover, .thrColFixHdr #mainContent p a:active, .thrColFixHdr #mainContent ul a:hover, .thrColFixHdr #mainContent ul a:active { 
	background-color: #efd6ae;
} 

.thrColFixHdr #footer {
	padding: 0 12px 0 12px;
	background-color: #000;
	background-image: url(/i/ft_bkg2.png);
	background-repeat: repeat-x;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #AA7A38;
	height: 24px;
	color: #666;
	font-size: 10px;
} 
.thrColFixHdr #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: 4px 0 0 0;  /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColFixHdr #footer p a {
	color: #666;
	text-decoration: none;
}

.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;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

