/* Fő tartalmi elemek formázása*/
/*****************************************************************/
/*A teljes oldalra vonatkozó formai előírások*/
body{
	font-family: sans-serif;
	line-height: 1.3em;
	background-color: Black;
}

/*Címsorok és az űrlap LEGEND eleme*/
h1, h2, legend{
	font-family: serif;
	text-align: center;
}

/*A h1, h2 és a legend elemek eltérő formátumokat is tartalmaznak - 
ezeket külön-külön kell megadni*/
h1{
	font-size: 3em;
	color: Red;
	line-height: 1.1em;
}

h2{
	font-size: 2em;
	line-height: 1.15em;
}

legend{
	padding: 15px 5px 20px 5px;
	border: 2px solid gray;
	font-weight: bold;
	font-size: 2em;
	color: gray;
}

/*Minden felsoroláshoz ergy pipa képet rendelünk */
ul{
	list-style-image: url("pipa.gif");
}

/*A felsorolás LI elemei alatt egy kis helyet hagyunk ki*/
li{
	margin-bottom: 1.3em;
}

/* Esetleges idézetek*/
.quot{
	font-style: italic;
	color: Gray;
	width: 80%;
	border-left: thick solid Gray;
	margin-left: 100px;
	margin-top: 80px;
	padding-left: 15px;
}

/*A képeket középre igazítjuk*/
img{
	margin: 0 auto;
	display: block;
}

/*Az űrlap többi elemeinek a formátuma*/
label{
	line-height: 1.5;
}

fieldset{
	width: 80%;
	padding: 10px 20px 20px 10px;
	border: 1px solid gray;
	margin: auto;
}

input {color: #191955;}
/*Input:focus azt jelenti, hogy aktív az adott beviteli mező*/
input:focus{background: #faf5a8;}

/*Az ID stílusok meghatározásai*/
#main{
	width: 688px;
	margin: 0 auto;
	padding: 0px;
}

#header{
	height: 64px;
	background: url("header.jpg") no-repeat top left;
}

#footer{
	height: 70px;
	background: url("footer.jpg") no-repeat top left;
}

#content{
	background: url("bg.jpg") repeat-y top left;
	padding: 10px 50px 10px 50px;
}

#leftbox {
	width: 40%;
	float: left;
	text-align: right;
	margin-right: 10px;
	margin-top: 20px;
	color: #191955;
}

#rightbox {
	float: left;
	margin-top: 20px;
	width: 40%;
}

#submit{background: #faf5a8; display: block; margin: 0 auto;}


/*A CLASS stílusok meghatározásai*/
.normal{
	margin: 1.5em 2em 1.5em 2em;
}

.felkover{
	font-weight: bold;
	color: Red;
}

.kiemelt{
	background-color: Yellow;
}

.vastagkiemelt{
	background-color: Yellow;
	font-weight: bold;
}

.vastagszines{
	font-weight: bold;
	color: Red;
}

.keretes{
	margin: 30px 40px 30px 40px;
	padding: 20px;
	border: medium dashed Gray;
	background-color: white;
}

.kereteshatter{
	margin: 30px 40px 30px 40px;
	padding: 20px;
	border: thin solid Gray;
	background-color: #f8f8f8;
}

.jobbra{
	float: right;
}

.balra{
	float: left;
}

.footertext{
	padding: 20px 50px 0px 40px;
}
.kislink{
	font-size: 0.8em;
	color: Yellow;
}

.kislink a{
		color: Yellow;
}

#mypopup{
	position: absolute;
	width: 425px;
	height: 350px;
	display: none;
	background: white;
	border: thin solid gray;
	line-height: 1.2em;
}

#closebutton{
	float: right;
	width:50px;
	height: 50px;
}

a img{
	border: none;
}

