@CHARSET "UTF-8";

table.calendar
{
	border-collapse: collapse;
	border-width: 1px;
	border-style: solid;
	border-color: #cccccc;
	
}
	
	table.calendar th.name-day
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #ff0000;
		color: #ffffff;
		
		font-size: 10px;
		
		text-align: center;
	}
	
	table.calendar th.cur-month
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #ffffff;
		color: #000000;
		
		font-size: 14px;
		
		text-align: center;
	}
	
	table.calendar td.today
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #bdcde1;
		color: #000000;
		
		text-align: center;
		
		/*font-size: 10px;*/
	}	
	
	table.calendar td.empty
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #f6f6f6;
		color: #000000;
	}	
	
	table.calendar td.day
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #ffffff;
		color: #000000;
		
		text-align: center;
		
		/*font-size: 10px;*/
	}	
	
	table.calendar td.day-event
	{
		border-width: 1px;
		border-style: solid;
		border-color: #cccccc;
		
		background-color: #FF3300;
		color: #000000;
		
		text-align: center;
		
		/*font-size: 10px;*/
	}	
	
a.cal-nav
{
	text-decoration: none;
	color:#000000;
}
a.cal-nav:hover
{
	text-decoration: underline;
}

a.cal-event
{
	text-decoration: none;
	font-weight:bold;
	color:#000000;
}
a.cal-event:hover
{
	position: relative;
	text-decoration: underline;
}

a.cal-event span
{
	display: none;
}

a.cal-event:hover span
{
	display: block;
	position: absolute;
	top: 1.8em;
	left: -100px;
	z-index: 1;
	
	width: 150px;
	
	border: 1px solid #000000;
	background-color: #f6f6f6;
	color: #000000;
	
	text-align: left;
	font-size: 12px;
}

