table#contenttable {
	font-size: 1.4em;
	}
/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* LIBRARY-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 170px; /*was 190px*/
 list-style: none;
 background: #892034 /*url(http://www.bpcc.edu/images/navigation/listmenu_o.png) left repeat-y*/; /*originally background: #F0F0F8 url(listmenu_o.png) left repeat-y;*/
 border: 1px solid #d49100; /*originally border: 1px solid #654;*/
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: -10px;/*orginally 0*/
 left: 150px;/*originally 170px*/
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;
}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 3px 4px 3px 30px;
 color: #d49100; /*originally color: #000;*/
 text-decoration: none;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 0.9em;
 font: bold;
 border: 1px solid transparent; /*originally border: 1px solid transparent;*/
 margin: 0;

}
/* HACKS: MSIE6 doesn't support transparent borders, mimic with margins */
* html .menulist li a {
 border-width: 0;
 margin: 1px;
}


.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #d49100; /* originally background-color: #46A;*/
 padding: 2px 5px 4px 29px;
 border: 1px solid #ADF; /*originally border: 1px solid #ADF;*/
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #d49100; /*originally background-color: #68C; */
 border: 1px solid #CDE;
 margin: 0;
}

.menulist a:visited { /*added*/
color:#d49100;
}

.menulist a:visited:hover { /*added*/
color:#fff;
}


.menulist a .subind {
 float: right;
}

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hacks */
ol.nestedlist li {
	margin-bottom: 1em;
	}
ol.nestedlist li li {
	list-style-type: lower-alpha;
	margin-top: 1em;	
	}
h3 {
	padding: 0.9em 0 0 0;
	margin: 0 2em -1px 1.5em;
	font-size: 0.9em;
	border-top: 1px solid #000000;
	}
.h3indent {
	padding: 0.2em;
	margin: 0 2em 0 2em;
	font-size: 1em;
	}