::selection {background: rgba(0,0,0,0.95); color: rgb(255,255,255);}
::-moz-selection {background: rgba(0,0,0,0.95); color: rgb(255,255,255);}

*, *:before, *:after{
    margin:0;
    padding:0;
    border:0;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}

body {
	font-style: normal;
	font-weight: normal;
    font-feature-settings: "liga", "dlig", "kern" 1;
    font-kerning: normal;
    -webkit-tap-highlight-color: transparent;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

button:focus {
    outline: none;
}

img {
    width: 100%;
    display: block;
}

a {
	color: black;
	text-decoration: none;
	outline: none;
}
a:hover, a:active, a:visited, a:focus {
	outline: 0px;
}

p:empty {
    display: none;
}
 
em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

.nobreak {
    white-space: nowrap;
}

main {
    position: relative;
    display: block;
}

.lazyload,
.lazyloading {
    opacity: 0;
}
.lazyloaded {
    opacity: 1;
    transition: opacity .4s;
}

.popups {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
}

.popups__window {
	position: relative;
	width: 100%;
	padding: 1rem;
	background: #a8a8a8;
	border-bottom: 1px solid #000;
	display: none;
}
.popups__closebutton {
	margin-top: 1rem;
}
.popups__window a {
	text-decoration: underline;
}

noscript .popups__window, .ie7 .popups__window, .ie8 .popups__window, .ie9 .popups__window, .ie10 .popups__window {
	display: block;
}