/*
    TurnWheel Designs (cc) 2008-2009
    http://turnwheel.com
    By Jackson Walker
    And Steven Bower
*/

#navigation {
    height: 34px;
    width: 903px;
}
#navigation ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 34px;
    background: transparent;
    float: left;
    text-align: center;
}
#navigation ul li a {
    color: #FFF;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    background: transparent;
    display: block;
    margin-top: 8px;
    outline: 0; /* Remove borders on Firefox */
}

#navigation li li a,#navigation li li li a {
    color: #2575AD;
    font-weight: bold;
}

#navigation li li {
    border: 1px solid #853339;
    border-top: 0;
    background: #FFF;
    padding: 0px 3px;
    margin: 0;
}

#navigation li li:hover {
    background: #E6E6E6;
    outline: 0;
}

#navigation .active a {
    color: #303030;
}
#home {
    width: 138px;
    height: auto;
}
#home:hover,#home.hover {
    background: transparent url("/images/navigation.png") 0px -34px no-repeat;
}
#home.active {
    background: transparent url("/images/navigation.png") 0px 0px no-repeat;
}
#meet {
    width: 152px;
}
#meet:hover,#meet.hover {
    background: transparent url("/images/navigation.png") -138px -34px no-repeat;
}
#meet.active {
    background: transparent url("/images/navigation.png") -138px 0px no-repeat;
}
#products,#products li {
    width: 115px;
}
#products li li {
    width: 10.5em;
}
#products:hover,#products.hover {
    background: transparent url("/images/navigation.png") -293px -34px no-repeat;
}
#products.active {
    background: transparent url("/images/navigation.png") -293px 0px no-repeat;
}
#why {
    width: 168px;
}
#why li {
    width: 150px;
}
#why:hover,#why.hover {
    background: transparent url("/images/navigation.png") -412px -34px no-repeat;
}
#why.active {
    background: transparent url("/images/navigation.png") -412px 0px no-repeat;
}
#services {
    width: 152px;
}
#services:hover,#services.hover {
    background: transparent url("/images/navigation.png") -576px -34px no-repeat;
}
#services.active {
    background: transparent url("/images/navigation.png") -576px 0px no-repeat;
}
#contact {
    width: 153px;
}
#contact:hover,#contact.hover {
    background: transparent url("/images/navigation.png") -730px -34px no-repeat;
}
#contact.active {
    background: transparent url("/images/navigation.png") -730px 0px no-repeat;
}

/*** ESSENTIAL STYLES ***/
.menu, .menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu {
    line-height: 1.0;
}
.menu ul {
    position: absolute;
    top: -999em;
    width: 10.5em; /* left offset of submenus need to match (see below) */
}
.menu ul li {
    width: 100%;
}
.menu li:hover {
    visibility: inherit; /* fixes IE7 'sticky bug' */
}
.menu li {
    float: left;
    position: relative;
}
.menu a {
    display: block;
    position: relative;
}
.menu li:hover ul,
.menu li.hover ul {
    left: 0;
    top: 34px; /* match top ul list item height */
    z-index: 99;
}
ul.menu li:hover li ul,
ul.menu li.hover li ul {
    top: -999em;
}
ul.menu li li:hover ul,
ul.menu li li.hover ul {
    left: 121px; /* match ul width */
    top: 0;
}
ul.menu li li:hover li ul,
ul.menu li li.hover li ul {
    top: -999em;
}
ul.menu li li li:hover ul,
ul.menu li li li.hover ul {
    left: 10.5em; /* match ul width */
    top: 0;
}

/*** arrows **/
.sf-sub-indicator {
    display: none;
}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
    background:	url('/images/shadow.png') no-repeat bottom right;
    padding: 0 8px 9px 0;
    -moz-border-radius-bottomleft: 17px;
    -moz-border-radius-topright: 17px;
    -webkit-border-top-right-radius: 17px;
    -webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
    background: transparent;
}