/*
	glDatePicker default style

	http://code.gautamlad.com/glDatePicker/
	https://github.com/glad/glDatePicker/
*/

/* Calendar container div */
.gldp-default
{
	float:left;
	font-family:"trebuchet ms" !important;
	background-color:#ccc !important;
	font-size:0.8em !important;
	border:solid 1px #888;
}

/* Table style */
.gldp-default table
{
	border-spacing:1px;
	border-collapse:inherit;
}

/* Default row height */
.gldp-default tr
{
	line-height:28px;
}

/* Default style of cell */
.gldp-default td
{
	margin:0;
	padding:0;
	width:33px;
	text-align:center;
}

/* Previous and Next arrows */
.gldp-default-prevnext
{
	color:#222;
	cursor:pointer;
	font-weight:bold;
	background-color: #ccff66;
}

/* Month Year title */
td.gldp-default-monyear
{
	color:#222;
	font-size:0.9em !important;
	font-weight:bold;
	width:auto;
	background-color: #ccff66;
}

/* Days of the week (Sun, Mon, ...) */
.gldp-default-dow
{
	background-color: #339900;
	color:#eee;
	font-size:0.8em !important;
	font-weight:bold;
}

/* Selectable days */
.gldp-default-day, .gldp-default-sat, .gldp-default-sun
{
	background-color:#fff;
	color:#222;
	border:solid 1px #fff;
	font-weight:bold;
}
.gldp-default-day-hover, .gldp-default-sat-hover, .gldp-default-sun-hover
{
	cursor:pointer;
	font-weight:bold;
}

/* Selected days */
.gldp-default-selected,
.gldp-default-day-hover,
.gldp-default-today-hover, 
.gldp-default-sat-hover,
.gldp-default-sun-hover
{
	background-color:#339900;
	color:#fff;
	border:solid 1px #ccff66;
	font-weight:bold;
}

/* Today */
.gldp-default-today
{
	background-color:#eeffee;
	color:#222;
	border:solid 1px #339900;
	font-weight:bold;

}

/* Weekends */

/* Non-selectable day.  Includes:previous/next month days and days that fall in the allowOld and endDate conditions */
.gldp-default-noday
{
	background-color:#fff;
	border:solid 1px #fff;
	color:#666;
	cursor:wait;
}