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

Name: layout.css
Version: 1.7
Last Update: 2011-09-30
Author: Énhonlapom.hu

Chapters:	RESET
					LAYOUT
					GRID SYSTEM
					HORIZONTAL NAVIGATION
					VERTICAL NAVIGATION
					PRODUCT NAVIGATION
					GLOBAL LAYOUT CLASSES

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

/*---------- $RESET ----------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display: block;
}
body {
	line-height: 1;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: pointer;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, select {
	vertical-align: middle;
}

/*---------- $LAYOUT ----------*/

html {
	min-height: 100%;
	}
body {
	width: 990px;
	min-height: 100%;
	margin: 0 auto;
}
#main-header {
	width: 100%;
}
#inner-header {
	width: 100%;
	position: relative;
}
#call {
	float: left;
	margin: 40px 0 0 0;
}
#tips {
	height: 34px;
	float: left;
	margin: 50px 25px 0 0;
	background: url('../images/download.png') center left no-repeat;
	padding-left: 40px;
	text-transform: uppercase;
}
#logo {
	width: 200px;
	height: 110px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -100px;
}
#media {
	width: 150px;
	height: 34px;
	line-height: 34px;
	float: right;
	margin: 50px 0 0 0;
	background: url('../images/media.png') center left no-repeat;
	padding-left: 40px;
	text-transform: uppercase;
}
#lang-nav {
	width: 125px;
	margin-top: 50px;
	float: right;
}
	#lang-nav ul {
		padding-right: 10px;
	}
	#lang-nav li {
		float: left;
		margin-left: 10px;
		line-height: 34px;
		list-style: none;
	}
#main-nav {
	width: 100%;
	height: 50px;
	padding: 20px 0 0;
	clear: both;
}
#carousel {
	clear: both;
	width: 100%;
	height: 300px;
}
#content {
	width: 100%;
	min-height: 800px;
	margin-bottom: 20px;
}
#leftside {
	float: left;
	width: 240px;
	margin: 0;
	padding: 25px 0 0 25px;
}
#main-content {
	/* Main content - The site.js setup the value of the width */
	margin: 0;
	padding: 25px;
	float: left;
}
#rightside {
	float: right;
	width: 240px;
	margin: 0;
	padding: 25px 25px 0 0;
}
#main-footer {
	width: 100%;
	height: 310px;
}
#inner-footer {
	height: 310px;
	position: relative;
}
#inner-footer section.footer-box {
	width: 225.5px;
	margin: 0 10px;
	float: left;
}
#footer-nav ul {
	margin: 0;
	padding: 0;
	text-align: center;
}
	#footer-nav li {
		display: inline;
		list-style: none;
	}
	#footer-nav a {
		display: inline-block;
		padding: 0 10px;
	}
#copyright {
	width: 100%;
	height: 60px;
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 60px;
}

/*---------- $GRID SYSTEM ----------*/

.no-column {
	margin-bottom: 20px;
}
.column	{
	float: left;
	margin: 0 20px 20px 0;
}
.last	{
	margin-right: 0;
}
.gridcol1	{  } /* 1 column size - The site.js setup the value of the width */
.gridcol2	{  } /* 2 column size - The site.js setup the value of the width */
.gridcol3	{  } /* 3 column size - The site.js setup the value of the width */


/*---------- $HORIZONTAL NAVIGATION ----------*/

/* LEVEL1 */
		
.h-nav-level1 {
	height: 48px;
	margin: 0 20px 1px 20px;
	padding: 0;
	text-align: center; /* Navigation position - Value: left, center, right */
}
.h-nav-level1 li {
	margin-left: -5px;
	padding: 0;
	display: inline;
	position: relative;
	list-style: none;
}
.h-nav-level1 li:first-child {
	margin-left: 0;
}
.h-nav-level1 li a {
	/*width: 78px; /* Fix navigation elements */
	padding: 24px 10px 8px; /* Space between navigation elements */
	display: inline-block;
	position: relative;
}
.h-nav-level1 li a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
}
.h-nav-level1 li a:hover {
	padding: 24px 10px 4px;
}
.h-nav-level1 li.active a {
	padding: 24px 10px 4px;
}
		
/* LEVEL2 */
		
.h-nav-level2, .h-nav-level3 {
	width: 200px;
	margin: 0;
	padding: 0;
	display: none;
	position: absolute;
	top: 27px; /* Font height + padding-bottom + 1 */
	left: 0;
	z-index: 10;
	text-align: left; /* Navigation level 2 text position */
}
.h-nav-level2 li {
	margin-left: 0;
	padding: 0;
	display: block;
}
.h-nav-level2 li a {
	width: 180px;
	display: block;
}
		
/* LEVEL3 */
		
.h-nav-level3 {
	top: 0;
	left: 200px;
}

/*---------- $VERTICAL NAVIGATION ----------*/

/* LEVEL1 */
		
.v-nav-level1 {
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left; /* Navigation position - Value: left, center, right */
}
.v-nav-level1 li {
	padding: 0;
	display: block;
	position: relative;
}
.v-nav-level1 li a {
	padding: 10px; /* Space between navigation elements */
	display: block;
	position: relative;
}
.v-nav-level1 li a:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
}
.v-nav-level1 li a:hover {
	padding: 10px 10px 6px 10px;
}

/* LEVEL2 & LEVEL3 */

.v-nav-level2, .v-nav-level3 {
	width: 240px;
	padding: 0;
	position: absolute;
	top: 0;
	left: 240px;
	display: none;
	text-align: left;
	z-index: 10;
}
	
/* RIGHT NAVIGATION */

.v-nav-right {
	left: -200px;
}

/*---------- $PRODUCT NAVIGATION ----------*/

#product-nav, #product-nav ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

#product-nav a {
	display: block;	
}

#product-nav li {
	margin-top: 1px;
}

#product-nav li a {
	padding: 5px 10px;
	background: #333;
	color: #fff;
}

#product-nav li a:hover {
	background: #000;
}

#product-nav li ul li a {
	background: #ccc;
	color: #000;
}

#product-nav li ul li a:hover {
	background: #aaa;
}

/*---------- GLOBAL LAYOUT CLASSES ----------*/

.block {
	display: block;
}
.clearfix {
	display: block;
}
.clearfix:after {
  height: 0;
	display: block;
	content: "";
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
.clear {
	clear: both;
}
.alignleft	{
	float: left;
	text-align: left;
}
.alignright {
	float: right;
	text-align: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

/* Full footer */

body {
	width: 100% !important;
}
#main-header {
	width: 990px;
	margin-left: auto;
	margin-right: auto;
}
#content {
	width: 990px;
	margin-left: auto;
	margin-right: auto;
}
#inner-footer {
	width: 990px;
	margin-left: auto;
	margin-right: auto;
}