/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 0;
 /*margin:10px 0px 0px 109px;*/
 /*float:center;*/
 border: 1px solid #D5D5D5;
 background-color: #F6F7F6;
 /*padding: 5px;*/
 font-size:10px;
 font:Arial, Helvetica, sans-serif;
 /* Borders:     Top    Right  Bottom    Left   */
 /*background-color: #CCCC99;*/
 /* layer-background-color is non-standard and NS4 only. */
 /*layer-background-color: #CCCC99;*/
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
/*filter: alpha(opacity=85); -moz-opacity: 0.8; /*opacity: 0.8 */
/*float:left;*/
}
/* 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:775px;;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
/* float:left;*/
 /*filter: alpha(opacity=30); -moz-opacity: 0.8; /*opacity: 0.8 */
}

.menudiv a {
 padding:3px;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 color: #454545;
 text-indent: 5px;
 text-decoration: none;
 font-size:11px;
 line-height:16px;
 letter-spacing:0.3mm;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 color: #959595;
 text-decoration:underline;
}
.menudiv a:active {
 color: #959595;
 text-decoration:underline;
}

/* * html .menudiv a {
 display: block;
 padding:3px; 
 border:1px solid #A9A8A8;
 color: #959595;
 text-indent: 5px;
 text-decoration: none;
 width:118px;
 height:32px;
 text-align:center; 
 vertical-align:middle;
} */ /* For IE */
/* * html .menudiv a:hover {
 border: 1px solid #B1B1B1;
 background-color: #454545;
 color: #FFFFFF;
 width:118px;
 height:32px;
 text-align:center;
 vertical-align:middle;
} *//* For IE */
 
/*
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;
}

.textFont{
font-family:Arial, Helvetica, sans-serif;
font-size:9px;
}

#center{ margin: 0px auto; width: 780px; background: transparent url(/img/layout/header.png) no-repeat; }
