
/*--------------------------------------------------------------------------
   r25.css
This style sheet is included in all matrix views with the option to display events
as a graphic grid (the Locations by Date for One Day, and the Locations by Name). 

- You can change any of the attributes of these styles that you wish, but
be prepared for surprising consequences. For best results, do not change the font (it helps
with spacing), or the border. 
- To create a new style, copy an existing style and change the name. Then make any changes
to the new style that you wish.


IMPORTANT:  Whatever you do, DO NOT DELETE the Event or Multiple style.
--------------------------------------------------------------------------*/


/* For more information about Cascading Style Sheets, visit http://www.w3.org/TR/REC-CSS1 */


.Event {
/* default style for all events DO NOT DELETE */
	position: absolute;
	background-color:#C6D7CE;
	font-family:Arial;
	font-size:4px;
	border:1px solid black;
	cursor:pointer;
	z-index:5;
}

.Related {
/* the style for related space events, or events that are happening in a space that is defined as
either schedule with, divides into, or blocked by the selected space DO NOT DELETE */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#808080;
	border:1px solid black;
	cursor:pointer;
	z-index:1;
}

.Blackout {
/* the style for blackouts for this space DO NOT DELETE */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:black;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}

.Multiple {
/* the style for "multiple" events, or events that share the same space during
the same time period on the "schedule" usage view for spaces DO NOT DELETE */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#666699;
	border:1px solid black;
	cursor:pointer;
	z-index:10;
}




.Special {
/* a sample style */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#F9890B;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}

.AthPractice {
/* another sample style */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#FFCC00;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}
.NCClass {
/* another sample style */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#33FFCC;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}

.MultClass {
/* another sample style */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#666699;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}
.Party {
/* another sample style, this one incorporates the use of a background image */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#EE84FC;
	background-image:url(../images/party.gif);
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}

.continEdClass {
/* added by mmj 4/21/03 */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#990000;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}


.rehearsal {
/* added by mmj 4/21/03 */
	position:absolute;
	font-family:Arial;
	font-size:4px;
	background-color:#EE88FF;
	border:1px solid black;
	cursor:pointer;
	z-index:2;
}