/*
------------------------------
MAIN - #puntos-venta-ls
------------------------------
*/
#content p {
    font-size: 14px;
    font-weight: normal;
    color: #727272;
    margin-bottom: 15px;
    line-height: 22px;
}

#items-ls .item .place {
font-weight: bold;
margin-bottom: 10px;
font-size: 15px;
color: #333;
}

#items-ls .item{
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #eee;
    border-radius: 5px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #444;
    position: relative;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
#items-ls h2{
    padding-left: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
}
#items-ls
#items-ls .item:hover{
    background-color: #ddd;
}
#items-ls .item.nohover{
    background-color: #eee;
}
#items-ls .item .place{
    margin-bottom: 5px;
}
#items-ls .item .title{
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
#items-ls .item .address{
    font-style: italic;
    font-size: 13px;
}
#items-ls .item .more{
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-weight: bold;
    line-height: 20px;
}
#items-ls .item .more i{
    margin-left: 10px;
    font-size: 18px;
    line-height: 20px;
}