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

Name: layout.css
Version: 1.7
Last Update: 2011-10-07
Author: Énhonlapom.hu

Chapters:	RESET
					LAYOUT
						HEADER SECTION
						MAIN CONTENT SECTION
						ASIDE SECTION
						FOOTER SECTION
						NAVIGATION SECTION
							HORIZONTAL NAVIGATION
							VERTICAL NAVIGATION
							PRODUCT NAVIGATION
							PAGINATION
						GRID SYSTEM
					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;
}

/*---------- $HEADER SECTION ----------*/

#main-header {
	width: 100%;
	height: 280px;
}
#inner-header {
	width: 100%;
	height: 280px;
	position: relative;
}

#logo {
	width: 365px;
	height: 90px;
	position: absolute;
	top: 0;
	left: 20px;
}

#title {
	display: none;
}

#lang-nav {
	display: none;
}
	#lang-nav ul {
		padding: 0 20px;
	}
	#lang-nav li {
		float: left;
		margin-left: 10px;
		list-style: none;
	}

#main-nav {
	height: 90px;
	position: absolute;
	top: 0;
	right: 0;
}

#carousel {
	width: 970px;
	height: 310px;
	position: absolute;
	top: 90px;
	left: 20px;
}

/*---------- $MAIN CONTENT SECTION ----------*/

#content {
	width: 970px;
	min-height: 700px;
	margin: 140px auto 150px;
	position: relative;
	left: 10px;
}

#main-content {
	/* Main content - The site.js setup the value of the width */
	margin: 0;
	padding: 20px 25px;
	float: left;
}

/*---------- $ASIDE SECTION ----------*/

#leftside {
	width: 260px;
	margin: 20px 0 0 -20px;
	float: left;
	position: relative;
}
#leftside nav {
	width: 220px;
	padding: 20px;
}
#order {
	width: 240px;
	height: 40px;
	margin: 50px 0 20px 20px;
	text-align: center;
}
#leftside iframe {
	margin: 0 0 0 20px;
}
#rightside {
	float: right;
	width: 165px;
	margin: 0;
	padding: 20px 20px 20px 0;
}

/*---------- $FOOTER SECTION ----------*/

#main-footer {
	width: 100%;
	height: 80px;
	padding-top: 20px;
}
#inner-footer {
	height: 80px;
	position: relative;
}

#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: 970px;
	height: 40px;
	padding: 0 0 0 20px;
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 40px;
}

/*---------- $NAVIGATION SECTION ----------*/

/* $HORIZONTAL NAVIGATION */

/* Level1 */
		
.h-nav-level1 {
	margin: 36px 0 26px;
	padding: 0;
	text-align: right; /* Navigation position - Value: left, center, right */
}
.h-nav-level1 li {
	margin-left: -5px;
	padding: 0;
	display: inline;
	position: relative;
}
.h-nav-level1 li:first-child {
	margin-left: 0;
}
.h-nav-level1 li a {
	/*width: 78px; /* Fix navigation elements */
	margin: 0 10px;
	padding: 5px 10px; /* 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: "";
}
		
/* 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: 5px 0; /* 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: "";
}

/* Level2 & Level3 */

.v-nav-level2, .v-nav-level3 {
	width: 210px;
	margin-left: 10px;
	padding: 0;
	/*position: absolute;
	top: 0;
	left: 200px;
	display: none;*/
	text-align: left;
	/*z-index: 10;*/
}
	
/* Right navigation */

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

/* $PRODUCT NAVIGATION */

#product-nav, #product-nav li ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}
#product-nav li {
	margin-top: 1px;
}
#product-nav li a {
	display: block;
	padding: 5px 10px;
}
#product-nav li ul li a {
	display: block;
}

/* $PAGINATION */

.pagination {
	clear: both;
}

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

.no-column {
	margin-bottom: 20px;
}
.col	{
	float: left;
	margin: 0 0 20px;
	padding: 0 10px;
	border-right: 1px solid #000;
}
.col-left {
	margin-left: 0;
	padding-left: 0;
	border-left: none;
}
.col-right {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}
.col2	{  } /* 2 column size - The site.js setup the value of the width */
.col3	{  } /* 3 column size - The site.js setup the value of the width */

/*-------------------- $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;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* FULL HEADER AND FOOTER */

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