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


body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background:#333333;
	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;
}
#container {
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 25px auto 30px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	border-top: 10px solid #000;
	border-right: 20px solid #000;
	border-bottom: 10px solid #000;
	border-left: 20px solid #000;
}
#menu {
	background-color: #000;
	height: 20px;
	margin: 0px;
	border: 1px solid #000;
	width: 850px;
	padding: 0px 0px 15px;
	font: 0.9em/1em Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	letter-spacing: 0.27em;
}

#menu a{
color: #FFF;
text-decoration:none;
}
#menu a:hover{
color: #FF0000;
text-decoration:none;
}
#menu a:visted{
color: #FFF;
text-decoration:none;
}


#header {
	background: #000 url(images/header_bac.gif) no-repeat;
	height: 50px;
	padding: 0px 16px 0px 0px;
	margin: 0px;
	color: #FFFFFF;
	font: bold 12px/5em Verdana, Arial, Helvetica, sans-serif;
	text-align: right;
}
#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 */
}

#header a{
color: #FFF;
text-decoration:none;
}
#header a:hover{
color: #FF0000;
text-decoration:none;
}
#header a:visted{
color: #FFF;
text-decoration:none;
}
#maincontent {
	width: 850px;
	height:300px;
	padding: 0 40; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(images/index_bac.jpg);
	margin: 0px;
}

#maincontent p{
	margin: 0;
}


table {
	height: 200px;
	width: 650px;
	margin: 25px auto 0px;
	border: 1px solid #FFFFFF;
}
td {
	border: 1px solid #000000;
	padding: 12px;
}


#footer {
	padding: 12px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000;
	width: 850px;
	height: 60px;
	margin: 0px;	
}
#footer p {
	margin: 0;
	text-align:center; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	
}

#footer a {
	color:#FF0000;
	text-decoration:none;
	
}

#footer a:hover {
	color:#fff;
	text-decoration:none;
	
}

#footer a:visited {
	color:#FF0000;
	text-decoration:none;
	
}

.strap {
	color: #FFFFFF;
	font: normal 14px Verdana, Arial, Helvetica, sans-serif;
}

.address {
	font: 11px/1.7em Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	padding-top: 12px;
}
