/* CSS Document */


.cssform p{
width: 400px;
clear: left;
margin: 0;
padding: 3px 0 7px 155px; /*width of left column containing the label elements*/
border-top: 1px dashed gray;
height: auto;
}

.cssform label{
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}
.cssform input,textarea{ /*width of text boxes. IE6 does not understand this attribute*/
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:12px;
}
.cssform option,select{ /*width of text boxes. IE6 does not understand this attribute*/
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:11px;
width: 70px;
}

.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 280px;
}
.cssform input[type="password"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 280px;
}

.cssform input[type="submit"]{ /*width of text boxes. IE6 does not understand this attribute*/
	border: 1px #003366 solid;
	background-color:#9AB4C1;
	width: 110px;
	font-weight: bold;
}
.cssform input[type="button"]{ /*width of text boxes. IE6 does not understand this attribute*/
	border: 1px #003366 solid;
	background-color:#CDDAE0;
	width: 110px;
	font-weight: bold;
}

.cssform textarea{
width: 340px;
height: 120px;
}
.slikaudr {
float:right;
}
/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix{
margin-left: 3px;
}
.opcije {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}
.obavezno {
	font-weight: bold;
	color: #990000;
	background-color: #FFFFCC;
}
.cssform .focused{
  background:#FFDFDF;
  font-weight:bold;
	border: 1px #003366 solid;
 
}