/* 

Copyright (C) 2012 Matthew Fries

MF Gig Calendar is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

MF Gig Calendar is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.


=======================================
Calendar Layout
=======================================

CALENDAR OUTPUT FORMAT: 

<ul id="cal">

	<li class="event">
		<div class="date">
		
			<!-- ONLY OUTPUT FOR MULTI-DAY EVENTS -->		
			<div class="start-date">
				<div class="weekday"></div>
				<div class="day"></div>
				<div class="month"></div>
				<div class="year"></div>
			</div>
			<!-- ONLY OUTPUT FOR MULTI-DAY EVENTS -->
			
			<div class="end-date">
				<div class="weekday"></div>
				<div class="day"></div>
				<div class="month"></div>
				<div class="year"></div>
			</div>
		</div>
		<div class="info_block">
			<h3>[Event Title]</h3>
			<span class="time"></span>
			[Event Location]
			[Event Details]
		</div>
	</li>

</ul>

=======================================
*/

a.rss-link {
	display:block;
	height:16px;
	float:right;
	background:transparent url(images/icon-rss.png) right top no-repeat;
	padding-right:20px;
	line-height:16px;
}

#cal_nav {
	font-size:.9em;
	margin-bottom: 1.5em;
	display:none;
}

ul#cal {
	list-style: none;
	margin: 1em 0 1.5em 0;
	padding: 0;
}


#cal li.event {
	clear: both;
	padding-bottom: 1.5em;
	border-bottom: 1px dotted #aaa;
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
}

#cal .date {
	white-space:nowrap;
	float:left;
	padding-bottom:1.5em;
}

#cal .start-date {
	float:left;
	text-align:right;
	width:3em;
	padding-right: .5em;
	background:transparent url(images/hyphen.png) right 2em no-repeat;
	overflow:hidden;
}

#cal .end-date {
text-align: left;
width: 85PX;
margin-left: 30PX;
overflow: hidden;
}

#cal .year {
	font-family: 'Rancho', cursive;
	font-size:18PX;
	line-height:.8em;
	letter-spacing: .1em;
	display:none;
}

#cal .month {
	font-family: 'Rancho', cursive;
	text-transform:capitalize;
	font-size:18PX;
}

#cal .day {
	font-family: 'Rancho', cursive;
	font-size:18PX;
	font-weight:bold;
	float:left;
	margin-right:5px;
	text-transform:capitalize;
}

#cal .info_block {
padding: 0 0 1em 0;
margin: 0 0 0 125PX;
width: 440PX;
}

#cal .info_block h3 {
	clear:none;
	margin-top:0;
	padding-top:0;
	line-height: 26px;
}

#cal .weekday {
	font-family: 'Rancho', cursive;
	font-size:18PX;
	text-transform:capitalize;
	float:left;
	margin-right:5px;
}

#cal .time {
	position: relative;
top: -10px;
font-size: 15px;
font-weight: bold;
}

#cal .add{
	font-weight: bold;
position: relative;
top: 10px;
}

#caldiv h2{
	display:none;
}

#caldiv{
	background: url(../../themes/birdcage/images/meetBg.jpg);
padding: 20px 0px;
}