* {
	margin:0;
	padding:0;
}

*, *:before, *:after {
	box-sizing:border-box;
}

body {
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:15px;
	color:#CCC;
	background-color:#222;
}

a {
	text-decoration:none;
	color:inherit;
}

.content {
	display:inline-block;
	height:100%;
	width:100%;
	max-width:1920px;
	margin:auto;
	padding:0 0 0 0;
	position:fixed;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.slides {
	display:none;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
}

.enter {
	display:block;
	background-color:#222;
	opacity:0.8;
	border:0px;
	box-shadow:0px 0px 5px #222;
	color:#e6e6e6;
	text-decoration:none;
	position:absolute;
	left:50%;
	vertical-align:middle;
	-webkit-transform:translate(-50%,0%);
	        transform:translate(-50%,0%);
	-ms-transform:translate(-50%,0%);
}

.enter:hover {
	background-color:#AF0000;
}

.select {
	text-align:center;
	margin-top:16px;
	margin-bottom:16px;
	width:100%;
	font-size:18px;
	color:#e6e6e6;
	position:absolute;
	left:50%;
	bottom:0;
	-webkit-transform:translate(-50%,0%);
	        transform:translate(-50%,0%);
	-ms-transform:translate(-50%,0%);
}

.circle, .circlebtnblank {
	color:#e6e6e6;
	display:inline-block;
	height:13px;
	width:13px;
	text-align:center;
	border-radius:50%;
	border:2px solid #e6e6e6;
	margin-right:4px;
	margin-left:4px;
}

.circle {
	background-color:transparent;
}

.circlebtnblank {
	background-color:#e6e6e6;
}

.circle:hover {
	color:#000;
	background-color:#FFF;
	border-color:#FFF;
}

.arrow:hover {
	color:#FFF;
}

.arrow, .circle, .enter {
	cursor:pointer;
}

.logo {
	width:350px;
	line-height:normal;
	text-align:center;
	font-family:inherit;
	border:2px solid #CCC;
	padding:0 5px 0 5px;
}

.logo p {
	display:block;
}

.logo h1 {
	font-size:48px;
	font-weight:100;
	letter-spacing:5px;
	padding:10px 0 10px 0;
}

.logo h2 {
	font-size:16px;
	font-weight:100;
	letter-spacing:1px;
	border-top:1px solid #CCC;
	padding:10px 0 10px 0;
}