
* {
	padding: 0;
	margin: 0;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
	background: #fff;
}
body,
a {
	color: #1d1d1b;
}
a   {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s ease-in;
}
	a.application {
		font-weight: 600 !important;
		color: #0d3880;
	}
	a.application:hover {
		text-decoration: underline;
	}
	a.button {
		background: rgba(240, 145, 0, 0.8);
		border: 1px solid rgba(240, 145, 0, 1);
		color: #fff;
		padding: 9px 17px;
		border-radius: 7px;
		font-size: 20px;
	}
	a.button:hover {
		color: #fff;
		text-decoration: none;
		background: rgba(240, 145, 0, 1);;
	}
h1,
a:hover,
.important {
	color: #0d3880;
}
.main {
	font: 15px/1.35 Dosis, Arial, sans-serif;
	margin: 25px auto;
	width: 740px;
	background: #e1e1df;
	-moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
	border: 2px solid #e1e5ea;
	font-weight: 500;
}
.head,
.comp_intro,
.content {
    padding: 30px 40px;
}
.head {

}
.comp_intro {

}
.content {
	background: #fff;
	position: relative;
	z-index: 1;
	margin-left: 80px;
	margin-right: 80px;
	/*margin-left: 70px;
	padding-top: 0;*/
}
	/*.content:before {
		content: '';
		background: #fff;
		width: 100%;
		height: 150px;
		transform: skewY(3deg);
		position: absolute;
		top: -30px;
		left: 0;
		z-index: -1;
	}*/
.box_left {
    float: left;
    width: 48%;
}
.box_right {
    float: right;
    width: 48%;
}
.centered
{text-align: center;}

address {
    font-style: normal;
}
.footer {
    background: #fff;
	margin-left: 80px;
	margin-right: 80px;
	padding: 0 40px 30px 40px;
}
.bigfontbox {
	font-size: 1.2em;
	position: absolute;
	bottom: 45px;
	width: 48%;
	right: 0;
}
.footer_left {
	float: left;
}
.footer_right {
	float: right;
	margin-top: 25px;
}
p,
h1,
ul {
	margin: 0px 0px 15px 0px;
}
.warning { color: red; font-weight: bold; }
	b, strong {
		font-weight: 700;
	}
h1 {
	font-size: 30px;
	font-weight: 600;
	margin: 20px 0 10px 0;
}
.h1_small{
    font-size: 18px;
	font-weight: 500;
	color: #000;
	/* display: inherit; */
}
h2 {
	font-weight: 600;
	font-size: 16px;
	margin: 30px 0px 5px 0px;
}
ul  {
    padding-left: 15px;
   	/*list-style-image: url(images/li.png);*/
    list-style-type: disc;
}
li  {
    padding: 0 0 0 5px;
}
/*
li:last-child   {
    padding: 0 0 0px 5px;
}*/
div.breaker {
  clear: both;
  overflow: hidden;
}
img {
  	border: none;
  	max-width: 100%;
  	height: auto;
}
.nobr {
	white-space: nowrap;
}
/* SLIDER ANIMATION */
#content-slider {
    width:100%;
    margin: 0 auto;
}


/* SLIDER */
#slider {
    width:100%;
    margin:0 auto;
    overflow:visible;
    position:relative;
}
#mask {
    overflow:hidden;
    padding-bottom:59%;
}
#slider ul {
    margin:0;
    padding:0;
    position:relative;
}
#slider li {
    width:100%;
    padding-bottom:59%;
    position:absolute;
    top:-100%;
    list-style:none;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

#slider li.firstanimation {
    -moz-animation:cycle 12s linear infinite;
    -webkit-animation:cycle 12s linear infinite;
    animation:cycle 12s linear infinite;
    background-image: url("../images/slider_1_a549f9a193.jpg");
}
#slider li.secondanimation {
    -moz-animation:cycletwo 12s linear infinite;
    -webkit-animation:cycletwo 12s linear infinite;
    animation:cycletwo 12s linear infinite;
    background-image: url("../images/slider_2_68c269cfa8.jpg");
}
#slider li.thirdanimation {
    -moz-animation:cyclethree 12s linear infinite;
    -webkit-animation:cyclethree 12s linear infinite;
    animation:cyclethree 12s linear infinite;
    background-image: url("../images/slider_3_1d63783a4c.jpg");
}


#slider:hover li,
#slider:hover .progress-bar {
    -moz-animation-play-state:paused;
    -webkit-animation-play-state:paused;
    animation-play-state:paused;
}

/* ANIMATION */
@-moz-keyframes cycle {
    0%  { opacity: 1;}
    4%  { opacity: 1;}
    29% { opacity: 1; z-index:0; }
    33% { opacity: 0; z-index:0; }
    34% { opacity: 0;z-index:-1; }
    66% { opacity: 0;z-index:-1; }
    92% { opacity: 0;z-index:0; }
    96% { opacity: 0;}
    100%{ opacity: 1;}
}

@-moz-keyframes cycletwo {
    0%  {opacity: 0; }
    29% {opacity: 0; }
    33% {opacity: 1;}
    44% {opacity: 1; }
    62% {opacity: 1; z-index:0; }
    66% {opacity: 0; z-index:0; }
    96% {opacity: 0; z-index:-1; }
    100%{opacity: 0; z-index:-1; }
}
@-moz-keyframes cyclethree {
    0%  {opacity: 0; }
    62% {opacity: 0; }
    66% {opacity: 1; }
    84% {opacity: 1; }
    96% {opacity: 1; z-index:0; }
    100%{opacity: 0; z-index:0; }
}

@-webkit-keyframes cycle {
    0%  { opacity: 1;}
    4%  { opacity: 1;}
    29% { opacity: 1; z-index:0; }
    33% { opacity: 0; z-index:0; }
    34% { opacity: 0;z-index:-1; }
    66% { opacity: 0;z-index:-1; }
    92% { opacity: 0;z-index:0; }
    96% { opacity: 0;}
    100%{ opacity: 1;}
}

@-webkit-keyframes cycletwo {
    0%  {opacity: 0; }
    29% {opacity: 0; }
    33% {opacity: 1;}
    44% {opacity: 1; }
    62% {opacity: 1; z-index:0; }
    66% {opacity: 0; z-index:0; }
    96% {opacity: 0; z-index:-1; }
    100%{opacity: 0; z-index:-1; }
}
@-webkit-keyframes cyclethree {
    0%  {opacity: 0; }
    62% {opacity: 0; }
    66% {opacity: 1; }
    84% {opacity: 1; }
    96% {opacity: 1; z-index:0; }
    100%{opacity: 0; z-index:0; }
}

@keyframes cycle {
    0%  { opacity: 1;}
    4%  { opacity: 1;}
    29% { opacity: 1; z-index:0; }
    33% { opacity: 0; z-index:0; }
    34% { opacity: 0;z-index:-1; }
    66% { opacity: 0;z-index:-1; }
    92% { opacity: 0;z-index:0; }
    96% { opacity: 0;}
    100%{ opacity: 1;}
}

@keyframes cycletwo {
    0%  {opacity: 0; }
    29% {opacity: 0; }
    33% {opacity: 1;}
    44% {opacity: 1; }
    62% {opacity: 1; z-index:0; }
    66% {opacity: 0; z-index:0; }
    96% {opacity: 0; z-index:-1; }
    100%{opacity: 0; z-index:-1; }
}
@keyframes cyclethree {
    0%  {opacity: 0; }
    62% {opacity: 0; }
    66% {opacity: 1; }
    84% {opacity: 1; }
    96% {opacity: 1; z-index:0; }
    100%{opacity: 0; z-index:0; }
}



div#cp { position:absolute; left:0px; top:0px; background: transparent url(../images/ryZ0A1_921c992f03.gif) no-repeat left top; }
a.www:active { background: transparent url(../images/ryZ0A3_59e8415614.gif) no-repeat left top; }
a.logo:active { background: transparent url(../images/ryZ0A5_146b640bc0.gif) no-repeat left top; }
a.application:active { background: transparent url(../images/ryZ0A4_d788a12449.gif) no-repeat left top; }
a.mail:active { background: transparent url(../images/ryZ0A2_fbf8beb40d.gif) no-repeat left top; }

#keywords { display: none; }


@media only screen and (max-width:750px) {
    * {
    	padding: 0;
    	margin: 0;
    	-moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
    .main {
    	margin: 2em auto;
        width: 90%;
    }
    body {
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
	.footer,
	.comp_intro,
    .content {
    	padding: 6%;
		margin: 0;
     }
    .box_left,
    .box_right {
        float: none;
        width: 100%;
    }
	.bigfontbox { position: static; }
	/*
    .footer {
        text-align: center;
    }
	*/
    .footer_left,
    .footer_right {
    	float: none;
		width: 100%;
    }
    .footer_right {
    	margin: 0 0 15px 0;
    }
	.none_mobile {
		display: none;
	}
}