/* 
  -----------------------------------
  CSS Cookbook Style Sheet
  for Calendar (Table)
  -----------------------------------
*/
/*
Calendar Layout
*/
table {
	width: 98%;
	border-collapse: collapse;
}


td {
	width: 14%;
	background-color: #ffffff;
	border: 1px solid #000090;
	vertical-align: top;
}

.emptydate {
	border-right: 1px solid #000090;
	border-bottom: 1px solid #000090;
	background-color: #cccccc;
}

#year {
	font-family: palantino linotype;
	font-size: 1.5em;
	padding: 0;
	margin: 0;
}

#month {
	font-family: palantino linotype;
	font-size: 2em;
	padding: 0;
	margin: 0;
}
#days {
	background-color: #000090;
	color: white;
	font-family: palantino linotype;
	width: 75px;
}

.date {
	border-right: 1px solid #000090;
	border-bottom: 1px solid #000090;
	font-family: palantino linotype;
	font-size: 1em;
	text-decoration: none;
	font-color: #ffffff;
	float: right;
	width: 1.5em;
	height: 1.5em;
	background-color: #e0e0e0;
	text-align: center;
}

.event {
		font-family: palantino linotype;
	font-size: 0.95em;
	text-decoration: none;
	font-color: #ffffff;
	clear: both;
	padding-left: .25em;
	padding-bottom: .5em;
	display: block;
	line-height: 1.1;
}
	
