
body {
	font: 100% Verdana;
	background: #363636;
	/*background-image:url(../img/page.jpg);*/
	background-repeat:no-repeat;
	background-position:center top;

	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 20px;
	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: #FFFFFF;
}

#container {
	width: 810px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image:url(./img/bg.jpg);
	margin: 0px 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. */
}
#header {
	background-image:url(./img/head.jpg);
	height: 100px;	
}
#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 */
}


#menu{
margin: 0px 0px 0px 15px;
display: inline;
float: left;
width: 100px;
	min-height:292px;
    height:auto !important;
    height:292px;
padding: 56px 0 0 0;
position:relative;
/*position:absolute; left:0px; top:0px;*/
}

#menu a {
outline:none;
}

#menu img{
margin: 0 0 3px 0;
border:0;
}

#content {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px 15px 0px 0px;	
	float:left;
	width: 660px;
}
#content p{
	font-size:small;
}

#content a:link {
	text-decoration:none;
	color: #ffffff;
}
#content a:hover {
	text-decoration: none;
	color: #6dcff6;
}
#content a:visited {
	text-decoration: none;
	color:#ffffff;
}

#footer {	
	clear:both;
	background-image:url(./img/foot.jpg);
	height: 25px;
	color:#6dcff6;
	text-align:center;
	font-size:11px;
}
#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 */

}
#endnote{
font-size:11px;
}

.tableof3 {	
	width:206px;
	float:left;
	text-align:center;
	
}
.tableof3 p{
font-size:small;
text-align:left;
}
.tableof3vert {
float:left; 
height:200px;
width:21px; 
background: url(./img/vspliter.jpg) no-repeat center ; 
}

