@charset "UTF-8";
body  {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
	font-size: 75%;
	background-color: #252525;
}
.L1 #container { 
	width: 90%;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
} 
.L1 #header {
	background-color: #ECECEC;
	color: #555555;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
} 
.L1 #header h1 {
	font-size: 3em;
	margin-top: 0px;
}
.L1 #header h2 {
	margin-top: -1em;
	letter-spacing: 0.3em;
	font-size: 1em;
}
.L1 #sidebar {
	float: left;
	width: 16em;
	background-color: #69F;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.L1 #sidebar a {
	color: #000;
	text-decoration: none;
}
.L1 #menu1 {
	margin-left: 5px;
	margin-right: 10px;
	padding-left: 10px;
	padding-bottom: 0.5em;
}
.L1 #menu2 {
	margin-left: 15px;
	margin-right: 10px;
	padding-left: 10px;
	padding-bottom: 0.5em;
}
.L1 #navSelector1 {
	float: left;
	width: 10px;
	vertical-align: baseline;
	margin-left: 5px;
}
.L1 #navSelector2 {
	float: left;
	width: 10px;
	vertical-align: baseline;
	margin-left: 15px;
}
.L1 #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 17em;
}
.L1 #mainContent h1 {
	font-size: 2em;
	margin-top: 10px;
}
.L1 #mainContent h2 {
	font-size: 1.5em;
	padding-top: 10px;
}
.L1 #mainContent p {
	line-height: 2em;
}
.L1 #mainContent a {
	color: #36F;
}
.L1 #mainContent li {
	line-height: 2em;
	margin-right: 25%;
}
.L1 #mainContent blockquote {
	font-size: 1.5em;
	background-color: #ECECEC;
	color: #555555;
}
.L1 #mainContent sub {
	line-height: 1em;
}
.L1 #media {
	margin: 20px;
}
.L1 #footer {
	padding-top: 0;
	padding-right: 15px;
	padding-bottom: 0;
	padding-left: 15px;
	color: #555555;
	background-color: #ECECEC;
} 
.L1 #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 */
}

/* 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;
}
