﻿
/*** ESSENTIAL STYLES ***/
#list-product, #list-product *
{
    margin: 0;
    padding: 0;
    list-style: none;
}
#list-product
{
    line-height: 1.0;
}
#list-product ul
{
    position: absolute;
    top: -999em;
    width: 10em; /* left offset of submenus need to match (see below) */
}
#list-product ul li
{
    width: 100%;
}
#list-product li:hover
{
    visibility: inherit; /* fixes IE7 'sticky bug' */
}
#list-product li
{
    float: left;
    position: relative;
}
#list-product a
{
    display: block;
    position: relative;
}
#list-product li:hover ul, #list-product li.sfHover ul
{
    left: 180px;
    top: 0; /* match top ul list item height */
    z-index: 99;
}
ul#list-product li:hover li ul, ul#list-product li.sfHover li ul
{
    top: -999em;
}
ul#list-product li li:hover ul, ul#list-product li li.sfHover ul
{
    left: 10em; /* match ul width */
    top: 0;
}
ul#list-product li li:hover li ul, ul#list-product li li.sfHover li ul
{
    top: -999em;
}
ul#list-product li li li:hover ul, ul#list-product li li li.sfHover ul
{
    left: 10em; /* match ul width */
    top: 0;
}

/*** DEMO SKIN ***/
#list-product
{
    float: left;
    width: 180px;
}
#list-product a
{
    display: block;
    text-align: left;
    text-decoration: none;
}
#list-product a, #list-product a:visited
{
    /* visited pseudo selector so IE6 applies text colour
    color: #505050;*/
}
#list-product > li
{
    float: left;
    padding-top: 1px;
}

#list-product > li > a
{
    background: #01468e url(../images/m-bg.png) no-repeat right top;
    color: #fff;
    display: block;
    float: left;
    font-size: 11px;
    padding: 6px 10px 6px 20px;
    line-height: 18px;
    width: 150px;
}
#list-product li li
{
    background: #fff;
    padding: 0;
    margin: 0;
}
#list-product li li a
{
    background: url(../images/icon-1.png) no-repeat 25px center;
    border: solid 1px #e2e2e2;
    border-bottom: none;
    color: #333;
    font-size: 11px;
    line-height: 18px;
    padding: 6px 25px 6px 42px;
    text-transform: uppercase;
}
*+html #list-product li ul
{
    margin-top: 3px;
}
*+html #list-product li li a
{
    border: solid 1px #e2e2e2 !important;
    padding: 6px 25px 7px 42px;
    margin-top: -3px;
}
#list-product .last > a
{
    border-bottom: solid 1px #d0d0d0;
}
#list-product li li ul
{
    padding-left: 1px;
}
/*#list-product li:hover, #list-product li.sfHover, #list-product a:focus, #list-product a:hover, #list-product a:active
{
    background: #CFDEFF;
    outline: 0;
}*/
#list-product > li:hover > a, #list-product > li.sfHover > a, #list-product > li.active > a,
#list-product > li > a:focus, #list-product > li > a:hover, #list-product > li > a:active
{
    background-color: #2ca5e1;
    text-decoration: none;
    outline: 0;
}
#list-product li li:hover > a, #list-product li li.sfHover > a, #list-product li li.active > a, 
#list-product  li li > a:focus, #list-product li li > a:hover, #list-product li li > a:active
{
    background-color: #e2e2e2;
}
/*** arrows **/
#list-product a.sf-with-ul
{
    min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator
{
    position: absolute;
    display: block;
    right: .75em;
    top: 1.05em; /* IE6 only */
    width: 10px;
    height: 10px;
    text-indent: -999em;
    overflow: hidden;
    background: url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
#list-product > li > a > .sf-sub-indicator
{
    display: none !important;
}
a > .sf-sub-indicator
{
    /* give all except IE6 the correct values */
    top: .5em;
    background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator, a:hover > .sf-sub-indicator, a:active > .sf-sub-indicator, li:hover > a > .sf-sub-indicator, li.sfHover > a > .sf-sub-indicator
{
    background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
#list-product ul .sf-sub-indicator
{
    background-position: -10px 0;
}
#list-product ul a > .sf-sub-indicator
{
    background-position: 0 0;
}
/* apply hovers to modern browsers */
#list-product ul a:focus > .sf-sub-indicator, #list-product ul a:hover > .sf-sub-indicator, #list-product ul a:active > .sf-sub-indicator, #list-product ul li:hover > a > .sf-sub-indicator, #list-product ul li.sfHover > a > .sf-sub-indicator
{
    background-position: -10px 0; /* arrow hovers for modern browsers*/
}

/*** 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;
}

