@charset "UTF-8";
body 
{
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}

.oneColFixCtrHdr #container 
{
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #header 
{
	background: #fff; 
	padding: 140px 0 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. */
	background-image:url(img/header.png);	
	background-repeat:no-repeat;
	
}

.oneColFixCtrHdr #mainContent 
{
	/*padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #dad3cc;
	background-image:url(img/watermark.png);
	background-position:bottom center;
	background-repeat:no-repeat;	
}

.oneColFixCtrHdr #footer 
{
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#fff;
}

.oneColFixCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:12px;
	color:#666666;
}

.flinks 
{
	text-align:right;
	padding-right:50px;
	padding-top:3px;
	font-size:10px;
	color:#dad3cc;
}

.flinks a
{
	text-decoration:none;
	color:#dad3cc;
}



.oneColFixCtrHdr #footer a {
	color:#00FF00;
	text-decoration:none;	
}

.oneColFixCtrHdr #content 
{
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */

}

.oneColFixCtrHdr #content p
{
	font-size:12px;
	text-align:justify;
}

.oneColFixCtrHdr #content h1
{
	font-size:12px;
	text-align:right;
	color:#aca196;
	font-weight:normal;
	margin-bottom:20px;
}

.oneColFixCtrHdr #order 
{
	padding: 0 110px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:12px;
}

.oneColFixCtrHdr #order table
{
	border-collapse:collapse;
	background-image:url(img/menubg.png);
	
}

.oneColFixCtrHdr #order td
{
	text-align:center;

}

.oneColFixCtrHdr #order th
{
	text-align:center;
	font-weight:bold;
}

.oneColFixCtrHdr #order p
{
	font-size:10px;
	text-align:justify;
}


.oneColFixCtrHdr #tech 
{
	padding: 0 110px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:12px;
}

.oneColFixCtrHdr #tech p
{
	font-size:10px;
	text-align:justify;
}


.oneColFixCtrHdr #howto 
{
	padding: 0 110px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size:10px;
}


.oneColFixCtrHdr #howto td
{
	text-align:left;

}

.menu 
{
	width:980px; 
	height:54px; 
	position:relative; 
	z-index:100;
	/*border-right:1px solid #000;*/ 
	font-family:arial, sans-serif;
	background-image:url(img/menu.png);
	background-repeat:no-repeat;
}
/* hack to correct IE5.5 faulty box model */
* html .menu 
{
	width:980px; 
	w\idth:979px;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
{
	padding:0;
	margin:0;
	list-style-type:none;
}

.menu ul ul 
{
	width:108px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li 
{
	float:left;
	width:108px;
	position:relative;
	
}
/* style the links for the top level */
.menu a, .menu a:visited 
{
	display:block;
	font-size:14px;
	text-decoration:none; 
	color:#53534a; 
	width:108px; 
	height:54px;
	/*border:1px solid #000; 
	border-width:1px 0 1px 1px; 
	background:#09c; 
	padding-left:10px; 
	border-right: 1px solid #53534a;*/
	text-align:center;
	/*line-height:29px; 
	font-weight:bold;*/
	
}



/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited 
{
	width:108px; 
	w\idth:107px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited 
{
	background:#d4d8bd;
}
/* style the second level hover */
.menu ul ul a.drop:hover
{
	background:#c9ba65;
}
.menu ul ul :hover > a.drop 
{
	background:#c9ba65;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul 
{
	visibility:hidden;
	position:absolute;
	height:0;
	top:54px;
	left:0; 
	width:108px;
	border-top:1px solid #fff;
}
/* another hack for IE5.5 */
* html .menu ul ul 
{
	top:54px;
	t\op:55px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table 
{
	position:absolute; 
	top:0; 
	left:0; 
	border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited 
{
	/*background:#f1f1f1; */
	background-image:url(img/menubg.png);	
	background-repeat:repeat;
	color:#53534a;
	height:auto;
	line-height:1em;
	padding:5px 0px;
	text-align:center;
	width:108px;
	border-left:1px solid #fff;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;		
	/*border-width:0 1px 1px 1px;*/
	font-size:10px;
}
/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited 
{
	width:108px;
	w\idth:107px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
{
/*	color:#000; 
	background:#b7d186;*/
	text-decoration:underline; 
}
.menu :hover > a, .menu ul ul :hover > a 
{
/*	color:#000; 
	background:#b7d186;*/
	text-decoration:underline; 
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul
{
	visibility:visible; 
}

