@charset "UTF-8";
/* CSS Document */
/* SRC: http://talkerscode.com/webtricks/multiple-tabs-in-single-page-using-javascript-and-css.php */

body
{
 background-color:#2E3B0B;
 margin:0px auto;
 padding:0px;
 font-family:helvetica;
 height:2000px;
}
h1
{
 text-align:center;
 font-size:35px;
 margin-top:60px;
 color:#BEF781;
}
h1 p
{
 text-align:center;
 margin:0px;
 font-size:18px;
 text-decoration:underline;
 color:white;
}
#main_content
{
 margin-top:5px; /*50px;*/
 width:400; /*500px;*/
 margin-left:5px; /*250px;*/
}
/*
#main_content li
{
 display:inline;
 list-style-type:none;
 background-color:#688A08;
 padding:10px;
 border-radius:5px 5px 0px 0px;
 color:#292A0A;
 font-weight:bold; 
 cursor:pointer;
}
#main_content li.notselected
{
 background-color:#688A08;
 color:#292A0A;	
}
#main_content li.selected
{
 background-color:#D0F5A9;
 color:#292A0A;	
}
*/
/* Made these changes so the styling doesn't interfere with other LISTs */
#page1, #page2, #page3, #page4, #page5, #page6
{
 display:inline;
 list-style-type:none; /* intro2b  #FFE0A3 */
 background-color:#99e599; /*#688A08;*/
 padding:10px;
 border-radius:5px 5px 0px 0px;
 color:#292A0A;
 font-weight:bold; 
 font-size:12px;
 cursor:pointer;
}
#page1.notselected, #page2.notselected, #page3.notselected, #page4.notselected, #page5.notselected, #page6.notselected
{
 background-color:#99e599; /*#688A08;*/
 color:#292A0A;	
}
#page1.selected, #page2.selected, #page3.selected, #page4.selected, #page5.selected, #page6.selected
{
 background-color:#f1f0ee; /*#D0F5A9;*/
 color:#292A0A;	
}

#main_content .hidden_desc
{
 display:none;
 visibility:hidden;
}
#main_content #page_content
{	/*#F2E4BD; */
 background-color:#f7edd4;  /*#FFE0A3; /*#fbf6ea; /*#FFFFEB; /*#D0F5A9;*/
 padding:10px;
 margin-top:9px;
 border-radius:0px 5px 5px 5px;
 color:#2E2E2E;

/*line-height:normal;
*/ 
 line-height: 1.6em;
 word-spacing:4px;
 
}