body {
    margin: 0;
    padding:0;
    font-family: lucida sans unicode, verdana, arial, sans-serif;
    margin: 0px auto;
    color: #606060;
    font-size: 16px
}
a {
    color: #606060;
    text-decoration: none;
}
a:hover {
    color: #3B3B3B;
    text-decoration: underline;
}
img {
    border: none;
}
#container {
    float: left;
    width: 90%;
    margin-left: 5%;
    border: 1px solid #ddd;
    background-image: url(../images/bg.jpg);
}
section {
    float: left;
    width: 92%;
    margin: 4%;
    text-align: center;
}
h1 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: right;
    color: #3B3B3B;
}

.left {
    width: 80%;
    float: left;
}

.right {
    width: 20%;
    float: right;
    text-align: right;
    padding-top: 20px;
}

.clear-float {
    clear: both;
    float: none;
}

/* STILI HEADER */
/* INIZIO MENU/PARTE SUPERIORE */
header {
    background-color: white;
    float: left;
    width: 100%;
}
header #logo {
    float: left;
    margin-left: 20px;
    margin-top: 10px;
}
header #title_page {
    float: right;
    margin-right: 20px;
    margin-top: 10px;
}

/* FINE MENU/PARTE SUPERIORE */
/* STILI CONTENUTI */
.horizontal > div {
    width: 100%;
}

.colsx {
    float: left;
    width: 40%;
    text-align: left;
}
.coldx {
    float: right;
    width: 40%;
    text-align: right;
}
.fill {
    width: 100%;
}

section > .coldx {
    text-align: left;
}

.box {
    width: 950px;
    padding: 15px 20px;
    border: 1px solid #CCCCCC;
    background-color: #F8F8F8;
    border-radius: 5px;
}
.colsx .box {
    float: left;
}
h2 {
    font-size: 1em;
    font-style: normal;
    font-weight: bold;
    margin: 0;
}

h2.normal {
    font-weight: normal;
}

.menu  h2{
    text-transform: uppercase;
    margin-bottom: 1em;
}
h3 {
    font-weight: normal;
    font-size: 0.8em;
    margin:0;
    line-height: 20px;
    margin: 1em 0;
}
.box ul {
    list-style-type: none;
    font-size: 0.9em;
    line-height: 28px;
    padding:0;
}

.documents ul li {
    background-repeat: no-repeat;
    padding-left: 23px;
    background-position: 0 5px;
}
.documents ul li {
    background-image: url(images/icon_file.png);
}

.documents .document_pdf {
    background-image: url(images/icon_pdf.png);
}

.documents .document_doc, .documents .document_docx {
    background-image: url(images/icon_doc.png);
}

.documents .document_xls, .documents .document_xlsx {
    background-image: url(images/icon_xls.png);
}

/* TABLE */
.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 0.9em;
}

.table tr th {
    background-color: #333333;
    color: white;
    padding: 3px 5px;
    text-align: left;
    border: 1px solid white;
}

.table tr td {
    background-color: #EEEEEE;
    border: 1px solid white;
    padding: 2px 5px;
    vertical-align: middle;
}

.table tr:hover td {
    background-color: rgb(216, 216, 216);
}

.table-container {
    max-height: 210px;
    overflow: hidden;
    overflow-y: auto;
}

/* INIZIO FOOTER */
footer {
    font-size: 0.7em;
    margin: 1em;
}
footer .colsx {
    width: 60%;
}
footer .colsx p {
    margin: 15px 0 15px 0;
}

footer a {
    text-decoration: underline;
}

.info {
    font-size: 0.8em;
}

area:hover {
    background: gray;
}

.btn {
    border-radius: 5px;
    background: white;
    border: 2px solid #616161;
    color: #4e4e4e;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn:disabled {
    cursor: default;
    color: #ddd;
    border: 2px solid #ddd;
}

.link {
    text-decoration: underline;
    color: black;
}