/*
-----------------------------
GENERIC
-----------------------------
*/

/* MAIN TYPOGRAPHY */

html {
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
	height:100%;
}
strong, th, thead td, h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}
cite, em, dfn {
	font-style: italic;
}
code, kbd, samp, pre, tt, var, input[type='text'], textarea {
	font-size: 92%;
	font-family: monaco, "Lucida Console", courier, mono-space;
}
del {
	text-decoration: line-through;
	color: #666;
}
ins, dfn {
	border-bottom: 1px solid #ccc;
}
small, sup, sub {
	font-size: 85%;
}
abbr, acronym {
	text-transform: uppercase;
	font-size: 85%;
	letter-spacing: .1em;
}
a abbr, a acronym {
	border: none;
}
abbr[title], acronym[title], dfn[title] {
	cursor: help;
	border-bottom: 1px solid #ccc;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}
/* QUOTES */

blockquote {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: #666;
}
blockquote *:first-child:before {
	content: "\201C";
}
blockquote *:first-child:after {
	content: "\201D";
}
/* language specific quotes! */

q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}
:lang(af), :lang(nl), :lang(pl) {
quotes: '\201E' '\201D' '\201A' '\2019';
}
:lang(bg), :lang(cs), :lang(de), :lang(is), :lang(lt), :lang(sk), :lang(sr), :lang(ro) {
quotes: '\201E' '\201C' '\201A' '\2018';
}
:lang(da), :lang(hr) {
quotes: '\00BB' '\00AB' '\203A' '\2039';
}
:lang(el), :lang(es), :lang(sq), :lang(tr) {
quotes: '\00AB' '\00BB' '\2039' '\203A';
}
:lang(en-GB) {
quotes: '\2018' '\2019' '\201C' '\201D';
}
:lang(fi), :lang(sv) {
quotes: '\201D' '\201D' '\2019' '\2019';
}
:lang(fr) {
quotes: '\ab\2005' '\2005\bb' '\2039\2005' '\2005\203a';
}
/* NOTE: safari refuses to support the quotes syntax. I only added the english language quotes for safari to save space. */
html[lang|='en'] q:before {
	content: '\201C';
}
html[lang|='en'] q:after {
	content: '\201D';
}
html[lang|='en'] q q:before {
	content: '\2018';
}
html[lang|='en'] q q:after {
	content: '\2019';
}
/* FORMS */

fieldset {
	border: 1px solid #ccc;
}
legend {
	background: #fff;
}
textarea, input[type='text'], select {
	border: 1px solid #ccc;
	background: #fff;
}
textarea:hover, input[type='text']:hover, input[type='password']:hover, select:hover {
	border-color: #aaa;
}
textarea:focus, input[type='text']:focus, input[type='password']:focus, select:focus {
	border-color: #888;
	outline: 2px solid #ffffaa;
}
input, select {
	cursor: pointer;
}
input[type='text'] {
	cursor: text;
}
/*
-----------------------------
CONTENT ONLY
-----------------------------
*/

/* BASE SIZES */

body {
	font-size: 0.75em;
	line-height: 1.2em;
	height:100%;
}
h1 {
	font-size: 1.75em;
}
h2 {
	font-size: 1.55em;
}
h3 {
	font-size: 1.35em;
}
h4 {
	font-size: 1.15em;
}
h5 {
	font-size: 0.95em;
}
h6 {
	font-size: 0.75em;
}
/* HR */

hr {
	display: block;
	background: #aaa;
	color: #aaa;
	width: 100%;
	height: 1px;
	border: none;
}
/* LISTS */

ul li {
	text-indent: -.85em;
	margin-left: .85em;
}
ul li:before {
	content: "\2022\00a0\00a0";
}
ol {
	list-style-position: outside;
	list-style-type: decimal;
}
dt {
	font-weight: bold;
}
/* TABLES */

table {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
th, td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ccc;
}
/* MARGINS & PADDINGS */

blockquote *:first-child {
	margin: .8em 0;
}
hr, p, ul, ol, dl, pre, blockquote, address, table, form {
	margin-bottom: 1.6em;
}
p+p {
	margin-top: -.8em;
}
/* NOTE: Calulate header margins: TOP: 1.6em/size, BOTTOM: 1.6em/size/2 */
h1 {
	margin: 1em 0 .5em;
}
h2 {
	margin: 1.07em 0 .535em;
}
h3 {
	margin: 1.14em 0 .57em;
}
h4 {
	margin: 1.23em 0 .615em;
}
h5 {
	margin: 1.33em 0 .67em;
}
h6 {
	margin: 1.6em 0 .8em;
}
th, td {
	padding: .8em;
}
caption {
	padding-bottom: .8em;
} /* padding instead of margin for IE */
blockquote {
	padding: 0 1em;
	margin: 1.6em 0;
}
fieldset {
	padding: 0 1em 1em 1em;
	margin: 1.6em 0;
} /* padding-top is margin-top for fieldsets in Opera */
legend {
	padding-left: .8em;
	padding-right: .8em;
}
legend+* {
	margin-top: 1em;
} /* compensates for the opera margin bug */
textarea, input {
	padding: .3em .4em .15em .4em;
}
select {
	padding: .1em .2em 0 .2em;
}
option {
	padding: 0 .4em;
}
a {
	position: relative;
	padding: 0.3em 0 .1em 0;
} /* for larger click-area */
dt {
	margin-top: .8em;
	margin-bottom: .4em;
}
ul {
	margin-left: 1.5em;
}
ol {
	margin-left: 2.35em;
}
ol ol, ul ol {
	margin-left: 2.5em;
}
form div {
	margin-bottom: .8em;
}
/* COLORS */

a:link {
	text-decoration: underline;
	color: #36c;
}
a:visited {
	text-decoration: underline;
	color: #99c;
}
a:hover {
	text-decoration: underline;
	color: #c33;
}
a:active, a:focus {
	text-decoration: underline;
	color: #000;
}
code, pre {
	color: #c33;
} /* very optional, but still useful. W3C uses about the same colors for codes */
/*CLEARFIX*/

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clearfix {
	display: inline-block;
}
html[xmlns] .clearfix {
	display: block;
}
* html .clearfix {
	height: 1%;
}
/* SITE STARTS HERE */
#container-page {
margin:0pt auto;
position:relative;
text-align:left;
width:1000px;
min-height: 100%;
height: auto !important;
height: 100%;
}
#content-container
{
padding-bottom:67px;
}
div#main {
padding:67px 0 0 0;
background:url(../images/mainBg.gif) top repeat-x;
}
.greyBg {
	background:url(../images/greyBg.gif) right repeat-y;
}
.twocolorBg {
	background:url(../images/2colorBg.gif) right repeat-y;
}
table#head_main {
	width:100%;
	margin:auto;
	border:0px;
}
table#head_main td.col1 {
	width:506px;
	border:0px;
	padding:0px;
}
table#head_main td.col2 {
	border:0px;
	background:#4A4A4A;
	padding:34px 0 0 23px;
}
div#logotype {
	float:left;
	padding:16px 0 0 30px;
}
div#lang {
	float:right;
	width:60px;
	background-color:#DC0C10;
	height:98px;
}
div#lang a {
	padding:0;
	display:block;
}
div#lang img {
	margin:15px 0 0 19px;
}
div.leftColl {
	float:left;
	width:506px;
}
div.rightColl {
	float:right;
	width:494px;
}
#rotateImg {
	height:193px;
}
ul#menu, ul#menu li {
	display:block;
	padding:0;
	margin:0;
	overflow:hidden;
	height:48px;
}
ul#menu {
	background:#FFF;
}
ul#menu li {
	text-indent: 0em;
	margin-left: 0em;
	float:left;
}
ul#menu li:before {
	content: "";
}
ul#menu li a {
	display:block;
	margin:0;
	padding:0;
	height:48px;
	background:#fff;
}
ul#menu li.active a {
	background:#4A4A4A;
}
ul#menu li a img {
	margin:15px 0 0 0;
}
div.text {
	padding:36px 0 0 29px;
	background:#E9E9E9;
	height:109px;
	margin:0;
}
div#welcome.text {
	padding-right:230px;
}
div#main_logos table {
	width:100%;
	border:0;
	clear:both;
	margin-bottom:0px;
}
div#main_logos table td {
	border:0;
	border-right:1px solid #E5494C;
	height:90px;
	background-color:#DC0C10;
	vertical-align:middle;
	text-align:center;
	padding:0;
}
div#main_logos table td.coll1 {
width:175px;
*width:253px;
}
div#main_logos table td.coll1 img { margin: -26px 0 0 -57px;}
div#main_logos table td.coll2 {
	width:170px;
	*width:253px;
}
div#main_logos table td.coll2 img { margin: -12px 0 0 -72px;}
div#main_logos table td.coll3 {
	width:170px;
	*width:247px;
}
div#main_logos table td.coll3 img { margin: -17px 0 0 -57px;}
div#main_logos table td.coll4 {
	width:210px;
	*width:247px;
}
div#main_logos table td.coll5 {
	width:230px;
	*width:247px;
}
div#main_logos table td.coll5 img{margin:-18px 0 0 -95px;}
div#main_logos table td.coll4 img { margin: -30px 0 0 -75px;}
div#main_logos table td a { display:block; height:90px; position:relative; text-align:left; padding:0;  }
div#main_logos table td a:hover { background-color:#e95a54}
div#main_logos table td a img { position:absolute; top:50%; left:50%;}
div.titleHard {
	background:#4A4A4A;
	height:28px;
	padding:14px 0 0 32px;
	text-align:left;
}
div.titleHard2 {
	background:#4A4A4A;
	height:45px;
	padding:12px 0 0 32px;
	text-align:left;
}
div.titleLight {
	background:#E9E9E9;
	height:28px;
	padding:14px 0 0 32px;
	text-align:left;
}
div.LeftContent {
	width:506px;
}
div.RightContent {
	padding:34px 30px 0 28px;
	margin:0;
}
div.RightContent p {
	margin-top:10px;
	margin-bottom:0px;
}
span.title {
	text-transform:uppercase;
	margin-bottom:20px;
	display:block;
}
span.title b {
	color:#DC0C10;
	font-weight:bold;
	margin-right:7px;
	font-size:0.95em;
}
h2 {
	text-transform:uppercase;
	margin:0px;
	padding:0px;
	margin-bottom:15px;
	display:block;
	font-size:1.0em;
}
h2 b {
	color:#DC0C10;
	font-weight:bold;
	margin-right:7px;
	font-size:0.95em;
}
div.LeftContent a:link, div.RightContent a:link {
	color:#000;
	text-decoration:underline;
}
div.LeftContent a:visited, div.RightContent a:visited {
	color:#000;
	text-decoration:underline;
}
div.LeftContent a:hover, div.RightContent a:hover {
	text-decoration:none;
}
.grey {
	padding-bottom:34px !important;
}
/*News Main Page*/
.newsMain {
	margin-top:34px;
	padding-right:25px;
}
.newsMain table, .newsMain table td {
	border:0px;
	padding:0;
}
.newsMain strong {
	display:block;
	margin-bottom:9px;
}
.newsMain table td.date {
	vertical-align:top;
	font-size:0.9em;
	width:117px;
	padding-left:34px;
}
/*News Another Pages*/
.news {
	margin-top:23px;
	padding-right:25px;
}
.news table, .news table td {
	border:0px;
	padding:0;
}
.news table {
	margin-bottom:0px;
}
.news strong {
	display:block;
	margin-bottom:9px;
}
.news table td.date {
	vertical-align:top;
	font-size:0.9em;
	width:117px;
	padding-left:34px;
}
.newsMain table td.arhiv, .news table td.arhiv {
	padding-top:10px;
	padding-bottom:10px;
}
/*New Archive*/
div.news.archive {
	margin-top:18px;
	padding-right:0px;
	border-bottom:1px solid #969696;
}
div.news.archive table td.date {
	vertical-align:top;
	font-size:0.9em;
	width:108px;
	padding-left:0px;
	text-align:left;
}
div.news.archive table {
	margin-bottom:14px;
}
.lastMainNew {
	margin-bottom:60px;
}
/*FOOTER STYLE*/

div#footer {
	clear:both;
	background:#F6F6F5;
	bottom:0pt !important;
	bottom: -1px;
	height:40px;
	position:absolute;
	width:100%;
	padding:27px 0px 0 0px;
}
.footcenter {

}
#copy {
	float:left;
	color:#9B9B9A;
	margin-left:30px;
	_margin-left:15px;
}
#copy img {
	vertical-align:middle;
	margin-right:34px;
}
#create {
	float:right;
	margin-right:80px;
	_margin-right:40px;
}
#create img {
	vertical-align:middle;
	margin-left:26px;
}
#create a:link {
	color:#9B9B9A;
	text-decoration:none;
}
#create a:visited {
	color:#9B9B9A;
	text-decoration:none;
}
#create a:hover {
	text-decoration:underline;
}
table#SmallLogos {
	width:100%;
	border:0px;
	margin:0px;
}
table#SmallLogos td {
	border:0;
	border-right:1px solid #E5494C;
	height:64px;
	background-color:#DC0C10;
	vertical-align:middle;
	text-align:center;
	width:25%;
	padding:0px 0;
}
table#SmallLogos td a { display:block; height:64px; position:relative; padding:0; }
table#SmallLogos td a img {position:absolute; left:50%; top:50%;}
table#SmallLogos td a:hover { background-color:#E95A54 }
.red {
	color:#DC0C10;
}
/*Search Forms*/
.news_search {
	padding:21px 45px 0 30px;
}
.news_search form table {
	border:0;
	width:100%;
	padding:0;
	margin-bottom:0px;
}
.news_search form table td {
	border:0;
	padding:0;
	margin:0;
	vertical-align:middle
}
.news_search form table td input.search_but {
	background:#DC0C10;
	border:0px;
	color:#fff;
	font-weight:bold;
	padding:1px 4px 2px 4px;
	*padding-top:2px;
	*padding-bottom:2px;
}
.news_search form table td select {
	width:97%;
	padding:1px 0;
	margin:0;
}
.news_search form table td.select1 {
	width:51px;
}
.news_search form table td.select2 {
	width:162px;
*width:157px;
}
.news_search form table td.select3 {
	width:65px;
}
.news_search form table td.select1, .news_search table td.select2, .news_search table td.select3 {
	padding-right:4px;
}
.news_search form table td.Search_text {
	text-align:right;
	padding-right:7px;
*padding-right:3px;
	white-space:nowrap;
}
.news_search form table td.textsearch {
	width:330px;
	padding:0 7px 0 0;
}
.news_search form table td.textsearch input {
	width:97%;
	_width:99%;
}
.news_search form table td.check
{
vertical-align:top;
padding:0;
width:40%;
}
.news_search form table td.calendar
{
width:60%;
vertical-align:top;
padding:4px 0 0 0;
}
.news_search form table td.check div, .news_search form table td.calendar div
{
margin:4px 0 0 0;
*margin:0;
}
.news_search form table td.check input {
	margin:0 5px 0 5px;
}
.calend img
{
vertical-align:middle;
margin-right:5px;
}
div.rightdate
{
display:inline;
padding-left:30px;
}
/*Calendar*/
.calend_show
{
position:relative;
}
.calend_body
{
background:#fff;
position:absolute;
width:15em;
margin:0;
padding:0;
z-index:100;
}
.cal_head
{
height:20px;
vertical-align:middle;
background:#777777;
margin:0 !important;
padding:0;
color:#fff;
font-weight:bold;
font-size:0.8em;
padding:3px 5px 0 5px;
}
a.close
{
font-weight:bold;
font-size:1.2em;
color:#fff !important;
float:right;
padding:0;
margin:0; text-decoration:none;
}
#cal_table
{
border:0;
width:100%;

}
#cal_table td, #cal_table th
{
height:23px;
text-align:center;
padding:0;
border:0;
vertical-align:middle;
}
#cal_table td.year, #cal_table td.month
{
text-align:center;
vertical-align:middle;
}

#cal_table td.year a:active, #cal_table td.month a:active
{
background:none;
}
#cal_table td.month
{
padding-bottom:5px;
}
#cal_table td.year span, #cal_table td.month span
{
margin:0 5px;
}
#cal_table td.year a, #cal_table td.month a
{
display:inline !important;
}
#cal_table td.month select
{
width:60%;
margin:0;
}
#cal_table a{display:block; margin:0; font-size:0.9em;}
#cal_table a:link{text-decoration:none; color:#006599;}
#cal_table a:visited{text-decoration:none; color:#006599;}
#cal_table a:hover{text-decoration:underline; color:#006599;}
#cal_table a:active{text-decoration:none; color:#006599; background:#DDDDDD;}
#cal_table td.weekend a:link, #cal_table td.weekend a:visited, #cal_table td.weekend a:hover, #cal_table td.weekend a:active{color:#FF3334 !important;}
#cal_table th
{
text-align:center !important;
background:#CCCCCC;
}
#time
{
margin-top:15px;
border:0;
width:100%;
font-size:0.8em
}

.ctr td{
	text-align:center !important;
}
.year a{
	text-decoration:none !important
}
.bl a{
	color:#006599 !important;
	text-decoration:none !important;
}
.weekend  a{
	color:#FF3334 !important;
	text-decoration:none !important;
}
.bl td{
	text-align:center !important;
}
#time td
{
border:0;
}
#time td select
{
width:auto;
margin-right:3px;
}
#time td.time{
padding-left:5px;
}
#time td.okbut, 
#time td.resetbut{
padding:10px 0 5px 0;
}
#time td.resetbut{
padding-left:5px;
}
#time td.okbut
{
text-align:right;
padding-right:3px;
}
td.okbut input, td.resetbut input
{
border:1px solid #333333;
background:#D6CFC7;
padding:0 7px;
}
.okbut{
	text-align:right !important;
}
.time {
	text-align:center !important;
}
/*Calendar end*/
.backnext {
	width:18em;
	margin:auto;
	margin-top:15px;
	border:0;
	margin-bottom:0px;
}
.backnext td {
	border:0px;
	padding-bottom:0px;
}
backnext a{
text-decoration:none;
color:red;
}

.test {
text-decoration:none !important;
}

.text2 {
	padding:29px 30px;
}
.text2 ul, .text2 ul li {
	margin:0px;
	padding:0px;
}
.text2 ul li {
	margin-left:15px;
*margin-left:20px;
}
div.LeftContent div.text2 ul li a:link {
	color:#0E71C5;
	line-height:1.5em;
}
div.LeftContent div.text2 ul li a:visited {
	color:#0E71C5;
	line-height:1.5em;
}
div.LeftContent div.text2 ul li a:hover {
	color:#0E71C5;
	line-height:1.5em;
}
div.LeftContent div.text2 ul li a:active {
	color:#0E71C5;
	line-height:1.5em;
}
.cont_img img {
	border:1px solid #000;
	float:left;
	margin-right:10px;
	margin-bottom:5px;
}
.marg_bot {
	margin-bottom:17px;
}
span.year {
	font-weight:bold;
	font-size:2em;
	font-family:"Arial Narrow", Arial, Helvetica, sans-serif;
	margin:30px 0 17px 0;
	display:block;
}
Div.RightContent.contacts a:link {
	color:#0E71C5;
}
Div.RightContent.contacts a:visited {
	color:#0E71C5;
}
Div.RightContent.contacts a:hover {
	color:#0E71C5;
}
Div.RightContent.contacts a:active {
	color:#0E71C5;
}
.contform {
	padding:69px 12px 60px 9px;
}
.contform div {
	background:#F7F7F7;
	border:1px solid #CCCBC7;
	padding:25px 16px 7px 16px;
}
.contform div form table {
	width:100%;
	border:0px;
	padding:0;
	margin:0;
}
.contform div form table td {
	border:0;
	margin:0;
	vertical-align:middle;
	padding:0;
}
.contform div form {
	padding:0;
	margin:0;
}
.contform div form table td.cont_send {
	vertical-align:bottom;
	width:25%;
	text-align:center;
}
.contform div form table td.cont_send input {
	background:url(../images/send_but.gif) center no-repeat;
	border:0;
	color:#fff;
	font-family:Tahoma, Arial, Helvetica, sans-serif;
	font-size:11px;
	padding:4px 0;
	text-align:center;
	width:100%;
}
.contform div form table td textarea {
	overflow:auto;
	width:95%;
	padding-right:0;
	float:left;
}
.contform div form table td input {
	width:90%;
	padding-right:0;
}
.contform div form table td select {
	width:97%;
	_width:96%;
	margin:8px 0
}
.contform sup {
	color:#6B0305;
	font-size:14px;
	margin:0 2px 0 2px;
}
div.cont_comm {
	margin:0;
	border:0;
	padding:0;
	font-size:0.9em;
	color:#4A4A4A;
	*padding-bottom:7px;
}
/*Scrolling dates history*/
.jcarousel-item a {
	text-decoration:none !important;
	margin:0;
	color:#4A4A4A !important;
	font-weight:bold;
	font-size:15px;
	font-family:Arial, Helvetica, sans-serif;
}
.jcarousel-list li {
	padding:22px 0 0 0 !important;
}
.jcarousel-item.active a {
	color:#DC0C10 !important;
	font-size:18px;
}
.jcarousel-item.active {
	background:url(../images/activedate.gif) top repeat-x;
}
li.bul {
	width:6px !important;
	height:37px !important;
	background:url(../images/date_bul.gif) center no-repeat;
	margin:0 5px !important;
}

.im{position:absolute; top:0; right:0;}
.wfb { position:absolute; margin-left:268px;}