/*
 * The Major ID elements in a Liberty layout
 *
 */
#Page {
}

#MenuV
{
   font-family: cursive;                    /* Site Design                                  */
	font-size: 1em;                          /* */
	font-weight: bolder;                     /* */
	left: 0.5em;                             /* Effectively leaves a little margin           */
   margin: 0em;                             /* Leave no room for a browser to               */
	overflow: hidden;                        /* Chop off anything that doesn't fit           */ 
	padding: 0em;                            /*  misinterpret these values                   */
	position: absolute;                      /* Has to be, otherwise 3pixel jog screws up IE */
   top: 9em;                                /* set in EMs to align with WorkArea            */ 
	width: 12.5em;                             /* Limit size to display in WorkArea margin     */

}   

#WorkArea {
	background-color: white;
   border: 1px solid #535A95;
   font-size: 1em;
 	margin-bottom: 1em;
   margin-left: 13em;
	margin-right: 1em;
	margin-top: 9em;
 	padding: 0.4em;
	line-height: 1.5em;
   min-height: 40em;
}
* html #WorkArea {                         /* Tan hack for Minimum height in IE            */
	height: 40em;                           /*                                              */
}

#Footer {
   font-size: smaller;                    /* Smaller is appropriate for the footer        */
   margin-left: 10em;                     /* So its about the same width as the WorkArea  */
   margin-right: 1em;                     /* But not hard against the right side          */  
   text-align: right;                     /* Right align                                  */
}
#Footer P {
}

