@charset "utf-8";
* {
	margin: 0px; /* ------ this strips ALL margins/padding off EVERYTHING --- */
	padding: 0px;
}

#sidebar {	display: none;  }
body {
	background-color: #2b3485;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%; /* should get in the habbit of using %s for other interent displaying devices */
	background-repeat: repeat-x;
}
#wrapper {
	position: relative;
	width: 300px;
	margin: 0 auto;
	text-align: left; /* this is to fix an i.e. problem */
	background-color: #fff;
	background-repeat: repeat-y;
}
#clear { /* --- this will clear the Float commands, needs to be used on footers!Something like <div id="clear"></div> --- */
	clear: both;
}
/* ------------ position container elements --------------- */
	
#header {
	postioin: relative; /*this says everything inside that uses position, resets the 0,0 to it's (the header div) top left*/
	/* this would be used for graphic logos in the header*/
	height: 120px; /* thats a fixed height. */
	background-color: #1D225A;
	background-image: url(../../../Copy%20of%202/site/_images/bg_header_mobile.jpg);
	background-repeat: no-repeat;
	position: relative;
}
#header li {
	float: left;
}
#header ul {
	margin:0;
	padding:0;
	list-style: none;
	float: left;
	position: absolute;
	bottom: 0px;
}
/*if styling everything different, you need to do it in this order: *LoVe/HAte* Link / Visted / hover  / active*/

#header ul li a:link, #header ul li a:visited {
	display: block; /*this allows the entire area to 'trigger' the link.*/
	color:#FFFFFF;
	padding: .5em .3em;
	text-decoration:none;
	background-color: #2B3282;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.2em;
	border-bottom: solid;
	border-bottom-width: 2px;
	border-color: #000000;
	font: 0.9em;
}
#header ul li a:hover, #header ul li a:active {
	color:#1c2158;
	background-color:#6f7edc;
	border-bottom: solid;
	border-bottom-width: 2px;
	border-color: #6f7edc;
}
#header ul li a.current, #header ul li a.current:hover, #header ul li a.current:active {
	color: #2B3282;
	background-color:#FFFFFF;
	cursor: default;
	border-bottom: solid;
	border-bottom-width: 2px;
	border-color: #FFFFFF;
}
#content {
	float: left;
	width: 290px;
	margin: 5px;
}

/* ------------ font/text/headers elements --------------- */
h1 {
	margin: 0 0 0 -9999px;
}

.addressFont {
	font-size: 90%;
	padding-left: 25px;
	letter-spacing: 1.5px;
	line-height: 100%;
	margin-top: -5px;
	color: #666666;
}

hr {
	margin-top: .7em;
	margin-bottom: .7em;
}
.jobtitle {
	color: #1B2057;
	font-weight: bold;
}

#content p {
	margin-bottom: .4em;
	text-indent: .5em;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#content ul {
	list-style-type: circle;
	margin-left: 2em;
	padding-bottom: 1em;
	color: #333333;
}
/* ------------ footer elements --------------- */
#footer {
	color: #fff; /* color of the text inside */
	font: .6em "Trebuchet MS", Helvetica, sans-serif;
	background: #000;
	padding: 0px;
	width: 300px;
}
#footercontent {
	float: left;
	width: 200px;
}
#footersidebar {
	width: 90px;
	float: right;
	text-align: right;
}
