/* font properties specified for the body selector apply to text in general */

body {
		  font-family : Verdana, Georgia, Helvetica, sans-serif; 
          font-size : 11pt;
}

div.leftmenu {
  color : #FFFFFF;
  position : absolute;
  left : 10px;   /* distance from the left border of the browser window */
  width : 200px;
  background : #B1B163;
  margin-top : 10px;
  padding-left : 8px;  /* space between content and border of the menu block */
  padding-top : 6px;
  padding-right : 1px;
  padding-bottom : 1px;
    }

div.contentmain {
  color : #000000;
  margin-left : 220px; /* distance from the left border of the browser window */
  margin-top : 10px;  /* space between contentmain block and the top block */
  margin-right : 1px;
  background : #E7E7CF;
  padding-left : 15px;
  padding-top : 15px;
  padding-right : 15px;
  padding-bottom : 15px;
  border-left : thin solid gray;
  border-top: thin solid gray;
  border-right : thin solid gray;			
  border-bottom : thin solid gray;
  }

div.banner {
  color : white;
  text-align : center;
  background : #660000;
  padding-top : 1px;  /* 0px will make the text stick to the top */
  padding-bottom : 1px; /* 0px will make the text stick to the bottom */
}

div.footer {
  text-align : center;
  background : #eeeeee;
  margin-top : 10px;
  padding-top : 10px;  /* 0px will make the text stick to the top */
  padding-bottom : 10px; /* 0px will make the text stick to the bottom */
}

h1 {     
		 font-family : Arial, sans-serif;
         font-size : 2.5em;  
         / *
   }
   
h2 {
		/ * font size will be 150% of the default size 11pt specified in the body */
		 font-family : Arial, sans-serif;
         font-size : 1.5em;
         margin-top : 0em;
}

h3 {     
		/ * font size will be 100% of the default size 11pt specified in the body */
		/ * as heading, it'll be automatically bold */
		font-family : Arial, sans-serif;  
   }

ol li { 	
		margin-top : 10px; 
   		/* the default space between list items is too close to my tastes */
		/* margin-top appears effective with Firefox 2, but not IE 6 */
	}

ul li { 	
		margin-top : 5px; 
   		/* the default space between list items is too close to my tastes */
		/* margin-top appears effective with Firefox 2, but not IE 6 */
	}


a:link {color: white}
a:visited {color: white}
a:active {color: white}
a:hover {color: black;}
