.calendar-widget {
  color: #000;
	position: relative;
	border: 2px solid #366BAF;
	font-size: 12px;
	width: 194px;
	padding: 3px;
	height: 221px;
	background: #fff;
	line-height: normal;
	margin: auto;
}

/* header
********************************************************/
.calendar-widget .header {
	position: relative;
	background: #12407D;
	height: 21px;
	padding-top: 4px;
	margin-bottom: 3px;
}

.calendar-widget .header .title {
	text-align: center;
	padding-top: 1px;
	margin: 0px 20px 0 20px;
}

.calendar-widget .header .titleText {
	color: #fff;
	font-weight: bold;
}
.calendar-widget .header .next,
.calendar-widget .header .previous {
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	text-align: center;
	color: #000;
	top: 5px;
	cursor: pointer;
}
.calendar-widget .header .previous {
	left: 5px;
}
.calendar-widget .header .next {
	right: 5px;
}

/* body
********************************************************/
.calendar-widget .body {
	position: relative;
	top: 0px;
	left: 0px;
	width: 194px;
	border-right: 2px solid #fff;
	height: 193px;
	/*overflow: hidden;*/
}

/* time
********************************************************/
.calendar-widget .time {
	width: 100%;
	height: 100%;
	background: #eee;
}

.calendar-widget .time .hour,
.calendar-widget .time .separator,
.calendar-widget .time .minutes {
	border: 1px solid #ccc;
	background: #fff;
	width: 50px;
	font-size: 32px;
	position: absolute;
	top: 50px;
	text-align: center;
	padding: 2px;
}

.calendar-widget .time .hour {
	left: 30px;
}
.calendar-widget .time .separator {
	background: transparent;
	border: 0px;
	width: 10px;
	left: 91px;
}

.calendar-widget .time .minutes {
	left: 110px;
}
.calendar-widget .time .ok {
	position: absolute;
	top: 105px;
	width: 136px;
	left: 30px;
	font-size: 20px;
}

/* days-grid
********************************************************/
.calendar-widget .days .day {
	float: left;
	background: #ccc;
	text-align: center;
	padding-top: 4px;
	width: 25px;
	overflow: hidden;
	height: 21px;
	margin: 0 3px 3px 0;
}

.calendar-widget .days .day0 {
	margin-right: 0;
}

.calendar-widget .days .week5 .day {
	margin-bottom: 0;
}

/* days-colors
********************************************************/
.calendar-widget .days .title {
	background: #366BAF;
	font-weight: bold;
	color: #fff;
	cursor: default;
}

.calendar-widget .days .otherMonth {
	background: #eee;
	color: #aaa;
}

/* months
********************************************************/
.calendar-widget .months .month {
	float: left;
	background: #eee;
	cursor: pointer;
	text-align: center;
	overflow: hidden;
	width: 62px;
	height: 31px;
	padding-top: 15px;
	margin: 0 3px 3px 0;
}

.calendar-widget .months .month3,
.calendar-widget .months .month6,
.calendar-widget .months .month9,
.calendar-widget .months .month12 {
	margin-right: 0;
	width: 64px;
}

.calendar-widget .months .month10,
.calendar-widget .months .month11,
.calendar-widget .months .month12 {
	margin-bottom: 0;
}

/* years
********************************************************/
.calendar-widget .years .year {
	float: left;
	background: #eee;
	cursor: pointer;
	text-align: center;
	padding-top: 11px;
	width: 46px;
	overflow: hidden;
	height: 25px;
	margin: 0 3px 3px 0;
}

.calendar-widget .years .year3,
.calendar-widget .years .year7,
.calendar-widget .years .year11,
.calendar-widget .years .year15,
.calendar-widget .years .year19 {
	margin-right: 0;
	width: 47px;
}

.calendar-widget .years .year16,
.calendar-widget .years .year17,
.calendar-widget .years .year18,
.calendar-widget .years .year19 {
	margin-bottom: 0;
	height: 26px;
}

/* global
********************************************************/
.calendar-widget .selected {
	background: #F9B84A !important;
	color: #fff !important;
}

.calendar-widget .unavailable {
	background: #edd !important;
	color: #b88 !important;
	cursor: default !important;
}

.calendar-widget .days .week .day:hover,
.calendar-widget .months .month:hover,
.calendar-widget .years .year:hover {
	/*background: #366BAF !important;
	color: #fff !important;*/
	background: #ddd;
}

/* calendar events */
.calendar-widget .events {
	display: none;
}

.calendar-widget .events{
  background: #fff;
  border: 2px solid #366BAF;
  color: #000;
  font-size: 0.9em;
  padding: 5px;
  position: absolute;
  bottom: 0%;
  left: 100%;
  z-index: 9999;
width: 300px;
}

.calendar-widget .events p{
  text-align: left;
}

.calendar-widget .header .next span,
.calendar-widget .header .previous span{
  font-weight: bold;
}

.calendar-widget .day.event{
  padding-top: 0;
	height: 25px;
}
.calendar-widget .day.event a{
  background: #12407D;
  color: #FCFF00;
  display: block;
  height: 100%;
  padding-top: 4px;
  text-decoration: none;
}
.calendar-widget .day.event a:hover{
  background: #366BAF;
  color: #fff;
}
