﻿.foo
{
}
/* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* Note that the example menu in this web site uses relative 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. */




/* 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... */
.OASMenu ul
{
    margin: 0px 0px 0px 0px;
    padding: 0px;
}


/* 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. */
.OASMenu ul.CSS-Menu ul
{
}

.OASMenu ul.CSS-Menu ul 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. */
.OASMenu ul.CSS-Menu li
{
    margin: 0px;
    padding: 0px 0px 0px 2px;
    background: url(Assets/Nav/splitLine.png) no-repeat;
}

/* 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). */
.OASMenu ul.CSS-Menu li a, .OASMenu ul.CSS-Menu li span
{
}

.OASMenu ul.CSS-Menu li a.home
{
    display: block;
    height: 40px;
    width: 82px;
    background: url(Assets/Nav/home.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.home:hover
{
    background: url(Assets/Nav/homeOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.aboutUs
{
    display: block;
    height: 40px;
    width: 102px;
    background: url(Assets/Nav/aboutUs.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.aboutUs:hover
{
    background: url(Assets/Nav/aboutUsOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.services
{
    display: block;
    height: 40px;
    width: 128px;
    background: url(Assets/Nav/services.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.services:hover
{
    background: url(Assets/Nav/servicesOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li.services:hover a
{
    background: url(Assets/Nav/servicesOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.property
{
    display: block;
    height: 40px;
    width: 153px;
    background: url(Assets/Nav/property.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.property:hover
{
    background: url(Assets/Nav/propertyOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li.property:hover a
{
    background: url(Assets/Nav/propertyOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.news
{
    display: block;
    height: 40px;
    width: 120px;
    background: url(Assets/Nav/news.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.news:hover
{
    background: url(Assets/Nav/newsOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.ourClients
{
    display: block;
    height: 40px;
    width: 120px;
    background: url(Assets/Nav/ourClients.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.ourClients:hover
{
    background: url(Assets/Nav/ourClientsOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.contacts
{
    display: block;
    height: 40px;
    width: 120px;
    background: url(Assets/Nav/contacts.png) repeat-x;
}

.OASMenu ul.CSS-Menu li a.contacts:hover
{
    background: url(Assets/Nav/contactsOver.png) repeat-x;
}

.OASMenu ul.CSS-Menu li span.search
{
    display: block;
    height: 40px;
    width: 231px;
    background: url(Assets/Nav/search.png) repeat-x;
}




/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.OASMenu ul.CSS-Menu li.CSS-Menu-Leaf a, .OASMenu ul.CSS-Menu li.CSS-Menu-Leaf span
{
    background-image: none;
}

/* 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 CSS-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.OASMenu ul.CSS-Menu li:hover, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover
{
}

.OASMenu ul.CSS-Menu li:hover a, .OASMenu ul.CSS-Menu li:hover span, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover a, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover span, .OASMenu ul.CSS-Menu li:hover li:hover a, .OASMenu ul.CSS-Menu li:hover li:hover span, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover a, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover span, .OASMenu ul.CSS-Menu li:hover li:hover ul a:hover, .OASMenu ul.CSS-Menu li:hover li:hover ul span.Asp-Menu-Hover, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover ul a:hover, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #0F1676;
}

.OASMenu ul.CSS-Menu li:hover ul a, .OASMenu ul.CSS-Menu li:hover ul span, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover ul a, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover ul span, .OASMenu ul.CSS-Menu li:hover li:hover ul a, .OASMenu ul.CSS-Menu li:hover li:hover ul span, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover ul a, .OASMenu ul.CSS-Menu li.CSS-Menu-Hover li.CSS-Menu-Hover ul span
{
    color: #333333;
}

/* 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. */
.OASMenu ul.CSS-Menu li a:hover, .OASMenu ul.CSS-Menu li span.Asp-Menu-Hover
{
    color: #0F1676;
}

.OASMenu ul.CSS-Menu li.CSS-Menu-Leaf a:hover
{
    background: none;
}


.OASMenu .CSS-Menu-Horizontal
{
    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. */
.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu
{
    /*width: 720px;*/
}

/* 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. */
.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul
{
    /*width: 10.5em;*/
    left: 0;
    top: 100%;
    width: 130px;
    padding: 10px 12px 10px 12px;
    background: #FFFFFF;
    border-left: solid 1px #CCCCCC;
    border-bottom: solid 1px #CCCCCC;
    border-right: solid 1px #CCCCCC;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul ul
{
    top: -0.3em;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul ul
{
    width: 210px;
}

/* 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. */
.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li
{
    /*width: 12.5em;*/
    text-align: center;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li
{
    text-align: left;
    padding: 2px 0px 2px 0px;
    height: auto;
    width: 100%;
    background: none;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.services ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.locations ul li a
{
    color: #EE1109;
    font-weight: normal;
    font-size: 100%;
    background: none;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.services ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.locations ul li a:hover
{
    color: #000000;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul ul li
{
    width: 100%;
    background: none;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li ul li a
{
    color: #FFFFFF;
    font-weight: bold;
    background: none;
}

/* 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. */
.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li ul li ul
{
    margin: .5em 0 0 100%;
}





