div.fecha {
	float: left; 
	margin: 0;
	font-size: 10px;
	width: 185px;
}
div.fecha label{
	color:#313131;
	font-size:11px;
	display:block;
	text-align:left;
	margin:0px 0 1px 0;
}
div.fecha input {
	width: 100px;
	margin: 1px 5px 15px 0;
	padding:2px 0 2px 2px;
	border: 1px solid #8e9181;
	color:#2F2E2A;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	height: 15px;
}
/* This is a very basic stylesheet for the date-picker. Feel free to create your own. */

/* The wrapper div (note: ie7 hack at bottom of file) */
.datePicker
        {
        position:absolute;
        z-index:9999;
        text-align:center;
        font:10px Verdana, Sans-Serif;
        }


.datePicker th,
.datePicker td
        {
        font-size:9px;
        }

/* The iframe hack to cover selectlists in Internet Explorer <= v6 */
.iehack
        {
        position:absolute;
        background:#fff;
        z-index:9998;
        padding:0;
        border:0;
        display:none;
        }
/* The button created beside each input. (position:relative required for correct positioning of datePicker in IE) */
.date-picker-control
        {
        position:relative;
        border:0 none;
        padding:0;
        margin-left:4px;
        margin-right: 20px;
        background: url(../images/calendar.png) no-repeat top center;
        width:16px;
        height:16px;
        margin-top:3px;
        vertical-align:top;
        cursor:pointer;
        }
/* The next & previous buttons */
.datePicker th button
        {
        display:inline;
        padding:0;
        margin:0;
        color:#fff;
        height:20px;
        width:13px;
        line-height:5px;
        border-width:0;
        font-family: georgia, times new roman, palatino, times, bookman, serif;
        background:#242424;
        font-weight:bold;
        cursor:pointer;
        /* Remove the next line (or add it to an IE specific stylesheet imported using conditional comments) should you wish to validate the css */
        outline:expression(hideFocus="true");
        }
.datePicker th button:active,
.datePicker th button:focus,
.date-picker-control:active,
.date-picker-control:focus,
.datePicker th button.disabled
        {
        outline:none !important;
        /* Remove the next line should you need to validate the css */
        -moz-outline-style:none;
        }
.datePicker th button.prev-but
        {
        text-align:middle;
        }
.datePicker th button.next-but
        {
        text-align:middle;
        }
.datePicker th button.disabled
        {
        color:#242424;
        cursor:default;
        }
/* The spacing between the buttons */
.but-spacer
        {
        
        }
/* The mon, tue, wed etc day buttons */
.datePicker th button.fd-day-header
        {
        text-align:center;
        margin:0 auto;
        font: 9px Verdana, Sans-Serif;
        height:auto;
        width:auto;
        text-decoration:none;
        line-height:8px;
        font-weight: bold;
        }
/* The table */
.datePicker table
        {
        position:relative;
        margin:0;
        padding:0;
        border: 1px solid #545337;
		background: #fff; /* AQUI fff */
        text-align:center;
        width:100px;
        }
/* Common TD & TH styling */
.datePicker table td
        {
        padding:4px 3px 3px 3px;
        vertical-align:middle;
        /* Opera requires a line-height bigger than 1em in order to redraw properly */
        line-height:3px;
        cursor:default;
		width: 21px;
		height: 11px;
		background: #fff;
        }
.datePicker table th
        {
        border:0 none;
        padding:0;
        line-height:4px;
        font-weight:bold;
        color:#fff;
        text-align:center;
        vertical-align:middle;
		width: 21px;
		height: 12px;
		background:#242424;
        }
/* The "mon tue wed etc" day header button styles */
.datePicker table th.date-picker-day-header
        {
        text-transform:uppercase;
        }
/* The "todays date" style */
.datePicker table td.date-picker-today
        {
        color:#fff !important;
        background: #C17E37;
        }
/* The "selected date" style */
.datePicker table td.date-picker-selected-date
        {
        color:#333 !important;
        border-color:#333 !important;
        }
/* the "highlight days" style */
td.date-picker-highlight
        {
        color:#971618;
        }
/* The date "out of range" style */
.datePicker table td.out-of-range
        {
        color:#ccc !important;
        background:#fff !important;
        cursor:default !important;
        }
/* The "disabled days" style */
.datePicker table td.day-disabled
        {
        color:#aaa !important;
        background:#fff !important;
        cursor:default !important;
        }
/* The "active cursor" style */
.datePicker table td#date-picker-hover
        {
        cursor:pointer;
        color: #ffeb6b;
        background: #C17E37;
        }
/* Remove the images for Internet Explorer <= v6 using the "* html" hack */
* html .datePicker table td.date-picker-selected,
* html .datePicker table td.date-picker-hover,
* html .datePicker table td
        {
        background-image:none;
        }
/* Target ie7 only */
*:first-child+html .datePicker
        {
        min-width:23em;
        width:23em;
        }
