@charset "UTF-8";
/* CSS Document */

.calendar {
	display: block;
	margin: 10px 0;
	padding: 0;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
	background-color: #eee;
	width: 776px;
	}

* html .calendar { /* this selector recognized by IE only */
	width:  777px; /* total width (only for IE5.x/Win) */
	w\idth: 776px; /* content width (for other IE) */
	}

.calendar caption {
	padding: 2px;
	border-bottom: 1px solid #666;
	font-family: Georgia, Serif;
	font-size: 1.2em;;
	color: #fff;
	text-align: center;
	background: #343A4D;
	}

.calendar caption a {
	font-weight: normal;
	color: #fff;
	}

.calendar caption a:link,
.calendar caption a:visited {
	text-decoration: none;
	}

.calendar caption a:hover,
.calendar caption a:active {
	text-decoration: underline;
	}

.calendar thead,
.calendar thead th {
	background-color: #eee;
	}

.calendar thead th,
.calendar tbody td {
	vertical-align: top;
	padding: 3px;
	border-right: 1px solid #666;
	border-bottom: 1px solid #666;
	width: 104px;
	}

.calendar tbody td {
	min-height: 104px;
}


* html .calendar thead th { /* this selector recognized by IE only */
	width:  111px; /* total width (only for IE5.x/Win) */
	w\idth: 104px; /* content width (for other IE) */
	}

* html .calendar thead td { /* this selector recognized by IE only */
	width:  111px; /* total width (only for IE5.x/Win) */
	w\idth: 104px; /* content width (for other IE) */
	}

.calendar thead th {
	margin: 0;
	padding: 0;
	line-height: 0;
	}


.calendar td.blank {
	background: #fff;
	}
