/*

    Zebra_DatePicker: a lightweight jQuery date picker plugin

    default stylesheet
    copyright (c) 2011 - 2012 Stefan Gabos
    http://stefangabos.ro/jquery/zebra-datepicker/

*/

.Zebra_DatePicker *                          { margin: 0; padding: 0; color: #333 }
.Zebra_DatePicker                            { position: absolute; background: #FFF; border: 0px solid #999; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; display: none; z-index: 100; font-family: helvetica, arial; font-size: 13px }

/* = GLOBALS
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker table                      { border-collapse: collapse; border-spacing: 0 }

.Zebra_DatePicker td,
.Zebra_DatePicker th                         { text-align: center; padding: 5px 0 }

.Zebra_DatePicker td                         { cursor: pointer }

.Zebra_DatePicker .dp_daypicker,
.Zebra_DatePicker .dp_monthpicker,
.Zebra_DatePicker .dp_yearpicker             { margin-top: 3px }

.Zebra_DatePicker .dp_daypicker td,
.Zebra_DatePicker .dp_daypicker th,
.Zebra_DatePicker .dp_monthpicker td,
.Zebra_DatePicker .dp_yearpicker td         { background: #F7F7F7; width: 30px; border: 1px dotted #AAA }

/* = HEADER
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker .dp_header td             {background-color:#CCC; color:#444;}

.Zebra_DatePicker .dp_header .dp_previous,
.Zebra_DatePicker .dp_header .dp_next       { width: 30px }

.Zebra_DatePicker .dp_header .dp_caption    { font-weight: bold }
.Zebra_DatePicker .dp_header .dp_hover      { background: #CCC; color: #FFF;}
.Zebra_DatePicker .dp_header .dp_blocked    { color: #888; cursor: default }

/* = DATEPICKER
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker .dp_daypicker				{margin:0px; padding:0px; background-color:}
.Zebra_DatePicker .dp_daypicker th          { background: #b6e49d }
.Zebra_DatePicker td.dp_not_in_month        { background: #FFF; color: #CDCDCD; cursor: default }
.Zebra_DatePicker td.dp_weekend             { background: #DFDFDF }
.Zebra_DatePicker td.dp_weekend_disabled    { color: #CCC; cursor: default }
.Zebra_DatePicker td.dp_selected            { background: #b9dbed;}
.Zebra_DatePicker td.dp_week_number         { background: #FFCC33; color: #555; cursor: text; font-style: italic }

/* = MONTHPICKER
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker .dp_monthpicker td        { width: 33% }

/* = YEARPICKER
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker .dp_yearpicker td         { width: 33% }

/* = FOOTER
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker .dp_footer                { margin-top: 3px }
.Zebra_DatePicker .dp_footer td             { background-color:#FFF; color: #666; padding: 2px; font-weight: bold }
.Zebra_DatePicker .dp_footer .dp_hover      { background-color:#FFF; color: #AAA; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px }

/* = SOME MORE GLOBALS (MUST BE LAST IN ORDER TO OVERWRITE PREVIOUS PROPERTIES)
----------------------------------------------------------------------------------------------------------------------*/
.Zebra_DatePicker td.dp_current             { background-color:#e8f1f6; }
.Zebra_DatePicker td.dp_disabled            { background: #F3F3F3; color: #CDCDCD; cursor: default }
.Zebra_DatePicker td.dp_hover               { background: #b9dbed;}

/* = ICON
----------------------------------------------------------------------------------------------------------------------*/
/*button.Zebra_DatePicker_Icon                { position: absolute; width: 16px; height: 26px; background: url('calendar.png') no-repeat left top; text-indent: -9000px; border: none; cursor: pointer; margin: 0 0 0 5px; padding: 0; line-height: 0 }*/
button.Zebra_DatePicker_Icon                { width:23px; background: url('calendar.png') no-repeat 2px top; text-indent: -9000px; border: none; cursor: pointer; }
button.Zebra_DatePicker_Icon_Disabled       { background-image: url('calendar-disabled.png') }
button.Zebra_DatePicker_Icon_Inside         { margin: 0 0 0 2px }

/* Fix icon position in Chrome & Safari */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    button.Zebra_DatePicker_Icon_Inside     { margin: 0 5px 0 0 }
}


/* Gradients */
.greyfade, .Zebra_DatePicker .dp_header td, .Zebra_DatePicker .dp_daypicker th  
			{background-color:#EEE; border-radius:0px;
			background: -moz-linear-gradient(top,  #F1F1F1 40%, #DDD 60%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(40%,#F1F1F1), color-stop(60%,#DDD)); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  #F1F1F1 40%,#DDD 60%); /* Chrome10+,Safari5.1+ */
			background: -ms-linear-gradient(top,  #F1F1F1 40%,#DDD 60%); /* IE10+ */
			background: linear-gradient(to bottom,  #F1F1F1 40%,#DDD 60%); /* W3C */}
