/* 
IMPORTANT--- READ... please.

put the following code within the <head> tags of all the pages you want to implement the CSS:
<link rel="stylesheet" type="text/css" href="style.css" />
(index.php, retrieve.php, gallery.php and request.php I believe)

*/
body {
    background: #4a5158;
    font-family: Verdana;
    color: #ddd;
}

a {
	font-family: Verdana;
    text-decoration: none;
    color: #fff;
    border-color: #000;
}


a:hover {
    color: #5a4b3e;
    text-decoration: underline;
}

.header {
	width: 800px;
	height: 150px;
	margin: auto;
	background-image: url(ocdbanner.png);
}

.pagename {
	font-size: 1.2em;
	}

.container {
	width: 780px;
    height: auto;
	margin: auto;
	padding: 10px;
	background-color: #222;
	border-top: 1px solid #000;
    border-bottom: 1px solid #000;

}

.subbox {
	width: 600px;
	height: auto;
	margin: auto;
}

.footer {
 	width: 800px;
    height: 50px;
	margin: auto;
    font-size: .8em;
	background-image: url(ocdfooter.png);
}

.blogtitle {
	font-size: 1.2em;
}

.blogstuff {
	font-size: 0.8em;
}

.blogbox {
	width: 700px;
    height: auto;
	margin: auto;
	padding: 20px;
	background-color: #111;
}

.commentbox {
	width: 650px;
    height: auto;
	margin: auto;
	padding: 5px;
	background-color: #111;
}