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

#cal {
		width: 100%;
		}

table#calendar{
	clear: both;
    height: 490px;
    border:0px solid #888; 
	border-collapse: collapse;
	}

table#calendar th {
    border:1px solid #888;
    background-color: #E9ECEF;
	text-align: center;
	height: 40px;
	border-collapse: collapse;
}

table#calendar th#title {
	background-color: #cccccc;
}

table#calendar td {
    width: 70px;
	height: 70px;
    border-collapse: collapse;
    border: 1px solid #888;
    text-align: right;
	vertical-align: top;
    padding-right:5px;	
}

table#calendar td .date {
	color: red;	
}

table#calendar td .event {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.6em;
	color: #224080;	
}
table#calendar td.sun {
	background-color: #cccccc;
	}
table#calendar td.sat {
	background-color: #cccccc;
	}
table#calendar td.closed {
	background-color:#699;
	}

table#calendar caption {
		font-weight: bold;
		color: #C90;
		margin: 20px 0px 10px 0px;
}





