body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	text-decoration: none;
}

p {
	color: #000000;
}


h1 {
	font-family: Arial, Helvetica, sans-serif, Verdana;
	font-size: 1.4em;
	font-weight: bold;
	color: #990000;
	text-decoration: none;
	border: none;
}

h2 {
	font-family: Arial, Helvetica, sans-serif, Verdana;
	font-size: 1.3em;
	font-weight: bold;
	color: #000066;
	text-decoration: none;
}
h3 {
	font-family: Arial, Helvetica, sans-serif, Verdana;
	font-size: 1.2em;
	font-weight: bold;
	color: #000066;
	text-decoration: none;
}
h4 {
	font-family: Arial, Helvetica, sans-serif, Verdana;
	font-size: 1.1em;
	color: #000000;
	text-decoration: none;
}

#container {
	width:10em;
}
dl {
	margin: 0;
	padding: 0;
	border-left:1px solid #fff;
	border-right:1px solid #fff;
	background: #69c left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
dt {
	margin:0;
	padding: 0.2em;
	font-size: 1.1em;
	font-weight:bold;
	color: #fff;
	border-bottom:1px solid #fff;
	background: transparent;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
dd {
	margin:0;
	padding:0;
	color: #fff;
	font-size: 1em;
	border-bottom:1px solid #fff;
	background: #47a left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
}

#gallery a, #gallery a:visited {
	color:#fff;
	text-align:center;
	text-decoration:none;
	display:block;
	padding:0.2em;
	background: #47a;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
#gallery a:hover {
	background: #258;
	color:#9cf;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*

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 you want it to change.

One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
Consult your favourite CSS reference for editing fonts/borders/etc.

Otherwise, even if you're not very experienced at CSS, you can just go through and change
the #RGB border/background colours where suitable to customise for your site!

*/



/* VERTICAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width: 150px;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 150px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.menulist li {
 position: relative;
 border: 1px solid #FFFFFF;
 background: #336699;
 margin-bottom: -1px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #FFFFFF;
 text-decoration: none;
}

/*
 Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #336699;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #6699CC;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
}

/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}
/* End Hack */

/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 2px outset #FFFFCC;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #FFFFCC #666633 #666633 #FFFFCC;
 background-color: #CCCC99;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #CCCC99;
 padding: 5px;
 font: 14px/22px Arial, Helvetica, sans-serif;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
}


/* Formatting to apply to the elements inside the "menudiv" class elements. */
/* Of course, you can put whatever you want within the menu divs, these are just examples. */

.menudiv .header {
 width: 100%;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 1px solid #CCCC99;
 border-right: 1px solid #CCCC99;
 border-bottom: 1px solid #CCCC99;
 border-left: 1px solid #CCCC99;
 color: #003333;
 text-indent: 5px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 1px solid #336699;
 border-color: #6699CC #003366 #003366 #6699CC;
 background-color: #336699;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #003366;
 border-color: #000000 #3366CC #3366CC #000000;
 background-color: #003366;
 color: #FFFFFF;
}

/*
The script will automatically assign a class of "highlighted" to elements that currently
have an active submenu, so here's a little CSS to format links within a .menudiv element.
*/
.menudiv .highlighted {
 background-color: #336699;
 border-color: #336699;
 color: #FFFFFF;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #CC9966;
}



.button {
	border-color: #9c9c9c;
	border-bottom-style: outset;
	border-bottom-width: 1px;
	border-left-style: outset;
	border-left-width: 2px;
	border-right-style: outset;
	border-right-width: 1px;
	border-top-style: outset;
	border-top-width: 2px;	
	background-color: #336699;
	color: #EEEEEE;
	text-align: center;
	font-size: 0.9em;
	line-height: 120%;
	padding-left:4px;
	padding-right:4px;
	margin-left:2px;
	margin-right:2px;
	margin-bottom:2px;
}
.button:hover {
	/*background-color: #e39327;*/
	background-color: #0033CC;
	color: #FCF8F2;
}

.currentbutton {
	background-color: #333333;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	padding-left:4px;
	padding-right:4px;
	margin-left:2px;
	margin-right:2px;
	margin-bottom:2px;
}

.btnbar {
	font-size: 0.9em;
	border-color: #9c9c9c;
	border-width: 2px;	
	background-color: #DDD5DD;
	padding:8px;
	padding-bottom:10px;
	margin-left:2px;
	margin-right:2px;
	margin-bottom:2px;
}

.myjobs {
	border-top-width: 3px;	
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 3px;
	border-right-style: solid;
	border-right-color: #999999;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	background-color: #646481; 
/*	background-color: #0000ff; */
	color: #EEEEEE;
	padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	padding-bottom:1px;
}
.myjobsborder {
	border-top-width: 1px;	
	border-top-style: solid;
	border-top-color: #666666;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #666666;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	margin-top:5px;
	margin-left:50px;
	margin-right:50px;
	margin-bottom:10px;
}

.myjobstitle {
	background-color: #c4d7d4; 
	color: #4F4F4F;
	font-size: 1em;
	font-weight: bold;
	margin-top:1px;
	padding-top:6px;
	padding-right:10px;
	padding-left:10px;
	padding-bottom:10px;
}

.myjobslist {
	color: #c4d7d4;
	font-size: 0.95em;
	padding-top:8px;
	padding-right:10px;
	padding-left:10px;
	padding-bottom:1px;
}

.myjobslist a {
	color: #c4d7d4;
	font-size: 0.9em;
}


.mylistborder {
	border-top-width: 1px;	
	border-top-style: solid;
	border-top-color: #666666;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #666666;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666666;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
	margin-top:5px;
	margin-left:50px;
	margin-right:50px;
	margin-bottom:10px;
}
.mylist {
	border-top-width: 1px;	
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #999999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	background-color: #006474; 
/*	background-color: #0000ff; */
	color: #EEEEEE;
	padding-top:1px;
	padding-right:1px;
	padding-left:1px;
	padding-bottom:1px;
}

.infolist {
	border-width: 1px;	
	border-style: solid;
	border-color: #666666;
	margin-top:5px;
	margin-left:25px;
	margin-right:25px;
	margin-bottom:5px;
	background-color:#D9E7DE; 
	color: #333333;
	padding-top:4px;
	padding-right:8px;
	padding-left:8px;
	padding-bottom:4px;
}


