body {
	background-color: #ccc;
	font-family: Arial, helvetica, sans-serif;
}



/* Calendar Elements */

#calendar {
	height: 130px;
	width: 784px;
}

#calendar .row {
	border-bottom: 2px solid black;
	height: 110px;
}

#calendar .row .day {
	border: 1px solid #666;
	height: 110px;
	width: 110px;
	float: left;
}

#calendar .row .day .event {
	background-color: #99c;	
	border-bottom: 1px solid #339;
	margin: 2px 2px 0px 2px;
	padding: 1px 5px 1px 5px;
}

#calendar .row .day .num {
	background-color: #fff;
	display: block;
	/*width: 45px;*/
	height: 16px;
	text-align: center;
	border: solid #666;
	border-width: 0 1px 1px 0;
}

.today {
	background-color: #eee;
}

.active_day { 
	background-color: #cce;
}

.adding_day { 
	background-color: #c99;
}


/* Hidden, pop-up form for adding events */

#addform {
	background-color: #fff;
	height: 60px;
	width: 350px;
	display: none;
	position: absolute;
	border: 1px solid black;
}

#addform form{
	font-size: 12px;
	position: absolute;
	left: 10%;
	top: 50%;
}

#addform form input{
	font-size: 12px;
}

#addform #close{
	position: absolute;
	border: 1px solid black;
	background-color: #ccc;
	top: 5px;
	left: 320px;
	width: 12px;
	display: block;
	font-family: arial, helvetica, sans-serif:
	font-weight: bold;
	cursor: hand;
}


/** Results **/

#results {
	display: none;
	background-color: #eeb;
	position: absolute;
	top: 0px;
	left: 280px;
	width: 500px;
	height: 40px;
	padding: 1em 5px 3px 10px;
	font-weight: bold;
	border: 2px solid #996;
}
