﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/*SUB MENU STYLES FIRST*/

.SubMenu ul.AspNet-Menu li /*list items themselves*/
{
	background-color:#aaa;
	height:20px;
	padding-top:5px;
  margin-right:10px;
  border:solid 2px #fff;
}

.SubMenu ul.AspNet-Menu li:hover, /*list items hover styles*/
.SubMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
   background-color:#fff;
}

.SubMenu ul.AspNet-Menu li a, /*anchors within list items */
.SubMenu ul.AspNet-Menu li span
{
    color:#fff;
    padding-left:10px;
}



/*PLACES TO STAY SubMenu styles*/
#SubMenuContainerPlacesToStay .SubMenu ul.AspNet-Menu li
{
	background-color:#669ACC;
	color:#fff;
}

/*END OF SUB MENU STYLES*/

#menufooter
{
	width:100%;
	height:10px;
	background-color:#ccccff;
	position:relative;
	top:9px;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.PrettyMenu ul
{
    
}




/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.PrettyMenu ul.AspNet-Menu li
{
	background-color:#ffcc00;
	height:30px;
	padding-top:5px;
  margin-right:10px;
  border:solid 2px #fff;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.PrettyMenu ul.AspNet-Menu li a,
.PrettyMenu ul.AspNet-Menu li span
{
    padding: 4px 8px 4px 8px;
    color:#0066FF;
   font-size:15px;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a,
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
      margin-right:10px;
}


/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.PrettyMenu ul.AspNet-Menu li:hover, 
.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
   /*background: url(hoverbg.gif) no-repeat  center;*/
   background-color:#fff;
}



/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.PrettyMenu ul.AspNet-Menu li a:hover,
.PrettyMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    
}

.PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    
}


/* -------------------------------------------------------------------------- */
/* 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. */

.PrettyMenu .AspNet-Menu-Horizontal
{
   /* position:absolute;
    left: 0em;
    top: 50;*/
   position:relative;
	left:30px;
    z-index: 300;
}

/* 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. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width: 100%;
}



/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 148px; /*width of seperate menu items*/
    text-align:center;
    margin-right: 36px;
}


.PrettyMenu .AspNet-Menu-Horizontal-Selected:hover, .PrettyMenu .AspNet-Menu-Horizontal-Selected li:hover /* SELECTED MENU ITEM HOVER */
{
	background-color:#fff;
}


/*This rule hides the second tier of the menu whilst still allowing the section color to be shown */
.PrettyMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-WithChildren  li.AspNet-Menu-Leaf  
{
	display:none;
}



/*Selected menu item styles - there is a set of styles defined for each of the master pages
so that the selected section link in the main nav can be the same color as the background*/

/*PLACES TO STAY Selected menu item styles*/
#PTSMainNav .PrettyMenu .AspNet-Menu-Selected  /*  PLACES TO STAY SELECTED MENU ITEM*/
{
background-color:#669ACC;
color:#fff;
}
#PTSMainNav .PrettyMenu  .AspNet-Menu-ChildSelected /*  PLACES TO STAY SELECTED MENU ITEM*/
{
background-color:#669ACC;
color:#fff;
}

#PTSMainNav .PrettyMenu .AspNet-Menu-Horizontal-Selected a /* PLACES TO STAY SELECTED MENU ITEM a*/
{
background-color:#669ACC;
}


#PTSMainNav .PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected 
{
background-color:#669ACC;
}


#PTSMainNav .PrettyMenu ul.AspNet-Menu  li.AspNet-Menu-ChildSelected
{
background-color:#669ACC;
}


/*PLACES TO SEE Selected menu item styles*/
#PTSeeMainNav .PrettyMenu .AspNet-Menu-Selected /* SELECTED MENU ITEM*/
{
background-color:#89AB55;
color:#fff;
}




#PTSeeMainNav .PrettyMenu .AspNet-Menu-Horizontal-Selected a /* SELECTED MENU ITEM a*/
{
background-color:#89AB55;
}


#PTSeeMainNav .PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
background-color:#89AB55;
}




/*THINGS TO DO Selected menu item styles*/
#TTDMainNav .PrettyMenu .AspNet-Menu-Selected /* SELECTED MENU ITEM*/
{
background-color:#DD001C;
color:#fff;
}




#TTDMainNav .PrettyMenu .AspNet-Menu-Horizontal-Selected a /* SELECTED MENU ITEM a*/
{
background-color:#DD001C;
}


#TTDMainNav .PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
background-color:#DD001C;
}




/*VISITOR INFORMATION Selected menu item styles*/
#VIMainNav .PrettyMenu .AspNet-Menu-Selected /* SELECTED MENU ITEM*/
{
background-color:#827A8B;
color:#fff;
}




#VIMainNav .PrettyMenu .AspNet-Menu-Horizontal-Selected a /* SELECTED MENU ITEM a*/
{
background-color:#827A8B;
}


#VIMainNav .PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
background-color:#827A8B;
}



/*MAPS AND ROUTES Selected menu item styles*/
#MRMainNav .PrettyMenu .AspNet-Menu-Selected /* SELECTED MENU ITEM*/
{
background-color:#B0CAC7;
color:#fff;
}




#MRMainNav .PrettyMenu .AspNet-Menu-Horizontal-Selected a /* SELECTED MENU ITEM a*/
{
background-color:#B0CAC7;
}


#MRMainNav .PrettyMenu ul.AspNet-Menu li.AspNet-Menu-Selected
{
background-color:#B0CAC7;
}


