﻿@CHARSET "UTF-8";

.elenco_applicazioni {
    display: inline-block;
}

li.elenco_app {
    background: transparent url('../images/checkmark_vuoto.png') no-repeat bottom right;
    list-style-type: none;
    float: left;
    margin-left: 1em;
    margin-top: 1em;
    margin-right: 1em;
    min-height: 35px;
    min-width: 150px;
    border: 1px solid #888888;
    padding: 5px;
    cursor: pointer;
    display: inline;
}
li.elenco_app.selected {
    background: #DBDBDB url('../images/checkmark.png') no-repeat bottom right;
    border: 1px solid #ff0000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px #999999;
}
li.elenco_app:hover {
    border: 1px solid #ff0000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 3px 3px 20px #111111;
}
span.spanTitolo {
    font-variant: small-caps;
    font-size: 120%;
    color: #686C6E;
    font-weight: 700;
    font-style: italic;
    display: inline-block;
}


.div_content {
    margin-left: 20%;
    margin-right: 20%;
    width: auto;
}
@media screen and (max-width: 800px) {
    .div_content {
        margin-left: 1em;
        margin-right: 1em;
    }
