@charset "utf-8";

/* CSS Document - OAGE Main Layout Design */
body.pgLayout  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CCCC99;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.pgLayout #container {
	width: 48em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.pgLayout #pageHeader { 
	background: #FFFFFF; 
	margin: 0;
	padding: 0 5px;
} 

.pgLayout #pageMenu {
	float: left; 
	width: 190px; /* since this element is floated, a width must be given */
	background: #F2F2F2; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0; /* top and bottom padding create visual space within this div */
}

.pgLayout #pageMenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-family: "Times New Roman", Times, serif;
	font-size: 18px;
}

.pgLayout #pageMenu li {
	margin: 0 5px 0 5px;
}

.pgLayout #pageMenu a {
	display: block;
	width: 176px;
	margin: 0;
	padding: 3px 2px 3px 2px;
	border: 1px solid #666666;
	background: #99CCFF;
	text-align: center;
	text-decoration: none;
	color: #000000;
}

.pgLayout #pageMenu a:link {
	color: #000000;
}

.pgLayout #pageMenu a:hover {
	background: #333366;
	text-decoration: none;
	color: #FFFFFF;
}

.pgLayout #pageMenu #RSS_Link p {
	margin: 0;
	padding: 2px 25px 2px 25px;
	border: 0;	
}
.pgLayout #pageMenu #RSS_Link a.rssLink {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: #CC6600;
	text-decoration: none;
	background-color: #F2F2F2;
	background-image: url(images/rss_icon.gif);
	background-repeat: no-repeat;
	background-position: left;
	text-align: left;
	text-indent: 22px;
	display: block;
	height: 24px;
	width: auto;
	padding: 8px 0px 0px 0px;
	border: 0;
}

.pgLayout #pageMenu #RSS_Link a:link.rssLink {
	color: #CC6600;
	text-decoration: none;
}

.pgLayout #pageMenu #RSS_Link a:hover.rssLink {
	color: #990000;
	text-decoration: underline;
}



.pgLayout #pageMenu #AskLinks p {
	margin: 0;
	padding: 2px 5px 2px 15px;
}

.pgLayout #pageMenu a.AskExpert {
	display: block;
	width: 150px;
	margin: 0;
	padding: 3px 2px 3px 2px;
	border: 1px solid #666666;
	background: #FFFFFF;
	text-align: center;
	text-decoration: none;
	color: #006600;
	font-style: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;
}

.pgLayout #pageMenu a.AskExpert:link {
	color: #006600;
}

.pgLayout #pageMenu a.AskExpert:hover {
	background: #669966;
	text-decoration: none;
	color: #000099;
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.pgLayout #pageContent {
	margin: 0 10px 0 200px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0;
	font-size: 0.85em;
} 

.pgLayout #pageContent h1{
	padding-top: 5px;
	padding-bottom: 12px;
	font-size: 2.0em;	
	margin: 0px;
} 

.pgLayout #pageContent h2{
	padding-top: 5px;
	padding-bottom: 8px;
	font-size: 1.6em;	
	margin: 0px;
} 

.pgLayout #pageContent h3{
	padding-top: 5px;
	padding-bottom: 4px;
	font-size: 1.2em;
	margin: 0px;
} 

.pgLayout #pageContent p{
	padding: 4px 2px 6px 2px;
	margin: 0px;
}

.pgLayout #pageContent p.paraIndent {
	padding: 0px;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 6px;
	margin-left: 25px;
}

.pgLayout #pageContent ol{
	padding: 0;
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 4px;
	margin-left: 20px;
}

.pgLayout #pageContent ul{
	padding: 0;
	margin-top: 4px;
	margin-right: 2px;
	margin-bottom: 6px;
	margin-left: 25px;
}

a {
	font-weight: 400;
	color: #000099;
	text-decoration: none;
}

a:link {
	color: #000099;
	text-decoration: none;
}

a:hover {
	color: #0000FF;
	background-color:#FF6600;
	text-decoration: underline;
}


.pgLayout #pageFooter { 
	padding: 0 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#F2F2F2;
} 
.pgLayout #pageFooter p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.pgLayout #pageFooter div.timestamp {
	font-size: 0.65em;
	font-style: italic;
	font-weight: 400;
	text-align: center;
}

div.NavigationBar {
	width: 100%;
	margin: 0;
	padding: 2px 0 5px 0;
	background: #F2F2F2 none;
	text-align: center;
}

div.NavigationBar a {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	text-decoration: none;
	color: #000066;
}

div.NavigationBar a:link {
	color: #000066;
}

div.NavigationBar a:hover {
	text-decoration: none;
	color: #0000CC;
}


.clearFloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.pgLayout #container #pageContent li {
	margin-top: 2px;
	margin-right: 4px;
	margin-bottom: 12px;
	margin-left: 4px;
}
