/*
    Document   : _style
    Created on : 25.7.2011, 15:17:14
    Author     : e-invent
    Description:
        Purpose of the stylesheet follows.
*/

/*
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root {
    display: block;
}
html{
	background: lightblue;
	text-align: center;
	margin: 0;
}
body{
	margin: auto;
	width: 950px;
	font-size: 14px;
	font-family: verdana;
	text-align: left;
}
h1{
	text-align: center;
	color: brown;
	margin: 30px 0 40px 0;
	font-size: 30px;
}
h2{
	font-size: 20px;
	margin: 20px 0 20px 0;
	line-height: 30px;
}
p{
	line-height: 20px;
}
fieldset{
	border: 1px solid black;
	margin: 40px 0 40px 0;
	padding: 30px;
}
legend{
	font-size: 18px;
	color: brown;
	font-weight: bold;
}
hr{
	height: 0;
	border: 0;
	border-top: 1px solid black;
	margin: 20px 0 20px 0;
	clear: both;
}
input{
	float: none;
	margin-right: 10px;
}
label{
  float: left;
  margin: 5px 0 5px 0;
  width: 100%;
}

textarea{
  padding: 5px;
  width: 600px;
  height: 150px;
  color: rgb(80,80,80);
  font-family: verdana;
  font-size: 12px;
  border: 1px solid black;
  margin: 10px 0 20px 0;
}
p span{
  width: 130px;
  float: left;
  margin-top: 3px;
  color: black;
}
p input{
  width: 200px;
  border: 1px solid black;
  font-size: 13px;
  padding: 4px;
}
p#rok input{
  width: 40px;
}
p.red{
  color: red;
}