*, 
*:before, 
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	background-color: #fff;
}

.container {
  width: 90%;
  min-width: 740px;
  margin: 0 auto;
}

ul {
	float: right;
}

li {
	display: inline;
	float: left;
}

img.logo {
	display: block;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
}

nav {
	width: 100%;
	margin: 0 auto;
}

/* Section */

section {
	font-family: sans-serif;
	font-size: 1em;
	color: #969696;
	text-align: center;
	position: relative;
}


section.stretch {
	float: left;
	min-height: 860px;
	height: 80%;
	width: 100%;
	background-image: url("img/tlo2.png");
	background-repeat: no-repeat;
	background-size: 100%;
	margin-top: 130px;
}



/* Header */

header {
	background-color: #fff;
	float: left;
	width: 100%;
	position: fixed;
	padding-top: 20px;
	z-index: 10;
}

header a {
	color: #969696;
	text-decoration: none;
	font-family: 'Amaranth', sans-serif;
	text-transform: uppercase;
	font-size: 1em;
}

header a.active, header a:hover {
	color: #3d3d3d;
}

header li {
	margin-right: 30px;
}

/* header large */
header.large {
	height: 120px;
}
header.large img {
  margin-top: 30px;
}
header.large li {
	margin-top: 52px;
}

/* header small */

header.small {
	height: 120px;
}
header.small img {
}
header.small li {
	margin-top: 17px;
}

/* Transitions */

header,
nav,
a,
img,
li {
	transition: .7s all;
	-moz-transition: .7s all;
	-webkit-transition: .7s all;
	-o-transition: .7s all;
}