@charset "utf-8";
/* CSS Document */

body  {
	font: 80% 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 */
	color: #000000;
}
.productpages #container { 
	width: 734px;
	background: #FFFFFF;
	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. */
	padding: 15px 10px; /* top and bottom padding create visual space within this div  */
} 

.productpages #productimage {
	float: left; 
	width: 200px; /* since this element is floated, a width must be given */
	padding: 15px 15px 0 0; /* top and bottom padding create visual space within this div  */
}
.productpages #productimage h3, .productpages #productimage p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.productpages #mainContent { 
	margin: 0 10px 0 20px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
} 

h1 {
	text-align: left;
	font-size: 12pt;
	margin: 10px 3px;
	}

.footer { 
	padding: 0 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	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 */
	font-size: 8pt;
}

/* Miscellaneous classes for reuse */
.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;
}

.sevenpoint {
	font-size: 7pt;
}

/* the css dropdown menu*/
#menu ul {
list-style: none;
width:175px;
margin: 0 -5px;
padding: 0;
z-index:1;
}

#menu a, #menu h2 {
display: block;
margin: 0;
padding: 3px 0px 3px 5px;
width:auto;
}

#menu h2 {
font: bold 10pt arial, helvetica, sans-serif;
color: #000fff;
background: #cccccc;
}

#menu a {
font: bold 10px arial, helvetica, sans-serif;
border-bottom: 1px solid #fff;
color: #000fff;
background: #ccc;
text-decoration: none;
}

#menu a:hover {
color: #000;
background: #ddefff;
}

#menu li {position: relative;}

#menu ul ul {
position: absolute;
left: 149px;
top: 0;
display: none;
z-index: 500;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

img.menuarrow { 
    float: right; 
    margin:-15px 5px 0 0;
    }

