<!--
ELEMENTI CSS-a

1. CSS kao poseban file:
	u head tag unutar html-a staviš:
	
	<link rel="stylesheet" type="text/css" href="(url adresa .css filea)">

2. CSS unutar pojedinog html dokumenta
	u head tag html dokumenta staviš:
	<style type="text/css">
	<!--
	css komande
	-->
	</style>

3. CSS unutar pojedinog tag-a: (npr. za 'div' tag)
	<div style="font:arial; color:red">
	(css prestaje kad prestaje i taj tag unutar kojeg je napisan - ovdje 'div' tag)


	
****************************************

ELEMETI I NJIHOVE VRIJEDNOSTI:
------------------------------

font-size:10pt;  //u pt
font-family:arial;  //arial, verdana, helvetica, times,...
font-weight:medium;  //light, medium, bold,extra-light, extra-bold, demi-light, demi-bold
font-style:normal;  //normal, italic
line-height:11pt  //u pt - razmak između linija teksta
color:blue;  //ime ili #RRGGBB heksadecimalno
text-decoration:none;  //none, underline, italic, line-through
margin-left: 25pt;  //udaljenost teksta od lijevog ruba stranice, može i u cm i px
margin-right: 25pt;  //udaljenost teksta od desnog ruba stranice, može i u cm i px
margin-top: 25pt  //udaljenost teksta od gornjeg ruba stranice, može i u cm i px
text-align:left;  //left, right, center,justify
text-indent:20pt;  //uvlaka
background:yellow;  //boja pozadine, isto kao i boja teksta

*****************************************

-->



a:link  {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:#fc5c05;
	text-decoration:none;
	background:none;
}

a:active {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:#fc5c05;
	text-decoration:none;
	background:none;
}

a:visited {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:#fc5c05;
	text-decoration:none;
	background:none;
}

a:hover {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:#fc8505;
	text-decoration:underline;
	background:none;
}



a:link.text {font-size:12px;
	font-family:verdana;
	font-weight:bold;
	font-style:normal;
	line-height:19px;
	color:#fc5c05;
	text-decoration:none;
	text-align:left;
	background:none;
}

a:active.text {font-size:12px;
	font-family:verdana;
	font-weight:bold;
	font-style:normal;
	line-height:19px;
	color:#fc5c05;
	text-decoration:none;
	text-align:left;
	background:none;
}

a:visited.text {font-size:12px;
	font-family:verdana;
	font-weight:bold;
	font-style:normal;
	line-height:19px;
	color:#fc5c05;
	text-decoration:none;
	text-align:left;
	background:none;
}

a:hover.text {font-size:12px;
	font-family:verdana;
	font-weight:bold;
	font-style:normal;
	line-height:19px;
	color:#fc8505;
	text-decoration:underline;
	text-align:left;
	background:none;
}




body {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:black;
	text-decoration:none;
	margin-left:0pt;
	margin-right:0pt;
	margin-top:0pt;
	text-align:left;
	bgcolor:#4a9402;
}


p {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:black;
	text-decoration:none;
	margin-left: 00px;
	margin-right: 0px;
	margin-top: 0px;
	text-align:justify;
	text-indent:0px;
	background:none;
}

p.naslov {font-size:14px;
	font-family:verdana;
	font-weight:bold;
	font-style:bold;
	line-height:15px;
	color:white;
	text-decoration:none;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	text-align:justify;
	text-indent:10px;
	background:none;
}


p.crveni {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:#bbbb99;
	text-decoration:none;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
	text-align:justify;
	text-indent:0px;
	background:none;
}



table {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:black;
	text-decoration:none;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	text-align:left;
	text-indent:0pt;
	background:white;
}


font.bijeli {font-size:12px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:15px;
	color:black;
	text-decoration:none;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	text-align:left;
	text-indent:0pt;
	background:none;
}

H1 {font-size:14px;
	font-family:verdana;
	font-weight:medium;
	font-style:normal;
	line-height:26px;
	color:black;
	text-decoration:none;
	margin-left:0pt;
	margin-right:0pt;
	margin-top:0pt;
	text-align:left;
	text-indent:10pt;
	background:orange;
}

H2 {font-size:16px;
	font-family:arial;
	font-weight:medium;
	font-style:normal;
	line-height:11pt
	color:#00165f;
	text-decoration:none;
	margin-left: 0pt;
	margin-right: 0pt;
	margin-top: 0pt;
	text-align:left;
	text-indent:5px;
	background:none;
}
