@charset "utf-8";

/*------------------------------------------------------------------
[Table of contents]

1. General Styles
2. Body & Container / #container
3. Main Content / #mainContent
4. Calendar / #calendar
5. Calendar List Items
6. Links (all)
-------------------------------------------------------------------*/


/*--------------------------------  General Styles  ----------------------------------*/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*--------------------------------  Body & Container  ----------------------------------*/

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background-image: url(/images/calendar_bg.jpg);
	background-repeat: repeat-x;
}

#container {
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/*--------------------------------  Main Content  ----------------------------------*/

#mainContent {
	background-image: url(/images/calendar_image.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

/*--------------------------------  Calendar  ----------------------------------*/

#calendar {
	padding-top: 150px;
}

table {
	border: 1px solid #D8D8B1;
	border-collapse: collapse;
}

.caption {
    text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.9em;
	padding: 15px;
}

th {
	width: 11%;
	font-size: 0.7em;
	background-color: #666633;
	color: #FFFFFF;
	padding: 4px;
	text-align: center;
}

#calendar td {
	padding: 5px;
	border: 1px solid #D3D3A9;
	border-collapse: collapse;
	font-size: 0.7em;
	vertical-align: top;
}
.today {
	background-color: #F1EFDA;
}
#calNavigation {
	font-size: 1.1em;
	color: #666633;
	text-align: right;
	padding-right: 20px;
	padding-top: 5px;
	width: 300px;
}

#calBack {
	font-size: 1.1em;
	color: #666633;
	padding-left: 20px;
	padding-top: 5px;
	width: 300px;
}

/*--------------------------------  Calendar List Items  ----------------------------------*/

#calendar ul {
	margin: 0px 0px 0px 8px;
	padding: 0px;	/*border: 1px solid #CC3300;*/
	}
#calendar li {
	list-style-type: square;
	margin: 6px 0px 5px 6px;
	padding: 0px;
	/*border: 1px solid #009999;*/
	list-style-position: outside;
	font-size: 0.9em;
	line-height: 16px;
	color: #D59950;
	}
/*--------------------------------  Links (All)  ----------------------------------*/
	
a {
	color: #666633;
	text-decoration: none;
	border-bottom: 1px dotted #C7C78D;
}
a:hover {
	background-color: #FFE9B9;
}
