/* This is the part for the CSS menu - these settings are for a horizontal menu */
#dentistmenu{  
	width:900px;                 
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 0px;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
}
#dentistmenu li{                /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	float: left;                /* this is to allow for the horizontal main menu */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	width: 128px;               /* the width of each main menu item */
	display: block;
}
#dentistmenu ul {               /* third-level (or greater) menu element list elements */
	position: relative;         /* this is so that it doesn't push that page content around on hover */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	display: none;
	width: 150px;               /* should be the same as #dentistmenu li width */
	background-color: #9A7B45;     /* sub-menu default background color */
	color: #fff;                /* sub-menu default font color (not links) */
	border:#E9DCC2 1px solid;
	
}

#dentistmenu ul.last {               /* third-level (or greater) menu element list elements */
	position: relative;         /* this is so that it doesn't push that page content around on hover */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	display: none;
	width: 155px;               /* should be the same as #dentistmenu li width */
	background-color: #9A7B45;     /* sub-menu default background color */
	color: #fff;                /* sub-menu default font color (not links) */
	border:#E9DCC2 1px solid;
	right: 31%;
	_right:15%;
}

#dentistmenu ul li{             /* second-level or greater menu element links */
	background-color: #9A7B45;     /* default background color for sub-menu container */
	color: #fff;                /* default font color (not links) for sub-menu container */
	border: none;               /* sub-menu item border settings */
	margin: 0px;                /* spacing between sub-menu containers */
	padding: 0px 0px 0px 0px;               /* This is for padding between menu items in the drop-downs */
	width: 100%;               /* (padding*2) must be subtracted from #dentistmenu li width and set for this one, or borders won't display properly. */
	text-align:left;
}
#dentistmenu li a{                    /* top-level menu element links */
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:12px;
	text-decoration:none;
	text-align: left;         /* text alignment in main menu item links */
	display: block;
	text-decoration:none;
}
#dentistmenu ul a {                   /* all the other level menu link elements */
	padding: 5px 5px 5px 10px;
	margin: 0px;
	width: 130px;               /* (padding*2) must be subtracted from #dentistmenu ul li width and set for this one, or borders won't display properly. */
	display: block;
	color:#FFFFFF
}

#dentistmenu ul.last a {                   /* all the other level menu link elements */
	padding: 5px 5px 5px 10px;
	margin: 0px;
	width: 150px;               /* (padding*2) must be subtracted from #dentistmenu ul li width and set for this one, or borders won't display properly. */
	display: block;
	color:#FFFFFF;
}


#dentistmenu a:hover,                 /* top-level hovering properties */
#dentistmenu li:hover{
	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:12px;
	text-decoration:none;
	color:#E9DCC2;
	display: block;
}
#dentistmenu ul li:hover,             /* higher level hovering properties */
#dentistmenu ul li a:hover{
	display: block;
	width: 128px;               	            /* should be set to the same value as #dentistmenu ul li width */
}

#dentistmenu ul.last li:hover,             /* higher level hovering properties */
#dentistmenu ul.last li a:hover{
	display: block;
	width: 155px;
	_width: 150px;   
	color:#E9DCC2;            	            /* should be set to the same value as #dentistmenu ul li width */
}

#dentistmenu ul ul li:hover,             /* higher level hovering properties */
#dentistmenu ul ul li a:hover{
	display: block;
	width: 140px;               /* should be set to the same value as #dentistmenu ul li width */
}
#dentistmenu ul ul ul li:hover,             /* higher level hovering properties */
#dentistmenu ul ul ul li a:hover{
	display: block;
	width: 140px;               /* should be set to the same value as #dentistmenu ul li width */
}
#dentistmenu ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 128px;         /* this should be the width of #dentistmenu ul li */
	margin-top: 0em;           /* this will push the sub-menu up to the level of it's parent */
	left:0px;
	width: 210px;
	z-index: 1;
}
#dentistmenu ul ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 128px;         /* this should be the width of #dentistmenu ul li */
	margin-top: 0em;           /* this will push the sub-menu up to the level of it's parent */
	left:0px;
	width: 210px;
	visibility: visible;
}
/* only non-MSIE browsers use this */
#dentistmenu ul li>ul,
#dentistmenu ul ul li>ul{
	margin-top: -2.2em;           /* should be set to the same as #dentistmenu ul ul margin-top */
}
/* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
#dentistmenu li:hover ul ul,              
#dentistmenu li:hover ul ul ul,
#dentistmenu li:hover ul ul ul ul,
#dentistmenu li:hover ul ul ul ul ul{
	display:none;
	_position:absolute; _margin-top:-20px;
}
#dentistmenu li:hover ul,
#dentistmenu ul li:hover ul,
#dentistmenu ul ul li:hover ul,
#dentistmenu ul ul ul li:hover ul,
#dentistmenu ul ul ul ul li:hover ul{
	display:block;
}
li>ul {
	top: auto;
	left: auto;
}
.content {                      /* This is used for the content that will appear below the menu */
	clear: left;
}




#hotbutton {
	height: 404px;
	width: 267px;
	float: left;
	background:#2f3032;
}
/* Menu Start */

ul#hotnav  {
	height: 404px;
	width:267px;
	margin:0px;
	padding:0px;
	}
	
#hotnav li {
	display: inline;
	float: left;
	list-style: none;
	}
	
#hotnav li a {
	display: block;
	
}
/*--------------------------------- refer ---------------------------------*/	

#hotnav li#refer {
	width:267px;
	height:101px;
	background-position:left top;
	background-repeat:no-repeat;
	padding:0px;
	margin:0px;
	background-image:url(../images/dentist_hotbuttons.gif);
	}
	
#hotnav li#refer a {
	width:267px;
	height:101px;
	background-position:left top;
	background-repeat:no-repeat;
	background-image:url(../images/dentist_hotbuttons.gif);
	}
	
#hotnav li#refer a:hover {
	width:267px;
	height:101px;
	background-repeat:no-repeat;
	background-position:-267px 0px;
	background-image:url(../images/dentist_hotbuttons.gif);
	}
	
#hotnav li#refer_h {
	width:267px;
	height:101px;
	background-repeat:no-repeat;
	background-position:-267px 0px;
	background-image:url(../images/dentist_hotbuttons.gif);
	}
	
/*---------------------------------End refer ---------------------------------*/	


/*--------------------------------- different ---------------------------------*/	

#hotnav li#different {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0 -101px;
	background-repeat:no-repeat;
	padding:0px;
	margin:0px;
	}
	
#hotnav li#different a {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0 -101px;
	background-repeat:no-repeat;
	}
	
#hotnav li#different a:hover {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -101px;
	background-repeat:no-repeat;
	}
	
#hotnav li#different_h {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -101px;
	background-repeat:no-repeat;
	}
	
/*---------------------------------End different ---------------------------------*/	

/*--------------------------------- new provide ---------------------------------*/	

#hotnav li#provide {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0px -202px;
	background-repeat:no-repeat;
	padding:0px;
	margin:0px;
	}
	
#hotnav li#provide a {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0px -202px;
	background-repeat:no-repeat;
	}
	
#hotnav li#provide a:hover {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -202px;
	background-repeat:no-repeat;
	}
	
#hotnav li#provide_h {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -202px;
	background-repeat:no-repeat;
	}
	
/*---------------------------------End provide ---------------------------------*/	

/*--------------------------------- servicecost ---------------------------------*/	

#hotnav li#servicecost {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0px -303px;
	background-repeat:no-repeat;
	padding:0px;
	margin:0px;
	}
	
#hotnav li#servicecost a {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:0px -303px;
	background-repeat:no-repeat;
	}
	
#hotnav li#servicecost a:hover {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -303px;
	background-repeat:no-repeat;
	}
	
#hotnav li#servicecost_h {
	background-image:url(../images/dentist_hotbuttons.gif);
	width:267px;
	height:101px;
	background-position:-267px -303px;
	background-repeat:no-repeat;
	}
	
/*---------------------------------End servicecost ---------------------------------*/	





