@charset "utf-8";
/* CSS Document */

/* Make all padding and margins begin at 0 */
* {
	margin: 0; 
	padding: 0;
}
/* Now apply padding and margins accross all block level elements for uniformity in all browsers */
h1, h2, h3, h4, h5, h6, p, blockquote, form, label, ul, ol, dl, fieldset, address {
    margin-bottom: 1em;
}
.firstline {
	margin-top: 20px;
}
/* and the standard list indentations */
ul {
    padding-left:2em;
    margin-left:0;
}
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	background-color: #000033;
	background-image: url(images/back9.gif);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.img {
	border:0;
}
.twoColFixLtHdr #container {
	width: 850px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #3F4A8A;
} 

.twoColFixLtHdr #header {
	background-color: #9999ff;
	background-image: url(images/background_logo_tiledb.jpg);
	text-align: center;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #navbar {
	margin: 0px;
	padding: 0px;
}
.twoColFixLtHdr #navbar ul {
	list-style: none;
	width: 818px;
	float:left;
	background-color:#F2EF00;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #0A1475;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #0A1475;
	margin-bottom: 0;
}
.twoColFixLtHdr #navbar ul li {
	float: left;
	display: inline;
}
.twoColFixLtHdr #navbar ul a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	display:block;
	padding: 0 2em;
	line-height: 2.1em;
	color: #471E5F;
	font-size: 75%;
	text-decoration: none;
	font-weight: bold;
	text-transform: uppercase;
}
.twoColFixLtHdr #navbar ul a:hover {
	color: #F2EF00;
	font-weight: bold;
	background-color: #471E5F;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	text-align: center;
	display: inline-block;
}
.twoColFixLtHdr #side1 {
	font-size: 12px;
	text-align: center;
	display: inline-block;
	margin-top: 30px;
	margin-right: 15px;
	margin-bottom: 30px;
	margin-left: 15px;
}
.twoColFixLtHdr #side1 a {
	color: #F2EF00;
	font-weight: bold;
}
.twoColFixLtHdr #side1 a:hover {
	text-decoration: none;
}
.twoColFixLtHdr h1 {
	font-size: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr h2 {
	font-size: 18px;
}
.twoColFixLtHdr h4 {
	font-size: 14px;
	font-family: "Book Antiqua";
	text-transform: uppercase;
}
.title {
	font-size: 16px;
	font-style: italic;
}

.twoColFixLtHdr h5 {
	font-size: 18px;
	margin-top: -15px;
	font-style: italic;
}
.twoColFixLtHdr #side2 {

}
.twoColFixLtHdr #mainContent {
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: -20;
	padding-left: 20px;
	background-color: #F7F0FB;
	color: #2B1238;
} 
.twoColFixLtHdr #mainContent p, li {
	font-size: 14px;
	line-height: 1.5em;
	font-family: "Book Antiqua";
}
.twoColFixLtHdr #footer {
	background-color: #F2EF00;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #471E5F;
	border-right-color: #471E5F;
	border-bottom-color: #471E5F;
	border-left-color: #471E5F;
	position: relative;
} 
.twoColFixLtHdr #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;
}
.fltrt img {
	border: thin solid #0A1475;
}
.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;
}
