/**
* style per le mie ricette
* by Cristina Anichini
*/

body {
    font-family: "Lucida Grande", "Optima-Regular", Verdana, sans-serif;
    font-size: 1em;
    color: #000030;
    line-height: 1.25em;
    background: #ffffff url("images/fiori.jpg") no-repeat left top;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

#container {
    margin: 40px auto 10px;
    width: 90%;
    padding: 5px;
    height: auto;
    background-color: rgba(255,255,255,0.92);
    border: 2px solid #6C6238;
    overflow: hidden;
}

#footer {
    margin: 10px auto;
    width: 90%;
    padding: 10px;
    text-align: center;
    height: auto;
    background-color: rgba(255,255,255,0.92);
    border: 2px dotted #6C6238;
    overflow: hidden;
}

#menu {
    float: left;
    width: 15%;
    padding: 20px;
    background: #fff;
    height: auto;
}

#main {
    float: left;
    width: 70%;
    padding: 20px;
    background: #fff;
    height: auto;
}

.tab {
    float: left;
    width: 50%;
}

#testa {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
    background: #fff;
    text-align: center;
    border-bottom: 2px dotted #6C6238;
    font-family: "Lucida Grande", "Optima-Regular", Verdana, sans-serif;
    font-size: 32px;
    color: #AF6E30;
    box-sizing: border-box;
}

a {
    color: #8C7F47;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FFCC66;
    text-decoration: underline;
    font-weight: bold;
}

.link-testa {
    color: #AF6E30;
    text-decoration: none;
}

.link-testa:hover {
    text-decoration: underline;
}

#testa {
    cursor: pointer;
}

table {
    font-size: 1em;
    color: #000030;
    width: 100%;
    border-collapse: collapse;
}

td, th {
    padding: 8px 6px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #f6f1df;
    color: #6C6238;
}

table.visua {
    font-size: 1em;
    color: #000030;
    width: auto;
    border: 1px solid silver;
}

.visua td {
    padding: 3px 5px;
    border: 1px solid silver;
}

.dati {
    padding: 15px;
    border: 1px solid #56844f;
    margin: 15px 0;
    background: #fcfcf7;
}

.titolo {
    margin-bottom: 10px;
    font-style: italic;
    text-align: left;
    color: #56844f;
}

.arancio {
    color: #FF6600;
    font-weight: bold;
    font-size: 14px;
}

h2 {
    font-size: 24px;
    font-style: italic;
    font-variant: small-caps;
    letter-spacing: 1px;
    color: #56844f;
}

h3 {
    font-size: 32px;
    font-style: italic;
    font-variant: small-caps;
    letter-spacing: 1px;
}

h4 {
    font-size: 1.5em;
    font-style: italic;
    font-variant: small-caps;
    letter-spacing: 1px;
}

input[type="text"], select, textarea {
    border: 1px solid #bdb7a0;
    padding: 6px;
    font-size: 1em;
    background: #fff;
}

textarea {
    width: 100%;
    max-width: 100%;
}

button {
    padding: 6px 12px;
    border: 1px solid #6C6238;
    background: #f6f1df;
    color: #6C6238;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #efe6c8;
}

.form-ricerca {
    margin: 15px 0 25px 0;
    padding: 12px;
    background: #fcfcf7;
    border: 1px solid #d8d1b0;
}

.form-ricerca input[type="text"],
.form-ricerca select {
    padding: 6px;
    border: 1px solid #bdb7a0;
    font-size: 1em;
}

.form-ricerca button {
    padding: 6px 12px;
    border: 1px solid #6C6238;
    background: #f6f1df;
    color: #6C6238;
    cursor: pointer;
    font-weight: bold;
}

.form-ricerca button:hover {
    background: #efe6c8;
}

.azioni a {
    margin-right: 10px;
}

@media print {

    body {
        background: none;
    }

    #testa,
    #footer,
    a {
        display: none;
    }

    #container {
        border: none;
        background: #fff;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #main {
        width: 100%;
        padding: 0;
    }

    table {
        border-collapse: collapse;
    }

    td, th {
        border: 1px solid #000;
    }
}