/*Set the width of the entire calendar*/
#month{margin:0 auto;width:60em;text-align: center}

/*Misc customizations*/
div.center{text-align:center;margin:0 auto;}
.calendar a{color:#3380c8}
.calendar a:hover{color:#c33d00}
.calendar h1{text-align: center;font-size: 18px;font-family: "Trebuchet MS", Verdana, Tahoma, sans-serif}
fieldset.calendarLegend{color:#27373E;margin:10px 0 0 0;border:1px solid #cdcdcd;}
.calendar legend{color:#27373E;font-weight: bold;font-size:11px}

/*Calendar Customizations*/
img.calendarLogo {
	display: none;
}

table.calendar {
	border-collapse: collapse; /* for IE */
	border:0;
	width:60em
}
table.calendar th {
	border: 1px solid #cdcdcd;background: #efefef;padding:10px;
}
table.calendar th.month {
	color:#9E0617
}
table.calendar th.day {
	color:#27373e;font-size:11px
}
table.calendar th a{color:#3380c8}

table.calendar td {
	width: 8em;
	height:8em;
	border: 1px solid #cdcdcd;
	vertical-align: top;
	text-align: left;
}
table.calendar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
table.calendar li {
	white-space: nowrap;
	overflow: hidden;
	/* this relative line works fine in FF and Safari, but doesn't work in IE.
	 * bug described here: http://forums.devshed.com/showpost.php?p=1683486
	 * width: 95%;
	 * the following absolute width line is necessary to appease IE7 */
	width: 8em;
	margin: 2.5% 0;
	padding:3px;
}
table.calendar li a {
	width: 8em;
	display: block;
	text-decoration: none;
	color: #252525;
}
table.calendar li a:hover {
	color: #fff;
}

table.calendar td.empty {
	background-color: #3a3a3a;
}

/*for all day events*/
table.calendar li.all_day {
	background-color: #d66d3e;
}

/*for all events that take a part day*/
table.calendar li.today {
	background-color: #6eb8f0;
}

/*for all day recurring events*/
table.calendar li.continuing {
	background-color: #f9a6f9;
}

/*start of recurring event*/
table.calendar li.starting {
	background-color: #f9a6f9;
}
/*end of recurring event*/
table.calendar li.ending {
	background-color: #f9a6f9;
}

/*Copyright Notice*/
#copyright{color:#868686;padding:20px;font-size:11px}


/*Modal Dialogue*/
#event {padding:10px 25px;}
.eventDetails {
	text-align: left;
}
ul.eventDetails {
	margin-bottom: 2em;
}
ul.eventDetails li{list-style-type: square}
h2.eventDetails {
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0;
	text-decoration: underline;
	text-transform: capitalize;font-family: "Trebuchet MS", Verdana, Tahoma, sans-serif;color:#9E0617
}
ul.eventDetails li {
	margin: 0.2em;
}

/* Special selector for use with blueprint column layout */
div.column > div.calendar {
	padding: 1em 2em;
}

