/*********************************************************************************/
/* Reset */
@import "css-reset.css";

/*********************************************************************************/
/* Basic
/*********************************************************************************/	
body{	
    background: #f6f6f6 url('/images/bg.jpg') repeat center center;
	color: #000;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 17px;    
    min-width: 320px;
    line-height: 140%;
}

.clr{
	clear: both;
}

a{
	text-decoration: none;
    color: #107e91;
    cursor: pointer;
}

a:hover{
    color: #58626e;
}

.flex{
    display: -webkit-box;
    display: -webkit-flex;    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;        
}

.page{
	width: 1180px;
	margin: 0 auto;	
    height: 100%;
}

* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}
/*********************************************************************************/
/* Header
/*********************************************************************************/
header{        
    background: #f6f6f6 url('/images/bg.jpg') repeat center center;   
    position: relative;
    z-index: 100;
    height: 85px;
}

.banner-shadow{
    max-width: 1260px;
}

img.banner-img-shadow{
    max-width: 960px;
    width: 75%;
    position: relative;
    display: block;
}

header .page.flex{
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    position:relative;
}

nav{
    width: 100%;
    color: #fff;
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */    
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */    
}
.language{
    position:absolute;
    top:5px;
    right:15px;
}
.language a{
    opacity:0.33;
}
.language a.active{
    opacity:1;
}
.language img{
    height:16px;
}

#cssmenu,#cssmenu ul,#cssmenu ul li,#cssmenu ul li a,#cssmenu{
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
}

#cssmenu ul{
    font-size: 0;
    text-align: right;
}

#cssmenu:after,#cssmenu > ul:after{
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.menu-head{
    display: none;
}

#cssmenu > ul > li{
    position: relative;
    display: inline-block;
}

#cssmenu > ul > li:not(:last-child):after{    
    background-image: url('/images/menu-separator.png');
    background-size: cover;
    width: 1px;
    height: 5px;
    text-align: center;
    vertical-align: middle;        
    content: "";    
    display: block;
    position: absolute;
    right: 0;
    top: 13px;
}

#cssmenu > ul > li > a{   
    text-decoration: none;      
    display: block;
    font-size: 15px;
    color: #6d6e71;    
    padding: 5px 10px;
    text-transform: uppercase;        
    margin: 0 5px;
}

#cssmenu > ul > li a:hover,#cssmenu ul li.active a:hover,#cssmenu ul li.active a,#cssmenu ul li.has-sub.active:hover{
    border-radius: 15px;
    -webkit-box-shadow: inset 0px 2px 1px 1px rgba(0,0,0,0.35);
    -moz-box-shadow: inset 0px 2px 1px 1px rgba(0,0,0,0.35);
    box-shadow: inset 0px 2px 1px 1px rgba(0,0,0,0.35);    
}

#cssmenu > ul > li.has-sub > a{
    padding-right:30px
}

#cssmenu > ul > li.has-sub > a:after{
    position:absolute;
    top:22px;
    right:11px;
    width:8px;
    height:2px;
    display:block;
    background:#ddd;
    content:'';
}

#cssmenu > ul > li.has-sub > a:before{
    position:absolute;
    top:19px;
    right:14px;
    display:block;
    width:2px;
    height:8px;
    background:#ddd;
    content:'';
    -webkit-transition:all .25s ease;
    -ms-transition:all .25s ease;
    transition:all .25s ease
}

#cssmenu > ul > li.has-sub:hover > a:before{
    top:23px;
    height:0;
}

#cssmenu ul ul{
    position:absolute;
    left:-9999px;
}

#cssmenu ul ul li{
    height:0;
    -webkit-transition:all .25s ease;
    -ms-transition:all .25s ease;
    background:#333;
    transition:all .25s ease
}
    
#cssmenu li:hover > ul{
    left:auto
}

#cssmenu li:hover > ul > li{
    height:35px
}

#cssmenu ul ul ul{
    margin-left:100%;
    top:0
}

#cssmenu ul ul li a{
    border-bottom:1px solid rgba(150,150,150,0.15);
    padding:11px 15px;
    width:170px;
    font-size:12px;
    text-decoration:none;
    color:#000;
    font-weight:400;
}

#cssmenu ul ul li:hover > a,#cssmenu ul ul li a:hover{
    color:#fff
}

#cssmenu ul ul li.has-sub > a:after{
    position:absolute;
    top:16px;
    right:11px;
    width:8px;
    height:2px;
    display:block;
    background:#ddd;
    content:'';
}

#cssmenu ul ul li.has-sub > a:before{
    position:absolute;
    top:13px;
    right:14px;
    display:block;
    width:2px;
    height:8px;
    background:#ddd;
    content:'';
    -webkit-transition:all .25s ease;
    -ms-transition:all .25s ease;
    transition:all .25s ease;
}

#cssmenu ul ul > li.has-sub:hover > a:before{
    top:17px;
    height:0;
}

#cssmenu ul ul li.has-sub:hover,#cssmenu ul li.has-sub ul li.has-sub ul li:hover{
    background:#363636;
}

#cssmenu ul ul ul li.active a{
    border-left:1px solid #333
}

#cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active> a{
    border-top:1px solid #333
}

/*********************************************************************************/
/* Content
/*********************************************************************************/

h1{        
    font-size: 30px;        
    text-align: center;
    margin: 50px 0;
}

hr{
    width: 80%;    
    display: block;
    height: 1px;
    border: 0;
    border-top: 2px solid #6d6e71;    
    padding: 0; 
    margin: 40px auto;    
}

button, a.button{
    padding: 10px 20px;
    text-transform: uppercase;
    color: #fff;
    background-color: #59bdce;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button:hover, a.button:hover{
    background-color: #58626e;
}

a.button{
    display:inline-block;
}

.banner-container{
    background-size: cover;
    background-repeat: no-repeat;	
	background-position: center top;
	width: 100%;    
    position: relative;
    z-index: 1;    
}

.banner-container .page{
    padding-top: 30px;
    position: relative;
}

#prev{
    position: absolute;
    left: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    background-image: url('/images/banner-arrow-prev.png');
    z-index: 100;
}

#prev:hover, #next:hover{
    cursor: pointer;
}

#next{
    position: absolute;
    right: 0;
    top: 50%;
    width: 50px;
    height: 50px;
    background-image: url('/images/banner-arrow-next.png');
    z-index: 100;
}

.banner-container .page .banner{
    text-align: center;
}

/*.slide.cycle-slide.cycle-sentinel{
    display: none !important; 
}

.slide.cycle-slide.cycle-slide-active{
    position: relative !important;
}*/
.banner .slide{
    /*width: 75%;*/    
    max-width: 960px;
	padding:0 50px;
    box-sizing:border-box;
    z-index: 2;
    right: 0;
    margin: 0 auto;       
    position:relative;
}
.banner .banner-image{
    background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;	
    width:100%;
    height: 325px;
}

.bannertext-container{    
    position: absolute;
    bottom: 0px;
    right: 0px;    
    max-width: 500px;    
}

.bannertext{    
    background-color: #eb7a00;
    border-color: #eb7a00;
    color: #fff;
    border-radius: 5px;
    padding: 20px;
    text-align: left;
}

.bannertext-container:before {
   content: "";
   position: absolute;
   top: -20px;
   left: 25%;
   border-bottom: 20px solid;
   border-bottom-color: #eb7a00; 
   border-left: 20px solid transparent;
   border-right: 20px solid transparent; 
}

.bannertext-shadow{    
    width: 100%;
    height: 21px;
    display: block;
    background-image:url("/images/bannertext-shadow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0 auto;    
}

.bannertext .title{
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 5px;
}

.bannertext .subtitle{
    font-size: 17px;
    font-weight: 600;
}

.article-info{
    -webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1;         /* OLD - Firefox 19- */    
    -webkit-flex: 1;          /* Chrome */
    -ms-flex: 1;              /* IE 10 */
    flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
    padding: 0 50px 0 0;    
}

.article-info a{
    color: #EB7A00;
    font-weight: 500;
}

.article-info a:hover{
    color: #107e91;
}

h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.article-title{
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 100%;
}

.article-excerpt{
    margin-bottom: 25px;    
}

.article-image{    
    background-size: contain;
    background-repeat: no-repeat;	
	background-position: center top;
    width: 50%;
    max-height: 330px;    
}

.article-block .article-date{
    margin-bottom: 10px;
}

.publication .article-block{
    padding-bottom:30px;
}
.publication .article-title{
    font-size:24px;
    margin:5px 0;
}
.publication .article-from{
    font-weight:600;
    color:#444;
}
.publication .article-link{
    font-weight:500;
}

.btn-container{
    text-align: right;
}

.btn-container .btn{
    vertical-align: middle;
    display: inline-block;
    font-size: 20px;
}

.btn-container .btn:after{    
    background-image: url('/images/banner-arrow-next.png');
    background-size: cover;
    width: 25px;
    height: 25px;
    text-align: center;
    vertical-align: middle;    
    margin-left: 20px;
    content: "";
    display: inline-block;
}

.block-type-2>div{
    width: 50%;
}

.block-type-2>div:nth-child(odd){    
    padding-right: 50px;
}

.block-type-2>div:nth-child(even){    
    padding-left: 50px;
}

.block-type-2 .article-info, .block-type-3 .article-info, .block-type-3 .article-image{
    width: 100%;
    padding-right: 0px;
}

.block-type-2 .article-title:before{
    background-image: url('/images/infobox-icon.png');
    background-size: cover;
    width: 80px;
    height: 70px;
    text-align: center;
    vertical-align: middle;    
    margin-right: 20px;
    content: "";
    display: inline-block;
    display: none;
}

.block-type-3>div{
    width: 30%;
}

.block-type-3.flex{
    -webkit-justify-content: space-between; /* Safari 6.1+ */    
    justify-content: space-between;
}

.block-type-3 .article-image-container{
    position: relative;
    margin-bottom: 15px;
}

.block-type-3 .article-image-frame{
    background-image: url('/images/img-frame.png');
    background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;	
    position: relative;    
    height: 180px;
    width: 100%;
    margin: 0 auto;
}

img.frame {
    border-image: url('/images/img-frame.png') 20 37 30 36 stretch stretch;     
    border-style: inset;
    border-width: 15px;
    display: block;
    width: 100%;
    height: auto;
    background-color: transparent;
    margin: 0 auto;
}


.block-type-3 .article-frame-icon{
    background-image: url('/images/img-frame-rocket.png');
    background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;	   
    width: 85px;
    height: 75px;
    position: absolute;
    bottom: 0;
    left: 20px;
    display: none;
}

.block-type-3 .article-title span, .article-date{
    font-size: 12px;
    color: #000;
    background-color: #E5E5E5;
    padding: 5px 10px;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
}
.block-type-2 .article-image{
    float:right;
    width:200px;
    height:150px;
    margin-left: 30px;
}

main{
    padding-bottom: 40px;
}

.banner-container .banner-content{    
    color: #fff;
    margin-left: 205px;
    font-weight: 600;    
    height: 80%;  
    -webkit-align-items: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.banner-container .banner-content h1{
    text-align: left;
    margin: 0;
    text-transform: uppercase;
    font-size: 48px;
    line-height: 100%;
    font-weight:300;
    letter-spacing:2px;
}

.h1-subtitle{
    color: rgba( 255, 255, 255, 0.6);  
    font-size: 28px;   
    font-weight:300; 
}
    
section .banner-container{
    margin-bottom: 60px;
    height: 205px;
    
    
}
.banner-bg{
    width:100%;
    height: 205px;
    background-image: url('/images/subbanner-logo.png');
    background-position: right top;
    background-size: 690px 430px;
    background-repeat: no-repeat;
}
.green{    
    background: #0889b1;
    background: -moz-linear-gradient(top, #0889b1 0%, #085d7c 100%);
    background: -webkit-linear-gradient(top, #0889b1 0%,#085d7c 100%);
    background: linear-gradient(to bottom, #0889b1 0%,#085d7c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0889b1', endColorstr='#085d7c',GradientType=0 );
}

.purple{    
    background-color: rgb(94,75,124); /* Old browsers */
    background-color: -moz-linear-gradient(top,  rgba(94,75,124,1) 0%, rgba(69,55,90,1) 100%); /* FF3.6-15 */
    background-color: -webkit-linear-gradient(top,  rgba(94,75,124,1) 0%,rgba(69,55,90,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background-color: linear-gradient(to bottom,  rgba(94,75,124,1) 0%,rgba(69,55,90,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5e4b7c', endColorstr='#45375a',GradientType=0 ); /* IE6-9 */
}

.sidebar{
    width: 230px;
    margin-right: 70px;    
}

.sidebar-box{
    margin-bottom: 35px;
}

.sidebar-title{
    font-size: 20px;
    font-weight:400;
    line-height: 110%;
    margin-bottom: 10px;
}

.sidebar-text{
    margin-bottom: 10px;
}

.sidebar-image{
    background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;	   
    width: 100%;
    height: 115px;    
}

.sidebar .btn-container, .box .btn-container{
    background-color: #59bdce;    
    padding: 10px;
    border-radius: 5px;
}

.sidebar .btn, .box .btn{
    color: #fff;
}

.sidebar-image{
    margin-bottom: 25px;
}

.content-with-sidebar{    
	width: -webkit-calc(100% - 300px);
	width: -moz-calc(100% - 300px);
    width: calc(100% - 300px);
    height: auto;       
}

.team .content-with-sidebar .flex{
    -webkit-justify-content: space-between;
    justify-content: space-between;   
}

.box{
    width: 31%;
    margin-bottom: 40px;
    min-width: 225px;    
    margin: 0 auto 40px;    
}

.box-image{    
    width: 100%;
    height: auto;
}

.box-title{
    font-size: 30px;
    padding: 15px 0 0 0;
    line-height: 100%;
}

.box-subtitle{
    font-size: 24px;
    padding: 15px 0;
    line-height: 100%;
    min-height:78px;
}

.proposal-box{
    border-bottom: 1px solid #6d6e71;
}

.proposal-box .btn-container{
    margin: 20px 0;
}

.proposal-header-content{
    width: -webkit-calc(100% - 245px);
    width: -moz-calc(100% - 245px);
    width: calc(100% - 245px);    
}

.proposal-img{    
    background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;	   
    width: 245px;
    height: 180px;
    
}

.content-with-sub-sidebar{
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: calc(100% - 250px);    
}

.content-with-sub-sidebar p{
    padding: 5px 15px;
}

.sub-sidebar{
    width: 250px;
}

.sub-sidebar img{
    width: 100%;
    margin-bottom: 15px;
}

.sub-sidebar{
    text-align: center;
    color: #fff;
    font-size: 18px;
}

.sub-sidebar li{
    padding: 10px;
    border-bottom: 1px solid #fff;    
    margin: 0 12%;
}
.sub-sidebar li span{
    font-size:12px;
    letter-spacing:1px;
    opacity:0.5;
}

.content-with-sub-sidebar h4{    
    color: #fff;    
    padding: 5px 10px;    
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    min-width: 125px;
    text-align: center;
}

.team .sub-sidebar, .team .content-with-sub-sidebar h4{
    background-color: #1fb493;    
}

.listpage .article-block img{
    float: right;
    padding-left: 15px;
    width: 250px;
}

.listpage .article-block .article-excerpt img{
    width: auto;
    padding: 0;
    float: none;
}

.listpage .article-subtitle{
    font-size: 20px;
    margin-bottom: 15px;
}

.listpage .article-excerpt{
    margin-top: 15px;
}

.listpage hr{
    width: 100%;
}

ul.gallery li{
    display:inline-block;
    margin:5px;
    vertical-align:middle;
    width:280px;
}
ul.gallery li p{
    margin:0;
    height:50px;
    overflow:hidden;
    color:#333;
    font-size:14px;
}

.article-style-2 .article-text table{
    /*max-width: 500px !important;*/
    width: 100% !important;
}

.article-style-2 .contact-table p:first-of-type, .article-style-2 .article-content table.contact-table iframe{
    height: 100% !important;
}

.article-style-2 .article-text table td{
    height: auto;
    vertical-align: top;
}

/*.article-style-2 .article-text table img*/

.article-style-2 .article-text table iframe{
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
}
.article-text p{
    margin:8px 0;
}


/*********************************************************************************/
/* Footer
/*********************************************************************************/
footer{
    background-color: rgba(227, 227, 227, 0.5);   
    width: 100%;
    min-height: 400px;    
    background-size: 100% 100%;
    position:relative;
}

.shadow{
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;    
    width: 100%;
}

.foot-shadow{
    max-width: 1529px;
}

footer .page{    
    text-align: center;    
}

footer .logo-container{
    width: 270px;
    margin: 0 auto;
}

footer img.logo{          
    margin-top: 25px;    
}

footer hr{
    margin: 20px auto 40px auto;
}

.footer-content{
    color: #6d6e71;
    margin-bottom: 25px;    
}

.footer-content *{
    white-space: normal !important;
}

.copyright{    
    color: #000;
    font-size: 13px;
    margin-bottom: 25px;
    font-weight: 600;
}

.mobile-banner-image{
    display: none;
}


/*********************************************************************************/
/* Responsive style
/*********************************************************************************/

@media only screen and (max-width: 1195px) {
    .page{
        width: 100%;        
    }
    
    main .page, footer .page{
        padding-left: 20px;
        padding-right: 20px;
    }
    .team .content-with-sidebar .flex{
        display:block;
        text-align:center;
    }
    .team .content-with-sidebar .flex .box{
        display:inline-block;
        width:273px;
        margin: 0 5px 40px;
        vertical-align:top;
    }
    .team hr{
        display:none;
    }
    .article-block img, .article-content img{
        max-width:100%;
        height:auto !important;
        margin: 8px 0 !important;
    }
}

@media only screen and (max-width: 800px) {
    .article-style-2 .article-text table td{
        width: 100% !important;
        display: block;
    }
}

@media only screen and (max-width: 750px) { 
    .block-type-3>div{
        width: 100%;
    }
    
    img.frame{
        width: 50%;
        min-width: 320px;
    }
    
    .article-info{
        padding-right: 0;
    }
    
    .article-image{
        width: 100%;
        height: 160px;
    }
    
    .block-type-2>div:nth-child(even), .block-type-2>div:nth-child(odd){
        padding: 0;
    }
    
    .block-type-2>div{
        width: 100%;
    }
    
    .block-type-2 .article-image{
        float: none;
        margin: 0 auto 10px;
        height: 210px;
        width: auto;        
    }
        
    table td {
      display: block;
      text-align: right;
      font-size: 13px;      
    }
    
}

@media only screen and (max-width: 610px) {    
    #cssmenu{
        width:100%;
    }
    
    #cssmenu ul{
        width:100%;
        display:none;
        position: absolute;
        top: 85px;
        background: #6d6e71;        
        text-align: center;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    #cssmenu > ul > li:not(:last-child):after{
        background: none;
    }
    
    #cssmenu ul li{
        width:100%;        
    }
    
    #cssmenu ul li a:hover{
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background-color: #59bdce;        
        color: #fff;
    }
    
    #cssmenu ul ul li,#cssmenu li:hover > ul > li{
        height:auto;
    }
    
    #cssmenu ul li a,#cssmenu ul ul li a{
        width:100%;
        border-bottom:0;
        border-left: 0;
        color: #ddd;
        margin: 0;
        padding: 10px;
    }
    
    #cssmenu ul ul li a{
        padding-left:25px;
    }
    
    #cssmenu ul ul li{
        background:#333!important;        
    }
    
    #cssmenu ul ul li:hover{
        background:#363636!important;        
    }
    
    #cssmenu ul ul ul li a{
        padding-left:35px;
    }
    
    #cssmenu ul ul li a{
        color:#ddd;
        background:none;
    }
    
    #cssmenu ul ul li:hover > a,#cssmenu ul ul li.active > a{
        color:#fff;
    }
    
    #cssmenu ul ul,#cssmenu ul ul ul{
        position:relative;
        left:0;
        width:100%;
        margin:0;
        text-align:left;
    }
    
    #cssmenu > ul > li.has-sub > a:after,#cssmenu > ul > li.has-sub > a:before,#cssmenu ul ul > li.has-sub > a:after,#cssmenu ul ul > li.has-sub > a:before{
        display:none;
    }
    
    #cssmenu{
        display:block;        
        color:#ddd;
        font-size:12px;                
        height: 100%;
    }
    
    .responsive-button{
        width: 50px;
        height: 45px;        
        position: absolute;
        right: 0;
        bottom: 0;
        cursor: pointer;
        z-index: 12399994;
        background-color: #6d6e71;
    }
        
    .responsive-button:after{
        position:absolute;
        top:22px;
        right:15px;
        display:block;
        height:4px;
        width:20px;
        border-top:2px solid #dddddd;
        border-bottom:2px solid #dddddd;
        content:'';
    }
    
    .responsive-button:before{
        -webkit-transition:all .3s ease;
        -ms-transition:all .3s ease;
        transition:all .3s ease;
        position:absolute;
        top:16px;
        right:15px;
        display:block;
        height:2px;
        width:20px;
        background:#ddd;
        content:'';
    }
    
    .responsive-button.menu-opened:after{
        -webkit-transition:all .3s ease;
        -ms-transition:all .3s ease;
        transition:all .3s ease;
        top:21px;
        border:0;
        height:2px;
        width:19px;
        background:#fff;
        -webkit-transform:rotate(45deg);
        -moz-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
        -o-transform:rotate(45deg);
        transform:rotate(45deg);
    }
    
    .responsive-button.menu-opened:before{
        top:21px;
        background:#fff;
        width:19px;
        -webkit-transform:rotate(-45deg);
        -moz-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
        -o-transform:rotate(-45deg);
        transform:rotate(-45deg);
    }
    
    #cssmenu .submenu-button{
        position:absolute;
        z-index:99;
        right:0;
        top:0;
        display:block;
        border-left:1px solid #444;
        height:46px;
        width:46px;
        cursor:pointer;
    }
    
    #cssmenu .submenu-button.submenu-opened{
        background:#262626;
    }
    
    #cssmenu ul ul .submenu-button{
        height:34px;
        width:34px;
    }
    
    #cssmenu .submenu-button:after{
        position:absolute;
        top:22px;
        right:19px;
        width:8px;
        height:2px;
        display:block;
        background:#ddd;
        content:'';
    }
    
    #cssmenu ul ul .submenu-button:after{
        top:15px;
        right:13px;
    }
    
    #cssmenu .submenu-button.submenu-opened:after{
        background:#fff;
    }
    
    #cssmenu .submenu-button:before{
        position:absolute;
        top:19px;
        right:22px;
        display:block;
        width:2px;
        height:8px;
        background:#ddd;
        content:'';
    }
    
    #cssmenu ul ul .submenu-button:before{
        top:12px;
        right:16px;
    }
    
    #cssmenu .submenu-button.submenu-opened:before{
        display:none;
    }
    
    #cssmenu ul ul ul li.active a{
        border-left:none;
    }
    
    #cssmenu > ul > li.has-sub > ul > li.active > a,#cssmenu > ul ul > li.has-sub > ul > li.active > a{
        border-top:none
    }
    
    #cssmenu > ul > li a:hover,#cssmenu ul li.active a:hover,#cssmenu ul li.active a,#cssmenu ul li.has-sub.active:hover{
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;        
    }
    
    .footer-content table, .footer-content img{
        width: 100% !important;
    }
    
    .footer-content img{
        height: 100% !important;
    }
    
    .sidebar{
        margin-right:0;
        width: 100%;
        order: 2;
    }
    
    .content-with-sidebar{
        order: 1;
        width: 100%;
    }
    
    .banner-container .banner-content{
        margin-left: 0;
    }
    
    .banner-content>div{
        margin: 0 auto;
    }
    
    .article-text table, .article-text img{
        /*width: 100% !important;*/
    }
    
    .mobile-banner-image{
        display: block;
        width: 100%;
    }
    
    .banner .banner-image{
        background-image: none !important;
        height: auto;
    }
    
    .bannertext-container{
        position: relative;
    }
    
    .banner .slide{
        padding: 0;
    }
    
    .bannertext{
        padding: 40px 10px 10px 10px;
    }
    
    .bannertext .title{
        font-size: 20px;
    }
    
    .shadow.banner-img-shadow{
        display: none;
    }
}


@media only screen and (max-width: 420px) {
    img.frame{
        width: 100%;
    }
    
    .banner-container .banner-content h1{
        font-size: 32px;
    }
    
    .h1-subtitle, h2{
        font-size: 24px;
    }
}