@charset "UTF-8";

/* COLORS */

/* nav a */
.violetgray-dark { color: #45404F; }
/* body, h3, thead th-bgcolor, th */
.violetgray { color: #6F6582; }
/* h2 */
.violetgray-light { color: #C0B5D5; }
/* thead td-bgcolor, thead th */
.violetgray-lighter { color: #D6CEE5; }
	.bgcolor-violetgray-lighter { background-color: #D6CEE5 !important; }

/* td-text*/
.green-dark { color: #40A000; }
/* a:link color, h1, borders container & tables */
.green { color: #55d500; }
/* td-bgr */
.green-light {  /* color: #D9FFAF; */
				color: #E0FFBF; }

/* LAYOUT */
html, body, div, input, textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
html, body {
	width: 100%;
	/*height: 100%;*/
	margin: 0;
	padding: 0;
	/*position: relative;*/
}
body {
	padding-top: 10px;
	padding-bottom: 20px;
	
	background-image: url(images/header-2.png);
	background-repeat: no-repeat;
	background-position: center 0px;
	background-color: #EAEAEA;
}
#container {
	position: relative;
	
	max-width: 1004px;
	margin: auto;
	/*padding: 0 40px;*/
	border: solid 1px transparent; /* #C6BCDB ~ violetgray-lighter = only dif color */
	
	background: #efefef;
	background-color: transparent;
}
#content {
	position: relative;
	margin-top: 180px;
	padding: 30px 40px;
	
	background: #f6f6f6;
	box-shadow: 0px 1px 3px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 5px gray\9;
	
background: #ffffff;
background: -moz-linear-gradient(top,  #ffffff 30%, #f5f5f5 50%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(30%,#ffffff), color-stop(50%,#f5f5f5));
background: -webkit-linear-gradient(top,  #ffffff 30%,#f5f5f5 50%);
background: -o-linear-gradient(top,  #ffffff 30%,#f5f5f5 50%);
background: -ms-linear-gradient(top,  #ffffff 30%,#f5f5f5 50%);
background: linear-gradient(to bottom,  #ffffff 30%, #f5f5f5 50%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5',GradientType=0 );

}
#footer {
	max-width: 1004px;
	margin: auto;
	font-size: 12px;
}
#footer a {
	text-decoration: none;
}
#footer div {
	float: left;
	width: 32%; /* or 30% x 5% */
	margin-right: 2%;
}
#footer div:last-child {
	margin-right: 0;
}

/* MENU */
#menu {  }
#menu ul {
	position: absolute;
	display: block;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	z-index: 100;

	background: white;
	box-shadow: 0px 1px 3px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 5px gray\9;
}
#menu ul li {
	display: block;
	float: left;
}
#menu ul li a {
	height: 32px;
	padding: 0 10px;

	display: table-cell;
	vertical-align: middle;

	text-align: center;
	text-decoration: none;
	color: #444;
	color: #45404F; /* very dark violet */
	
	/* border-right: dotted 1px #C0B5D5; @1 here */
	cursor: default;
}
#menu ul li a:link {
	cursor: pointer;
}
#menu ul li a:hover {
	opacity: .5;
	filter: alpha(opacity=50);
}
/* .level2, .level3 */
#menu ul li ul {
	display: none;
	top: 32px;
}
#menu ul li:hover > ul {
	display: block;
}
/* .level3 = #menu ul li ul li ul li a = #menu ul ul ul li a */
#menu ul ul ul li {
	width: 20%;
}
#menu ul ul ul li a {
	/*width: 179px;*/
	height: 200px;
	padding: 10px;
	
	border-right: dotted 1px #C0B5D5; /* @1 or here */
	border-bottom: dotted 1px #C0B5D5;
	background: no-repeat center 30%;
}
/*#menu ul ul ul li:last-child a,*/
#menu ul ul ul li:nth-child(5) a,
#menu ul ul ul li:nth-child(10) a {
	border-right: none;
}
#menu ul ul ul li:nth-child(6) a,
#menu ul ul ul li:nth-child(7) a,
#menu ul ul ul li:nth-child(8) a,
#menu ul ul ul li:nth-child(9) a,
#menu ul ul ul li:nth-child(10) a {
	border-bottom: none;
}
#menu ul ul ul li a div {
	width: 180px;
	height: 150px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
#menu ul ul ul li a img {
	max-width: 150px;
	max-height: 150px;
	width: 100%;
}
/* home icon */
#menu ul li#home {
	/*width: 36px; icon-only */
}
#menu ul li#home a {
	background: url(images/icon-home-16.gif) no-repeat 10px center;
	padding-left: 36px;
	/*color: transparent;*/
}
/* MENU END */

/* COMMON */
body, th, td, li, input, textarea, button {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #6f6582;
}
a {
	color: #55d500;
}
a:hover,
input:hover {
	opacity: .5;
	filter: alpha(opacity=50);
}
.hr {
	border-bottom: solid 1px #55d500;
}
.indent {
	text-indent: 4em;
}
.left {
	text-align: left !important;
}
.center {
	text-align: center !important;
}
.justify {
	text-align: justify !important;
}
p {
	text-align: justify;
}
.comment {
	text-align: center;
	padding: 5px;
	border: dotted 1px #55d500;
	background-color: #E0FFBF;
}
.comment:last-child {
	position: relative;
	top: 20px;
}
.box {
	padding: 5px;
	border: dotted 1px #55d500;
	background-color: #E0FFBF;
	color: #40A000;
}
.pdf {
	padding-left: 25px;
	background: url(images/icon-pdf.png) no-repeat left center;
}
.pdf.box {
	padding: 5px 5px 5px 25px;
	box-shadow: 0 1px 2px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 4px gray\9;
	background-color: #E0FFBF;
}
p.strong {
	text-align: center;
	font-weight: bold;
}
h1, h2, h3 {
	letter-spacing: .1em;
	font-weight: normal;
	text-align: left;
	
	border-bottom: dotted 1px;
}
h1 {
	letter-spacing: .05em;
	font-size: 24px;
	color: #55D500;
	
	height: 22px;
	border-bottom-color: #55D500;
}
h2 {
	font-size: 18px;
	color: #C0B5D5;
	
	height: 16px;
	border-bottom-color: #C0B5D5;
}
h3 {
	font-weight: bold;
	font-size: 16px;
	color: #6F6582;
	
	height: 16px;
	border-bottom-color: #6F6582;
}
img, img a {
	border: none;
}
#content > h2 {
	border: none;
}
#content > h2 + img {
	margin-top: -2em;
}
#content > h2 + img,
#content > h2.left + img,
img.right {
	float: right;
	margin-left: 30px;
	max-height: 150px;
}
#content > h2.right {
	text-align: right;
}
#content > h2.right + img,
img.left {
	float: left;
	margin-left: 0;
	margin-right: 30px;
	max-height: 150px;
}
hr {
	border: none;
	border-bottom: dotted 1px #55D500;
	padding-top: 20px;
}
.border {
	padding: 10px;
	/*border: solid 1px #C0B5D5;*/
}
.clear {
	clear: both;
}
table.layout {
	border-collapse: collapse;
	width: 100%;	
}
table.layout th,
table.layout td {
	padding: 0;
/*	text-align: left;*/
	vertical-align: top;
}
table.tablic {
	border-collapse: collapse;
	width: 100%;
}
table.tablic th,
table.tablic td {
	padding: 4px;
	background-color: #E0FFBF;
	border: dotted 1px #55d500;
	vertical-align: middle;
}
table.tablic th {
	color: #6F6582;
}
table.tablic td {
	color: #40A000;
}
table.tablic thead th {
	background-color: #6F6582;
	color: #D6CEE5;
}
table.tablic thead td {
	background-color: #D6CEE5;
}
/* CONTACTS / CONTACT FORM */
.contacts {
	border-collapse: collapse;
	width: 400px;
}
.contacts th,
.contacts td {
	padding: 4px 0;
}
.contacts .botfield {
	display: none;
}
.contacts .label {
	width: 100px;
}
.contacts .button {
	padding: 4px 0px;
}
.contacts input,
.contacts textarea {
	width: 100%;
	padding: 2px;
	border: none;
	background-color: white;
	
	box-shadow: 0px 1px 3px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 5px gray\9;
}
.contacts input {
	height: 32px;
}
.contacts .button input {
	background: #E0FFBF url(images/icon-check-16.png) no-repeat 40% center;
	border: solid 1px white;
	font-weight: bold;
	letter-spacing: .1em;
	cursor: pointer;
}
/* END OF CONTACTS / CONTACT FORM */

/* TAB ENGINE by fake radio-buttons */
.tab_container {
	position: relative;
	margin-top: 30px;
	margin-bottom: 50px;
	height: 310px; /* 350px optimized for x768px */
	white-space: nowrap; /* to NOWRAP .tab's row */
	
	/* 2014-07-07 */
	margin: 40px -40px 15px;
	margin: 40px 0px 35px;
}
input[type=radio].tab,
input[type=radio].tab + label + .tab_content {
	display: none;
}
input[type=radio].tab + label {
	border: 1px solid white;
	/* background: #efefef;
	box-shadow: 0px 1px 3px gray; */

	padding: 10px;
	text-transform: uppercase;
	cursor: pointer;
}
input[type=radio].tab + label:hover {
	opacity: .5;
	filter: alpha(opacity=50);
}
input[type=radio].tab:checked + label {
	background: white;
	
	/* 2014-07-01 try */
	box-shadow: 0 1px 2px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 4px gray\9;
}
input[type=radio].tab:checked + label + .tab_content {
	display: block;
	
	position: absolute;
	width: 100%;
	margin-top: 10px;
	padding: 20px;
	overflow: auto;
	z-index: 50;

	height: 100%; /* ? */
	
	background: white;
	box-shadow: 0px 1px 2px silver; /* #c0b5d5 */
	border-top: solid 1px silver;
	border-bottom: solid 1px silver;
	white-space: normal; /* disable NOWRAP inherited from parent */
	
	/* 2014-07-01 try */
	box-shadow: 0 1px 2px gray;
	/* IE 6-10 */	box-shadow: 0px 1px 4px gray\9;
	border: solid 1px white;
}
/* auto_heighted .tab_content */
input[type=radio].tab:checked + label + .tab_content.video,
input[type=radio].tab:checked + label + .tab_content.auto_height,
.tab_container.auto_height input[type=radio].tab:checked + label + .tab_content {
	height: auto;
}

/* #CONTAINER fit to screen (#footer below visible area) 
html, body,
#container, #content {
	height: 100%;
}
body {
	padding-bottom: 10px; /* override * /
}
#menu ul {
	top: 0;
}
#container {
	padding-top: 180px; /* inner element's padding turn to this one's margin * /
}
#content {
	margin-top: 0; /* override * /
}
.tab_container,
.comment:last-child {
	position: absolute;
	left: 40px;
	right: 40px;
}
.tab_container {
	height: auto; /* override * /
	top: 110px;
	bottom: 80px;
}
.comment:last-child {
	top: auto; /* override * /
	bottom: 10px;
}
*/

.col {
	float: left;
	width: 50%;
	padding: 10px;
}
.col:first-child { padding-right: 10px }
.col:last-child  { padding-left:  10px }