#tc_verticaltimeline {
    position: relative;
    margin: auto;
    width: 980px;
}

.tc_vt_bar {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #acacac;
    z-index: 25;
}

.tc_vt_events {
    padding: 15px 0;
}

.tc_vt_event {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.tc_vt_event .tc_vt_e_point {
    position: absolute;
    display: inline-block;
    z-index: 50;
    left: 50%;
    top: 0;
}

.tc_vt_e_hint, .tc_vt_e_position {
    width: 45%;
}

.tc_vt_e_hint {
    background-color: #FFFFFF;
    border-bottom: 2px solid #BDC3C7;
    color: #ACACAC;
}

.tc_vt_e_hint_content {
    padding: 15px;
}

.sep_item_title {
    color: #535353;
    font-size: 18px;
}    

.tc_vt_e_position {
    position: absolute;
    top: 0;
    color: #ACACAC;
    font-size: 18px;
    padding-top: 15px;
}

.tc_vt_e_hint span {
    display: block;
}

.tc_vt_e_position_right, .tc_vt_e_hint_right {
    margin-left: 55%;
}

.tc_vt_event:last-child {
    margin: 0;
}

@media screen  and (max-width: 1000px) {
	.tc_vt_bar {
		left: 25px;
	}
	
	.tc_vt_event {
		padding-left: 75px;
		width: 100%;
		box-sizing: border-box;
	}
	
	.tc_vt_event .tc_vt_e_point {
		left: 25px;
	}
	
	.tc_vt_e_hint, .tc_vt_e_position {
		width: 100%;
	}
	
	.tc_vt_e_position {
		position: static;
		margin-left: 0;
	}
	
	.tc_vt_e_position_right, .tc_vt_e_hint_right {
		margin: 0;
	}
}