/*CSS RULES:
 *  multiple word names are separated with underscore, all lowercase
 */

/* COLOUR SCHEME:
 * BG:      #0b101f
 * Dark:    #1d2b54
 * Insens:  #3b56a8
 * Active:  #5983ff
 * Text:    #dddddd
 */

@charset "UTF-8";

#header
{
	width: 100%;
	margin-top: 0;
}
#navigation
{
	margin-top: 0;
	padding-bottom: 100px;
	text-decoration: none;
}
#navigation li
{
	padding-top: 80px;
	list-style: none;
	float: right;
}
#pagetitle
{
	margin-right: 1em;
	text-align: right;
}
#navigation a
{
	padding: .5em;
	padding-top: 80px;
	min-width: 5em;
	text-transform: lowercase;
	text-decoration: none;
	color: #3b56a8;
}

#navigation a.active,
#navigation a:hover
{
	background: #1d2b54;
	text-decoration: none;
	color: #3b56a8;
}
#navigation a:hover
{
	border-bottom: 2px solid #cccccc;
	color: #cccccc;
}
