/* Adapted from BlueRobot's "The Layout Reservoir" http://www.bluerobot.com/web/layouts/ */
@import "aog.css";	/* Contains standard basic styles */
body
{
	margin: 130px 20px 20px 20px;
	font-size: 12px;
}
p
{
	text-indent: 0px;
	text-align: left;
}
h1{ margin: 0px 0px 15px 0px; }
h2{ margin: 0px 0px 5px 0px; }

/* All the content boxes belong to the content class. */
.content
{
	position: relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width: auto;
	min-width: 260px; /* 180px; */
	/* margin: 0px 210px 20px 170px;	/* margin: 130px 210px 20px 170px; */
	margin: 0px 210px 18px 170px;	/* margin: 130px 210px 20px 170px; */
	padding: 10px 10px 0px 10px; /* was 10px */
	border: 1px solid #F1D2D0;
	background-color: #ffffff; /* #ffebef; #eee; */
	z-index: 3; /* This allows the Content to overlap the right menu in narrow windows in good browsers. */
}
.content p
{	
	/* margin: 0px 0px 17px 0px; /* margin:0px; */
	margin: 0px 0px 12px 0px; /* margin:0px; */
	text-indent: 30px;
	text-align: justify;
}
.content p+p
{
	text-indent: 30px;
}

#navLeft
{
	position:	absolute;
	width:		150px;
	top:		130px;
	left:		20px;
	border:		1px solid #F1D2D0;
	padding:	10px;
	z-index:	2;
	/* background-color: #ffffff; #ffebef; #eee; */
	/* Hack that protects IE5/Win from its own stupidity. 
	 * Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
	 * IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style declaration.
	 * The incorrect IE5/Win value is above, while the correct value is below. 
	 * See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 128px;
}
	/* I've heard this called the "be nice to Opera 5" rule.
	 * Basically, it feeds correct length values to user agents that exhibit the parsing error 
	 * exploited above yet get the CSS box model right and understand the CSS2 parent-child selector.
	 * ALWAYS include a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#navLeft
{	width: 128px;
}
		
#navRight
{
	position:	absolute;
	width:		190px;
	top:		130px;
	right:		20px;
	border:		1px solid #F1D2D0;
	text-align:left !important;
	padding:	10px;
	z-index:	1;
	/* background-color: #ffebef; #eee; */
	/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family: inherit;
	width: 168px;
}
body>#navRight
{	width: 168px; /* Again, "be nice to Opera 5". */
	text-align: left;
}
