/* CSS Document Name: one-columnfixed.css  Centering a Fixed Layout (from Andy Budd, CSS Mastery) Exercise 17 */
body {
	text-align:center;
	min-width: 760px;
	font-family:Georgia, "Times New Roman", Times, serif;
	background-color:#99f;
	margin:0;
}
#container { 
	width:720px;
	margin:0 auto;
	text-align:left;
	background-color:#99f;
	color:#fff;
}
/* The following navigation scheme (minitabs) comes from Dan Cederholm's book, Web Standards Solutions */
#mainNav {
	margin:0;
	padding:0 0 20px 20px;
	border-bottom:1px solid #ddd;
	width:auto;
}
#mainNav li {margin:0;
	padding:0;
	display:inline;
	list-style:none;
}
#mainNav a {float:left;
	line-height:14px;
	font-weight:bold;
	margin:0 10px 4px 10px;
	text-decoration:none;
	color:#fff;
}
//#mainNav a:active, #mainNav a:hover {
	border-bottom:4px solid #696;
	padding-bottom:2px;
	color:#363;
}
/* ----------END nav scheme from Dan Cederholm---------------- */

#content {
	width:auto;
	clear:left;
}
#content a{
	text-decoration:underline; 
	color:#fff; 
	font-family:verdana; 
	font-weight: bold; 
	font-size:14px;
}  

#content a:hover{
	text-decoration: none; 
	color:#eee;
}

#footer {clear:left;
	width:auto;
	padding:5px;
	border-top:1px solid #ddd;
	text-align:right;
	font-size:11px;
	color:#fff;
	background-color:#99f;
		
}
/* General text styles */

p {
	font-size:13px;
	padding:0 20px;
}
h1, h2, h3 {
	color:#fff;
	padding:0 20px;
}
	
h1 {
	font-size:2.6em;
}
