/*
 * wp-cat2calendar default style
 * $Id: default.css 171416 2009-11-08 13:12:19Z 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 */

.wp_cat2calendar {
    margin: 10px 0;
    /*zoom: 1; for buggy IE */
}

.wp_cat2calendar table {
    width: 100%;
    border: 1px solid #ccc;
    empty-cells: show;

    /* for all browsers */
    table-layout: fixed;
    /* for buggy ie working by some strange standards, hello M$! */
   /* _table-layout: auto;*/
}

.wp_cat2calendar table th,
.wp_cat2calendar table td {
    border: 1px dotted #ccc;
    padding: 5px;
    margin: 0;
    text-align: center;
}

.wp_cat2calendar table th {
    background-color: #f7f7f0;
    border: 0;
    border-bottom: 1px solid #444444;
    background-image: url(th-bk.jpg);
/*    text-shadow: #fff 0 1px 0;*/
    font-size: 80%;
}

/* th additional styles which can be overriden */
.wp_cat2calendar table th.day-first,
.wp_cat2calendar table th.day-last,
.wp_cat2calendar table th.day-0,
.wp_cat2calendar table th.day-1,
.wp_cat2calendar table th.day-2,
.wp_cat2calendar table th.day-3,
.wp_cat2calendar table th.day-4,
.wp_cat2calendar table th.day-5,
.wp_cat2calendar table th.day-6
{
}

/* td additional styles which can be overriden.
   no-posts class used for a days where is no posts found.
*/
.wp_cat2calendar table td.day-first,
.wp_cat2calendar table td.day-last,
.wp_cat2calendar table td.day-0
.wp_cat2calendar table td.day-1
.wp_cat2calendar table td.day-2
.wp_cat2calendar table td.day-3
.wp_cat2calendar table td.day-4
.wp_cat2calendar table td.day-5,
.wp_cat2calendar table td.day-6,
.wp_cat2calendar table td.no-posts
{
}

.wp_cat2calendar table td {
    height: 30px;
    vertical-align: top;
}

.wp_cat2calendar table td span.day {
    font-family: Georgia, Helvetica, Times, serif;
    font-size: 80%;
}

.wp_cat2calendar table td.empty {
    background-color: #f7f7f7;
}

.wp_cat2calendar table td.past {
    background-color: #ffdddd;
}

.wp_cat2calendar table td.current {
    background-color: #ffdd88;
}

.wp_cat2calendar table td.future {
    background-color: #ddffdd;
}

.wp_cat2calendar .nav {
    text-align: center;
    padding: 10px;
    overflow: hidden;
    font-size: 80%;
}

.wp_cat2calendar .nav .left {
    float: left;
    width: auto;
}

.wp_cat2calendar .nav .right {
    float: right;
    width: auto;
}

.wp_cat2calendar .nav .center {
    /* no styles */
}

.wp_cat2calendar .nav .current_date {
    font-weight: bold;
}

.wp_cat2calendar .nav .clear {
    clear: both;
}

.wp_cat2calendar table ul.posts {
    margin: 5px 0 0 15px;
    padding: 0;
}

.wp_cat2calendar table ul.posts li {
    text-align: left;
    font-size: 80%;
    line-height: 1.2em;
    padding: 0 0 5px 0;
}
