/**************************************
 **************************************
 * 0.0 styky footer
 */
/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*
*BASIC HTML STRUCTURE
*<div id="wrap">
*   <div id="main">
*   </div>
*</div>
*<div id="footer">
*</div>
*
*/

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}

#wrap {min-height: 100%;}

#main {overflow:auto;
	padding-bottom: 62px;}  /* must be same height as the footer */

#footer {position: relative;
	margin-top: -62px; /* negative value of footer height */
	height: 62px;
	clear:both;} 
/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}
/**********************************************************************/

body {
    font-size: 10px;
	
}
div#header {
    background: -webkit-linear-gradient(black, white); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(black, white); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(black, white); /* For Firefox 3.6 to 15 */
    background: linear-gradient(black, white); /* Standard syntax */
}
div#header img {
    box-shadow: 0px 0px 5px black;
}
div#header-image {
    width: 100%;
    background-image: url('../img/libro_sfondo.png');
    background-repeat: repeat-x;
    background-size: auto 50%;
}
div.row {
    /*background-color: lightgray;*/
}
div.columns {
    /*background-color: grey;*/
}
img#snail {
    padding: 10px;
	max-height: 350px;
	margin: auto;
}
div#right-text {
    text-align: right;
    font-family: 'Istok Web', sans-serif;
    font-style: italic;
    font-size: 28px;
    line-height:120%;
    padding: 30% 10% 0 0;
}
div#right-text strong{
    font-weight: inherit;
    color: #EF292F;
}
div#bottom-text {
    margin: 10px 0 20px 0;
    font-family: 'Istok Web', sans-serif;
    font-style: italic;
    font-size: 18px;
    text-align:center;
    color: #98999B;
}
div#footer {
    padding: 20px 0 40px 0;
	background-color: #E6E7E8;
    border-top: 2px solid #7F8081;
    font-size: 12px;
    color: #424245;
    font-family: 'Istok Web', sans-serif;
}
div#footer span {
    white-space: nowrap;
    margin-right: 30px;
}
div#footer span:last-child{
    color: blue;
}