/* das.css */

/* Universal style rule */
*{
  margin: 0;
  padding: 0;
  /* border: dashed 1px #f00; */	/* Temporary borders */
}

body {
  background-color: #117b6f;
  font-family: Arial, Helvetica, sans-serif;
}

#wrapper{
  width: 920px;
  background-color:#b0fff0;
  /* Put 20px margin above the wrapper */
  /* Set right and left to auto for centering */
  margin: 3em auto; /* was 20 px changed to 140 aug 24 2011 and removed two photos*/
  position:relative;
} 


/********** Major layout divisions **********/
#branding{
  /* For absolutely-positioned hyperlinks */
  
	height:10em;
	background-color:#553c35;
	color:#f4dec8;
	text-align:center;
	line-height:2em;
	padding:0.25em;
} 
#branding h1{
	font-family:'Arial Black', Charcoal, Impact, Sans-serif;
	font-size:1.7em;
	padding: 0.15em;
}

#branding h2{
	font-family:arial, helvectia, Sans-serif;
	font-size:0.8em;
	padding: 0.25em;
}



/* Fixes the mysterious image gap */
#branding img{
  display:block;
}




/*************** Beginning of Table styles ************/



p {
	text-align: center;
	font-size: 1.75em;
	color: #000;
	padding: .5em:
}








table {
	width: 55em;
	text-align: center;
	margin: .25em auto;
	
}



td{
	
	border: solid 2px #2e8b57; /* sea green */
	font-size: 1em;	
	font-weight:600;
	
	color: #000;		/* black text */
	vertical-align: top;
	
}








td p{
	border: solid 1px #000;   /* places a 1 px border around paragraphs */ /* nov 18 2012 */
	
	font-size: 1em;
	padding: 1em;
	color: #000;
	text-align: center;
	text-indent: 25px;
}




td li{	font-size: .85em
	text-indent: 25px;		/*li explanation text*/
	color: #00f;	
	list-style-type: square;	/* list bullets are square nov 18 2012 */
	list-style-position: inside;	/* brings the bullett inside the list */	
	
}

td ul{
	border: solid 5px #000;			/*added October 3 2012*/
	font-size: 1.0em;
	border-style: groove;				/*brings list inside cell*/
	
	text-align: left;			/*text-align: justify;*/
	text-indent: .5em;
	background: #aba;
			
}





td ul a,					/*added October 4 2012*/
td ul a:link,
td ul a:visited{
  	text-decoration:underline;
  	font-family: Verdana, Geneva, Arial, Sans-Serif;
  	font-size: 1em;		/* Font size  */
  	color: #000;			/* text colour white */
  					/* background:#000; */ 	 					

}
td ul a:hover{					/*added October 4 2012*/
  	color:#00f; 	/* dark green */
  	border:dotted 2px #f00;	/* red dotted border */
	text-decoration: underline;	/* undrline on hover */
	padding: 1px;
}	
	


table a,
table a:link,
table a:visited{
  text-decoration:underline;
  font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size: 1em;		/* Font size  */
  color: #0aafff;			/* text colour blue */
  /* background:#000; */ 
  
  
 
  line-height:2em;
  text-align:center;
  outline-style:none;			

}

table a:hover{
  color:#f00; 	/* red */
  border:dotted 1px #f00;	/* red dotted border */
	text-decoration: underline;	/* undrline on hover */
	padding: 1px;
}




