@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color:	#000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(../img/background.png);
	background-repeat: repeat-x;
}

#container {
	width: 900px;  
	background:	#FFF;
	margin: 0 auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid 	#000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #000;
}

/*-------------------------------------------------Header------------------------------------------------------------ */
#header { 
	height: 75px;
	background: #FFF; 
	padding: 10px;  
	border-bottom: 2px solid black;
	background-image:url(../img/MLTGLOGO.png);
	background-repeat:no-repeat;
	background-position:center;
} 

/*----------------------------------------------------Navigation--------------------------------------------------------*/
#nav {
	height: 25px;
	color: #000;
	background:	url(../img/blue%20button2.png) repeat-x top;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}
#nav ul {
	margin: 0px;
	padding: 0px;
}
#nav ul li {
	border-right: 2px solid #000;
	height: 25px;
	margin: 0px;
	display: block;
	float: left;
	list-style: none;
	clear: right;
}
#nav ul li a {
	height: 25px;
	display: block;
	padding-right: 20px;
	padding-left: 20px;
	text-align: center;
	color:	#FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-decoration:none;
	line-height: 25px;
	font-weight: normal;
	
}
#nav ul li a:hover {
	background:	url(../img/blue%20button2hover.png) repeat-x top;
	text-decoration: none;
	color: #FFFFFF;
}
#nav ul li#active {
	background: url(../img/blue%20button2hover.png) repeat-x top; 
	text-decoration: none;
}
#nav ul li#active a {
	color: #FFFFFF;
}

/* ------------------------------------------------Main Content------------------------------------------------------ */
#mainContent { 
	padding: 10px 10px;
	
	 /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */  
} 
#mainContent h1{ 
	Padding: 0 0 0px 0;
	margin: 0 0 5px 0; 
	font-size:18px;
}
#mainContent p {
	font-size:12px;
	float: leftf;
	margin: 0;
	padding: 0;
}
#mainContent img{
	float: left;
	margin: 0 10px 0 0;
}

#mainContent ul, iframe{
	float:right;
}


/* ---------------Footer--------------- */
#footer { 
	padding:  10px 8em; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
} 
#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: 0px; 
	font-size: 10px;
	text-align: center;
	border-style: solid;
	border-color:	#06f;
	border-width: 1px 0 1px 0;
}

/* Miscellaneous classes for reuse */
.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: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
}
.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;
}
 

