/*
 * Light Calendar for eSKY.pl website
 */
#esky_calendar {
	width:148px;/*300px;*/
	background-color:#fff;

	border:1px solid #CDD1D8;
	border-right:2px outset #9da1a6;
	border-bottom:2px outset #9da1a6;

	overflow:hidden;
	position:relative;
	padding:5px;
	z-index: 100;
}
.calendar-table {
	margin:0px;
	background-color:#fff;
	border-left:1px solid #F0F3F7;
	float:left;
}
.calendar-table + .calendar-table {
	margin-left: 3px;
}
.calendar-table td {
	border-bottom:1px solid #F0F3F7;
	border-right:1px solid #F0F3F7;
}
.calendar-table th {
	padding:1px 0px;
	text-align:center;
	color:#fff;
	background-color:#7690B2;
	border-right:1px solid #F0F3F7;
	font-weight:bold;
}
.calendar-header-day {
	padding:2px 0px;
	text-align:center !important;
	color:#374E6D;
	background-color:#CFD9E6;
	border-top:1px solid #F0F3F7;
}
.calendar-day {
/*	border-top:1px solid #eee; */
}
.month-day {
	display:block;
	width:14px;
	height:12px;
	line-height:12px;
	padding:2px 3px;
	text-align:right;
	cursor:pointer;
	text-decoration:none;
	color:#374E6D;
}
.month-day:hover,.is-hover {
	background-color:#374E6D;
	color:#fff !important;
	text-decoration:none;
}
.is-selected{
/*	background-color: #1f72c6;
	color: #fff;*/
	border:1px solid red;
	padding:1px 2px;
}
.is-today {
	font-weight:bold;
}
.is-weekend {
	color:#CD071E;
}
.is-linked-disabled,
.is-blocked,
.is-out-of-range {
	background-color:#ddd;
	cursor:default;
}
.is-disabled {
	color:#999;
	cursor:default;
}
.is-linked {
	background-color:#ffc;
}
.calendar-button {
	width:20px;
	display:inline;
	color:#374E6D !important;
	text-align:center;
}
.calendar-previous,
.calendar-next {
	text-decoration:none;
	width:16px;
	height:16px;
	text-indent:-9000px;
	overflow:hidden;
	margin:2px 4px;
}
.calendar-next {
	float:right;
	clear:none;
	background:#fff url(../images/calendar_next.gif) no-repeat;
}
.calendar-previous {
	float:left;
	clear:none;
	background:#fff url(../images/calendar_prev.gif) no-repeat;
}
.calendar-previous:hover,
.calendar-next:hover {
	text-decoration:none;
}
.calendar-current {
	width:80px;
	margin:5px 13px;
	float:left;
	clear:none;
	text-align:center;
	border:none;
	background:none;
	font-weight:bold;
	display: none;
}
.calendar-close {
	display:block;
	width:147px;
	margin:5px auto;
	float:none;
	clear:both;
	text-align:center;
	border:none;
	background:none;
	font-weight:bold;
}
.calendar-navigation {
	clear:both;
	height: 20px;
	line-height: 20px;
}


/* Event calendar */
#eventCalendar .calendar-table {
	width: 100%;
	float: none;
	border: 1px solid #F0F3F7;
	border-collapse: collapse;
}
#eventCalendar .calendar-table a {
	width: auto;
	height: 16px;
	line-height: 16px;
	text-align: center;
	border: 1px solid #fff;
}
#eventCalendar .calendar-table td {
	border:0 none;
	border-bottom: 1px solid #eee;
	text-align: center;
}
#eventCalendar .is-disabled.month-day:hover {
	background-color:#fff;
	color:#999 !important;
	cursor:default;
}
#eventCalendar .is-disabled.is-weekend:hover {
	background-color:#fff;
	color:#CD071E !important;
	cursor:default;
}
#eventCalendar .is-weekend {
	color:#CD071E;
}
#eventCalendar .has-event {
	background-color: #e8f1f9;
	font-weight: bold;
}
#eventCalendar .has-event:hover {
	background-color:#1f72c6;
	color:#fff;
}
#eventCalendar .is-selected{
	background-color: #374E6D !important;
	color: #fff;
	border: 1px solid #374E6D !important;
	padding: 2px 3px;
	cursor: default;
}
#eventCalendar .is-today {
	font-weight:bold;
	border: 1px solid #f00 !important;
}
