/* 
    Document   : calendario
    Created on : 21-may-2012, 21:45:34
    Author     : Fernanda
    Description:
    Purpose of the stylesheet follows.
*/
.cale {
    float: left;
    border: 1px solid darkgrey;
    position: relative;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    min-width: 71px;
}
.mes {
    background: rgb(244,97,97); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(244,97,97,1) 0%, rgba(196,31,9,1) 73%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,97,97,1)), color-stop(73%,rgba(196,31,9,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(244,97,97,1) 0%,rgba(196,31,9,1) 73%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(244,97,97,1) 0%,rgba(196,31,9,1) 73%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(244,97,97,1) 0%,rgba(196,31,9,1) 73%); /* IE10+ */
    background: linear-gradient(top, rgba(244,97,97,1) 0%,rgba(196,31,9,1) 73%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f46161', endColorstr='#c41f09',GradientType=0 ); /* IE6-9 */
    padding: 2px 5px;
    display: block;
    text-align: center;
    color: white;
    font-size: 0.8em;
    border-bottom: 2px solid #9E4D4D;

    -webkit-border-radius: 2px 2px 0px 0px;
    border-radius: 2px 2px 0px 0px;
    -moz-border-radius: 2px 2px 0px 0px;
}
.dia {
    display: block;
    font-size: 1.7em;
    text-align: center;
    font-weight: bold;
    padding:7px 0 12px;
    text-shadow: 0 1px 0 #eee;
    -moz-border-radius: 0px 0px 2px 2px;
    -webkit-border-radius: 0px 0px 2px 2px;
    border-radius: 0px 0px 2px 2px;
    background: white;
    background: -moz-linear-gradient(top, white 1%, #F7F7F7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,white), color-stop(100%,#F7F7F7));
    background: -webkit-linear-gradient(top, white 1%,#F7F7F7 100%);
    background: -o-linear-gradient(top, white 1%,#F7F7F7 100%);
    background: -ms-linear-gradient(top, white 1%,#F7F7F7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
    background: linear-gradient(top, white 1%,#F7F7F7 100%);
}
.anio {
    position: absolute;
    bottom: -2px;
    right: 2px;
    font-size: 0.8em;
    text-shadow: 0 1px 0 white;
}

