/* @group Resetter */

* { margin: 0; padding: 0; }
html {
	font: 62.5%/1.5 Georgia, serif;
	text-align: center;
}
html, body { height: 100%; }

a img { border: 0; }

/* @end */

/* @group Basics */

body {
	color: #333;
	background: #d7ecf4 url(/images/css/body_bg.gif) repeat-y center;
	font: 12px/18px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
a:link {
	color: #003d94;
	text-decoration: underline;
}
a:visited {}
a:hover,
a:focus {
	color: #506bcb;
	text-decoration: none;
}
a:active {
	color: #000;	
}
h1, h2, h3, h4 {
	margin: 6px 0;
	font-weight: normal;
	color: #003d4c;
}
h1 {
	font-size: 24px; line-height: 36px;
	margin: 9px 0 12px; padding: 6px 0 0 0;
	border-bottom: 2px solid #2f2f2f;
}
h2 {
	color: #28505c;
	font-size: 21px;
	margin: 21px 0 9px 0; padding: 0 0 6px 0;
	border-bottom: 1px solid #ccc;
}
h3 {
	margin: 16px 0 9px 0;
	font-size: 18px;
}
h4 {
	color: #444;
	font-size: 16px;
	font-weight: normal;
}

p, li, td, th, dt, dd, pre, code {
	font-size: 12px;
}
p { margin: 3px 0 9px 0; }
ol, ul, li {
	margin: 0 12px;
}
dt { margin: 9px 0 0 0; font-weight: bold; }
dd { padding: 0 0 0 15px; }

abbr { border-bottom: 1px dotted black; }

/* @end */

/* @group Reusable */

.hidden { display: none; }

.center { text-align: center; }

.transparent {
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}

.clear { clear: both; }

.lFloat {
	float: left;
	margin: 0 18px 18px 0;
}
.lFloat2 {
	float: left;
	margin: 0 36px 18px 0;
}

.rFloat {
	float: right;
	margin: 0 0 18px 18px;
}
.rFloat2 {
	float: right;
	margin: 0 0 18px 36px;
}

.curved {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	behavior:url(border-radius.htc);
}

a.pdf {
	padding: 0 0 1px 21px;
	background: transparent url(/images/css/acrobat.png) no-repeat;
}
a:hover.pdf,
a:focus.pdf {
	color: #fff;
	background: #003d4c url(/images/css/acrobat.png) no-repeat;
}

.box {
	padding: 6px 12px;
	background: #f9f9f9;
	border: 1px solid #ccc;
}
.box .box {
	background: #eee;
	border: 3px solid #ddd;
}

ul.img {
	clear: both;
	list-style: none;
}
ul.img li {
	float: left;
	margin: 0 12px 12px 0; padding: 0;
}
ul.img li a {}
ul.img li a img {
	display: block;
	margin: 0; padding: 3px;
	border: 1px solid #ddd;
}
ul.img li a:hover img {
	padding: 4px;
	background: #8ce1f5;
	border: 0;
}

ul.album {
	overflow: hidden;
	margin: 10px 0 !important; padding: 0;
	list-style: none;
}
ul.album li {
	float: left;
	margin: 5px; padding: 0;
}
ul.album li a {
	display: block;
}
ul.album li a img {
	border: 4px solid #eee;
}
ul.album li a:hover img,
ul.album li a:focus img,
ul.album li a:active img {
 	border: 4px solid #6dcff6;
}


hr {
	margin: 12px 0;
	height: 0;
	color: #d6d4ce;
	background: #d6d4ce;
	border: 0;
	border-bottom: 1px dotted #d6d4ce;
}



/* @group Forme */

/* @group Osnovno */

form {
	width: 90%;
	overflow: hidden;
	margin: 12px 0; padding: 0;
	text-align: left;
}
form fieldset {
	margin: 0 0 24px 0;
	border: 1px solid #ccc;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}
form fieldset.buttons {
	margin: -12px 0 0 0;
	border: 0;
}
form fieldset legend {
	margin: 0 6px 12px 6px; padding: 3px 6px;
	color: #555;
	font-size: 18px;
	font-weight: bold;
}

/* @group Divs */

form div {
	clear: both;
	overflow: hidden;
	margin: 0; padding: 6px 12px;
	vertical-align: text-top;
	border-bottom: 1px dotted #ddd;
}
form div div,
form div.wrapper {
	margin: 0; padding: 0;
	border: 0;
}
form div.wrapper div {
	margin: 6px 0;	padding: 6px 12px;
	border-bottom: 1px dotted #ddd;
}
form div.wrapper div.wrapper {
	margin: 0; padding: 0;
	border: 0;
}
form div.wrapper div.wrapper div {
	margin: 6px 0;	padding: 6px 12px;
	border-bottom: 1px dotted #ddd;
}
form div:last-child {
	border: 0;
}

/* @end */

/* @group Labels */

form div label,
form div p.label {
	display: block;
	float: left;
	width: 160px;
	margin: 0; padding: 3px 12px 3px 0; /* zbog paddinga inputa! */
	position: relative;
	font-size: 14px;
}
form div.inline label {
	display: inline;
	width: auto;
	margin: 0 6px 0 0;
}
form div.required label {
	color: #333;
	font-weight: bold;
}
form div.required label em {
	position: absolute;
	right: 6px;
	font-style: normal;
}

/* @end */

form p.info {
	margin: 0 12px 12px 12px;
}

form div p.note {
	margin: 3px 0 3px 172px;
	font-size: 12px;
	color: #666;
}

/* @group Inputs & Buttons */

input[type=text],
input[type=password],
input[type=file],
textarea,
select {
	width: 240px;
	margin: 1px 0 0 0; padding: 2px;
	font-size: 12px; line-height: 18px;
	background: #fff;
	border-top: 1px solid #8e8e8e;
	border-left: 1px solid #cdcdcd;
	border-right: 1px solid #cdcdcd;
	border-bottom: 1px solid #e3e3e3;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	vertical-align: middle;
}
textarea {
	width: 320px; height: auto;
}
select {
	width: auto;
	margin: 3px 0 1px; padding: 0;
}
option {
	padding: 0 3px;
}
form div.inline input[type=text],
form div.inline input[type=password],
form div.inline input[type=file],
form div.inline select {
	display: inline;
	width: auto;
	margin: 0 3px 0 0;
}

/* hover */
input[type=text]:hover,
input[type=password]:hover,
input:hover[type=file],
textarea:hover,
select:hover { background: #fffdd1; }

/* focus */
input[type=text]:focus,
input[type=password]:focus,
input:focus[type=file], textarea:focus,
select:focus { background: #c3e8ff; }

/* disabled */
input[disabled=disabled],
input:hover[disabled=disabled] { color: #000; background: #ccc; }

/* buttons */
button,
input[type=button],
input[type=submit],
input.submit,
div.submit input,
a.button {
    display: block;
    float: left;
    margin: 0; padding: 6px; /* Links */
    font-size: 14px;
    font-weight: bold;
    line-height: 19px;
	text-decoration: none;
    color: #565656;
    background: #f5f5f5;
    border: 1px solid #bbb;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 5px;
	vertical-align: middle;
}

input[type=submit]:hover,
input.submit:hover,
div.submit input:hover,
button:hover, button:focus,
a.button:hover, a.button:focus {
	color: #c53948;
	background: #fbe3e4;
    border: 1px solid #bbb;
    cursor: pointer;
}

/* @end */

/* @group save, cancel */

/* sačuvaj */
button.save,
.buttons a.save,
input[type=submit].save,
.buttons a.cancel,
button.cancel {
    padding: 6px 9px 6px 34px;
    font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
    font-weight: normal;
    color: #000;
	background: url(/images/css/forme/save_cancel.png) no-repeat 0 center;
	border-top: 1px solid #b0b0b0;
	border-left: 1px solid #b0b0b0;
	border-right: 1px solid #7c7c7c;
	border-bottom: 1px solid #7c7c7c;
	letter-spacing: 1px;
}
button.save:hover,
.buttons a.save:hover,
input[type=submit].save:hover {
    color: #004700;
	background: #e6efc2 url(/images/css/forme/save_cancel.png) no-repeat -300px center;
    border: 1px solid #bdce77;
    border-bottom: 1px solid #83a777;
    border-right: 1px solid #83a777;
}
.buttons a.save:active {
    color: #fff;
    background-color: #529214;
    border: 1px solid #529214;
}

/* cancel */
.buttons a.cancel,
button.cancel {
	margin: 0 0 0 12px;
	background: url(/images/css/forme/save_cancel.png) no-repeat -600px center;
}
.buttons a.cancel:hover,
button.cancel:hover {
    color: #810000;
	background: #f1d9d9 url(/images/css/forme/save_cancel.png) no-repeat -900px center;
    border-top: 1px solid #e39695;
    border-left: 1px solid #e39695;
    border-right: 1px solid #b7595b;
    border-bottom: 1px solid #b7595b;
}
.buttons a.cancel:active {
    border: 1px solid #d12f19;
}

/* @end */

/* @group Greške */

div.error {
	background: url(/images/css/forme/uf_error.png);
}
div.error label,
div.error p.label {
	color: #cc0000;
}
div.error input[type=text],
div.error input[type=passsword],
div.error input[type=file],
div.error textarea,
div.error select {
	border: 1px solid red;
}

/* @end */

input.form-error { border: 1px solid red; }
div.error-message {
	margin: 0 0 0 180px; padding: 9px 0 6px 0;
	font-size: 12px;
	font-weight: bold;
	color: red;
}

/* @end */

/* @end */

/* @group Sekretarica */

/* @group Pojedinačno */

div.greska,
div.upozorenje,
div.uspeh,
div.poruka {
	margin: 20px 0;
	padding: 5px 15px 5px 32px;
	background: #ffd2dc url(/images/css/poruke/greska_bg.gif) no-repeat 9px 9px;
	border: 1px solid #efc3ce; border-width: 1px 1px 3px 1px;
}
div.greska p,
div.upozorenje p,
div.uspeh p,
div.poruka p {
	margin: 3px 12px;
	line-height: 24px;
	font-weight: bold;
}
div.greska p {
	color: #ab0000;
}
div.upozorenje {
	background: #ffea93 url(/images/css/poruke/upozorenje_bg.gif) no-repeat 9px 9px;
	border-color: #eed983;
}
div.uspeh {
	color: #524606;
	background: #fffdd1 url(/images/css/poruke/uspeh_bg.gif) no-repeat 9px 9px;
	border-color: #f0f0c5;
}
div.poruka {
	background: #eaeaf3 url(/images/css/poruke/poruka_bg.gif) no-repeat 9px 9px;
	border-color: #d9d9e1;
}

/* @end */



/* @group Grupno */

#greske, #uspesi, #upozorenja, #poruke {
	margin: 20px 0;
	padding: 5px 15px 5px 32px;
	background: #ffd2dc url(/images/css/poruke/greske_bg.gif) no-repeat 9px 9px;
	border: 1px solid #efc3ce; border-width: 4px 1px;
}
#greske h2, #uspesi h2, #upozorenja h2, #poruke h2 {
	margin: 10px 0 15px 25px;
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #444;
}
#greske ul, #uspesi ul, #upozorenja ul, #poruke ul {
	margin: 12px 20px;
}
#greske li, #uspesi li, #upozorenja li, #poruke li {
	color: #ab0000;
	font-size: 12px;
	line-height: 18px;
	list-style: square;
}

#upozorenja {
	background: #ffea93 url(/images/css/poruke/upozorenja_bg.gif) no-repeat 9px 9px;
	border-color: #eed983;
}
#upozorenja li { color: #333; }

#uspesi {
	background: #fffdd1 url(/images/css/poruke/uspesi_bg.gif) no-repeat 9px 9px;
	border-color: #f0f0c5;
}
#uspesi li { color: #524606; }

#poruke {
	background: #eaeaf3 url(/images/css/poruke/poruke_bg.gif) no-repeat 9px 9px;
	border-color: #d9d9e1;
}
#poruke li { color: #333; }

/* @end */





/* @end */


/* @end */

/* @group Layout */

#wrapper {
	position: relative;
	width: 940px;
	min-height: 100%;
	margin: 0 auto;
	text-align: left;
}
/* za IE */
* html #wrapper { 
	height: 100%;
}

/* @group Header */

#header {
	height: 140px;
	background: url(/images/css/header_bg.jpg);
}

#logo {
	position: absolute; top: 10px; left: 25px;
	width: 140px; height: 120px;
}
#logo a {
	display: block;
	width: 140px; height: 120px;
	padding: 0 3px 0 0;
	text-indent: -99em;
}
#logo a:hover {
	padding: 0;
	background: transparent;
}

#logo h3 {
	margin: 0;
}

#sticky {
	position: absolute; top: 0; right: -60px;
	width: 190px; height: 190px;
	background-image: url(/images/css/sticky.png);
}

/* @end */

#centralWrapper {
	margin-top: 10px;
	padding-bottom: 40px; /* za futer! */
}
#sidebar {
	float: left;
	width: 190px;
}

/* @group Nav */

#navDummyTop,
#navDummyBottom {
	height: 10px;
	background: url(/images/css/nav_top_bottom_bg.gif);
	border: 1px solid #939393; border-width: 0 0 1px 0;
}
#navDummyBottom {
	background-position: 0 -10px;
	border-width: 1px 0 0 0;
}

#nav {
	margin: 0; padding: 0;
	list-style: none;
	border: 1px solid #d5d5d5; border-width: 1px 0;
}
#nav li {
	margin: 0;
}
#nav a {
	display: block;
	width: auto;
	padding: 0 12px;
	text-decoration: none;
	color: #eee;
	background: #2f2f2f;
	border-bottom: 1px solid #3b3b3b;
	font: 12px/28px "Lucida Grande", Lucida, Verdana, sans-serif;
}
#nav a:focus, #nav a:hover, #nav a:active {
	background: #871717;
}
#nav li.current a {
	color: #fff;
	background: #c00;
}

/* @end */

/* @group subNav */

ul.buttons {
	overflow: hidden;
	margin: 0;
	list-style: none;
}
ul.buttons li {
	float: left;
	height: 28px;
	margin: 0 6px 0 0; padding: 0;
	background: url(/images/css/buttons/sivi_gumb_levo.gif) no-repeat;
}
ul.buttons li a {
	display: block;
	height: 26px;
	margin: 0 0 0 13px; padding: 0 14px 2px 1px;
	line-height: 26px;
	color: #fff;
	text-decoration: none;
	background: url(/images/css/buttons/sivi_gumb.gif) no-repeat right top;
}
ul.buttons li:hover,
ul.buttons li.hover {
	background: url(/images/css/buttons/sivi_gumb_levo.gif) no-repeat 0 -28px;
}
ul.buttons li:hover a,
ul.buttons li a:hover {
	background: transparent url(/images/css/buttons/sivi_gumb.gif) no-repeat right -28px;
}
ul.buttons li.current {
	background: transparent;
}
ul.buttons li.current a {
	font-size: 14px;
	font-weight: bold;
	margin-left: 0; padding-left: 0;
	text-decoration: none;
	color: #000;
	background: transparent;
	border: 0;
}


/* @end */



#sidebar h4 {
	margin: 12px 0 6px;
	text-align: center;
}

#supportedBy,
#sponsoredBy,
#conferenceFriends,
#conferenceExhibitors {
	margin: 10px 0;
	text-align: center;
	list-style: none;
}

#supportedBy li,
#sponsoredBy li,
#conferenceFriends li,
#conferenceExhibitors li {
	margin: 10px 0;
}

#content {
	width: 720px;
	margin: 0 0 0 200px; padding: 0 10px 20px 10px;
}

#footer {
	display: none;
	height: 40px;
	margin-top: -40px;
}
#footer p {
	margin: 0;
}

/* @end */

/* @group Tables */
caption {
	margin: 9px 0;
	font-size: 14px;
}
table {
	margin: 9px 0 12px 0;
	color: #333;
	border-collapse: collapse;
}
th {
	padding: 3px 6px;
	font-size: 12px;
	text-align: center;
	color: #fff;
	background-color: #939393;
	border: 1px solid #757575; border-width: 1px 1px 3px 1px;
	border-left: 1px solid #939393;
	border-right: 1px solid #939393;
}
th a {
	display: block;
	padding: 3px 6px;
	text-decoration: none;
}

th a:hover {
	background-color: #ccc;
	color: #333;
	text-decoration: none;
}
table.horizontal th {
	border-width: 1px;
}
table th.blank, table td.blank {
	background: transparent;
	border: 0;
}
td {
	padding: 3px 6px;
	border: 1px solid #ddd; border-width: 1px;
}
tr.nepar td { background: #fff; }
tr.par td {	background: #eff0df; }
tr:hover td { background: #d8e4ee; }

td.rb {
	text-align: center;
}

td.actions {
	text-align: center;
	white-space: nowrap;
}
td.actions a {
	display: inline;
	margin: 0px 6px;
}

/* @end */

/* @group Tooltip */

#tooltip {
	position: absolute;
	z-index: 3000;
	padding: 6px 12px;
	text-align: left;
	background-color: #111;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius-topleft: 0;
	-webkit-border-top-left-radius: 0;

	filter: alpha(opacity=85);
	-moz-opacity: 0.85;
	-khtml-opacity: 0.85;
	opacity: 0.85;

}
#tooltip h3 {
	margin: 0;
	font-size: 12px;
	color: #fff;
}
#tooltip div {
	color: #ccc;
}

/* @end */



/* @group Po stranama */

p.img img {
	padding: 2px;
	background: #fff;
	border: 4px solid #ddd;
}

.hotel_zvezdice {
	position: relative; top: 10px;
	font-size: 32px;
}

/* @end */

