/*
 * wp-cat2calendar default style
 * $Id: default.css 191863 2010-01-09 13:30:14Z andddd $
 */

/* reset */
.wp_cat2calendar,
.wp_cat2calendar table,
.wp_cat2calendar th,
.wp_cat2calendar td,
.wp_cat2calendar div,
.wp_cat2calendar span,
.wp_cat2calendar ul,
.wp_cat2calendar li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

/* tables still need 'cellspacing="0"' in the markup */
.wp_cat2calendar table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* / reset */

/* nav */
.nav .left {
    float: left;
}

.nav .right {
    float: right;
}

.nav .current_date {
    font-weight: bold;
    text-align: center;
}
/* / nav */

/* calendar */
.wp_cat2calendar table {
    border-collapse: separate;
    border: 1px solid #9DABCE;
    margin: 10px auto;
    font-size: 20px;
}
.wp_cat2calendar td, .wp_cat2calendar th {
    width: 81px;
    height: 40px;
    text-align: center;
    vertical-align: middle;
    background: url('img/cells.png');
    color: #444;
    position: relative;
}
.wp_cat2calendar th {
    height: 30px;
    font-weight: bold;
    font-size: 14px;
}
.wp_cat2calendar td:hover, .wp_cat2calendar th:hover {
    background-position: 0px -81px;
    color: #222;
}
.wp_cat2calendar td.has-posts {
    background-position: 162px 0px;
    color: white;
}
.wp_cat2calendar td.has-posts:hover {
    background-position: 162px -81px;
}
.wp_cat2calendar td.empty {
    background: url('img/calpad.jpg');
}
.wp_cat2calendar td.today {
    background-position: 81px 0px;
    color: white;
}
.wp_cat2calendar td.today:hover {
    background-position: 81px -81px;
}
.wp_cat2calendar .posts {
    position: relative;
}
.wp_cat2calendar .posts ul {
    text-align: left;
    position: absolute;
    display: none;
    z-index: 1000;
    padding: 15px;
    background: #E7ECF2 url('img/popup.png') no-repeat;
    color: white;
    border: 1px solid white;
    font-size: 15px;
    width: 200px;
    -moz-border-radius: 3px;
    -khtml-border-radius: 3px;
    -webkit-border-radius: 3px;
    -border-radius: 3px;
    color: #444444;
    -moz-box-shadow: 0px 8px 8px #333;
    -khtml-box-shadow: 0px 8px 8px #333;
    -webkit-box-shadow: 0px 8px 8px #333;
    margin: 0;
}
.wp_cat2calendar .posts li {
    margin: 0 0 5px 0;
    padding: 0 0 0 5px;
    list-style: none;
    text-indent: 0;
}
/* for themes like kubrick */
.wp_cat2calendar .posts li:before {
    content: "";
}
.wp_cat2calendar .posts li span {
    display: block;
    font-size: 12px;
    text-align: left;
    color: #555;
    line-height: 1.5em;
}
.wp_cat2calendar .posts li span.title {
    font-weight: bold;
    color: #222;
}

.wp_cat2calendar .posts li span.desc {
}

/* / calendar */
