@media (min-width: 768px) {
	#timeline {
		
		height: 450px;
		overflow: hidden;
		margin: 18px auto;
		position: relative;
		background: url('../images/dot.gif') left 45px repeat-x;
	}
		#dates {
			
			height: 60px;
			overflow: hidden;
		}
			#dates li {
				list-style: none;
				float: left;
				width: 120px;
				height: 50px;
				font-size: 18px;
				text-align: center;
				background: url('../images/biggerdot.png') center bottom no-repeat;
			}
				#dates a {
					line-height: 38px;
					padding-bottom: 10px;
					text-decoration: none;
					color: #002856;
				}
				#dates .selected {
			        font-weight: 700;
			        color: #99ca3c;
				}
		
		#issues {
			
			height: 450px;
			overflow: hidden;
		}	
			#issues li {
				
				height: 450px;
				list-style: none;
				float: left;
			}
				#issues img {
					float: right; margin: 0 0 15px 15px; clear: right;
				}
				#issues li h1 {
					text-transform: none;
				}
				#issues li p {
					line-height: 125%;
					margin-bottom: 10px;
				}
		
		#grad_left,
		#grad_right {
			width: 100px;
			height: 450px;
			position: absolute;
			top: 0;
		}
			#grad_left {
		        left: 0;
		        background: url('../images/grad_left.png') repeat-y;
			}
			#grad_right {
		        right: 0;
		        background: url('../images/grad_right.png') repeat-y;
			}
		
		#next,
		#prev {
			position: absolute;
			top: 0;
			font-size: 70px;
			top: 170px;
			width: 22px;
			height: 38px;
			background-position: 0 0;
			background-repeat: no-repeat;
			text-indent: -9999px;
			overflow: hidden;
		}
			#next:hover,
			#prev:hover {
				background-position: 0 -76px;
			}
			#next {
				right: 5px;
				background-image: url('../images/next.png');
			}
			#prev {
				left: 5px;
				background-image: url('../images/prev.png');
			}
				#next.disabled,
				#prev.disabled {
					opacity: 0.2;
				}
				
}