/* Title text at top of calendar */
.caltitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #28757B;
	font-weight: bold;
	text-align:center;
}

/* Sunday, Monday, etc. */
.daynames{
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	width:71px;
}

/* Misc styles for layout.  Make sure .calendar width is at least as wide as all the day widths */
.calendarbody{
}
.calendar{
	position: relative;
	min-width: 497px;
	width: 497px;
}
.row{
	float: left;
	display:block;
	background-color:#FCECCA;
}

/* The following styles apply to the simple navigation above the calendar */
.monthback{
	display:inline;
	padding-right:40px;
}
.monthnext{
	display:inline;
	padding-left:40px;
}
.monthnav{
	display:inline;
	width:auto;
	text-align: center;
	font-size: 11px;
}
.navform{
	font-size: 10px;
}

.event{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}

/* Colors/Styles for each individual day block.  Make sure the widths are consistant for the next three styles */
.noday{
	font-size: 9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	width:68px;
	min-width:68px;
	height:68px;
	position: relative;
	float: left;
	background-color:#FEF6E7;
	border-left-width:1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	padding:1px;
}
.regularday{
	font-size: 9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	width:68px;
	min-width:68px;
	height:68px;
	position:relative;
	float: left;
	background-color:#FCECCA;
	text-align:left;
	border-left-width:1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	overflow:hidden;
	padding:1px;
}
.today{
	font-size: 9px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	width:68px;
	min-width:68px;
	height:68px;
	position:relative;
	float: left;
	background-color:#CAEEEE;
	text-align:left;
	border-left-width:1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	overflow:hidden;
	padding:1px;
}

/* Pop-Over Class */
.popover{
	position:absolute; 
	/* width:250px; 
	height:200px; */ 
	padding:2px;
	max-width:250px;
	min-width:150px;
	width:250px;
	z-index:100;
	background-color: #CAEEEE; 
	border: 1px solid #999999;
	visibility: hidden;
}

/* Styles for item-view page */
.eventtitle{
	font-size:14px;
	font-weight:bold;
}

.eventdate{
	margin-top:4px;
	margin-bottom:4px;
}

.eventdetails{
	margin-top:6px;
	margin-bottom:12px;
}

.eventimage{
	float: right;
	margin-top:4px;
	margin-bottom:4px;
	margin-right:4px;
	margin-left:4px;
}

.eventsmalltitle{
	font-weight:bold;
}