@charset "utf-8";
body  {
	font: 100% Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}
.page #top { 
	width: 100%;  /* this will create a container 80% of the browser width */
	height:0px;
	background-image:url(pics/page/backgound-top.png);
/*	background:#FFFFFF;*/
} 
.page #container { 
	width: 100%;
/*	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. */
} 
.page #menu { 
	width: 100%;
	height:50px;
	background-image:url(pics/page/backgound-menu.png);
	text-align:right;
/*	background: #DDDDDD; 
	padding: 0 10px;  /* 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. */
} 
.page #menu a{
	width:150px;
	height:50px;
	padding-left:20px;
	padding-right:20px;
	text-align:center;
	vertical-align:baseline;
	font-size:14px;
	color:#FFFFFF;
	border-right: 1px solid #9c9c9c;
	clear:none;
	line-height: 50px;
	text-decoration:underline;
	cursor:pointer;
}
.page #mainContent {
	width:726px;
	text-align:left;
} 
.page #mainContent h1 {
	font-size:28px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin: 0;
	padding: 0px 0;
}
.page #mainContent h2{
	font-size:22px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin: 0;
	padding: 0px 0;
	color:#444444;
}
.page #mainContent li{
	font-size:12px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin: 0;
	padding: 0px 0;
	color:#444444;
}
.page #mainContent p {
	font-size:13px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin-top:4px;
	margin-bottom:4px;
	color:#555555;
}
.page #chapter { 
	width:726px;
	border-top-color:#777777;
	border-top-style:dotted;
	border-top-width:1px;
	padding-top:10px;
	padding-bottom:10px;
	text-align:left;
}
.page #mainContent h1 {
	font-size:18px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin: 0;
	padding: 0px 0;
}
.page #chapter h2{
	font: 100% Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	font-size:15px;
	font-style:normal;
	font-variant:normal;
	color:#000000;
	margin: 0;
	padding: 0px 0;
	margin-top:10px;
}
.page #chapter p{
	font-size:12px;
	margin-right: 20px;
	margin-bottom:10px;
}
.page #chapter a{
	color:#0033FF;
	clear:none;
	text-decoration:underline;
	cursor:pointer;
}
.page #footer { 
	width:726px;
	border-top-color:#777777;
	border-top-style:dotted;
	border-top-width:1px;
	padding-top:10px;
	padding-bottom:20px;
	text-align:left;
}
.page #footer p {
	font-size:12px;
	font-style:normal;
	font-variant:normal;
	font-weight:100;
	margin-top:4px;
	margin-bottom:4px;
	color:#555555;
}

/* Miscellaneous classes for reuse */
.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;
}
