/* General elements */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}
::-moz-selection {
    background: #ec7e3c;
	color: #fff;
    text-shadow: none;
}
::selection {
    background: #ec7e3c;
	color: #fff;
    text-shadow: none;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
audio,
canvas,
img,
svg,
video {
    vertical-align: middle;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
textarea {
    resize: vertical;
}
a {
	color: #ea6718;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	background: url('../img/ellipsis.png') left center no-repeat;
	color: #ec7e3c;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 600;
	text-indent: 32px;
}
h1 {
	font-size: 28px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 16px;
}
h5 {
	font-size: 14px;
}
h6 {
	font-size: 12px;
}
table {
	margin-bottom: 40px;
	width: 100%;
}
caption,
thead th {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}
caption {
	background: #ea6718;
	border: 1px solid #e0e5ea;
	border-bottom: none;
	padding: 10px 0;
	text-transform: uppercase;
	width: 100%;
}
thead th {
	background: #EA6718;
	border: 1px solid #e0e5ea;
	padding: 5px;
}
tbody tr {
	background: #fff;
}
tbody tr:nth-child(odd) {
   background-color: #f0f2f5;
}
tbody td {
	border: 1px solid #e0e5ea;
	padding: 10px;
}
address {
	font-style: normal;
}

/* Layout */
body {
	background: #dee3e8 url('../img/bg.jpg') top center no-repeat;
	color: #000;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	padding-top: 10px;
}
#header {
	margin-bottom: 20px;
}
#nav {
	line-height: 80px;
}
#nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}
#nav ul li {
	display: inline-block;
	margin: 0 15px;
}
#nav ul li:last-child {
	margin-right: 0;
}
#nav ul li a {
	color: #000;
}
#nav ul li a.active,
#nav ul li a:hover {
	color: #ea6718;
	text-decoration: none;
}
#slider {
	background: #fff;
	margin: 0 auto 40px;
	position: relative;
	width: 940px;
}
#content {
	font-size: 14px;
}
#slider img {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
#slider:before,
#slider:after {
	background: #777;
	bottom: 15px;
	-webkit-box-shadow: 0 15px 10px #777;
    -moz-box-shadow: 0 15px 10px #777;
    box-shadow: 0 15px 10px #777;
	content: "";
	left: 10px;
	max-width: 500px;
	position: absolute;
	top: 90%;
	-webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
	width: 50%;
	z-index: -1;
}
#slider:after {
	left: auto;
	right: 10px;
	-webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
}
#content {
	overflow: hidden;
	position: relative;
}
.article {
	border-bottom: 1px dotted #888;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.article .date {
	color: #707070;
	display: block;
}
.article .title {
	font-size: 18px;
}
.article .readmore {
	background: #dee3e7;
	bottom: -10px;
	display: inline;
	padding-left: 10px;
	position: absolute;
	right: 0;
	top: auto;
}
#footer {
	background: #fff;
	color: #999;
	font-size: 14px;
	line-height: 40px;
	width: 100%;
}

/* Forms */
form .row {
	margin-bottom: 10px;
}
form .row:last-child {
	margin-bottom: 0;
}
input,
textarea {
	background: #fff;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	color: #222;
	padding: 6px 15px;
	width: 100%;
}
input[type="checkbox"],
input[type="radio"] {
	margin-right: 6px;
	position: relative;
	top: 2px;
	width: auto;
}
textarea {
	min-height: 200px;
}
input[placeholder] {
	color: #222;
}
::-webkit-input-placeholder {
    color: #222;
}
:-moz-placeholder {
    color: #222;
    opacity:  1;
}
::-moz-placeholder {
    color: #222;
    opacity:  1;
}
:-ms-input-placeholder {
    color: #222;
}

/* Helpers */
.gallery {
	font-size: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gallery li {
	display: inline-block;
	font-size: 14px;
	margin-bottom: 12px;
}
.gallery li + li {
	margin-left: 12px;
}
.gallery li:nth-child(5n+1),
.nth-child-6n {
	margin-left: 0;
}
.gallery li img {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}
.img {
	float: left;
	margin: 5px 20px 10px 0;
}
.readmore {
	position: relative;
	top: -10px;
}
.row {
	margin-bottom: 30px;
}
.block,
.button {
    background: #ea6718;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    outline: none;
    padding: 6px 12px;
    text-align: center;
}
.button.button-lg {
	padding: 6px 44px;
}
.wojbutton {
    background: #ea6718;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    margin-top: 5px;
    color: #fff;
    display: inline-block;
    outline: none;
    padding: 6px 12px;
    text-align: center;
}
.wojbutton.button-lg {
	padding: 6px 44px;
}
.block {
	display:table;
	font-size: 20px;
	height: 75px;
	margin: 0;
	padding: 0;
	width: 100%;
}
.block .button {
	display: table-cell;
	height: 75px;
	margin: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle; 
	width: 100%;
}
.text-uppercase {
	text-transform: uppercase;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.hidden {
    display: none !important;
    visibility: hidden;
}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}
.invisible {
    visibility: hidden;
}
.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}
.clearfix:after {
    clear: both;
}

/* Slider */
ul.bjqs {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: none;
}
li.bjqs-slide {
    position: absolute;
    display: none;
}
ol.bjqs-markers {
	bottom: 13px;
    list-style: none;    
    margin: 0;
	padding: 0;
	position: absolute;
	right: 15px;
	text-align: right;
}
ol.bjqs-markers li {
    display: inline;
}
ol.bjqs-markers li a {
	background: url('../img/bullets.png') 0 0 no-repeat;
	color: #fff;
    display: inline-block;
	font-size: 0;
	height: 14px;
	line-height: 14px;
	margin: 0 8px;
	overflow: hidden;
	outline: none;
	position: relative;
	text-align: center;
	width: 14px;
}
ol.bjqs-markers li a:last-child {
	margin-right: 0;
}
ol.bjqs-markers li a:hover,
ol.bjqs-markers li.active-marker a {
	background: url('../img/bullets.png') 0 -14px no-repeat;
	color: #ec7e3c;
}
p.bjqs-caption {
	background: rgb(0,0,0);
	background: rgba(0,0,0, 0.5);
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	-o-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;
	color: #fff;
	bottom: 0;
    display: block;    
    margin: 0;
    padding: 15px;
    position: absolute;    
	width: 100%;
}