﻿.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: 12px 30px 7px 10px;
    background: url(Assets/Nav/splitLine.gif) 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;
    width: 30px;
    height: 11px;
    background: url(Assets/Nav/home.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.homeOn
{
    display: block;
    width: 30px;
    height: 11px;
    background: url(Assets/Nav/homeOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.home:hover
{
    background: url(Assets/Nav/homeOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.homeOn
{
    background: url(Assets/Nav/homeOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.company
{
    display: block;
    width: 50px;
    height: 11px;
    background: url(Assets/Nav/company.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.companyOn
{
    display: block;
    width: 50px;
    height: 11px;
    background: url(Assets/Nav/companyOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.company:hover
{
    background: url(Assets/Nav/companyOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li.company:hover a
{
    background: url(Assets/Nav/companyOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.howItWorks
{
    display: block;
    width: 75px;
    height: 11px;
    background: url(Assets/Nav/howItWorks.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.howItWorksOn
{
    display: block;
    width: 75px;
    height: 11px;
    background: url(Assets/Nav/howItWorksOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.howItWorks:hover
{
    background: url(Assets/Nav/howItWorksOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li.howItWorks:hover a
{
    background: url(Assets/Nav/howItWorksOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.ourClients
{
    display: block;
    width: 66px;
    height: 11px;
    background: url(Assets/Nav/ourClients.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.ourClients:hover
{
    background: url(Assets/Nav/ourClientsOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.international
{
    display: block;
    width: 79px;
    height: 11px;
    background: url(Assets/Nav/international.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.internationalOn
{
    display: block;
    width: 79px;
    height: 11px;
    background: url(Assets/Nav/internationalOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.international:hover
{
    background: url(Assets/Nav/internationalOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.caseStudies
{
    display: block;
    width: 71px;
    height: 11px;
    background: url(Assets/Nav/caseStudies.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.caseStudiesOn
{
    display: block;
    width: 71px;
    height: 11px;
    background: url(Assets/Nav/caseStudiesOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.caseStudies:hover
{
    background: url(Assets/Nav/caseStudiesOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.contacts
{
    display: block;
    width: 45px;
    height: 11px;
    background: url(Assets/Nav/contacts.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.contactsOn
{
    display: block;
    width: 45px;
    height: 11px;
    background: url(Assets/Nav/contactsOver.gif) no-repeat;
}

.OASMenu ul.CSS-Menu li a.contacts:hover
{
    background: url(Assets/Nav/contactsOver.gif) no-repeat;
}




/* 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: 156px;
    padding: 10px 12px 10px 12px;
    background: url(Assets/dropBg.png) no-repeat;
    border-bottom: solid 1px #B7B7B7;
}

.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;
    width: 100%;
    padding: 4px 0px 1px 0px;
    background: none;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li.top
{
    text-align: left;
    width: 100%;
    padding: 4px 0px 1px 0px;
    border-bottom: solid 1px #B7B7B7;
    border-top: none;
    background: none;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li.bottom
{
    text-align: left;
    width: 100%;
    padding: 4px 0px 1px 0px;
    border-bottom: none;
    border-top: solid 1px #FFFFFF;
    background: none;
}


.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.home ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.company ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.ourClients ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.howItWorks ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.caseStudies ul li a, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.contacts ul li a
{
    color: #333333;
    font-weight: bold;
    font-size: 100%;
    background: none;
    text-transform: uppercase;
    padding: 0px 5px 0px 5px;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li a
{
    color: #333333;
    font-weight: bold;
    font-size: 100%;
    background: none;
    text-transform: uppercase;
    padding: 0px 5px 0px 5px;
}

.OASMenu .CSS-Menu-Horizontal ul.CSS-Menu ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.home ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.company ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.ourClients ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.howItWorks ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.caseStudies ul li a:hover, .OASMenu .CSS-Menu-Horizontal ul.CSS-Menu li.contacts ul li a:hover
{
    color: #EE1109;
}

.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%;
}






