@charset "utf-8";
/* CSS Document */
body {
		font-size: 14px; /* Base font size: 14px */
		font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
		line-height: 1.429;
	background-color: #e5e5e5;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #FFFFFF;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 180px;
	background-color: #EADCAE;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 960px;
	float: left;
	background-color: #FFFFFF;	
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background-color: #ADB96E;
	color: #FFF;
}


/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}
#slikewrapper { width: 960px; background-color:#FFF }
.slike { 
	float:left;
	display:block;
	vertical-align:midle;
	width:192px;
	height:52px;
 }
/* ====================== START lista sektora ====================== */
ul.lista { 
list-style-type:none; padding-left: 21px; padding-bottom:25px; border:0px solid #e0dcdc; height:160px; overflow:hidden; border-radius: 10px; -moz-border-radius:10px; -webkit-border-radius:10px;}
ul.lista li { display:block; float:left; padding:5px; width:90px; height:130px; border:1px solid #e4e4e4; border-radius:5px;}

/* ====================== END Lista sektora ====================== */ 
/* ====================== START HEADER ====================== */
#topbar{background-color:#edecec;padding:0 10px;}
#topbar ul{list-style:none;margin:0;}
#topbar ul li{display:inline-block; font-size:10px; margin:8px 0px 6px; }
#topbar ul li a, #topbar ul li a:visited{color:#898787;}
#topbar ul li a:hover{color:#2c2b2b;text-decoration:none;}
#topbar ul.topbar_links {float:right;}
#topbar .theme_breadcumb {float:left;line-height:32px;font-size:0.8em;margin:0;font-family:'Droid Sans', sans-serif !important;}
#topbar .theme_breadcumb a {color:#656363;}
#topbar .theme_breadcumb a.current {color:#2c2b2b;}          
#topbar .theme_breadcumb a:hover {color:#000;}      
#topbar .theme_breadcumb a.no-link {cursor:default;}    


#mojmeni ul li a { margin:0 }
#mojmeni ul li { margin:0 }
#mojmeni ul { margin:0 }
#mojmeni { margin:0; padding:0; }
#mojmeni {  
z-index:100;
		font-size: 14px; /* Base font size: 14px */
		font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
		background-color: #FFF; /*background of menu bar (default state)*/
		width: 960px;
		height:20px;
		padding:8px 0px;
		color: FFF;
 }
#mojmeni ul { list-style-type:none;}
#mojmeni ul li {z-index:100;position:relative; display: inline; float:left;}
#mojmeni ul li a{
z-index:100;
background: #FFF; /* bala pozadina za sidro*/
padding: 8px 20px;
color: #3399CC;
text-decoration: none;
}
#mojmeni ul li a:link { color:#000 }
#mojmeni ul li a:visited  { color:#000}
#mojmeni ul li a:hover {background: #6699CC; color: #FFF;}
#mojmeni ul li a:selected {background: #6699CC; color: #FFF;}
.hr {
background: #6699CC  no-repeat scroll center;
width:960px;
height:5px;
}

div.hr hr {
display: none;
}
footer {
	padding: 10px 0;
	background-color: #C4C4C4;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

#footer {background:#C4C4C4; font-size:0.857em;}

/* widgets */
#footer .footer-main .widget { float:left; width:172px; margin:20px 1.06% 0; }   
#footer .widget h3 { margin:0 0 1em; color:#454545; font-size:14px; font-weight:normal; }
.cufon-delicious #footer .widget h3 { letter-spacing:-1px; }
#footer .widget ul { margin:0; list-style:none; }
#footer .widget ul li a, #footer p { color:#767778; }
#footer .widget ul li a { line-height:2em; }
#footer .widget ul li a:hover { color:#000; }
#footer .hentry-post { margin-bottom:1.4em; }
#footer .title { font-size:14px; color:#414243 !important; margin:0; float:none; width:auto; font-weight:bold; }
#footer .title:hover {color:#000 !important;}
#footer p { margin-top:0.4em; line-height:1.429em; color:#1c1c1c; font-size:14px; }
#footer .recent-posts {padding-left:0;}         
#footer .widget_flickrRSS img, #footer .slickr-flickr-gallery img{background-color:#C0BEBE;border:1px solid #FFFFFF;border-radius:6px 6px 6px 6px;display:block;float:left;height:50px;margin:0 12px 12px 0;padding:3px;width:50p}  
#footer .widget_flickrRSS img:hover, #footer .slickr-flickr-gallery img:hover {background:#eee;}
#footer .recent-post p.post-date {background:url('images/time-icon.png') left center no-repeat;color:#656363;font-size:0.9167em;padding-left:20px;margin:0;}   
#footer .last-news .box-post .box-post-body {margin-left:0;} 


#footer.columns-4 .footer-main .widget { width:22.872%; }


#copyright{background-color:#a09f9f;}
#copyright p {margin:0; padding:13px 20px; font-size:12px; color:#131313; line-height:27px; }

#copyright a, #copyright a:visited{color:#000; text-decoration:none;}
#copyright a:hover{color:#fff;}
/* ====================== END FOOTER ====================== */  
.event {
	clear: both	
}


.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	border: 0;
	margin: 0;
	outline: none;
	padding: 0;
	vertical-align: top;
}
.fancybox-wrap {
	left: 0;
	position: absolute;
	top: 0;
	z-index: 8020;
}
.fancybox-skin {
	background: #f9f9f9;
	border-radius: 4px;
	color: #444;
	moz-border-radius: 4px;
	position: relative;
	text-shadow: none;
	webkit-border-radius: 4px;
}
.fancybox-opened {
	z-index: 8030;
}
.fancybox-opened .fancybox-skin {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer, .fancybox-inner {
	position: relative;
}
.fancybox-inner {
	overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
	webkit-overflow-scrolling: touch;
}
.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}
.fancybox-image, .fancybox-iframe {
	display: block;
	height: 100%;
	width: 100%;
}
.fancybox-image {
	max-height: 100%;
	max-width: 100%;
}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('images/fancybox_sprite.png');
}
#fancybox-loading {
	background-position: 0 -108px;
	cursor: pointer;
	left: 50%;
	margin-left: -22px;
	margin-top: -22px;
	opacity: 0.8;
	position: fixed;
	top: 50%;
	z-index: 8060;
}
#fancybox-loading div {
	background: url('images/fancybox_loading.gif') center center no-repeat;
	height: 44px;
	width: 44px;
}
.fancybox-close {
	cursor: pointer;
	height: 36px;
	position: absolute;
	right: -18px;
	top: -18px;
	width: 36px;
	z-index: 8040;
}
.fancybox-nav {
	background: transparent url('images/blank.gif');
	cursor: pointer;
	height: 100%;
	position: absolute;
	text-decoration: none;
	top: 0;
	webkit-tap-highlight-color: rgba(0,0,0,0);
	width: 40%;
	z-index: 8040;
}
.fancybox-prev {
	left: 0;
}
.fancybox-next {
	right: 0;
}
.fancybox-nav span {
	cursor: pointer;
	height: 34px;
	margin-top: -18px;
	position: absolute;
	top: 50%;
	visibility: hidden;
	width: 36px;
	z-index: 8040;
}
.fancybox-prev span {
	background-position: 0 -36px;
	left: 10px;
}
.fancybox-next span {
	background-position: 0 -72px;
	right: 10px;
}
.fancybox-nav:hover span {
	visibility: visible;
}
.fancybox-tmp {
	left: -99999px;
	max-height: 99999px;
	max-width: 99999px;
	overflow: visible !important;
	position: absolute;
	top: -99999px;
	visibility: hidden;
}
.fancybox-lock {
	overflow: hidden;
}
.fancybox-overlay {
	background: url('images/fancybox_overlay.png');
	display: none;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 8010;
}
.fancybox-overlay-fixed {
	bottom: 0;
	position: fixed;
	right: 0;
}
.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}
.fancybox-title {
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	visibility: hidden;
	z-index: 8050;
}
.fancybox-opened .fancybox-title {
	visibility: visible;
}
.fancybox-title-float-wrap {
	bottom: 0;
	margin-bottom: -35px;
	position: absolute;
	right: 50%;
	text-align: center;
	z-index: 8050;
}
.fancybox-title-float-wrap .child {
	background: rgba(0, 0, 0, 0.8);
	background: transparent;
	border-radius: 15px;
	color: #FFF;
	display: inline-block;
	font-weight: bold;
	line-height: 24px;
	margin-right: -100%;
	moz-border-radius: 15px;
	padding: 2px 20px;
	text-shadow: 0 1px 2px #222;
	webkit-border-radius: 15px;
	white-space: nowrap;
}
.fancybox-title-outside-wrap {
	color: #fff;
	margin-top: 10px;
	position: relative;
}
.fancybox-title-inside-wrap {
	padding-top: 10px;
}
.fancybox-title-over-wrap {
	background: #000;
	background: rgba(0, 0, 0, .8);
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 10px;
	position: absolute;
}
/* ====================== END fancy ====================== */  
* {margin: 0; padding: 0;}
 
#musluge {
  margin: 20px;
}
 
#musluge ul {
  list-style-type: none;
  width: 500px;
}
 
#musluge h3 {
  font: bold 20px/1.5 Helvetica, Verdana, sans-serif;
}
 
#musluge li img {
  float: left;
  margin: 0 15px 0 0;
}
 
#musluge li p {
		font-size: 14px; /* Base font size: 14px */
		font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
		line-height: 1.429;
}
 
#musluge li {
  padding: 10px;
  overflow: auto;
}
 
#musluge li:hover {
  background: #eee;
  cursor: pointer;
}
/* CSS Document */
* {margin: 0; padding: 0;}
 
#osnivanje {
  margin: 20px;
}
 
#osnivanje ul {
  list-style-type: none;
  width: 500px;
}
 
#osnivanje h3 {
  font: bold 20px/1.5 Helvetica, Verdana, sans-serif;
}
 
#osnivanje li img {
  float: left;
  margin: 0 15px 0 0;
}
 
#osnivanje li p {
		font-size: 14px; /* Base font size: 14px */
		font-family: 'Trebuchet MS', Trebuchet, 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
		line-height: 1.429;
}
 
#osnivanje li {
  padding: 10px;
  overflow: auto;
}
 
#osnivanje li:hover {
  background: #eee;
  cursor: pointer;
}
/* ====================== START SIDEBAR ====================== */
#sidebar {
	float: right;
	width: 250px;
	background-color: #FFF;
	padding-bottom: 10px;
}
#sidebar .last-news .box-post.thumbnail .box-post-body {width:55%;}
#sidebar h3 {font-size:1.71em;}
#sidebar a {color:#090807;}
#sidebar .widget ul {margin:0;list-style:none;font-size:13px;}
#sidebar .widget a { color: #615C5C }
#sidebar .widget a:hover { color: #000 }
#sidebar .widget ul.children { list-style-image: url('images/icons/ruz.png'); list-style-position: inside; }
#sidebar .widget li { line-height: 23px; color: #636060; line-height: 26px; }
/* ====================== END SIDEBAR ====================== */   
/* ====================== START CONTACT FORM ====================== */                 
#content .contact-form { margin-top:30px; width:104%; }   
#content .contact-form fieldset {padding:0;}          
#content .contact-form ul { margin:0; list-style:none; }  
#content .contact-form li { width: 44.2%; float: left; margin: 0 5% 2% 0; }
#content .contact-form li.on-left { float:left; }
#content .contact-form li.on-right { float:right; }
#content .contact-form li.full { clear:both; }
#content .contact-form li.full label { display: block }  
#content .contact-form li.textarea-field { clear:both; width:auto; float:none; }
#content .contact-form li.text-field input, #content .contact-form li.checkbox-field input, #content .contact-form li.file-field input, #content .contact-form li select, #content .contact-form li textarea { border:1px solid #cecbcb; margin-top:10px; padding:10px; }
#content .contact-form li.text-field input, #content .contact-form li select { font-size: 12px; background-color:#fff; width:97.5%; }
#content .contact-form li select { padding:10px; }
#content .contact-form li textarea {  width:97%; height:150px; background-color:#fff; } 
#content .contact-form li.icon input, #content .contact-form li.icon textarea, #content .contact-form li input.icon, #content .contact-form li textarea.icon { background-repeat:no-repeat; } 
#content .contact-form li.icon input, #content .contact-form li input.icon { background-position:98% center; }
#content .contact-form li.icon textarea, #content .contact-form li textarea.icon { background-position: 98% 15px; }
#content .contact-form li.error input, #content .contact-form li.error textarea, #content .contact-form li.error select,
#content .contact-form li input.error, #content .contact-form li textarea.error, #content .contact-form li select.error { background-image:url('images/icons/error.png'); border:1px solid #cf0606; } 
#content .contact-form li.success input, #content .contact-form li.success textarea, #content .contact-form li.success select,
#content .contact-form li input.success, #content .contact-form li textarea.success, #content .contact-form li select.success { background-image:url('images/icons/success.png'); }                     
#content .contact-form li div.msg-error { font-style:normal; font-size:11px; color:#cf0606; height:14px; }    
#content .contact-form li.submit-button {clear:both; width:auto; float:none;}      
#content .contact-form li.checkbox-field label, #content .contact-form li.radio-field label { display: block; }
#content .contact-form li.submit-button input {
    background: url("images/input_pattern.png") repeat-x scroll 0 0 #F3F0F0;
    border: 1px solid #D5D4D4;
    cursor: pointer;
    display: block;
    font-size: 9px;
    height: 30px;
    letter-spacing: 1px;
    padding: 0 4px;
    text-transform: uppercase;
    margin:0;
    
}
#content .contact-form li.submit-button input:hover { background: url("images/input_pattern_hover.png") repeat-x scroll 0 0 #fff; }
#content .contact-form li.submit-button input[disabled] { color:#ddd; }
#content .contact-form label, #content .contact-form input, #content .contact-form textarea { color:#4c4c4c; width:auto; }
#content .contact-form p.success, #content .contact-form p.error { padding:10px 15px 10px 55px; border:1px solid; margin:0 auto 30px; background:no-repeat 15px center; width:400px; }
#content .contact-form p.success { background-color:#effea9; border-color:#d7ee6e; color:#839607; background-image:url('images/icons/tick_contact.png'); }
#content .contact-form p.error   { background-color:#fedccd; border-color:#fa8c83; color:#c82c1f; background-image:url('images/icons/error.png'); }
#yiw_bot {display:none !important;}

/* submit alignment */
.contact-form li.submit-button input.alignleft { float:left; }
.contact-form li.submit-button input.alignright { float:right; }
.contact-form li.submit-button input.aligncenter { margin:0 auto; }

/*border-radius*/
#content .contact-form p.success, #content .contact-form p.error { border-radius:8px; -moz-border-radius:8px; -webkit-border-radius:8px; }
/* ====================== END CONTACT FORM ====================== */ 
/* ====================== Map start ====================== */ 
#map-canvas {
		width: 960px;
        height: 500px;
        margin: 0px;
        padding: 0px;
}
/* ====================== Map end ====================== */ 
/* Extras */

.clear{clear:both;} 
.left{float:left;}
.right{float:right;}
.nomargin{margin:0}
.nopadding{padding:0} 
.for-mobile {display:none !important;}
