*
{
	margin: 0;
	padding: 0;
}

html
{

}

body
{
	/* default font */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #555;
	
	/* insert background image or color */
	/*background: #fff url('') repeat-x top left;	/* repeat left to right starting top left */
	/*background: #fff url('') repeat-y top left; /* repeat top to bottom starting top left */
	background: #dddddd url('images/body_bg.gif') no-repeat top center; /* no repeat top center */
	/*background-color: #dddddd;			/* no image - just set color */
}

#wrap
{
	/* Default wrapper */
}

#main_page_wrapper
{
	/* adjust main page width here */
	width: 800px;
	margin: 0 auto;
	background-color: #fff;
}

#keys
{
	/* place this at top and/or bottom
	   of page to place 3 dynamic and 
	   relevant keywords for specific 
	   pages */
	width: 800px;
	margin: 0 auto;
	padding: 5px 0px;
}

#keys p
{
	text-align: center;
}

#header
{
	background: #dddddd url('images/header.jpg') no-repeat top left;	/* adjust url if using img as background */
	width: 800px;								
	height: 400px;								/* adjust to img height */
}

/* ***** MENU ***** */

#menu
{
	position: relative;
	width: 800px;
	height: 33px;
	left: 0px;	/* how far to move away from left side */
	/*float: left 	/* float this or add float to classes */
	background-color: #ddd;
}

#menu ul
{
	list-style: none;
	margin: 0;
	padding: 0;
	width: 114px;							/* button width */
	height: 33px;							/* button height */
	float:left;
	text-align: center;
	/*background: url('/images/button_on.gif') repeat-x top left;  /* set background img - set as hover img if using dynamic imgs */
}

#menu a
{
	display: block;
	padding: 9px 5px;
	color: #fff;
	background-color: #c0c0c0;
	/*background: url('/images/button_off.gif') repeat-x top left;	/* set background img - set as standard img if using seperate hover img */
	text-decoration: none;

	font: bold 11px/15px arial, helvetica, sans-serif;		/* may need to adjust font size for menu to line up properly vertically */
}

#menu a:hover
{
	padding: 9px 5px;
	margin: 0px 0px;						/* adjust margin(space between buttons)
									   first field is top/bottom, second field is left/right */
	color: #555;
	background-color: #ddd;
	/*background: url('/images/button_on.gif') repeat-x top left;	/* set background img - set as hover img if using dynamic imgs */
	text-decoration: none;
		
	font: bold 11px/15px arial, helvetica, sans-serif;
}


#content
{
	padding: 20px;
}

#content h1
{
	color: #555;
	padding: 5px 0px;
}

#content p
{
	margin: 0px;
	padding: 5px 0px;
}

#content li
{
	padding: 2px 0px;
	margin-left: 35px;
}

#content a
{
	color: #abc;			/* adjust link color */
	text-decoration: none;		/* adjust link decoration */
}

#content a:hover
{
	color: #abc;			/* adjust link color */
	text-decoration: underline;	/* adjust link decoration */
}
#content img
{
padding-left: 15px;
padding-right: 15px;
}

#footer
{
	text-align: center;
	background-color: #c0c0c0;
	padding: 5px 0px;
}

#footer a
{
	color: #000;			/* adjust link color */
	text-decoration: none;		/* adjust link decoration */
}

#footer a:hover
{
	color: #cba;			/* adjust link color */
	text-decoration: underline;	/* adjust link decoration */
}


/* ***** BORDERS ***** */

/* Set Border Colors */
.bT
{
	border-top: 1px solid #845116;
}
.bB
{
	border-bottom: 1px solid #845116;
}
.bL
{
	border-left: 1px solid #845116;
}
.bR
{
	border-right: 1px solid #845116;
}

.bALL
{
	border: 1px solid #845116;
}


/* ***** ADJUSTMENTS ***** */

.clearboth
{
	clear: both;
}

.floatRight
{
	float: right;
}

.floatLeft
{
	float: left;
}

.adjust_text_left
{
	text-align: left;
}

.adjust_text_right
{
	text-align: right;
}

.adjust_text_center
{
	text-align: center;
}

.adjust_text_justify
{
	text-align: justify;
}

.adjust_width400
{
	/* example - create for any size and include in class */
	width: 400px;
}

.adjust_background_red
{
	/* example */
	background-color: red;
}

.adjust_margin_center
{
	margin: 0 auto;
}

.adjust_margin_left25
{
	/* example */
	margin-left: 25px;
}


