/* CSS Document */


<STYLE TYPE="text/css">

/**************************************************************/
/*** The following style settings control the event display ***/
/**************************************************************/
/* The examples only show basic manipulation of the data. */
/* Addtional style attributes such as color, background, etc can also be applied */

/*** eventsinfo class - style for events container (could be set to auto scroll ***/
/* tinycal_nav */
/* tinycal_left */
/* tinycal_date */
/* tinycal_right */
/* tinycal */
/* tinycal_weekday */
/* tinycal_day */
/* tinycal_current_day */
/* tinycal_blank */

/* First Calendar Example - Adjusts to container (table or div) size 100% wide */
.eventstinycal
{
	/*overflow:auto;*/
	font-size:xx-small;
	height:100px;
	width:100%;	/* Controls width of callendar - can be set to fixed width or a percentage relative to the container using a table or div as the container. */
	padding:2px;
	margin:1px;
	margin-left:10px;
	margin-right:10px;
	border:1px solid black;
}
.eventstinycal #tinycal_date
{
	text-align:center;
	font-size:12px;
	color:black;
}

.eventstinycal #tinycal
{
	/*Defines the display of the event/RR calendar*/
	color:#000000;
	font-family:Arial,Helvetica,sans-serif;
	font-size:10px;
	padding:2px;
	text-align:center;
	vertical-align:top;
	background-color:transparent;
	border-collapse:collapse;
	width:100%;
}
.eventstinycal #tinycal_nav
{
	/*Defines the display of the month/increment decrement month navigation*/
	color:#800040;
	background-color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	cursor:pointer;
	padding:2px;
}
.eventstinycal #tinycal_weekday
{
	/*Defines the display of day cells*/
	color:#000000;
	background-color:#FFFFFF;
	border:0px solid #000000;
	padding:2px;
	font-weight:bold;
	font-size:10px;
}
.eventstinycal #tinycal_day
{
	/*Defines the display of blank day cells.*/
	color:#000000;
	background-color:#FFFFFF;
	padding:2px;
	vertical-align:top;
	border:0px solid #000000;
}
.eventstinycal #tinycal_current_day
{
	/*Defines the display of blank day cells.*/
	color:#000000;
	background-color:#ffffff;
	border:1px solid #990000;
	border-color:#990000;
	padding:2px;
	vertical-align:top;
}
.eventstinycal #tinycal_blank
{
	/*Defines the display of blank day cells.*/
	background-color:white;
	border:0px solid #000000;
	padding:2px;
}

</STYLE>