/*******************
 *  Main Structure *
 ******************/
.timeline-container{
    width: 950px; /*990*/
    height: 500px;
    margin-top: 10px;
    z-index: 0;
}
.timeline{
    background-color: whitesmoke;
    background-image: url('images/timeline-bg.jpg');
    background-size: cover;
    position: absolute;
    overflow: hidden;
    width: 950px; /* i changed it from 990 */
    height: 500px;
    margin: auto; 
    font-family: sans-serif;
    z-index: 0;
}

#timeline-slider{
    position: relative;
    left: 0px;
    width: 9000px;
    display: table;
    margin-top: 10px;
    height: 400px;
    z-index: 0;
}
#timeline-dates-line{
    width: 100%;
    height: 3px;
    top: 10px;
    background-color: #666;
    position: relative;
    opacity: 0.9;
    box-shadow: 0px -2px 5px #333;
    z-index: 0;
}

/*********************************
   General Timeline Items
**********************************/
.timeline-item{
    float: left;
    margin-left: 20px;
    border: 1px solid #666;
    box-shadow: 1px 4px 5px #333;
    border-radius: 15px;
}
.timeline-item-content{
    width: 90%;
    height: 90%;
    margin: auto;
    margin-top: 8px;
	
}
.timeline-item-content-img-cont{
    width: 100%;
    height: 92%;
    overflow: hidden;
}


/* item default */
.item-default{
    height: 250px;
    width: 320px;
    background-color: white;
    font-family: "Times";
    font-size: 85%;
    opacity: 0.9;

}
.item-default.active {
    width: 350px !important;
    height: 320px !important;
}

.item-default .title{
    display: block;
    font-weight: bold;
    color: red;
    font-size: 16px;
    font: Arial;
	
}
/* item youtube video */
.item-youtube-video{
    height: 350px;
    width: 320px;
    background-color: white;
    font-family: "Times";
    font-size: 85%;
    opacity: 0.9;
}
.item-youtube-video.active {
    width: 350px !important;
    height: 400px !important;
}

.item-youtube-video .title{
    display: block;
    font-family: Arial;
    font-weight: bold;
    color: black;
    font-size: 16px;
}
.item-youtube-video iframe{
    width: 100%;
}

/* item image */
.item-image{
    height: 350px;
    width: 320px;
    background-color: white;
    font-family: "Times";
    font-size: 85%;
    opacity: 0.9;

	
}
.item-image.active {
    width: 350px !important;
    height: 400px !important;
}

.item-image .title{
    display: block;
    font-family: Arial;
    font-weight: bold;
    color: black;
    font-size: 16px;
}
.item-image img{
    max-width: 70%; /*90*/
    max-height: 50%;/*70*/
}
.item-image .timeline-item-content{
    text-align: center;
}

/*********************************
   Dates
**********************************/

#timeline-dates{
    height: 50px;
    line-height: 20px;
    position: relative;
    z-index: 1;
}
.date-container{
    float: left;
    display: table;
    height: 50px;
    color: #005c96;
    font-size: 10px;
}
#timeline-dates li:hover{
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
}
.pointer-date{
    float: left;
    height: 20px;
    width: 6px;
    border-left: 2px solid black;
    position: relative;
}

.pointer-date-separator{
    float: left;
    height: 16px;
    width: 6px;
    border-left: 1px solid black;
}
.date{
    float: left;
    width: 20px;
    margin-left: -10px;
    cursor: pointer;
    font-size: 10px;
}
.date-focus{
    font-size: 24px;
    font-weight: bold;
}

/***************************************/
.arrow{
    position: relative;
    width: 60px;
    opacity: 0.4;
    z-index: 5;
    height: 100%;
    line-height: 100%;
}
.arrow span{
    display: block;
    margin-top: 200px;
    font-size: 50px;
    color: black;
}
.arrow:hover{
    opacity: 0.7;
    cursor: pointer;
}
#backward.arrow{
    background-image: url('css/ftl-default/images/arrow-left-bg.png');
    background-repeat: repeat-y;
    top: -91%;
}
#backward.arrow span{
    margin-right: 5px;
    float: right;
}
#forward.arrow{
    background-image: url('css/ftl-default/images/arrow-right-bg.png');
    background-repeat: repeat-y;
    left: 900px; /* 930*/
    top: -191%;
}
#forward.arrow span{
    margin-left: 5px;
    float: left;
}
#middle{
    height: 1px;
    width: 1px;
    /*margin: auto;*/
    position: absolute;
    color: yellow;
}
