﻿#timeline {
	padding: 24px;
	margin: 0px auto 8px auto;
	clear: both;
}

#timeline table {
	border-collapse: collapse;
	margin-right: 8px;
	margin-bottom: 8px;
	margin-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	padding-left: 8px;
}

#timeline h1 {
	font-size: 140%;
	text-align: center;
	color: #6b8662;
}

#timeline h2 {
	font-size: 120%;
	text-align: center;
	color: #6b8662;
}


.date1 {
	padding: 12px;
	margin: 16px;
	border-style: solid none solid solid;
	background-color: #F9FAF8;
	font-weight: bold;
	border-top: 1px solid #d7e0d4;
	border-right: none;
	border-bottom: 1px solid #d7e0d4;
	border-left: 2px solid #6b8662;
}
.date2 {
	padding: 12px;
	margin: 16px;
	font-weight: bold;
	background-color: #FFFFFF;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: 2px solid #6b8662;

}

.detail-border {
	padding: 12px;
	margin: 8px;
	background-color: #F9FAF8;
	border-top: 1px solid #d7e0d4;
	border-left: none;
	border-bottom: 1px solid #d7e0d4;
	border-right: 2px solid #d7e0d4;

}

.detail-noborder {
	padding: 12px;
	margin: 8px;
	background-color: #ffffff;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: 2px solid #d7e0d4;

}

.timeline-links {
	padding: 0px;
	margin: 12px 0px 12px 0px;
	color: #3C4B37;
	text-align: center;
}

.timeline-links .u-r-here {
	color: #bb6f2c;
}


.timeline-links a {
	font-weight: normal;
	color: #3C4B37;
	text-decoration: none;
}
.timeline-links a:hover {
	text-decoration: underline;
	color: #000000;
}

/* Image hover pop-up styles */

.popup{
	position: relative;
	margin-left: 4px;
	border: 1px solid #0c100b;
	background-color: #f9faf8;
	padding: 1px;
	float: right;
}

.popup:hover{
	background-color: transparent;
	text-decoration: none;
	z-index: 50;
}

.popup span{ /*CSS for popup*/
	position: absolute;
	left: -1000px;
	visibility: hidden;
}


.popup:hover span{	/*CSS for popup on hover*/
	visibility: visible;
	bottom: -20px;
	left: -280px; /*position where popup should offset horizontally */;
	border: 1px solid #0c100b;
	background-color: #f9faf8;
	padding: 1px;
	z-index: 50;
}


