.event{
	/* Contains the event header and body list */
	float:left;
	padding:4px;
	text-align:left;
	width:218px;
	margin:5px;
}

.eventList li{
	/* The individual events */
	background:#F4F4F4;
	border:1px solid #CCCCCC;
	list-style:none;
	margin:5px;
	padding:4px 7px;
    margin-left: -44px;
    width: 210px;
	
	/* CSS3 rounded corners */
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

.eventList li:hover{
	/* The hover state: */
	cursor:pointer;
	background:#E6F8FF;
	border:1px solid #D4E6EE;
	color:#548DA5;
}

#timelineLimiter li span{
	/* The event icon */
	display:block;
	float:left;
	height:16px;
	margin-right:5px;
	width:16px;
}

/* Individual background images for each type of event: */

#timelineLimiter li.news span.icon { 	background:url(/main_images/icons/newspaper.png) no-repeat; }
#timelineLimiter li.image span.icon { 	background:url(/main_images/icons/camera.png) no-repeat; }
#timelineLimiter li.milestone span.icon { 	background:url(/main_images/icons/chart.png) no-repeat; }
#timelineLimiter li.event span.icon { 	background:url(/main_images/icons/eventsIcon.png) no-repeat; }
#timelineLimiter li.greenevent span.icon { 	background:url(/main_images/icons/greenEventIcon.png) no-repeat; }
#timelineLimiter li.community span.icon { 	background:url(/main_images/icons/communityIcon.png) no-repeat; }

div.content{
	/* This div contains additional data for the content */
	display:none;
}

.eventHeading{
	/* The colorful year headings at the top */
	font-size:2em;
	margin:-5px -5px 10px;
	padding:2px 5px;
	text-align:center;
}

/* Three color styles for the headings: */

.eventHeading.chreme{
	background: #F5EDDE;
	border:1px solid #EADDC8;
	color:#A78B5F;
}

.eventHeading.babyblue{
	background:#E6F8FF;
	border:1px solid #D4E6EE;
	color:#548DA5;
}

.eventHeading.springgreen{
	background:#E6FFDF;
	border:1px solid #C9E6C1;
	color:#6EA85F;
}

.date {
  font-weight: bold;
  font-size: 1.4em;
}

#timelineLimiter {
	/* Hides the overflowing timeline */
	overflow:hidden;
	padding-top:10px;
	margin: 0px;
    margin-bottom: 10px
}
.timelineLimiterHomepage {
	width:708px;
}
#scroll{
	/* The small timeline below the main one. Hidden here and shown by jQuery if JS is enabled: */
	display:none;
	height:30px;

	background:#F5F5F5;
	border:1px solid #EEEEEE;
	color:#548DA5;
}

.scrollPoints{
	/* The individual years */
	float:left;
	font-size:12px;
	padding: 7px 0px;
	text-align:center;
	width:59px;
	
	position:relative;
	z-index:10;
}

#centered{
	/* Centers the years, width is assigned by jQuery */
	margin:0 auto;
	position:relative;
}

#slider{
	/* Holds the scroll bar */
	margin:10px auto;
	height:25px;
	display:none;
}

#bar{
	/* The scroll bar */
	background:url(/main_images/slider_center.png) repeat-x center center;
	height:25px;
	cursor:pointer;
}

#barLeft{
	background:transparent url(/main_images/slider.png) no-repeat scroll left center;
	height:25px;
	width:20px;
	left:0;
	top:0;
	position:absolute;
}

#barRight{
	background:transparent url(/main_images/slider.png) no-repeat scroll right center;
	height:25px;
	position:absolute;
	right:0;
	top:0;
	width:20px;
}

#overlay{
	/* The overlay that darkens the page when an event is clicked */
	position:absolute;
	z-index:10;
	top:0;
	left:0;
	background-color:#222222;
}

#windowBox{
	/* Shows details about the event on click */
	position:absolute;
	z-index:20;
	background-color:#fcfcfc;
	padding:10px;
	border:2px solid #666666;
	overflow:auto;
}

#titleDiv{
	/* The title of the windowBox */
	background:#F5F5F5;
	border:1px solid #EEEEEE;
	color:#AAAAAA;
	font-size:1.5em;
	margin-bottom:10px;
	padding:5px 10px;
}

#date{
	/* The date on the bottom of the windowBox */
	bottom:20px;
	color:#999999;
	font-size:0.8em;
	font-style:italic;
	position:absolute;
	right:15px;
	padding:2px;
	background:#FCFCFC;
}

#highlight{
	/* The blue highlight that moves with the scroll bar */
	height:30px;
	position:absolute;
	z-index:0;
	left:0;
	top:0;
	
	background:#C6D8FF;
	border:1px solid #C4D6EE;
	border-width:0 1px;
}

.clear{
	clear:both;
}

/* For upcoming events on the home page */
#upComingEvents li{
	/* The individual events */
	background:#F4F4F4;
	border:1px solid #EEEEEE;
	list-style:none;
	margin:5px;
	padding:4px 7px;
    margin-left: -35px;
    width: 207px;
	
	/* CSS3 rounded corners */
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
}

#upComingEvents li:hover{
	/* The hover state: */
	cursor:pointer;
	background:#E6F8FF;
	border:1px solid #D4E6EE;
	color:#548DA5;
}

#upComingEvents li span{
	/* The event icon */
	display:block;
	float:left;
	height:16px;
	margin-right:5px;
	width:16px;
}

/* Individual background images for each type of event: */

#upComingEvents li.event span.icon { 	background:url(/main_images/icons/newspaper.png) no-repeat; }
#upComingEvents li.image span.icon { 	background:url(/main_images/icons/camera.png) no-repeat; }
#upComingEvents li.milestone span.icon { 	background:url(/main_images/icons/chart.png) no-repeat; }
#upComingEvents li.eventIcon span.icon { 	background:url(/main_images/icons/eventsIcon.png) no-repeat; }
#upComingEvents li.greeneventIcon span.icon { 	background:url(/main_images/icons/greenEventIcon.png) no-repeat; }
#upComingEvents li.communityIcon span.icon { 	background:url(/main_images/icons/communityIcon.png) no-repeat; }

div.content{
	/* This div contains additional data for the content */
	display:none;
}

