

/* @group typo3 defaults */

/* default styles for extension "tx_cssstyledcontent" */
	/* Captions */
	DIV.csc-textpic-caption-c .csc-textpic-caption { text-align: center; }
	DIV.csc-textpic-caption-r .csc-textpic-caption { text-align: right; }
	DIV.csc-textpic-caption-l .csc-textpic-caption { text-align: left; }

	/* Needed for noRows setting */
	DIV.csc-textpic DIV.csc-textpic-imagecolumn { float: left; display: inline; }

	/* Border just around the image */
	DIV.csc-textpic-border DIV.csc-textpic-imagewrap .csc-textpic-image IMG {
		border: 2px solid black;
		padding: 0px 0px;
	}

	DIV.csc-textpic-imagewrap { padding: 0; }

	DIV.csc-textpic IMG { border: none; }

	/* DIV: This will place the images side by side */
	DIV.csc-textpic DIV.csc-textpic-imagewrap DIV.csc-textpic-image { float: left; }

	/* UL: This will place the images side by side */
	DIV.csc-textpic DIV.csc-textpic-imagewrap UL { list-style: none; margin: 0; padding: 0; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap UL LI { float: left; margin: 0; padding: 0; }

	/* DL: This will place the images side by side */
	DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image { float: left; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DT { float: none; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DD { float: none; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap DL.csc-textpic-image DD IMG { border: none; } /* FE-Editing Icons */
	DL.csc-textpic-image { margin: 0; }
	DL.csc-textpic-image DT { margin: 0; display: inline; }
	DL.csc-textpic-image DD { margin: 0; }

	/* Clearer */
	DIV.csc-textpic-clear { clear: both; }

	/* Margins around images: */

	/* Pictures on left, add margin on right */
	DIV.csc-textpic-left DIV.csc-textpic-imagewrap .csc-textpic-image,
	DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap .csc-textpic-image,
	DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap .csc-textpic-image {
		display: inline; /* IE fix for double-margin bug */
		margin-right: 10px;
	}

	/* Pictures on right, add margin on left */
	DIV.csc-textpic-right DIV.csc-textpic-imagewrap .csc-textpic-image,
	DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap .csc-textpic-image,
	DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap .csc-textpic-image {
		display: inline; /* IE fix for double-margin bug */
		margin-left: 10px;
	}

	/* Pictures centered, add margin on left */
	DIV.csc-textpic-center DIV.csc-textpic-imagewrap .csc-textpic-image {
		display: inline; /* IE fix for double-margin bug */
		margin-left: 10px;
	}
	DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image .csc-textpic-caption { margin: 0; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image IMG { margin: 0; }

	/* Space below each image (also in-between rows) */
	DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image { margin-bottom: 5px; }
	DIV.csc-textpic-equalheight DIV.csc-textpic-imagerow { margin-bottom: 5px; display: block; }
	DIV.csc-textpic DIV.csc-textpic-imagerow { clear: both; }

	/* No margins around the whole image-block */
	DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-firstcol { margin-left: 0px !important; }
	DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-lastcol { margin-right: 0px !important; }

	/* Add margin from image-block to text (in case of "Text w/ images") */
	DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap,
	DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap {
		margin-right: 10px !important;
	}
	DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap,
	DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap {
		margin-left: 10px !important;
	}

	/* Positioning of images: */

	/* Above */
	DIV.csc-textpic-above DIV.csc-textpic-text { clear: both; }

	/* Center (above or below) */
	DIV.csc-textpic-center { text-align: center; /* IE-hack */ }
	DIV.csc-textpic-center DIV.csc-textpic-imagewrap { margin: 0 auto; }
	DIV.csc-textpic-center DIV.csc-textpic-imagewrap .csc-textpic-image { text-align: left; /* Remove IE-hack */ }
	DIV.csc-textpic-center DIV.csc-textpic-text { text-align: left; /* Remove IE-hack */ }

	/* Right (above or below) */
	DIV.csc-textpic-right DIV.csc-textpic-imagewrap { float: right; }
	DIV.csc-textpic-right DIV.csc-textpic-text { clear: right; }

	/* Left (above or below) */
	DIV.csc-textpic-left DIV.csc-textpic-imagewrap { float: left; }
	DIV.csc-textpic-left DIV.csc-textpic-text { clear: left; }

	/* Left (in text) */
	DIV.csc-textpic-intext-left DIV.csc-textpic-imagewrap { float: left; }

	/* Right (in text) */
	DIV.csc-textpic-intext-right DIV.csc-textpic-imagewrap { float: right; }

	/* Right (in text, no wrap around) */
	DIV.csc-textpic-intext-right-nowrap DIV.csc-textpic-imagewrap { float: right; clear: both; }
	/* Hide from IE5-mac. Only IE-win sees this. \*/
	* html DIV.csc-textpic-intext-right-nowrap .csc-textpic-text { height: 1%; }
	/* End hide from IE5/mac */

	/* Left (in text, no wrap around) */
	DIV.csc-textpic-intext-left-nowrap DIV.csc-textpic-imagewrap { float: left; clear: both; }
	/* Hide from IE5-mac. Only IE-win sees this. \*/
	* html DIV.csc-textpic-intext-left-nowrap .csc-textpic-text { height: 1%; }
	/* End hide from IE5/mac */
	
	DIV.csc-textpic DIV.csc-textpic-imagerow-last { margin-bottom: 0; }

	/* Browser fixes: */

	/* Fix for unordered and ordered list with image "In text, left" */
	.csc-textpic-intext-left ol, .csc-textpic-intext-left ul {padding-left: 40px; overflow: auto; height: 1%; }

/* @end */
	
	
	
/* slovenija transplant */


body {
	text-align: center;
	background: #fff url(/fileadmin/templates/ui/body-bg.png);
	margin: 0 !important;
	padding: 0 !important;
	font-family:  Arial, Helvetica, Geneva, sans-serif;
	font-size: 12px;
}

img {
	border: none;
}

*  {
	Xoutline: 1px dashed lightblue;	
}


.clear, .clearer {
	clear: both;
}
	


.container {
	width: 960px;
	margin: 0 auto;
}


h1 {
	margin: 0;
	font-size: 28px;
	color: #f55e18;
}

#bg {
	background: transparent url(/fileadmin/templates/ui/header-bg.png) repeat-x;
}

#bg2 {
	background: transparent url(/fileadmin/templates/ui/st-bg2.gif) no-repeat right 100px;
	width: 980px;
	margin: 0 auto;
}

	#logo {
		width: 200px;
		text-align: left !important;
		margin-bottom: 20px;
	}
	
	#logo img {
		margin-left: 16px;
	}

	#menu {
		text-align: left;
		height:128px;
		overflow: visible;
		width: 530px;
	}
	


	#menu ul, #menu li {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	
	#menu li {
		float: left;
		margin: 0 3px 0 0;
	}
	
	#menu li.active {
		margin: 0 5px;
	}
	
	#menu a {
		display: block;
		
		height: 65px;
		width: 126px;
		
		background: url(/fileadmin/templates/ui/menu-items.gif) no-repeat;
	}
	
	.lang-2 #menu a {
		background-image: url(/fileadmin/templates/ui/menu-items-en.gif);
	}
	
	#menu span {
		display: none;
	}
	
	#menu-predstavitev { margin-left: 0 !important; }
	#menu-dejavnost a {	background-position: -131px 0;	}
	#menu-novice-in-dogodki a {	background-position: -263px 0;}
	#menu-strokovna-javnost a {	background-position: -395px 0;}	
	
	#menu-predstavitev a:hover { background-position: 0 -80px; margin-left: 0 !important;}	
	#menu-dejavnost a:hover {	background-position: -131px -80px}
	#menu-novice-in-dogodki a:hover {	background-position: -263px -80px}
	#menu-strokovna-javnost a:hover {	background-position: -395px -80px}	

	#menu-predstavitev.active a { background-position: 0 -160px; margin-left: 0 !important;}	
	#menu-dejavnost.active a { background-position: -131px -160px}
	#menu-novice-in-dogodki.active a { background-position: -263px -160px}
	#menu-strokovna-javnost.active a { background-position: -395px -160px}	


	#breadcrumb {
		height: 30px;
		padding-left: 10px;
		font-size: 11px;
		color: #999;
		overflow: hidden;
	}
	
	#breadcrumb a {
		text-decoration: none;
		color: #666;
	}
	
	#breadcrumb a:hover {
		text-decoration: underline;
		color: #f55e18;
	}

#searchcol {
	padding-top:20px
}

#searchcol form {
	margin: 0;
	padding: 0;
}
	
	
#submenu {
	width: 180px;
	padding-top: 4px;
	background: url(/fileadmin/templates/ui/submenu-top.gif) no-repeat;

}	

#submenu ul, #submenu li {
	list-style: none;
	margin: 0;
	padding: 0;
}

#submenu ul.level1 {
	padding-bottom: 4px !important;
	background: url(/fileadmin/templates/ui/submenu-bottom.gif) no-repeat bottom 0;
}



#submenu a {
	display: block;
	padding: 6px;
	color: #fff;
	background-color: #f55e18;
	text-decoration: none;
	border-bottom: 1px solid #FAAF8C;
}

#submenu a:hover {
	background-color: #fadcce;
	color: #f55e18 ;
}

#submenu .current-active a {
		background-color: #fadcce;
	color:  #f55e18 !important;
		border-bottom: 1px solid #fff;

}

#submenu .active a {
	background-color: #fadcce;
	color: black !important;
	border-bottom: 1px solid #fff;

}

#submenu ul.level2 {
	padding: 0;
}

#submenu .level2 a {
	font-size: 11px;
	padding-left: 15px;
	color: black !important;
	background-color: #faebe5 !important;

}


#submenu .active .level2 .current-active a {
   color: #f55e18 !important;
}

#submenu .level3 a {
	padding-left: 30px;
}





	
#content {
	text-align: left;
	float: left;
	min-height: 600px;
	width: 530px;
	
}



	#leftcol,
	#rightcol {
		width: 200px;
		min-height: 100px;
		float: left !important;
			text-align: left;

	}
	
	#leftcol {
		padding-top: 20px;
	}
	
	#rightcol {
		padding-left: 30px;
		background: url(/fileadmin/templates/ui/divider.jpg) no-repeat 15px 100px;
		min-height: 700px;

	}
	
	#main {
		width: 520px;
		padding-left: 10px;
	}
	
	#content li {
			line-height: 1.4em;
	}
	
	#main p {
		line-height: 1.4em;
		margin: 0 0 10px 0;
	}
	
	#main h2 {
		margin: 20px 0 5px 0;
		font-weight: normal;
		font-size: 18px;
		color: #333;
	}
	
	#main a {
		color: #f55e18 ;
		text-decoration: none;
		border-bottom: 1px dotted #f55e18;
	}
	
	#main a:hover {
		border-bottom: 1px solid #f55e18;
	}

	
#footer {
		background: transparent url(/fileadmin/templates/ui/footer-bg.png) repeat-x;
		height: 50px;
		text-align: left;
		font-size: 11px;
		padding: 20px 0;
		margin-top: 20px;
}

#footer p {
	margin: 0;
	line-height: 16px;
	color: #333;
}

#footer a {
	color: #666;
}


h1.csc-firstHeader {
	margin-bottom: 28px;
}

/* tt_news */

.news-list-container {
	border-top: 1px dashed #999;
}
.news-list-item .news-list-date{
	float: right;
	padding: 2px 4px;
	background-color: #eee;
	background-color: rgba(0,0,0,0.1);

	color: #333;
	font-size: 11px;
	margin: 2px 0 5px 10px;
}

.news-list-item h2 a {
	border-bottom: none !important;
}

.news-list-item h2 a:hover {
	border-bottom: 1px solid #f55e18 !important;
}

.news-list-item .news-list-morelink {
	display: block;
	font-size: 11px;
}

.news-list-category {
	display: none;
}

.news-list-item hr,
.news-single-item hr {
	border: none;
	border-top: 1px dashed #999;
	border-bottom: 1px dashed #fff;

}

.news-single-item {
	
}

.news-single-item .news-single-rightbox  {
	float: right;
	padding: 2px 4px;
	background-color: #eee;
	background-color: rgba(0,0,0,0.1);

	color: #333;
	font-size: 14px;
	margin: 6px 0 5px 10px;
}

.news-single-item .news-single-backlink {
	margin-top: 40px;
	font-size: 11px;
}


.news-list-browse {
	text-align: right;	
	font-size: 11px;
}

.news-list-browse .showResultsWrap {
	Xdisplay: none;
	opacity:  0.2;
}

.news-list-browse a,
.news-list-browse span {
	margin: 0 3px;
}

.csc-searchResultRange {
	border-bottom: 1px solid orange;
	width: 100%;
}

.csc-searchResult {
	border-bottom: 1px dashed #999;
	padding-bottom: 10px;
}

#mailform {
	background-color: #eee;
	background-color: rgba(0,0,0,0.1);
	padding: 10px;
}

#mailform label {
	width: 100px;
	display: block;
	float: left;
	margin-top: 4px;
}

#mailform .csc-mailform-field {
	clear: both;
	padding: 4px 0;
}

#mailform #mailformsword,
#mailform #mailformscols {
	width: 390px;
}

#mailform .csc-mailform-submit {
	margin-left: 100px;
}

.contenttable {
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #000;
	margin-bottom: 20px;
}

.contenttable th {
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #999;
	padding: 3px;
}

.contenttable p {
	margin: 0 !important;
	padding: 0 ;
}


.contenttable td {
	vertical-align: top;
	border-bottom: 1px solid #999;
	width: 50%;
	padding: 3px;
}
.contenttable ul {
	padding: 0;
	margin: 0;
	list-style: circle;
	padding-left: 18px;
}

.align-right {
	text-align: right;
}


.align-left {
	text-align: left;
}


.align-center {
	text-align: center;
}


#links .alt {
	display: none;
}

#links {
	margin-top:5px;
	font-size: 11px;
}



#links #link-home,
#links #link-email,
#links #link-sitemap,
#links #link-print {
	display: block;
	float: left;
	background: url(/fileadmin/templates/ui/extramenu-bg.gif) no-repeat;
	width: 16px;
	height: 12px;
	margin: 2px 4px 2px 0px;
	border-right: 1px solid #000;
}

#links #link-home:hover {
	background-position: 0 -20px;
}

#links #link-email {
	background-position: -19px 0;
}

#links #link-sitemap {
	background-position: -39px 0;
}

#links #link-print {
	background-position: -60px 0;
}

#links #link-email:hover {
	background-position: -19px -20px;
}

#links #link-sitemap:hover {
	background-position: -39px -20px;
}


#links #link-print:hover {
	background-position: -60px -20px;
}

#links a {
		color: #f55e18 ;
		text-decoration: none;
		line-height: 16px;
}

#links #link-faq {
	border-right: 1px solid #000;
	padding-right: 4px;
	margin-right: 2px;
}
#links #link-faq:hover,
#links #link-lang-sl:hover,
#links #link-lang-en:hover {
	border-bottom: 1px solid #f55e18;
}

#links #link-lang-sl {
	background: url(/fileadmin/templates/ui/si.gif) no-repeat;
	padding-left: 20px;
}

#links #link-lang-en {
	background: url(/fileadmin/templates/ui/gb.gif) no-repeat;
	padding-left: 20px;
}

#sword {
	width: 130px;
}

#searchcol #mailformsubmit {
	width: 50px;
	font-size: 11px;
}

#rightcol-more {
	margin-top: 50px;
}


.csc-sitemap ul {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.csc-sitemap ul ul {
	font-size: 12px;
	font-weight: normal;
	margin-bottom: 10px;
}


.csc-frame-frame1 {
	/*position: relative;
	top: -90px;*/
	
	padding: 340px 0px 0px 26px;
	font-size: 16px;
	font-weight: normal;
	background: transparent url(/fileadmin/templates/ui/front-bg-3.jpg) no-repeat;
	/*height: 70px;*/
		margin-bottom: 40px;
		

}

.csc-frame-frame1 p {
	margin: 0;
}

.csc-frame-frame1 .indent {
	padding:5px 0 0 150px;
	font-weight: normal;
	font-style: italic;
	font-size: 12px;
	color: #999;
}

#body-2 #breadcrumb {
	display: none;	
}

#body-2 #menu {
	height: 80px;
}


#body-2 h1 {
	font-size: 16px;
	margin-left: 25px;
	color: #333;
}

.news-latest-container {
	padding-top: 10px;
}

.news-latest-item {
	padding: 0 10px 0 25px ;
	background: transparent url(/fileadmin/templates/ui/bullet-big.gif) no-repeat 8px 1px;
	font-size: 12px;
	color: #333;
}

.news-latest-item .news-latest-date {
	float: right;
	padding: 2px 4px;
	background-color: #eee;
	background-color: rgba(0,0,0,0.1);

	color: #333;
	font-size: 11px;
	margin: 2px 0 5px 10px;
}

.news-latest-item h2 {
	margin: 0 0 5px 0!important;
	font-size: 12px !important;
	font-weight: bold !important;
}

.news-latest-category {
	display: none;
}

.news-latest-item p {
	margin: 0 !important;
}

.news-latest-gotoarchive {
	display: none;
}

.news-latest-item  hr {
	border: none;
	border-top: 1px dashed #999;
	border-bottom: 1px dashed #fff;
}

#body-2 a.internal-link {
	margin-left: 25px;
}

#body-2 #submenu {
	display: none;
}

#main img {
	margin-left: 10px;
	border: 1px solid #ccc;
	padding: 2px;
}

#main a img {
	border-color: #f60;
}


.news-list-item img {
	margin: 0 !important;
}

.box {
	width: 180px;
	margin: 20px 0;
	font-size: 11px;

}

.box h3 {
	margin: 0;
	background: transparent url(/fileadmin/templates/ui/box-top.gif) no-repeat;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: bold;
	color: #fff;
	text-transform: uppercase;
	
	
    
}

.box p {
	margin: 0 !important;
}

.box .content {
	padding: 5px;
	border: 1px solid #f60;
	padding-bottom: 4px !important;
	
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
	-moz-border-radius-bottomright: 5px;
	-moz-border-radius-bottomleft: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;

}


.box a.more {
	font-size: 11px;
	color: #f60;
	
}

.box h6 {
	font-size: 12px;
	margin: 0;
}

#main h6 {
	font-size: 12px;
	margin: 0;
}


.tx-srfeuserregister-pi1 fieldset {
	border: none;
	margin: 0;
	padding-left: 0 !important;
}

.tx-srfeuserregister-pi1 legend {
	padding: 0;
	color: #f60;
	font-size: 14px;
	font-weight: normal;
}


.tx-srfeuserregister-pi1 input {
	width: 350px;
}

.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-submit {
	width: auto !important;
}

.tx-srfeuserregister-pi1 .tx-srfeuserregister-pi1-error {
	font-size: 10px;
}

.tx-srfeuserregister-pi1 {
	padding-top: 10px;
}

ul.csc-menu {
	margin: 10px 0;
	padding: 0;
}

.csc-menu li {
	list-style: none;
	margin: 0;
	padding: 0 0 0 16px;
	background:  url(/fileadmin/templates/ui/bullet-big.gif) no-repeat 0 2px;

}

.csc-uploads-icon img {
	border: none !important;
	margin: 0 !important;
}

.csc-uploads-icon a {
	border: none !important;
}

.tx-felogin-pi1 {
	/*background-color: #eee;
	background-color: rgba(0,0,0,0.1);*/
}

.tx-felogin-pi1 label {
	width: 120px;
	display: block;
	float: left;
	margin-top: 4px;
}

.tx-felogin-pi1 input#user,
.tx-felogin-pi1 input#pass,
.tx-felogin-pi1 input#tx_felogin_pi1 {
	width: 350px;
}

.tx-felogin-pi1 fieldset {
	border: none !important;
	padding: 0;
	margin: 10px 0 ;
	
	/*background-color: #fff;
	background-color: rgba(255,255,255,0.6);*/
}


.tx-felogin-pi1 fieldset div {
	margin: 5px 0;
}

.tx-felogin-pi1 legend {
	padding: 0;
	color: #f60;
	font-size: 14px;
	font-weight: normal;
}

.tx-felogin-pi1 input[type=submit] {
	margin: 5px 0 0px 120px;
}

.tx-srfeuserregister-pi1 a {
	background: none;
	margin: 0;
	padding: 0;
}

.tx-srfeuserregister-pi1 {
	padding: 0 !important;
	
}

.tx-srfeuserregister-pi1 p {
	margin: 0;
	padding: 0;
}

.tx-felogin-pi1 h3 {
	margin: 0;
	margin-bottom: 30px;
	font-size: 28px;
	color: #f55e18;
}

.imgNoLeftMargin {
	margin-left: 0;
}
