/* CSS Document */



/* the time of the individual event 
<span class="bhubble-event-date">6:00 pm to 8:00 pm</span>
*/
.bhubble-event-date {
	font-style:italic;
	color:#999999;
	font-size:10px;
}


/* the title of the event 
<span class="bhubble_event-title" ><a href="?page=node/2087" >Books for Babies</a></span>
*/
.bhubble-event-title a, .bhubble-event-body a{
	font-weight:bold;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#0066CC;
	text-decoration:none;
}

/*
the body of the event if using list view
<div class="bhubble-link-body">Here is the body (details) of the event.<a href="?page=node/1234">&raquo; read more</a></div>
*/
.bhubble-event-body {
    border-bottom: solid 1px #000000;
}



/*
table formatting (week and month view only)

There is one main table that holds the date controls at the top, it looks something like this:
<table width="100%" border="0" cellspacing="0" cellpadding="0" id="bhubble-event-calendarheader">
	<tr>
		<td width="150"><a href="?page=calendar&d=1222758000">&lt;&lt; September</a></td>
		<td align="center"><h2>October 2008</h2></td>
		<td align="right" width="150"><a href="?page=calendar&d=1225522800">November &gt;&gt;</a></td>
	</tr>
</table>
note there is are h2 and a tags that can easily be styled like so:
*/
#bhubble-event-calendarheader h2 {
	color:#333333;
}
#bhubble-event-calendarheader a{
	color:#0066CC;
	text-decoration:none
}
#bhubble-event-calendarheader a:hover{
	text-decoration:underline;
}

/*
next, there is a table for the calendar with th for the day details, it looks something like this:

<table width="100%" border="0" cellspacing="0" cellpadding="0" id="bhubble-event-calendar">   
	<tr>
		<th scope="col">Sun</th>
		<th scope="col">Mon</th>
		<th scope="col">Tue</th>
		<th scope="col">Wed</th>
		<th scope="col">Thu</th>
		<th scope="col">Fri</th>
		<th scope="col">Sat</th>
	</tr>
	<tr>
		<td class="bhubble-event-no-day">&nbsp;</td>
		<td class="bhubble-event-no-day">&nbsp;</td>
		<td class="bhubble-event-no-day">&nbsp;</td>
		<td class="bhubble-event-day " valign="top" width="14">
			<div  class="bhubble-event-daydate">1</div>
			<p><span class="bhubble-event-title" ><a  href="?page=node/123" >Event Title</a></span><br /><span class="bhubble-event-date">4:00 pm to 10:00 pm</span></p><p><span class="bhubble-event-title" ><a  href="?page=node/1234" >Event #2</a></span><br /><span class="bhubble-event-date">5:30 pm to 7:00 pm</span></p>
		</td>
	... etc
*/

#bhubble-event-calendar {
	border:solid #cccccc 1px;
	border-collapse:collapse;
}
#bhubble-event-calendar td {
	border:solid #cccccc 1px;
	width:14%;
}
#bhubble-event-calendar p {
	margin-top:6px;
	margin-left: 2px;
}

#bhubble-event-calendar th {
	border-bottom:#cccccc 2px solid;
	background:#CCCCCC;
	text-align:center;
	color:#666666;
	text-transform:uppercase;
}

.bhubble-event-day {
	background:#FFFFFF;
}
.bhubble-event-no-day {
	background:#F0F0F0;
}
.bhubble-event-today {
	background:#F8FFDF;
}

/* the number of the date 
<div class="bhubble-event-daydate">20</div>
*/
.bhubble-event-daydate {
	float:right;
	display:block;
	min-height:60px;
	color:#666666;
	font-weight:bold;
}
/* the number of the date on today
<td class="bhubble-event-day bhubble-event-today" ><div class="bhubble-event-daydate">17</div>
*/
.bhubble-event-today .bhubble-event-daydate {
	font-weight:bold;
	font-size:18px;
}