/* RULES FOR THE "MENUDIV" OBJECT */

/* 
NOT USED
.menu_home { width:172; height:36; cursor: hand; }
.smilesmenu a#menu_home { background-image: url(images/menu_home.jpg); }
.smilesmenu a#menu_home:hover, .smilesmenu a.highlighted#menu_home { background-image: url(images/menu_home_on.jpg); }

.menu_ourpractice { width:172; height:23; cursor: hand; background-image: url(images/menu_ourpractice_blank.gif); }
.smilesmenu a#menu_ourpractice { background-image: url(images/menu_ourpractice.jpg); }
.smilesmenu a#menu_ourpractice:hover, .smilesmenu a.highlighted#menu_ourpractice { background-image: url(images/menu_ourpractice_on.jpg); }

.menu_dentaltreatment { width:172; height:24; cursor: hand; background-image: url(images/menu_dentaltreatment.jpg); }
.smilesmenu a#menu_dentaltreatment { width:172; height:24; }
.smilesmenu a#menu_dentaltreatment:hover, .smilesmenu a.highlighted#menu_dentaltreatment { background-image: url(images/menu_dentaltreatment_on.jpg) }

.menu_specialistcare { width:172; height:41; cursor: hand; }
.smilesmenu a#menu_specialistcare { background-image: url(images/menu_specialistcare.jpg) }
.smilesmenu a#menu_specialistcare:hover, .smilesmenu a.highlighted#menu_specialistcare { background-image: url(images/menu_specialistcare_on.jpg) }

.menu_feeguide { width:172; height:23; cursor: hand; }
.smilesmenu a#menu_feeguide { background-image: url(images/menu_feeguide.jpg) }
.smilesmenu a#menu_feeguide:hover, .smilesmenu a.highlighted#menu_feeguide { background-image: url(images/menu_feeguide_on.jpg) }

.menu_contactus { width:172; height:25; cursor: hand; }
.smilesmenu a#menu_contactus { background-image: url(images/menu_contactus.jpg) }
.smilesmenu a#menu_contactus:hover, .smilesmenu a.highlighted#menu_contactus { background-image: url(images/menu_contactus_on.jpg) }

.menu_dentalproducts { width:172; height:24; cursor: hand; }
.smilesmenu a#menu_dentalproducts { background-image: url(images/menu_dentalproducts.jpg) }
.smilesmenu a#menu_dentalproducts:hover, .smilesmenu a.highlighted#menu_dentalproducts { background-image: url(images/menu_dentalproducts_on.jpg) }


#menu_home { width:172; height:36; cursor: hand; background-image: url(images/menu_home.jpg); }
#menu_home_on { background-image: url(images/menu_home_on.jpg); }

#menu_ourpractice { width:172; height:23; cursor: hand; background-image: url(images/menu_ourpractice.jpg); }
#menu_ourpractice_on { background-image: url(images/menu_ourpractice_on.jpg); }

#menu_dentaltreatment { width:172; height:24; cursor: hand; background-image: url(images/menu_dentaltreatment.jpg); }
#menu_dentaltreatment_on { background-image: url(images/menu_dentaltreatment_on.jpg); }

#menu_specialistcare { width:172; height:41; cursor: hand; background-image: url(images/menu_specialistcare.jpg); }
#menu_specialistcare_on { background-image: url(images/menu_specialistcare_on.jpg); }

#menu_feeguide { width:172; height:23; cursor: hand; background-image: url(images/menu_feeguide.jpg); }
#menu_feeguide_on { background-image: url(images/menu_feeguide_on.jpg); }

#menu_contactus { width:172; height:25; cursor: hand; background-image: url(images/menu_contactus.jpg); }
#menu_contactus_on { background-image: url(images/menu_contactus_on.jpg); }

.menu_dentalproducts { width:172; height:24; cursor: hand; background-image: url(images/menu_dentalproducts.jpg); }
.menu_dentalproducts_on { background-image: url(images/menu_dentalproducts_on.jpg); }
*/


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 2px outset #F9EDED;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #F9EDED #9F3060 #9F3060 #F9EDED;
 background-color: #F9EDED;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #F9EDED;
 padding: 5px;
 font: 12px Georgia, Book Antiqua, Times New Roman, Times;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=90); -moz-opacity: 0.9; opacity: 0.9 ; */
}


/* 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: 1px dashed #999966;
 margin-bottom: 5px;
 padding-bottom: 5px;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 1px solid #F9EDED;
 border-right: 1px solid #F9EDED;
 border-bottom: 1px solid #F9EDED;
 border-left: 1px solid #F9EDED;
 color: #9F3060;
 text-indent: 0px;
 padding: 2px;
 text-decoration: none ! important;
 font-weight:bold;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:link {
 text-decoration: none;
}
.menudiv a:hover, .menudiv a.highlighted {
 border: 1px solid #9F3060;
 border-color: #999999 #000000 #000000 #999999;
 background-color: #9F3060;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #003366;
 border-color: #999999 #000000 #000000 #999999;
 background-color: #9F3060;
 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;
}

