.lilcalendar {
-webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, .3);
-moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, .3);
box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, .3);
	width: 266px;
}


.lilcalendar table {
	border-collapse: separate;
	font-size: 16px;
	font-weight: bold;
	border: 0px;
	padding: 0px;
	border-spacing: 0px;
	width: 266px;
	-moz-user-select: none;
  	-khtml-user-select: none;
  	-webkit-user-select: none;
 	 user-select: none;
 	 cursor: default;

}
.lilcalendar td, .lilcalendar th {
	width: 38px;
	height: 38px;
	text-align: center;
	vertical-align: middle;
	background: url(../img/cells.png);
	color: #666;
	position: relative;
	text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
}
.lilcalendar th {
	height: 30px;
	font-weight: normal;
	font-size: 14px;
}
.lilcalendar td:hover, .lilcalendar th:hover {
	background-position: 0px -38px;
	color: #222;
}
.lilcalendar td.date_has_event {
	background-position: 76px 0px;
	color: white;
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}
.lilcalendar td.date_has_event:hover {
	background-position: 76px -38px;
}
.lilcalendar td.padding {
	background: url(../img/calpad.png);
	width: 38px;
}
.lilcalendar td.today {
	background-position: 38px 0px;
}
.lilcalendar td.today:hover {
	background-position: 38px -38px;
}
.lilcalendar .events {
	position: relative;
	text-shadow: none;
}
.lilcalendar .events ul {
	text-align: left;
	position: absolute;
	display: none;
	z-index: 1000;
	padding: 12px;
	line-height: 18px;
	background-color: #dfdfdf;
	border: 1px solid white;
	font-size: 15px;
	-moz-border-radius: 8px;
	-khtml-border-radius: 8px;
	-webkit-border-radius: 8px;
	-border-radius: 8px;
	list-style: none;
	color: #444444;
	-webkit-box-shadow: 0px 8px 8px #333;
	-moz-box-shadow: 0px 8px 8px #333;
	box-shadow: 0px 8px 8px #333;
	cursor: pointer;
}
.lilcalendar .events li {
	padding-top: 5px;
	padding-bottom: 5px;
}
.lilcalendar .events li span {
	display: block;
	font-size: 12px;
	text-align: justify;
	color: #555;
	cursor: pointer;
}
.lilcalendar .events li span.title {
	font-weight: bold;
	color: #222;
}

.lilcalendar .head {
	height: 44px;
	width: 266px;
	background: #393939 url(../img/calhead.png) no-repeat;
	position: relative;
	text-align: center;
	color: #e0e0e0;
	font-family: "LeagueGothicRegular", sans-serif;
	font-size: 28px;
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.9);
	line-height: 44px;
}

.lilcalendar span {
	 cursor: default;
}


.lilcalendar .link-next {
	position: absolute;
	right: 16px;
	top: 15px;
	background: url(../img/arrows.png) no-repeat top left;
    height               : 11px; 
    width                : 10px; 
    background-position  : -10px -0px;
    cursor: pointer;
	
}

.lilcalendar .link-prev {
	position: absolute;
	left: 16px;
	top: 15px;
	background: url(../img/arrows.png) no-repeat top left;
	background-position: 0 0; 
	height               : 11px; 
    width                : 10px; 
    background-position  : -0px -0px
    cursor: pointer;
}
