pre {
	color: black; /* allows for easier debugging.  This CSS not need in production code. */
}
/*---------------------------------- CALENDAR CSS --------------------------------------------------------*/

#cal_block {
	font-size: 62.5%;  /* allows proportional resizing of various elements based on using an em unit of size
                        see http://www.clagnut.com/blog/348/ for details */
	background-color: #000000;
	color: white;
	/*
	padding-top: 3em;

	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-bottom: 0.0em;*/
}

/* css for table caption area */
#cal_caption {
	background-color: #777777;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	font-size: 2.4em;
}

/* css for the current day of month */
.cal_day_row td.cal_current_day {
	background-color: #999966;
	color: black;
}

/* css for the actual day number that shows up in each calendar cell (class="day_number) */
.cal_day_number {
	border-right: 0.1em solid #cccccc;
	border-bottom: 0.1em solid #cccccc;
	padding: 0.1em;
	background-color: #FFFFFF;
	color: #000000;
	font-size: 1.2em;
}

/* css for all other days in a month (id="day_row" and for td's inside this id) */
.cal_day_row td {
	color: #EEE49F;
	background-color: #F0F0F0;
	width: 8em;
	height: 6em;
	border: 0.1em solid #000000;
	font-size: 0.6em;
	vertical-align: top;
}

.cal_empty_cell {
	background-color: #cccccc;
	color: black;
}

.cal_event_icons {
	/*
	color: black;
	background-color: white;
	*/
	background-image: url(../images/calendar/calIcon.gif);
	height: 29px;
	width: 47px;
	text-align: center;
	float: right;
	margin-left: -10px;
	padding-top: 20px;
}

.cal_numEvents{
	color: black;
	font-size: 12px;
	font-weight: bold;
}

.message{
	text-align: center;
	font-size: 1em;
	color: #cc6600;
}

/* css for day headings (id="head" and for td's inside this id) */
#cal_head td {
	color: black;
	border: 0.1em solid black;
	background-color: #F0F0F0;
	height: 1em;
	text-align: center;
	font-weight: bold;
}

#cal_month_title {
	text-align: center;
	font-weight: bold;
}

#cal_next_date_link {
	text-align: right;
}

/*---------------------------------- CALENDAR FORM CSS -----------------------------------------------------*/

#cal_form_block {
	font-size: 62.5%;  /* allows proportional resizing of various elements based on using an em unit of size
                        see http://www.clagnut.com/blog/348/ for details */
	background-color: black;
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-bottom: 2em;
	color: white;
}

#cal_form_button {
	text-align: center;
	padding-top: 1.5em;
	padding-bottom: .5em;
}

#cal_form_description {
	background-color: white;
	color: #000000;
	vertical-align: middle;
}

.cal_form_description_label {
	padding-top: .8em;
	vertical-align: top;
}

/* css for label html tag itself */
.cal_form_label {
	padding-right: 0.7em;
	padding-top: 0.3em;
	/*
	font-size: 1.4em;
	*/
	width: 6em;
	text-align: right;
	color: white;
	font-weight: bold;
}

#cal_form_title {
	background-color: #777777;
	text-align: center;
	font-weight: bold;
	font-size: 1.6em;
	padding: .2em;
}

/*---------------------------------- CALENDAR EVENT DIGEST CSS ---------------------------------------------------*/

#cal_digest_block {
	font-size: 62.5%;  /* allows proportional resizing of various elements based on using an em unit of size
                        see http://www.clagnut.com/blog/348/ for details */
	background-color: black;
	color: white;
	padding-top: 0em;
	padding-left: 0.8em;
	padding-right: 0.8em;
	padding-bottom: 6em;
}

.cal_digest_deleted_message {
	font-weight: bold;
	font-size: 1.5em;
}

.cal_digest_heading {
	border-bottom: 0.1em solid #aaaaaa;
	color: #aaaaaa;
	margin-top: 1em;
}

#cal_digest_no_event_msg {
	font-weight: bold;
	font-size: 1.5em;
}

.cal_digest_time {
	..background-color: blue;
	font-weight: bold;
	width: 21em;
}

.cal_digest_event_name {
	font-weight: bold;
	width: 35em;
}

.cal_digest_event_description {
	font-style: italic;
}

/*---------------------------------- CALENDAR MISCELLANEOUS CSS ---------------------------------------------------*/

#cal_btlc {
  /* background-image: url(../images/box_tleft_corner.gif); */
  background:#777777;
  width: 17px;
  height: 12px;
}

#cal_btt {
	/* background-image: url(../images/box_top_tile.gif); */
	background:#777777;
	text-align: center;
	background-repeat: repeat-x;
}

#cal_btrc {
	/* background-image: url(../images/box_tright_corner.gif); */
	 background:#777777;
	width: 15px;
	height: 12px;
}

#cal_blt {
	background-image: url(../images/box_left_tile.gif);
	width: 17px;
	background-repeat: repeat-y;
}

#cal_brt {
	background-image: url(../images/box_right_tile.gif);
	width: 15px;
	background-repeat: repeat-y;
}

#cal_bblc {
	background-image: url(../images/box_bleft_corner.gif);
	width: 17px;
	height: 9px;
}

#cal_bbt {
	background-image: url(../images/box_bot_tile.gif);
	background-repeat: repeat-x;
	height: 9px;
}

#cal_bbrc {
	background-image: url(../images/box_bright_corner.gif);
	width: 15px;
	height: 9px;
}


