

.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}


/* History */

	#history{
	
	}

	.history{
	
	}

/* Timeline */

	#history ul.timeline{
		width: 100%;
		max-width:1170px;
		margin:50px auto 0;
		display: block;
		background:url(../images/history-strip.jpg) center center repeat-y;
		position: relative;
		height: auto;
		padding:0 0 150px;
	}

/* Years */

	#history ul.timeline li.time{
		width: 75px;
		height: 50px;
		position: relative;
		clear: both;
		border-radius: 5px;
		background: white;
		text-align: center;
		color:#aaa9a9;
		line-height: 52px;
		font-family: 'Playball', cursive;
		font-size: 20px;
		margin:30px auto;
		cursor: default;
	}

	#history ul.timeline li.today{
		background: #3c3c3c;
		color:white;
		margin:40px auto;
	}

/* Notes */

	#history ul.timeline li.note{
		width:46%;
		min-height: 100px;
		float:right;
		background:white;
		border:1px solid #ececec;
		margin:35px 0;
		border-radius:12px;
		position: relative;
		text-align:left;
		padding:24px 24px 50px;
		font-style: italic;
		cursor:pointer;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	#history ul.timeline li.note.fadeInLeft{
		float: left;
		clear: left;
	}

	#history ul.timeline li.time + li.note{
		margin-top:-5px;
	}

	#history ul.timeline li.note:after{
		content:'';
		position:absolute;
		left:-10.7%;
		right: auto;
		display:block;
		width:21px;
		height:21px;
		background:white;
		border-radius:100px;
		top:50%;
		z-index:20;
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	#history ul.timeline li.note.fadeInLeft:after{
		right:-11%;
		left: auto;
	}

/* Note Arrows */

	.note-arrow{
		position: absolute;
		right: 100%;
		left: auto;
	   	top: 50%;
	   	margin-top: -7px;
	   	display: block;
	  	border-right: 15px solid;
	   	border-right-color: #ffffff; 
	   	border-left: none;
	  	border-top: 15px solid transparent;
	  	border-bottom: 15px solid transparen
	  	-ms-transform: translateY(-50%); 
	  	-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	@media (max-width: 767px) {
		.note-arrow 	{
			display: none !important;
		}
	}

	.note-arrow:after{
		content:'';
		position: absolute;
		left: 1px;
		right:auto;
	   	top: 0px;
	   	display: block;
	  	border-right: 14px solid;
	   	border-right-color: white; 
	   	border-left: none;
	  	border-top: 14px solid transparent;
	  	border-bottom: 14px solid transparen
	  	-ms-transform: translateY(-50%);t; 
	  	-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#history ul.timeline li.note.fadeInLeft .note-arrow{
		left: 100%;
		right: auto;
		border-left: 15px solid;
	   	border-left-color: #ffffff; 
	   	border-right: none;
	}

	#history ul.timeline li.note.fadeInLeft .note-arrow:after{
		border-left: 14px solid;
	   	border-left-color: white; 
	  	border-top: 14px solid transparent;
	  	border-bottom: 14px solid transparent; 
	  	border-right: none;
	  	right:1px;
	  	left:auto;
	}

	#history ul.timeline li.note.fadeInRight .note-arrow:after {
	    border-color: white transparent transparent;
	    border-style: solid;
	    border-width: 14px;
	    top: 14px;
	}

/* Start Icon */

	#history ul.timeline li.start{
		clear: both;
		width: 60px;
		height: 60px;
		display: block;
		position: absolute;
		left:50%;
		margin-left:-30px;
		bottom: 0;
		-webkit-transform: translateY(50%);
		-moz-transform: translateY(50%);
		transform: translateY(50%);
	}

	#history ul.timeline li.start a{
		width: 60px;
		height: 60px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
		display: block;
		color: white;
		text-align: center;
		border-radius: 10px;
	}

	#history ul.timeline li.start a span.up-arrow{
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
		line-height: 50px;
		display: block;
		width: 12px;
		height: 17px;
		top:20px;
		position: relative;
		margin:0 auto;
		background:url(../images/up-arrow.png) center center no-repeat;
	}

/* History Note Inners */
	
	li.note p,
	li.note span,
	li.note span:after{
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	

	li.note p.history-date{
		font-size:13px;
		color:#949494;
	}

	li.note p.history-head{
		font-size:17px;
		color:#696969;
		margin:3px auto;
	}

	li.note p.history-desc{
		font-size:13px;
		color:#949494;
	}

/* History Note Images */

	.timeline-images{
		width:90%;
		position: absolute;
		bottom:-35px;
		height: auto;
	}

	.timeline-images a.timeline-image{
		width:70px;
		height: 70px;
		margin-right:15px;
		margin-left:0;
		float:left;
		display: block;
		position: relative;
	}

	#history ul.timeline li.note.fadeInLeft .timeline-images a.timeline-image{
		float:right;
		margin-left:15px;
		margin-right:0;
	}

	.timeline-images a.timeline-image img{
		width:70px;
		height: 70px;
		border-radius: 100px;
		border:2px solid rgba(255, 255, 255, 0.5);
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

/* History Rollovers */

	#history ul.timeline li.note:hover,
	#history ul.timeline li.note:hover:after{
		background:#3498db;
	}

	#history ul.timeline li.note:hover p.history-date,
	#history ul.timeline li.note:hover p.history-head,
	#history ul.timeline li.note:hover p.history-desc{
		color:white;
	}

	#history ul.timeline li.note:hover span.note-arrow,
	#history ul.timeline li.note:hover span.note-arrow:after{
		border-right-color: #3498db; 
	}

	#history ul.timeline li.note.fadeInLeft:hover span.note-arrow,
	#history ul.timeline li.note.fadeInLeft:hover span.note-arrow:after{
		border-left-color: #3498db; 
	}

	a.timeline-image img:hover{
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
	}

