/*
	jQuery Touch Optimized Sliders "R"Us
	Core CSS
*/

.tos-noanimation {
    -webkit-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -o-transition-property: none !important;
    transition-property: none !important;
}
.tos-fastanimation {
    -webkit-transition-duration: 0.2s !important;
    -moz-transition-duration: 0.2s !important;
    -ms-transition-duration: 0.2s !important;
    -o-transition-duration: 0.2s !important;
    transition-duration: 0.2s !important;
    -webkit-transition-timing-function: ease-out !important;
    -moz-transition-timing-function: ease-out !important;
    -ms-transition-timing-function: ease-out !important;
    -o-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out !important;
}
.tos-wrapper {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.tos-wrapper.tos-opened {
    display: block;
}
.tos-wrapper.tos-opening {
    opacity: 1;
}
.tos-wrapper.tos-fixed {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90000;
}
.tos-wrapper.tos-inline {
    position: relative;
}
.tos-slider {
    white-space: nowrap;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
.tos-wrapper.tos-fx-slide .tos-slider {
    left: 0;
    -webkit-transition: left 0.4s ease;
    -moz-transition: left 0.4s ease;
    -ms-transition: left 0.4s ease;
    -o-transition: left 0.4s ease;
    transition: left 0.4s ease;
}
.tos-wrapper.tos-fx-slide.tos-fixed .tos-slider {
    position: absolute;
}
.tos-wrapper.tos-fx-fade .tos-slider {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.tos-uibg {
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -ms-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.tos-desktop .tos-wrapper:hover .tos-uibg, .tos-touch .tos-wrapper.tos-hover .tos-uibg {
    opacity: 1;
}
.tos-slide {
    -webkit-overflow-scrolling: touch;
    line-height: 1px;
    text-align: center;
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.tos-slide:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}
.tos-slide.tos-loading > * {
    opacity: 0;
}
.tos-slide > * {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.tos-slide > * {
    vertical-align: middle;
    display: inline-block;
    max-height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.tos-slide.tos-html > div {
    -webkit-overflow-scrolling: touch;
    white-space: normal;
    text-align: left;
    line-height: 1.5;
}
.tos-slide.tos-html > div * {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none;
}
.tos-wrapper.tos-fill .tos-slide.tos-image > img {
    max-height: none;
    max-width: none;
    min-height: 100%;
    min-width: 100%;
}
.tos-wrapper.tos-fixed .tos-slide.tos-html > div {
    background-color: white;
    color: #333333;
    box-sizing: border-box;
    display: inline-block;
    padding: 40px;
    overflow: auto;
}
.tos-desktop .tos-wrapper.tos-fixed {
    background-color: rgba(255, 255, 255, 0.90);
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit .tos-slide {
    padding: 20px;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Buttons addon
*/

.tos-prev, .tos-next, .tos-close {
    border-radius: 3px;
    opacity: 0;
    display: block;
    width: 40px;
    position: absolute;
    z-index: 1;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.tos-prev, .tos-next {
    height: 80px;
    margin-top: -40px;
    top: 50%;
}
.tos-prev.tos-disabled, .tos-next.tos-disabled {
    cursor: default;
}
.tos-prev {
    left: 20px;
}
.tos-next {
    right: 20px;
}
.tos-close {
    height: 40px;
    top: 10px;
    right: 20px;
}
.tos-desktop .tos-wrapper:hover .tos-prev, .tos-desktop .tos-wrapper:hover .tos-next, .tos-desktop .tos-wrapper:hover .tos-close, .tos-touch .tos-wrapper.tos-hover .tos-prev, .tos-touch .tos-wrapper.tos-hover .tos-next, .tos-touch .tos-wrapper.tos-hover .tos-close {
    opacity: 0.5;
}
.tos-desktop .tos-wrapper:hover .tos-prev:hover, .tos-desktop .tos-wrapper:hover .tos-next:hover, .tos-desktop .tos-wrapper:hover .tos-close:hover, .tos-touch .tos-wrapper.tos-hover .tos-prev:hover, .tos-touch .tos-wrapper.tos-hover .tos-next:hover, .tos-touch .tos-wrapper.tos-hover .tos-close:hover {
    opacity: 0.9;
}
.tos-desktop .tos-wrapper:hover .tos-prev.tos-disabled, .tos-desktop .tos-wrapper:hover .tos-next.tos-disabled, .tos-desktop .tos-wrapper:hover .tos-close.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-prev.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-next.tos-disabled, .tos-touch .tos-wrapper.tos-hover .tos-close.tos-disabled {
    opacity: 0.2;
}
.tos-prev span, .tos-next span, .tos-close span:before, .tos-close span:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: -5px;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.tos-close span:before, .tos-close span:after {
    width: 20px;
    height: 20px;
    margin-top: -4px;
    margin-left: 0;
    margin-right: 0;
}
.tos-prev span, .tos-close span:before {
    border-bottom: 3px solid black;
    border-left: 3px solid black;
    left: 62%;
}
.tos-next span, .tos-close span:after {
    border-top: 3px solid black;
    border-right: 3px solid black;
    right: 50%;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-prev .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-next .tos-slide, .tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-close .tos-slide {
    padding-left: 80px;
    padding-right: 80px;
}
.tos-inline {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    display: inline-block;
    margin: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}
.tos-inline.tos-prev {
    margin-right: -60px;
}
.tos-inline.tos-next {
    margin-left: -60px;
}
.tos-loading .tos-inline {
    opacity: 0 !important;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close {
    -webkit-transform: scale(3);
    -moz-transform: scale(3);
    -ms-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-prev, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-prev {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-next, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-next {
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -ms-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-close, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-close {
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Caption addon
*/

.tos-caption {
    color: black;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.tos-caption:after {
    content: '';
    display: block;
    clear: both;
}
.tos-caption > div {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    float: left;
}
.tos-caption > div:last-child {
    float: right;
    margin-right: -2px;
}
.tos-desktop .tos-wrapper:hover .tos-caption, .tos-touch .tos-wrapper.tos-hover .tos-caption {
    opacity: 1;
}
.tos-wrapper .tos-caption {
    line-height: 20px;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    height: 40px;
}
.tos-wrapper.tos-has-caption .tos-uibg {
    height: 100px;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-caption .tos-slide {
    padding-bottom: 60px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-caption {
    line-height: 40px;
    font-size: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    height: 80px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
    height: 200px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-caption {
    line-height: 60px;
    font-size: 45px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    height: 120px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-caption .tos-uibg {
    height: 300px;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Drag addon
*/

.tos-wrapper.tos-fx-slide .tos-slider {
    -webkit-transition-property: left, margin;
    -moz-transition-property: left, margin;
    -ms-transition-property: left, margin;
    -o-transition-property: left, margin;
    transition-property: left, margin;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Pagination addon
*/

.tos-pagination {
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.tos-pagination a {
    display: inline-block;
}
.tos-pagination.tos-bullets a {
    background-color: rgba(255, 255, 255, 0.2);
}
.tos-pagination.tos-bullets a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}
.tos-pagination.tos-bullets a.tos-selected {
    background-color: rgba(255, 255, 255, 0.9);
}
.tos-desktop .tos-wrapper:hover .tos-pagination, .tos-touch .tos-wrapper.tos-hover .tos-pagination {
    opacity: 1;
}
.tos-wrapper .tos-pagination:before, .tos-wrapper .tos-pagination:after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
}
.tos-wrapper.tos-has-bullets .tos-pagination {
    height: 30px;
}
.tos-wrapper.tos-has-bullets .tos-pagination a {
    border-radius: 10px;
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
.tos-wrapper.tos-has-bullets .tos-caption {
    bottom: 30px;
}
.tos-wrapper.tos-has-bullets .tos-uibg {
    height: 90px;
}
.tos-wrapper.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 130px;
}
.tos-wrapper.tos-has-thumbnails .tos-pagination {
    height: 70px;
}
.tos-wrapper.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    margin: 0 5px;
}
.tos-wrapper.tos-has-thumbnails .tos-caption {
    bottom: 70px;
}
.tos-wrapper.tos-has-thumbnails .tos-uibg {
    height: 130px;
}
.tos-wrapper.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 170px;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets .tos-slide {
    padding-bottom: 50px;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-bullets.tos-has-caption .tos-slide {
    padding-bottom: 80px;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails .tos-slide {
    padding-bottom: 90px;
}
.tos-desktop .tos-wrapper.tos-fixed.tos-fit.tos-has-thumbnails.tos-has-caption .tos-slide {
    padding-bottom: 120px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-pagination:before, .tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-pagination:after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 20px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
    height: 60px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 20px;
    width: 20px;
    height: 20px;
    margin: 0 10px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
    bottom: 60px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
    height: 180px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 260px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
    height: 140px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: 0 10px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
    bottom: 140px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
    height: 260px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 340px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-pagination:before, .tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-pagination:after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 30px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination {
    height: 90px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-pagination a {
    border-radius: 30px;
    width: 30px;
    height: 30px;
    margin: 0 15px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-caption {
    bottom: 90px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets .tos-uibg {
    height: 270px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-bullets.tos-has-caption .tos-uibg {
    height: 390px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination {
    height: 210px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-pagination a {
    background-position: center center;
    background-size: cover;
    width: 150px;
    height: 150px;
    margin: 0 15px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-caption {
    bottom: 210px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails .tos-uibg {
    height: 390px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed.tos-has-thumbnails.tos-has-caption .tos-uibg {
    height: 510px;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Html media
*/

.tos-slide .tos-html {
    -webkit-overflow-scrolling: touch;
}

/*
	jQuery Touch Optimized Sliders "R"Us
	Youtube media
*/

.tos-play {
    background: white;
    opacity: 0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -ms-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}
.tos-play:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
}
.tos-desktop .tos-wrapper:hover .tos-play, .tos-touch .tos-wrapper.tos-hover .tos-play {
    opacity: 0.5;
}
.tos-desktop .tos-wrapper:hover .tos-play:hover, .tos-touch .tos-wrapper.tos-hover .tos-play:hover {
    opacity: 0.9;
}
.tos-wrapper .tos-play {
    border-radius: 80px;
    width: 80px;
    height: 80px;
    margin: -40px;
}
.tos-wrapper .tos-play:after {
    border: 20px solid transparent;
    border-left-color: black;
    border-left-width: 30px;
    margin-top: -20px;
    margin-left: -10.5px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play {
    border-radius: 160px;
    width: 160px;
    height: 160px;
    margin: -80px;
}
.tos-touch.tos-scale-2 .tos-wrapper.tos-fixed .tos-play:after {
    border: 40px solid transparent;
    border-left-color: black;
    border-left-width: 60px;
    margin-top: -40px;
    margin-left: -21px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play {
    border-radius: 240px;
    width: 240px;
    height: 240px;
    margin: -120px;
}
.tos-touch.tos-scale-3 .tos-wrapper.tos-fixed .tos-play:after {
    border: 60px solid transparent;
    border-left-color: black;
    border-left-width: 90px;
    margin-top: -60px;
    margin-left: -31.5px;
}
body {
    /*font-family: 'Lucida Grande',sans-serif;*/
    font-family: 'Roboto mono', cursive;
    font-size: 20px;
    line-height: 1.3;
    width: 100%;
    height: 100%;
    margin: 0;
    color: #757575;
    font-weight: 100;
    background: rgba(0, 0, 0, 0) url("/images/dots.png") repeat scroll 0 0 / 1% auto;
    -webkit-text-size-adjust: none;
}
.page_content h2 {
    margin-bottom: 15px;
}
#news_item p, #news p {
    margin-bottom: 0;
}
.page_content p {
    margin-top: 0;
}
.page_content a {
    font-weight: bold;
    color: #757575;
}
.center {
    max-width: 1150px;
    margin: 0 auto;
}
.page_content {
    margin: 20px auto;
    padding: 0 17%;
    text-align: center;
}
nav .home .close {
    cursor: pointer;
}
a#site_title, a#site_title_home {
    text-decoration: none;
    display: block;
}
h1 {
    margin-top: 0;
    text-transform: uppercase;
}
#news .image{
  height: 300px;
  background-size: cover !important;
}
#news h1 {
  font-weight: 100;
    margin-top: 20px;
    font-size: 26px;
}
#news_item h1 {
    margin-top: 27px;
}
h2 {
    margin-bottom: 0;
    font-size: 20px;
}
.bg_image {
    height: auto;
    left: 0;
    min-height: 100%;
    min-width: 1024px;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 0.03;
    z-index: -2;
}
#site_title {
    text-align: center;
    font-size: 50px;
    margin: 10px auto;
    font-weight: 600:
}
#site_title_home {
    color: #fff;
    text-align: center;
    font-size: 50px;
    margin: 10px auto;
    font-weight: 600:
}
nav {
    font-size: 25px;
    text-align: center;
}
nav a.active_page {
    border-bottom: 1px dotted;
}
nav.home {
    text-align: center;
}
nav.home a {
    color: #fff;
}
nav, #album_menu {
    font-size: 26px;
    text-transform: uppercase;
    color: #f9f9f9;
}
nav a, #album_menu a {
    font-size: 25px;
    text-decoration: none;
}
#album_menu a {}
#album_menu {
    text-align: center;
    margin: 10px auto;
}
#home_slides {
    overflow: hidden;
    position: absolute;
    ;
    z-index: -1;
    top: 0;
    left: 0;
}
#home_slides .slide {
    height: 100%;
    width: 100%;
    position: absolute;
    border: 5px solid #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    z-index: -1;
    display: none;
}
#home_slides .active {
    display: block;
}
#home_text h1 {
    font-size: 50px;
    margin: 0
}
#home_text {
    text-align: center;
    position: relative;
    z-index: -2;
}
#home_text .left {}
#home_text .left img {
    -webkit-border-radius: 210px;
    -moz-border-radius: 210px;
    border-radius: 210px;
    width: 210px;
    height: 210px;
}
#contact {
    margin-top: 20px;
    text-align: center;
    padding: 0 20%;
}
#news_item, #news {
    padding: 0 20px;

    margin: 0 auto;
    text-align: center;
}
#albums .image {
    width: 30%;
    float: left;
    margin: 1%;
}
#albums img {
    width: 100%;
}
footer {
    margin: 40px auto;
    text-align: center;
}
.clear:after {
    content: '';
    display: block;
    clear: both;
}
#down_home {
    position: absolute;
    bottom: 25px;
    width: 50px;
    margin-left: -25px;
    left: 50%;
}
#diamonds_home {
    position: absolute;
    bottom: -132px;
    width: 100%;
    height: 150px;
    background: url(/images/diamonds_pattern.png);
}
.view_modus {
    text-align: center;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 28px;
    margin-bottom: u5px;
    display: block;
}
.view_modus h1 {
    font-size: 28px;
    margin: 0 0 15px;
    font-weight: 100;
}
.view_modus img {
    margin-bottom: 4px;
    margin-top: 3px;
    opacity: 0.56;
    width: 33px;
}
#album_menu {
    margin-top: 60px;
    padding-bottom: 20px;
}
#album_menu a {
    display: inline-block;
    text-align: center;
}
.ball, #album_menu .album {
    margin: 20px;
    border-radius: 400px;
    opacity: 0.62;
    height: 300px;
    display: inline-block;
    width: 300px;
    overflow: hidden;
}
.ball:hover, #album_menu .album:hover {
    opacity: 1;
}
#news:after{
  content: "";
  display: table;
  clear: both;
}
#news a {
    text-decoration: none;
    width:48%;
    margin: 1%;
      background:#fff;
    float:left;
    padding:10px;
    box-sizing: border-box;
}
a {
    color: #333;
}
#news a div.text {
    color: #757575;
}
input, textarea {
    width: 400px;
    padding: 8px;
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
    border: 1px solid #eaeaea;
}
textarea {
    height: 200px;
}
#down_home {
    cursor: pointer;
}
.form .element_title {
    margin-bottom: 5px;
}
#notification_succes {
    display: none;
}
#notification_error, .notification_must {
    background: rgba(255, 0, 0, 0.46) none repeat scroll 0 0;
    color: #fff;
    display: none;
    margin-bottom: 15px;
    margin-top: -10px;
    padding: 5px;
}
.btn {
    cursor: pointer;
    padding: 7px 8px;
    background: #333;
    width: 400px;
    color: #f9f9f9;
}
#contact .btn {
    margin: 15px auto;
}
.btn:hover {
    opacity: 0.7;
}
#contact_form table {
    margin: auto;
}
.phone {
    display: none;
}
.menu_icon {
    cursor: pointer;
}
.menu_icon img{
    width:25px;
}
#news_item .content{
  margin-top:2em;
}
#news{
  margin-top:1em;
}
#over{
  margin-top: 20px;
}
.ps-container {
    overflow: hidden !important;
}
.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
    display: block;
}
.ps-container.ps-in-scrolling {
    pointer-events: none;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: #999;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #999;
}
.ps-container > .ps-scrollbar-x-rail {
    border-radius: 4px;
    bottom: 3px;
    display: none;
    height: 8px;
    opacity: 0;
    position: absolute;
    transition: background-color 0.2s linear 0s, opacity 0.2s linear 0s;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: #aaa;
    border-radius: 4px;
    bottom: 0;
    height: 8px;
    position: absolute;
    transition: background-color 0.2s linear 0s;
}
.ps-container > .ps-scrollbar-y-rail {
    border-radius: 4px;
    display: none;
    opacity: 0;
    position: absolute;
    right: 3px;
    transition: background-color 0.2s linear 0s, opacity 0.2s linear 0s;
    width: 8px;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #aaa;
    border-radius: 4px;
    position: absolute;
    right: 0;
    transition: background-color 0.2s linear 0s;
    width: 8px;
}
.ps-container.ps-in-scrolling:hover {
    pointer-events: none;
}
.ps-container.ps-in-scrolling.ps-x:hover > .ps-scrollbar-x-rail {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-x:hover > .ps-scrollbar-x-rail > .ps-scrollbar-x {
    background-color: #999;
}
.ps-container.ps-in-scrolling.ps-y:hover > .ps-scrollbar-y-rail {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-y:hover > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #999;
}
.ps-container:hover > .ps-scrollbar-x-rail, .ps-container:hover > .ps-scrollbar-y-rail {
    opacity: 0.6;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
    background-color: #999;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover {
    background-color: #eee;
    opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
    background-color: #999;
}
textarea,
input {
    -webkit-appearance: none;
}
@media (max-width:680px) {
  body{
    background: #fff;
  }
  p{
    color: #000;
  }
  .bg_image{
    opacity: 0;
  }
  #news_item .content{
    margin-top:0;
  }

  #news{
    margin-top:0;
  }
    #albums .image {
        width: 94%;
        margin: 3%;
    }
    header {
        background: #fff;
        color: #fff;
        padding-top: 9px;
        padding-bottom: 9px;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 10000;
        /*border-bottom: 1px solid #cdcdcd;*/
    }
    .page_content{

    }

    .menu_icon {
        position: fixed;
        right: 5%;
        top: 12px;
        background: #fff;
        padding: 3px 3px 0;
    }
    .view_modus{
      margin-top: -0.5em;
    }
    a#site_title, a#site_title_home {
        color: #333;
        text-transform: uppercase;
        text-align: left;
    }
    #news a{
      width: 100%;
    }
    .phone {
        display: block;
    }
    .desktop {
        display: none;
    }
    #contact_form table {
        width: 90%;
    }
    input, textarea {
        width: 90%;
    }
    .btn {
        width: 80%;
    }

    #site_title_home, #site_title {
        font-size: 25px;
        margin: 0;

        padding-left: 5%;
    }
    nav {
        text-align: center;
    }
    nav a {
        font-size: 5vw;
    }
    .center {
        margin: 0 auto;
    }
    .ball, #album_menu .album {
        height: 80vw;
        width: 80vw;
        margin: 0 10vw;
    }
    #home_text .ball {
        height: 40vw;
        width: 40vw;
        margin: 3vw;
    }
    body {
        font-size: 15px;
    }
    #home_text h1,
    h1{
      font-size: 25px;
      font-weight: 300;
    }
    h2{
      font-weight: 300;
    }
  input, textarea{
    border-color: #ccc;
  }
    #album_menu {
        margin-top: 30px;
    }
    .page_content .ball {
        margin: 0;
    }
    #news_item, #news, #contact, .page_content {
        padding: 0 3%;
    }
    header nav {
        background: rgba(255, 255, 255, 1) url("/images/dots.png") repeat scroll 0 0 / 1% auto;
        color: #333;
        height: 100%;
        position: fixed;;
        text-align: center;
        width: 100%;
        top: 0;
        z-index: 10;

    }
    span.close{
      margin-top: 30px;
    }
    header nav.home a,
    header nav a {
        color: #333;
        margin: 30px 0;
        display: block;
        z-index: 10;
        font-size: 25px;
    }
    header nav a:last-child{
      margin-bottom:60px;
    }

    #home_slides {
        position: relative;
        margin-top: -25px;

    }
    #home_text{
      margin-top: 30px;
    }
    main{
      margin-top: 75px;
    }

    nav a.active_page{
      border:none;
    }
    #home_slides .slide{
      border:none;
    }
    #home_text .ball{
      margin-top:0px;
      margin-bottom:30px;
    }
    .ball, #album_menu .album{
      margin-bottom: 10px;
    }
    #home_text{
      margin-top:10px;
    }

}
