/*
color_1 - 8393CA; primary background
color_2 - A186BE; secondary background, borders, headlines
color_3 - 8393CA; link colors on navigation
color_4 - F1E5FF; hover colors on navigations
color_5 - D5DEFF; side column backgrounds

main link color -> 000089
visited link color -> 890000
active link color -> 890089
hover link color -> 000000
*/

/*  CORE CSS  */

html, body {
	background: #8393CA;
	margin: 0px;
	font-family: verdana;
	font-size: 8pt;
	font-weight: bold;
    height: 100%;
}

p {
	font-family: verdana;
	font-size: 8pt;
	font-weight: bold;
	text-align: justify;
}

a:link {
	color: #000089;
}

a:visited {
	color: #890000;	
}

a:active {
	color: #890089;
}

a:hover {
	color: #000000;	
}

h1 {
	font-size: 18pt;
	color: #A186BE;
	font-weight: bold;
}

h2 {
	font-size: 16pt;
	color: #A186BE;
	font-weight: bold;
}

h3 {
	font-size: 14pt;
	color: #A186BE;
	font-weight: bold;
}

h4 {
	font-size: 12pt;
	color: #A186BE;
	font-weight: bold;
}

h1.title {
	font-size: 20pt;
	color: #F1E5FF;
	font-weight: bold;
	margin: 10px 0px 0px 30px;
}

h2.tagline {
	font-size: 12pt;
	color: #F1E5FF;
	font-weight: bold;
	margin: 0px 0px 10px 30px;
}

h3.navheadline {
	color: #F1E5FF;
	background: #A186BE;
	border: 1px #F1E5FF solid;
	padding: 3px;
	font-size: 10pt;
	text-align: center;
}

blockquote {
	background: #F1E5FF;
	border: 1px #8393CA dashed;
	padding: 10px;
}

/* CLASSES */

#overwrap {
	background: #A186BE;
	border: 0px;
	border-left: 1px #F1E5FF solid;
	border-right: 1px #F1E5FF solid;
	margin: 0px auto 0px auto;
	height: 100%;
}

#header {
	height: 75px;
	background: #A186BE;
	border-bottom: 1px #F1E5FF solid;
}

#content {
	background: #FFFFFF;
	height: 100%;
}

#contenttable {
	width: 100%;
	height: 100%;
}

#leftcol {
	background: #D5DEFF;
	width: 160px;
	height: 100%;
	padding: 10px;
}

#maincol {
	background: #FFFFFF;
	width: auto;
	height: 100%;
	padding: 10px 15px;
}

#rightcol {
	background: #D5DEFF;
	width: 130px;
	height: 100%;
}

#footer {
	height: 40px;
	background: #A186BE;
	border-top: 2px #F1E5FF solid;
}

/*   NAVIGATION   */

#navcontent {
	margin: 0px;
	padding: 0px;
}

#navcontent ul {
	padding: 0;
	margin: 0;
	background-color: #D5DEFF;
	color: White;
	float: left;
	width: 100%;
	font-family: arial, helvetica, sans-serif;
}

#navcontent ul li {
	display: inline;
}

#navcontent ul li a {
	padding: 5px 1em;
	background-color: #D5DEFF;
	color: #000;
	text-decoration: none;
	float: right;
	border-left: 1px solid #F1E5FF;
}

#navcontent ul li a:hover {
	background-color: #A186BE;
	color: #FFF;
}


/*   LEFT NAVIGATION   */

#leftnav {
	margin: 0px;
	padding: 5px;
	font-size: 8pt;
	line-height: 12pt;
	width: 140px;
}

#leftnav ul, #leftnav li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	width: 130px;
}

#leftnav a:link, #leftnav a:visited {
	color: #8393CA;
	width: 130px;
	text-decoration: none;
}

#leftnav li a:hover {
	color: #F1E5FF;
	background: #8393CA;
	width: 130px;
	text-decoration: none;
}