html {
    height: 100%;
    min-width: 320px;
    max-height: 100%;	
	font-size: 62.5%;
}
body {
	width: 100%;
    height: 100%;
	max-height: 100%;
	font-size: 1.8rem;
    line-height: 1.5em;
    color: #3e3e3e;
    background: #333;
}
nav#chapter {
    width: 30%;	
    position: fixed;
    top: 0px;
    bottom: 0;
    left: 0;
    color: #fff;
    text-align: center;
    background-color: #002B55;	
    overflow: auto;
    z-index: 1;	
}
nav#chapter ul {
    width: 100%;
    height: 50%;	
    position: absolute;
	top: 15%;
    display: block;
    padding: 46px 11.4%;
    margin: 30px 0 30px 0;
}
nav#chapter li {
    width: 100%;
    padding: 10px 0 15px 0;	
    border-bottom: 1px solid #3e3e3e;
}
nav#chapter li a {
	display: block;
	color: #fff;
	font-size: 18px;
	font-family: 'Roboto Slab', serif;
	transition: color 1s ease;
}
nav#chapter li a span {
	display: block;
	font-size: 14px;
	line-height: 18px;
	font-family: 'Open Sans', sans-serif;
}
nav#chapter li a:hover {
	color: gray;
}
nav#chapter li:last-child {
    border-bottom: none;
}

main {
    width: 70%;
    position: relative;
    margin: 0 0 0 30%;
	background: #fff;
}
article {
    padding: 50px 11.14% 20px 11.14%;
}
article img {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px 0;
}
article h1, article h2 {
	margin-bottom: 25px;
}
article h1 {
    font-family: 'Roboto', serif;
    line-height: 45px;
    font-size: 44px;
    color: #004990;
    font-weight: 100;
    letter-spacing: -1px;

}
article h2 {
    font-size: 1.2em;
    font-weight: 200;
    color: #002B55;
}
article p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -0.2px;
}
article p.column {
    width: 40%;
    margin-left: 5%;
    float: right;
}
@media screen and (max-width: 600px) {
    article p.column {
        width: 90%;
        margin: auto;
        float: none;
    }
}
article p.column_b {
    width: 40%;
    margin-right: 5%;
    float: left;
}
@media screen and (max-width: 600px) {
    article p.column_b {
        width: 90%;
        margin: auto;
        float: none;
    }
}
blockquote {
	width: 80%;
    margin: 30px auto;
    padding: 0 0 0 20px;
    font-style: italic;
	font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;	
    border-left: #4a4a4a 10px solid;
}
blockquote span {
	margin-top: 15px;
	font-family: 'Open Sans', serif;
	font-size: 16px;
    color: #ccc;
}
@media only screen and (max-width: 900px) {
    nav#chapter {
        display: none;
    }
    main {
        width: 100%;
        max-width: none;
        margin: 0% auto;
    }	
}

@media only screen and (max-width: 500px) {
    main {
        width: 100%;
        max-width: none;
        margin: 0% auto;
    }
    article {
        width: auto;
        font-size: 0.8em;
        line-height: 1.6em;
    }
}
/*SLIDER*/
.slider {
    width: 100%;
    height: 570px;
    position: relative;
    background-color: #002B55;
}
.slider .controls {
    width: 100%;
    height: 85%;    
    position: relative;
    z-index: 10;
}
.slider .controls ul.tabs {
    width: 100%;
    position: absolute;
    bottom: 10px;
    text-align: center;
}
.slider .controls ul.tabs li {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: .5;
}
.slider .controls ul.tabs li.current {
    opacity: 1;
}
.slider .controls ul.arrows {
    width: 100%;
    position: absolute;
    top: 40%;
}
.slider .controls ul.arrows li  {
    width: 40px;
    height: 90px;
    position: absolute;
    cursor: pointer;
    opacity: .5;
    transition: opacity 0.5s ease 0s;
}
.slider .controls ul.arrows li.backward {
    left: 5px;
    background-image: url(/gnfactory/ELF/GNF/2016/11/24/0001/img/arrow_backward.png);
}
.slider .controls ul.arrows li.forward {
    right: 5px;
    background-image: url(/gnfactory/ELF/GNF/2016/11/24/0001/img/arrow_forward.png);
}
.slider .controls ul.arrows li:hover {
    opacity: 1;
}
.slider .disabled {
    visibility:hidden !important;
}
.slider .items {
    width: 100%;
    height: inherit;
    position: absolute;
    top: 0;
}
.slider .items .item {
    width: 100%;
    height: inherit;
	position: absolute;
	display: none;
}
.slider .items .item .image {
    width: 100%;
    height: 85%;
    margin-bottom: 15px;
    background-position: center;
    background-size: cover;     
}
.slider .items .item p {
    width: 90%;
    height: 15%;
    max-width: 600px;
    margin: auto;
	color: #fff;	
    font-size: 1em;
    line-height: 20px;
    font-weight: 300;
    text-align: center;
    overflow: hidden;
}
/*SLIDER*/