/*
.m          All Sub Menu                .m      All Sub Menus
.m[level]   Sub Menu at level x         .m0     First level sub menus

.mid[id]    Sub Menu with id x          .mid42  DNN Admin Sub Menu
.break      Break                       .break  All menu breaks
.mi         Menu Item (all)             .mi     All Menu Items
.id         Menu Item with id x         .id41   Menu Item with id 41
.mi[path]   Menu Item in specific path  .mi0    First Menu Item (Home)
                                        .mi1-0  First child of second root menu (Admin-Site Settings)   

.root       Root Menu Item              .root   All root menu items
.first      First Menu Item             .first  First menu item in each menu
.last       Last Menu Item              .last   Last menu item in each menu
                                        .first.last First & Last menu item in each menu

.icn        Icon section of menu item
.hov        Hover
.sel        Selected
.bc         Menu item when part of BreadCrumb
.txt        Menu Text 
*/

/* Nav Menu */









/*
.m          All Sub Menu                .m      All Sub Menus
.m[level]   Sub Menu at level x         .m0     First level sub menus

.mid[id]    Sub Menu with id x          .mid42  DNN Admin Sub Menu
.break      Break                       .break  All menu breaks
.mi         Menu Item (all)             .mi     All Menu Items
.id         Menu Item with id x         .id41   Menu Item with id 41
.mi[path]   Menu Item in specific path  .mi0    First Menu Item (Home)
                                        .mi1-0  First child of second root menu (Admin-Site Settings)   

.root       Root Menu Item              .root   All root menu items
.first      First Menu Item             .first  First menu item in each menu
.last       Last Menu Item              .last   Last menu item in each menu
                                        .first.last First & Last menu item in each menu

.icn        Icon section of menu item
.hov        Hover
.sel        Selected
.bc         Menu item when part of BreadCrumb
.txt        Menu Text 
*/

/* Nav Menu */

.menubackground
{
	padding: 0px;
	margin: 0px;
	background-color: Aqua;
	height: 51px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 51px;
	background-image: url(./images/menu.jpg);
	background-repeat: repeat;
	text-decoration: none;
	color: #FFFFFF;
	text-transform: uppercase;
}



/* The Namespace Class = .NavMenu */

/* CSSNodeRoot */
.NavMenu .root
{
	padding: 0px 5px 0px 5px;
	float: left;
	text-align: center;

}



/* NOTE: no space between root and hover classes */
/* Menu Node Hover Root */
.NavMenu .root.hov
{
	float: left;
	color: #182154;
	height: 51px;
	background-image: url(./images/bgHOVER.jpg);
	background-repeat: repeat;
}




/* Menu Node Selected Root */
.NavMenu .root.sel
{
		height: 51px;
	float: left;
	background-image: url(./images/bgHOVER.jpg);
	color: #003366;
}
    



/* Sub Menu Container */
.NavMenu .m
{
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	background-color: #182154;
	line-height: 30px;
	color: #FFFFFF;
}

.NavMenu .m td
{
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
	background-color: #182154 ;
	height: 30px;
}

/* Sub Menu Hover */
/* NOTE: There is a space between submenu and hover classes */
.NavMenu .m .hov td
{ 
	background: #94a1a8;
	color:#182154;
	height: 30px;
	padding:5px;
}


/* Sub Menu Selected */
.NavMenu .m .sel td
{
	background: #94a1a8;
	color:#182154;
	height: 30px;
	padding:5px;
}

/* Targeting Menu Items */
/* Demonstration of MultiColor Menu */


/*.NavMenu .first, .NavMenu .first td /*td to target sub menus 
{
    background-image: none;
    background-color: Fuchsia;
}

.NavMenu .last, .NavMenu .last td /*td to target sub menus 
{
    background-image: none;
    background-color: Maroon;
}


/* Targeting an entire sub-menu
    Use the web developer toolbar to find the ID of a menu item you wish to target
    Or go to the page settings of the page 
.NavMenu .mid42 td /* id 42 is the admin menu 
{
    background-image: none;
    background-color: Yellow;
}

/* Targeting an ID of a menu item 
.NavMenu .id43 td /* id 43 is the admin menu / site settings page 
{
    background-image: none;
    background-color: Aqua;
}

/* Targeting Menu Items in a Specific Path - Relative Menu Items */
.NavMenu .mi0 /* root first menu item 
{
    background-image: none;
    background-color: Lime;
}
.NavMenu .mi1 /* root 2nd menu item 
{
    background-image: none;
    background-color: Purple;
}
.NavMenu .mi3 /* root 4th menu item 
{
    background-image: none;
    background-color: Teal;
}

.NavMenu .mi1-0 td /* root 2nd menu item, first child (submenu) 
{
    background-image: none;
    background-color: Orange;
}

.NavMenu .mi1-1 td /* root 2nd menu item, 2nd child (submenu) 
{
    background-image: none;
    background-color: Aqua;
}
.NavMenu .mi1-2 td /* root 2nd menu item, 3rd child (submenu) 
{
    background-image: none;
    background-color: Green;
}

.NavMenu .mi1-0-0 td /* root 2nd menu item, childs, first child 
{
    background-image: none;
    background-color: Blue;
}

*/


