@import url(http://fonts.googleapis.com/css?family=Quicksand|Denk+One|Open+Sans:400italic,400);
form { padding: 0; margin: 0; }

/* **************************************** *
 * BODY
 * **************************************** */
body {
	background-color: #ffffdd;
	font: 100%/1.5 'Open Sans', sans-serif;
	margin: 0;
	padding: 0 10px;
	color: #000000;
}

a {
	text-decoration:none;
	color: #0000ff;
}


/* **************************************** *
 *   THE CALENDAR
 *   (Grid Form)
 * **************************************** */
.DCCalendar { width: 100%; margin: 0; padding: 0; }
td { min-width: 10%; overflow: hidden;}

/* Calendar sizing */
.small_calendar .DCMonth { max-width: 33em; float: left; margin-right: 2em; }
.small_calendar .DCEvent { min-height: 1em; padding: 0; font-size: .8em; font-weight: 400;}

.smallest_calendar .DCMonth { max-width: 25em; float: left; margin-right: 2em; }
.smallest_calendar .DCEvent { min-height: 1em; padding: 0; font-size: .8em; font-weight: 400;}

/* One month (contains the month table)*/
.DCMonth {
	background-color: #eee;
	padding: 0px;
	margin: 10px auto;

	max-width: 66em;
	display: block;
	float: none;
}

.DCMonth table {
	font-size: 70%;
	
	width: 100%;
	/* For spaces between days: */
	/* border-spacing: 2px 0px; */
	/* No spaces between days: */
	border-spacing: 0px 0px;
	border-color: #eee;
	border-width: 0px;
	/* border: 0px; */

	table-layout: fixed; /*for everyone*/
	empty-cells: show; /*for FF*/
	/*border-collapse: collapse; /*for IE*/
	margin: 0 auto;
	padding: 0px;
}

/* Month header ("April 2014") */
.DCMonthHeader {
	font-weight: bold;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	color: #eee;
	background: #666;
	text-align: center;
	border: 0px hidden;
	padding: .5em 0 .5em;
}

/* Day names:  Mon, Tue, Wed... */
td.DCDayName {
	border: 0px hidden;
	border-left: 1px solid #666;
	text-align: center;
	font-style: italic;
}


/* A single day */
td.DCDay, td.DCDayNoBorder {
	vertical-align: top;
	/* font-family: blippo; */
	font-family: Fixed, monospace;
	color: black;
    border-bottom: 0;
    padding-bottom: 4px;
	font-size: 100%;
	font-weight: bold;
}

td.DCDayMiddle {
  border-top: 0px hidden;
  border-bottom: 0px hidden;
}

td.DCDayBottom {
  border-top: 0px hidden;
}

.DCEvent {
	vertical-align: top;
	font-family:Verdana, Arial, Helvetica, sans-serif;
  font-size: .9em;
	color: black;
  font-weight: 600;

  border-left: #666 solid 1px;
  border-top: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
	border-right: 0;
  vertical-align: middle;

  padding-top: .5em;
  padding-bottom: .5em;
  min-height: 2em;
}

.DCEvent a { color: rgb(0,0,100); }

.DCEventName {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* The location shown right after the name */
.DCEventNameLocation::before { content: "["; }
.DCEventNameLocation::after { content: "]"; }
/* The default DanceCal Calendar doesn't use it */
.DCEventNameLocation { visibility: hidden; }

.DCEventInfo {
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#666;
	letter-spacing:0px;
	max-width: 400px;
	padding: 5px;
	border: 1px solid #660000;
	-webkit-border-radius: 8px;
	-webkit-border-top-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius: 8px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-radius: 8px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	box-shadow: 4px 4px 8px #888;
}

/* The CSS event popup on hover code */
.DCEvent { position: relative; }
.DCEvent:hover .DCEventInfo { display: block; }
.DCEventInfo {
	position: absolute;
	top: +15;
	left: +5;
	z-index: 100;
	display: none;

	width: 300px;
	height: 300px;
}


/* Event info spans */
.DCEventInfoBanner { }
.DCEventInfoName { }
.DCEventInfoFacebook { }
.DCEventInfoGCal { }
.DCEventInfoDate { display: block; }
.DCEventInfoDesc { display: block; }
.DCEventInfoTeachers { display: block; }
.DCEventInfoBands { display: block; }

