
 /*========================= TOP OF THE MENU CASCADE =========================*/

.nav-main {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
/*	margin:0 0 6px -35px; */
	padding:0;
	border:0;
	height:18px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	font-size:12px;         /* this (and also below) sets the menu's font size */
	z-index:  100;
}

div#nav-main a.top
{
    padding-left: 5px;
    text-decoration: none;
    color: #B8B6B7;
    border-style: none;
	border: none;
}
div#nav-main a.top:visited
{
    padding-left: 10px;
    text-decoration: none;
    color: #B8B6B7;
    border-style: none;
	border: none;
}

div#nav-main a.top:hover
{
    border-style: none;
	border: none;
}

div#nav-main img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

div#nav-main ul {
	margin:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1.5em;           /* globally set the nav-main's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

div#nav-main li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
	z-index:100;

}

.nav-main ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	margin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:12px;        /* this sets the base font size for our entire menu */
}

.drop {
	display:block;
	padding:0px 0.33em;	       /* this sets the l/r margins for our menu item */
	margin:0;
	text-align:right;   /* this right alignment goes with the float:left below */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down menus which link to sub-menus */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

div#nav-main ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	padding:1px;                   /* this is our box border width */
}

div#nav-main ul li a,
div#nav-main ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:22px;
	padding-left: 2px;
	padding-right: 25px;
	color: #333;
	border:1px solid #FFF;
	/*font-weight: bold;*/
}

div#nav-main ul li:hover a,
div#nav-main ul li a:hover {                        /* selected top-level menu items */
	/*border-top:1px solid #CCC;     these 2 lines create the push-in illusion */
	/*border-left:1px solid #CCC;     these 2 lines create the push-in illusion */
	/*border-right:1px solid #CCC;     these 2 lines create the push-in illusion */
	/*border-bottom:1px solid #CCC;     these 2 lines create the push-in illusion */
	/*border:1px solid #CCC;     these 2 lines create the push-in illusion */
	background-image: url(../images/bg-topnav-mouseover.jpg);
	background-repeat: repeat-x;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

div#nav-main ul li:hover ul,
div#nav-main ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:22px;              /* place us just up underneath the top-level images */
	left:0px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:15.5em;
	font-size: 10px;
	color: #797979;                        /* this sets the unselected-text color */
	background: #CCCCCC;         /* this sets our menu's effective "border" color */
}

div#nav-main ul li:hover ul.leftbutton,
div#nav-main ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

div#nav-main ul li:hover ul li a,
div#nav-main ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:3px 0 3px 0;
	height:auto;
	color:#797979;               /* this sets the unselected drop-down text color */
	background:#F1F1F1;       /* this sets the drop-down menu background color */
	width:15.5em;
}

div#nav-main ul li:hover ul li:hover a,
div#nav-main ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color: #FFFFFF;
	background: #ec8e1f;
	/* background-image: url(images/bg-leftnav-on.png);
	background-repeat: repeat-x;
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC; */
}



/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

div#nav-main ul li:hover ul li ul,
div#nav-main ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
div#nav-main ul li:hover ul li:hover ul,
div#nav-main ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	top:0;
	left:15.5em;
	width:14em;
}

div#nav-main ul li:hover ul li:hover ul li a,
div#nav-main ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	color: #333333;
	background:#EEEEEE;
}

div#nav-main ul li:hover ul li:hover ul li a:hover,
div#nav-main ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	color: #FFFFFF;
	background: #ec8e1f;
	/* background-image: url(images/bg-leftnav-on.png);
	background-repeat: repeat-x;
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC; */

}







/*======================== PRACTICE AREA NAV ========================*/



div#practice-area-nav {
	position:relative;        /* establish a menu-relative positioning context */
	bottom: -15px;
	float:left;                                     /* play nicely with others */
/*	margin:0 0 6px -35px; */
	padding:0;
	border:0;
/*	height:35px; */                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	font-size:12px;         /* this (and also below) sets the menu's font size */
	*z-index: -1;
}

div#practice-area-nav img {
	vertical-align: top;      /* prevent images from being pushed down by text */
}

div#practice-area-nav ul {
	margin:0;
	padding:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:35px;           /* globally set the nav-main's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

div#practice-area-nav li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
	padding:0;
	border-right: 2px solid #F7A326; 
	text-align: center;
}

div#practice-area-nav li.last  {

	border-right: none; 
}

div#practice-area-nav li.last a {

	width: 232px; 
}


div#practice-area-nav li a{
	color: #FAF0E7;
	width:230px;
	height: 35px;
	display: block;
	background-image: url(../images/bg-practice-area.jpg);
	text-decoration: none;
}

/* the :hover is used to modify the li when the mouse is over it */
div#practice-area-nav li:hover a,
div#practice-area-nav li a:hover{
	background: none;
	background-color: #fdb445; 
}
/* the .selected class is used to modify the li when the li is deemed selected */
div#practice-area-nav li a.selected  {

	background: none;
	background-color: #bc7b18; 
}
