@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background: #369;
	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: #FFFFFF;
}
a:link	{
	color: #FFFFFF;
	text-decoration: underline;
	font-weight:bold;
}

a:visited	{
	color: #ffffff;
	text-decoration: underline;
	font-weight:bold;

}

a:hover	{
	color: #369;
	text-decoration:none;
}

a:active	{
	color: #003;
	text-decoration: underline;
	font-weight:bold;
}

#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000033;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#logo { 
	width: 950px;
	height: 20px;
	float: left;
	background-color: #036; 
	padding: 0px;  /* 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. */
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
} 

#logo 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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#header { 
	width: 950px;
	background: #DDDDDD; 
	padding: 0px;  /* 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. */
} 
#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#menu { 
	width: 950px;
	height: 20px;
	background: #036; 
	text-align: center;
	margin: 0px 0px 0px 0px;
	padding: 0px;  /* 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. */
} 
#menu ul {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#links {
	width: 930px; 
	float: left; 
	background-color: #000033; 
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}



/*  multiple columns fit into a container for the main content area */
#column-container		{
	width: 680px;
	float: left;
	background-color:#003;
	padding: 0px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}

#column-container p {
	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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#column		{
	width: 290px;
	float: left;
	background-color:#003;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}
/*  End of multiple columns fit into a container for the main content area */


#gearlist	{
	width: 930px;
	float: left;
	background-color:#003;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
}

/* Product Review Sections */
#review	{
	width: 930px;
	float: left;
	background-color:#036;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#fff;
}

#product-container	{
	width: 930px;
	float: left;
	background-color:#ffffff;
	padding: 0px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
}

#product-name	{
	width: 910px;
	height: 20px;
	float: left;
	background-color:#369;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#fff;
	font-weight:bolder;
	font-size: 120%;
	
}

#product-picture	{
	width: 500px;
	float: left;
	background-color:#ffffff;
	padding: 0px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
}

#product-review	{
	width: 410px;
	float: left;
	background-color:#ffffff;
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#003;
}

#product-gap	{
	width: 930px;
	height: 10px;
	float: left;
	background-color:#036;
	padding: 0px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#000000;
}

/* Product Review Sections */




#footer1 { 
	width: 930px;
	float: left;
	background-color:#003; 
	padding: 10px;
	text-align: left;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
} 


#footer2 { 
	width: 950px;
	float: left;
	background-color:#036;
	text-align: center;
	font-family:Arial, Helvetica, sans-serif;
	color:#ffffff;
	/*display: none; */
} 








/* Horizontal - Menu */
ul#menu-navlist
{
margin-left: 0;
padding-left: 0;
white-space: nowrap;
}

#menu-navlist li
{
display: inline;
list-style-type: none;
}

#menu-navlist a { 
padding: 0px 4px 2px 4px; 
}

#menu-navlist a:link, #menu-navlist a:visited	{
	color: #fff;
	background-color: #036;
	text-decoration: none;
	font-weight:normal;
}

#menu-navlist a:hover	{
	color: #fff;
	background-color: #369;
	text-decoration: none;
}







/* Vertical - Links */
#links-navcontainer { width: 250px; }

#links-navcontainer ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}

#links-navcontainer a
{
display: block;
padding: 2px 2px 2px 10px;
width: 225px;
background-color: #036;
border: 0px solid #fff;
}

#links-navcontainer a:link, #links-navlist a:visited
{
color: #fff;
text-decoration: none;
	font-weight:normal;
}

#links-navcontainer a:hover
{
background-color: #369;
color: #fff;
}








/*  gallery style 2  */



#menu2 {position:relative; top:10px; left:10px; width:220px; background-color:#003; z-index:100;}
#menu2 a.p1, #menu a.p1:visited {display:block; width:200px; height:150px; text-decoration:none; background-color:#age; top:0; left:0; border:0;}
#menu2 a img {border:5px solid #fff; margin:0px;}
#menu2 a.p1:hover {text-decoration:none; background-color:#fff; color:#age;}
#menu2 a .large {display:block; position:absolute; width:0; height:0; border:0; top:0; left:0;}
#menu2 a.p1:hover .large {display:block; position:relative; top:-280px; left:220px; width:680px; height:510px; border:10px solid #fff;}

#info {z-index:100; height:22em;}

/*  gallery style 2  */
