body{
	margin: 0px;
        padding: 0px;
        text-align: center;
        color: #000000;
        background-image: url(images/webback.png);
        background-repeat: repeat-x;
        background-position: top;
        background-color: #000A14;
	font-family: 'Arimo', sans-serif;
        font-size: 10pt;

}

ul#topnav{
	margin: 0;
	padding: 0;
	width: 100%;
	list-style: none;
	position: relative;
	font-size: 1em; 
	background: #003366;
	height: 34px;
}

ul#topnav li{
	float: left;
	text-align: center;
	overflow: hidden;
	background: #003366;
	height: 34px;
}

ul#topnav li a{
	color: #F0F0F0;
	padding: 5px 10px;
	display: block;
	text-decoration: none;
}

ul#topnav li a#home{
        padding: 2px;
}

ul#topnav li a#home img{
        border: 0px;
}

ul#topnav li:hover {
	background: #0052A3;
}

ul#topnav li span {
	float: left;
	padding: 15px 0;
	position: absolute;
	left: 0;
	top: 34px;
	display: none;
	width: 100%;
	background: #66A3E0;
	color: #FFFFFF;
}

ul#topnav li:hover span { display: block; }
ul#topnav li span a { display: inline; }
ul#topnav li span a:hover { text-decoration: underline; }	

div#container {
  width: 80%;  /* this will create a container 80% of the browser width */
  background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
  border: 3px solid #666666;
  text-align: left; /* this overrides the text-align: center on the body element. */
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  border-top-color: #000000;
  border-right-color: #000000;
  border-bottom-color: #000000;
  border-left-color: #000000;
} 

div#container div#header {
  border-top-color: #000000;
  border-right-color: #000000;
  border-bottom-color: #000000;
  border-left-color: #000000;
  background-color: #FFFFFF;
  font-size: 18pt;
  overflow: hidden;
  height: 100px;
  background-image: url(images/header.png);
  background-repeat: repeat-x;
  background-position: left top;
  padding: 0.5em;
} 

div#container div#header div#motto {
  float: right;
}

div#container div#header div#logo {
  float: left;
}

div#container div#sidebar1 {
  width: 15em; /* top and bottom padding create visual space within this div  */
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0;
  background-color: #25324c;
  color: #FFFFFF;
  padding-right: 0px;
  margin-right: 1em;
  border: 3px solid #000000;
  margin-bottom: 1em;
  float: right;
}

div#container div#sidebar1 h3, div#container div#sidebar1 p {
  margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
  margin-right: 10px;
}

div#mainContent {
  border-top-color: #CCCCCC;
  border-right-color: #CCCCCC;
  border-bottom-color: #CCCCCC;
  border-left-color: #CCCCCC;
  margin-right: 17em;
  margin-left: 10px;
  } 

div#footer {
  padding: 0 10px;
  background-color: #333333;
  font-size: smaller;
  color: #999999;
  text-align: right;
  border-top-width: 3px;
  border-top-style: solid;
  border-top-color: #666666;
} 

div#footer p {
  margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
  padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
  clear:both;
  height:0;
  font-size: 1px;
  line-height: 0px;
}

