body 
{
	/* Change all the font */
	font-family: Arial, Helvetica, sans-serif;
	color: #fce7a4;
	/* Change the background color */
	background-color:#8b7965; /* Loads close to the image so it isn't just white prior to image loading */
	background-image: url(PageBackground.jpg); /* 6kb image */
}

#image
{
	position:fixed;
	top:0px;
}

#page
{
	position: relative;
	top: 60px;
	/* Center and padding */
    margin-left: auto;
	margin-right: auto; 
	/* Width 800, set background color */
	width:800px;
	background-color:#7c4f3a; /* Goes right away so image below won't leave it while it if doesn't load*/
	background-image: url(Background.jpg); /* 1kb image */
	/* Set borders */
	border-top: 3px solid #502e1f;
	border-bottom: 3px solid #502e1f;
	border-right: 1px solid #502e1f;
	border-left: 1px solid #502e1f;
}

#content
{
	/* Use this to store the text
		Can't have it in page as I want the padding, and padding will break alignment with header*/
	position:relative;
	left: 60px;
	width:550px;

}


hr
{
	width:500px;
}


/**********************************************
Font Changes

Will be used for when I make font larger or
smaller than the normal, will have it set up
like .small, .large, etc
**********************************************/
h1
{
	text-align:center;
	font-variant: small-caps;
}

h2
{
	font-variant:small-caps;
}
.Title 
{
	font-weight:bold;
	font-style: italic;
}

a
{
	font-weight:bold;
    color: #fce7a4;
}


/**********************************************

Table Changes

**********************************************/

table 
{
	width:750px;
	 word-wrap: break-word;
	border:0px;
}


td {
	vertical-align:top;
	    max-width: 280px;
}
