@import url(reset.css); 

body {
	background: #000; 
	padding-top: 50px;
	padding-left: 30px; 
}

body, input, textarea, table {
	font-size: 14px;
	line-height: 19px; 
	color: #fff; 
}

a {
	color: #fff; 
}

#container {
	width: 800px;
}

#topnav {
	width: 170px; 
	float: left; 
	text-align: right; 
	padding-right: 40px; 
	font-size: 17px; 
	line-height: 25px; 
	text-transform: lowercase; 
}
	#topnav ul {
		margin-top: 20px; 
		border-bottom: 1px solid #fff; 
	}
	#topnav li {
		margin: 3px 0;
		padding: 0 0 3px 0;
		font-weight: 500; 
	}
	#topnav li:first-child {
		border-bottom: 1px solid #fff; 
	}
	
	#topnav li a:hover,
	#topnav li a.on {
		color: #999;
	}
	#topnav li a.on {
		color: #555; 
	}

#content {
	float: left; 
	width: 500px; 
	padding-top: 45px;
}
	#content p,
	#content ul,
	#content ol,
	#content table {
		margin: 1em 0 1.5em 0;
	}

	#content a {
		color: #fff; 
	}
		#content a:hover {
		}

	#content em {
		font-style: italic;
	}

	#content strong {
		font-weight: bold; 
	}

	#content h1 {
		font-size: 48px; 
		font-weight: 200; 
		margin-bottom: 50px;
		text-transform: lowercase; 
	}

	#content ul li {
		margin: 0 0 0 3em;
		display: list-item; 
		list-style: disc; 
	}

	#content ol li {
		margin: 0 0 0 3em; 
		display: list-item;
		list-style: decimal;
	}

	#content img.work {
		display: block;
		margin: 1px 0;
	}

#bodycopy-inner {
	width: 70%; 
}


#sidebar {
	font-size: 12px; 
	width: 230px; 
	float: right; 
}
	#sidebar > p:first-child {
		margin-top: 0;
	}


/**
 * The edit link that appears when you are logged in.
 * It is recommended that you implement an edit button 
 * in your templates to make it easy to switch to and
 * from the admin control panel when editing pages. 
 *
 */
#editpage {
	position: absolute;
	top: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
}
	#editpage:hover {
		background: #ffffcc;
		color: #000; 
	}


/**
 * Alignment styles that are used by the InputfieldTinyMCE for 
 * positioning images in bodycopy. If you are using this field type, 
 * you may want to include these or similar styles in your site.
 *
 */
.align_left {
        float: left;
        margin: 0 1em 0.25em 0;
}

.align_right {
        float: right;
        margin: 0 0 0.25em 1em;
}

.align_center {
        display: block;
        margin-left: auto;
        margin-right: auto;
}



/**
 * WireFatalError is a class that ProcessWire will use to output
 * fatal errors in the design, but only if debug mode is on, or if
 * you are logged in as a superuser. 
 *
 */
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
}

