/*** ESSENTIAL STYLES ***/

.sf-menu,
.sf-menu * {
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.sf-menu li {
    position: relative;
}

.sf-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.sf-menu > li {
    float: left;
    width: 250px;
    height: 65px;
    text-align: center;
}

img.hover {
    display: none;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 32px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

img.normal {
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    height: 32px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.sf-menu > li:hover img.hover {
    display: block;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.sf-menu > li:hover img.normal {
    display: none;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.item-1 {}

.item-2 {}

.item-3 {}

.item-4 {}

.sf-menu li:hover > ul,
{
    display: block;
}

.sf-menu a {
    display: block;
    position: relative;
}

.sf-menu ul ul {
    top: 0;
    left: 100%;
}


/*** DEMO SKIN ***/

.sf-menu {
    width: 1000px;
    height: 50px;
    margin-bottom: 1em;
}

.sf-menu ul {
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
    min-width: 12em;
    /* allow long menu items to determine submenu width */
    *width: 12em;
    /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu a {
    border-left: 1px solid #FBC11B;
    border-top: 1px solid #dFeEFF;
    /* fallback colour must use full shorthand */
    border-top: 1px solid rgba(255, 255, 255, .5);
    padding: 0 1em;
    text-decoration: none;
    zoom: 1;
    /* IE7 */
}

.sf-menu > li > a {
    border-left: none;
    border-top: none;
    /* fallback colour must use full shorthand */
    border-top: none;
}

.sf-menu a {
    color: #FBC11B;
}

.sf-menu a:hover {
    color: #Fff;
}

.sf-menu li {
    background: #011E3E;
    white-space: nowrap;
    /* no need for Supersubs plugin */
    *white-space: normal;
    /* ...unless you support IE7 (let it wrap) */
    -webkit-transition: background .2s;
    transition: background .2s;
}

.sf-menu ul li {
    background: #011E3E;
}

.sf-menu ul {
    text-align: left;
}

.sf-menu ul a {
    padding: 14px 1em;
}

.sf-menu ul ul li {
    background: #011E3E;
}

.sf-menu li:hover,
{
    background: #011E3E;
    /* only transition out, not in */
    -webkit-transition: none;
    transition: none;
    color: white;
}

.sf-menu li:hover > a,
{
    color: white;
}
