@charset "utf-8";
/* CSS Document */

body {
	font-family: Calibri, "Trebuchet MS", sans-serif;;
	font-size:14px;
	background: #910;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 5px;
	padding-bottom: 30px;
	text-align: center; /* this centers the kontejner in IE 5* browsers. The text is then set to the left aligned default in the #kontejner selector */
	color: #000000;
}

.stranica #kontejner {
	width: 975px;
	background: #910;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.stranica #heder {
	background: #910;
}
.stranica #heder h1 {
	margin: 0; /* zeroing the margin of the last element in the #heder div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* rastojanje ispod hedera */
}
h1, h3, h4, p {margin:0px;padding:0px;
}

h1 {
	font-size:18px;
	font-weight:bold;
	text-align:center;
	padding-top:10px;
}

h2 {
	font-size:16px;
	font-weight:bold;
	text-align:center;
	margin:0;
	padding:0;
}

h3 {
	font-size:14px;
	text-align:left;
	margin:15px 20px;
}

img {
	border:none;
}

.stranica #glavnikontejner {
	padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: url(pozadina.jpg);
	margin-left:10px;
	font-size:16px;
}
.stranica #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(pozadina.jpg);
	margin-left:10px;
}
.stranica #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.tekst1 {
	padding:20px 20px 10px 270px;
	text-align:left;
}
.tekst2 {
	padding:10px 15px;
	text-align:left;
}
A:link { 
	color: #000;
	text-decoration:none;
}
A:visited {
	color:#910;
}
A:hover {
	color:#910;
	text-decoration:underline;
}
A:active {
	color:#910;
} 
