.egcp-timeline {
    position: relative;
    width: 1170px;
    height: 350px;
    margin: 60px auto 0 auto;
    overflow: hidden;
}

.egcp-timeline:before,
.egcp-timeline:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 350px;
    pointer-events: none;
    content: '';
    z-index: 1;
}

.egcp-timeline:before {
    left: 0;
    background-image: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255, 1) 90%);
}

.egcp-timeline:after {
    right: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255, 1) 90%);
}

.egcp-names {
    width: 1170px;
    height: 27px;
}

.egcp-names li {
    float: left;
    position: relative;
    width: 120px;
    height: 70px;
    list-style: none;
    text-align: center;
}

.egcp-names li a {
    position: relative;
    font: 400 16px/16px 'Open Sans';
    color: #aabacc;
	margin-top: 50px;
	display: inline-block;
}

.egcp-names li a:after {
    display: block;
    position: absolute;
    left: 50%;
    top: -39px;
    margin: 0 0 0 -7px;
    width: 14px;
    height: 14px;
    background: #dff2fd;
    border-radius: 50%;
    content: '';
    z-index: 1;
}

.egcp-names li a.selected {
    color: #0b78b4;
}

.egcp-names li a.selected:after {
    background: #0b78b4;
}

.egcp-line {
    display: block;
    position: relative;
    top: -10px;
    width: 1170px;
    height: 2px;
    background: #dff2fd;
}

.egcp-content {
    margin: 50px auto 0 auto;
    width: 1170px;
    height: 350px;
    overflow: hidden;
}

.egcp-content span {
	font-weight: bold;
	color: #004978;
}

.egcp-content li {
    float: left;
    padding: 0;
    width: 1170px;
    height: 350px;
    list-style: none;
}

.egcp-content li h1 {
    margin: 20px 0;
    font: 600 54px/54px 'Open Sans';
    color: #00497b;
}

.egcp-content li p {
    font: 400 1.6rem/3rem 'Open Sans', sans-serif;
    color: #303a45;
    margin: 0 auto;
    width: 60%;
}

.egcp-button-next,
.egcp-button-prev {
    position: absolute;
    top: 50%;
    font-size: 32px;
    color: #0078b4;
    width: 50px;
    height: 50px;
    margin-top: -30px;
    opacity: 1;
    transition: opacity .25s;
    text-align: center;
    background-color: rgba(250,250,250,.8);
    border-radius: 50%;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,.2);
    transition: all .25s;
    cursor: pointer;
    z-index: 1;
}

.egcp-button-next {
    padding: 0 0 0 2px;
    right: 50px;
}

.egcp-button-prev {
    left: 50px;
    padding: 0 2px 0 0;
}

.egcp-button-next.disabled,
.egcp-button-prev.disabled {
    opacity: 0.5;
}