
#calendar {
    width: 700px;
    height: 550px;
    overflow: hidden;
    margin: 0 auto;
}

.calendar-content {
    position: relative;
}
 
#calendar-timebar {
    float: left;
    text-align: right;
}

#calendar-timebar-spacer {
    height: 20px;
}
 
.calendar-day, .calendar-weekday {
    float: left;
}

.calendar-day-title, .calendar-weekday-title {
    text-align: center;
    height: 20px;
}

.calendar-weekday-number {
	position: absolute;
	font-size: 10px;
	right: 0px;
	bottom: 0px;
}

.calendar-weekday-day {
    width: 70px; 
    margin: 4px; 
    height: 65px;
    border: 1px #32ee23 solid;
    position: relative;
    overflow: hidden;
}

.calendar-weekday-day-now {
	border-color: #ffff00 ! important;
}

.calendar-weekday-link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #004400;
}

.calendar-weekday-dummy {
    width: 70px; 
    margin: 4px; 
    height: 67px;
}

.calendar-day-items {
    position: relative; 
    width: 70px; 
    margin: 4px; 
    height: 550px;
    border: 1px #32ee23 solid;
}

.calendar-item {
    position: absolute;
    font-size: 10px;
    background-color: #fff;
    border: 1px #32ee23 solid;
    width: 70px;
    color: #000;
    margin: 4px;
    overflow: hidden;
}

