/*
* MiniCal View Styles
*
* Here we define specific styles for the MiniCal,
* as well as override any default styles (oc-main.css) as needed.
*
* Styles listed here with empty brackets {} should be left as placeholders
* for styles that may be of interest to override in this view.
*/

/* MiniCal Header (e.g. April) */
.miniCalHeader {
	font-weight: bold;	
	text-align: center;
	background-color: #efefef;	
	font-size: 10pt;
	padding-top: 5px;
	padding-bottom: 5px;
}
.colHeader {}

/* TABLE STYLES */
table.miniCal {
	border-collapse: collapse;
	background-color: gray;
	/*width: 98%;*/
}

/* MiniCal table cells */
td.miniCal {
	border: 1px solid black;
	font-size: 12px;
	vertical-align: top;
}
/* normal day cell */
td.normalDay {
	font-size: 10px;
	background-color: #ffffff;
}
/* weekend cell */
td.weekend {
	background-color: #efefef;
}
/* Current Day */
td.curDay {
	background-color: #66ccff;
}
td.hasEvents {
	/*background-color: #99cccc;*/
}

/* LINK STYLES */

a.next, a.previous { color: black; font-weight: bold; }
a.next:hover, a.previous:hover { color: red; font-weight: bold; }

/* The day number in the month view (when clicked opens the day view) */
a.hasEvents {
	font-weight: bold;
	color: black;
	text-decoration: underline;
}
a.hasEvents:hover {
	color: red;
	text-decoration: underline;
}
