/* COMMON STYLES FOR BOTH CALENDAR DISPLAYS */
body#calendar {
	font-family: Verdana, Tahoma, sans-serif;
	font-size: 80%;
	margin: 10px;
}

a.calendar {
	color: #00c;
	text-decoration: none;
}
a.calendar:hover {
	color: #00f;
	text-decoration: underline;
}

div#change_calendar_footer {
	color: #fff;
	background-color: #666;
	margin-top: 15px;
	font-size: 90%;
	padding: 10px;
}
div.indent {
	margin-left: 20px;
}
.form_tags {
	font-family: Verdana, Tahoma, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #fff;
}
form.calendar {
	margin: 0;
}

h1.calendar_header {
	font-family: "Trebuchet MS", Lucida, Arial, Helvetica, sans-serif;
	font-size: 120%;
	font-weight: bold;
	color: #fff;
	background-color: #666;
	padding: 5px;
}
h2.date_header {
	font-size: 90%;
	font-weight: bold;
	padding-bottom: 3px;
	border-bottom: 1px solid #000;
}
h2.event_listing_header {
	font-size: 100%;
	font-weight: bold;
	padding-bottom: 3px;
	border-bottom: 1px solid #000;
}
h2.event_listing_date {
	font-size: 100%;
	font-weight: bold;
	margin: 25px 0 0 0;
}
h2.event_listing_date a {
	color: #000;
	text-decoration: none;
}
h2.event_listing_date a:hover {
	color: #00f;
	text-decoration: underline;
}
h3.calendar_event {
	font-size: 95%;
	font-weight: bold;
	margin: 10px 0 0 0;
	padding: 0;
	display: block;
	color: #000;
	background: #ffc;
}
h3.calendar_holiday {
	color: #foo;
	background: #ffc;
	font-size: 95%;
	font-weight: bold;
	margin: 10px 0 0 0;
}
p.calendar_event {
	margin-top: 5px;
	padding-left: 20px;
}
.submit_button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
/* setting background color for cells containing holidays */
table#large_calendar td.holiday, table#small_calendar td.holiday {
	background-color: #FDFCC6;
	color: #000;
}
/* setting background color for current date's cell */
table#large_calendar td.current_date, table#small_calendar td.current_date {
	background-color: #CEFEC2;
	color: #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}
/* setting background color and color for next/previous month options */
table#large_calendar td.prev, table#large_calendar td.next, table#small_calendar td.prev, table#small_calendar td.next {
	background-color: #eee;
	color: #000;
}

/* STYLES FOR TABLE IN HEADER OF PAGES */
table#small_search_jump {
	width: 98%;
	border: 1px solid #999;
	font-size: 10px;
	margin-top: 10px;
}
table.large_search_jump {
	width: 98%;
	border: 1px solid #999;
	font-size: 10px;
	margin: 10px 0;
}

/* STYLES FOR FULL-PAGE CALENDAR */
table#large_calendar {
	width: 98%;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	margin-bottom: 10px;
}
table#large_calendar th {
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	font-weight: bold;
	text-align: center;
}
table#large_calendar th.title {
	background-color: #333;
	color: #fff;
	font-size: 14px;
}
table#large_calendar th a {
	color: #fff;
	text-decoration: none;
}
table#large_calendar th a:hover {
	color: #fff;
	text-decoration: underline;
}
table#large_calendar th.days {
	background-color: #eee;
	color: #000;
	font-weight: bold;
	text-align: center;
}
table#large_calendar td {
	width: 14%;
	vertical-align: top;
	padding: 0;
	height: 100px;
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
}
/* changing background color and border around number in corner of cell  for dates that fall outside of selected month */
td.prev div.date, td.next div.date {
	border-width: 0;
	color: #000;
	background-color: transparent;
}
/* setting up border and other attributes around number in corner of cell */
div.date {
	float: right;
	text-align: center;
	border: 1px solid #999;
	border-width: 0 0 1px 1px;
	padding: 1px;
	margin: 0;
	background-color: #f3f3f3;
	font-size: 10px;
	color: #000;
}
/* setting up border around number of date on large calendar view */
div.current {
	border-width: 0 0 2px 2px;
	background-color: #fff;
	font-weight: bold;
}
/* setting up background color and border undeneath each event */
div.event {
	background-color: #ffe5ad;
	border-bottom: 1px solid #e2e2e2;
	padding: 3px;
	font-size: 11px;
}
div.event span {
	display: block;
}
/* changing font style and padding around Holiday w/in table cell */
div.holiday {
	font-style: italic;
	font-size: 11px;
	margin: 0;
	padding: 3px;
	color: #333;
}
/* setting attributes for the label beside the values for an event */
span.label {
	font-weight: bold;
	margin-left: -15px; 
}
/* setting attributes for the "location" w/in table cell for each event */
span.location {
	font-size: 10px;
	font-style: italic;
	padding-left: 4px;
	padding-right: 5px;
}
/* setting attributes for the "time" w/in table cell for each event */
span.time {
	font-weight: bold;
}
/* setting attributes for the "title" w/in table cell for each event */
span.title {
	padding-left: 4px;
	padding-right: 5px;
}
span.title a {
	color: #000;
	text-decoration: none;
}
span.title a:hover {
	color: #339;
	text-decoration: underline;
}

/* STYLES FOR SMALL CALENDAR */
table#small_calendar {
	width: 98%;
	border: 1px solid #999;
	border-width: 1px 0 1px 1px;
	font-size: 80%;
}
table#small_calendar td {
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	height: 40px;
	text-align: right;
}
table#small_calendar td.event {
	background-color: #ffe5ad;
}
table#small_calendar th {
	background-color: #333;
	color: #fff;
	border-right: 1px solid #999;
	font-weight: bold;
	text-align: center;
}
table#small_calendar th.days {
	width: 40px;
	background-color: #eee;
	color: #000;
	border-top: 1px solid #999;
	font-weight: bold;
	text-align: center;
}
table#small_calendar th a {
	color: #fff;
	text-decoration: underline;
}
table#small_calendar th a:hover {
	color: #fff;
	text-decoration: none;
}

/* setting attributes for TD cell listing event info on small calendar view */
td#event_listing {
	border: 1px solid #999;
	padding: 10px;
	width: 40%;
}