body, h1, h2, h3, h4, h5, h6, p, ol, ul, form, blockquote {
	padding: 0;
	margin: 0;
	}
	
a{
	text-decoration: none;
	}
	
a img{
	border: none;
	}

h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #16214B;
	}
	
h1 a{
	text-decoration: underline;
	}
	
h1 a:hover{
	text-decoration: none;
	}		
	
h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #990000;
	}	
	
h3{
	margin-top: 10px;
	}	
	
h4{
	color: #FFFFFF;
	font-size: 14px;
	background-image: url(images/linkBackground.jpg);
	text-align: center;
	text-transform: none;
	background-repeat: no-repeat;
	height: 21px;
	width: 177px;
	padding: 9px 0 0 0;
	margin: 8px 0 0 0;
	font-family: Arial, Helvetica, sans-serif;
	}
		
h5{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	list-style-type: none;
	text-align: center;
	background-image: url(images/servicesBackground.jpg);
	background-repeat: no-repeat;
	height: 25px;
	width: 200px;
	padding-top: 8px;
	background-position: center top;
	color: #FFFFFF;
	text-transform: uppercase;
	background-color: #CCCCCC;
	margin: 0px;
	}
	
h6{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #333333;
	}	
	
body{
	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: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-image: url(images/background_gradient.jpg);
	background-repeat: repeat-x;
	background-position: center top;
	background-color: #ffffff;
	}
	
body a{
	color: #990000;
	font-weight: bold;
	text-decoration: underline;
	}
	
body a:hover{
	color: #2678B7;
	font-weight: bold;
	text-decoration: none;
	}
	
#backgroundImage  {
	background-image: url(images/background.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	float: left;
	width: 100%;
	}
	
#container {
	text-align: left;
	width: 987px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
	}	
	
#mainNav li{
	background-image: url(images/linkButton_Background.jpg);
	background-repeat: repeat-y;
	margin: 0px;
	}		

#mainNav a{
	font-family: Arial, Helvetica, sans-serif;
	color: #4b1c17;
	font-size: 0.95em;
	text-transform: uppercase;
	text-decoration: none;
	display: block;
	width: 152px;
	padding-top: 7px;
	padding-right: 0px;
	padding-bottom: 7px;
	padding-left: 25px;
	}
	
#mainNav a:hover{
	font-weight: bold;
	color: #4b1c17;
	background-color: #e2a9a9;
	background-image: url(images/go.png);
	background-repeat: no-repeat;
	background-position: left center;
	}
			

/*-------------------------------------------------------


				      Navigation


-------------------------------------------------------*/


.menu {
	width: 177px;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */
	}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
	}

.menu li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;		/* thus we need to apply explicit z-index here... */
	}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
	}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
	}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
	}

/* -- float.clear --
	force containment of floated LIs inside of UL */

.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
	}
	
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
	}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
	}


/*-------------------------------------------------------


				    Navigation


-------------------------------------------------------*/


.menu {
	width: 177px;
	}

.menu ul {
	width: 177px;
	}

.menu a {
	text-decoration: none;
	display: block;
	}
	
.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
	}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	left: 94%;
	}
	
#moreLinks{
	background-image: url(images/moreLinks.jpg);
	background-repeat: no-repeat;
	background-position: right center;
	}	
	

/*-------------------------------------------------------


					Header


-------------------------------------------------------*/
	
#header {
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	height: 120px;
	width: 987px;
	padding: 0;
	margin: 0px;
	} 
	
#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 */
	}
	
#logo{
	height: 102px;
	width: 172px;
	margin-left: 27px;
	padding-top: 17px;
	}
	
/*-------------------------------------------------------


					Main Content


-------------------------------------------------------*/

#wrapper1 {
	margin-left: 28px;
	width: 920px;
	}	
	
#wrapper1_background {
	background-image: url(images/sidebar1Background.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	float: left;
	}		
		
#wrapper2 {
	background-image: url(images/sidebar1Background.jpg);
	background-repeat: repeat-y;
	background-color: #FFFFFF;
	float: right;
	width: 743px;
	background-position: right top;
	vertical-align: top;
	}
	
#mainWrapper {
	width: 566px;
	float: left;
	}			
	
.rotatingPics{
	background-color: #333333;
	height: 232px;
	width: 566px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #999999;
	text-align: center;
	}
	
.rotatingPics p{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #999999;
	text-align: center;
	padding-top: 105px;
	}
	
.rotatingPics a{
	color: #CCCCCC;
	}
	
.rotatingPics a:hover{
	color: #FFFFFF;
	text-decoration: none;
	}
	

#mainContent  {
	background-color: #ffffff;
	vertical-align: top;
	text-align: justify;
	width: 516px;
	margin-top: 25px;
	margin-right: 25px;
	margin-bottom: 25px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 25px;
	float: left;
	}
	
#mainContent-note{
	clear: both;
	float: left;
	margin-bottom: 25px;
	}
	
#mainContent ul, ol{
	padding-left: 40px;
	margin-top: 5px;
	}		
	
#mainContent li{
	margin-bottom: 4px;
	}		
	
#servicesWrapper{
	float: right;
	width: 200px;
	margin-left: 20px;
	}	
		
.services{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-align: left;
	padding-right: 10px;
	width: 190px;
	}
	
.servicesBox{
	background-color: #CCCCCC;
	margin-bottom: 15px;
	width: 200px;
	}
	
.services ul{
	padding-bottom: 15px;
	}	
	
.services li{
	list-style-position: outside;
	list-style-type: disc;
	}	
#headerOverlap{
	width: 177px;
	background-image: url(images/bottomLogo.jpg);
	background-repeat: repeat-y;
	height: 19px;
	position: relative;
	display: inline-block;
	background-position: top;
	}
	
#sidebar1{
	float: left; /* since this element is floated, a width must be given */
	width: 177px;
	background-image: url(images/sidebar1Background.jpg);
	background-repeat: repeat-y;
	background-position: left top;
	}
	
#quoteBox{
	font-family: "Arial Black", sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #ACD6FF;
	margin-top: 25px;
	margin-right: 10px;
	margin-bottom: 25px;
	margin-left: 10px;
	background-color: #173A74;
	padding: 10px;
	text-align: center;
	}
	
#quoteBox p{
	font-weight: normal;
	color: #A1C5FF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: italic;
	text-align: left;
	}		
	
#sidebar2  {
	background-color: #EBEBEB;
	background-image: url(images/sidebar1Background.jpg);
	background-repeat: repeat-y;
	background-position: right top;
	width: 177px;
	float: right;
	}
	
#sidebar2  p,h3 {
	margin: 0px 15px;
	text-align: left;
	}	

.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;
	}

.rightPics {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	padding-top: 25px;
	}
	
.floatLeft{
	float: left;
	}	
	
.floatRight{
	float: right;
	clear: left;
	}
	
#certificationLogos {
	padding-top: 50px;
	padding-right: 10px;
	padding-bottom: 25px;
	width: 285px;
	float: left;
	}
	
#ulLogo{
	float: left;
	text-align: center;
	}

#nsfLogo{
	float: right;
	}
#contactBox{
	width: 155px;
	margin-right: auto;
	margin-left: auto;
	background-color: #8CBEEA;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 0px;
	padding-left: 0px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	}
.contactText{
	font-family: Arial, Helvetica, sans-serif;
	text-transform: capitalize;
	color: #1E3F8D;
	font-weight: bold;
	text-align: left;
	width: 100px;
	padding-left: 50px;
	padding-top: 8px;
	}	
	
#phone{
	float: left;
	height: 25px;
	width: 25px;
	background-image: url(images/phone_email.jpg);
	background-repeat: no-repeat;
	padding-left: 15px;
	background-position: 15px 0px;
	}
	
#email{
	background-image: url(images/phone_email.jpg);
	background-repeat: no-repeat;
	background-position: 15px -25px;
	height: 25px;
	width: 25px;
	float: left;
	clear: left;
	padding-left: 15px;
	}	
	
#drinkNplate{
	background-image: url(images/drinkNplate.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 643px;
	width: 566px;
	margin-top: 25px;
	margin-bottom: 25px;
	clear: both;
	}
	
#cordGrip{
	background-image: url(images/cordGrip.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 643px;
	width: 566px;
	margin-top: 25px;
	margin-bottom: 25px;
	}			


/*-------------------------------------------------------


					Shopping Cart


-------------------------------------------------------*/

#cart{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	background-image: url(images/cart.jpg);
	background-position: left center;
	height: 20px;
	background-repeat: no-repeat;
	float: right;
	width: 130px;
	padding-left: 40px;
	padding-top: 15px;
	margin-top: 3px;
	}
	
.cartHeader{
	background-color: #990000;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 35px;
	padding-bottom: 10px;
	padding-left: 10px;
	width: 471px;
	float: left;
	}
	
.cartHeader h1{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #FFFFFF;
	}	
	
.cartHeader p{
	color: #CC9999;
	}		
		
.product-wrap{
	float: left;
	width: 250px;
	height: 100px;
	margin-bottom: 20px;
	margin-top: 15px;
	}

#cartColumn1{
	width: 255px;
	float: left;
	}	

#cartColumn2{
	width: 255px;
	float: right;
	}
	
.productPic{
	height: 100px;
	width: 100px;
	float: left;
	}
	
.randomPic-wrap{
	float: left;
	width: 250px;
	margin-bottom: 20px;
	margin-top: 15px;
	}

.randomPic{
	width: 250px;
	}	
	
.aquariumPic-wrap{
	float: left;
	width: 516px;
	margin-bottom: 20px;
	margin-top: 15px;
	}

.aquariumPic{
	width: 516px;
	}	
	
#anchorLinks{
	height: 35px;
	width: 493px;
	float: left;
	padding-left: 25px;
	display: inline;
	}	
	
#sports{
	height: 17px;
	padding-top: 18px;
	background-position: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	float: right;
	margin-left: 25px;
	}	
	
#square{
	height: 17px;
	padding-top: 18px;
	background-position: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	float: right;
	}
	
#display{
	height: 17px;
	padding-top: 18px;
	background-position: left bottom;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	float: right;
	margin-left: 25px;
	}	
	
#aquarium{
	background-repeat: no-repeat;
	height: 17px;
	padding-top: 18px;
	background-position: left bottom;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	float: right;
	margin-left: 25px;
	}	
	
.productText{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	width: 150px;
	float: right;
	}	
						

.catalogWrapper{
	width: 185px;
	float: right;
	}
	
.catalogButton{
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	height: 75px;
	width: 185px;
	margin-bottom: 25px;
	}
	
.catalogButton    a {
	display: block;
	padding-top: 25px;
	text-decoration: none;
	color: #000033;
	background-image: url(images/LINK%20BUTTONS/catalog_normal.jpg);
	background-repeat: no-repeat;
	height: 60px;
	text-align: center;
	}
	
.catalogButton  a:hover {
	background-image: url(images/LINK%20BUTTONS/catalog_over.jpg);
	background-repeat: no-repeat;
	color: #173A74;
	}
	
#newPack{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #0066FF;
	float: right;
	text-transform: uppercase;
	}
	
#displayCases{
	width: 515px;
	margin-bottom: 20px;
	margin-top: 15px;
	float: left;
	}	
	
#displayCases .product-wrap{
	width: 415px;
	height: 100px;
	margin-bottom: 20px;
	margin-top: 15px;
	border: 1px solid #CCCCCC;
	margin-left: 50px;
	float: left;
	}
	
#displayCases .dieCastPic{
	height: 100px;
	width: 150px;
	float: left;
	}
	
#displayCases .productText{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	float: right;
	margin-top: 8px;
	width: 250px;
	}	
	
#displayCases .sport-wrap{
	width: 415px;
	height: 90px;
	margin-bottom: 20px;
	margin-top: 15px;
	border: 1px solid #CCCCCC;
	margin-left: 50px;
	float: left;
	}

#displayCases .sportPic{
	height: 90px;
	width: 90px;
	float: left;
	}
	
#displayCases .sportText{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	text-align: left;
	float: right;
	margin-top: 5px;
	width: 310px;
	}						
	
	
/*-------------------------------------------------------


						Footer


-------------------------------------------------------*/


#footer {
	padding: 0px;
	height: 241px;
	vertical-align: bottom;
	text-align: center;
	background-repeat: repeat;
	background-color: #b23636;
	clear: both;
	position: relative;
	}

#footerContentLeft {
	color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	float: left;
	text-align: left;
	clear: both;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	}
	
#footerContentLeft a{
	color: #8CBEEA;
	text-decoration: underline;
	}
	
#footerContentLeft a:hover{
	color: #3399FF;
	}			

#footerWrapper {
	width: 920px;
	height: 125px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-right: 12px;
	padding-bottom: 0px;
	padding-top: 45px;
	}
	
#footerLogo-wrap{
	height: 107px;
	}
	
#footerLogo{
	height: 107px;
	width: 166px;
	margin-right: auto;
	margin-left: auto;
	}	

#ks a{
	text-indent: -9999px;
	background-image: url(images/ks_Logo.jpg);
	background-repeat: no-repeat;
	height: 92px;
	width: 86px;
	display: block;
	float: right;
	margin-left: 92px;
	}
	
#ks a:hover{
	background-position: 0 -92px;
	background-image: url(images/ks_Logo.jpg);
	background-repeat: no-repeat;
	}	

#validWrapper{
	padding-top: 0px;
	width: 250px;
	background-position: center;
	float: right;
	clear: right;
	}	

.validIcons{
	padding: 0px 8px 10px 0px;
	float: right;
	clear: right;
	}