/* 
------------------------------
    generic styling  
------------------------------	*/
/*  clear browser defaults  */
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, a {
  margin: 0;
  padding: 0;
  border: 0;
		font-size: 100.01%;  /* compensates for several browser bugs */
  }

/*  set site defaults */
body {
  font-family: Verdana, Arial, "Lucinda Grande", sans-serif;
  background:  #006699;
  color: #D6D6D6;
  font-size: 1em;      /* compensates for several browser bugs */
  line-height: 1.4;    /* default line-height for readability */
  }

/*  all links default to off-white */
a {
  color: #D6D6D6; 
  }
  
a:hover {
  color: #FAFAFA;
  }  

/*  remove default border from all images */
img {
	 border: 0;
   }		

/*  default to zero top margin on paragraphs due to margin collapsing issues */
p {
	 margin: 0 0 .7em;
  } 	 

h1 {
	font-size: 1.5em;
	font-weight: normal;
 color: #FAFAFA;
	padding-top: 5px;
	padding-bottom: 10px;
	border-bottom: solid 1px #D6D6D6;
	margin-bottom: 10px;
  }					
		
h2 {
	font-size: 1.2em;
	font-weight: normal;
 color: #FAFAFA;
 padding-top: 1em;
}	

ul {
  margin: 0 0 .7em 3em;
  }

/*
---------------------------------------
    page structure
--------------------------------------- */				

#pagewrapper { 
	width: 90%;  
	background: transparent;
	margin: 0 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. */
} 

#contentwrapper {
  float: right;
  width: 73%;
  background-image: url(images/atsign.png);
  background-repeat: no-repeat;
  background-position: 15em 10em;
  }

#sidebar {
	float: left;          /* sidebar float will drop on IE but I'm OK with it */
	width: 24%;           /* since this element is floated, a width must be given */
	background: transparent;  
	padding: 0px;    
 }

#sidebar img {
 padding: 30px 0 10px 20px;
}

#masthead {
 width: 100%;
}

#masthead img {
 padding-top: 5px;
}

#content {
  width: 100%;
  height: 31em;    /* really want min-height here but IE does not support it */
} 

/*
---------------------------------------
    sidebar specific
--------------------------------------- */	

#sidebar ul {
  margin: 0;
}

#sidebar ul li {
  margin-left: 3em;
		padding: 0 0 1em 0;
  font-size: 75%; 
		font-weight: bold; 
		font-family: Arial, Helvetica, sans-serif;
}
#sidebar ul li a {
  text-decoration:underline;
		}
		
#sidebar a:link, 
#sidebar a:active, 
#sidebar a:visited {
  color: #FAFAFA;
  text-decoration: underline;
		}
		
#sidebar a:hover {
  color: #353535;
  text-decoration: underline;
		}
/*
---------------------------------------
    contact specific
--------------------------------------- */	
#contact p {
	 margin: 0;
  } 	 




