/* stylesheet.css */


/* style rule for the page body * /
body {
     /* Float image to right of paragraph */
     img.floatLeft{
         float: left;
     /* Arial, Helvetica, or some other sans-serif font */
     font-family: Arial, Helvetica, sans-serif;
     text-align: center;
     margin: 0;
     padding: 0;
/* page header style */
#header{
       width: 250%;
       border-bottom: thin solid #191970;
       clear: both;
}
/* style for sidebar column */
#left_pane{
        float: left;
        display: inline;
        padding: 20em;
        margin: 1em;
        width: 8em;
        clear: both;
/* Total width is 10em */
}
/* style for main content column */
#main{
     display: inline;
     padding-left: 20px;
     padding-right: 10px;
     margin: 1em;
     margin-left: 10em;
     clear: both;
	 width: auto;
}
#footer{
       clear: both;
       width: 100%;
       border-top: thin solid #AA0000;
}
h1{
  font-family: Arial, Helvetica, FreeSans, sans-serif;
  text-align: center;
}
p{
 line-height: 2em;
}
/* makes background color yellow */
.hilite{
       background-color: #FFFF00;
}
