body {
	font: 80%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #000000; #42413C;
	margin: 0;
	padding: 3;
	color: #ffffff;
}

#header {
	width:				100%;
	height:				140px; //166
	margin:				0 auto;
	clear:				both; 
}
#headerinside {
	width:				100%;
	background-image: 	url('../images/bg-header.jpg'); 	
	margin:				0 auto;
	height:				138px;
	text-align:			left;
	clear:				both; 	
}
#headerinsidemenu {
	background-image: 	url('../images/bg-header.jpg'); 	
	width:				100%;
	margin:				0 auto;
	height:				38px;
	text-align:			center;
	clear:				both; 	
}



/* ~~ Element/tag selectors ~~ */
table, ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ffffff; //#42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color:#3CF
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other divs ~~ */
.container {
	width: 100%;
	text-align:left;
	margin: 0 auto; 
	overflow: hidden; 
}

.sidebar1 {
	float: left;
	width: 220px;
	background: #000000; //#EADCAE;
	padding-bottom: 10px;
}


.curmenu { 
	//will make the current selection look selected;
	text-align:center;
	background: #000000;
	color:#FF0;
}




.content {

	padding: 10px 0;
	width: 100%;
	float: left;
	padding-left: 3px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content table, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 2px solid #000; 
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	background-image: url(../images/bbg.jpg);
}
table.nav li {
	border-bottom: 2px solid #000; /* this creates the button separation */
}
table.nav a, table.nav a:visited { 
	padding: 5px 5px 5px 15px;
	display: block; 
	//width: 220px; //160px;
	text-align:center;  
	text-decoration: none;
	color:#000;
	background-image: url(../images/bbg.jpg);
}
table.nav a:hover, table.nav a:active, table.nav a:focus { 
	//background-image: url(../imaes/bbgo.jpg);
	background: #000000;
	color: #FF0;
}

ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 2px solid #000; 
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	background-image: url(../images/bbg.jpg);
}
ul.nav li {
	border-bottom: 2px solid #000; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { 
	padding: 5px 5px 5px 15px;
	display: block; 
	//width: 220px; //160px;  
	text-decoration: none;
	background-image: url(../images/bbg.jpg);
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { 
	//background-image: url(../imaes/bbgo.jpg);
	background: #000000;
	color: #FF0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	width:55%;

}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
	margin-left: 8px;
	width: 40%;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
