/*This is linked to CSSProject.html*/ 

body {
	background-color: #99CCFF;
	margin:0;
}

h1,h2,h3{ 
	margin:0;
	font-family:arial;
}

p {
	color:black;
}

#header {
	
	text-align: center;
	background-color:#6699CC;
	margin-top:0;
	padding: 5%;
	border: solid 10px #336699;
	margin-bottom: 20px;
	font-family:arial;
	font-size:120%;
}
#content {
	margin: 0 5% 0 360px;	
}

#footer {	
	text-align: center;
	background-color:#6699CC;
	margin-top:50px;
	margin-bottom:0;
	padding: 0%;
	border: solid 5px #336699;	
	font-family:arial;
	font-size:100%;
}	
/* ==== begin menu ==== */



	
#menu{

	/* use the following to make the menu fixed */
	
	position: fixed;
	left: 50px;
	top: 185px;
	

	color: #FFF;
	float: left;
	text-align: left;
	border: outset white 5px; 
}
	
#menu h1 {
	margin: 0.5em 0;
	text-align:center;
}

#menu ul {
    list-style-type: none;
    margin:0;
    padding:0;
	border: solid #0099ff 1px;
} 
#menu li {
   /* padding:0;  not needed */
   border: solid #0099ff 1px;
}

#menu a {
    display: block;
	padding: 4px 7px;
    width: 200px;	/**** This sets the width of the menu ****/
	background-color:#003366;
	color: #FFF;
	text-decoration:none;	
}
#menu a:hover{
	background-color: #06A;
}

/* curr could by an ID or a CLASS */
#menu #curr{
	color: #FFF;
	background-color: #090;
	font-weight: bold;
	padding: 2px 7px;
}
/* ==== end of menu ==== */

/* --- Layout divisions (ID) --- */

#page-wrap {
	background: #003;
	min-width: 760px;  
	max-width: 1500px;
	margin: 10px auto; 
	padding-top: 10px;
	padding-bottom: 10px;
	overflow: hidden;
}


.boxed {
	border: solid 4px black;
	padding:8px;
    background-color:#6699CC;
}



	