@charset "utf-8";
/* CSS Document */

#doboz {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
#fejlec {
	background-color: #CCC;
	height: 200px;
	width: 1000px;
}
.menusor {
	background-color: #000;
	width: 1000px;
}
.menupont {
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 18px;
	text-transform: uppercase;
	color: #000;
	background-color: #FF9;
	text-align: center;
	float: left;
	width: 200px;
}
.tartalom {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #000;
	background-color: #666;
	width: 1000px;
}
.hirek {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #FFF;
	background-color: #000;
	float: left;
	width: 500px;
}
.info {
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #000;
	background-color: #CCC;
	text-align: justify;
	width: 400px;
	margin-right: auto;
	margin-left: auto;
}
#lablec {
	font-family: "Lucida Console", Monaco, monospace;
	font-size: 18px;
	text-transform: uppercase;
	color: #FFF;
	background-color: #000;
	text-align: center;
	clear: both;
	width: 1000px;
}
.lablecszoveg {
	font-family: "Lucida Console", Monaco, monospace;
	font-size: 18px;
	color: #FFF;
	background-color: #F00;
	text-align: center;
	float: left;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
}
.lablecgomb {
	font-family: "Courier New", Courier, monospace;
	font-size: 18px;
	color: #F00;
	background-color: #000;
	text-align: center;
	float: left;
	width: 200px;
}

.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}