﻿/*THIS TIMELINE CSS FILE IS USED FOR A DAY IN THE LIFE--------------------------------*/
* {
	margin: 0;
	padding: 0;
}

/* thumbnail - using thumbnails instead of texts*/
img.thumbnail 
{
	width:36px;
	height:36px;
	border:0;
}

a.thumb {
	margin:0;
	padding:0;
	font-family:Arial;
	font-size:11px;
	color: #63666a;
	text-decoration: none;
	border:none;
}

a:hover,
a.selected {
	color: #63666a;
	text-decoration: none;
	border:none;
}
	
.sociales {
	text-align: center;
	margin-bottom: 20px;
}

/*whole timeline placeholder*/
#timeline {
	width:665px;
	height:650px;
	overflow: hidden;
	margin:15px auto;
	position:relative;
	background:url('../images/dot.png') left 45px repeat-x;
}

/*Timeline Dates*/
#dates {
	width:670px;
	height:60px;
	overflow: hidden;
}
#dates li {
	list-style: none;
	float: left;
	width: 200px;
	height: 50px;
	font-size:14px;
	text-align: center;
	background: url('../images/biggerdot.png') center bottom no-repeat;
}

/*position of the dates above*/
#dates a {
	line-height:16px;
	padding-bottom:0px;
}
#dates .selected {
    font-size:16px;
	color:#63666a;
}
				
/*Name of Hero, image animation and hero blurb*/ 		
#issues {
	width:670px;
	height:650px;
	overflow: hidden;
}	

#issues li {
	width:670px;
	height:650px;
	list-style: none;
	float: left;
}

/*#issues li.selected img {
	-webkit-transform: scale(1.1,1.1);
	-moz-transform: scale(1.1,1.1);
	-o-transform: scale(1.1,1.1);
	-ms-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}*/

/*position of the hero's image*/				
#issues li img {
	float:left;
	margin:6px 20px 5px 40px;
	background: transparent;
}

/*Name of Hero/Header1*/
#issues li h1 {
	color: #233c8a;
	font-family:Arial;
	font-size:18px;
	margin:200px 0 0 8;
}

#issues li h2 {
	color: #233c8a;
	font-family:Arial;
	font-size:15px;
	margin:200px 0 0 8;
}

/*Hero's blurb*/
#issues li p {
	font-family:Arial;
	font-size:12px;
	margin-right:40px;
	margin-left:40px;
	font-weight:normal;
	line-height:20px;
}

/*GRADIENTS & ARROWS*/
	/*left and right gradients in the arrow area*/						
		#grad_left,
		#grad_right {
			width: 88px;
			height: 350px;
			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: 0;
				background-image: url('../images/next.png');
			}
			#prev {
				left: 0;
				background-image: url('../images/prev.png');
			}
				#next.disabled,
				#prev.disabled {
					opacity: 0.2;
				}

