@charset "utf-8";
/* CSS Document */

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: #666;
	font-family: Helvetica, Arial, sans-serif;	
	font-size: 100%;
	background-color: #FFF;
}
.oneColLiqCtr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	overflow: hidden;
}
.oneColLiqCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	overflow: hidden;
}
h1 {
	font-size: 36px;
}
h2 {
	font-size: 16px;
	color: #CCC;
	text-align: right;
}
p {
	font-size: 16px;
}
#nav {
	font-size: 14px;
	text-align: right;
	border-right-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	float: left;
	width: auto;
	padding-right: 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 10px;
	color:#666;
}
#content {
	font-size: 14px;
	color: #666;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 100px;
}
