@charset "utf-8";
/* CSS Document */

body {
	margin-left: 40px;
	margin-top: 0px;
	margin-right: 40px;
	margin-bottom: 0px;
	background-color: #333;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	color:#FFF;
	font-size:14px;
}
h1 {
	text-align:center;
	font-size:45px;
	/* árnyék szine, majd pedig az irányok megadása. lehet negativ érték is */
	text-shadow:#F60 2px 2px;
}
h2 {
	color:#0CF;
	text-shadow:#FFF 0px 1px;
	text-align:center;
	font-size:24px;
}
.round1, .round2, .round3 {
	background-color:#272727;
	padding:10px 10px 10px 10px;
	border:1px solid #FFF;
}
.round1 {
	/* megadjuk a szegélyek lekerekitésének mértékét px-ben */
	/* mozilla és webkit alapu böngészőkre */
    -moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.round2 {
	/* csak a megadott sarkokra érvényesül */
    -moz-border-radius-topleft: 15px;
	-webkit-border-top-left-radius:15px;
	-moz-border-radius-topright:15px;
	-webkit-border-top-right-radius:15px;
}
.round3 {
	-moz-border-radius-bottomleft: 15px;
	-webkit-border-bottom-left-radius:15px;
	-moz-border-radius-bottomright:15px;
	-webkit-border-bottom-right-radius:15px;
}

