body {
	font-family: Arial;
	font-size: 0.75em;
	background-color: rgb(0,51,102);
}

#main {
	width:760px;
	margin: 20px auto;
}

#banner {
	height:100px;
	margin:0px;
	background-image:url('img/logo.jpg');
	background-repeat:no-repeat;
	background-color: #66cccc;
	text-align:center;
	border:solid 1px black;
	
	/* CSS3, not yet supported by all browsers! */
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 0px;
	-moz-border-radius-bottomleft: 0px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px; 
}

#nav {
	margin-bottom:10px;
	border-bottom:1px solid black;
	border-left:1px solid black;
	border-right:1px solid black;
	background: #669999;
	height: 32px;
	
	/* CSS3, not yet supported by all browsers! */
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;  
}

/* all the ul's (including the ones in sub navs) */
#nav ul {
	list-style: none;
	padding:0em;
	margin:0em;
}

#nav .nav_sub_ul {
	display: none;
	position: absolute;
	top: 32px;
	left: 0; /* required for IE7 compatibility */
	border-top: 1px solid black;
	background: #669999;
	
	/* CSS3, not yet supported by all browsers! */
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-topleft: 0px;
	-moz-border-radius-topright: 0px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px; 
}

/* different widths for the different sub navs */
#nav_sub_about li {
	width: 220px;
}

#nav_sub_services li {
	width: 110px;
}

#nav_sub_members li {
	width: 100%;
}

#nav_main_ul {
	
}

/* affects all li's */
#nav li {
	float: left;
	position: relative;
	/* border: 1px solid red; */
}

/* affects just the main li's */
#nav .nav_main {
	border-right:1px solid black;
	height: 32px;
}

/* all links in the nav (including sub nav) */
#nav li a, span { 
	text-decoration: none; 
	color: #FFFFFF;
	line-height: 30px;
	padding: 5px;
}

/* just links in the sub nav */
#nav .nav_sub_ul li a { 
	display: block;
	padding: 0px;
	padding-left: 5px;
	line-height: 20px;
}

#nav li:hover .nav_sub_ul {
	display: block;
}

#nav li:hover { 
	background: #99cccc;
}

#nav .nav_active { 
	font-weight: bold;
}

#content {
	float: left;
	border:1px solid black;
	width: 738px;
	padding:10px;
	background: rgb(255,255,255);
	
	/* CSS3, not yet supported by all browsers! */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px; 
}

#footer {
	margin-top:10px;
	margin-bottom: 20px;
	float:left;
	text-align:center;
	border:1px solid black;
	width: 748px;
	padding:5px;
	background: #669999;
	color:white;
	
	/* CSS3, not yet supported by all browsers! */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px; 
}

/* table in menu about lifespark --> our members */
#content table.black-border {
	border-collapse: collapse;
	border-spacing: 0;
}

#content table.black-border td {
	border: 1px solid #000000;
	padding: 5px;
	
}
/* --- */

#content table.none td {
	padding: 5px 5px 5px 0 !important;	
	border: 0 !important;
}

#content h1 {
	font-size: 1.6em;
	color: #003366;	
	font-weight: bold;
}

#content h2 {
	font-size: 1.2em;
	font-weight: bold;
	color: #003399;
	margin-top: 20px;
}

/*
#content a:link, a:visited, a:active, a:hover  {
	text-decoration: none;
	color: #336666;
}*/