@charset "utf-8";
body  {
	font-family:Tahoma, Geneva, sans-serif;
	background: #333333;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 20px 0 0 0;
	color: #000000;
	height:100%;
}
html, body, #wrap {
	height: 100%;
}
body > #container {
	height: auto; 
	min-height: 100%;
}
.twoColFixLt #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	text-align:left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 248px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 5px 15px 0;
}
.twoColFixLt #sidebar1 ul {
	margin:35px 33px 0 0;
	padding:0;
}
.twoColFixLt #sidebar1 ul ul {
	margin:0;
}
.twoColFixLt #sidebar1 li {
	list-style-type:none;
	text-align:right;
	margin: 0 0 20px 0;
}
.twoColFixLt #sidebar1 li a {
	color:#FFF;
	text-decoration:none;
	text-transform:lowercase;
	font-size:21px;
	display: block;
	margin: 0;
	padding: 0 0 3px 0;
}
.twoColFixLt #sidebar1 li a:hover, .twoColFixLt #sidebar1 li a.active {
	color:#ffef38;
}
.twoColFixLt #sidebar1 ul li ul li {
	margin:0;
	padding:0;
	list-style:none;
	padding:0 0 4px 10px;
	margin:0;
	line-height:11px;
}
.twoColFixLt #sidebar1 ul li ul li a {
	font-size:12px;
}

.twoColFixLt #mainContent { 
	margin: 0 0 0 290px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 150px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color:#FFF;
} 
.twoColFixLt #mainContent #contentBox {
	background:#292929;
	padding:20px;
	color:#FFF;
}
.twoColFixLt #mainContent #contentBox a {
	color:#FFF;
}
.twoColFixLt #mainContent #contentBox a:hover {
	color:#CCC;
}
.twoColFixLt #mainContent #galleryBox {
	background:#292929;
	padding:20px;
	color:#FFF;
	font-size:11px;
	height:324px;
}
.twoColFixLt #mainContent h1 {
	color:#999999;
	text-transform:lowercase;
	letter-spacing: 1px;
	font-weight: normal;
	font-size: 50px;
	line-height:45px;
}
.twoColFixLt #mainContent p, .twoColFixLt #mainContent li {
	font-size:0.8em;
}
.twoColFixLt #mainContent #galleryBox p {
	font-size:1.1em;
	margin-top:3px;
	text-align:right;
}
.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;
}
p.notice { background:#FFF; padding:10px; color:#900; font-weight:bold; }

/******* Footer *******/
#footer {
	position: relative;
	margin-top: -40px; /* negative value of footer height */
	height: 40px;
	clear:both;
} 
#footer {
	font-size:11px;
	color:#999999;
	background-color:#292929;
	padding: 0 20px 0 20px;
	height:40px;
}
#footer p {
	line-height:40px;
	vertical-align:middle;
	margin:0;
	padding:0;
}
.clearIt {
	clear:both;
}
