*{font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;}

hr {
	color:#18263f;
	background-color:#18263f;
	height:1px;
	border:none;
	margin-top:25px;
	margin-right:10px;
}

a:link {color:#b00010; text-decoration:none; font-weight:bold;}      /* unvisited link */
a:visited {color:#b00010; text-decoration:none; font-weight:bold;}  /* visited link */
a:hover {color:#b00010; text-decoration:underline;}  /* mouse over link */

form#search {  	/* styles the form tag; form styling based on Rachel Andrew's instructions at: http://www.sitepoint.com/style-web-forms-css-2/ */
	color: #000000;  
	padding: 4px;
	font-size: 10px;  
	text-align: right;  
}

#search .text {  	/* styles the input field for the search form */
	font-family: Verdana, Arial, Helvetica, sans-serif;  
	font-size: 12px;  
	width: 200px;  
	margin-right: 6px;  
}

#search .buttons {  	/* styles the buttons for the search form */
	font-size: 10px;  
	background-color: #e4eaee;  
	color: #000000;  
	margin-right: 6px;  
}

body		/* much of the following adapted from Russ Weakley's sample CSS layout here: http://www.maxdesign.com.au/articles/css-layouts/three-liquid/ */
{
	background: #ffffff;
	color: #18263f;		/* default font colour */
}

#container
{
	margin: 0 auto;
	width: 90%;
	background: #ffffff;
}

#header
{
	background: #e4eaee;
	color: #b00010;
	font-size:130%;
	padding: 20px;
}

#header h1 { margin: 0; }

#navigation
{
	float: left;
	width: 100%;
	background: #18263f;
}

#navigation ul
{
	margin: 0;
	padding: 0;
}

#navigation ul li
{
	list-style-type: none;
	display: inline;
}

#navigation li a
{
	display: block;
	float: left;
	padding: 5px 10px;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
}

#navigation li a:hover { background: #b00010; }

#content-container1
{
	float: left;
	width: 100%;
	background: #fff;
}

#content-container2
{
	float: left;
	width: 100%;
	background: #fff;
}

#section-navigation
{
	float: left;
	width: 16%;
	padding: 20px 0;
	margin: 0 2%;
	display: inline;
	font-size: 94%;
}

#section-navigation p {  /* makes navigation column paragraphs have hanging indent */
    padding-left: 18px ;
    text-indent: -18px ;
}

#content
{
	float: left;
	width: 67%;
	padding: 20px 0;
	margin: 0 0 0 2%;
	font-size: 94%;
}

#content h2 { margin: 0; }

#aside
{
	float: right;
	width: 5%;
	padding: 20px 0;
	margin: 0 2% 0 0;
	display: inline;
	font-size: 85%;
}

#aside h3 { margin: 0; }

#footer
{
	clear: both;
	background: #e4eaee;
	font-size: 85%;
	text-align: right;
	padding: 10px;
	height: 1%;
}
