/*------------------------------------------*/
/*------ draw the box of the papers --------*/
/*------------------------------------------*/

.papers,.papers:before,.papers:after {
	background-color:#fff;
	border:1px solid #ccc;
	box-shadow:inset 0 0 30px rgba(0,0,0,0.1),1px 1px 3px rgba(0,0,0,0.2);
}
.papers {
	position:relative;
	width:90%;
	padding:2em;
	margin:0px auto;
	margin-top:40px;
	font-size:12px;
}
.papers:before,.papers:after {
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	-webkit-transform:rotateZ(2.5deg);
	-o-transform:rotate(2.5deg);
	transform:rotateZ(2.5deg);
	z-index:-1;
}
.papers:after {
	-webkit-transform:rotateZ(-2.5deg);
	-o-transform:rotate(-2.5deg);
	transform:rotateZ(-2.5deg);
}
.papers h1 {
	font-size:1.8em;
	font-weight:normal;
	text-align:center;
	padding:0.2em 0;
	margin:0;
	border-top:1px solid #ddd;
	border-bottom:2px solid #ddd;
}
.papers p {
	text-align:left;
	margin:1.5em 0;
}
.papers img {
	max-width:100%;
	margin-bottom: 5px;
}



/*--------------------------*/
/*------- timeline ---------*/
/*--------------------------*/

.timeline {
    list-style: none;
    padding: 20px 0 20px;
    position: relative;
}
 
    .timeline:before {
        top: 0;
        bottom: 0;
        position: absolute;
        content: " ";
        width: 3px;
        background-color: #eeeeee;
        left: 50%;
        margin-left: -1.5px;
    }
 
    .timeline > li {
        margin-bottom: 20px;
        position: relative;
    }
 
        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }
 
        .timeline > li:after {
            clear: both;
        }
 
        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }
 
        .timeline > li:after {
            clear: both;
        }
 
        .timeline > li > .timeline-panel {
            width: 46%;
            float: left;
            border: 1px solid #d4d4d4;
            border-radius: 2px;
            padding: 20px;
            position: relative;
            -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
        }
 
            .timeline > li > .timeline-panel:before {
                position: absolute;
                top: 26px;
                right: -15px;
                display: inline-block;
                border-top: 15px solid transparent;
                border-left: 15px solid #ccc;
                border-right: 0 solid #ccc;
                border-bottom: 15px solid transparent;
                content: " ";
            }
 
            .timeline > li > .timeline-panel:after {
                position: absolute;
                top: 27px;
                right: -14px;
                display: inline-block;
                border-top: 14px solid transparent;
                border-left: 14px solid #fff;
                border-right: 0 solid #fff;
                border-bottom: 14px solid transparent;
                content: " ";
            }
 
        .timeline > li > .timeline-badge {
            color: #fff;
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: 1.4em;
            text-align: center;
            position: absolute;
            top: 16px;
            left: 50%;
            margin-left: -25px;
            background-color: #999999;
            z-index: 100;
            border-top-right-radius: 50%;
            border-top-left-radius: 50%;
            border-bottom-right-radius: 50%;
            border-bottom-left-radius: 50%;
        }
 
        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
        }
 
            .timeline > li.timeline-inverted > .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }
 
            .timeline > li.timeline-inverted > .timeline-panel:after {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }
 
.timeline-badge.primary {
    background-color: #2e6da4 !important;
}
 
.timeline-badge.success {
    background-color: #3f903f !important;
}
 
.timeline-badge.warning {
    background-color: #f0ad4e !important;
}
 
.timeline-badge.danger {
    background-color: #d9534f !important;
}
 
.timeline-badge.info {
    background-color: #5bc0de !important;
}
 
.timeline-title {
    margin-top: 0;
    color: inherit;
}
 
.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
}
 
    .timeline-body > p + p {
        margin-top: 5px;
    }
 
@media (max-width: 767px) {
    timeline-badge {
	display: none;
    }

    ul.timeline:before {
        left: 40px;
    }
 
    ul.timeline > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }
 
    ul.timeline > li > .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px;
    }
 
    ul.timeline > li > .timeline-panel {
        float: right;
    }
 
        ul.timeline > li > .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }
 
        ul.timeline > li > .timeline-panel:after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }
}
   

/*------------------------------*/
/*----- Current interests ------*/
/*------------------------------*/

wrapper {
  position: relative;
  z-index: 3;
  margin: auto;
  width: 90%;
  max-width: 800px;
}

.screen {
  padding: 1em 0;
  position: relative;
  cursor: pointer;
}
  .screen::after,
  .fact-section:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #fff;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    content: '';
  }

.copy-left {
     display: inline-block;
     text-align: right;
     margin: 0px;
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

img {
    max-width:100%;
}

.papers {
    height: 500px;
}

@media (max-width: 1250px) { /* three-column horizontal iPad 1st */
    .papers {
    	height: 570px;
    }
}
@media (max-width: 1020px) { /* two-column vertical iPad 1st */
    .papers {
    	height: 525px;
    }
}
@media (max-width: 765px) { /* one-column: smaller than iPad 1st */
    .papers {
    	height: auto;
    }
    #main-slider .item.active h1 {
    	font-size: 40px;
    }
    .box h2 {
	font-size: 32px;
    }
}

    /* fix for the ipad */
@media (min-device-width : 768px) and (max-device-width : 1024px)  { 
    #HOME {
        background-attachment: scroll;
        /* default height landscape*/
        height: 768px;
    }

    .ipadfix{
        height: 300px !important;
    }
    img.ipadfix{
        width:100% !important; 
        height:AUTO !important;
    }
}
/* fix for the ipad */
@media (min-device-width : 768px) and (max-device-width : 1024px) and (orientation: portrait) {
    #home {
        /* default height landscape*/
        height: 1024px;
    }
} 

/* fix for the IPHONE */
@media (min-device-width : 320px) and (max-device-width : 568px)  { 
    #home {
        background-attachment: scroll;
        /* default height landscape*/
        height: 320px;
    }

    .ipadfix{
        height: 150px !important;
    }
    img.ipadfix{
        width:100% !important; 
        height:auto !important;
    }
}
/* fix for the iphone */
@media (min-device-width : 320px) and (max-device-width : 568px) and (orientation: portrait) {
    #HOME {
        /* default height landscape*/
        height: 568px;
    }
} 
