﻿/* CALENDAR */
.navButton
{
    background-color: #D25A0B;
    font-size: small;
	font-weight: bold;
	padding: 2px 3px 2px 3px;
}

.navButton:link
{
    color: #FFF;
    text-decoration: none;
}

.navButton:hover
{
	background-color: White;
	color: #D25A0B;
	font-size: small;
	font-weight: bold;
	padding: 2px 3px 2px 3px;	
	text-decoration: none;
}

.calendarTable
{
	border: solid 1px black;
	border-collapse: collapse;
	font-family: Arial;
	width: 100%;
}

.calendarTable td
{
	border: solid 1px black;
	border-collapse: collapse;
}

.calendarDayCell, .calendarTimeCell
{
	background-color: #D25A0B;
	color: White;
	font-size: small;
	font-weight: bold;
	padding: 10px;
}

.calendarDayCell
{
	text-align: center;
}

.calendarTimeCell
{
	text-align: right;
	width: 1%;
	white-space: nowrap;
}

.calendarOtherMonthCell
{
	color:Gray;
	background-color: Gainsboro;
}

.calendarDateCell, .calendarCurrentDayCell, .calendarDetailsCell, .calendarOtherMonthCell
{
	font-size: x-small;
	padding: 2px 2px 2px 2px;
	text-align: left;
	vertical-align: top;
}

.calendarDateCell a, .calendarCurrentDayCell a, .calendarDetailsCell a, .calendarOtherMonthCell a
{
	color: Black;
	text-decoration: none;
}

.calendarDateCell a:hover, .calendarCurrentDayCell a:hover, .calendarDetailsCell a:hover, .calendarOtherMonthCell a:hover
{
	color: Gray;
	text-decoration: underline;
}

.calendarDateCell, .calendarCurrentDayCell
{
	height: 80px;
}

.calendarCurrentDayCell
{
	background-color: #EBE4D2;
}

.calendarEvent
{
	cursor: pointer;
	height: 12px;
	overflow: hidden;
}

.calendarPopUp  /* div container */
{
	background: Gainsboro; 
	border: 1px solid #000;
	cursor: pointer;
	display: none;
	height: 125px;
	overflow: auto;
	position: absolute;
	width: 175px; 
	z-index: 10000;
}

.popUpTable  /* layout inside of div */
{
	border: none;
	width: 100%;
}

.popUpTable td
{
	border: none;
	padding: 0px;
	text-align: left;
}

.popUpTable:link
{
    font-size: small;
    text-decoration: none;
}

.popUpTable:hover
{
	text-decoration: underline;
}

.popUpDate
{
	font-size: x-large;
	color: #D25A0B;
}

.popUpDay, .popUpMonthYear
{
	font-weight: bold;
}

