/* ============================== */
/* = HOW TO CUSTOMIZE PAGELINES = */
/* ============================== */

/*

Rules placed in this stylesheet will override the default styles of the Base Platform theme and will not be changed or over written when you update the 
Platform framework. Additionally, since this stylesheet is purely for editing purposes you can easily undo or erase some of the CSS to return your site back to the look and feel of the Base theme. 

In the Base theme the footer is black and the CSS looks like this:

        #footer {
                clear:both;
                font-size:1em;
                overflow:hidden;
                text-align: left;
                background: #000;
                color: #999;
                position: relative;
        }
                
To change the background color to white, all you have to do is declare a new rule for the color like so:

                #footer { background: #FFF; }

A great tool for modifying themes and inspecting CSS elements is the FireBug extension for FireFox. You can also use the developer tools provided by Chrome (right-click and "inspect element") or Internet Explorer if you're feeling dangerous.

LEARN CSS - We recommend using Lynda.com video tutorials to learn using CSS. 
                        Also, for a comprehensive list of CSS rules and usage try consulting W3 schools @ http://www.w3schools.com/css/default.asp
/* ============================== */
/* = Start Your Custom CSS Here = */
/* ============================== */

/* header, branding*/
body.fixed_width .section-branding .content-pad {
    background: none repeat scroll 0 0 #db0404;
    padding: 0 0 10px 0;
}
.section-branding .mainlogo-link, .section-branding .mainlogo-img {
    float: none;
    margin: 0 auto;}

/*special recent post su colonne sx dx*/
h3.srp-post-title {
    display: block;
    font-size: 12px;
}
h4.srp-post-title {
    display: block;
    font-size: 12px;
}
/*decorazioni widget*/
.widget .widget-pad {
    border: 1px solid #db0404;
    margin: 4px 0;
    padding: 10px;
}
/* titoli widget in nero, più grandi e sottolineatura */
.widget .widget-title {
color: #000000;
border-bottom: 1px solid black;
}
h3.srp-widget-title {
    display: block !important;
    font-size: 100%;
}
h4.srp-widget-title {
    display: block !important;
    font-size: 100%;
}

/*dimensione titoli post*/
h1, .fpost .entry-title {
    font-size: 23.6px;
}
/*dimensione corpo testo post ed excerpt*/
.fpost .post-excerpt {
    font-size: 1em;
}
/*testo giustificato nei post*/
.entry_content { text-align: justify; }
.post-excerpt { text-align: justify; }

/* citazioni */
blockquote { border-left: none;}
blockquote p {
font-size: 0.9em ;          
line-height: 18px;
}

/* riequilibrare lo spazio sotto l'header */
#content .content-pad {
    padding-top: 20px;
}

