/* ------------- general page parameters ------------- */
body {
 font-family: Georgia, Times, "Times New Roman", serif;
 background-image: url("bkgnd.gif");
 background-color: #280000	/* dark background - in case the background image is lost */
}

#pageoutline {
 width: 900px;			/* fixed width text page optimized for 1024 display */
 margin:0;			/* make sure browser doesn't pad margins */
 padding: 0;			
 margin-left:auto;		/* center elements */	
 margin-right:auto;
 border: 3px solid #c0c0c0;	/* thin gray border around whole page */
/* background-color: #FFD39B;*/	/* test - light brown */
}


/* ------------- Center navigation CENTER parameters ------------- */
#navcenterborder {
 width: 612px;			/* exactly horizontal list width to center it (6x100+ 2x6 = 612)*/
 margin-left:auto;		/* center block */
 margin-right:auto;
/* background-color: #ffd700*/	/* gold */
}

#navcenter ul {
 list-style-type: none;		/* menu without bullets */
 margin: 0;			/* remove any margin padding */
 padding: 0;
}

#navcenter li {
 float: left;			/* horizontal menu */
}

#navcenter a {
 width:100px;			/* fixed size "blocks" for horizontal menu */
 height:20px;			/* leave some space above and below 12px text */
 border-left: 1px solid #fff;	/* vertical line to the left and right of menu text */
 border-right: 1px solid #fff;
 text-align:center;		/* text in the center of the block */
/* text-decoration:none;*/	/* leave text underline until hover */
 font-family:Comic Sans MS;
 font-size:12px;
 color:#fff;			/* make text white so visible on blackish background */
 float:left;
}

#navcenter a:hover {		/* when hovering */
 color:#ffd700;			/* select visible text over black background */
 text-decoration:none;		/* remove text underline */
/* background:#fff;*/		/* leave background */
}

/* ------------- Main body of page ------------- */
#mainbodyborder{
 clear: both;			/* start on a new line */
 width: 900px;			/* text block is 900 wide */
 margin-left:auto;
 margin-right:auto;		/* centered */

 background-color: #ffffff;
}

#mainbody {
 clear: both;			/* start on a new line */
 width: 840px;			/* text block is 900 wide - so leave a margin on each side */
 margin-left:auto;
 margin-right:auto;		/* centered */
 background-color: #ffffff;
/* background-color: #ff3030;*/	/* red background */
}


