/* 
 *  Table Of Sections
 *
 *  1. Reset
 *  2. Basic Elements
 *  3. Generic Classes
 *  4. Header
 *  5. Content
 *  6. Sidebar
 *  7. Footer
 *  8. Navigation
 *  9. Forms
 * 10. Modules
 * 11. Print styles
 *
 */

@media screen, projection {

	/* Reset  - do NOT modify!
	-------------------------------------*/
	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td,
	article, aside, canvas, details, embed, 
	figure, figcaption, footer, header, hgroup, 
	menu, nav, output, ruby, section, summary,
	time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}
	/* HTML5 display-role reset for older browsers */
	article, aside, details, figcaption, figure, 
	footer, header, hgroup, menu, nav, section {
		display: block;
	}
	body {
		/*line-height: 1;*/
	}
	ol, ul {
		list-style: none;
	}
	blockquote, q {
		quotes: none;
	}
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	/* Basic Elements
	-------------------------------------*/
	html, body { height: 100%; }

	body {
		font-family: 'Noto Serif', cambria, serif;
		font-size: 62.5%; /* 1em = 10px */
		/*line-height: 1.5em;*/
		color: #333;
		background-color: white;
		background: url('../images/backgrounds/body-bg.png') no-repeat center center fixed;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}
	
	strong { font-weight: bold; }
	
	em { font-style: italic; }
	
	#container {
		max-width: 1210px;
		margin: 0 auto;
		background-color: #f9f9f9;
		box-shadow: 0px 0px 40px -5px #888;
		overflow: hidden;
	}

	.no-padding {
		padding-left: 0px;
		padding-right: 0px;
	}
	
	.no-margin {
		margin-left: 0px;
		margin-right: 0px;
	}
	
	h1, h2 { 
		font-family: 'Merriweather', serif;
		font-style: italic;
	}
	
	img.content-photo { max-width: 100%; }
	
	/* Generic Classes
	-------------------------------------*/

	/* --- News list --- */

	.cnt-list .date {  }

	.cnt-list .title { padding-left: .3em; }

	.cnt-list .subtitle {
		display: block;
		width: 100%;
		padding-left: 1em;
		font-size: .9em;
	}
	
	#text-content-container ul.cnt-list.with-date li {
		list-style:none;	
	}

	/* --- News list --- */

	.news-list { width: 98%; }
	
	.news-list li {
		float: left; /* float clearer */
		font-size: 1.4em;
		width: 100%;
	}
	
	.news-list li a { color: #5e5e5e; }

	.news-list .title { 
		display: block;
		clear: both;
	}

	.news-list .date {
		background: #d3d3d3;
		margin: 14px 0px 2px;
		float: left;
		padding: 3px 4px;
		border-radius: 1px;
	}
	
	.news-list .date.important { 
		background: #d35a2b; 
		color: #fff;
	}

	.news-list .category {
		font-style: italic;
	}

	.news-list a:link, .news-list a:visited, .news-list a:hover, .news-list a:active {  }

	.news-list a:visited {  }

	.news-list.news-archive li {
		list-style-type: none !important;
	}

	.link-list {
		float: left; 
		width: 100%;
	/* 	position: absolute;
		bottom: 0px; */
		margin-top: 30px;
	}
	
	.link-list a {
		font-size: 14px;
		color: #5e5e5e;
		text-decoration: underline;
	}
	
	.link-list a.archive { margin-left: 30px; }

	/* --- Photo list --- */

	.photo-list dt {
		clear: both;
		float: right;
		width: 350px;
	}


	.photo-list dd.picture {
		float: left;
		width: 147px;
	}

	.photo-list dd.summary {
		float: right;
		width: 350px;
	}

	.photo-list dd.clearer { margin-bottom: 20px; }

	#photo-list-lead-image {
		float: left;
		margin: 0 10px 3px 0;
	}


	/* --- Messages --- */

	.error {
		display: block;
		color: #B90000;
		font-weight: bold;
		margin: 1em 0
	}

	.notice {
		display: block;
		color: #00A600;
		font-weight: bold;
		margin: 1em 0
	}


	/* --- photo frame & content photos --- */

	.photo-frame {
		position: relative;
		padding: .3em;
		margin-bottom: .7em;
		background-color: white;
		-webkit-box-shadow: 1px 1px 4px #AAAAAA;
		border-radius: 3px;
		-webkit-border-radius: 3px;
	}

	.photo-frame-left {
		float: left;
		margin-right: .7em;
	}

	.photo-frame-right {
		float: right;
		margin-left: .7em;
	}

	#text-content-container .photo-frame p {
		padding: 0.7em 0 0.5em 0;
		font-size: .85em;
		font-weight: normal;
		line-height: 115%;
		overflow: hidden;
		color: #606060;
	}

	img.content-photo {	padding: .2em 10px; }

	.photo-frame .content-photo { padding: 0; }


	/* --- Other --- */

	img.left {
		float: left;
		padding-left: 0
	}

	img.right {
		float: right;
		padding-right: 0
	}

	/* use to clear floats */
	.clearer {
		clear: both;
		display: block;
		height: 1px;
		margin-bottom: -1px;
		font-size: 1px;
		line-height: 1px
	}

	.hidden { display: none }
	
	.break-word { word-wrap: break-word; }
	
	.group:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}

	/* Header
	-------------------------------------*/
	#header-wrapper {
		min-height: 180px;
		width: 100%;
		background: url('../images/backgrounds/header-bg.png') left -10px repeat-x;
		position: relative;
	}
	
	#header {
		width: 100%;
		height: 130px;
		margin-left: 95px;
		background: url('../images/backgrounds/mill.png') 550px 11px no-repeat;
		border-bottom: 1px solid #e6e6e6;
	}
	
	#header h1, #header em {
		position: relative;
		margin-top: 15px;
		margin-left: -95px;
		z-index: 2;
		float: left;
		display: block;
		height: 115px;
		width: 690px
	}
	
	#header h1 a:link, #header h1 a:visited, #header h1 a:hover, #header h1 a:active,
	#header em a:link, #header em a:visited, #header em a:hover, #header em a:active {
		display: block;
		width: 100%;
		height: 100%;
		background: url('../images/backgrounds/logo.png') left top no-repeat;
		text-indent: -9999px;
		overflow: hidden;		
	}

	#search { width: 100%; }
	
	#search-mini-form { width: 100%; } 

	#search-mini-form p { float: left }

	#input-search-mini {
		display: block;
		width: 100%; /* should be 100% */
		border: 1px solid #c0c9dc; 
		/*background: #879DCD;*/
		border-radius: 0px 0px 0px 4px;
		color: #fff;
		padding: 3px 20px 0px 13px;
		font-size: 1.5em;
		line-height: 1.5;
	}
	
	#search-mini-form input.input-submit {
		text-indent: -9999px;
		background: url('../images/backgrounds/icons/search.png') no-repeat;
		background-size: 37px;
		border: none;
		width: 37px !important;
		height: 37px !important;
		position: absolute;
		bottom: -7px;
		right: -20px;
	}

	/* Content
	-------------------------------------*/

	#content {
		max-width: 1080px;
		border-top: 1px solid #438719; 
		margin: 0px 35px 0px 96px;
		color: #332;
	}
	
	#body-content #content { 
		background: #fff; 
		border: none;
		margin-bottom: 40px;
	}
	
	/* entry-rows */
	
	#row1 {
		width: 100%;
		padding-top: 2px;
		margin-top: 2px;
		border-top: 1px solid #e6e6e6; 
		clear: both;
	}
	
	#row1 #quick-wrap{ padding: 23px 0px 0px 25px; }
	
	/* Recomemnded */
	
	#recomended {
		background: #eee;
		margin-top: 23px;
		/* height: 500px 
		background: #dbdbdb;*/
	}
	
	#lead-wrap { 
		overflow: hidden;
/* 		background: #F9F9F9; */
		background: #fff;
		padding-bottom: 1px;
	}
	
	#recomended img, .lead { max-width: 100% !important; }
	
	.lead-text {
		background: #fff;
		padding: 7px 10px 20px;
		font-size: 14px;
		color: #888;
		line-height: 1;
	}
	
	.lead-text h2 { 
		background: #fff;
		line-height: 0.9;
		font-weight: 700;
		letter-spacing: -1px;
		padding: 7px 0px;
		font-size: 23px;
		color: #333;
	}
	
	#lead-titles { padding: 25px 10px; }
	
	#lead-titles a { 
		border-top: 1px solid #5e5e5e;
		padding-top: 3px;
		line-height: 1.1;
		font-size: 1.3em;
		display: block;
		color: #5e5e5e;
		cursor: pointer;
		margin-bottom: 40px
	}
	
	#lead-titles a:hover, #lead-titles a.cycle-pager-active { 
		color: #d35a2b;
		border-top: 1px solid #d35a2b;
	}
	
	.lead-date {
		width: 100%;
		background: #333;
		height: 26px;
	}
	
	.lead-date span { 
		float: right;
		padding: 3px 15px;
		font-size: 14px;
		color: #a3a3a3;
	}
	
	.lead-date span:before { 
		content: url('../images/backgrounds/icons/cal-small.png');
		opacity: 0.6;
	}
	
	/* Entry Quick Links */
	
	#qlinks { 
		background: #f5f5f5;
		border: 1px solid #e6e6e6; 
		height: 461px;
		padding: 30px 20px;
	}
	
	#qlinks img { float: left; }
	
	#qlinks-wrap {
		float: left;
		max-width: 220px;
		margin-left: 12px
	}
	
	.qlink { 
		/*margin: 7px 0px 10.4px;*/
		margin: 7px 0px 12.4px;
		display: block; 
		font-family: 'Merriweather', serif;
		/* text-transform: lowercase; */
		letter-spacing: -1px;
		color: #438719;
		font-size: 2em;
		/*font-style: italic;*/
		line-height: 1;
	}
	
	/* Latest news */
	
	.side-icon, .side-icon2 {
		position: absolute;
		left: -61px;
		top: 32px;
	}
	
	.side-icon2 { 
		top: 6px;
		left: -57px;
	}
	
	#row2 { 
		width: 100%;
		padding-bottom: 70px;
		position: relative;
	}
	
	.news-wrap { margin: 24px 3px 0px; }	
	
	.news-wrap h2, #footer h2 {
		border-top: 1px solid #e6e6e6; 
		border-bottom: 4px double #e6e6e6; 
		height: 50px;
		padding: 17px 0px;
		font-size: 2.2em;
		color: #767676;
		font-weight: 300;
		margin-bottom: 4px;
	}
		
	.news-wrap.col-1 h2 { color: #d35a2b; }
	
	
	/* A very special colum */
	.news-wrap.col-4 h2 { 
		color: #438719;
		padding: 12px 5px;
	}
	
	.news-wrap.col-4 h2:before { content: url('../images/backgrounds/icons/calendar.png'); } 

	.col-4 .news-list li {
		background: url('../images/backgrounds/icons/list-puck2.png') no-repeat 5px 2px;
		padding-left: 30px;
	}
	
	/* ------ */
	
	.news-wrap img { max-width: 100%; }
	
	#body-entry #text-content-container h2 {
		margin-bottom: .5em;
		font-size: 1.6em
	}

	#body-content h1 {
		font-size: 2.4em;
		color: #fff;
		padding: 15px 20px;
		background: #385caf;
		margin-bottom: 20px;
		/* line-height: 0.9; */
		line-height: 1;
	}

	#text-content-container {
		padding: 0px 30px 30px;
		margin-bottom: .7em;
		font-size: 1.4em;
	}

	#text-content-container p {
		padding-bottom: 1em;
		line-height: 1.4;
	}

	#text-content-container a:link, #text-content-container a:visited, #text-content-container a:hover, #text-content-container a:active {
		
	}

	#text-content-container a:visited {  }

	/* external link */
	#text-content-container a.external {
		padding-right: 12px;
		background: url('../images/backgrounds/icons/external-link.gif') 100% 65% no-repeat;
	}

	img.content-photo { max-width: 100%; }
	
	/* --- video --- */

	span.video-placeholder {
		clear: both;
		padding: .7em 0px .7em 0px;
		display: block;
	}


	/* --- unsorted list --- */

	#text-content-container ul { padding-bottom: 1em; }
	#text-content-container ul ul { margin-left: 1.5em; padding-top: 1em;}

	#text-content-container ul li {
		margin-bottom: .3em;
		list-style-type: disc;
		list-style-position: outside;
		margin-left: 17px;
	}


	/* --- numbered list --- */

	#text-content-container ol {}

	#text-content-container ol li {
		margin-bottom: .3em;
		list-style-type: decimal;
		list-style-position: outside;
		margin-left: 17px;
	}


	/* --- Attachments list --- */

	#text-content-container ul.attachments-list li { list-style-type: none; }


	/* --- tables --- */

	/*#text-content-container table th {
		padding: .3em .5em;
		/* border: 1px solid #999; */
		/*font-weight: bold;
		text-align: left;
	}

	#text-content-container table td {
		padding: .3em .5em;
		border: 1px dotted #bbb;
	}

	#text-content-container table caption {
		margin-bottom: .3em;
		text-align: left;
		font-weight: bold;
	}*/


	/* --- Icons in content --- */

	#text-content-container a.lipdf {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/pdf.gif) 0% .2em no-repeat;
	}

	#text-content-container a.lidoc {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/doc.gif) 0% .2em no-repeat;
	}

	#text-content-container a.lixls,
	#text-content-container a.lixlsx {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/xls.gif) 0% .2em no-repeat;
	}

	#text-content-container a.lippt {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/ppt.gif) 0% .2em no-repeat;
	}

	#text-content-container a.lizip {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/zip.gif) 0% .2em no-repeat;
	}

	#text-content-container a.liai {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/ai.gif) 0% .2em no-repeat;
	}

	#text-content-container a.liexe {
		padding: .2em 0 .1em 19px;
		background: transparent url(../images/exe.gif) 0% .2em no-repeat;
	}

	#text-content-container a.liimage {
		padding: .2em 0 .1em 19px;
		/*background: transparent url(../images/file.gif) 0% .2em no-repeat;*/
		background: transparent url(../images/pdf.gif) 0% .2em no-repeat;
	}


	/* --- Search results --- */

	#search-main-form { margin-bottom: 1em }

	#text-content-container .search-results-row a:link, #text-content-container .search-results-row a:visited, #text-content-container .search-results-row a:hover, #text-content-container .search-results-row a:active {
		font-size: 1.1em;
		font-weight: bold;
		color: black;
	}

	#text-content-container .search-results-row a:visited { color: #666 }

	.search-results-url {
		display: block;
		width: 100%;
		font-style: italic;
		font-size: .9em;
		word-break: break-all;
		color: green;
	}
	
	/*#text-content-container ul.pagging {
		float: left;
		width: 100%;
		padding-bottom: 40px;
	}
	
	#text-content-container ul.pagging li {
		float: left;
		list-style-type: none;
	}
	
	#text-content-container ul.pagging li a:link, #text-content-container ul.pagging li a:visited, #text-content-container ul.pagging li a:hover, #text-content-container ul.pagging li a:active {
		text-decoration: none;
		padding: 5px 5px 4px 5px;
		background: #606060;
		border: 1px solid #333;
		color: white;
	}
	
	#text-content-container ul.pagging li.active a:link, #text-content-container ul.pagging li.active a:visited, 
	#text-content-container ul.pagging li.active a:hover, #text-content-container ul.pagging li.active a:active,
	#text-content-container ul.pagging li a:hover{ 
		background: #8B9FCE;
		/* color: #222; */
	}*/


	/* --- Photogallery --- */

	#photo-gallery-container { 
		float: left;
		width: 100%;
		margin: 1em 0;
	}

	.photo-gallery-item {
		position: relative;
		float: left;
		width: 145px;
		padding: 7px;
		margin-right: 7px;
		margin-bottom: 7px;
		-webkit-box-shadow: 1px 1px 4px #AAAAAA;
		/* border-radius: 3px;
		-webkit-border-radius: 3px; */
		text-align: center;
		background: #DDE3F1;
	}

	.photo-gallery-item img.photo-gallery { margin: 0 auto }

	#text-content-container .photo-gallery-item p {
		margin-top: .7em;
		text-align: left;
		line-height: 1.1;
		font-size: .95em;
		overflow: hidden;
	}

	.photo-gallery-item p strong { display: block }


	/* --- News --- */

	#text-content-container .date {
		padding-bottom: 0; 
/* 		background: #d3d3d3;
		color: #5e5e5e;
		display: inline; */
	}

	#text-content-container .date em {
		font-style: normal;
		font-weight: bold;
	}

	#text-content-container .category { padding-bottom: 0 }

	#text-content-container .category em {
		font-style: normal;
		font-weight: bold;
	}

	#text-content-container .abstract {
		padding-top: .5em;
		font-style: italic;
		color: #555;
		display: block;
	}

	/* --- Gids Archive --- */

	#gids-list tr td, #gids-paging tr td { border: none; }
	
	#gids-list tr { 
		line-height: 1;
		border: none;
		font-size: 14px;
		padding: 7px 2px;
		display: block;
		background: #f5f5f5;
	}
	
	#gids-list tr:nth-child(2n) { background: #fff; }
	
	#gids-paging tr td { 
		margin-top: 10px;
		list-style: none !important;
		padding: 5px 10px;
		float: left;
		background: #eee;
		border-right: 1px solid #ddd;
	}
	
	#gids-paging tr td.current { background: #385CAF; color: #fff; }
	
	#gids-list tr td:last-child { color: #bbb !important; }
	
	#back-to-list a {
		background: #385CAF;
		padding: .3em .7em;
		color: #fafafa;
	}


	/* --- calendar --- */

	#calendar-table { border-collapse: collapse; }

	#calendar-table th {
		color: #333;
		font-weight: normal;
		text-transform: uppercase;
	}

	#calendar-table td {
		width: 2.2em;
		padding: .6em 0 .8em 0;
		border: .1em solid white;
		text-align: center;
		line-height: 0;
		background-color: white;
		color: #333;
		cursor: default;
	}

	#calendar-table td.week-selector {
		border: none;
		background-color: transparent;
	}

	#calendar-table .day-existing {	background-color: #eee }

	#calendar-table .day-empty { background-color: white }

	#calendar-table .day-existing,
	#calendar-table .day-empty {
		padding: 1.2em 0 0.9em 0;
	}

	#calendar-table td.day-event { background-color: #808080 }

	#calendar-table .day-event.day-today {
		background-color: #B90000;
		padding: 0;
	}

	#calendar-table .day-today span {
		display: block;
		color: white
	}

	#calendar-table .day-selected {
		background-color: #808080;
		color: white
	}

	#calendar-table .single-event { /* padding: 0; */ }

	#calendar-table a:link, #calendar-table a:visited, #calendar-table a:hover, #calendar-table a:active {
		padding: .5em .5em .3em .5em;
		text-decoration: none;
		color: white
	}

	#calendar-month-switcher {
		font-size: 1.15em;
		margin-top: .5em;
		display: block
	}

	a#cal-prev-month:link, a#cal-prev-month:visited, a#cal-prev-month:hover, a#cal-prev-month:active,
	a#cal-next-month:link, a#cal-next-month:visited, a#cal-next-month:hover, a#cal-next-month:active {
		
	}

	/* --- employees-list --- */
	
	#employees-list h2 {
		border-bottom: 1px solid #385CAF;
		margin: 30px 0px 10px;
		padding: 1px 0px;
		font-style: normal;
		color: #385CAF;
		font-size: 17px;
	}
	
	#employees-list h3 {
		cursor: pointer;
		line-height: 1.1;
		font-size: 15px;
		color: #555;
		font-weight: bold;
		padding-bottom: 0.7em;
	}
	
	#employees-list h3:before { content: url('../images/backgrounds/icons/arrow-d.png'); }
	#employees-list h3.down:before { content: url('../images/backgrounds/icons/arrow-r.png'); }
	
	#employees-list p { 
		font-size: 14px;
		padding-left: 22px;
	}
	
	/* --- kijz --- */
	
	#kijz tr td:first-child { 
		color: #B3C0DE;
		background: #4362A8;
	}
	
	#kijz tr td:first-child a { color: #fff; } 
	
	#kijz tr td { text-align: center; font-size: 14px; } 
	
	/* --- sharing --- */

	#sharing {
		width: 100%;
		float: left;	
	}

	#sharing li {
		margin-top: 6px;
		width: 49.5%;
		float: left;
		font-size: 1.15em;
	}

	#facebook { background: url(../images/social_media/facebook.png) no-repeat; }

	#twitter { background: url(../images/social_media/twitter.png) no-repeat; }

	#linkedin { background: url(../images/social_media/linkedin.png) no-repeat; }

	#delicious { background: url(../images/social_media/delicious.png) no-repeat; }

	#sharing a:link, #sharing a:visited, #sharing a:hover, #sharing a:active {
		padding-left: 22px;
	}

	/* Bread crumbs */

	#breadcrumbs { 
		padding: 7px 20px 4px;
		font-size: 1.2em;
		display: block;
		width: 100%;
		background: #F9F9F9;
	}
 		
	/* --- bussiness card --- */

	.business-card {
		position: relative;
		margin-bottom: 1.5em;
		padding: .5em .5em .5em 0px;
		font-size: 1.2em;
		float: left;
		color: #5a5a5a;
	}

	p.email a:link, p.email a:visited, p.email a:hover, p.email a:active { 
		color: #5a5a5a; 
		text-decoration: underline;
	}

	.business-card .tel,
	.business-card .tel2 {
		margin-top: 1em;
	}

	.business-card p.email {margin-top: 1em; }
	
	
	/* --- guestbook --- */
	
	#text-content-container .guestbook-list dt p { padding-bottom: 0; }
	
	#text-content-container .guestbook-list dt p.name { font-weight: bold; }
	
	#text-content-container .guestbook-list dt p.date { font-style: italic; }
	
	#text-content-container .guestbook-list dd {
		clear: left;
		padding: 1em 0 1.5em 0;
		background: url(../images/backgrounds/hor-separator.png) no-repeat bottom center;
		margin-bottom: 1.5em;
	}
	
	
	/* --- sys menu ---*/
	
	#sysmenu {
		position: relative;
		margin-left: 5px;
		margin-top: 10px;
	}

	#sysmenu li {
		position: relative;
		float: left;
		width: 13px;
		height: 12px;
		margin-right: 10px;
	}

	#sysmenu li a {
		position: relative;
		float: left;
		width: 13px;
		height: 12px;
		text-indent: -9999px;
		background: transparent url(../images/sprites/sprites-sysmenu.gif) 0 0 no-repeat;
	}

	#sysmenu li.sys-home a {
		background-position: -5px 0px;
	}

	#sysmenu li.sys-print a {
		background-position: -29px 0px;
	}

	#sysmenu li.sys-contact a {
		background-position: -54px 0px;
	}

	#sysmenu li.sys-sitemap a {
		background-position: -77px 0px;
	}

	#sysmenu li.sys-credits a {
		background-position: -75px 0px;
	}
	
	#sysmenu li.sys-fav a {
		background-position: -101px 0px;
	}


	/* --- News --- */

	#news .news-list { font-size: 1.15em }

	#news .link-list {
		float: left;
		
		font-size: 1.15em;
	}

	/* Footer
	-------------------------------------*/
	#footer-wrap { 
		background: url('../images/backgrounds/footer-bg.png') left bottom repeat-x, #fff;
		clear: both;
		width: 100%;
		padding-bottom: 15px;	
	}

	#footer {
		max-width: 1080px;
		margin: 0px 35px 0px 96px;
	}
		
	#subfooter { border-top: 1px solid #3a5ba4; position: relative; }

	#info { padding-right: 20px; }
	
	#foot-logo { 
		background: url('../images/backgrounds/foot-logo.png') left top no-repeat;
		height: 264px;
	}
	
	#info-links { margin: 40px 5px; }
	
	#info-links li { line-height: 1.5; }
	
	#info-links a {
		color: #5e5e5e;
		text-decoration: underline;
		font-size: 1.4em;
	}
	
	.entry-gal-item { 
		width: 67px;
		height: 67px;
		overflow: hidden;
		float: left;
	}
	
	.entry-gal-item img.horz { height: 100%; } 
	.entry-gal-item img.vert { width: 100%; } 
	
	/* Banners */
	#banners-list { padding: 10px 0px 50px; }
	
	#banners-list li { 
		float: left;
		margin-right: 10px;
	}
	
	/* Navigation
	-------------------------------------*/

	.navbar-default {
		background: none;
		border: none;
		margin: 0px;
		min-height: 0px;
	}
	
	.navbar-header, .navbar-toggle { margin: 0px !important; }
	
	.navbar-default {
		background: none;
		border: none;
		position: unset;
	}	
	
	.navbar-collapse { padding: 0px; }
	
	.navbar-toggle { 
		margin-right: 0px; 
		position: unset;
		background: #4362A8;
		padding: 8px;
		border-radius: 2px;
	}
	
	.navbar-toggle .icon-bar { background: white; }
	
	.navbar-toggle { float: none; }	
	
	.navbar-header {
		position: absolute;
		top: 50px;
		right: 15px;
	}
	
	/* --- Main Menu --- */

	#main-menu {
		width: 100%;
		/* height: 50px; */
		float: left;
		font-family: 'Merriweather', serif;
		font-style: italic;
		padding-left: 90px;
		background: url('../images/backgrounds/menu-ball.png') 40px center no-repeat;
	}

	/* Level 1 */
	
	#main-menu li.menu-level1 {
		float: left;
		margin: 0px 10px;
		line-height: 50px;
		/*position: relative;*/
	}

	#main-menu a.menu-level1:link, #main-menu a.menu-level1:visited, #main-menu a.menu-level1:hover, #main-menu a.menu-level1:active {
		float: left;
		outline: none;
		
	}

	#main-menu li.menu-level1-open a.menu-level1:link, 
	#main-menu li.menu-level1-open a.menu-level1:visited, 
	#main-menu li.menu-level1-open a.menu-level1:active {
		/* color: #2e50a2; */
		color: #333;
		text-decoration: underline;
	}
	
	#main-menu li.menu-level1-open a.menu-level1:hover { text-decoration: underline; color: #333; }

	#main-menu li.menu-level1 a.menu-level1:hover { color: #333; }

	#main-menu span.menu-level1 {
		font-size: 2.2em;
		
	}

	/* Level 2 */
		
	#main-menu ul.menu-level2 {
		top: 40px;
		left: -20px;
		position: absolute;
		z-index: 555;
		background: #fff;
		min-width: 250px;
		border: 1px solid #D6DCEB;
		box-shadow: 5px 5px 6px -7px #666;
		padding: 10px 0px;
	}
	
	#main-menu li.menu-level2 { width: 100%; }

	#main-menu a.menu-level2:link, #main-menu a.menu-level2:visited, #main-menu a.menu-level2:hover, #main-menu a.menu-level2:active {
		
	}

	#main-menu li.menu-level2-open a.menu-level2:link, 
	#main-menu li.menu-level2-open a.menu-level2:visited, 
	#main-menu li.menu-level2-open a.menu-level2:hover, 
	#main-menu li.menu-level2-open a.menu-level2:active {
		
	}

	#main-menu li.menu-level2 a.menu-level2:hover {  }

	#main-menu span.menu-level2 {
		display: block;
		padding: 0px 20px;
		margin: 12px 0px;
		line-height: 1;
		font-size: 1.4em;
	}


	/* Level 3 */
	#main-menu ul.menu-level3 { margin-top: 10px; }
	
	#main-menu a.menu-level3:link, #main-menu a.menu-level3:visited, #main-menu a.menu-level3:hover, #main-menu a.menu-level3:active {
		color: #5a5a5a;
	}

	#main-menu li.menu-level3-open a.menu-level3:link, 
	#main-menu li.menu-level3-open a.menu-level3:visited, 
	#main-menu li.menu-level3-open a.menu-level3:hover, 
	#main-menu li.menu-level3-open a.menu-level3:active { 
		
	}

	#main-menu li.menu-level3 a.menu-level3:hover {  }

	#main-menu span.menu-level3 {
		padding: 0px 20px;
		display: block;
		font-size: 1.2em;
		line-height: 1.6;
		width: 100%;
		margin-left: 10px;
	}
	
	/* Forms
	-------------------------------------*/

	input {
		position: relative;
		border-radius: 3px;
		-webkit-border-radius: 3px;
	}

	#text-content-container form {
		width: 98%;
		margin-bottom: 1em;
		padding: 1em 1%;
		background-color: #F6F6F6;
	}

	input.input-text {
		padding: .3em;
		border: 1px solid #AAA;
		font-size: 100%;
		background-color: #EEE;
	}

	#text-content-container input.input-text {
		padding: .5em;
		border: 1px solid #AAA;
		font-size: .9em;
		background-color: white;
	}

	input.input-submit {
		margin-top: 1em;
		padding: .4em .6em;
		border-width: 1px;
		border-style: solid;
		border-color: #385CAF;
		font-size: 100%;
		background-color: #385CAF;
		color: white;
		cursor: pointer;
	}

	input.input-submit:hover {
		border-color: #274B9A;
		background-color: #274B9A;
	}
	
	input.input-datepicker {
		padding: .5em;
		border: 1px solid #AAA;
		font-size: .9em;
		background-color: white;
		width: 6em;
	}

	#text-content-container input.input-submit { font-size: .9em; }

	textarea {
		position: relative;
		height: 10em;
		padding: .3em;
		border: 1px solid #AAA;
		line-height: 1.1;
		background-color: #EEE;
		border-radius: 3px;
		-webkit-border-radius: 3px;
	}

	select {
		position: relative;
		padding: .1em 0 .1em .3em;
		border: 1px solid #AAA;
		background-color: #EEE;
		border-radius: 3px;
		-webkit-border-radius: 3px;
	}

	.input-security {
		width: 5em !important;
		margin: 0 0 0 3px;
		padding: .3em;
		border: 1px solid #AAA;
		font-size: 100%;
		background-color: #EEE;
	}

	.racun {}

	form span.mandatory { color: #B90000 }


	/* Vertical form */

	.vertical-form {}

	.vertical-form dt {
		margin-top: 1em;
		margin-bottom: .3em;
	}


	/* Horizontal form */

	.horizontal-form { float: left }

	.horizontal-form dt {
		clear: left;
		float: left;
		width: 25%;
		padding-top: .5em;
		margin-top: .6em;
		margin-bottom: .2em;
		margin-right: 2%;
		text-align: right;
	}

	.horizontal-form dt label { text-align: right }

	.horizontal-form dd {
		float: left;
		width: 72.9%;
		margin-top: .6em;
		margin-bottom: .2em;
	}

	fieldset.checkboxes label {
		float: left;
		display: block;
	}

	form dt.alt, 
	form dd.alt {
		text-align: left
	}

	.horizontal-form dt.alt, 
	.horizontal-form dd.alt {
		width: 72.9%;
		padding-top: 0;
		padding-left: 27%;
		margin-right: 0;
	}

	.sidebar-module input,
	.sidebar-module select,
	.sidebar-module textarea {
		font-family: inherit;
		font-size: 1.1em;
	}

	.form-notice {
		margin: 1em 0;
		padding: .3em 1em;
		border: 1px solid #007700;
		font-weight: bold;
		color: #007700;
		background-color: #F0FFF0;
	}

	.form-error {
		margin: 1em 0;
		padding: .3em 0;
		border: 1px solid #B90000;
		color: #B90000;
		background-color: #FFF0F0;
	}

	.form-error li {
		padding: .3em 1em;
		font-weight: bold;
		line-height: 1.2;
	}
}

/* Responsive
-------------------------------------*/

@media screen and (max-width: 1430px) {
	#qlinks { height: 410px; }

}

@media screen and (max-width: 991px) {
	#row1 #quick-wrap { padding: 23px 0px 0px; }
	
	#header { margin-left: 0px; }
	
	#header h1, #header em {
		margin-top: 26px;
		margin-left: -12px;
		height: 104px;
		width: 590px
	}
	
	#header h1 a:link, #header h1 a:visited, #header h1 a:hover, #header h1 a:active,
	#header em a:link, #header em a:visited, #header em a:hover, #header em a:active {
		background: url('../images/backgrounds/logo-sm.png') left top no-repeat;
	}
}

@media screen and (max-width: 767px) {
	.photo-gallery-item { 
		width: 125px; 
		height: auto !important;
		margin: 3px;
	}

	#content, #footer { 
		margin: 0px;
		width: 100%;
		padding: 0px 25px;
	}
	
	#qlinks-wrap { max-width: 180px; }
	
	#qlinks { padding: 30px 10px; }
	
	.qlink { 
		font-size: 1.6em;
		padding: 3px 0px;
	}
	
	#header-wrapper { min-height: 0px; }
	
	#header {
		background: #D0D7E8;
		height: 100px;
	}
	
	#header h1, #header em {
		margin-top: 16px;
		margin-left: 10px;
		height: 69px;
		width: 183px
	}
	
	#header h1 a:link, #header h1 a:visited, #header h1 a:hover, #header h1 a:active,
	#header em a:link, #header em a:visited, #header em a:hover, #header em a:active {
		background: url('../images/backgrounds/logo-xs.png') left top no-repeat;
		background-size: 183px 69px;
	}
	
	#body-entry #content, #footer  { padding: 0px 10px; }
	
	#body-content #content { padding: 0px; }
	
	#text-content-container { padding: 0 10px 30px } 
	
	#body-content h1 { 
		line-height: 1; 
		font-size: 2.3em;
		padding: 15px 10px 10px;
	}
	
	#main-menu { 
		background: none;
		padding-left: 20px;
	}
	
	#main-menu li { 
		width: 100%; 
		margin: 0px;
	}
	
	#main-menu li.menu-level1 { line-height: 35px; margin: 0px; position:relative;}
	
	#main-menu span.menu-level1 { font-size: 1.8em; }

	#search-mini-form input.input-submit { right: -7px; }
	
	#footer-wrap { 
		background: #fff;
		text-align: center;
	}
	
	.business-card { float: none; }

	/* lightbox */
	#lightbox-image { max-width: 98%; }
	#lightbox-container-image-box,
	#lightbox-container-image-data-box{ 
		max-width: 98% !important; 
		height: auto !important;
		padding: 0px
	}

	#lightbox-nav-btnPrev,
	#lightbox-nav-btnNext {
		height: 100% !important;
	}		
	
}

@media screen and (max-width: 380px) { 
	#banners-list li { float: none; }
	
	.entry-gal-item { width: 66px; height: 66px; }
}

/* Print styles
-------------------------------------*/

@media print {

	body {
		font-size: .9em;
		font-family: "Times New Roman", serif;
		background-color: white;
		color: black;
	}

	h1, h2, h3, h4 { font-family: "Times New Roman", serif; }

	h1 { font-size: 1.6em; }

	h2 { font-size: 1.4em; }

	h3 { font-size: 1.2em; }

	h4 { font-size: 1.1em; }

	a img { border: none; }

	#text-content-container a:link:after,
	#text-content-container a:visited:after {
		content: " (" attr(href) ") ";
		font-size: 90%;
	}
	
}




/* Plugins
-------------------------------------*/


@media projection, screen {

	/**
	 * jQuery lightBox plugin
	 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
	 * and adapted to me for use like a plugin from jQuery.
	 * @name jquery-lightbox-0.5.css
	 * @author Leandro Vieira Pinho - http://leandrovieira.com
	 * @version 0.5
	 * @date April 11, 2008
	 * @category jQuery plugin
	 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
	 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
	 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
	 */
	#jquery-overlay {
		position: absolute;
		top: 0;
		left: 0;
		z-index: 90;
		width: 100%;
		height: 500px;
	}
	#jquery-lightbox {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		text-align: center;
		line-height: 0;
	}
	#jquery-lightbox a img { border: none; }
	#lightbox-container-image-box {
		position: relative;
		background-color: #fff;
		width: 250px;
		height: 250px;
		margin: 0 auto;
	}
	#lightbox-container-image { padding: 10px; }
	#lightbox-loading {
		position: absolute;
		top: 40%;
		left: 0%;
		height: 25%;
		width: 100%;
		text-align: center;
		line-height: 0;
	}
	#lightbox-nav {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		z-index: 10;
	}
	#lightbox-container-image-box > #lightbox-nav { left: 0; }
	#lightbox-nav a { outline: none;}
	#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
		width: 49%;
		height: 100%;
		display: block;
	}
	#lightbox-nav-btnPrev { 
		left: 0; 
		float: left;
	}
	#lightbox-nav-btnNext { 
		right: 0; 
		float: right;
	}
	#lightbox-container-image-data-box {
		font: 10px Verdana, Helvetica, sans-serif;
		background-color: #fff;
		margin: 0 auto;
		line-height: 1.4em;
		overflow: auto;
		width: 100%;
		padding: 0 10px 0;
	}
	#lightbox-container-image-data {
		padding: 0 10px; 
		color: #666; 
	}
	#lightbox-container-image-data #lightbox-image-details { 
		width: 70%; 
		float: left; 
		text-align: left; 
	}	
	#lightbox-image-details-caption { font-weight: bold; }
	#lightbox-image-details-currentNumber {
		display: block; 
		clear: left; 
		padding-bottom: 1.0em;	
	}			
	#lightbox-secNav-btnClose {
		width: 22px; 
		float: right;
		padding-bottom: 0.7em;	
	}
	
	
	/**
	 * The "classic" theme CSS for Shadowbox.
	 *
	 * This file is part of Shadowbox.
	 *
	 * Shadowbox is an online media viewer application that supports all of the
	 * web's most popular media publishing formats. Shadowbox is written entirely
	 * in JavaScript and CSS and is highly customizable. Using Shadowbox, website
	 * authors can showcase a wide assortment of media in all major browsers without
	 * navigating users away from the linking page.
	 *
	 * Shadowbox is released under version 3.0 of the Creative Commons Attribution-
	 * Noncommercial-Share Alike license. This means that it is absolutely free
	 * for personal, noncommercial use provided that you 1) make attribution to the
	 * author and 2) release any derivative work under the same or a similar
	 * license.
	 *
	 * If you wish to use Shadowbox for commercial purposes, licensing information
	 * can be found at http://mjijackson.com/shadowbox/.
	 *
	 * @author      Michael J. I. Jackson <mjijackson@gmail.com>
	 * @copyright   2007-2008 Michael J. I. Jackson
	 * @license     http://creativecommons.org/licenses/by-nc-sa/3.0/
	 * @version     SVN: $Id: skin.js 91 2008-03-28 17:39:13Z mjijackson $
	 */

	/*_____________________________________________________  container & overlay  */
	#shadowbox_container, #shadowbox_overlay {
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	  margin: 0;
	  padding: 0;
	}
	#shadowbox_container {
	  position: fixed;
	  display: block;
	  visibility: hidden;
	  z-index: 999;
	  text-align: center; /* centers #shadowbox in quirks and IE */
	}
	#shadowbox_overlay {
	  position: absolute;
	}

	/*_______________________________________________________________  shadowbox  */
	#shadowbox {
	  position: relative;
	  margin: 0 auto;
	  text-align: left; /* reset left alignment */
	}

	/*____________________________________________________________________  body  */
	#shadowbox_body {
	  position: relative;
	  margin: 0;
	  padding: 0;
	  border: 1px solid #333;
	  overflow: hidden;
	}
	#shadowbox_body_inner {
	  position: relative;
	  height: 100%;
	}
	#shadowbox_content.html {
	  height: 100%;
	  overflow: auto; /* make html content scrollable */
	}

	/*_________________________________________________________________  loading  */
	#shadowbox_loading {
	  position: absolute;
	  top: 0;
	  width: 100%;
	  height: 100%;
	}
	#shadowbox_body, #shadowbox_loading {
	  background-color: #060606; /* should match loading image background color */
	}
	#shadowbox_loading_indicator {
	  float: left;
	  margin: 10px 10px 0 10px;
	  height: 32px;
	  width: 32px;
	  background-image: url(../js/shadowbox/skin/classic/loading.gif);
	  background-repeat: no-repeat;
	}
	#shadowbox_loading span {
	  font-family: 'Lucida Grande', Tahoma, sans-serif;
	  font-size: 10px;
	  float: left;
	  margin-top: 16px;
	}
	#shadowbox_loading span a:link,
	#shadowbox_loading span a:visited {
	  color: #fff;
	  text-decoration: underline;
	}

	/*____________________________________________________________  title & info  */
	#shadowbox_title, #shadowbox_info {
	  position: relative;
	  margin: 0; /* these must have no vertical margin or padding */
	  padding: 0;
	  overflow: hidden;
	}
	#shadowbox_title_inner, #shadowbox_info_inner {
	  position: relative;
	  font-family: 'Lucida Grande', Tahoma, sans-serif;
	  line-height: 16px;
	}
	#shadowbox_title {
	  height: 26px;
	}
	#shadowbox_title_inner {
	  font-size: 16px;
	  padding: 5px 0;
	  color: #fff;
	}
	#shadowbox_info {
	  height: 20px;
	}
	#shadowbox_info_inner {
	  font-size: 12px;
	  color: #fff;
	}

	/*_____________________________________________________________________  nav  */
	#shadowbox_nav {
	  float: right;
	  height: 16px;
	  padding: 2px 0;
	  width: 45%;
	}
	#shadowbox_nav a {
	  display: block;
	  float: right;
	  height: 16px;
	  width: 16px;
	  margin-left: 3px;
	  cursor: pointer;
	}
	#shadowbox_nav_close {
	  background-image: url(../js/shadowbox/skin/classic/icons/close.png);
	  background-repeat: no-repeat;
	}
	#shadowbox_nav_next {
	  background-image: url(../js/shadowbox/skin/classic/icons/next.png);
	  background-repeat: no-repeat;
	}
	#shadowbox_nav_previous {
	  background-image: url(../js/shadowbox/skin/classic/icons/previous.png);
	  background-repeat: no-repeat;
	}
	#shadowbox_nav_play {
	  background-image: url(../js/shadowbox/skin/classic/icons/play.png);
	  background-repeat: no-repeat;
	}
	#shadowbox_nav_pause {
	  background-image: url(../js/shadowbox/skin/classic/icons/pause.png);
	  background-repeat: no-repeat;
	}

	/*_________________________________________________________________  counter  */
	#shadowbox_counter {
	  float: left;
	  padding: 2px 0;
	  width: 45%;
	}
	#shadowbox_counter a {
	  padding: 0 4px 0 0;
	  text-decoration: none;
	  cursor: pointer;
	  color: #fff;
	}
	#shadowbox_counter a.shadowbox_counter_current {
	  text-decoration: underline;
	}

	/*___________________________________________________________________  clear  */
	div.shadowbox_clear {
	  clear: both; /* clear floating counter & nav */
	}

	/*________________________________________________________________  messages  */
	div.shadowbox_message {
	  font-family: 'Lucida Grande', Tahoma, sans-serif;
	  font-size: 12px;
	  padding: 10px;
	  text-align: center;
	}
	div.shadowbox_message a:link,
	div.shadowbox_message a:visited {
	  color: #fff;
	  text-decoration: underline;
	}
	
	
	
	/*  jquery autocomplete  */
	.ac_results {
		padding: 0px;
		background-color: white;
		overflow: hidden;
		z-index: 99999;
	}

	.ac_results ul {
		width: 100%;
		list-style-position: outside;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.ac_results li {
		margin: 0px;
		padding: 2px 5px;
		cursor: default;
		display: block;
		/* 
		if width will be 100% horizontal scrollbar will apear 
		when scroll mode will be used
		*/
		/*width: 100%;*/
		font: menu;
		font-size: 12px;
		/* 
		it is very important, if line-height not setted or setted 
		in relative units scroll will be broken in firefox
		*/
		line-height: 16px;
		overflow: hidden;
	}


	.ac_odd {
		background-color: #F6F6F6
	}

	.ac_over {
		background-color: #606060;
		color: white;
	}

}

/* DO NOT PUT ANYTHING DOWN HERE! FIND THE APPROPRIATE SECTION ABOVE! THIS IS THE LAST WARNING! */