@charset "utf-8";
/* CSS Document */

body  {
	background: url(i/bgBody.jpg) repeat-x #fff;
	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: #000000;
	font-size: 62.5%; /* Resets 1em to 10px */
	font-family: Arial, Helvetica, sans-serif;
}

img { border: none; }

#container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#menu {		
	background: url(i/bgMenu.jpg);
	margin: 0;
	padding: 10px 20px;	
	height: 100px;
	width: 720px;		
}
#links {
	float: right;
	display: inline;
	margin: 30px 30px 0 0;
	height: 35px;
}
a .alt { display: none; }
a#m1 {
    float: left;
	display: block;
    width: 70px;
    height: 35px;
    background-image: url(i/btnHome.gif);
    background-position: 0 0;    
}
a#m1:hover { background-position: 0 -35px; }
a#m2 {
    float: left;
	display: block;
    width: 128px;
    height: 35px;
    background-image: url(i/btnWhat.gif);
    background-position: 0 0; 
	margin: 0 10px;   
}
a#m2:hover { background-position: 0 -35px; }
a#m3 {
    float: left;
	display: block;
    width: 123px;
    height: 35px;
    background-image: url(i/btnContact.gif);
    background-position: 0 0;
}
a#m3:hover { background-position: 0 -35px; }

#header {
	background: url(i/bgHeader.jpg);
	height: 300px;
}

#flash {
	background: url(i/bgFlash.jpg);
	height: 300px;
}

#mainContent { 
	background: #fff;
	margin: 0;
	padding: 30px 20px 0 20px;
	min-height: 250px;
	font-size: 1.2em;
	line-height: 1.4;
}
#column {
	float: left;
	width: 340px;
	padding-right: 20px;	
}
#column1 {
	float: left;
	width: 360px;
}

#column2 {
	float: left;
	width: 180px;
	
}
#column3 {
	float: left;
	width: 500px;
	height: 400px;
}

#footer { 	
	clear: both;
	background: #fff;
	margin: 0;
	height: 150px;	
} 
#footer p {	
	padding: 0 0 0 5px;
	font-size: 1.0em;
	font-family: Arial, Helvetica, sans-serif;
	color: #999;
}
#footer a {
	text-decoration: none;
	color: #003366;
}
#footer a:hover { text-decoration: underline; }

.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;
}
