/*-- basics --*/

body
{
	background-color: #333;
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-image: url(images/Wood.jpg);
	background-attachment: fixed;
	font-family: georgia, times, serif;
	font-size: 11px;
}

a {
	font-family: georgia, times, serif;
	font-size: 10px;
	color: #900;
	text-decoration: none;
	text-transform: uppercase;
}

a:hover{
	color: #300;
	text-decoration: underline;
}

/*-- to allow images easily floated left or right --*/

img{
	border-style: none;
}


img.floatright{
	float: right;
	margin-left:10px;
	margin-bottom:10px;
	border-color: #000;
	border-width: 1px;
	border-style: dotted;
}

img.floatleft{
	float: left;
	margin-right:10px;
	margin-bottom:10px;
	border-color: #000;
	border-width: 1px;
	border-style: dotted;
}

/*-- spans --*/

/*-- changes menu link on current page --*/
span.current{
	font-size: 10px;
	text-transform: uppercase;
}

/*-- this is the style for the footer text to match the other title styles --*/
span.footer{
 	font-size: 10px;
 	color: #FFF;
 	text-transform: uppercase;
}

/*-- this is the generic title for all page content --*/
span.title{
	font-family: helvetica, verdana, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	background-color: #000;
	padding: 5px;
}

span.emph{
	text-transform: uppercase;
	font-weight: bold;
	font-size: 10px;
}

/*-- layout divs --*/

/*-- this is the large container piece, which centers the content --*/
#container{
	background-color: #FFF;
	width: 670px;
	margin: 0px auto;
	text-align: left;
   	position: relative;
   	padding: 0px;
	overflow: hidden;
	background-image: url(images/WoodenRobotBg.gif);
	background-repeat: no-repeat;
}

/*-- the following two elements are for the blurbs at the top right --*/
#summary{
 	float: right;
 	margin-top: 150px;
 	margin-right: 20px;
	width: 150px;
}

#summary .p1 {
 	text-transform: uppercase;
 	text-align: right; 
 	font-size: 10px;
}

/*-- This is the main container div within the larger container--*/
#mainbar{
	width: 670px;
	overflow: hidden;
}


/*-- this is the menu at the top tight --*/
#nav
{
	display: block;
	width: 650px;
	padding: 10px;
	text-align: center;
	margin-top: 75px;
}

/*-- container div for the new content, nested in left float div --*/
#newsstuff{
	width: 400px;
	background-color: #FFF;
	margin-left: 15px;
	margin-top: 10px;
}

/*-- title div--*/
#newsstufftitle{
	width: 400px;
	height: 24px;
	background-color: #FFF;
	background-image: url(images/NewStuff.gif);
}

/*-- blank content box --*/
#newstuffcontent{
}

/*-- same as above but for old content --*/
#oldstuff{
	width: 310px;
	background-color: #FFF;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	float: right;
}

#oldstufftitle{
	width: 310px;
	height: 24px;
	background-color: #FFF;
	background-image: url(images/OldStuff.gif);
}

#oldstuffcontent{
}

/*-- same as above but for feature content --*/
#featured{
	width: 305px;
	background-color: #FFF;
	margin-top: 10px;
	margin-left: 15px;
	margin-bottom: 10px;
	overflow: hidden;
	float: left;
}

#featuretitle{
	width: 305px;
	height: 24px;
	background-color: #FFF;
	background-image: url(images/FeaturesTitle.gif);
}

#featurecontent{
	padding: 5px;
}

/*-- news container div, nested in right float --*/
#news{
	width: 215px;
	background-color: #FFF;
	margin-right: 10px;
	margin-top: 10px;
	overflow: auto;
}

#newstitle{
	width: 215px;
	height: 24px;
	background-color: #FFF;
	background-image: url(images/News.gif);
}

#newscontent{
	padding: 5px;
}

/*-- footer bar lies outside of container div in order for it to align correctly in IE --*/
#footer{
	display: block;
	text-align: center;
	width: 670px;
	background-color: #000;
	margin: 0px auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

/*-- left and right divs to divide the main page into columns --*/
#left{
	float: left;
}

#right{
	float: right;
}

/* -- generic div class in order for the columns to float correctly --*/
div.clearer{
	clear: both;
}

/* -- The following two divs are for the generic content, and are called on every page but the main --*/

#template{
	float: right;
	width: 650px;
	background-color: #FFF;
	margin: 10px;
	border-color: #000;
	border-width: 1px 0px 0px 0px;
	border-style: solid;
	padding-top: 5px;
}

#content{
 padding: 5px;
}

#email{
	text-align: center;
	margin-bottom: 10px;
}