html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	background-color: #15171f;
	/*
	background-image: url('_i/background.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	*/
}

body.innerPage {
	background-image: none;
	background-color: #000010;
}

div, span, h1, h2, h3, p, a {
	-webkit-font-smoothing: antialiased;
}

div.clear {
	clear:both;
}

img {
	border: 0;
}

#Container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#Container video {
    position: absolute;
    left: 50%;
    top: 50%;
    /* The following will size the video to fit the full container. Not necessary, just nice.*/
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 0;
}

#Container div {
    position: relative;
    z-index: 1;
}

/* ---------- */
/* header */
/* ---------- */

div.header {
	position: relative;
	width: 100%;
	height: 44px;
	background-color: #141720;
}

div.syhor img {
	width: 96px;
	height: 16px;
}

div.syhor {
	padding-left: 20px;
	padding-top: 14px;
	float: left;
	
}

div.nav {
	padding-right: 20px;
	padding-top: 14px;
	float: right;
}

/* ---------- */
/* content holder */
/* ---------- */


div.contentHolder {
	display: table;
	width: 100%;
	height: 40%;
}

div.contentHolderInner {
	display: table;
	width: 50%;
	height: 20%;
	margin: auto;
}

div.headline {
	display: table-cell;
    vertical-align: middle;
    text-align: center;
}

div.logotype img {
	width: 522px;
	height: 40px;
}

/* ---------- */
/* products */
/* ---------- */

div.products {
	display: table;
	padding-left: 20%;
	padding-right: 20%;
	width: 60%;
	height: 30%%;
}

div.product {
	display: table-cell;
    vertical-align: top;
    text-align: center;
    width: 144px;
}

div.productImage img {
	width: 144px;
	height: 144px;
}

div.productLogotype img {
	width: 122px;
	height: 31px;
}

div.productLogotype {
	padding-top: 20px;
}

/* ---------- */
/* footer */
/* ---------- */

div.footer {
	position: absolute;
	left: 20px;
	bottom: 20px;
}

/* -------------------- */

h1 {
	margin: 0;
	padding: 0;
	font-family: 'Roboto-Light', sans-serif;
	font-weight: 300;
	font-size: 38px;
	color: #76787d;
}

h2 {
	margin: 0;
	padding: 0;
	font-family: 'Roboto-Light', sans-serif;
	font-weight: 300;
	font-size: 24px;
	color: #76787d;
}

p {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 120%;
	color: #c2c2c2;
}

p.nav {
	font-family: 'Roboto-Medium', sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #cac85b;
	text-transform: uppercase;
}

p.productDescription {
	padding: 20px 0;
	display: block;
}

p.productLink {
	font-size: 18px;
}

p.footer {
	font-family: 'Roboto-Medium', sans-serif;
	font-weight: 500;
	font-size: 10px;
	color: #595d67;
	text-transform: uppercase;
}

a {
	color: #c2c2c2;
	text-decoration: underline;
}

a:hover {
	color: #cccccc;
}

a#footerLink {
	color: #595d67;
	text-decoration: none;
}

a#footerLink:hover {
	color: #76787d;
}

a#navLink {
	color: #cac85b;
	text-decoration: none;
}

a#navLink:hover {
	color: #ffffff;
}

a#activeNavLink {
	color: #ffffff;
	text-decoration: none;
}

/* iphone 4 */

@media only screen and (min-width: 320px) and (max-width: 480px) and (orientation: portrait) {

	div.contentHolderInner {
		width: 80%;
	}

	div.logotype img {
		width: 261px;
		height: 20px;
	}

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 18px;
	}

	p {
		font-size: 10px;
	}

	p.footer {
		font-size: 6px;
	}

	p.productDescription {
		display: none;
	}
	
	p.productLink {
		display: none;
	}

	div.products {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		height: 30%%;
	}
	
	div.product {
	    width: 72px;
	}

	div.productImage img {
		width: 72px;
		height: 72px;
	}
	
	div.productLogotype img {
		width: 61px;
		height: 15px;
	}

	div.footer {
		position: absolute;
		margin: auto;
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

@media only screen and (min-width: 320px) and (max-width: 480px) and (orientation: landscape) {

	div.contentHolder {
		display: none;
	}

	div.contentHolderInner {
		width: 80%;
		height: 70%;
	}

	p {
		font-size: 10px;
	}

	p.footer {
		font-size: 6px;
	}

	p.productDescription {
		display: none;
	}
	
	p.productLink {
		display: none;
	}

	div.products {
		padding-left: 0;
		padding-right: 0;
		padding-top: 10%;
		width: 100%;
		height: 50%;
	}
	
	div.product {
	    width: 72px;
	}

	div.productImage img {
		width: 72px;
		height: 72px;
	}
	
	div.productLogotype img {
		width: 61px;
		height: 15px;
	}

	div.footer {
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

/* iphone 5 */

@media only screen and (min-width: 320px) and (max-width: 568px) and (orientation: landscape) {
	
	div.contentHolder {
		display: none;
	}

	div.contentHolderInner {
		width: 80%;
		height: 70%;
	}

	p {
		font-size: 10px;
	}

	p.footer {
		font-size: 6px;
	}

	p.productDescription {
		display: none;
	}
	
	p.productLink {
		display: none;
	}

	div.products {
		padding-left: 0;
		padding-right: 0;
		padding-top: 10%;
		width: 100%;
		height: 50%;
	}
	
	div.product {
	    width: 72px;
	}

	div.productImage img {
		width: 72px;
		height: 72px;
	}
	
	div.productLogotype img {
		width: 61px;
		height: 15px;
	}

	div.footer {
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

/* smaller tablets */

@media only screen and (min-width: 600px) and (orientation: portrait) {

	div.contentHolderInner {
		width: 80%;
	}

	div.products {
		padding-left: 5%;
		padding-right: 5%;
		width: 90%;
		height: 50%;
	}

	div.footer {
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

@media only screen and (min-width: 600px) and (orientation: landscape) {

	div.contentHolderInner {
		width: 80%;
	}

	p.productDescription {
		display: none;
	}
	
	p.productLink {
		display: none;
	}

	div.footer {
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

/* small tablets */

@media only screen and (min-width: 1000px) and (orientation: landscape) {

	p.productDescription {
		display: block;
	}
	
	p.productLink {
		display: block;
	}

	div.footer {
		width: 100%;
		text-align: center;
		left: 0;
		bottom: 20px;
	}

}

@media only screen and (min-width: 1200px) {
	
	div.contentHolderInner {
		width: 50%;
	}
	
	div.footer {
		position: absolute;
		text-align: left;
		left: 20px;
		bottom: 20px;
		width: 200px;
	}

}