/*
 * Copyright (c) 2012-2013 Thibaut Courouble
 * http://www.cssflow.com
 *
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 */
/*cal */

.cal {
    display: block;
    width: 216px;
    -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    margin: 0 auto 10px auto !important;
}
.cal a {
    text-decoration: none;
}
.cal caption {
    display: block;
    line-height: 32px;
    font-weight: bold;
    color: #e2e2e2;
    text-align: center;
    text-shadow: 0 -1px black;
    background: #333;
    border-top: 1px solid #333;
    border-bottom: 1px solid #313131;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}
.cal th,
.cal td {
    width: 30px;
    text-align: center;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}
.cal th:first-child,
.cal td:first-child {
    border-left: 0;
}
.cal th {
    line-height: 20px;
    font-size: 8px;
    color: #696969;
    text-transform: uppercase;
    background: #f3f3f3;
    border-left: 1px solid #f3f3f3;
}
.cal td a {
    clear: both;
    display: block;
    position: relative;
    width: 30px;
    line-height: 28px;
    color: #666;
    background-image: -webkit-linear-gradient(top, #eaeaea, #e5e5e5 60%, #d9d9d9);
    background-image: -moz-linear-gradient(top, #eaeaea, #e5e5e5 60%, #d9d9d9);
    background-image: -o-linear-gradient(top, #eaeaea, #e5e5e5 60%, #d9d9d9);
    background-image: linear-gradient(to bottom, #eaeaea, #e5e5e5 60%, #d9d9d9);
    -webkit-box-shadow: inset 1px 1px rgba(255, 255, 255, 0.5);
    box-shadow: inset 1px 1px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}
.cal td a:hover,
.cal td.off a {
    background: #f3f3f3;
}
.cal td.off a {
    color: #b3b3b3;
}
table.cal {
    background: #fff;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    margin: 0;
    border: 0px;
    border-collapse: collapse;
}
table.cal thead {
    padding: 0px;
    margin: 0px;
}
table.cal thead tr th,
table.cal tbody tr td,
table.cal tr td {
    display: table-cell;
    font-size: 11px;
    line-height: 28px;
    width: 30px;
    text-align: center;
    text-shadow: 0 1px rgba(255, 255, 255, 0.8);
}
table.cal thead tr th {
    padding: 0px;
    font-weight: normal;
    color: #222;
    line-height: 20px;
    font-size: 8px;
    color: #696969;
    text-transform: uppercase;
    background: #f3f3f3;
    border-left: 1px solid #f3f3f3;
    margin: 0;
}
table.cal tbody tr td {
    color: #333;
    padding: 0px 0px;
    vertical-align: top !important;
    border: none;
    font-size: 11px;
    font-weight: bold;
    border-top: 1px solid #c2c2c2;
    border-left: 1px solid #c2c2c2;
}
table.cal thead tr th:first-child {
    border-left: none;
}
table.cal thead tr th:last-child {
    border-right: none
}