﻿html {
	height: 98%;
}

body {
	min-height: 100%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	margin: 0;
	width: 100%;
	height: 100%;
	padding: 4px 0;
	font-family: "Roboto", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
		"メイリオ", Meiryo, sans-serif;
	font-size: 12px;
	background-repeat: no-repeat;
}

.bold {
	font-weight: bold;
}


#header {
	position: fixed;
    background-color: #FFF;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content    : space-between;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
    margin: 0 4px;
}

#container, .top-container {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	padding: 0 16px;
}

.flex {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.flex-panel {
	-ms-flex-direction: column;
	-webkit-box-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.flex-panel.left-panel {
    width: 80%;
}

.flex-panel.right-panel {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align:  flex-end;
	-webkit-box-align:  flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.flex .content {
	margin: 16px 8px;
}

.new-tab-icon {
	vertical-align: middle;
    margin-bottom: 2px;
    margin-left: 4px;
    width: 14px;
}

#top-logo {
}

.top-page-content-root .top-page-container:not(:first-child) {
	margin-top: 16px;
}

.top-page-content-root .top-page-container:last-child {
	margin-bottom: 40px;
}

.page-title {
	font-size: 20px;
    height: 32px;
    line-height: 1.33;
    border-left: 2px transparent solid;
    padding: 2px 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
    display: flex;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 400;
    width: 100%;
    margin-bottom: 16px;
    margin-top: 0;
	-ms-flex-align:  center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
    align-items: center;
}

.page-title.top-page-title {
    -webkit-justify-content: center;
    -ms-justify-content    : center;
	justify-content: center;
}

.page-title.bg-gray {
	background-color: #f0f1f2;
}

.page-title:not(:first-child) {
	margin-top: 40px;
}

.page-title .page-title-label {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-left: 8px;
	color: #333;
}


.page-title .page-title-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.page-title a.page-title-inner {
	cursor: pointer;
}

.page-title .page-title-label.subtitle {
	margin-left: 8px;
	font-size: 12px;
	color: #7f7f7f;
}

.page-title .page-title-label-hr {
	display: block;
	margin: 0 0 0 1px;
	flex: auto;
	border: 0;
	border-top: 1px solid #dadde0;
	box-sizing: content-box;
	height: 0;
}

.top-page-content-root .top-page-contents {
	margin: 0 16px;;
}

.top-page-content-root .brand-more-area {
    margin: 16px 8px 8px 8px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content    : center;
    justify-content: center;
}

.basic-button-container {
	display: inline-block;
    max-width: 100%;
}

.basic-button-container .basic-button {
	margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    max-width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	display : -webkit-inline-box;
	display : -ms-inline-flexbox;
	display : -webkit-inline-flex;
    display: inline-flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 0;
	color: #333;
    background-color: #cdd0d3;
    border-color: #cdd0d3;
    outline: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    border-radius: 2px;
    background-clip: border-box;
    height: 32px;
}

.basic-button-container .basic-button:hover{
	color: #333;
	background-color: #b8bdc2;
	border-color: #b8bdc2;
	-webkit-transition:  background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-moz-transition:  background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition:  background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.basic-button-container .basic-button .basic-button-label {
	width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

.basic-button-container .basic-button .basic-button-icon {
    margin-right: 8px;
}

div.sidebar_menu {
	width: 204px;
	/*box-shadow: 0 2px 8px gray;*/
	overflow-y: auto;
	height: fit-content;
}

div.sidebar_menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

div.sidebar_menu ul li a {
	padding: 10px 10px 10px 20px;
	display: block;
	color: #603;
	font-size: 16px;
	font-weight: bold;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.sidebar_menu ul li a span {
	display: block;
	font-size: 11px;
	color: #999;
	font-weight: lighter;
	padding-left: 4px;
}

div.sidebar_menu ul li a:hover {
	color: #ffe7e7;
}

div.sidebar_menu ul li a:hover span {
	color: #ccc;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.sidebar_menu ul li ul {
	display: none;
	border-top: 1px solid #ccc;
	list-style-type: circle;
	padding-left: 30px;
}

div.sidebar_menu ul li:hover ul {
	display: block;
}

div.sidebar_menu ul li ul li a {
	font-size: 14px;
	color: #333;
}

div.sidebar_menu ul li ul li.last {
	border: none
}

div.header-menu {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-flex-item-align: end;
	-webkit-align-self: flex-end;
	align-self: flex-end;
	margin-left: 0px;
}

div.header-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

div.header-menu ul li {
	display: inline-block;
}

div.header-menu ul li a {
	padding:  0 10px;
	display: block;
	color: #603;
	font-size: 16px;
	font-weight: bold;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.header-menu ul li a span {
	display: block;
	font-size: 11px;
	color: #999;
	font-weight: lighter;
	padding-left: 4px;
}

div.header-menu ul li a:hover {
	color: #ffe7e7;
}

div.header-menu ul li a:hover span {
	color: #ccc;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.header-menu ul li ul {
	display: none;
	border-top: 1px solid #ccc;
	list-style-type: circle;
	padding-left: 30px;
}

div.header-menu ul li:hover ul {
	display: block;
}

div.header-menu ul li ul li a {
	font-size: 14px;
	color: #333;
}

div.header-menu ul li ul li.last {
	border: none
}

div.header-menu .link-icons {
	display: inline-flex;
}

div.header-menu .link-icons a {
	padding: 0;
}

div.header-menu .link-icons a:not(:first-child) {
	margin-left: 8px;
}

div.header-menu .link-icons a img {
	border-radius: 4px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.header-menu .link-icons a img:hover,
div.header-menu .link-icons a img:active{
	-moz-opacity:0.7;
	opacity:0.7;
	filter:alpha(opacity=70);
}


p.copyright {
	text-transform: uppercase;
	font-size: 11px;
	color: #787878;
	margin-top: 0;
}

a {
	color: #603;
	text-decoration: none;
	cursor: pointer;
}

#news_content {
	margin-top: 20px;
	list-style: none;
	padding: 16px 5px 5px 5px;
}

.listing-title {
	color: #603;
	padding: 80px 40px;
	font-size: 18px;
	font-weight: bold;
	border-left: 1px dotted #d3bfab;
	border-right: 1px dotted #d3bfab;
	margin-right: 30px;
}


#news_content .listing-contents_ {
    max-height: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}

#news_content ul {
	margin: 0;
	padding: 0;
	width: 100%;
}

#news_content li {
	border-bottom: 1px solid #eee;
	padding: 16px;
	margin: 0;
	background: none;
	display: block;
	width: 100%;
	border: none;
	border-top: 1px dotted #d3bfab;
	clear: both;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

#news_content li:first-child {
	border: none;
}

#news_content li div.title {
	background: none;
	color: #444;
}

#news_content li div.date {
	padding: 0;
	/*font-size: 11px;*/
	width: 20%;
	max-width: 220px;
}

#top-shop-info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
    -webkit-justify-content: flex-end;
    -ms-justify-content    : flex-end;
	justify-content: flex-end;
	margin-top: 4px;
	margin-left: auto;
}

div#top-shop-info a, div#top-shop-info .header-link {
	font-size: 14px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
}

div#top-shop-info .header-link:not(:first-child){
	margin-top: 2px;
}

div#top-shop-info img {
	width: 16px;
	margin-right: 4px;
}

.left-contents {
	min-width: 90%;
	margin-right: auto;
	margin-left: auto;
	margin-top: 4px;
	padding: 0 8px;
	/* background-color: #EFF8FB; */
}

.left-contents .content-desciption {
	margin-bottom: 16px;
}

#brands {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	/*background: #f2f2f2;*/
	padding: 2px 0;
}

ul.brand-logos {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	-webkit-margin-before: 0px;
	-webkit-margin-after: 0px;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: unset;
}

/*
ul.brand-logos>li.more-brands {
	display: none;
}

ul.brand-logos>li.more-brands.shown {
	display: block;
}
*/

ul.brand-logos>li {
	display: none;
}

ul.brand-logos>li.shown {
	display: block !important;
}

ul.brand-logos>li img {
	width: 100%;
	height: 100%;
}

.whats-new-title {
	margin: 0 0 0 10px;
	display: block;
}

.staff-content-root .staff:not(:first-child){
	margin-top: 40px;
}

.staff-content-root img {
	width: 53%;
	margin-left: 12px;
}

.staff-content-root .staff-name {
	font-size: 20px;
}

.staff-content-root .staff-name .staff-name-kana {
	font-size: 12px;
	margin-lft: 8px;
}

.staff-content-root .staff-position {
	display: inline-block;
	padding: 4px 8px;
	background: #f0f1f2;
	margin-top: 4px;
	min-width: 70%;
}

.staff-content-root .summary {
	margin-top: 16px;
	margin-left: 16px;
}

.staff-content-root .carrer {
	margin-top: 16px;
	margin-left: 16px;
}

.staff-content-root .carrer table {
	width: 100%;
	border-collapse: collapse;
}

.staff-content-root .carrer th {
	width: 25%;
	padding: 12px;
	font-weight: normal;
	text-align: left;
	border-bottom: solid 1px #C9BDAD;
}

.staff-content-root .carrer td {
	width: 75%;
	padding: 12px;
	border-bottom: solid 1px #C9BDAD;
}

.lens-content-root ul, .hearing-aid-content-root ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: row;
	-webkit-box-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	-webkit-margin-before: 0px;
	-webkit-margin-after: 0px;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: unset;
}

.lens-content-root ul li, .hearing-aid-content-root ul li {
	margin-right: 8px;
	/*height: 120px;*/
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
}

.lens-content-root  ul li img, .hearing-aid-content-root ul li img {
	width: 100%;
}

.brand-content-root ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	-webkit-margin-before: 0px;
	-webkit-margin-after: 0px;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: unset;
}

.brand-content-root ul li {
	margin-right: 2px;
	width: 100px;
	height: 120px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
}

.brand-content-root ul li img {
	width: 100%;
}

.link-content-root ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: row;
	-webkit-box-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	-webkit-margin-before: 0px;
	-webkit-margin-after: 0px;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: unset;
}

.link-content-root ul li {
	margin-right: 16px;
	margin-bottom: 24px;
	max-width: 144px;
	/*height: 120px;*/
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.link-content-root ul li .link-img {
    height: 104px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align:  flex-end;
	-webkit-box-align:  flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

.link-content-root ul img {
	width: 100%;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, .link-content-root ul img {
		height: 100%;
		width: auto;
	}
	.link-content-root ul img {
		height: 100%;
		width: auto;
	}
}

.link-content-root ul img:hover,
.link-content-root ul  img:active{
	-moz-opacity:0.7;
	opacity:0.7;
	filter:alpha(opacity=70);
}

.link-content-root ul li .link-img.icon img {
    width: 96px;
}

.access-content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
	margin-top: 24px;
}

.access-content .access-area {
    width: 100%;
}

.access-content .description-area {
    margin-top: 8px;
    font-size: 14px;
}

.c-content .shop-info {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.shop-info-content .shop-info a, .shop-info-content .shop-info .header-link {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
}

.shop-info-content .shop-info .header-link:not(:first-child){
	margin-top: 2px;
}

.shop-info-content .shop-info img {
	border-radius: 4px;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

.shop-info-content .shop-info a img:hover,
.shop-info-content .shop-info a img:active{
	-moz-opacity:0.7;
	opacity:0.7;
	filter:alpha(opacity=70);
}

.shop-info-content .shop-info-description {
	padding-left: 20px;
	font-size: 12px;
}

.slide-show-content-root {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.slide-show-content-root .slide-show-content-paging-area {
    max-width: 400px;
}

.slide-show-content-root .slide-show-paging-thumbnail {
    opacity: 0.67;
}

.slide-show-content-root .slide-show-paging-thumbnail:hover,
.slide-show-content-root .slide-show-paging-thumbnail:active {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    opacity: 1;
}

.slide-show-content-root .slide-show-paging-thumbnail.selected {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	opacity: 1;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 4px 0;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .slide-show-paging-thumbnail-paging,
.slide-show-content-root .slide-show-paging-thumbnail-paging-area .thumbnail-angle-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 14px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
    -webkit-justify-content: center;
    -ms-justify-content    : center;
	justify-content: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;

}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .slide-show-paging-thumbnail-paging:not(.selected) {
	cursor: pointer;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .slide-show-paging-thumbnail-paging:not(.selected):hover ,
.slide-show-content-root .slide-show-paging-thumbnail-paging-area .thumbnail-angle-icon:not(.readonly):hover {
	background-color: #ddd;
	cursor: pointer;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .slide-show-paging-thumbnail-paging a {
	color: #333;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .slide-show-paging-thumbnail-paging.selected {
	font-weight: bold;
}

.slide-show-content-root .slide-show-paging-thumbnail-paging-area .thumbnail-angle-icon img {
	width: 10px;
	height: 10px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-flex-item-align: center;
	-webkit-align-self:center;
	align-self: center;
    -webkit-justify-content: center;
    -ms-justify-content : center;
	justify-content: center;
}

.slide-show-content-root .slide-show-content-area {
}

.slide-show-content-root ul {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style-type: none;
	-webkit-margin-before: 0px;
	-webkit-margin-after: 0px;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	-webkit-padding-start: unset;
}

.slide-show-content-root ul li {
	margin-right: 2px;
	width: 80px;
	height: 80px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align:  center;
	-webkit-align-items: center;
	align-items: center;
}

.slide-show-content-root ul li img {
	width: 100%;
}

.slide-show-content-root .slide-show-paging-toggle-button-area {
	margin-top: 8px;
}

.slide-show-content-root .slide-show-content-title {
	font-size: 17px;
	margin: 4px 0;
}

.footer-content {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
	justify-content: center;
}

.footer-content .copyright {
	border-top: 1px solid #dadde0;
	padding-top: 8px;
    width: 99%;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}