/* style.css */

/* this stylesheet is for the web site of Indiana 2600, designed by Eoban Binder. */

/***************************************************
main wrapper (big gray box)
***************************************************/

.mainwrapper { 
	border-left: 3px solid #999;
	border-top: 3px solid #999;
	border-bottom: 3px solid #999;
	border-right: 1px solid #999;

	background: #262626 url(border_left.gif) no-repeat;

	padding-top: 40px;
	padding-bottom: 20px;
	padding-right:20px;
	padding-left: 20px;

	text-align: left;

	position: absolute;

	left: 40px;
	top: 40px;
	bottom: 40px;
	right: 40px;

	height: auto;

	z-index: 0;
	overflow: auto;
}

html>body { overflow: hidden; }


/***************************************************
navbar on left, and body on right
***************************************************/


/* the wide part of the box on the right */
.TwoPartBody {
	margin-left: 120px;
	padding: 0px 10px 0px 20px;
	border-left: 1px solid #666;
	z-index: 1;
	width: auto;
 }


/* the narrower part of the box on the left */
.TwoPartSidebar {
	float: left;
	position: fixed;
	margin: 0px;
	left: 55px;
	top: 72px;
	padding: 0px 0px 0px 10px;
	z-index: 4;
 }

html>body .TwoPartSidebar { width:120px; }

/***************************************************
CRT logo, in2600 title, credit, badges
***************************************************/

.logo {
	float: left;
	left: 10px;
	top: 10px;
	position: absolute;
	z-index: 2;
}

.title {
	float: left;
	left: 134px;
	top: 43px;
	position: absolute;
	z-index: 3;
}

.credit {
	color: #666; 
	position: absolute;
	bottom: 5px; 
	right: 36px;
	z-index: 3;
}

.footer {
	position: absolute;
	z-index: 0;
	bottom: 15px;
	left: 40px;
	}



/***************************************************
text elements
***************************************************/

a {  
	font-weight: normal;
	text-decoration: none;
	z-index: 10;
	color: #3399FF;
}

a:hover { color: #66CC99;
	z-index: 10;
}

BODY { 
		margin: 0px 0px 30px 0px; 
		background:  #000;
}

H1 { 
		font: 16px courier , sans-serif; 
		color: #CCC; 
		margin-top: 0px; 
		line-height: 15px; 
		margin-bottom: 10px;
		z-index: 4;
}

H2 { 
		font: 13px courier , sans-serif; 
		color: #CCC; 
		margin-top: 0px; 
		line-height: 15px; 
		margin-bottom: 10px;
		z-index: 4;
}

P {  
		font: 11px courier , sans-serif; 
		color: #CCC; 
		margin-top: 0px; 
		line-height: 15px; 
		margin-bottom: 5px;
		z-index: 4;
}