@charset "UTF-8";

/* css reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin : 0;
	padding : 0;
	font-family: "Arial";
}
table {
	border-collapse : collapse;
	border-spacing : 0;
}
fieldset, img {
	border : 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style : normal;
	font-weight : normal;
}
ol, ul {
	list-style : none;
}
	caption, th {
	text-align : left;
}
h1, h2, h3, h4, h5, h6 {
	font-size : 100%;
	font-weight : normal;
}
q:before, q:after {
	content : '';
}
abbr, acronym {
	border : 0;
	font-variant : normal;
}
sup {
	vertical-align : text-top;
}
sub {
	vertical-align : text-bottom;
}
input, textarea, select {
	font-family : inherit;
	font-size : inherit;
	font-weight : inherit;
}
legend {
	color : #000;
}

/* site */
body {
	
}
html {
	height: 100%;
	background: rgb(244,244,244);
}

.login_bg {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	
	background: rgb(244,244,244); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(244,244,244,1) 0%, rgba(155,155,155,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,244,244,1)), color-stop(100%,rgba(155,155,155,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(155,155,155,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(155,155,155,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(244,244,244,1) 0%,rgba(155,155,155,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(244,244,244,1) 0%,rgba(155,155,155,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#9b9b9b',GradientType=0 ); /* IE6-9 */
	
	background-attachment: fixed;
}

.wrap {
	position: relative;
}

.loginform {
	background-color: #EFEFEF;
	padding: 30px 20px;
	width: 414px;
	margin: 50px auto 0;
	border-radius: 15px;
	border: 1px solid #c1c1c1;
	-moz-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, .6) inset;
  	-webkit-box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, .6) inset;
  	box-shadow: 0px 0px 10px 1px rgba(255, 255, 255, .6) inset;
	z-index: 10;
}
.loginform img {
	width: 140px;
}
.loginform a {
	text-decoration: none;

}
.loginform p {
	float: left;
}
.loginform fieldset {
	text-align: left;
	padding: 0 22px;
}
.loginform form {
	
	text-align: center;
}
.loginform p a {
	margin-right: 15px;
}
.titles {
	padding-top: 25px;
	
}
.titles span {
	line-height: 23px;
}
.h-line {
	background: url('../images/login/h-line.gif');
	height: 2px;
	border: 0;
	clear: both;
	margin: 20px 0;
}
.loginform label span, .loginform label a {
	font-size: 13px;
	font-family: "Arial";
	color: #7f7f7f;
	text-decoration: none;
}
.loginform label a:hover {
	text-decoration: underline;
}

/* login form */
.title_version {
	font-size: 18px;
	font-weight: bold;
	font-family: 'Arial';
	color: #b34c4c;
}
.title_admin {
	font-size: 15px;
	font-family: 'Arial';
	color: #8e8e8e;
}
.title_page {
	font-size: 22px;
	font-family: 'Arial';
	color: #8e8e8e;
}
.login-shadow {
	width: 591px;
	height: 37px;
	background: url('../images/login/shadow.png');
	margin: 40px auto 0 auto;
	z-index: 1;
}
input[type="text"], input[type="password"] {
	width: 360px;
	height: 40px;
	padding: 2px 5px;
	margin-bottom: 20px;
	background-color: white;
	border: 1px solid #cbcbcb;
	color: #7f7f7f;
}
input[type="text"]:hover, input[type="text"]:focus, 
input[type="password"]:hover, input[type="password"]:focus {
	border: 1px solid #ababab;
}
input[type="checkbox"] {
	vertical-align: middle;
}
input[type="submit"] {
	margin: 5px auto 25px;
	border: 1px solid #5e2323;
	border-radius: 6px;
	color: white;
	font-size: 20px;
	height: 42px;
	padding: 0 30px;
	cursor: pointer;
	display: inline-block;
	font-family: "Myriad Pro";

	-moz-box-shadow: 0px 2px 2px #7d7d7d; /* Firefox */
  	-webkit-box-shadow: 0px 2px 2px #7d7d7d; /* Safari, Chrome */
  	box-shadow: 0px 2px 2px #7d7d7d; /* CSS3 */
  	
  	text-shadow: 0px 2px 2px #5e2323;
	
	/* gomb háttér */
	background-position: top;
	background-image: url("../images/login/buttonbg.png");
	background-repeat: repeat-x;
	
	outline: 0;
}

input[type="submit"]:hover {
	background-position: bottom;
}

label.pswrd {
	float: right;
}

.errormsg {
	color: red;
	float: left;
	font-size: 13px;
}
.successmsg {
	color: green;
	float: left;
	font-size: 13px;
}