<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

body {
    margin: 0px;
    font-family: 'Muli', Roboto, sans-serif;
    font-size: 15px;
    height: 100vh;
    min-width: 310px;
    color: #fff;
	background: #000;
}

a{
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #FF7F00;
}

input {
    font-family: 'Muli', Roboto, sans-serif;
    background-color: #333333;
    border: 0;
    font-size: 15px;
    padding: 5px 10px;
    color: #fff;
    width: 100%;
}

input {
    border-radius: 0;
  }
  
input[type="search"] {
    -webkit-appearance: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

.web_top {
    background-color: #000;
    overflow: hidden;
}

@keyframes move1 {
    0% {transform: translate(0, 0);}
    25% {transform: translate(0, -5px);}
    50% {transform: translate(0, 0);}
    75% {transform: translate(0, 5px);}
    100% {transform: translate(0, 0);}
}

@keyframes move2 {
    0% {transform: translate(0, 0);}
    25% {transform: translate(-5px, 0);}
    50% {transform: translate(0, 0);}
    75% {transform: translate(5px, 0);}
    100% {transform: translate(0, 0);}
}


/* /////////////////////////////////////////////////////////////////////////////////////////// */

.page-wrapper_footer {
    max-width: 1480px;
    margin: auto;
    padding: 30px 30px;
}

.page-wrapper {
    max-width: 1480px;
    margin: auto;
    padding: 0 30px;
}

.header_bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 25px;
    border-bottom: 1px solid #666666;
}

.header_logo {
    /*width: 176px;*/
}

.header_right {
    display: flex;
    align-items: center;
}

.header_ust {
    padding-left: 65px;
}

.header_menu_wrapper {
    color: #666666;
}

.header_menu_wrapper {
    /* display: flex; */
    align-items: center;
    margin: 20px 0 30px;
}

.header_code {
   /*width: 290px;
    text-align: right;*/
    font-weight: 700;
    float: right;
    /*padding-top: 5px;*/
}

.header_code_title {
    display: inline-block;
    padding-right: 14px;
    font-style: italic;
}

.header_code input {
    width: 160px;
    font-size: 12px;
    padding: 3px 10px;
}

.header_block {
    /* width: calc(100% - 290px); */
    display: inline-block;
}

.header_menu {
    display: block;
    padding: 0;
    font-weight: 700;
    margin: 0 -15px;
}

.header_menu li {
    display: inline-block;
    padding: 0 15px;
}

.header_menu a {
    color: #666666;
}

.header_menu a:hover {
    color: #FF7F00;
}

.header_menu a span {
    display: inline-block;
    letter-spacing: 1px;
    padding: 5px 0;
}

.header_menu a span .active {
    display: inline-block;
    letter-spacing: 1px;
    padding: 5px 0;
	color: #FF7F00;
}


.search_field {
    position: relative;
    width: 180px;
    display: inline-block;
}

.search_field .btn-search {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s color;
}

.search_field .btn-search:hover {
    color: #fff;
}

.search_field input {
    padding: 3px 10px;
    padding-right: 35px;
}

.mobile_search {
    display: none;
}

.mobile_search input {
    background-color: #666666;
}

.mobile_search .search_field {
    width: 100%;
}

.header_menu_close {
    display: none;
}

.trigger {
    width: 35px;
    height: 31px;
    padding-left: 10px;
    display: none;
    cursor: pointer;
}

.trigger .bar &gt; div {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
    background: #666666;
}

#header-link-left {
    float: left;
}

.header_menu_overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9;
}

@media only screen and (max-width: 1400px) {
    .header_menu li {
        padding: 0 10px;
    }
    .header_menu {
        margin: 0 -10px;
    }
    
}

@media only screen and (max-width: 992px) {
    .header_menu_wrapper {
        display: block;
    }
    .header_block {
        width: 100%;
    }
    .header_code {
        width: 100%;
        padding-top: 35px;
        float: inherit;
    }
    .header_ust {
        display: none;
    }
}

@media only screen and (max-width: 870px) {
    .header_menu_wrapper {
        margin: 25px 0;
    }
    .header_menu_overlay.active {
        display: block;
    }
    .header_logo {
        width: 138px;
    }
    .header_menu {
        font-weight: 400;
        margin: 0;
    }
    .header_menu a {
        color: #fff;
    }
    .mobile_search {
        display: block;
        padding-top: 30px;
    }
    .header_block {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        background-color: #333333;
        z-index: 10;
        max-height: 100%;
        overflow: auto;
        padding: 50px 30px;
    }
    .header_block.active {
        display: block;
    }
    .header_menu li {
        display: block;
        padding-left: 0;
    }
    .header_menu a span {
        margin: 0;
        padding: 15px 0;
        width: 100%;
    }
    .header_menu_close {
        display: block;
        position: absolute;
        right: 15px;
        top: 15px;
        width: 25px;
        height: 25px;
        cursor: pointer;
    }
    
    .header_menu_close span {
        position: absolute;
        display: block;
        width: 100%;
        height: 3px;
        background-color: #666666;
        top: 12px;
        transform: rotate(45deg);
    }
    
    .header_menu_close span:nth-child(1) {
        transform: rotate(45deg);
    }
    
    .header_menu_close span:nth-child(2) {
        transform: rotate(-45deg);
    }
    .header_code {
        padding: 0;
    }
    .trigger {
        display: block;
    }
    .header_search {
        display: none;
    }
    .page-wrapper {
        padding: 0 15px;
    }
	
	.page-wrapper_footer {
    padding: 0 15px;
	}
}

/* //////////////////////////////////////////////////////////////////////////////////////// */

.site-wrapper {
   padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 1px;
    padding-left: 0px;
}

.site-inner {
    max-width: 1080px;
    margin: auto;
}

.gallery-list {
    padding: 0 20px 190px;
}

.gellery-row {
    display: flex;
    align-items: center;
    margin: 80px 0;
    position: relative;
}

.gellery-row.colrotate {
    flex-flow: row-reverse;
}

.gellery-row.col1 {
    justify-content: center;
}

.gellery-row.col1 .gellery-item {
    width: 66.5%;
}

.gellery-row.col2 {
    justify-content: space-between;
}

.gellery-item {
    z-index: 1;
    visibility: hidden;
}

.gellery-row.col2 .gellery-item:nth-child(1) {
    width: 50%;
}

.gellery-row.col2 .gellery-item:nth-child(2) {
    width: 40%;
}

.gellery-item_img {
    position: relative;
    overflow: hidden;
}

.gellery-item_img img {
    width: 100%;
    transition: 0.3s transform;
}

.gellery-item a:hover .gellery-item_img img {
    transform: scale(1.03);
}

.gellery-item_img_count {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.5);
    color: #333333;
    font-size: 18px;
    font-weight: 800;
}

.gellery-item_title {
    padding-top: 15px;
}

.gellery-bg {
    width: 1920px;
    position: absolute;
    left: 50%;
    top: 50%;
    height: 200px;
    background-image: url(../images/bkg.fw.png);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: 1920px 200px;
    background-position: center;
}

.pagination {
    padding: 0;
    margin: 0;
    display: block;
    text-align: center;
}

.pagination-item {
    display: inline-block;
    padding: 5px;
}

.pagination-item a {
    display: inline-block;
    font-size: 21px;
    color: #666666;	/* 666666 */
}

.pagination-item a:hover {
    color: #FF7F00; /* FF7F00 */
}

.gallery-album {
    /*padding: 50px 0 90px;*/
    position: relative;
	
	
	padding-bottom: 130px;
}

.album-bg {
    width: 1920px;
    position: absolute;
    left: 50%;
    bottom: -150px;
    height: 300px;
    padding: 70px 0 200px;
    transform: translate(-50%, 0);
   /* background-image: url(../images/bkg.fw.png);*/
    background-repeat: no-repeat;
    background-size: 1920px 300px;
    background-position: center;
}


.site-title {
    font-size: 22px;
    color: #FF7F00;
    /*font-weight: 800;*/
}

.album_slider {
    margin: 35px 0;
    display: flex;
}

.album_left {
    width: 150px;
    /*background-image: url(../images/bg-gradient.png);*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 10px;
    /* display: flex;
    flex-flow: column;
    justify-content: flex-end; */
    text-align: center;
    z-index: 2;
    background-color: #000;
}

.album_right {
    max-width: 735px;
    width: calc(100% - 250px);
    padding-left: 15px;
    position: relative;
}

.album_count {
    letter-spacing: 2px;
}

.album_count_curr {
    font-size: 44px;
    color: #FF7F00;
}

.album_count_total {
    font-size: 26px;
    color: #666666;
}

.album_hints_text {
    padding: 25px 0 0;
    color: #FFFFFF;
    font-size: 16px;
    font-style: italic;
}

.album_hints_img {
    padding: 25px 0 0;
}

.hints_img_mousewheel {
    animation-name: move1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.hints_img_hand {
    display: none;
    animation-name: move2;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.album_right:after {
    width: 50vw;
    height: 100%;
    position: absolute;
    content: '';
    right: 100%;
    top: 0;
    background-color: #000;
    z-index: 1;
}

.album_nav {
    text-align: center;
    z-index: 0;
    position: relative;
}

.album_nav_btn.left, .album_nav_btn.right {
    cursor: pointer;
    display: inline-block;
    padding: 10px;
}

.album_nav_btn_text {
    padding-top: 10px;
    color: #999999;
}

.album_nav .album_count {
    display: none;
}

.bottom_hint {
    display: none;
}

.gallery-album_close {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 0;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.gallery-album_close span {
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background-color: #666666;
    top: 12px;
    transform: rotate(45deg);
}

.gallery-album_close span:nth-child(1) {
    transform: rotate(45deg);
}

.gallery-album_close span:nth-child(2) {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 1400px) { 
    .hints_img_mousewheel {
        display: none;
    }
    .hints_img_hand {
        display: inline;
    }
    .album_right {
        max-width: 680px;
    }
}

@media only screen and (max-width: 992px) {
    .album_right {
        max-width: 520px;
        width: calc(100% - 150px);
    }
    .album_left {
        width: 105px;
        padding: 0;
    }
}



@media only screen and (min-width: 481px) and (max-width: 869px) {
      /* .gallery-list {
        padding: 0 20px 350px;
    }*/
 }
	


@media only screen and (max-width: 767px) {
    .bottom_hint {
        display: block;
    }
    .site-title {
        font-size: 18px;
    }
    .gellery-bg {
        display: none;
    }
    .gellery-item {
        width: 100% !important;
        padding: 25px 0;
    }

    .gellery-row {
        display: block;
        margin: 0;
    }
    .gallery-list {
        padding: 0 0 325px;
    }
    .gellery-pagination {
        padding: 25px;
    }
    .album_left {
        display: none;
    }    
    .album_right {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
    }
    .album_nav_btn.left {
        display: flex;
        align-items: center;
        padding-right: 0;
        padding-left: 0;
    }
    .album_nav_btn.right {
        display: flex;
        align-items: center;
        flex-flow: row-reverse;
        padding-right: 0;
        padding-left: 0;
    }
    .album_nav_btn_text {
        padding: 0 5px;
    }
    .album_nav {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .album_nav .album_count {
        display: block;
    }
    .album_count_curr {
        font-size: 42px;
    }
    .album_count_total {
        font-size: 24px;
    }
    .album_nav_btn img {
        width: 10px;
    }
    .album_hints_img {
        padding: 5px 0 0;
    }
    .album_hints_text {
        padding: 7px 0 0;
    }
    .album-bg {
        display: none;
    }
    .gallery-album {
        padding-top: 50px;
		padding-bottom: 380px;
		padding-left: 0;
		padding-right: 0;
		
    }
    .album_slider {
        margin: 10px 0;
    }
}








.search_field2 {
    position: relative;
    width: 180px;
    display: inline-block;
}

.search_field2 .btn-search {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #666666;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s color;
}

.search_field2 .btn-search:hover {
    color: #fff;
}

.search_field2 input {
    padding: 2px 10px;
    padding-right: 35px;
}


.mobile_search .search_field2 {
    width: 100%;
}


.active {
    color: #FF7F00;
}







.search8 {
   float: left; 
   padding-right: 10px;
}


.search8b {
   float: left; 
  
}

@media only screen and (max-width: 1110px) {
	
	.header_search {
	  text-align: right;
	}
	
	.search8 {
	  float: none; 
	  padding-right: 0px;
	   padding-bottom: 10px;
	}


	.search8b {
	  float: none; 
	  
	}


}



.album_nav2 {
	    color: #999999;
		 float: left; 
		 padding-left:15px;
		 padding-right:15px;
		 
}



.access_header {
	padding-bottom:150px;
}


@media only screen and (min-width: 768px) and (max-width: 869px) {
       .access_header {
       padding-bottom:350px;
    }
	
	.site-wrapper {
   padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 150px;
    padding-left: 0px;
	}
 }
 
@media only screen and (max-width: 767px) {
	.access_header {
	padding-bottom:350px;
	}
	
	.site-wrapper {
   padding-top: 15px;
    padding-right: 0px;
    padding-bottom: 1px;
    padding-left: 0px;
	}
}


.gallery_back:hover {
	color: #FF7F00;
}


</pre></body></html>