/*css for mini calendars*/

/*Frequently Used Styles*/
#miniCal table {
	width: 90%;
}

#miniCal a {
	color: #000000 !important;
}

#miniCal a:hover {

}

.month {
	background-color: #e4e4e4;
}

.monthname {
	font-size: 13px;
	font-weight: bold;
	background-color: #DADADA;
	color: #5D5D5D;
}

.dayname {
	font-size: 12px;
	font-weight: bold;
	background-color: #384955;
	color: #ffffff;
}

.monthday {
	background-color: #E4E4E4;
	color: #384955;
}

.selectedday {
	background-color: #FFFFFF;
	color: #384955;
	border: 1px solid #384955;
}

.sunday {
	color: #667171;
}

.sunday a {
	color: #667171;
}

.saturday {
	color: #667171;
}
.saturday a {
	color: #667171;
}

.selectedevent, .selectedevent a {/*Event on Current Date*/
	color: #384955;
	background-color: #FFFFFF;
}

.selectedevent {/*Event on Current Date*/
	border: 1px solid #384955;
}

.event, .event a {
	color: #384955;
	background-color: #FFFFFF;
}


/*End Frequently Used Styles*/


/*Main Mini Calendar Styles*/

#miniCal table {
	margin: 0 auto 0 auto;
}

#miniCal a {
	text-decoration: none;
	text-align: center;
}

#miniCal a:hover {
	text-decoration: none;
}

.month {
	border-style: none;
	text-align: center;
}

.monthname {
	text-align: center;
	border-style: outset;
	border-width: 1px;
}

.dayname {
	text-align: center;
	border-style: outset;
	border-width:1px;
}

.nomonthday {
	text-align: center;
	font-size: 10px;
	height:20px;
	width:20px;
}

.monthday {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	height:20px;
	width:20px;
}

.selectedday {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	height:20px;
	width:20px;
}

.sunday {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	height:20px;
	width:20px;
}

.saturday {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	height:20px;
	width:20px;
}

.event, .selectedevent {
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	height:20px;
	width:20px;
}