
/* For the details, see: http://flowplayer.org/tools/dateinput/index.html#skinning */

/* calendar root element */
#calroot {
    /* place on top of other elements. set a higher value if nessessary */
    z-index:999;

    background-color:#fff;
    border:1px solid #ccc;
    padding-top:10px;
    display:none;
    margin:0 0 0 0;
}

/* head. contains title, prev/next month controls and possible month/year selectors */
#calhead {
    padding:2px 0;
    height:22px;
}

#caltitle {
    font-size:14px;
    color:#222;
    float:left;
    text-align:center;
    width:160px;
    line-height:20px;
    font-weight:bold;
}

#calnext, #calprev {
    display:block;
    width:20px;
    height:20px;
    background:transparent url(/images/layout/prev.gif) no-repeat scroll center center;
    float:left;
    cursor:pointer;
    margin-left:9px;
}

#calnext {
    background-image:url(/images/layout/next.gif);
    float:right;
    margin-right:9px;
}

#calprev.caldisabled, #calnext.caldisabled {
    visibility:hidden;
}

/* year/month selector */
#caltitle select {
    font-size:10px;
}

/* names of the days */
#caldays {
    margin-top:8px;
    height:18px;
    border-bottom:1px solid #ddd;
}

#caldays span {
    display:block;
    float:left;
    width:32px;
    text-align:center;
    font-size:11px;
    color:#666;
}

/* container for weeks */
#calweeks {
    background-color:#fff;
    margin-top:4px;
}

/* single week */
.calweek {
    clear:left;
    height:26px;
}

/* single day */
.calweek a {
    display:block;
    float:left;
    width:31px;
    height:25px;
    text-decoration:none;
    font-size:12px;
    margin-left:1px;
    text-align:center;
    line-height:25px;
    color:#333;
}

/* different states */
.calweek a:hover, .calfocus {
    background-color:#dba249;
}

/* sunday */
a.calsun {
    color:red;
}

/* offmonth day */
a.caloff {
    color:#ccc;
}

a.caloff:hover {
    background-color:rgb(245, 245, 250);
}


/* unselecteble day */
a.caldisabled {
    background-color:#efefef !important;
    color:#ccc	!important;
    cursor:default;
}


/* current date */
#calcurrent {
    background-color:#6c96ce;
    color:#fff;
}

/* today */
#caltoday {
    background-color:#999;
    color:#fff;
}
