/* History styles */
#cd-timeline {
  position: relative;
  padding: 2em 0;
  margin-top: 2em;
  margin-bottom: 2em;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  height: 100%;
  width: 1px;
  background: #f26729;
}
#cd-timeline img {
    max-width: 100%;
    margin: 10px 0;
}
@media only screen and (min-width: 1170px) {
  #cd-timeline { margin: 0; }
  #cd-timeline::before { left: 50%; margin-left: -1px; }
}

.cd-timeline-block { position: relative; margin: 2em 0; }
.cd-timeline-block:after { content: ""; display: table; clear: both; }
.cd-timeline-block:first-child { margin-top: 0; }
.cd-timeline-block:last-child { margin-bottom: 0; }

@media only screen and (min-width: 1170px) {
  .cd-timeline-block { margin: 4em 0; }
  .cd-timeline-block:first-child { margin-top: 0; }
  .cd-timeline-block:last-child { margin-bottom: 0; }
}

.cd-timeline-img {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:#f26729;
}
.cd-timeline-img p {
    display: table-cell;
    margin: 0;
    padding: 0;
    color:#fff;
    font-family:'HelveticaBold', Helvetica, Arial, sans-serif;
    text-align:center;
    vertical-align: middle;
}
.cd-timeline-content p:last-child { margin: 0; }

@media only screen and (min-width: 1170px) {
  .cd-timeline-img {
    display: table;
    width: 60px;
    height: 60px;
    left: 50%;
    margin-left: -30px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
.cd-timeline-img.is-hidden {
    visibility: hidden;
  }
}
.cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }
  /*.cd-timeline-img.year.display, .cd-timeline-content.display {
      visibility: visible !important;
  }*/
}

@-webkit-keyframes cd-bounce-1 {
  0% { opacity: 0; -webkit-transform: scale(0.5); }
  60% { opacity: 1; -webkit-transform: scale(1.2); }
  100% { -webkit-transform: scale(1); }
}

@-moz-keyframes cd-bounce-1 {
  0% { opacity: 0; -moz-transform: scale(0.5); }
  60% { opacity: 1; -moz-transform: scale(1.2); }
  100% { -moz-transform: scale(1); }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.cd-timeline-content {
  position: relative;
  margin-left: 100px;
  border:1px solid #f26729;
  padding: 1em;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}
.cd-timeline-content:after, .cd-timeline-content:before {
	right: 100%;
	top: 40px;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
.cd-timeline-content:before {
	border-color: rgba(225, 225, 225, 0);
	border-right-color: #f26729;
	border-width: 11px;
	margin-top: -11px;
}
.cd-timeline-content:after {
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 10px;
	margin-top: -10px;
}

@media only screen and (min-width: 768px) {
  .cd-timeline-content h2 { font-size: 20px; }
  .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date { font-size: 14px; }
}

@media only screen and (min-width: 1170px) {
    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 38%;
    }

        .cd-timeline-content:before {
            top: 30px;
            left: 100%;
            border-color: rgba(225, 225, 225, 0);
            border-left-color: #f26729;
        }

        .cd-timeline-content:after {
            top: 30px;
            left: 100%;
            border-color: rgba(255, 255, 255, 0);
            border-left-color: #fff;
        }

        .cd-timeline-content .cd-read-more {
            float: left;
        }

        .cd-timeline-content .cd-date {
            position: absolute;
            width: 100%;
            left: 122%;
            top: 6px;
            font-size: 16px;
            font-size: 1rem;
        }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

        .cd-timeline-block:nth-child(even) .cd-timeline-content:before {
            top: 30px;
            left: auto;
            right: 100%;
            border-color: rgba(225, 225, 225, 0);
            border-right-color: #f26729;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content:after {
            top: 30px;
            left: auto;
            right: 100%;
            border-color: rgba(225, 225, 225, 0);
            border-right-color: #fff;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
            float: right;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
            left: auto;
            right: 122%;
            text-align: right;
        }

    .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

.cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
.cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }
}

@-webkit-keyframes cd-bounce-2 {
  0% { opacity: 0; -webkit-transform: translateX(-100px); }
  60% { opacity: 1; -webkit-transform: translateX(20px); }
  100% { -webkit-transform: translateX(0); }
}

@-moz-keyframes cd-bounce-2 {
  0% { opacity: 0; -moz-transform: translateX(-100px); }
  60% { opacity: 1; -moz-transform: translateX(20px); }
  100% { -moz-transform: translateX(0); }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
    transform: translateX(-100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% { opacity: 0; -webkit-transform: translateX(100px); }
  60% { opacity: 1; -webkit-transform: translateX(-20px); }
  100% { -webkit-transform: translateX(0); }
}

@-moz-keyframes cd-bounce-2-inverse {
  0% { opacity: 0; -moz-transform: translateX(100px); }
  60% { opacity: 1; -moz-transform: translateX(-20px); }
  100% { -moz-transform: translateX(0); }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

#myTimeline {
margin: 40px 0 0;}

.gt-timeline{
	position: relative;
	width: 100%;
	height: 80px;
	color: #6d6d6d;
    /*border: 0px solid red;
    font-family: 'Helvetica Neue', Helvetica, Arial, serif;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
	margin-left: auto;
	margin-right: auto;*/
}
	.gt-timeline div.main_line {
	  	border: none;
	    border-top:3px solid #d2d8d6; 
	    clear:both; 
	    height:0; 
	    width: 100%;
	    position: absolute;
	    top:50px;
	    left: 14px;
	    z-index: 0;
	}

	.gt-timeline div.event{
		/*background: url(../img/main_img.png) no-repeat 0 -84px;*/
        background: #252d59;
        -webkit-border-radius: 60%;
        border-radius: 60%;
		width: 18px;
		height: 18px;
		cursor: pointer;
		position: absolute;
		z-index: 2;
		top: 44px;
	}

	.gt-timeline div.selected{
		/*border: 2px dashed #999999;*/
	}
	.gt-timeline div.e-message{
		background-color: #dedede;
        border:1px solid #dedede;
		position: absolute;
		top: 70px;
		color: #444;
	}

    .gt-timeline div.e-message#tooltip_9,
    .gt-timeline div.e-message#tooltip_11,
    .gt-timeline div.e-message#tooltip_15,
    .gt-timeline div.e-message#tooltip_18{
		top: 70px;
        left: auto !important;
        right: 0px !important;
	}

    .gt-timeline div.e-message#tooltip_9 .message-pointer {left: 175px !important;}
    .gt-timeline div.e-message#tooltip_11 .message-pointer{left: 235px !important;}
    .gt-timeline div.e-message#tooltip_15 .message-pointer{left: 295px !important;}
    .gt-timeline div.e-message#tooltip_18 .message-pointer{left: 355px !important;}

		.gt-timeline div.e-message .msg{
			padding: 10px;
			font-size: 13px;
            line-height: 1.3em;
			text-shadow: 0 0 0;
			cursor:default;
            width: 400px;
			z-index: 100;
            background-color: #dedede;
			position: relative;
		}
			.gt-timeline div.e-message .msg:hover{
	            background: #fff;
			}

		.gt-timeline div.e-message .info{
			padding: 5px;
			font-size: 12px;
			text-shadow: 0 0 0;
			cursor: auto;
			z-index: 100;
			position: relative;
			font-weight: bold;
			border-bottom: 1px dashed #959494;
			position: default;
		}

		.gt-timeline div.e-message .message-pointer{
			background: url(../img/triangle_img.jpg) no-repeat top left;
			width: 22px;
			height: 12px;
			position: absolute;
			top: -9px;
            left:0;
			z-index: 1;
		}
		.gt-timeline .icon-close{
			background: url(../img/main_img.png) no-repeat -3px -227px;
			background-color: #999999;
			width: 14px;
			height: 14px;
			position: absolute;
			top: 5px;
			right: 7px;
			cursor: pointer;
		}
	.gt-timeline div.event:hover{
		/*background-position: -27px -84px;*/
        background: #444;
	}

	.gt-timeline div.horizontal-line{
		border: 0px;
	    border-left:3px solid #d2d8d6; 
	    clear:both;
	    height:20px;
	    width: 0px;
		position: absolute;
		z-index: 1;
		top: 30px;
	}

	.gt-timeline div.leftend{
		left: 14px;
	}
	.gt-timeline div.rightend{
		right: 0;
	}
		.gt-timeline .leftend .year{
			position: relative;
			text-align: center;
			top: -30px;
			left: -19px;
		}
		.gt-timeline .leftend .month{
			position: relative;
			text-align: center;
			top: -32px;
			left: -11px;
		}

	.gt-timeline div.month-line{
		height: 15px;
		/*border-left: 2px solid #666666;*/
        border-left: none;
	}

	.gt-timeline div.even-month{
		top:37px;
	}
		.gt-timeline div.even-month .month{
			position: relative;
			top: -18px;
			left: -10px;
		}

	.gt-timeline div.odd-month{
		top: 41px;
		height: 10px;
		/*border-left: 1px solid #999999;*/
        border-left: none;
	}

	.gt-timeline .year, .gt-timeline .month{
		font-size: 15px;
	}
	.gt-timeline .year{
		font-weight: bold;
        color: #252d59;
	}
