
/*Loads in our custom font (using a whole bunch of different files) for cross browser compatability*/
@font-face {
    font-family: 'ccvalia';
    src: url('assets/ccvalia-webfont.eot');
    src: url('assets/ccvalia-webfont.eot?#iefix') format('embedded-opentype'),
         url('assets/ccvalia-webfont.woff') format('woff'),
         url('assets/ccvalia-webfont.ttf') format('truetype'),
         url('assets/ccvalia-webfont.svg#cac_valiantregular') format('svg');
    font-weight: normal;
    font-style: normal;
}





/*General styling for the body, links, and headings*/
body {
	background-color: #331E18;
	font-family:"Times New Roman", Times, serif;
	font-style: normal;
	font-size: 18px;
	color: #857568;
	/*color: #9E8E81;*/ /*Alternate brighter text color*/
	margin: 0px;
}

a {
	color: #6E5B3C;
	margin: 0px;
}

a:hover {
	color: #D1CDAF;
}

h1,h2,h3,h4,h5 {
	font-family:"ccvalia","Times New Roman", Times, serif;
	color: #D1CDAF;
}





/*Horrizantaly centers the container and applies the blue wallpaper image*/
#container {
    margin: 0px auto;
    padding: 0px;
    width: 800px;
	background-image:url('assets/background.png');
	background-repeat:repeat-y;
	overflow: hidden;	/*stretches the background under all the contents and sidebar, bit of a hack but works*/
}

/*Sets the size and position for the header image banner*/
#headerImage {
	margin: 0;
    padding: 0;
    height: 370px;
    width: 800px;
    position: absolute;
}





/*Sidebar styles*/
#sidebar {
	margin: 270px 0 0 90px;
    padding: 70px 0 0 0;
    width: 140px;
    height: 347px;
    float: left;
   	background-color:transparent;
   	background-image:url('assets/sidebar.png');
   	background-repeat:no-repeat;
}

#sidebar h3 {
	display: block;
	margin: 30px 0px 20px 0px;
	text-align:center;
}

#sidebar a {
	display: block;
	margin: 5px 0px 0px 0px;
	padding: 0px;
	text-align:center;
	font-size: 14px;
}





/*Contents styles*/
#contents {
	margin: 350px 80px 0 0;
    padding: 0px;
    width: 440px;
    height: auto;
    float: right;
}

#contents img {
	float: left;
	margin: 10px 10px 10px 0;
}

#contents p {
	margin: 0px 0px 30px 0;
}

#contents img.hr {
	display: block;
	margin: 10px 0px 30px 0px;
}


#contents ul {
	padding: 0px;
	margin: 0px 0px 30px 0px;
	list-style-type: none;
	/*font-size: 14px;*/
}

#contents ul li {
	background-image: url("assets/listMarker.png");
	background-repeat: no-repeat;
	background-position: 0px 6px;
	padding-left: 20px;
}

/*Sets the first letter of the first paragraph to be ccvalia font*/
#contents p:first-child:first-letter{	
	font-family:"ccvalia","Times New Roman", Times, serif;
	color: #D1CDAF;
	font-size: 48px;
	line-height:100%;	/*Prevents the larger first letter from changing the line height*/
}





/*Footer styles*/
#footer {
	margin: 20px 0px 0px 0px;
	height: 30px;
	width: 800px;
	float: left;
	background-color:#000000;
}

#footer p {
	margin: 10px 0px 0px 105px;
	font-size: 12px;	/*For the copywrite*/
}
