/*MAIN UL STYLE */
.sminqu {
    font-size: 50%;
    width: 7%;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    list-style-type: none;
    margin: 2em;
    padding: 0;
    background: #d13939; /*CHANGE MINQU COLOR*/
    z-index: 2;
    -moz-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.4);
    box-shadow: 0 2px 3px rgba(0,0,0,0.4);
}

.sminqu img {
    width: 70%;
}

.sminqu li a {
    display: block;
    padding: 0.3em;
    line-height: 3em;
    text-align: center;
    color: #999;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}

.sminqu-curr {
    background: rgba(0,0,0,0.3) !important;
}
.sminqu-curr:hover{
    background: rgba (255,255,255,0.5) !important;
    color: #fff;
}
 
.sminqu li a:hover{
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

@media screen and (max-width: 800px) {
    .sminqu {
        width: 100%;
        font-size: 50%;
        margin: 0;
        padding: 0;
        display: table;
    } 
        
    .sminqu li {
        display: table-cell;
        text-align: center;
        width: 10%;
        height: 1em;
    }
    .sminqu li a{
        vertical-align: middle;
        padding: 0 0.1em 0 0.1em;
        line-height: 1.2em;
        height: 100%;
        border-bottom: none;
    }
}