/*
	Here is the stylesheet for the site. If you change the name of this file you will also have to change the corrosponding line
	in the html file. I have documented the things that you will probably want to change which is mainly color and font styles.
	If you are completely unfamiliar with CSS you should definitely visit http://w3schools.com for a brush up on how things
	work. Also I often times use a 3 digit color format which some people may not be familiar with. It's just a shorthand
	way of writing colors. You just duplicate each number and you will get the 6 digit hex code.
	Examples:
	#fff = #ffffff
	#000 = #000000
	#43f = #4433ff
*/

/*
	body
	This is the body tag. The main items you may want to change are background, font, line-height, and color.
	In the background tag change the hex code to the color of your background that you figured out.
	DO NOT change the font size from 0px. It is set that way to fix a design issue, the size of the text for each
	panel is set later in this document. If you change the color tag it will set the default color for text.
*/
body {
	margin: 0px 0px 10px 0px;
	padding: 0px;
	background: #000 url(images/bg.gif) top left repeat-x;
	font: 0px Arial, Tahoma, sans-serif;
	line-height: 200%;
	color: #333;
}

#container {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 770px;
	background: url(images/container_bg.gif);
}

#containerTop {
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 770px;
	height: 20px;
	background: url(images/container_top.gif) top left no-repeat;
}

#containerBottom {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 770px;
	height: 20px;
	background: url(images/container_bottom.gif) top left no-repeat;
}

#header {
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 150px;
	background: url(images/header.gif) top left no-repeat;
}

/*
	#mainMenu
	Here you can change the font size and face of the text for the menu items.
	If you change the color tag, it will change the color of the seperator characters which is a pipe | by default.
*/
#mainMenu {
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 30px;
	background: url(images/menu_bg.gif) top left no-repeat;
	font: 12px Arial, Tahoma, sans-serif;
	color: #fff;
}

#mainMenu ul {
	margin: 0px;
	padding: 0px;
	display: inline;
	list-style-type: none;
}

#mainMenu li {
	margin: 7px 0px 0px 7px;
	padding: 0px;
	float: left;
}

/*
	#mainMenu a
	If you change the color here, it will change the color of your menu links.
*/
#mainMenu a {
	margin: 0px;
	padding: 0px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

/*
	#mainMenu a:hover
	This is the color of the menu links when you hover the mouse over them. Change it to whatever you need.
*/
#mainMenu a:hover {
	color: #b39f33;
}

/*
	#bodyContainer
	You can change the font here. This will change the font for the left panel and the body panel.
*/
#bodyContainer {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	background: url(images/body_bg.gif);
	font: 12px Arial, Tahoma, sans-serif;
}

#bodyTop {
	position: relative;
	float: left;
	left: 10px;
	margin: 10px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/body_top.gif) top left no-repeat;
}

#bodyBottom {
	position: relative;
	float: left;
	left: 10px;
	margin: 0px auto 10px auto;
	padding: 0px;
	width: 750px;
	height: 14px;
	background: url(images/body_bottom.gif) top left no-repeat;
}

/*
	#leftPanel
	The font for this left panel is inherited from the #body id. However if you want to have a different color or font
	text here, you may add the color or font tags.
*/
#leftPanel {
	float: left;
	margin: 0px auto 0px 0px;
	padding: 5px;
	width: 235px;
}

/*
	#bodyPanel
	The font for this body panel is inherited from the #body id. However if you want to have a different color or font
	text here, you may add the color or font tags.
*/
#bodyPanel {
	float: right;
	margin: 0px 0px 0px auto;
	padding: 5px;
	width: 485px;
}

#footer {
	clear: both;
	margin: 0px auto 0px auto;
	padding: 0px;
	width: 750px;
	height: 65px;
	background: url(images/footer.gif) top left no-repeat;
	text-align: right;
}

/*
	#copyright
	You can change the font or color of the copyright text by modifying those tags here.
*/
#copyright {
	margin: 0px;
	padding: 17px;
	color: #fff;
	font: 10px "Century Gothic", Courier, monospace;
}

/*
------------------------------------------------------------------------------------------------------
	The following tags are not required for the design and you may modify them however you wish.
	You may want to change the color in the h1 and h2 tags as well as the tag labeled h3, h4, h5, h6.
	I have set images to have a padding around them and be displayed in block mode, you may change this.
	I have also set the default link styles in the a tags. If you want to learn more about CSS and how
	it works, visit this page: http://www.w3schools.com/css/default.asp. It's got some great information
	on each property of CSS.
------------------------------------------------------------------------------------------------------
*/

p {
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

h1 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 20px;
	color: #000000;
	width: 100%;
}

h2 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 18px;
	color: #000000;
}

h3, h4, h5, h6 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 16px;
	color: #000000;
}

img {
	display: block;
	margin: 7px;
	padding: 0px;
}

a {
	color: #3656b0;
	text-decoration: underline;
}

a:hover {
	color: #6a88dc;
}