/* thus begins thy journey into CSS */

/* Center #container, constrain to 830px width
----------------------------------------------- */

body {
	text-align: center;
	background-color: #004875;
	background-image: url(images/bg.png);
	background-repeat: repeat-x;
 }

#container {
	width: 810px;
	text-align: left;
	margin: 0 auto;
 }

/* Set up the columns
----------------------------------------------- */
#main {
    float: left;
    display: tablecell; /* for IE */
    width: 600px;
	border: 1px solid #000;
	background-color: #fff;

 }

#sidebar {
	background: #DADEE5;
    float: left;
    display: inline; /* for IE */
    width: 200px;
	border: 1px solid #000; border-left-width: 0px;
	padding: 0px;
	font-family: verdana; font-size: 8pt; color: #004875;

 }

/* Setting up the Main Column Contents
----------------------------------------------- */
#title {
    float: left;
    display: inline; /* for IE */
    width: 600px;
 }

#nav {
    float: left;
    display: inline; /* for IE */
	text-align: center;
	line-height: 30px;
  	width: 600px;
	height: 30px; 
	background: #bad2eb url(/images/nav-bg2.png) top center repeat-x;
	border: 1px solid #00366e; border-left-width: 0px; border-right-width: 0px;
 }

#content {
    float: left;
    display: inline; /* for IE */
	margin-left: 15px; margin-right: 15px;
 }


div.hr {
    float: center;
	border-bottom: 1px dotted #bfbfbf;
	width: 450px;
	padding: 0px; padding-top: 5px; padding-bottom: 5px;
	margin: 0px;
}


/* Fonts */

.main {
	font-family: Arial;
	font-size: 10pt;
	font-color: black;
}

.body {
	font-family: Arial;
	font-size: 10pt;
	font-color: black;
}
ol, ul, dl {
	margin-bottom: 0px;
	padding-bottom: 0px;
	
}

/* Links
----------- */

a { font-family: verdana; font-size: 8pt; color: #2020C6; font-weight: none; text-decoration: none; text-transform: none; }

a:hover { font-family: verdana; font-size: 8pt; color: #840000; font-weight: none; text-decoration: underline; text-transform: none; }

a.pl { font-family: verdana; font-size: 8pt; color: #004875; font-weight: bold; text-decoration: none; text-transform: uppercase; }
a.pl:hover { font-family: verdana; font-size: 8pt; color: #840000; font-weight: bold; text-decoration: underline; text-transform: uppercase; }

a.nav { font-family: verdana; font-size: 10pt; color: #703130; font-weight: bold; text-decoration: none; text-transform: none; }
a.nav:hover { font-family: verdana; font-size: 10pt; color: #004875; font-weight: bold; text-decoration: underline; text-transform: none; }