.shop-list{
    position: absolute;
}

.shop-list h4 a{
    color: #FFF;
    text-decoration: none;
}
.shop-list h4{
    padding: 5px;
    background-color: #555555;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#888888 43%), to(#555555));
    background-image: -webkit-linear-gradient(top, #888888 43%, #555555);
    background-image: -moz-linear-gradient(top, #888888 43%, #555555);
    background-image: -o-linear-gradient(top, #888888 43%, #555555);
    background-image: -ms-linear-gradient(top, #888888 43%, #555555);
    background-image: linear-gradient(to bottom, #888888 43%, #555555);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.8);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255,255,255,0.8);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), inset 0 0 2px rgba(255, 255, 255, 0.8);
    transition:background 0.2s ease 0.5s;

    margin-bottom: 13px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}
.shop-list h4:after{
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;

    bottom: -6px;
    left: 50%;
    margin-left: -7px;
    border-color: #555555 transparent;
    border-width: 7px 7px 0;
}
.shop-list h4:hover a{
    text-decoration: underline;
}
.list-wrapper{
    position: absolute;
    left: 50%;

    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 200%;
    text-align: center;
    transition:all 0.2s ease 0.5s;
    color: #000000;
    z-index: 1000;
}
.shop-list:hover .list-wrapper{
    opacity: 1;
    visibility: visible;
    /*display: block;*/
    top: 100%;
}
.shop-list .list-wrapper:before{
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;

    top: -7px;
    left: 0;
    margin-left: -7px;
    border-bottom-color: #F0F0F0;
    border-width: 0 7px 7px;
}

.shop-list ul{
    margin-left: -50%;
    background-color: #F0F0F0;
    background-image: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    behavior: url(border-radius.htc);
    -moz-box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.35);

    list-style: none;
    padding: 0;
    width: 100%;
}

.shop-list ul li{
    /*background-color: #F0F0F0; */
    border-bottom: 1px solid #D1D0D0;
    border-top: 1px solid #FFFFFF;
    clear: both;
    min-width: 400px;
}
.shop-list ul li .info{
    margin-left: 74px;
}
.shop-list ul li .image{
    width: 64px;
    height: 48px;
    float: left;
    background-color: transparent;
    text-align: center;
    position: relative;
}
.shop-list ul li .image img{
    position:absolute;
    margin:auto;
    top:0;
    bottom:0;
    left:0;
    right:0;
}
.shop-list ul li:first-child{
    border-top: 0;
}
.shop-list ul li:first-child a{
    -moz-border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -khtml-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -moz-border-top-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -khtml-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}
.shop-list ul li:last-child{
    border-bottom: 0;
}
.shop-list ul li:last-child a{
    -moz-border-bottom-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -khtml-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    -moz-border-bottom-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -khtml-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.shop-list ul a{
    background-color: #F0F0F0;
    padding: 5px 10px;
    display: block;
    text-align: left;
    text-decoration: none;
    color: #666666;
    /*white-space: nowrap;*/
    cursor: pointer;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}
.shop-list ul a:hover{
    background-color: #d1d0d0;
}
.shop-list ul a b{
    color: #000;
}
.shop-list ul a:hover b{
    text-decoration: underline;
}