/* RESET */
* {
	margin: 0;
	padding: 0;
	border: none;
}
/* LAYOUT */
#header, #footer {
	background: url(../img/bg_solid.jpg);
	position: relative;
	height: 144px;
}
#header {
	padding-top: 6px;
}
#footer {
	padding-bottom: 6px;
}
.inner {
	width: 940px;
	margin: auto;
	overflow: auto; /* trick to clear floated elements without extra markup */
	overflow-x: hidden; /* CSS3 property supported by modern browsers */
}
/* DESIGN */
body {
	background: url(../img/bg_stripes.jpg) #000000;
	font-family: Trebuchet MS;
	font-size: 18px;
	color: #FFFFFF;
}
a {
	color: #CC3366;
	text-decoration: none;
}
a:visited {
	text-decoration: line-through;
}
a:active{
	color: #CC3333;
}
a:hover {
	text-decoration: underline;
}
/* header & footer */
#header img {
	float: right;
}
#footer img {
	float: left;
}
.description {
	width: 375px;
	margin-top: 4px;
	padding: 12px;
}
#header .description {
	float: right;
	color: #66CCCC;
	height: 114px;
}
#footer .description {
	float: left;
	color: #339933;
	height: 113px;
}
.right_curve {
	background: url(../img/bg_right_curve.jpg) top right no-repeat #333333;
}
.left_curve {
	background: url(../img/bg_left_curve.jpg) top left no-repeat #333333;
}
#header h2, #footer h2 {
	margin-top: 20px;
	padding-top: 10px;
	height: 84px;
	width: 280px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 50px;
	line-height: 40px;
}
#header h2 {
	float: right;
	text-align: right;
	margin-right: 22px;
	color: #555555;
}
#footer h2 {
	float: left;
	text-align: left;
	margin-left: 22px;
	color: #333333;
}
#header h2 span {
	display: block;
	color: #333333;
}
#footer h2 span {
	display: block;
	color: #555555;
}
/* content */
#content .inner {
	background: url(../img/bg_trunk.jpg) center center repeat-y;
	padding: 50px 0;
}
#content h1, .date {
	font-size: 24px;
}
#content h1 {
	font-style: italic;
}
.right_limb h1 {
	text-align: right;
}
.right_limb p {
	margin-left: 270px;
}
.left_limb p {
	margin-right: 270px;
}
.left_limb, .right_limb {
	padding-top: 25px;
	min-height: 78px;
	width: 540px;	
	background-repeat: no-repeat;
}
.left_limb, .right_limb .date {
	float: left;
	background-position: 208px 0;
}
.right_limb, .left_limb .date {
	float: right;
	background-position: 68px 4px;
}
/* limb: green */
.left_limb.green {
	background-image: url(../img/bg_limb_left_green.png);
}
.green h1, .green .date {
	color: #339933;
}
/* limb: blue */
.right_limb.blue {
	background-image: url(../img/bg_limb_right_blue.png);
}
.blue h1, .blue .date {
	color: #339999;
}
/* side menu */
#menu {
	background: url(../img/bg_arrow_mid.png) center left repeat-y;
	color: #666666;
	position: fixed;
	width: 112px;
	margin-left: -112px;
	z-index: 50;
}
#menu a {
	text-decoration: none;
	display: block;
	color: #666666;
	padding-left: 30px;
}
#menu a:hover {
	color: #333333;
}
a#now, a#then {
	padding: 30px;
	font-size: 24px;
	color: #333333;
}
a#now:hover, a#then:hover {
	color: #666666;
}
a#now {
	background: url(../img/bg_arrow_up.png) top left no-repeat;
}
a#then {
	background: url(../img/bg_arrow_down.png) bottom left no-repeat;
}
