@charset "utf-8";
/* CSS Document */

body  {
	font: 14px "Comic Sans MS";
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.tartalom #container { 
	width: 1020px;  /* this will create a container 80% of the browser width */
	height: 800px;
	background: url(../images/rect.png) no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.tartalom #header {
	padding: 10px 10px 0 0;
	border-bottom: 1px solid;
	margin: 0 50px 0 40px;
} 
.tartalom #header h1 {
	margin: 10px 0 0 50px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 25px 35px 15px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align:right;
	font-family:"Comic Sans MS";
	color: #336;
	background: url(../images/vkpt_logo.png) no-repeat;
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.tartalom #sidebar1 {
	float: left; 
	width: 23%; /* since this element is floated, a width must be given */
	height:520px;
	padding: 25px 10px 0 20px; /* top and bottom padding create visual space within this div  */
	margin-left: 10px; 
	margin-right: 10px;

}
.tartalom #sidebar1 h3 {
	margin-left: 10px; 
	margin-right: 10px;
	border-bottom: 1px solid;
}

 #forum {
	width: 200px;
	position:absolute;
	top: 560px;
	
}


 #felirat {
	width: 74%;
	/*position:absolute;*/
	top: 30px;
	left: 250px;
	margin-bottom: 20px;
	font: 12px "Comic Sans MS";
}

/*Apró tartalmi elemek formázásai:*/

abbr {
	font-style: italic;
	color: #737aa3;	
}


/*Oldalsó menü grafikus linkje:*/

#graflink {
	padding: 50px 0 0 0;
	background: url(../images/bogancs_logo.png) 		    no-repeat;
	text-align: right;
}


/* Általános oldalak tartalma*/

.tartalom #mainContent { 
	margin: 2px 30px 0 0; 
	height: 535px;
	overflow: auto;
	text-align:justify;
	padding-right: 5px;
} 

.tartalom #mainContent h1 {
	font-size: 24px;
} 

.tartalom #mainContent h2 {
	font-size: 18px;
} 

.tartalom #mainContent h4 {
	font-size: 18px;
	margin-right: 300px;
	border-bottom: 1px solid;
}

.tartalom #mainContent h6 {
	font-size: 1px;
	margin-right: 300px;
	border-bottom: 1px solid;
}

/*Kép és táblakicsinyítő stílusok*/
/*#mainContent table {
	width: 80%;
	/*height: 80%;
}*/

/*index oldal bele*/

.tartalom #indexContent {
	background:url(../images/index_hatter.png) no-repeat; 
	margin: 2px 30px 0 0; 
	height: 550px;
	overflow: auto;
	text-align:justify;
	padding-right: 5px;
} 

.tartalom #indexContent h1 {
	font-size: 24px;
} 

.tartalom #indexContent h2 {
	font-size: 18px;
} 

.tartalom #indexContent h4 {
	font-size: 18px;
	margin-right: 300px;
	border-bottom: 1px solid;
	margin-bottom: 35px;
	margin-top: 25px;
}

/*Lábléc - footer - formázása*/

#mediadij {
	width: 281px;
	position:absolute;
	top: 660px;
	left: 850px;

}


.tartalom #footer { 
	font-size:11px;
	padding: 0;
	height: 85px;
	border-top: 1px solid;
	margin: 2px 55px 0 40px;
	background: url(../images/webpaca_logo_kicsi.png) no-repeat left center;

} 
.tartalom #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 30px 290px 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: right;
	color:#336;
	font-size:11px;

}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/*linkek stílusai:*/

a.linknavi {
	font-size: 14px;
	color: #737aa3;
	text-decoration: none;
}

a.linknavi:link {
	color: #737aa3;
	text-decoration: none;
}

a.linknavi:visited {
	text-decoration: none;
	color: #737aa3;
}

a.linknavi:hover {
	text-decoration: underline;
	color: #737aa3;
}

a.linknavi:active {
	text-decoration: underline;
	color: #737aa3;
	}
	
a.linknavi:focus {
	text-decoration: underline;
	color: #737aa3;
	}
	
	
a.linknavipiros {
	font-size: 14px;
	color: #cc0000;
	text-decoration: none;
}

a.linknavipiros:link {
	color: #cc0000;
	text-decoration: none;
}

a.linknavipiros:visited {
	text-decoration: none;
	color: #cc0000;
}

a.linknavipiros:hover {
	text-decoration: underline;
	color: #cc0000;
}

a.linknavipiros:active {
	text-decoration: underline;
	color: #cc0000;
	}
	
a.linknavipiros:focus {
	text-decoration: underline;
	color: #cc0000;
	}

/*index oldal link stílusai:*/

a.linkindex {
	font-size: 14px;
	color: #336;
	text-decoration: underline;
}

a.linkindex:link {
	color: #336;
	text-decoration: underline;
}

a.linkindex:visited {
	text-decoration: underline;
	color: #336;
}

a.linkindex:hover {
	text-decoration: none;
	color: #737aa3;
}

a.linkindex:active {
	text-decoration: none;
	color: #737aa3;
	}
	
a.linkindex:focus {
	text-decoration: none;
	color: #737aa3;
	}

a.linkfooter {
	font-size: 12px;
	color: #336;
	text-decoration: underline;
}

a.linkfooter:link {
	color: #336;
	text-decoration: underline;
}

a.linkfooter:visited {
	text-decoration: underline;
	color: #336;
}

a.linkfooter:hover {
	text-decoration: none;
	color: #737aa3;
}

a.linkfooter:active {
	text-decoration: none;
	color: #737aa3;
	}
	
a.linkfooter:focus {
	text-decoration: none;
	color: #737aa3;
	}	
	
	
	
		
 
[if IE]>
/* place css fixes for all versions of IE in this conditional comment */
.tartalom #sidebar1 { padding-top: 30px; }
.tartalom #mainContent { zoom: 1; padding-top: 15px; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

