/* CSS Document */


body { 

      font:1em Georgia,"Times New Roman", Times, serif;
	  font-size:12px;
	  color:333;
	  background-color:f6f8e9;
	  min-width:750px;
	}
	#wrap {
		background:#99c;
		margin: 0 auto;
		width:750px;
	}
	
	div#wrap {
        position: relative; /*Set up #wrap as the positioning context*/
        width: 700px; /*Specifiy width*/
        margin: 0 auto; /*Center*/
       }
	   
	   h1 { height: 150px; 
	        width: 740px;
	   /*Specify height for header; could use unique id,
        e.g., h1#branding*/}

	#header {
		background:#ddd;
		font-weight:bold;
	}
	#header h1 {
    	padding:5px;
	    margin:0;
		font-weight:bold;
    }
	#nav {
		background: white;
		padding:5px;
	}
	#nav ul{
		margin:0;
		padding:0;
		list-style:none;
	}
	#nav li{
		display:inline;
		margin:0;
		padding:0;
	}
	#main {
		background: #FFFFFF;
		float:left;
		width:500px;
	}
	
	div#main {
        width: 500px; /*Specify width of main content area*/
    }

	#main h2, #main h3 {
		padding:5px 5px;
		font-weight: bold;
    }
	
	#main p
	{
	padding:0 10px;
	}
		
	#sidebar {
		background: white;
		top: 0;
		width:240px;
	}
	div#sidebar {
        position: absolute; /*Positioned absolutely RELATIVE TO #wrap, which
        is this element's positioning context*/
        top: 105px; /*Move down to avoid header/branding*/
        left: 500px; /*Push over to avoid main content area*/
    }

    div#sidebar h3 { background-color: #4682B4; /*Dummy CSS for testing position*/ }
	
	#sidebar ul {
		margin-bottom:20px;
		margin-top:10px;
		padding-top:10px;
    }
    #sidebar p {
		padding: 4.2px 4.2px;
		font-weight: normal;
    }
		
	#sidebar h3
	{
	    padding: 0px 0px;
		font-weight: bold;
		background:#ddd;
	}
	
	#contactcontent
	{
	position: float;
	right: 400px;
	}
	
	#footer {
		background:#ddd;
		clear:both;
	}
	#footer p {
		padding:5px;
		margin:0;
    }

#leftcontent, #rightcontent, #centercontent {
  width: 300px; /*set everything to one width; can change later, of course!*/
}
#centercontent {
  position: absolute; /*set to absolute positioning for quick 'n dirty testing*/
  top: 100px; /*move down to avoid h1 that's outside of your div's*/
  left: 325px; /*move left of leftcontent; give a 25px-gap (300px + 25px)*/
}

#rightcontent {
  position: absolute;
  top: 100px;
  left: 650px; /*move left of left- and centercontent (325px + 300px + 25px)*/
 }
h1 {
  color: #009999;
  font-family: Georgia;
  font-size: 2em;
  text-align: center;
}
h2 {
  color: #003300;
  font-family: verdana;
  font-size: 1.2em;
}
p {
  border:  1px solid black;
  padding: 10px;
  background: dd00;
  margin: 10px;
}
p#left {
  float: left;
  width: 200px;
}
p#right {
  float: right;
  width: 200px;
}
p#center { margin: 10px 231px; }
p {
  margin-left: 10px;
  padding: 8px;
}

#footer {
  text-align: center;
  border: #fc0 1px solid;
}
#footerbr { clear: both; } 


body { background: #030A11; }

h1 
{ 
	margin: 0;
	text-align: left; 
	height: 99px;
	background: #183663;
	padding: 10px 0 10px 0;
}

h1 img 
{ 
	float: left;
}

h1 span 
{ 
	float: left;
	font: 1.7em georgia, "Times New Roman", serif;
	line-height: 2em;
	margin-left: 20px;
	color: white;

}

h2 
{ 
	color: #0B7ECA; 
	border-left: 5px solid #699DC0;
	font: 1.2em arial;
}

#sidebar 
{
	background: #C5E3FF;
	padding: 0 0 10px 0;
	margin-top: 15px;
}

#sidebar h3
{
	margin: 0;
	background: #02448B;
	text-align: center;
	color: white;
	font: 1.1em arial;
	padding: 4px;
}

#wrap 
{ 
	background: white; 
}

p { border: none; }

#footer 
{ 
	background: white; 
	border: none;
}

	












