/* 
   Kelli Wiseth
   CIS 112 WW
   Assignment 4 [Chapter 8] Added a couple of styles for the text on the page.
   modalimgkit.css
   6-Dec-2009
*/


/* Apply the transparent gray background image effect */
#modalwin {
  position : absolute;
  left : 0px;
  top : 0px;
  width : 100%;
  background-image : url(modalimgkit_gray.png);
  z-index : 1001;
}

/* Apply an IE-specific filter to optimize the transparent gray background image effect in IE */
* html #modalwin {
  background-image : none;
  filter : progid:DXImageTransform.Microsoft.AlphaImageLoader(src="modalimgkit_gray.png", sizingMethod="scale");
}

/* Dress up the content area containing the image */
#modalcontent {
  position : absolute;
  background-color : #EEEEEE;
  padding : 10px;
  border : 2px outset #333333;
  cursor : pointer;
  z-index : 1002;
}


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