html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
html {
	height: 100%;
}
header, nav, section, article, aside, footer {
	display: block;
}
body {
	font: 12px/18px Tahoma, Arial, Verdana, sans-serif;
	width: 100%;
	height: 100%;
}
a {
	color: blue;
	outline: none;
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
p {
	margin: 0 0 18px
}
img {
	border: none;
}
input {
	vertical-align: middle;
}

/* umolchanie */
#wrapper {
	width: 1000px;
	margin: 0 auto;
	min-height: 100%;
}
#middle {
	width: 100%;
	padding: 0 0 100px;
	height: 1%;
	position: relative;
}
#middle:after {
	content: '.';
	display: block;
	clear: both;
	visibility: hidden;
	height: 0;
}
#footer {
	width: 1000px;
	margin: -50px auto 0;
	height: 50px;

	position: relative;
}
/* dvijenie */
.move{
	display: inline-block;
	outline: 0;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	transition-duration: 0.25s;
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: transform;
	-webkit-transform: scale(1) rotate(0);
	-moz-transform: scale(1) rotate(0);
	-o-transform: scale(1) rotate(0);
	transform: scale(1) rotate(0);
}
.move:hover   {  
	text-decoration: none;
	-webkit-transform: scale(1.05) rotate(-0deg);
	-moz-transform: scale(1.05) rotate(-0deg);
	-o-transform: scale(1.05) rotate(-0deg);
	transform: scale(1.05) rotate(-0deg);
	z-index:10;
}
.move:nth-child(2n):hover {
	-webkit-transform: scale(1.05) rotate(0deg);
	-moz-transform: scale(1.05) rotate(0deg);
	-o-transform: scale(1.05) rotate(0deg);
	transform: scale(1.05) rotate(0deg);
	z-index:10;
}

/* sistem mesage */
div#system-message-container dl#system-message dt{
	display: none;
}

div#system-message-container dl#system-message dd{
	color: #333333;
	font-family: Tahoma, Helvetica, Verdana, sans-serif;
	font-weight: normal;
	font-size: 18px;
}
div#system-message-container dl#system-message ul{
	list-style: none;
}

div#system-message-container dl#system-message dd.message.message{
	background: none repeat scroll 0 0 #F6F1DC;
	border: 1px solid #659865;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	color: #659865;
	margin: 30px;
	padding: 30px;
}
div#system-message-container dl#system-message dd.warning.message{
	background: none repeat scroll 0 0 #f6f1dc;
	border: 1px solid #e3dbbd;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	margin: 30px;
	padding: 30px;
	color: #777777;
}

div#system-message-container dl#system-message dd.error.message{
	background: none repeat scroll 0 0 #F6F1DC;
	border: 1px solid #E20000;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	color: #E20000;
	margin: 30px;
	padding: 30px;
}

span.successful{
	color:green;
	font-weight: bold;
}
span.error{
	color: #E20000;
	font-weight: bold;
}

div.error{
	background: #cccccc;
	border: 1px solid #000000;
	border-radius: 10px 10px 10px 10px;
	box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	color: #E20000;
	margin: 30px;
	padding: 30px;
}