@charset "UTF-8";
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: #FDEBB2;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background: #000;
}
/* CSS from tutorials www.alsacreations.com/articles */

.twoColFixLtHdr #container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #000000;
} 
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	position: relative;
	border: medium double #720201;
	background-color: #000000;
} 
.twoColFixLtHdr #header h1 {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 50;
	margin-left: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
.twoColFixLtHdr #topNav {
	width: 10px;
	margin-top: 150px;
	color: #FDEBB2;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
} 
.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;
}
.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;
}
#topNav ul {
	position: absolute;	/* ppositionning for IE5 et IE5.5 */
	top: 76px;
	left: 13px;	/* general menu background*/
	width: 320px;
	text-align: center;
	background-color: transparent;
	background-image: url(images/nav.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#topNav ul, li{	/* use of a list for the menu */
list-style-type: none;	/* clean up of the liste */
margin:0;
padding:0;
}
#topNav li {float: left;}
#topNav  li a {	/* buttons dimensions and definitions */
display: block;	/* <a> block to give it its dimensions */
height: 126px;
width: 80px;
color: #fff;
font-size: 14px;
line-height: 50px;	/* line height to avoid paddings */
font-weight: bold;
font-family: arial, serif;
text-decoration: none;
}
#topNav  li a:hover {
	background-color: transparent;
	background-image: url(images/nav.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#topNav a#menu1:hover {
	background-position: -323px 0%;	/* background move for each button */
}
#topNav a#menu2:hover {
background-position: -400px 0%;
}
#topNav a#menu3:hover {
background-position: -481px 0%;
}
#topNav a#menu4:hover {
background-position: -560px 0%;
}
