/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.suckertreemenu {
	FLOAT: left;  
	COLOR: #374C6B; 
	TEXT-ALIGN: center ;
}

.suckertreemenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #374C6B; /*overall menu background color*/
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
width:150px; /*Width of top level menu link items*/
overflow: hidden; /*text-overflow: ellipsis; */ 
padding: 5px 0px 5px 0px;
border-right: 1px solid #ccc; /* to show button right side vertical line */
text-decoration: none;
font-size:12;
background-color: #374C6B; /* Top level Background color */

FONT-WEIGHT: bold; FONT-SIZE: 12px; 
VERTICAL-ALIGN: middle; 
TEXT-TRANSFORM:  uppercase;
COLOR: #D2E0E8;  /* Top level font color */
FONT-FAMILY: Verdana, sans-serif; 
TEXT-ALIGN: center; 

}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
height:30;
}

/* Sub level menu links style - dropdown */
.suckertreemenu ul li ul li a{
display: block;
width: 180px; /*width of sub menu levels*/
height:30px; /*sam*/
color: #ffffff;
text-decoration: none;
padding: 7px 0px 0px 5px; 

border: 1px solid #ccc; 
background-color: #374C6B;


FONT-WEIGHT:  normal;
FONT-SIZE: 11px; 
vertical-align:middle ;
TEXT-TRANSFORM:  none;
FONT-FAMILY: Verdana, sans-serif; 
TEXT-ALIGN: left; 

}

.suckertreemenu ul li a:hover{
background-color: #595959;  /* drop down mouseover color - dark gray*/
color: white;  /* drop down text color */
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
 background: #374C6B url(/Sites/npRealtor/images/bg_menu_top.jpg) repeat center right;  
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #374C6B url(/Sites/npRealtor/images/arrow-right.gif) no-repeat center right;

}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}

/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%;}
* html .suckertreemenu ul li a { height: 1%;}
* html .suckertreemenu ul li ul li { float: left;}
/* End */

