
/* layout1.css*/

body {
	margin:0px;
	padding:0px;
	font-family:verdana, arial, helvetica, sans-serif;
	color:#333;
	background-color: #57B550;

   }
h1 {
	padding:0px;
	font-size:28px;
	line-height:28px;
	font-weight:900;
	color: ; margin-left:0px; margin-right:0px; margin-top:0px; margin-bottom:15px
	}
	
h2 { font-family: verdana, arial, helvetica, sans-serif;
     color: #09c;}	
	
h3 { font-family: verdana, arial, helvetica, sans-serif;
     color: #09c;}	
	
p {
	font:11px/20px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 16px 0px;
	padding:0px;
	}
#Content>p {margin:0px;}
#Content>p+p {text-indent:30px;}

a {
	color:#09c;
	font-size:11px;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}
a:link {color:#09c;}
a:visited {color:#07a;}
a:hover { 
          background-color:#eee;
          color: black; 
}

#Header {
	margin:50px 0px 10px 0px;
	padding:17px 0px 0px 20px;
	height:32px;
	border-style:solid;
	border-color:black;
	border-width:1px 0px 1px 0px;
	line-height:11px;
	background-color: white;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Ryan Peetz for the hack. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:14px;
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. */
body>#Header {height:14px;}

#Content {
	margin:0px 50px 50px 200px;
	padding:10px;
        background-color: ffffcc;
	}

#Menu {
	position:absolute;
	top:100px;
	left:20px;
	width:172px;
	padding:10px;
	background-color: white;
	border:1px dashed #999;
	line-height:17px;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:150px;
	}
/* Again, "be nice to Opera 5". */
body>#Menu {width:150px;}