
/* set fonts and backgrounds */

body {
	background-color: #003EBA;
	font-family: Verdana, Helvetica, Sans-Serif;
	margin: 0;
	padding-right: 260px;   /* width of center column padding and 					right column full width*/
	min-width:800px;
	text-align:center;
}


/* push columns (calendar and handouts) to the left */
.column {  position: relative;  float: left;}

/* define center column (calendar container) */

#center {  width: 100%;
  background-color: #003EBA;
  padding: 30px 20px;}

/* handouts column */
#right {  width: 180px;             /* right column width */  margin-right: -100%;  
  background-color: #003EBA;
  padding: 15px 20px;
  border-left: thin dashed black;
}

H2 {
	font-size:30px;
}

H5 {
	font-size:15px;
}

/* common elements for header and footer */
#header, #footer {
	margin-right: -260px;  /*width of right column (with padding) 					and center column padding - makes it so 				the header and footer spread the entire 				width of the page */
	margin-left: 0px; 
	background-color:#FFC77F;

}

/* header-only elements */

#header {
  text-align:center;
  font-size:2em;
  font-weight:bold;
  padding-top:20px;
  background-color:#FFC77F;
  border-bottom: thin solid black;

}
 
/* footer-only elements */
#footer {  clear: both;  		//makes the footer float to the bottom
  padding:15px;
  text-size:.3em;
  text-align:center;
}


/* define the tables */

Table {
	
	border:0px;
}

/* make sure the calendar centers */

.calendar {
	background-color:white;
	width: 80%;    	   border: 2;   background-color:white;       margin-left:auto;       margin-right:auto;
	margin-left:auto;
	margin-right:auto;
}

/* column headers for calendar (days of week) */
TH.calendarHeader {
	font-weight:boldest;
	border:1px solid black;
	padding:5px;
	background-color:#5D7CBA;
}

TD {
	border:1px solid black;
	padding:5px;
}

/* day made into a holiday */
TD.holiday {  
	background-color:#FF9000;
	font-size:.8em;


}

/* day with a lesson created */
TD.schoolDay { 
	background-color:#FFC77F;
	font-size:.8em;
	height: 100px;
	
}

TD.schoolDay a {
	color:blue;
}
TD.schoolDay a:hover {
	color:red;
}

/* empty day */ 
TD.noLesson { 
	background-color:#FFE3BF;
	font-size:.8em;
	height:65px;


}

/* navigation table (previous, next month and month drop down menu) */

TD.navLeft {
	border: none;
	
}
TD.navCenter {
	border-right:1px solid black;
	border-bottom:none;
	border-left: 1px solid black;
	border-top:none;
	
}
TD.navRight {
	border:none;
}


/* navigation table (previous/next month) */

.navigationTable {
	margin-left: auto;     /* make sure the nav table centers*/        margin-right: auto;
}

tr.navigationTable {
	text-align:center;
	font-size:.4em;
	font-weight:bold;
	border: thin solid black;
}	

/* link colors in the navigation table */

TR.navigationTable a {	
	color:blue;
}
TR.navigationTable a:hover {	
	color:red;
}

/*definition list to hold handouts*/

DL {
	background-color:#5D7CBA;
	width:180px;	
	border-bottom: medium solid black;
}
DL a:hover{
	color:red;
}

DL a {
	color:blue;
}

/* terms that hold the handout file name */
DT {
	font-weight:bold;	
	font-color:white;
	background-color:#FFC77F;
	padding: 3px;
	font-size:12px;
	margin:0px;
	border-top: 2px solid black;
	border-right: 2px solid black;
	border-left: 2px solid black;
}

/* topmost header for the handouts list */
DT.header {
	background-color:#5D7CBA;

	border:2px solid black;
	text-align:center;
	font-size:16px;
	font-weight:bold;	
	
}
/* definitions that hold the brief title of the handout */

DD {
	background-color:#FFE3BF;
	padding-left:9px;
	padding-right:3px;
	padding-top:3px;
	padding-bottom:3px;
	font-size:12px;	
	font-color:black;
	margin-left:0px	;
	border-top: thin dashed gray;
	border-right: 2px solid black;
	border-left: 2px solid black;
}
