﻿/*/////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* CSS FRIENDLY ADAPTER: DEFAULT MENU */

/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.SimpleEntertainmentMenu .AspNet-Menu-Horizontal
{
    position:absolute;
    left: 0px;
    top: 0;
    z-index: 300;
    width: 900px;
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 900px;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 100%;
    left: 0;
    top: 100%;
}

.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{

}

/* PRIMARY LEVEL NAVIGATION */
.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 120px;
    display: block;
    height: 30px;
    text-align: center;
    background-image: url('../Images/NavInactiveBkgd.jpg');
    background-repeat: no-repeat;
    padding-top: 8px;
}


.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li:hover
{
    width: 120px;
    display: block;
    height: 30px;
    text-align: center;
    background-image: url('../Images/NavActiveBkgd.jpg');
    background-repeat: no-repeat;
    padding-top: 8px;

}

/* SECONDARY LEVEL NAVIGATION */
.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    width: 130px;
    height: 20px;
    display: block;
    text-align: center;
    background-image: url('../Images/SubNavBkgd.jpg');
    background-repeat: no-repeat;
    padding-top: 5px;
}

.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li:hover
{

    width: 130px;
    height: 20px;
    display: block;
    text-align: center;
    background-image: url('../Images/SubNavBkgd2.jpg');
    background-repeat: no-repeat;
    padding-top: 5px;
    
}

.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 11.5em;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.SimpleEntertainmentMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: -1.4em 0 0 10.35em;
}


.SimpleEntertainmentMenu a
{
    font-family: 'Arial Narrow';
    font-size: 14px;
    color: #FFFFFF;   
    display: block;
}

.SimpleEntertainmentMenu a:hover
{
    font-family: 'Arial Narrow';
    font-size: 14px;
    color: #FFFFFF;
    display: block;  
}

 .SimpleEntertainmentMenu .AspNet-Menu-Selected
{
    width: 120px;
    display: block;
    height: 30px;
    text-align: center;
    background-image: url('../Images/NavActiveBkgd.jpg');
    background-repeat: no-repeat;
    padding-top: 8px;
}

.SimpleEntertainmentMenu .AspNet-Menu-ChildSelected
{
    border: solid 1px #ff0000 !important;
}

.SimpleEntertainmentMenu .AspNet-Menu-ParentSelected
{
    border: solid 1px #0000ff !important;
}






/*/////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* ADMINISTRATION TOP LEVEL MENU */

#PrimaryNavigation
{
    width: 950px;
    height:38px;
    z-index: 2;
    float: left;
    left: 0px;
    top: 0px;
    position: relative;
    background-image: url('../Images/CubeularNavBkgd.jpg');

}

#PrimaryNavigation ul
{

    margin: 0; 
    padding: 0; 
    list-style-type: none; 
    vertical-align: text-bottom;
}


#PrimaryNavigation li
{
    float: left;
    height: 38px;
    width: 120px;
    display: block;
    text-align: center;
    font-size: 12px;
}

#PrimaryNavigation a
{
    width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: 'Arial Narrow';
    font-size: 14px;
    color: #FFFFFF;
    display: block;
    text-decoration: none;
    background-image: url('../Images/NavInactiveBkgd.jpg');
    background-repeat: no-repeat; 
}

#PrimaryNavigation a:hover
{
    font-family: 'Arial Narrow';
    font-size: 14px;
    color: #FFFFFF;   
    display: block;
    text-decoration: none;
    width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: url('../Images/NavActiveBkgd.jpg');
    background-repeat: repeat; 
}

#PrimaryNavigation a.Selected
{
    font-family: 'Arial Narrow';
    font-size: 14px;
    color: #FFFFFF;   
    display: block;
    text-decoration: none;
    width: 120px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: url('../Images/NavActiveBkgd.jpg');
    background-repeat: no-repeat; 
}

#lnkModules {

 position:relative;
 top: 0px;
}


/*/////////////////////////////////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////*/
/* ADMINISTRATION TOP LEVEL MENU */

#SecondaryNavigation
{
    padding: 7px 10px 3px 10px;
    width: 930px;
    z-index: 1;
    left: 0px;
    float: left;
    top: 0px;
    position: relative;
    height: 20px;
    background-color: #E0E8F8;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ACC0EA;
}

#SecondaryNavigation ul
{
    margin: 0; 
    padding: 0; 
    list-style-type: none; 
    vertical-align: text-bottom;
}

#SecondaryNavigation li
{
    float: left;
    text-align: center;
}

#SecondaryNavigation a
{
    width: 100px;
    display: block;
    padding: 0px 6px 0px 6px;
    color: #3a68b5;
    font-family: 'Arial Narrow';
    font-size: 13px;
    text-decoration: none;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #3a68b5;
}

#SecondaryNavigation a:hover
{
    width: 100px;
    display: block;
    padding: 0px 6px 0px 6px;
    color: #2C4E87;
    font-family: 'Arial Narrow';
    font-size: 13px;
    text-decoration: none;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #3a68b5;
    font-weight: bold;
}

#SecondaryNavigation a.Selected
{
    width: 100px;
    display: block;
    padding: 0px 6px 0px 6px;
    color: #2C4E87;
    font-family: 'Arial Narrow';
    font-size: 13px;
    text-decoration: none;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #3a68b5;
    font-weight: bold;
}

.NavBreaker
{
    color: #eeeef0;
    width: 98%;
    height: 3px;
    z-index: 1;
    top: -9px;
    position: relative;
}

/*/////////////////////////////////////////////////////////
/////////// INCLUDE FILES - NAVIGATION LEVEL THREE ///////////////////////// */

#Level3{
	width: 160px;
	padding: 0 0 0 0;
	margin-bottom: 1em;
	font-family: Verdana;
	background-color: #FFFFFF;
	color: #333;
	z-index: 2;
    float:left;
    left: 0px;
    top: 3px;
	}
	
#Level3 ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
#Level3 li
{
    margin: 0;
    list-style: none;
    list-style-image: none;
    width: 100%;
}

#Level3 li a
{
    display: block;
    padding: 8px 8px 8px 0.5em;
    color: #FFFFFF;
    text-decoration: none;
    width: 100%;
    font-weight: bold;
    font-size: 11px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #FFFFFF;
    font-family: 'Arial Narrow';
    background-color: #3366CC;
    border-left-style: solid;
    border-left-width: 1px;
    border-left-color: #FFFFFF;
}
		
#Level3 li a:hover
{
    display: block;
    padding: 8px 8px 8px 0.5em;
    color: #FFFFFF;
    text-decoration: none;
    width: 100%;
    font-weight: bold;
    font-size: 11px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #FFFFFF;
    font-family: 'Arial Narrow';
    background-color: #8DA9E2;
}


/*/////////////////////////////////////////////////////////
/////////// INCLUDE FILES - NAVIGATION LEVEL THREE ///////////////////////// */

#MainLinks
{
    z-index: 1;
    right: 1px;
    top: 0px;
    width: 250px;
    height: 250px;
    position: relative;
    float: right;
    background-color: #F8F8F8;
}
	
#MainLinks ul {
		list-style: none;
		margin: 0;
		padding: 0;
		border: none;
		}
		
#MainLinks li
{
    margin: 0;
    list-style: none;
    list-style-image: none;
    width: 100%;
}

#MainLinks li a
{
    display: block;
    padding: 20px 5px 20px 30px;
    color: #3366CC;
    text-decoration: none;
    width: 200px;
    font-weight: normal;
    font-size: 15px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #B8C9ED;
    font-family: Corbel;
}
		
#MainLinks li a:hover
{
    display: block;
    padding: 20px 5px 20px 30px;
    color: #000099;
    text-decoration: none;
    width: 200px;
    font-weight: bold;
    font-size: 15px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #B8C9ED;
    font-family: Corbel;
}

