:root,
[data-bs-theme=light] {
	--bs-body-bg: #ffffff;
	--bs-body-color: #111111;
	--bs-primary: #111111;
	--bs-primary-rgb: 17, 17, 17;
	--bs-primary-hover: #111111;
	--bs-primary-hover-rgb: 17, 17, 17;
	--bs-secondary: #111111;
	--bs-secondary-rgb: 17, 17, 17;
	--bs-heading-color: #111111;
	--inverse-color: #333333;
	--inverse-color-rgb: 51, 51, 51;
	--bs-link-color: var(--bs-primary);
	--nav-bg: #ffffff;
	--nav-color: #000000;
	--nav-hover-color: #1fa3ff;
	--dropdown-bg: #ffffff;
	--dropdown-color: #000000;
	--dropdown-hover-bg: #f0f0f0;
	--nav-inverse: #000000;
	--nav-inverse-alt: #ffffff;
}

body {
	font: 1.05rem/1.5 "Inter", 'Source Sans Pro', sans-serif;
	background-color: var(--bs-body-bg);
	color: var(--bs-body-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
	background-color: var(--bs-black);
	color: var(--bs-white);
}

::selection {
	background-color: var(--bs-black);
	color: var(--bs-white);
}

a {
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	color: var(--bs-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

.container {
	max-width: 95%;
}

.section {
	padding: 70px 0;
	scroll-margin-top: 60px;
	min-height: 500px;
}

@media (max-width: 767.98px) {
	.section {
		padding: 70px 0;
	}
}

.section.first-section {
	padding-top: 100px;
}

@media (min-width: 992px) {
	.section.first-section {
		padding-top: 130px;
	}
}

.form-control {
	padding-top: 2px;
	padding-bottom: 2px;
	border-width: 1px;
	font-size: 16px;
	background-color: transparent;
	border-color: rgba(var(--inverse-color-rgb), 0.25);
}

.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: var(--bs-primary);
}

.fbs__net-navbar {
	position: absolute;
	top: 0;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
	z-index: 99999;
	width: 100%;
	background-color: transparent !important;
	border: none;
}

@media (min-width: 992px) {
	.fbs__net-navbar {
		padding-top: 0;
		padding-bottom: 0;
	}
}

.fbs__net-navbar > .container {
	position: relative;
}

.fbs__net-navbar.relative {
	position: absolute;
}

.fbs__net-navbar .navbar-brand {
	color: var(--bs-white);
}

.fbs__net-navbar .navbar-brand .logo.dark {
	display: none;
}

.fbs__net-navbar .navbar-brand .logo.light {
	display: block;
}

.fbs__net-navbar .navbar-nav > li > .nav-link {
	position: relative;
	padding-top: 30px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 1rem;
	color: rgba(var(--bs-white-rgb), 1);
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	position: relative;
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .navbar-nav > li > .nav-link {
		color: var(--inverse-color);
	}
}

.fbs__net-navbar .navbar-nav > li > .nav-link:before {
	content: "";
	position: absolute;
	width: calc(100% - 20px);
	transform: scaleX(0);
	border-radius: 5px;
	height: 1.5px;
	bottom: 0;
	left: 10px;
	background: currentcolor;
	-webkit-transform-origin: bottom right;
	-webkit-transform: scaleX(0);
	-webkit-transition: -webkit-transform 0.35s ease-out;
	transform-origin: bottom right;
	transition: -webkit-transform 0.35s ease-out;
	transition: transform 0.35s ease-out;
	transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}

.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
}

.fbs__net-navbar .navbar-nav > li > .nav-link:hover,
.fbs__net-navbar .navbar-nav > li > .nav-link:focus {
	color: var(--bs-white);
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .navbar-nav > li > .nav-link:hover,
	.fbs__net-navbar .navbar-nav > li > .nav-link:focus {
		color: var(--inverse-color) !important;
	}
}

@media (max-width: 767.98px) {
	.fbs__net-navbar .navbar-nav > li > .nav-link {
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

.fbs__net-navbar .navbar-nav > li > .nav-link.active {
	color: var(--bs-white);
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .navbar-nav > li > .nav-link.active {
		color: var(--inverse-color);
	}
}

.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
	content: "";
	-webkit-transform-origin: bottom left;
	transform-origin: bottom left;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
	display: none;
	content: "";
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .navbar-nav > li > .nav-link {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

.fbs__net-navbar .navbar-nav .dropdown-menu {
	background-color: var(--nav-bg);
}

.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
	background-color: var(--dropdown-hover-bg) !important;
	color: var(--inverse-color);
}

.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
	display: none;
}

.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
	margin-left: 0.2rem;
}

.fbs__net-navbar .fbs__net-navbar-toggler {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: relative;
	background-color: var(--bs-black);
	color: var(--bs-white);
	border: none;
	display: none;
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .fbs__net-navbar-toggler {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

.fbs__net-navbar .navbar-brand {
	margin-right: 0 !important;
}

.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
	border: none !important;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
	box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
}

@media (min-width: 992px) {
	.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
	.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
	.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
		padding-left: 10px;
		padding-right: 10px;
		width: 200px;
		border: none;
	}
}

.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
	font-size: 1rem;
	padding: 2px 2px;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	border-radius: 0.5rem;
}

@media (min-width: 992px) {
	.fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
	.fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
	.fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
		display: block;
		-webkit-animation: fadeInUp 0.3s ease;
		animation: fadeInUp 0.3s ease;
	}
}

@media (min-width: 992px) {
	.fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
		position: absolute;
		top: 0;
		left: 100%;
		-webkit-animation: fadeInRight 0.3s ease;
		animation: fadeInRight 0.3s ease;
	}
}

@media (min-width: 992px) {
	.fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
		position: absolute;
		top: 0;
		right: 100%;
		-webkit-animation: fadeInLeft 0.3s ease;
		animation: fadeInLeft 0.3s ease;
	}
}

.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
	display: none;
}

.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
	display: none;
}

.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
	position: relative;
}

.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media (max-width: 991.98px) {
	.fbs__net-navbar .navbar-nav li.dropend > a .bi,
	.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		margin-top: -10px;
	}
}

.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
	display: none;
}

.fbs__net-navbar .navbar-nav li.dropend > a {
	position: relative;
}

.fbs__net-navbar .navbar-nav li.dropend > a:hover {
	background-color: var(--dropdown-hover-bg) !important;
}

.fbs__net-navbar .navbar-nav li.dropend > a .caret {
	position: absolute;
	right: 10px;
}

.fbs__net-navbar .navbar-nav li.dropstart > a {
	position: relative;
}

.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
	background-color: var(--dropdown-hover-bg) !important;
}

.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
	position: absolute;
	left: 10px;
}

.fbs__net-navbar .navbar-toggler:hover, .fbs__net-navbar .navbar-toggler:focus, .fbs__net-navbar .navbar-toggler:active {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.fbs__net-navbar .header-social a {
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	color: var(--bs-white);
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 4px;
	display: inline-block;
	background-color: transparent;
}

.fbs__net-navbar .header-social a:hover {
	background-color: rgba(var(--bs-white-rgb), 0.1);
}

@media (min-width: 992px) {
	.fbs__net-navbar .header-social a {
		color: var(--bs-white);
	}
}

.fbs__net-navbar .header-social .btn {
	width: auto !important;
	height: auto !important;
	background-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
}

@media (max-width: 575.98px) {
	.fbs__net-navbar .header-social .btn {
		display: none;
	}
}

.fbs__net-navbar.active {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: var(--nav-bg) !important;
	-webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
	box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}

.fbs__net-navbar.active .navbar-brand {
	color: rgba(var(--inverse-color-rgb), 1) !important;
}

.fbs__net-navbar.active .navbar-brand .logo.dark {
	display: block;
}

.fbs__net-navbar.active .navbar-brand .logo.light {
	display: none;
}

.fbs__net-navbar.active .nav-link {
	color: rgba(var(--inverse-color-rgb), 1) !important;
}

.fbs__net-navbar.active .nav-link:hover {
	color: rgba(var(--inverse-color-rgb), 1) !important;
}

.fbs__net-navbar.active .header-social a {
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
	color: var(--inverse-color);
}

.fbs__net-navbar.active .header-social a:hover {
	background-color: rgba(var(--inverse-color-rgb), 0.1);
}

@media (min-width: 992px) {
	.fbs__net-navbar.active .header-social a {
		color: rgba(var(--inverse-color-rgb), 1) !important;
	}
}

.fbs__net-navbar.active .header-social .btn {
	width: auto !important;
	height: auto !important;
	background-color: var(--bs-primary) !important;
	color: var(--bs-white) !important;
}

.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
	color: var(--inverse-color) !important;
}

.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
	display: none;
	content: "";
}

.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
	color: var(--inverse-color) !important;
}

.fbs__net-navbar .fbs__net-icon-menu {
	display: block;
}

.fbs__net-navbar .fbs__net-icon-close {
	display: none;
}

.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
	display: none;
}

.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
	display: block;
}

.fbs__net-navbar.dark {
	-webkit-box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
	box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
}

.fbs__net-navbar.dark .navbar-brand .logo.dark {
	display: block;
}

.fbs__net-navbar.dark .navbar-brand .logo.light {
	display: none;
}

.fbs__net-navbar.dark a {
	color: var(--inverse-color) !important;
}

.fbs__net-navbar.dark a:hover {
	color: var(--inverse-color);
}

.fbs__net-navbar.dark .header-social a:hover {
	background-color: rgba(var(--inverse-color-rgb), 0.05);
}

.fbs__net-navbar.dark ul li a {
	color: rgba(var(--inverse-color-rgb), 1) !important;
}

.fbs__net-navbar.dark ul li a:hover {
	color: var(--inverse-color) !important;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
	display: block;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
	display: none;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.faq__v2 {
	background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.faq__v2 .subtitle {
	background-color: rgba(var(--bs-secondary-rgb), 0.2);
	color: var(--bs-primary);
	display: inline-block;
	padding: 5px 12px;
	border-radius: 7px;
	font-weight: 600;
	font-size: 0.75rem;
	margin-bottom: 10px;
}

.faq__v2 .custom-accordion {
	--bs-accordion-bg: var(--bs-body-bg);
	--bs-accordion-btn-icon: url("");
	--bs-accordion-btn-active-icon: url("");
}

.faq__v2 .custom-accordion .accordion-button {
	position: relative;
	padding-right: 50px;
}

.faq__v2 .custom-accordion .accordion-button::after {
	content: "\f4fe";
	font-family: "bootstrap-icons" !important;
	font-style: normal;
	font-weight: 400 !important;
	font-variant: normal;
	text-transform: none;
	right: 20px;
	top: 15px;
	width: 18px;
	height: 14px;
	font-size: 30px;
	color: var(--inverse-color);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	line-height: 1;
	position: absolute;
	-webkit-font-smoothing: antialiased;
}

.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	content: "\f2ea";
}

.faq__v2 .custom-accordion .accordion-item {
	border: none;
	margin-bottom: 10px;
	border-radius: 10px;
	overflow: hidden;
	-webkit-transition: 0.3s all ease-in-out;
	transition: 0.3s all ease-in-out;
}

.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 18px;
	font-weight: 500;
	color: var(--bs-heading-color);
	padding-top: 20px;
	padding-bottom: 20px;
	border: none;
}

.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
	background-color: transparent;
	color: var(--inverse-color);
	-webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
	box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}

.faq__v2 .custom-accordion .accordion-item .accordion-body {
	border-top: none;
}

.testimonials__v2 .subtitle {
	background-color: rgba(var(--bs-secondary-rgb), 0.2);
	color: var(--bs-primary);
	display: inline-block;
	padding: 5px 12px;
	border-radius: 7px;
	font-weight: 600;
	font-size: 0.75rem;
	margin-bottom: 10px;
}

.testimonials__v2 .testimonial {
	border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.testimonials__v2 .testimonial-author .author-img {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50px;
	flex: 0 0 50px;
}

.footer {
	#background-color: rgba(var(--inverse-color-rgb), 0.05);
	font-size: 15px;
}

.footer ul li {
	padding: 0;
	margin: 0 0 10px 0;
}

.footer a {
	color: rgba(var(--inverse-color-rgb), 0.6);
	text-decoration: none;
}

.footer a:hover {
	color: var(--inverse-color);
}

.footer .copyright {
	font-size: 12px;
	text-align: right
}

#back-to-top {
	position: fixed;
	bottom: 0px;
	right: 20px;
	visibility: hidden;
	opacity: 0;
	background-color: var(--bs-primary);
	color: white;
	border: none;
	border-radius: 50%;
	padding: 10px;
	cursor: pointer;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	z-index: 1000;
	width: 40px;
	height: 40px;
}

#back-to-top i {
	font-size: 24px;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#back-to-top.show {
	bottom: 20px;
	opacity: 1;
	visibility: visible;
}

/*PLOP*/
ul {
	list-style-type:'▸';
	padding-left: .7em;
}

input,
select,
textarea,
.uneditable-input {
	display: inline-block;
	width: 5rem;
	max-width: 20rem;
	white-space: pre-wrap;
	word-wrap: break-word;
	background-color: #fff;
	font-size: 16px;
	height: 25px;
	padding: 0 4px;
	vertical-align: middle;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

select:disabled,
input:disabled {
	background-color: #eee;
	border: 1px solid #ccc
}

select:focus,
textarea:focus,
input:focus,
.uneditable-input:focus {
	inline: .125em solid #333
}

.max {
	width: 20rem;
}

.max-1 {
	width: 15rem;
}

.max-2 {
	width: 12rem;
}

.max-3 {
	width: 9rem;
}

.max-4 {
	width: 7rem;
}

.max-5 {
	width: 5rem;
}

.max-6 {
	width: 3rem;
}

.max-7 {
	width: 2.5rem;
}

input[type="submit"] {
	max-width: auto;
	min-width: auto;
}

textarea {
	height: auto
}

.hide {
	display: none !important
}

.btn {
	display: inline-block;
	min-width: 5rem;
	padding: 1px 8px 0 8px;
	margin: 0;
	background-color: #ccc;
	color: #333;
	font-size: 16px;
	font-weight: 700;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	border: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.btn:hover {
	background-color: #0067b8;
	color: #fff;
}

.btnc {
	display: inline-block;
	min-width: 5rem;
	padding: 1px 8px 0 8px;
	background-color: #333;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	border: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.btnc:hover {
	background-color: #0067b8;
	color: #fff;
	text-decoration: none
}

.btnw {
	display: inline-block;
	min-width: 5rem;
	padding: 1px 8px 0 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	border: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.btnw:hover {
	background-color: #333;
	color: #fff
}

.t24 {
	font-size: 24px
}

.t20 {
	font-size: 20px
}

.t18 {
	font-size: 18px
}

.t16 {
	font-size: 16px
}

.t15 {
	font-size: 15px
}

.t14 {
	font-size: 14px
}

.t13 {
	font-size: 13px
}

.t12 {
	font-size: 12px
}

.t11 {
	font-size: 11px
}

.t10 {
	display: inline-block;
	font-size: 10px;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8)
}

.week {
	background-color: #b70000;
	color: #fff;
}

.w15b {
	display: inline-block;
	margin: -7px 0 0 -5px;
	color: #777;
	font-size: 1.25em;
	font-weight: 700
}

.w67b {
	display: inline-block;
	margin: -7px 0 0 -5px;
	color: #b70000;
	font-size: 1.25em;
	font-weight: 700
}

.today {
	display: inline-block;
	margin: -7px 0 0 -5px;
	padding: 3px;
	background-color: #000;
	color: #fff;
	font-size: 1.25em;
	font-weight: 700;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px
}

.today_red {
	display: inline-block;
	margin: -7px 0 0 -5px;
	padding: 3px;
	background-color: #000;
	color: #b70000;
	font-size: 1.25em;
	font-weight: 700;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px
}

.date {
	display: inline-block;
	min-width: 1.25em;
	text-align: center
}

.day_event {
	background-color: #EEEAE8;
	font-size: .8em;
}

.day_fine {
	background-color: #ffffff;
	font-size: .8em;
}

.pd {
	display: inline-block;
	padding: 0 6px 0 6px;
	text-align: center;
	width: auto;
	border: 0;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.white {
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.red {
	background-color: #b70000;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.dblue {
	background-color: #0067b8;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.blue {
	background-color: #238adc;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.dgreen {
	background-color: #009030;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.green {
	background-color: #6ab04c;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.dbrown {
	background-color: #694e4e;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.brown {
	background-color: #886f6f;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.cblack {
	background-color: #333;
	color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px
}

.dgray {
	background-color: #777;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.cgray {
	background-color: #ccc;
	color: #333;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.gray {
	background-color: #eee;
	color: #333;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

#msg_panel {
	display: none;
	z-index: 9999;
	position: fixed;
	margin: -60px 0 0 -30px;
	padding: 30px 20px 20px 20px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-size: 30px;
	top: 50%;
	width: 100%;
	height: 110px;
	text-align: center;
	vertical-align: middle
}

.page {
	clear: both;
	margin-top: 20px;
	color: #333;
	font-size: 15px;
	font-weight: 400;
	width: 100%;
	text-align: center
}

.page ul {
	display: inline-block;
	margin-left: 0;
	margin-bottom: 0;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.page ul>li {
	display: inline
}

.page ul>li>a,
.page ul>li>span {
	float: left;
	padding: 4px 12px;
	background-color: #fff;
	min-width: 20px;
	text-decoration: none;
	border: 1px solid #ddd;
	border-left-width: 0
}

.page ul>li>a:hover,
.page ul>li>a:focus {
	background-color: #666;
	border-color: #666;
	color: #fff;
	font-weight: 700
}

.page ul>.active>a,
.page ul>.active>span {
	background-color: #666;
	color: #fff;
	font-weight: 700;
	border-color: #666;
	cursor: default
}

.page ul>.disabled>span,
.page ul>.disabled>a,
.page ul>.disabled>a:hover,
.page ul>.disabled>a:focus {
	background-color: transparent;
	color: #666;
	cursor: default
}

.page ul>li:first-child>a,
.page ul>li:first-child>span {
	border-left-width: 1px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-ms-border-radius-topleft: 4px;
	-o-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-ms-border-radius-bottomleft: 4px;
	-o-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px
}

.page ul>li:last-child>a,
.page ul>li:last-child>span {
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topright: 4px;
	-ms-border-radius-topright: 4px;
	-o-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-ms-border-radius-bottomright: 4px;
	-o-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px
}

img {
	max-width: 100%;
	height: auto;
}

.linkicon {
	display: inline-block;
	padding: 1px 8px 0 8px;
	margin: 0;
	background-color: #f0f0f0;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	border: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.linkicon:before {
	display: inline-block;
	margin-top: 7px;
	margin-right: 4px;
	text-decoration: none;
	text-transform: none !important;
	font: var(--fa-font-solid);
	font-size: 11px;
	content: '\f14b';
	color: #555;
	float: left;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
}

.linkicon:hover {
	background-color: #333333;
	color: #fff;
}

.searchicon {
	display: inline-block;
	padding: 1px 8px 0 8px;
	margin: 0;
	background-color: #f0f0f0;
	height: 25px;
	text-align: center;
	vertical-align: middle;
	border: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.searchicon:before {
	display: inline-block;
	margin-top: 7px;
	margin-right: 4px;
	text-decoration: none;
	text-transform: none !important;
	font: var(--fa-font-solid);
	font-size: 11px;
	content: '\f143';
	color: #555;
	float: left;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
}

.searchicon:hover {
	background-color: #694e4e;
	color: #fff;
}

pre {
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
	word-wrap: break-word
}

.ht {
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #aaa;
	border-collapse: collapse
}

.ht tr {
	border-top: none;
	border-bottom: .1px solid #ddd;
}

.ht th,
.ht td {
	padding: .625em
}

.ht th {
	letter-spacing: .1em
}

.ht tr:nth-child(even) {
	background-color: #f5f5f5
}

.ht thead {
	background-color: #555;
	color: #fff;
	height: 60px
}

.ht thead th {
	font-size: 1.1em;
	font-weight: 700;
	border-left: none;
	border-right: none
}

.ht thead th:first-child {
	border-left: none;
	border-right: none
}

.thead {
	background: #555;
	color: #fff;
	height: 60px;
	font-size: 1.2em;
	font-weight: 700;
	padding-top: 15px;
	#vertical-align: middle;
	border-left: none;
	border-right: none
}

.ht2 {
	margin: 0;
	padding: 0;
	width: auto;
	#border-bottom: 2px solid #aaa;
	border-collapse: collapse
}

.ht2 tr {
	border-top: none;
	#border-bottom: .1px solid #ddd;
}

.ht2 th,
.ht2 td {
	padding: .625em
}

.ht2 th {
	letter-spacing: .1em
}

.ht2 tr:nth-child(even) {
	background-color: #f5f5f5
}

.ht2 thead {
	background-color: #555;
	color: #fff;
	height: 60px
}

.ht2 thead th {
	font-size: 1.1em;
	font-weight: 700;
	border-left: none;
	border-right: none
}

.ht2 thead th:first-child {
	border-left: none;
	border-right: none
}

.ht4 {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

.ht4 tr {
	border-top: .1px solid #ddd;
	border-bottom: .1px solid #ddd;
}

.ht4 th,
.ht4 td {
	padding: .625em;
	border-left: .1px solid #ddd;
	border-right: .1px solid #ddd
}

.ht4 th {
	letter-spacing: .1em
}

.ht4 tr:nth-child(even) {
	background-color: #f5f5f5
}

.ht4 thead {
	background-color: #555;
	color: #fff;
	height: 60px
}

.ht4 thead th {
	font-size: 1.1em;
	font-weight: 700;
	border-left: none;
	border-right: none
}

.ht4 thead th:first-child {
	border-left: none;
	border-right: none
}

.pop {
	cursor: pointer
}

.popbox {
	display: none;
	position: absolute;
	z-index: 9999;
	color: #ffffff;
	background-color: #555555;
	border: 1px solid #555555;
	padding: 6px 10px 6px 10px;
	min-width: 300px;
	max-width: 800px;
	height: auto;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	box-shadow: 2px 2px 4px #666;
	-webkit-box-shadow: 2px 2px 4px #666;
	-moz-box-shadow: 2px 2px 4px #666;
	-ms-box-shadow: 2px 2px 4px #666;
	-o-box-shadow: 2px 2px 4px #666;
	cursor: pointer
}

.popbox h2 {
	display: block;
	margin: 0;
	padding: 0;
	color: #ffffff;
	font-size: 1.2em;
	font-weight: 700
}

.popbox table {
	margin: 0;
	padding: 0;
	border-top: 2px solid #555555;
	border-collapse: collapse
}

.popbox tr {
	border-top: none;
	border-bottom: 0.1px solid #444444
}

.popbox th,
.popbox td {
	padding: .2em
}

.popbox th {
	letter-spacing: .1em
}

.popbox tr:nth-child(even) {
	background-color: #777777
}

.popbox thead {
	background-color: #555555;
	color: #ffffff;
	height: 35px
}

.popbox thead th {
	font-size: 1.5em;
	font-weight: 700;
	border-left: none;
	border-right: none
}

.popbox thead th:first-child {
	border-left: none;
	border-right: none
}

.popbox a {
	color: #ffffff;
}

@media screen and (max-width:600px) {
	html,
	body {
		margin: 10px auto;
		padding: 0
	}

	.ht {
		border: 0
	}

	.ht thead {
		display: none
	}

	.ht tr {
		border-bottom: 0px solid #ddd
	}

	.ht tr:nth-child(odd) {
		background-color: #f5f5f5
	}

	.ht tr:nth-child(even) {
		background-color: #fff
	}

	.ht th, .ht td {
		display: block;
		clear: both;
		padding: 0 0 6px 6px;
		width: 100%
	}

	.ht th::before, .ht td::before {
		content: attr(data-label);
		float: left;
		font-weight: 700
	}

	.ht th:last-child, .ht td:last-child {
		border-bottom: 0
	}

	.ht th br, .ht td br {
		margin: 0;
		padding: 2px 0 0
	}

	.ht img {
		max-width: 100%;
		height: auto
	}

	.thead {
		background-color: #555;
		color: #fff;
		height: 4rem;
		font-size: 1.2em;
		font-weight: 700;
		border-left: none;
		border-right: none;
		margin-bottom: .5rem !important
	}

	img.ht {
		margin-top: 40px
	}

	.ht2 {
		border: 0
	}

	.ht2 thead {
		display: none
	}

	.ht2 tr {
		#border-bottom: 0px solid #ddd
	}

	.ht2 tr:nth-child(odd) {
		#background-color: #f5f5f5
	}

	.ht2 tr:nth-child(even) {
		#background-color: #fff
	}

	.ht2 th, .ht2 td {
		display: block;
		clear: both;
		padding: 0 0 6px 6px;
		width: 100%
	}

	.ht2 th::before, .ht2 td::before {
		content: attr(data-label);
		float: left;
		font-weight: 700
	}

	.ht2 th:last-child, .ht2 td:last-child {
		border-bottom: 0
	}

	.ht2 th br, .ht2 td br {
		margin: 0;
		padding: 2px 0 0
	}

	.ht4 {
		width: 100%
	}

	.ht4 img {
		max-width: 100%;
		height: auto
	}

	img.ht4 {
		margin-top: 40px
	}
}

/*masonry*/
.box {
	line-height: 1.2;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px
}

.box input[type="checkbox"] {
	display: none;
}

.box input[type="checkbox"]+label {
	display: inline-block;
	padding: 10px;
	background-color: #eee;
	border: 2px solid #ddd;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	cursor: pointer;
}

.box input[type="checkbox"]:checked+label {
	clear: both;
	background-color: #555;
	color: #fff;
	border: 2px solid #555;
}

.box input[type="checkbox"]:hover+label:hover {
	border: 2px solid #b70000;
}