/*
 * jQuery UI Datepicker 1.8.12
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-widget {
    font-family: "Helvetica Neue","Trebuchet MS",Tahoma,Verdana,Arial,sans-serif;
    background: #f0f4f7;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}

.ui-datepicker {
    padding: 0;
}

.ui-datepicker-header {
    border: none;
    background-color: #a3d143;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;

    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 0 0.5em 0 rgba(94, 185, 53, 0.5) inset;
    background: #f5fbf2;
    color: #407e24;
    text-shadow: 1px 1px 0 #ffffff;
}

.ui-datepicker-header .ui-state-hover {
    background: #8dc532;
    border-color: transparent;
    cursor: pointer;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    top:2px
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
    background-image: url(../img/jquery-ui/ui-icons_222222_256x240.png);
    background-position: -32px -16px;
}

.ui-datepicker .ui-datepicker-prev span {
    background-position: -96px -16px;
}

.ui-datepicker table {
    margin: 0;
}

.ui-datepicker th {
    font-size: 9px;
    color: #6c7173;
    font-size: 13px;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    border-top: 1px solid rgba(186,194,200,.6);
    border-bottom: 1px solid rgba(186,194,200,.6);
    background-color: transparent;
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
}

.ui-datepicker td {
    border: none;
    border-top: 1px solid #e7e9ea;
    border-right: 1px solid #e7e9ea;
    padding: 3px;
    background: #fafafa;
    width: 14.2%;
}

.ui-datepicker tr:first-child td {
    border-top: none;
}

.ui-datepicker td:last-child {
    border-right: none;
}

td .ui-state-default {
    border: 1px solid transparent;
    text-align: center;
    padding: .7em 0;
    margin:0;
    font-size: 12px;
    font-weight: bold;
    background: #f5f8fa;
    color: #6c7173;
    text-shadow: 0 1px 0 rgba(255,255,255,.55);

}

td.ui-state-disabled .ui-state-default {
    text-shadow: none;
    opacity: .8;
    color: #6c7173;
}

td .ui-state-active,
td .ui-state-hover {
    border: 1px solid rgba(121,188,27,.68);
    background: #a3d143;
    color: #fff;
    text-shadow: 0 -1px 0 #30332a;
}

/* CUSTOMS */

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold!important;
    box-shadow: 0 0 0 1px #ffffff inset,
    0 0 0.5em #d9d9d9 inset,
    0 0.125em 0 0 rgba(100,100,100, .3),
    0 0.15em 2px rgba(150, 150, 150, .1);
    background: #f2f2f2;
    border: 1px solid #cccccc;
    color: #666666;
    cursor: pointer;
    text-shadow: 1px 1px 1px #ffffff, 2px 2px 1px #ffffff, -1px -1px 0 #ffffff, -2px -2px 1px #cccccc;
    border-radius: 0.3em;
}

.ui-widget-content {
    border: 1px solid #e6e6e6;
}


