/* TotalCalendar Default Stylesheet (default.css)
   TCal Version: 2.0
   CSS Version:  2.0
   Authors: Matt Palermo and Will Murray
   Copyright (c)2004, TotalCalendar. ALL RIGHTS RESERVED. */

/* Define the default sizes and styles for everything */
table, tr, th, td {
	border-collapse: collapse;
	margin: 0em;
	padding: 0em;
}
input, select {
	font-size: 12px;
	margin: 1px;
	padding: 0em;
}
form {
	margin: 0em;
	padding: 0em;
}
ul, ol, li, dl, dd, table, tr, td, blockquote, blockquote p, blockquote > p, blockquote * p {
	font: normal 400 95% Verdana, Arial, Helvetica, sans-serif ;
	font-size: 14px
}
p {
	font-size: 1em;
	margin : 10px 0px 14px 0px;
}
h1 {
	font-weight: 900 ;
	font-size: 130% ;
}
h2 {
	font-weight: 800 ;
	font-size: 115% ;
}
h3, th, dt {
	font-weight: 700 ;
	font-size: 100% ;
}
h4 {
	font-weight: 700 ;
	font-size: 95% ;
}
h5 {
	font-variant: small-caps ;
	font-weight: 600 ;
	font-size: 85% ;
}
h6 {
	font-weight: 500 ;
	font-size: 65% ;
}
code, pre, tt {
	font: 400 80% "Lucida Console", "Courier New", Courier, monospace ;
}
code {
	color: green ;
}
strong, b {
	font-weight: bolder ;
}
em, i {
	font-style: italic ;
}
big {
	font-size: larger ;
}
small {
	font-size: smaller ;
}
.left	{
	text-align: left ;
}
.right	{
	text-align: right ;
}
.center	{
	text-align: center ;
}
.justify	{
	text-align: justify ;
}
.nomargin {
	margin: 0em;
	padding: 0em;
}	
	
/* Define the styles for specific parts of the calendar */
.mainPageTable {
	width: 100%;
}
	
/* Selected month table layout */
.selectedMonth {
	width: 100%;
	border-style: none;
}

/* Weekday cell styles (at top of calendar that show days of the week */
.weekdayCell {
	width: 14%;
	min-width: 45px;
	height: 19px;
	border-width: 1px;
	border-color: #ffffff;
	border-style: solid none;
	background-color: #e9e9e9;
	text-align: center;
	color: #000000;
	font-weight: bold;
	font-size: 85%;
}
	
/* Column cell in Main Page Table */
.columnCell {
	padding: 0em .2em 0em .2em;
}

/* Used for empty month days */
.emptyDayCell {
	width: 14%;
	height: 80px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background: url("box_background.gif");
}
	
/* Used for numbered month days */
.normalDayCell {
	width: 14%;
	height: 80px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background-color: #FFFFFF;
}

/* Used for today's date in month view */
.todayCell {
	width: 14%;
	height: 80px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background: #FAFDC8;
}
	
/* Used for empty month days in mini cal */
.emptyDayCellMini {
	width: 14%;
	height: 25px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background: url("box_background.gif");
}
	
/* Used for numbered month days in mini cal */
.normalDayCellMini {
	width: 14%;
	height: 25px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background-color: #FFFFFF;
	text-align: left;
}

/* Used for today's date in month view in mini cal */
.todayCellMini {
	width: 14%;
	height: 25px;
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background: #FAFDC8;
	text-align: left;
}

/* Format for a timeslot cell on the full day view */
.timeSlotCell {
	background-color: #E7E7E7;
	border: 1px solid #000000;
	padding: 0px 2px 0px 2px;
}

/* All content boxes in the columns use this table format */
.boxTable {
	width: 100%;
	background: url("box_background.gif") #FFFFFF repeat-x top left;
	border-collapse: collapse;
	margin: 0em;
	padding: 0em;
}
	
/* Calendar title style */
.calTitleText {
	color: #FFFFFF;
	font-weight: 700 ;
	font-size: 20px ;
	text-align: center;
	padding: 20px;
}
	
/* Text at top of columns */
.columnHeaderText {
	font-weight: 900 ;
	font-size: 130% ;
	text-align: center;
}
	
/* Text at top of boxes */
.boxHeader {
	color: #330066;
	font-size: 14 ;
}
	
/* Small text */
.smallText {
	font-size: 10px ;
}

/* Small text to appear as a link */
.smallLinkText {
	color: #000000;
	font-size: 85% ;
	cursor: pointer;
}
	
/* Category Key Text */
.categoryKey {
	font-size: 85% ;
}
	
/* Used for all confirmation/error messages */
.confirmationText {
	font-weight: bold ;
	font-size: 85% ;
	color: #990000;
}

/* This makes the "Advanced" option for repetition methods stand out */
.advancedOption {
	color: #990000;
}
	
/* View day links in month view */
.viewDayLink:link {
	color: #000000;
	font-weight: bold ;
	text-decoration: none ;
	background-color: #;
}
.viewDayLink:visited {
	color: #000099;
	text-decoration: none;
}
.viewDayLink:hover {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLink:focus {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLink:focus:hover {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLink:active {
	color: #FF0000;
	text-decoration: underline;
}
	
/* View day links for mini calendars */
.viewDayLinkMini:link {
	color: #0EC700;
	text-decoration: none ;
}
.viewDayLinkMini:visited {
	color: #000099;
	text-decoration: none;
}
.viewDayLinkMini:hover {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLinkMini:focus {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLinkMini:focus:hover {
	color: #FF0000;
	text-decoration: underline;
}
.viewDayLinkMini:active {
	color: #FF0000;
	text-decoration: underline;
}
	
/* View link style for events */
.eventLink {
	color: #000000;
	text-decoration: none ;
	font-size: xx-small;
	cursor: pointer;
}	


/* Below here is the style for the date picker */
body.cal_widget  { 
	font-weight: 400;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif ;
	text-align: left;
	text-transform: none;
	margin: 0em;
	padding: 0em;
	background-color: url("box_background.gif") ! important; 
}
table.calendar_widget {
	border-collapse: collapse;
	margin: 0em;
	padding: 0em;
	font-size: 12px; 
}
table.calendar_widget td a:link { 
	text-decoration: none; 
	color: black; 
}
table.calendar_widget td a:visited { 
	text-decoration: none; 
	color: black; 
}
td.widget_td { 
	border-width: 1px; 
	text-align: center; 
}
td.month_year_display { 
	text-align: center; 
}
td.button_display { 
	text-align: none; 
	width: 100%; 
}
td.clear_button_display { 
	text-align: left; 
}
td.close_button_display { 
	text-align: right; 
}
td.weekday { 
	background-color: #f0f0f0; 
}
td.weekend { 
	background-color: #b0b0b0; 
}
span.today { 
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background: url("box_background.gif") #C8D2E2;
	text-align: left;
}
span.other_month { 
	color: #b0b0b0; 
}
span.current_selection { 
	border-width: 2px;
	background-color: #990000;
}
td.number { 
	cursor: default; 
	border-width: 1px;
	border-color: #cccccc;
	border-style: solid;
	background-color: #FFFFFF;
	text-align: left;
}
td.number:hover { 
	background-color: #c0c0c0; 
}
