@charset "utf-8";
:focus  { outline: none }
:active { outline: none }

body {
	font: 100%/1.4 Century Gothic;
	margin: 0;
	padding: 0;
	color: #000;
	/*background: url('../images/design/bg3.jpg') fixed; /* #0085B2;*/
}
html { 
  background: url(../images/design/bg_2.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	/*color: #42413C;*/
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	/*color: #6E6C64;*/
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
.x {
	position: absolute;
	width: 100%;
	height: 290px;
	z-index: 1;
	/*	border: 1px solid red;*/
	/*	background-color: #f4f4f4;*/
}
.x .bal {
	position: relative;
	float: left;
	width: 50%;
	height: 290px;	
	background: url(../images/design/bal_bg.jpg) top repeat-x;
}
.x .jobb {
	position: relative;
	float: right;
	width: 50%;
	height: 290px;	
	background: url(../images/design/jobb_bg2.jpg) top repeat-x;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	position: relative;
	width: 1050px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	margin-top: 10px;
	/*
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	*/
	/*
	-moz-box-shadow: 0 0 5px #999;
	-webkit-box-shadow: 0 0 5px #999;
	box-shadow: 0 0 5px #999;
	*/
	/*	border: 1px solid yellow;	*/

	z-index: 2;
}
.header {
	width: 1050px;
	height: 75px;
	/*	border: 1px solid red;	*/
}
.header .logo {
	position: absolute;
	top: 13px;
	left: 10px;
	width: 200px;
	height: 50px;
	background: url('../images/design/termoplus logo.png') center no-repeat;
}
.header .nyelv_holder {
	float: right;
	margin-right: 50px;
	width: 68px;
	height: 29px;
	/*background: url(../images/design/nyelv.jpg);*/
	/*	border: 1px solid red;	*/
}
.header .facebook {
	position: absolute;
	top: 5px;
	right: 8px;
	background: url('../images/design/facebook2.png') center;	
	width: 50px;
	height: 50px;
}
.header .menu {
	position: absolute;		
	width: 690px;
	height: 25px;
	margin-left: 300px;
	margin-top: 42px;			
	/*	border: 1px solid orange;	*/
}
.header ul.menu {
	list-style: none; /* this removes the list marker */
	/*	border: 1px solid red;	*/
}
.header ul.menu li {
	float: left;
	margin: 0 17px 0 17px;
	/* this creates the button separation */
}
.header ul.menu a, .header ul.menu a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 4px 15px 4px;
	letter-spacing: 0.02em;
	display: block; 
	/*width: 90px;*/
	height: 10px;
	text-decoration: none;
	/*line-height: 14px;*/
	color: #575748;
	text-align: center;
	font-size: 1em;
	font-weight: 500;
	text-transform: uppercase;
	/*	border: 1px solid red;	*/
}
.header ul.menu a:hover,.header ul.menu a:active,.header ul.menu a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FF4D4D;
	/*text-shadow: 1px 1px #333;*/
}
.header ul.menu .on {
	border-bottom: 3px solid #FF4D4D;	
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 212px;
	min-height: 400px;
	/*background: #FF4D4D;*/
	
	/*	border: 1px solid red; */
}

nav {
	width: 100%;
	background: #FF4D4D;
	padding: 10px 10px 6px 0;
	/*	border: 1px solid green;*/
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
nav ul {
	list-style: none; /* this removes the list marker */
	/*border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
nav li {
	/*border-bottom: 1px solid #666; /* this creates the button separation */
}
nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 4px 5px 3px 10px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 200px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	font-size: 1em;
	text-decoration: none;
	/*background-color: #C6D580;*/
	color: #fff;
	text-transform: uppercase;
	text-align: right;
}
nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	/*background-color: #ADB96E;*/
	color: #333; /*#ed1c24;*/
	text-decoration: none;	
}

.sidebar1 .LogokSidebar {
	padding: 10px 5px;
}
.sidebar1 .LogokSidebar h1 {
	color: #0085b2;
	font-weight: normal;
	font-size: 15px;
	/*margin: 0px 0px 5px 0px;*/
}

.content_bg {
	width: 828px;
	float: right;
	background: #E6E6E6;
	/*	border: 1px solid black; */
}
.content {
	position: relative;
	padding: 8px 0 0 7px;
	font-size: 14px;
	line-height: 1.5em;
	min-height: 472px;
	text-align: justify;
	overflow: hidden;
}
.content p {
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.5em;
	text-align: justify;		
}
.content .oldalak {
	position: relative;
	background-color: #fff;
	border: 1px solid #cecece;	
	margin: 0 7px 7px 0;	
	overflow: hidden;
	padding: 10px;
	color: #333;
	font-size: 12px;
	line-height: 1.6em;
	letter-spacing: 0.04em;	
	/*height: 100vh;*/
	/*	border: 1px solid red;	*/
}
/* Home oldalra */
.content .oldalak .box {
	position: relative;
	float: left;
	width: 28%;
	padding: 10px;
	margin: 10px;
	border: 1px solid #E6E6DB;
}
.content .oldalak .box h1 {
	color: #0085b2;
	font-weight: normal;
}
.content .oldalak .box p {
	color: #666;
	font-size: 11px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	padding: 0 15px 15px 25px;
	overflow: hidden;
	text-align: justify;		
}
.content .oldalak .box .tovabb {
	text-align: right;
	width: 100%;
}
.content .oldalak .box .tovabb a {
	text-decoration: none;
	color: #36c5f6;
}
.content .oldalak p {
	color: #333;
	font-size: 12px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	padding: 0 15px 15px 25px;
	overflow: hidden;
	text-align: justify;		
}
.content .oldalak .kep {
	float: left;
	width: 160px;
	margin-top: 48px;
	padding: 10px;
}
.content .oldalak h1 {
	color: #0085b2;
	font-weight: normal;
	/*color: #ed1c24;*/
	font-size: 22px;
	margin: 10px 0 20px 0px;
}
.content .oldalak h2 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0 12px 0px;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.content h1 {
	color: #ed1c24;
	font-size: 22px;
	font-weight: bold;
	margin: 10px 0 20px 115px;
}
.content h2 {
	color: #000;
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0 12px 115px;
}
.content h3 {
	color: #000;
	font-size: 14px;
	font-weight: bold;
	margin: 10px 0 10px 115px;
}
.content p {
	color: #000;
	font-size: 13px;
	padding: 7px 20px 0 45px;	
	text-indent: 0px;
}
/*  utvonal */
.content .utvonal  {
	border: 1px solid #cecece;
	background-color: #fff;
	margin: 0 7px 6px 0;
	padding: 3px;
	
	color: #333;
	font-size: 11px;
	text-transform: lowercase;	
}
.content .utvonal a {
	color: #333;
	font-size: 11px;
	text-transform: lowercase;
}
/* Termekek */
.termekek_holder {
	position: relative;
	background-color: #fff;
	border: 1px solid #cecece;	
	margin: 0 7px 6px 0;	
	overflow: hidden;
	padding: 10px 10px 10px 10px;
	/*height: 100vh;*/

	/* szoveg formazasa */
	color: #666;
	font-size: 12px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	text-align: justify;
}
/* csoportok */
.termekek_holder .focsoport {
	position: relative;
	float: left;
	width: 179px;
	height: 240px;
	margin: 0px 4px 8px 4px;
	padding: 4px;
	background-color: #fff;
	border: 1px solid #cecece;	
	
}
.termekek_holder .focsoport .cim {
	margin: 10px 0 8px 0;
	text-align: center;
}
.termekek_holder .focsoport .cim a {
	color: #ed1c24; 
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}
.termekek_holder .focsoport .cim a:hover {
	color:  #0085B2; /*#FF4D4D;*/
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;	
}
.termekek_holder .focsoport a > img {
  display: block;
  max-width: 100%;
  /*termek kepek magassaga miatt kellett*/
  max-height: 110px;
}



/*  reszletek */
.termekek_holder .kep_holder {
	float: left;
	margin: 22px 20px 10px 0;
	padding: 3px 16px 10px 30px;		
	/*	border: 1px solid red;	*/
}
.termekek_holder .cim {
	margin: 20px 0 20px 0;
	/*	border: 1px solid blue;	*/
}
	.termekek_holder .cim h1 {
		color: #ed1c24;
		font-size: 19px;
		font-weight: normal;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}
.termekek_holder .ar {
	font-size: 15px;
	margin: 10px 0 20px 16px;
	font-weight: normal;
	color: blue;	
}
	.termekek_holder .ar span {
		font-weight: normal;
		color: #666;
	}
/*
.termekek_holder .leiras {
	position: relative;
	color: #666;
	font-size: 12px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	padding: 0 30px 30px 0;
	overflow: hidden;
	text-align: justify;
		border: 1px solid pink;	
}*/
/*ez a leiras */
.termekek_holder h2 {
	color: #0085b2;
	font-size: 15px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	margin: 0 5px 5px 5px;	
}
.termekek_holder p {
	margin: 0;
	padding: 0;
	color: #666;
	font-size: 12px;
	line-height: 1.6em;
	letter-spacing: 0.04em;
	text-align: justify;
}
.termekek_holder strong {
	font-weight: bold;
}

/* Contact */
.contact_jobb {
	position: relative;
	float: left;
	width: auto;
	/*	border: 1px solid red;	*/
}
.contact_bal {
	position: relative;
	float: right;
	width: auto;
	/*	border: 1px solid red;	*/
}

.footer_menu .menu {
	clear: both;
	position: relative;	
	margin: 0 auto;
	width: auto;
	height: 40px;
	padding-top: 10px;
	background: #fff;
	/*	border: 1px solid orange;	*/
}
.footer_menu ul.menu {
	list-style: none; /* this removes the list marker */
	padding-right: 40px;
	/*	border: 1px solid red;	*/
}
.footer_menu ul.menu li {
	float: right;
	margin: 0 17px 0 17px;
	/* this creates the button separation */
}
.footer_menu ul.menu a,.footer_menu ul.menu a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 4px 15px 4px;
	letter-spacing: 0.02em;
	display: block; 
	/*width: 90px;*/
	height: 10px;
	text-decoration: none;
	/*line-height: 14px;*/
	color: #cecece;
	text-align: center;
	font-size: 1em;
	font-weight: 500;
	text-transform: uppercase;
	/*	border: 1px solid red;	*/
}
.footer_menu ul.menu a:hover,.footer_menu ul.menu a:active,.footer_menu ul.menu a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FF4D4D;
	/*text-shadow: 1px 1px #333;*/
}
.footer_menu ul.menu .on {
	/*border-top: 3px solid #FF4D4D;	*/
	font-color: #666;
}
/* ~~ The footer ~~ */
footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	padding: 4px 0 10px 0;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}
footer p {
	color: #fff;
	font-size: 12px;
	text-align: center;
}
footer p a {
	color: lightblue;
}
footer p a:hover {
	color: #333;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
.clearfloat { /* this class can be placed on a <br /> or empty block element as the final element following the last floated block (within the .container) if the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}