

/* TABLE GRID */
.gcwt-table #timetable
{
  width: 100%;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  border: 1px solid #333;
  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  color: #000;
  background-color: #bcc0e4;
}

.gcwt-table #timetable caption
{
  
  caption-side: bottom;
  font-size: 0.9em;
  font-style: italic;
  text-align: right;
  padding: 0.5em 0;
}

.gcwt-table #timetable th, .gcwt-table #timetable td
{
	
  border: 1px dotted #666;
  padding: 0.5em;
  text-align: left;
  color: #fff;
}

.gcwt-table #timetable th[scope=col]
{
	
  color: #000;
  background-color: #6E6E6E;
  text-transform: uppercase;
  font-size: 0.9em;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
}

.gcwt-table #timetable th+th[scope=col]
{
	
  color: #fff;
  background-color: #6E6E6E;
  border-right: 1px dotted #666;
}

.gcwt-table #timetable th[scope=row]
{
	
  color: #FFFFFF;
  background-color: #424242;
  border-right: 2px solid #333;
}
/*not yet working*/
.gcwt-table #timetable tr.alt th, .gcwt-table #timetable tr.alt td
{
  color: #2a4763;
}
/* How you want the hour numbers to appear when hoverred*/
.gcwt-table #timetable tr:hover th[scope=row]
{
	
  background-color: #22aa00;
  color: #000;
}
/* How you want the titles to appear when hoverred*/
.gcwt-table #timetable tr:hover td
{
	
  background-color: #22aa00;
  color: #000;
}

