@charset "UTF-8";
/* CSS Document */

html {  
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.inside {
	width: 100%;
	position: fixed;
	top: 0;
	z-index:10;
	font-family: open-sans;
	font-size: 0.7em;
	line-height: 1.8em;
	color: rgba(255, 255, 255, .7);
	text-align: center;
	letter-spacing: 0.18em;
	font-style: normal;
	font-weight: 600;
	text-rendering: optimizeLegibility;
	background-color: rgba(0, 0, 0, .7);
	padding-top: 0.6em;
	padding-bottom: 0.6em;
	margin: 0;
}
.inside a {
	color: #FFFFFF;
	text-decoration: none;
	-webkit-transition: all 0s ease-in-out .3s;
	-o-transition: all .2s ease-in-out;
	transition: all .3s ease-in-out;
	text-rendering: optimizeLegibility;
}
.inside a:hover {
	color: rgba(255, 255, 255, .7);
}
.inside-phone {
	width: 45px;
	height: 40px;
	position: fixed;
	top: 0;
	z-index:10;
	font-family: open-sans;
	font-size: 0.7em;
	line-height: 1.8em;
	text-align: left;
	letter-spacing: 0.18em;
	font-style: normal;
	font-weight: 600;
	text-rendering: optimizeLegibility;
	padding: 0;
	margin: 0;
}

@media (min-width: 920px){
.inside-phone {
	display:none;
}
}

@media (max-width: 919px){
.inside {
	display:none;
}
.inside-phone {
	display:block;
}
}
