
/* 
   Kelli Wiseth
   CIS 112 WW
   Assignment 4 [Chapter 9 files] Added some basic text formatting and changed the underlining  
   				to single rather than double underscore.  
   infowinkit.css
   6-Dec-2009
*/

body { 
	font-family: Arial, Helvetica, sans-serif;
	margin: 40px;
	font-size: 12px; 	
	background-color: #eeeeee;
	}
	
p, td {
	font-size: 12px; 
	}
	

#infowin {
  position : absolute;
  left : 0px;
  top : 0px;
  background-color : #FFFFFF;
  opacity : 0.9;
  border : 2px solid #333333;
  padding : 6px;
  z-index : 1001;
  overflow : auto;
  cursor : default;
}

a.info:link {
	color : #333333;
	text-decoration : none;
	border-bottom: 1px dashed;
}

a.info:visited {
  color : #AAAAAA;
  text-decoration : none;
  border-bottom: 1px dashed;
}

a.info:hover, a.info:active {
  background : #EEEEEE;
  border-bottom: 1px dashed;
}

