@charset "utf-8";

* {
	margin:0;
	z-index:10;
	font-family: 'gotham_blackregular';
}
body {
	background-color:rgba(0,0,0,.7);
	background-image:url(images/background.jpg);
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}

@font-face {
    font-family: 'gotham_blackregular';
    src: url('font/gotham_black-webfont.eot');
    src: url('font/gotham_black-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/gotham_black-webfont.woff') format('woff'),
         url('font/gotham_black-webfont.ttf') format('truetype'),
         url('font/gotham_black-webfont.svg#gotham_blackregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ostrich_sansblack';
    src: url('font/ostrich-black-webfont.eot');
    src: url('font/ostrich-black-webfont.eot?#iefix') format('embedded-opentype'),
         url('font/ostrich-black-webfont.woff') format('woff'),
         url('font/ostrich-black-webfont.ttf') format('truetype'),
         url('font/ostrich-black-webfont.svg#ostrich_sansblack') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* START NAVIGATION */
nav {
	z-index:10000;
	background-color:#000;
	width:100%;
	height:50px;
	position:fixed;
	left:0;
	top:0;
	border-bottom:1px solid #FF0;
	overflow:hidden;
}
nav a {
	font-family: 'ostrich_sansblack';
	color:#FFF;
	font-size:22px;
	line-height:22px;
	text-decoration:none;
}
nav #briks {
	width:50px;
	height:50px;
	overflow:hidden;
	position:relative;
	margin-left:20px;
	cursor:pointer;
	float:right;
}
nav #briks div {
	width:30px;
	height:5px;
	background-color:#FFF;
	position:absolute;
	left:10px;
}
nav #links {
	float:left;
}
nav #links a {
	display:block;
	float:left;
}
nav #logo {
	height:50px;
	float:left;
}
#case {
	background-color:rgba(0,0,0,.2);
	position:absolute;
}

/* END NAVIGATION */

/* START FOOTER */

footer {
	position:fixed;
	bottom:0;
	width:100%;
	height:40px;
	background-color:#000;
	color:#FFF;
	font-size:12px;
}
footer #left {
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	margin-left:40px;
	width:200px;
}
footer #right {
	float:right;
	margin-right:40px;
	width:200px;
}
footer #right a {
	font-family:Arial, Helvetica, sans-serif;
	color:#FFF;
	text-decoration:none;
}
footer #center {
	margin-top:10px;
	width:100%;
	display:block;
	text-align:center;
}
footer #center img {
	margin: 0 10px;
}
#fix {
	width:1px;
	position:absolute;
	left:0;
	top:0;
}

/* END FOOTER*/

/* START RESPONSIVE */
@media (min-width: 1001px) {
	#case {
	}
	
	nav #briks {
		display:none;
	}
	nav #links a {
		margin-left:40px;
		margin-top:15px;
	}
	nav #logo img {
		margin-top:12px;
		margin-left:100px;
	}
}
@media (min-width: 401px) and (max-width: 1000px) {
	nav #briks {
		display:block;
	}
	nav #logo {
		width:100%;
	}
	nav #logo img {
		margin-top:12px;
		margin-left:100px;
	}
	nav #links {
		width:100%;
		text-align:center;
	}
	nav #links a {
		display:block;
		float:none;
		border-top:1px solid rgba(255,255,255,.5);
		padding-top:15px;
		padding-bottom:10px;
		background-color:#000;
	}
	footer #left, footer #right {
		display:none;
	}
}
@media (max-width:400px) {
	nav #briks {
		display:block;
	}
	nav #logo {
		width:100%;
	}
	nav #logo img {
		width:150px;
		height:18px;
		margin-top:15px;
		position:relative;
		left:50%;
		margin-left:-75px;
	}
	nav #links {
		width:100%;
		text-align:center;
	}
	nav #links a {
		display:block;
		float:none;
		border-top:1px solid rgba(255,255,255,.5);
		padding-top:15px;
		padding-bottom:10px;
		background-color:#000;
	}
	footer #left, footer #right {
		display:none;
	}
}
/* END RESPONSIVE */