@charset "utf-8";
/* CSS Document */
* {
	margin: 0px;
	padding: 0px;
}
table {
	
}
#calendarContainer {
	width: 806px;
	height: 750px;
	background-image:url(../images/bg.jpg);
	margin-left: -20px;
}
#calendar {
	width: 780px;
	margin-left: 14px;
	border-collapse:collapse;
}
.monthNav {
	padding-top: 15px;
}
.monthNav a {
	color: #0769aa;
	text-decoration: none;
	font-size: 24px;
	font-weight: bold;
	font-family: "Courier New", Courier, monospace;
}
.monthNav a:hover {
	color: #0098df;
}
#prev {
	text-align: right;
}
#next {
	text-align: left;
}
.currentmonth {
	text-align: center;
	color: #0769aa;
	font-size: 24px;
	font-weight: bold;
	padding-top: 15px;
}
#days {
	width: 100%;
	height: 50px;
}
.dayNames {
	text-indent: -9999px;
}
.daycontainer {
	width: 98px;
	height: 98px;
}
table.day {
	width: 98px;
	height: 98px;
	margin: 3px;
}
.day img {
	border: none;
}
span.date {
	position: absolute;
	z-index: 10;
	padding-top: 5px;
	padding-left: 8px;
	font-weight: bold;
	color: #0769aa;
	display: block;
	width: 19px;
	height: 19px;
}
.regulartoday span.date {
	color: #eb1e2c;
}
.regularevent span.date {
	display: none;
}

.eventimg {
	padding: 0;
	margin:  0;
	overflow: hidden;
	position:relative;
	width: 98px;
	height: 98px;
}

.eventimg img {  
	width: 98px;
	height: 98px;
    top:  0;
    left: 0
	position: absolute;
	border: none;
}

