/* caption determines the style of
   the month/year banner above the calendar. */

caption {
     display:none;
	 color: #000;
     font-weight: bold;
	 text-align:left;
}

/* .calendar determines the overall formatting style of the calendar,
   acting as the default unless later overruled. */

.calendar {
	width:100%;
    background-color: #fff;
    border:none;
	margin-bottom:10px;
}



/* .header determines the formatting of the weekday headers at the top of the calendar. */
.header {
	display:none;
}

/* .day determines the formatting of each day displayed in the calendar. */
.day {
	width:14%;
	height:80px;
	color:#999;
	background-color: #fff;
	border-color: #ccc;
	border-style: solid;
	border-width: 1px;
	text-align:top left;
	vertical-align:top;
}

/* .linkedday determines the formatting of a date to which content is available. */
.linkedday {
	width:14%;
	height:80px;
	color:#000;
	background-color: #eee;
	border-color: #f90;
	border-style: solid;
	border-width: 1px;
	text-align:left;
	vertical-align:top;
}

.linkedday ul {
	margin:0px;
	padding:0px;
	display:inline;
}
.linkedday ul li {
	font-size:10px;
	list-style-type: none;
	margin:0px;
	padding:0px;
	display:block;
	border-top:1px solid #aaa;
}
.linkedday ul li a {
}