* {
	margin:0;
	padding:0;
}

body {
	background: url(images/nbody_bg.jpg) repeat-y center fixed #000000;
	font-family:Arial, Helvetica, sans-serif;	
	font-size: .8em;
}

					/* Begin Containers */

/*Holds EVERYTHING*/
#maincontainer {
	width:896px;
	padding:3px;	
	margin: 0px auto;
	background-color:#000000;
}

/*Holds the banner at the top*/
#masthead {
	margin-top: 1px;
	background-image: url(images/masthead.jpg);
	height: 232px;
	border: 1px solid #FFFFFF;
	width:99.7%;
}

/*Easy way of separating the header and content. No mess with paddings =)*/
#breaker {
	height:20px;
}

/*Holds all 3 content boxes.*/
#3boxcontainer {
	width:100%;
	z-index:2;
}

/*For the background behind the floats*/
#wrapper {
	background-image: url(images/nwrapper_bg.gif);
	background-repeat: repeat-y;
}

/*Holds all the links and buttons*/
#leftbox {
	float:left;
	width:155px;
	background-image: url(images/nround_corner.gif);
	background-repeat: no-repeat;
	background-color: #FFFFFF;
	padding: 5px;
}

/*Applies to all the buttons in the nav at the left*/
#leftbox img {
	margin-left:5px;
	border:0px;
	margin-bottom:-5px;
}

/*This is the good stuff in the middle*/
#middlecontent {
	margin-left: 170px;
	margin-right: 170px;
	margin-bottom: 5px;
	color: #000000;
	background-color: #FFFFFF;
	padding: 20px;
	border: 0px solid #000000;
}

/*Floats the image to the left so text will wrap around it*/
.imageleft{
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

/*Floats the image to the right so text will wrap around it*/
.imageright{
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
	margin-top: 10px;
}

/*Contains a small writeup of some sorts.*/
#rightbox {
	background-color: #FFFFFF;
	color: #000000;
	float: right;
	width: 155px;
	background-image: url(images/nround_corner_r.gif);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 5px;
}

/*Contains the copyright at the bottom. Nice wrapup for the site*/
#footer {
	clear: both;
	background-color: #000000;
	color: #666666;
	padding: 4px;
	border: 1px solid #FFFFFF;
	background-image: url(images/nbar_bg.gif);
	text-align: center;
}

					/*Other Junk*/

/*Defines the <blockquote> tag.*/
blockquote{
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 30px;
	border: 1px dotted #000000;
	background-image: url(images/nblockquote.jpg);
	background-repeat: no-repeat;
}

/*Makes sure that text in the blockquote does not run over " in background*/
blockquote p {
	margin-top:15px;
}

/*Defines the first header and what is displayed behind it*/
h1{
	background-color: #000088;
	background:url(images/middleh1.jpg) repeat-x;
	padding: 5px;
	font-size: 1.3em;
	color: #FFFFFF;
}

.h1left{
	float:left;
	margin:-5px;
	z-index:1;
}

.h1right{
	float:right;
	margin:-5px;
	z-index:1;
}

/*Ditto h1, only larger top margin for if there is text above*/
h2{
	background-color: #000088;
	padding: 5px;
	font-size: 1.3em;
	color: #FFFFFF;
	margin-top: 15px;
	margin-bottom: 15px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;

}

/*Makes paragraphs looks nicer with more space*/
p {
	margin-top:15px;
	margin-bottom:15px;
}

/*Applies to lists with this class. Useful for left nav*/
.list {
	margin-left: 25px;
	list-style-image: url(images/nlist_bullet.png);
	margin-top: 30px;
}

/*Obviously...*/
a:link {
	color: #0000CC;
	background-color: inherit;
}
a:visited {
	color: #0000CC;
	background-color: inherit;
}
a:hover {
	color: #FF00FF;
	background-color: inherit;
}
a:active {
	color: #0000CC;
	background-color: inherit;
}