/* CSS Document */

/* body {
	background-color: #789;
	font-family: georgia, serif;
	font-size: 13px;
}
*/

.calendar #content {
	display: block;
	width: 814px;
	margin: 40px auto 10px;
	padding: 10px;
	background-color: #FFF;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border: 2px solid black;
	-moz-box-shadow: 0 0 14px #123;
	-webkit-box-shadow: 0 0 14px #123;
	box-shadow: 0 0 14px #123;
}

.calendar #month_previous {
	width:20%;
	float: left;
	font-size: 16px;
	height: 42px;
	text-align: right;
}

.calendar #month_next {
	width:20%;
	float: right;
	font-size: 16px;
	height: 42px;
	text-align: left;
}

.calendar .month_display {
	font-size: 150%;
	font-weight: bold;
	width:58%;
	text-align: center;
	display: inline-block;
	
}
.calendar h2,.calendar p {
	margin: 0 auto 14px;
	text-align:center;
}

.calendar ul {
	display: block;
	clear: left;
	height: 84px;
	width: 814px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	background-color: #FFF;
	text-align: center;
	border: 1px solid black;
	border-width: 0px 1px 2px;
	border-top: 0;
	border-bottom: 2px solid black;
}

.calendar li {
	position: relative;
	float: left;
	margin: 0;
	padding: 20px 2px 2px;
	border-left: 1px solid black;
	border-right: 1px solid black;
	width: 110px;
	height: 60px;
	overflow: auto;
	background-color: white;
	box-sizing: content-box !important;
}

.calendar li:hover {
	background-color: #FCB;
	/* z-index: 1; */
	-moz-box-shadow: 0 0 10px #789;
	-webkit-box-shadow: 0 0 10px #789;
	box-shadow: 0 0 10px #789;
}

.calendar .weekdays {
	height: 24px;
	border-top: 2px solid black;
}

.weekdays li {
	height: 16px;
	padding: 2px 2px;
	background-color: #BCF;
}

.calendar .fill {
	background-color: #BCD;
}

.weekdays li:hover,li.fill:hover {
	background-color: #BCD;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	boc-shodow: none;
}

.weekdays li:hover,.today {
	background-color: #BCF;
}

.calendar li strong {
	position: absolute;
	top: 2px;
	right: 2px;
}
.cal-entry {
	position: relative;
	display: block;
	border: 1px dottec black;
	margin: 2px;
	padding: 2px;
	font-size: 11px;
	background-color: #DEF;
	text-align: left;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/* z-index: 1; */
	text-decoration: none;
	color: black;
	font-weight: bold;
	font-style: italic;
}

.calendar li a:hover {
	background-color: #BCF;
	z-index: 0;
	-moz-box-shadow: 0 0 6px #789;
	-webkit-box-shadow: 0 0 6px #789;
	box-shadow: 0 0 6px #789;
}
	
	
.calendar .editcheckbox {
	float: left;
	padding-left: 3px;
	display: inline;
}
.calendar label.editcheckbox {
	width: 20%;
}
.calendar input.editcheckbox {
	width: 5%;
	align: left;
}

.calendar input.editsubmit {
	display: block;
}


	