

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	background-color: #f7f7f7;
}
body {
	font-family: 'Helvetica', 'Arial', Sans-serif;
	font-size: 15px;
	color: #000;
	
	
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	height: auto;
	vertical-align:bottom;
}
a {
	color:#000;
	text-decoration: none;
}
a:hover {
	color:#9c9c9c;

}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #e6e6e6;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
}
.mobile-logo{
	padding: 15px;
	display: block;
}
.open{
	color: #000;
	position: fixed;
	width: 50px;
	top: 15px;
	right: 0px;
	z-index: 999;
	cursor: pointer;
	font-size: 24px;
	background-color: #FFF;
	 outline: 1px solid #e6e6e6;
}
/* header */
.header {
	margin-right: -250px;
	width: 250px;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	background-color: #ffffff;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	z-index: 999;
	overflow-y: auto;
	font-size: 15px;
	
}
.toggle{
	float: right;
	display: none;
}
.rotate{
	display: inline-block;
	transition: transform 300ms;
}
.down{
	line-height: 20px;
	transform: rotate(180deg);
}
.nav {
	margin-top: 50px;
}
.nav-content ul{
	list-style: none;
	margin: 20px 0;
	padding: 0;
}
.nav-content ul li:before{
	content: "\25BB";
	margin-right: 4px
}

ul#years li:before{
	margin-right: 7px;
}
ul.letter-group{
	margin-top: 0;
}

.list{
	margin: 0;
	padding: 0;
	list-style: none;
}

.list .list-item{
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	padding-right: 20px;
	transform: translate(0, 0);
	transition: all 1s;
	background-color: #f2f2f2;
}
.list .list-item.above{
	transform: translate(0, -50px); 
}
.list .list-item.below {
	transform: translate(0, 50px); 
}
.list .list-item.dark{
	background-color: #e6e6e6;
}
.page{
	padding: 20px;
}



/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {
.mobile-logo{
	display: none;
}
.open{
	display: none;
}
.header {
	margin-right: 0 !important;
	width: 25%;
}
.content{
	margin-right: 25%;
}

.single-page-wrapper{
	max-width: 75%;
}
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

