@charset "UTF-8";
body  {
	font: 9pt Arial, Helvetica, sans-serif;
	background: #7b2e00 url(images/background.png) top left repeat-y;
	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: #ffffff;
}
p {
	margin: 0 0 10px 0;
	padding: 0;
}
.thrColFixHdr #container { 
	background: none;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#background-wrapper {
	background: url(images/background_lion.png) top left no-repeat;
	width: 100%;
	min-height: 630px;
	padding: 0;
	margin: 0;
  }

/* --- header --- */
.thrColFixHdr #header {
	background: url(images/header.png) top right no-repeat;
	margin: 0;
	height: 70px;
} 
.thrColFixHdr #header h1 {
	font: 20pt Georgia, "Times New Roman", Times, serif;
	font-weight: 800;
	padding: 5px;
	margin: 0;
	border: none;
	text-align: left;
}

/* --- subheader --- */
.subheader {
	margin: 0 0 10px 0;
	width: 1000px;
	height: 100px;
	text-align: center;
	border: none;
	overflow: hidden;
	background: none;
}
.subheader h1 {
	border-bottom: solid #a0410d 1px;
	margin: 0 0 2px 0;
}
.subheader #cell {
	padding: 0 20px;
}

/* --- sidebar --- */
.sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* 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: 0 20px 0 0; /* padding keeps the content of the div away from the edges */
	text-align: right;
	margin: 3px 0;
	border: none;
	overflow: hidden;
	background: url(images/blank.gif);
}
.sidebar p {margin: 3px 0;}
.sidebar h1 {
	margin: 15px 0 0 0;
	border-bottom: solid #a0410d 1px;
	text-align: right;
}
.sidebar a {
	font: 10px Arial, Helvetica, sans-serif normal;
}
.sidebar a:hover, a:active {
	color: #a0410d;
}

/* --- main content --- */
.mainContent {
	margin: 0 0 20px 0;
	float: right;
	overflow: visible;
	width: 790px;
} 
.thrColFixHdr #mainContent {margin: 0 0 20px 210px;} 

/* --- games --- */
.thrColFixHdr #games h2 {
	font: 14px Arial, Helvetica, sans-serif;
	font-weight: 800;
	color: #ffffff;
} 
.thrColFixHdr #games table {
	margin: 5px 0 0 0;
	text-align: left;
}
.thrColFixHdr #games td {
	padding: 1px 0;
	border-bottom: 1px solid #a0410d;
}

.thrColFixHdr #about h1 {
	font: 12px Georgia, "Times New Roman", Times, serif;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	border-bottom: 1px solid #a0410d;
} 
.thrColFixHdr #about h2 {
	font: 10px Georgia, "Times New Roman", Times, serif;
	font-weight: 800;
	color: #ffffff;
	text-transform: uppercase;
	border-bottom: 1px solid #a0410d;
} 
.thrColFixHdr #about table {
	margin: 5px 0 0 0;
	text-align: left;
}
.thrColFixHdr #about td {
	padding: 1px 0;
}

.thrColFixHdr #content {
	padding: 5px 0;
	border-top: solid #7b2e00 1px;
	border-bottom: solid #7b2e00 1px;
}

/* --- portfolio --- */
.thrColFixHdr #portfolio {
	min-height: 150px;
}
.thrColFixHdr #portfolio img {
	float: left;
	margin: 0 20px 0 0;
	border: none;
}
.thrColFixHdr #portfolio ul {
	list-style-position: outside;
	list-style-type: disc;
	margin: 0;
	padding: 0 0 0 10px;
}
.thrColFixHdr #portfolio td {
	border-bottom: none;
	padding: 6px 0 0 0;
}
.thrColFixHdr #bullet {
	background: url(images/bulletheader.png) bottom left no-repeat;
	height: 25px;
	margin: 2px 0;
	padding: 0;
}
.thrColFixHdr #bullet h1 {
	font:15px Georgia, "Times New Roman", Times, serif;
	padding: 7px 0 0 27px;
	mergin: 0;
	text-transform:none;
	font-weight:800;
}

/* --- footer --- */
.footer { 
	font: 10px Arial, Helvetica, sans-serif;
	background: none;
	width: 1000px;
	height: 55px;
	border: none;
	overflow: hidden;
} 
.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 */
}

/* --- float --- */
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}

/* --- misc --- */
h1 {
	font: 12px Georgia, "Times New Roman", Times, serif;
	font-weight: 800;
	text-transform: uppercase;
	margin: 15px 0 0 0;
	text-align: left;
}
a {
	font: 10px Arial, Helvetica, sans-serif normal;
	color: #ffffff;
	text-decoration: none;
	margin: 0;
	border: none;
}
a:hover, a:active {
	color: #a0410d;
}