* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}
body{
	width: 100%;
}
ul {
	list-style: none
}

a {
	text-decoration: none;
	font-size: 16px;
	color: #222;
	display: block;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	background: none;
	cursor: pointer;
}

textarea,
input {
	border: none;
	outline: none
}

em,
i {
	font-style: normal
}

img {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-user-select: none;
	-moz-user-focus: none;
	-moz-user-select: none;
	user-select: none;
}

select {
	/*Chrome同Firefox与IE里面的右侧三角显示的样式不同*/
	border: solid 1px #ddd;
	/*将默认的select选择框样式清除*/
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding-right: 14px;
	/*如果要加入自定义图片， 就增加这个属性 background: url或者在html中直接加入图标也行*/
}

/*清除iIE的默认选择框样式*/
select::-ms-expand {
	display: none;
}

.w95 {
	width: 95%;
	margin: 0 auto;
}

.br335 {
	border-radius: .335px;
}

.m_t_02 {
	margin-top: 2px !important;
}

.m_t_05 {
	margin-top: 5px !important;
}

.m_t_25 {
	margin-top: 25px !important;
}

.m_t_35 {
	margin-top: 35px !important;
}

.m_t_50 {
	margin-top: 50px !important;
}


body {
	width: 100%;
	max-width: 100%;
	font-family: "微软正黑体", "Microsoft JhengHei", 'Lato', "Droid Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
	background-color:var(--light);
	overflow-x: auto;
}

:root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #ff0203;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #74b733;
	--teal: #10c195;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #2CBCA3;
	--secondary: #1ed8bb;
	--success: #28a745;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
	--color3: #333;
	--color6: #666;
	--color9: #999;
	--jb-pink: linear-gradient( to right,#22c2e1 ,#217bf9);
	--jb-yellow1: linear-gradient(to right, #ff8c21, #ffbe3c);
	--jb-red1: linear-gradient( to right,#ff0203 ,#ff305E);
	--jb-white1: linear-gradient(to right, #ffffff10, #ffffff30);
	--pd335: .335px;
	--mtb335: .335px;
	--mt335: .335px;
	--mtb335: .335px;
	--w95: 95%;
	--mtauto: 0 auto;
	--font-DIN: DIN;
	--shadowred: 0 0px 5px #2e71d530;
	--shadowpink: 0 5px 5px #9ce29430;
}

@font-face {
	font-family: 'DIN';
	src: url(../font/DIN.ttf)format('truetype');
	src: url(../font/DIN.eot);
	src: url(../font/DIN.woff) format('woff');
	src: url(../font/DIN.svg) format('svg');
}

/* 小按钮 */
.bt_min {
	width: max-content;
	padding: 0 15px;
	font-size: 14px;
	color: #fff;
	line-height: 1.5;
	background: var(--jb-pink);
	box-shadow: var(--shadowpink);
	border-radius: 5px;
	text-align: center;
}
/* 大按钮 */
.bt_max {
	width: 95%;
	font-size: 14px;
	color: #fff;
	line-height: 2px;
	margin: 1px auto;
	background-image: var(--jb-red1);
	box-shadow: var(--shadowred);
	border-radius: 2px;
	text-align: center;
	display: block
}


/* 弹性两端布局 */
.flex_center_between{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* 图片居中自适应 */
.img_center{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.img_center img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* 单行文本显示 */
.nowrap {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
/* 两行文本显示 */
.multiline {
	text-overflow: -o-ellipsis- ;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



/* 弹窗 */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup .popup_text {
	background-color: #fff;
	border-radius: .35px;
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	padding: 0.5px 0.8px
}

.popup h4 {
	text-align: center;
	line-height: 1.5px;
	font-size: 16px;
}

.popup .popup_a {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
}

.popup_a a {
	padding: 0.35px 1.5px;
	color: #666;
	font-size: 16px;
}


.confirm_popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .3);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 99
}

.confirm_popup>div {
	background-color: #fff;
	width: 80%;
	height: auto;
	border-radius: .25px;
	text-align: center;
	line-height: 2px;
}

.confirm_popup>div>p {
	display: flex;
	border-top: 1px solid #aaa
}

.confirm_popup>div>p a {
	width: 50%
}

.confirm_popup>div>p a:first-child {
	border-right: 1px solid #aaa
}

/* 单选多选按钮 */
.radio {
	width: 30px !important;
	height: 30px !important;
	border-radius: 50%;
	border: 1px solid var(--primary);
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center
}

.radio_pick {
	background-color: var(--primary);
	border: none
}

.radio_pick::after {
	content: '';
    display: block;
    width: 20px;
    height: 12px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -10px;
}

.checkbox {
	width: 1.85px !important;
	height: .985px !important;
	display: flex;
	align-items: center;
	border-radius: 1px;
	border: .03px solid #99999980;
	padding: 0 .115px;
}

.checkbox::after {
	content: '';
    display: block;
    width: .8px;
    height: .8px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #99999980;
    border: .05px solid #fff;
}

.checked {
	justify-content: flex-end;
    background: #defdeb;
    border-color: var(--green);
    color: var(--green);
    border-radius: .335px;
}

.checked::after {
	border-color: var(--primary);
	background: #fff;
}

/* 复制 */
.copy{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.copy_text{
	background: rgba(0, 0, 0, .13);
	padding: 3px 15px;
	border-radius: 5px;
}
.copy_bt{
	background: var(--primary);
	color: #ffff;
	width: max-content;
	padding: 3px 5px;
	border-radius: 5px;
	margin: 0 5px;
}

.title{
	display: flex;align-items: center;justify-content: space-between;
	padding: 0 20px;
}
.title a{
	color: #666;
}


/* 图片预览 */
.imgpreview{
	position: fixed;top: 0;left: 0;z-index: 999;
	width: 100%;height: 100%;background: rgba(0, 0, 0, .13);
	display: flex;align-items: center;justify-content: center;
}
.imgpreview>div{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}
.imgpreview>div img{
	display: block;width: 100%;height: 100%;object-fit: contain;
}
.imgpreview .imgpreview_img{
	display: none;
}
.preview_left,.preview_right{
	position: absolute;top: 40%;
	width: 10%;
	height: 20%;
	background: rgba(0, 0, 0, .13);
	border-radius: 5px;
	display: flex;align-items: center;justify-content: center;
	opacity: 0;
}
.preview_left:hover,.preview_right:hover{
	opacity:1;
	/* animation-name: preview_opacity;
	animation-duration:.5s; */
}
.preview_left{
	left: 10px;
}
.preview_right{
	right: 10px;
}
.preview_left::after{
	content: '';
	display:block;
	width: 20px;
	height: 20px;
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
	transform: rotate(-135deg);
}
.preview_right::after{
	content: '';
	display:block;
	width: 20px;
	height: 20px;
	border-right: 3px solid #fff;
	border-top: 3px solid #fff;
	transform: rotate(45deg);
}
@keyframes preview_opacity{
	0%{
		opacity:0
	}
	100%{
		opacity:1
	}
}


@media (min-width:1200px){
	.imgpreview>div{
		width: 800px;height: 700px;
	}
}
@media (min-width:992px) and (max-width:1199px){
	.imgpreview>div{
		width: 700px;height: 600px;
	}
}
@media (min-width:768px) and (max-width:991px){
	.imgpreview>div{
		width: 600px;height: 600px;
	}
}
@media (min-width:480px) and (max-width:767px){
	.imgpreview>div{
		width: 350px;height: 350px;
	}
}

@media (max-width:479px) {
	.imgpreview>div{
		width: 300px;height: 300px;
	}
}

/* 返回顶部 */
.dingbu {
	width: 1.25px;
	height: 1.25px;
	border-radius: 50%;
	position: fixed;
	z-index: 50;
	bottom: 3px;
	right: .5px;
	background-color: rgba(0, 0, 0, .3);
	justify-content: center;
	align-items: center;
	display: none
}

.dingbu::after {
	content: '';
	display: block;
	width: .45px;
	height: .45px;
	border-top: .1px solid #fff;
	border-left: .1px solid #fff;
	transform: rotate(45deg);
	margin-top: .3px
}

/* 生日选择器 */
.birthdaypicker {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3);
}

.birthdaypicker>div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12px;
	background: #fff;
}

.birthdaypicker .birthdaypicker_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.birthdaypicker .birthdaypicker_title a {
	font-size: 16px;
	line-height: 2px;
	width: 3px;
	text-align: center;
	display: block;
}

.birthdaypicker_list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 10px;
	padding: 0 .5px;
}

.birthdaypicker_list ul {
	width: 31%;
	height: 100%;
	text-align: center;
	overflow: auto;
}

.birthdaypicker_list ul li {
	line-height: 2px;
}

.birthdaypicker_list ul .select {
	background-color: var(--blue);
	color: #fff;
	border-radius: .35px;
}

.pickAddress {
	position: fixed;
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
	z-index: 1111;
	background: rgba(0, 0, 0, .3);
}

.pickAddress .pickAddress_title {
	height: 2px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	box-sizing: border-box;
	position: absolute;
	bottom: 14px;
	left: 0;
	background-color: #fff;
}

.pickAddress_title a {
	width: 4px;
	height: 2px;
	line-height: 2px;
	color: #108ee9;
	text-align: center;
	text-align: center;
	display: block;
}

.pickAddress .pickAddress_cen {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	height: 14px;
	width: 100%;
	white-space: nowrap;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.pickAddress_cen>div {
	position: relative;
	width: 33.3%;
	height: 100%;
	overflow: hidden;
}

.Mask_pick {
	border-top: 1px solid #f5f5f5;
	border-bottom: 1px solid #f5f5f5;
	position: absolute;
	top: 6px;
	left: 0;
	width: 100%;
	height: 2px;
}

.Mask_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-image: linear-gradient(176deg, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6)), linear-gradient(0deg, hsla(0, 0%, 100%, .95), hsla(0, 0%, 100%, .6));
	background-repeat: no-repeat;
	background-position: top, bottom;
	background-size: 100% 6px
}

.addressList {
	padding: 6px 0;
	line-height: 2px;
	text-align: center;
	transform: translate(0px, 0px);
	transition: all 0.3s cubic-bezier(0, 0, 0.2, 1.2) 0s;
	box-sizing: border-box;
}

.addressList div {
	height: 2px;
	line-height: 2px;
}



/* 顶部 */
#header{
	height: 50px;
}
.header_nav{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_nav .header_nav_title{
	width: max-content;
	padding: 0 30px;
}
.header_nav .header_nav_list{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_nav .header_nav_list>div{
	width: max-content;
	height: 50px;
	padding: 0 15px;
	position: relative;
	line-height: 50px;
	background: #007bff;
	color: #fff;
}
.header_nav .header_nav_list>div a{
	color: #fff;
}
.header_search{
	display: flex;align-items: center;
	background: #fff;
}
.header_search input{
	line-height: 30px;padding: 0 10px;
	transition:all 0.3s cubic-bezier(0, 0, 0.2, 1.2) 0s;
	border-radius: 30px;
}
.header_search i{
	margin-left: 15px;
}

.header_nav_meun{
	display: none;
}

/* 底部 */
.footer_bt{
	height:60px;
}
.footer_bt>div{
	width: 100%;
	position: fixed;bottom: 0;left: 0;
	color: #fff;
	display: flex;align-items: center;justify-content: space-between;
	background: var(--primary);
}


/* 内容 */
.body{
	padding: 15px;
}
.body_left{
	width: 20%;
	float: left;
}
.body_right{
	width: 20%;
	float: right;
}
.body_center{
	width: 60%;
	margin: 0 auto;
}

.article_list,.unit_list{
	background: #fff;
}
.article_list:hover,.unit_list:hover{
	box-shadow: var(--shadowred);
}

.article_list_subtitle{
	font-size: 14px;
	color: #666;
}
.article_list_footer{
	font-size: 12px;
	color: #666;
	
}
.article_list li a{
	padding: .25rem .5rem;
	display: flex;
	background-color: #fff;
	align-items: center;
	justify-content: space-between;
	margin: .335rem 0 0;
	border-radius: .335rem;
}


.tool_title{
	font-size: 16px;
	line-height: 2;
}
.tool_list{
	display: flex;align-items: center;flex-wrap: wrap;
}
.tool_list a{
	width: 240px;
	background: #fff;
	border-radius: 5px;
	padding: 10px;
	display: flex;align-items: center;
	margin-bottom: 10px;margin-right: 15px;
}
.tool_list_img{
	width: 90px;height: 50px;
	display: flex;align-items: center;justify-content: center;
	margin-right: 10px;
}
.tool_list a img{
	width: 100%;height: 100%;display: block;object-fit: contain;
}
.tool_list a p{
	font-size: 12px;
	color: #666;
}

#artiicle_content p{
	line-height: 1.8;
	padding: 1px 0;
}
#artiicle_content img{
	max-width: 80%;
	display: inline-block;
}


.cases_list{
	display: flex;flex-wrap: wrap;
}
.cases_list a {
	display: flex;align-items: center;
	background: #fff;border-radius: .5vw;
}
.cases_list a .cases_list_img{
	border-radius: 50%;overflow: hidden;
	display: flex;align-items: center;justify-content: center;
}
.cases_list a .cases_list_img img{
	width: 100%;height: 100%;display: block;object-fit: contain;
}
.cases_list a .cases_list_content{
	width: 120px;
}
.cases_list a .cases_list_content h3,.cases_list a .cases_list_content p{
	white-space: nowrap;text-overflow: ellipsis;overflow: hidden;
}

.bg{
	background-color: #F5F5F5;
}
.bg-primary{
	background-color: #44c0e6;
}
.bg-secondary{
	background-color: #eefcff;
}
.bg-blue{
	background-color: #007bff;
}
.bg-white{
	background-color: #fff;
}
.bg-green{
	background-color: #74b733;
}
.bg-yellow{
	background-color: #ffc107;
}

.bg-black{
	background-color:#333333;
}
.bg-purple{
	background-color: #6f42c1;
}
.bg-red{
	background-color: #dc3545;
}
.bg-orange{
	background-color: #fd7e14;
}
.bg-gray{
	background-color: #6c757d;
}
.green{
	color: #74b733;
}
.blue{
	color:#007bff;
}
.purple{
	color: #6f42c1;
}
.red{
	color: #dc3545;
}
.white{
	color:#fff;
}
.gray{
	color:#6c757d;
}
.color{
	color:#44c0e6
}
.color-title{
	color: #1c234c;
}


/* radius */
.radius {
  border-radius: 50%;
}
.radius5 {
  border-radius: 5px;
}
.radius10 {
  border-radius: 10px;
}
.radius15 {
  border-radius: 15px;
}
.radius20 {
  border-radius: 20px;
}
.radius25 {
  border-radius: 25px;
}
.radius30 {
  border-radius: 30px;
}
.radius35 {
  border-radius: 35px;
}
.radius40 {
  border-radius: 40px;
}
.radius45 {
  border-radius: 45px;
}
.radius50 {
  border-radius: 50px;
}
.radius55 {
  border-radius: 55px;
}
.radius60 {
  border-radius: 60px;
}
.radius65 {
  border-radius: 65px;
}
.radius70 {
  border-radius: 70px;
}
.radius75 {
  border-radius: 75px;
}
.radius80 {
  border-radius: 80px;
}
.radius85 {
  border-radius: 85px;
}
.radius90 {
  border-radius: 90px;
}
.radius95 {
  border-radius: 95px;
}
.radius100 {
  border-radius: 100px;
}

/* flex */
.center{
	display: flex;
	justify-content: center;
	align-items: center;
}
.flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flex-l{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.flex-r{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.flex1{
	display: flex;
}
.flex-start{
	justify-content: flex-start;
}
.flex-end{
	justify-content: flex-end;
}
.flex-center{
	justify-content: center;
}
.flex-around{
	justify-content: space-around;
}
.flex-between{
	justify-content: space-between;
}
.flex-top{
	align-items: flex-start;
}
.flex-middle{
	align-items: center;
}
.flex-bottom{
	align-items: flex-end;
}
.flex-column{
	flex-direction: column;
}
.flex-wrap{
	flex-wrap: wrap;
}
.flex-grow{
	flex-grow:1
}
/* 边框 */



/* 行高 */
.lh-40{
	line-height: 40px;
}
.lh-50{
	line-height: 50px;
}
.lh-60{
	line-height: 60px;
}
.lh-70{
	line-height: 70px;
}
.lh-80{
	line-height: 80px;
}
.lh-90{
	line-height: 90px;
}
.lh-100{
	line-height: 100px;
}
/* 高 */
.h-10{
	height: 10px;
}
.h-15{
	height: 15px;
}
.h-20{
	height: 20px;
}.h-25{
	height: 25px;
}
.h-30{
	height: 30px;
}.h-35{
	height: 35px;
}
.h-40{
	height: 40px;
}.h-45{
	height: 45px;
}
.h-50{
	height: 50px;
}.h-55{
	height: 55px;
}
.h-60{
	height: 60px;
}.h-65{
	height: 65px;
}
.h-70{
	height: 70px;
}.h-75{
	height: 75px;
}
.h-80{
	height: 80px;
}.h-85{
	height: 85px;
}
.h-90{
	height: 90px;
}.h-95{
	height: 95px;
}
.h-100{
	height: 100px;
}.h-120{
	height: 120px;
}.h-140{
	height: 140px;
}.h-160{
	height: 160px;
}.h-180{
	height: 180px;
}.h-200{
	height: 200px;
}.h-220{
	height: 220px;
}.h-240{
	height: 240px;
}.h-260{
	height: 260px;
}.h-280{
	height: 280px;
}.h-300{
	height: 300px;
}

/* 宽 */
.w25{
	width: 25%;
}
.w33{
	width: 33%;
}
.w50{
	width: 50%;
}
.w-10{width:10px;}.w-15{width:15px;}.w-20{width:20px;}.w-25{width:25px;}.w-30{width:35px;}.w-40{width:40px;}.w-45{width:45px;}.w-50{width:50px;}.w-55{width:55px;}.w-60{width:60px;}.w-65{width:65px;}.w-70{width:70px;}.w-75{width:75px;}.w-80{width:80px;}.w-85{width:85px;}.w-90{width:90px;}.w-95{width:95px;}.w-100{width:100px;}.w-120{width:120px;}.w-140{width:140px;}.w-160{width:160px;}.w-180{width:180px;}.w-200{width:200px;}.w-220{width:220px;}.w-240{width:240px;}.w-260{width:260px;}.w-280{width:280px;}.w-300{width:300px;}.w-320{width:320px;}.w-340{width:340px;}.w-360{width:360px;}.w-380{width:380px;}.w-400{width:400px;}.w-420{width:420px;}.w-440{width:440px;}.w-460{width:460px;}.w-480{width:480px;}.w-500{width:500px;}.w-520{width:520px;}.w-540{width:540px;}.w-560{width:560px;}.w-580{width:580px;}.w-600{width:600px;}.w-620{width:620px;}.w-640{width:640px;}.w-660{width:660px;}.w-680{width:680px;}.w-700{width:700px;}.w-720{width:720px;}.w-740{width:740px;}


/* 全屏 */
.vw100 {
  width: 100vw !important;
}
.vh100 {
  height: 100vh !important;
}
.h100 {
  height: 100% !important;
}
.w100 {
  width: 100% !important;
}

/* 其他 */
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.fixed{
	position: fixed;
}
.fixed-bottom{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
}
.block{
	display: block;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.autowrap {
  word-wrap: break-word;
  word-break: normal;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.bold {
  font-weight: 700;
}
.over-hidden {
  overflow: hidden;
}
.flex-1{
	flex:1;
}
.textSpace{
	overflow: hidden;/*超出部分隐藏*/
	text-overflow:ellipsis;/* 超出部分显示省略号 */
	white-space: nowrap
}
.textSpace2{
	text-overflow: -o-ellipsis- ;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}



/* 内外边距 */
.m-auto{
	margin: 0 auto;
}
.pd-1, .ptb-1, .pt-1{padding-top:1px}.pd-1, .ptb-1, .pb-1{padding-bottom:1px}.pd-1, .plr-1, .pl-1{padding-left:1px}.pd-1, .plr-1, .pr-1{padding-right:1px}.mg-1, .mtb-1, .mt-1{margin-top:1px}.mg-1, .mtb-1, .mb-1{margin-bottom:1px}.mg-1, .mlr-1, .ml-1{margin-left:1px}.mg-1, .mlr-1, .mr-1{margin-right:1px}.pd-2, .ptb-2, .pt-2{padding-top:2px}.pd-2, .ptb-2, .pb-2{padding-bottom:2px}.pd-2, .plr-2, .pl-2{padding-left:2px}.pd-2, .plr-2, .pr-2{padding-right:2px}.mg-2, .mtb-2, .mt-2{margin-top:2px}.mg-2, .mtb-2, .mb-2{margin-bottom:2px}.mg-2, .mlr-2, .ml-2{margin-left:2px}.mg-2, .mlr-2, .mr-2{margin-right:2px}.pd-3, .ptb-3, .pt-3{padding-top:3px}.pd-3, .ptb-3, .pb-3{padding-bottom:3px}.pd-3, .plr-3, .pl-3{padding-left:3px}.pd-3, .plr-3, .pr-3{padding-right:3px}.mg-3, .mtb-3, .mt-3{margin-top:3px}.mg-3, .mtb-3, .mb-3{margin-bottom:3px}.mg-3, .mlr-3, .ml-3{margin-left:3px}.mg-3, .mlr-3, .mr-3{margin-right:3px}.pd-4, .ptb-4, .pt-4{padding-top:4px}.pd-4, .ptb-4, .pb-4{padding-bottom:4px}.pd-4, .plr-4, .pl-4{padding-left:4px}.pd-4, .plr-4, .pr-4{padding-right:4px}.mg-4, .mtb-4, .mt-4{margin-top:4px}.mg-4, .mtb-4, .mb-4{margin-bottom:4px}.mg-4, .mlr-4, .ml-4{margin-left:4px}.mg-4, .mlr-4, .mr-4{margin-right:4px}.pd-5, .ptb-5, .pt-5{padding-top:5px}.pd-5, .ptb-5, .pb-5{padding-bottom:5px}.pd-5, .plr-5, .pl-5{padding-left:5px}.pd-5, .plr-5, .pr-5{padding-right:5px}.mg-5, .mtb-5, .mt-5{margin-top:5px}.mg-5, .mtb-5, .mb-5{margin-bottom:5px}.mg-5, .mlr-5, .ml-5{margin-left:5px}.mg-5, .mlr-5, .mr-5{margin-right:5px}.pd-6, .ptb-6, .pt-6{padding-top:6px}.pd-6, .ptb-6, .pb-6{padding-bottom:6px}.pd-6, .plr-6, .pl-6{padding-left:6px}.pd-6, .plr-6, .pr-6{padding-right:6px}.mg-6, .mtb-6, .mt-6{margin-top:6px}.mg-6, .mtb-6, .mb-6{margin-bottom:6px}.mg-6, .mlr-6, .ml-6{margin-left:6px}.mg-6, .mlr-6, .mr-6{margin-right:6px}.pd-7, .ptb-7, .pt-7{padding-top:7px}.pd-7, .ptb-7, .pb-7{padding-bottom:7px}.pd-7, .plr-7, .pl-7{padding-left:7px}.pd-7, .plr-7, .pr-7{padding-right:7px}.mg-7, .mtb-7, .mt-7{margin-top:7px}.mg-7, .mtb-7, .mb-7{margin-bottom:7px}.mg-7, .mlr-7, .ml-7{margin-left:7px}.mg-7, .mlr-7, .mr-7{margin-right:7px}.pd-8, .ptb-8, .pt-8{padding-top:8px}.pd-8, .ptb-8, .pb-8{padding-bottom:8px}.pd-8, .plr-8, .pl-8{padding-left:8px}.pd-8, .plr-8, .pr-8{padding-right:8px}.mg-8, .mtb-8, .mt-8{margin-top:8px}.mg-8, .mtb-8, .mb-8{margin-bottom:8px}.mg-8, .mlr-8, .ml-8{margin-left:8px}.mg-8, .mlr-8, .mr-8{margin-right:8px}.pd-9, .ptb-9, .pt-9{padding-top:9px}.pd-9, .ptb-9, .pb-9{padding-bottom:9px}.pd-9, .plr-9, .pl-9{padding-left:9px}.pd-9, .plr-9, .pr-9{padding-right:9px}.mg-9, .mtb-9, .mt-9{margin-top:9px}.mg-9, .mtb-9, .mb-9{margin-bottom:9px}.mg-9, .mlr-9, .ml-9{margin-left:9px}.mg-9, .mlr-9, .mr-9{margin-right:9px}
.pd-10, .ptb-10, .pt-10{padding-top:10px}.pd-10, .ptb-10, .pb-10{padding-bottom:10px}.pd-10, .plr-10, .pl-10{padding-left:10px}.pd-10, .plr-10, .pr-10{padding-right:10px}.mg-10, .mtb-10, .mt-10{margin-top:10px}.mg-10, .mtb-10, .mb-10{margin-bottom:10px}.mg-10, .mlr-10, .ml-10{margin-left:10px}.mg-10, .mlr-10, .mr-10{margin-right:10px}.pd-11, .ptb-11, .pt-11{padding-top:11px}.pd-11, .ptb-11, .pb-11{padding-bottom:11px}.pd-11, .plr-11, .pl-11{padding-left:11px}.pd-11, .plr-11, .pr-11{padding-right:11px}.mg-11, .mtb-11, .mt-11{margin-top:11px}.mg-11, .mtb-11, .mb-11{margin-bottom:11px}.mg-11, .mlr-11, .ml-11{margin-left:11px}.mg-11, .mlr-11, .mr-11{margin-right:11px}.pd-12, .ptb-12, .pt-12{padding-top:12px}.pd-12, .ptb-12, .pb-12{padding-bottom:12px}.pd-12, .plr-12, .pl-12{padding-left:12px}.pd-12, .plr-12, .pr-12{padding-right:12px}.mg-12, .mtb-12, .mt-12{margin-top:12px}.mg-12, .mtb-12, .mb-12{margin-bottom:12px}.mg-12, .mlr-12, .ml-12{margin-left:12px}.mg-12, .mlr-12, .mr-12{margin-right:12px}.pd-13, .ptb-13, .pt-13{padding-top:13px}.pd-13, .ptb-13, .pb-13{padding-bottom:13px}.pd-13, .plr-13, .pl-13{padding-left:13px}.pd-13, .plr-13, .pr-13{padding-right:13px}.mg-13, .mtb-13, .mt-13{margin-top:13px}.mg-13, .mtb-13, .mb-13{margin-bottom:13px}.mg-13, .mlr-13, .ml-13{margin-left:13px}.mg-13, .mlr-13, .mr-13{margin-right:13px}.pd-14, .ptb-14, .pt-14{padding-top:14px}.pd-14, .ptb-14, .pb-14{padding-bottom:14px}.pd-14, .plr-14, .pl-14{padding-left:14px}.pd-14, .plr-14, .pr-14{padding-right:14px}.mg-14, .mtb-14, .mt-14{margin-top:14px}.mg-14, .mtb-14, .mb-14{margin-bottom:14px}.mg-14, .mlr-14, .ml-14{margin-left:14px}.mg-14, .mlr-14, .mr-14{margin-right:14px}.pd-15, .ptb-15, .pt-15{padding-top:15px}.pd-15, .ptb-15, .pb-15{padding-bottom:15px}.pd-15, .plr-15, .pl-15{padding-left:15px}.pd-15, .plr-15, .pr-15{padding-right:15px}.mg-15, .mtb-15, .mt-15{margin-top:15px}.mg-15, .mtb-15, .mb-15{margin-bottom:15px}.mg-15, .mlr-15, .ml-15{margin-left:15px}.mg-15, .mlr-15, .mr-15{margin-right:15px}.pd-16, .ptb-16, .pt-16{padding-top:16px}.pd-16, .ptb-16, .pb-16{padding-bottom:16px}.pd-16, .plr-16, .pl-16{padding-left:16px}.pd-16, .plr-16, .pr-16{padding-right:16px}.mg-16, .mtb-16, .mt-16{margin-top:16px}.mg-16, .mtb-16, .mb-16{margin-bottom:16px}.mg-16, .mlr-16, .ml-16{margin-left:16px}.mg-16, .mlr-16, .mr-16{margin-right:16px}.pd-17, .ptb-17, .pt-17{padding-top:17px}.pd-17, .ptb-17, .pb-17{padding-bottom:17px}.pd-17, .plr-17, .pl-17{padding-left:17px}.pd-17, .plr-17, .pr-17{padding-right:17px}.mg-17, .mtb-17, .mt-17{margin-top:17px}.mg-17, .mtb-17, .mb-17{margin-bottom:17px}.mg-17, .mlr-17, .ml-17{margin-left:17px}.mg-17, .mlr-17, .mr-17{margin-right:17px}.pd-18, .ptb-18, .pt-18{padding-top:18px}.pd-18, .ptb-18, .pb-18{padding-bottom:18px}.pd-18, .plr-18, .pl-18{padding-left:18px}.pd-18, .plr-18, .pr-18{padding-right:18px}.mg-18, .mtb-18, .mt-18{margin-top:18px}.mg-18, .mtb-18, .mb-18{margin-bottom:18px}.mg-18, .mlr-18, .ml-18{margin-left:18px}.mg-18, .mlr-18, .mr-18{margin-right:18px}.pd-19, .ptb-19, .pt-19{padding-top:19px}.pd-19, .ptb-19, .pb-19{padding-bottom:19px}.pd-19, .plr-19, .pl-19{padding-left:19px}.pd-19, .plr-19, .pr-19{padding-right:19px}.mg-19, .mtb-19, .mt-19{margin-top:19px}.mg-19, .mtb-19, .mb-19{margin-bottom:19px}.mg-19, .mlr-19, .ml-19{margin-left:19px}.mg-19, .mlr-19, .mr-19{margin-right:19px}
.pd-20, .ptb-20, .pt-20{padding-top:20px}.pd-20, .ptb-20, .pb-20{padding-bottom:20px}.pd-20, .plr-20, .pl-20{padding-left:20px}.pd-20, .plr-20, .pr-20{padding-right:20px}.mg-20, .mtb-20, .mt-20{margin-top:20px}.mg-20, .mtb-20, .mb-20{margin-bottom:20px}.mg-20, .mlr-20, .ml-20{margin-left:20px}.mg-20, .mlr-20, .mr-20{margin-right:20px}.pd-21, .ptb-21, .pt-21{padding-top:21px}.pd-21, .ptb-21, .pb-21{padding-bottom:21px}.pd-21, .plr-21, .pl-21{padding-left:21px}.pd-21, .plr-21, .pr-21{padding-right:21px}.mg-21, .mtb-21, .mt-21{margin-top:21px}.mg-21, .mtb-21, .mb-21{margin-bottom:21px}.mg-21, .mlr-21, .ml-21{margin-left:21px}.mg-21, .mlr-21, .mr-21{margin-right:21px}.pd-22, .ptb-22, .pt-22{padding-top:22px}.pd-22, .ptb-22, .pb-22{padding-bottom:22px}.pd-22, .plr-22, .pl-22{padding-left:22px}.pd-22, .plr-22, .pr-22{padding-right:22px}.mg-22, .mtb-22, .mt-22{margin-top:22px}.mg-22, .mtb-22, .mb-22{margin-bottom:22px}.mg-22, .mlr-22, .ml-22{margin-left:22px}.mg-22, .mlr-22, .mr-22{margin-right:22px}.pd-23, .ptb-23, .pt-23{padding-top:23px}.pd-23, .ptb-23, .pb-23{padding-bottom:23px}.pd-23, .plr-23, .pl-23{padding-left:23px}.pd-23, .plr-23, .pr-23{padding-right:23px}.mg-23, .mtb-23, .mt-23{margin-top:23px}.mg-23, .mtb-23, .mb-23{margin-bottom:23px}.mg-23, .mlr-23, .ml-23{margin-left:23px}.mg-23, .mlr-23, .mr-23{margin-right:23px}.pd-24, .ptb-24, .pt-24{padding-top:24px}.pd-24, .ptb-24, .pb-24{padding-bottom:24px}.pd-24, .plr-24, .pl-24{padding-left:24px}.pd-24, .plr-24, .pr-24{padding-right:24px}.mg-24, .mtb-24, .mt-24{margin-top:24px}.mg-24, .mtb-24, .mb-24{margin-bottom:24px}.mg-24, .mlr-24, .ml-24{margin-left:24px}.mg-24, .mlr-24, .mr-24{margin-right:24px}.pd-25, .ptb-25, .pt-25{padding-top:25px}.pd-25, .ptb-25, .pb-25{padding-bottom:25px}.pd-25, .plr-25, .pl-25{padding-left:25px}.pd-25, .plr-25, .pr-25{padding-right:25px}.mg-25, .mtb-25, .mt-25{margin-top:25px}.mg-25, .mtb-25, .mb-25{margin-bottom:25px}.mg-25, .mlr-25, .ml-25{margin-left:25px}.mg-25, .mlr-25, .mr-25{margin-right:25px}.pd-26, .ptb-26, .pt-26{padding-top:26px}.pd-26, .ptb-26, .pb-26{padding-bottom:26px}.pd-26, .plr-26, .pl-26{padding-left:26px}.pd-26, .plr-26, .pr-26{padding-right:26px}.mg-26, .mtb-26, .mt-26{margin-top:26px}.mg-26, .mtb-26, .mb-26{margin-bottom:26px}.mg-26, .mlr-26, .ml-26{margin-left:26px}.mg-26, .mlr-26, .mr-26{margin-right:26px}.pd-27, .ptb-27, .pt-27{padding-top:27px}.pd-27, .ptb-27, .pb-27{padding-bottom:27px}.pd-27, .plr-27, .pl-27{padding-left:27px}.pd-27, .plr-27, .pr-27{padding-right:27px}.mg-27, .mtb-27, .mt-27{margin-top:27px}.mg-27, .mtb-27, .mb-27{margin-bottom:27px}.mg-27, .mlr-27, .ml-27{margin-left:27px}.mg-27, .mlr-27, .mr-27{margin-right:27px}.pd-28, .ptb-28, .pt-28{padding-top:28px}.pd-28, .ptb-28, .pb-28{padding-bottom:28px}.pd-28, .plr-28, .pl-28{padding-left:28px}.pd-28, .plr-28, .pr-28{padding-right:28px}.mg-28, .mtb-28, .mt-28{margin-top:28px}.mg-28, .mtb-28, .mb-28{margin-bottom:28px}.mg-28, .mlr-28, .ml-28{margin-left:28px}.mg-28, .mlr-28, .mr-28{margin-right:28px}.pd-29, .ptb-29, .pt-29{padding-top:29px}.pd-29, .ptb-29, .pb-29{padding-bottom:29px}.pd-29, .plr-29, .pl-29{padding-left:29px}.pd-29, .plr-29, .pr-29{padding-right:29px}.mg-29, .mtb-29, .mt-29{margin-top:29px}.mg-29, .mtb-29, .mb-29{margin-bottom:29px}.mg-29, .mlr-29, .ml-29{margin-left:29px}.mg-29, .mlr-29, .mr-29{margin-right:29px}
.pd-30, .ptb-30, .pt-30{padding-top:30px}.pd-30, .ptb-30, .pb-30{padding-bottom:30px}.pd-30, .plr-30, .pl-30{padding-left:30px}.pd-30, .plr-30, .pr-30{padding-right:30px}.mg-30, .mtb-30, .mt-30{margin-top:30px}.mg-30, .mtb-30, .mb-30{margin-bottom:30px}.mg-30, .mlr-30, .ml-30{margin-left:30px}.mg-30, .mlr-30, .mr-30{margin-right:30px}.pd-31, .ptb-31, .pt-31{padding-top:31px}.pd-31, .ptb-31, .pb-31{padding-bottom:31px}.pd-31, .plr-31, .pl-31{padding-left:31px}.pd-31, .plr-31, .pr-31{padding-right:31px}.mg-31, .mtb-31, .mt-31{margin-top:31px}.mg-31, .mtb-31, .mb-31{margin-bottom:31px}.mg-31, .mlr-31, .ml-31{margin-left:31px}.mg-31, .mlr-31, .mr-31{margin-right:31px}.pd-32, .ptb-32, .pt-32{padding-top:32px}.pd-32, .ptb-32, .pb-32{padding-bottom:32px}.pd-32, .plr-32, .pl-32{padding-left:32px}.pd-32, .plr-32, .pr-32{padding-right:32px}.mg-32, .mtb-32, .mt-32{margin-top:32px}.mg-32, .mtb-32, .mb-32{margin-bottom:32px}.mg-32, .mlr-32, .ml-32{margin-left:32px}.mg-32, .mlr-32, .mr-32{margin-right:32px}.pd-33, .ptb-33, .pt-33{padding-top:33px}.pd-33, .ptb-33, .pb-33{padding-bottom:33px}.pd-33, .plr-33, .pl-33{padding-left:33px}.pd-33, .plr-33, .pr-33{padding-right:33px}.mg-33, .mtb-33, .mt-33{margin-top:33px}.mg-33, .mtb-33, .mb-33{margin-bottom:33px}.mg-33, .mlr-33, .ml-33{margin-left:33px}.mg-33, .mlr-33, .mr-33{margin-right:33px}.pd-34, .ptb-34, .pt-34{padding-top:34px}.pd-34, .ptb-34, .pb-34{padding-bottom:34px}.pd-34, .plr-34, .pl-34{padding-left:34px}.pd-34, .plr-34, .pr-34{padding-right:34px}.mg-34, .mtb-34, .mt-34{margin-top:34px}.mg-34, .mtb-34, .mb-34{margin-bottom:34px}.mg-34, .mlr-34, .ml-34{margin-left:34px}.mg-34, .mlr-34, .mr-34{margin-right:34px}.pd-35, .ptb-35, .pt-35{padding-top:35px}.pd-35, .ptb-35, .pb-35{padding-bottom:35px}.pd-35, .plr-35, .pl-35{padding-left:35px}.pd-35, .plr-35, .pr-35{padding-right:35px}.mg-35, .mtb-35, .mt-35{margin-top:35px}.mg-35, .mtb-35, .mb-35{margin-bottom:35px}.mg-35, .mlr-35, .ml-35{margin-left:35px}.mg-35, .mlr-35, .mr-35{margin-right:35px}.pd-36, .ptb-36, .pt-36{padding-top:36px}.pd-36, .ptb-36, .pb-36{padding-bottom:36px}.pd-36, .plr-36, .pl-36{padding-left:36px}.pd-36, .plr-36, .pr-36{padding-right:36px}.mg-36, .mtb-36, .mt-36{margin-top:36px}.mg-36, .mtb-36, .mb-36{margin-bottom:36px}.mg-36, .mlr-36, .ml-36{margin-left:36px}.mg-36, .mlr-36, .mr-36{margin-right:36px}.pd-37, .ptb-37, .pt-37{padding-top:37px}.pd-37, .ptb-37, .pb-37{padding-bottom:37px}.pd-37, .plr-37, .pl-37{padding-left:37px}.pd-37, .plr-37, .pr-37{padding-right:37px}.mg-37, .mtb-37, .mt-37{margin-top:37px}.mg-37, .mtb-37, .mb-37{margin-bottom:37px}.mg-37, .mlr-37, .ml-37{margin-left:37px}.mg-37, .mlr-37, .mr-37{margin-right:37px}.pd-38, .ptb-38, .pt-38{padding-top:38px}.pd-38, .ptb-38, .pb-38{padding-bottom:38px}.pd-38, .plr-38, .pl-38{padding-left:38px}.pd-38, .plr-38, .pr-38{padding-right:38px}.mg-38, .mtb-38, .mt-38{margin-top:38px}.mg-38, .mtb-38, .mb-38{margin-bottom:38px}.mg-38, .mlr-38, .ml-38{margin-left:38px}.mg-38, .mlr-38, .mr-38{margin-right:38px}.pd-39, .ptb-39, .pt-39{padding-top:39px}.pd-39, .ptb-39, .pb-39{padding-bottom:39px}.pd-39, .plr-39, .pl-39{padding-left:39px}.pd-39, .plr-39, .pr-39{padding-right:39px}.mg-39, .mtb-39, .mt-39{margin-top:39px}.mg-39, .mtb-39, .mb-39{margin-bottom:39px}.mg-39, .mlr-39, .ml-39{margin-left:39px}.mg-39, .mlr-39, .mr-39{margin-right:39px}
.pd-40, .ptb-40, .pt-40{padding-top:40px}.pd-40, .ptb-40, .pb-40{padding-bottom:40px}.pd-40, .plr-40, .pl-40{padding-left:40px}.pd-40, .plr-40, .pr-40{padding-right:40px}.mg-40, .mtb-40, .mt-40{margin-top:40px}.mg-40, .mtb-40, .mb-40{margin-bottom:40px}.mg-40, .mlr-40, .ml-40{margin-left:40px}.mg-40, .mlr-40, .mr-40{margin-right:40px}.pd-41, .ptb-41, .pt-41{padding-top:41px}.pd-41, .ptb-41, .pb-41{padding-bottom:41px}.pd-41, .plr-41, .pl-41{padding-left:41px}.pd-41, .plr-41, .pr-41{padding-right:41px}.mg-41, .mtb-41, .mt-41{margin-top:41px}.mg-41, .mtb-41, .mb-41{margin-bottom:41px}.mg-41, .mlr-41, .ml-41{margin-left:41px}.mg-41, .mlr-41, .mr-41{margin-right:41px}.pd-42, .ptb-42, .pt-42{padding-top:42px}.pd-42, .ptb-42, .pb-42{padding-bottom:42px}.pd-42, .plr-42, .pl-42{padding-left:42px}.pd-42, .plr-42, .pr-42{padding-right:42px}.mg-42, .mtb-42, .mt-42{margin-top:42px}.mg-42, .mtb-42, .mb-42{margin-bottom:42px}.mg-42, .mlr-42, .ml-42{margin-left:42px}.mg-42, .mlr-42, .mr-42{margin-right:42px}.pd-43, .ptb-43, .pt-43{padding-top:43px}.pd-43, .ptb-43, .pb-43{padding-bottom:43px}.pd-43, .plr-43, .pl-43{padding-left:43px}.pd-43, .plr-43, .pr-43{padding-right:43px}.mg-43, .mtb-43, .mt-43{margin-top:43px}.mg-43, .mtb-43, .mb-43{margin-bottom:43px}.mg-43, .mlr-43, .ml-43{margin-left:43px}.mg-43, .mlr-43, .mr-43{margin-right:43px}.pd-44, .ptb-44, .pt-44{padding-top:44px}.pd-44, .ptb-44, .pb-44{padding-bottom:44px}.pd-44, .plr-44, .pl-44{padding-left:44px}.pd-44, .plr-44, .pr-44{padding-right:44px}.mg-44, .mtb-44, .mt-44{margin-top:44px}.mg-44, .mtb-44, .mb-44{margin-bottom:44px}.mg-44, .mlr-44, .ml-44{margin-left:44px}.mg-44, .mlr-44, .mr-44{margin-right:44px}.pd-45, .ptb-45, .pt-45{padding-top:45px}.pd-45, .ptb-45, .pb-45{padding-bottom:45px}.pd-45, .plr-45, .pl-45{padding-left:45px}.pd-45, .plr-45, .pr-45{padding-right:45px}.mg-45, .mtb-45, .mt-45{margin-top:45px}.mg-45, .mtb-45, .mb-45{margin-bottom:45px}.mg-45, .mlr-45, .ml-45{margin-left:45px}.mg-45, .mlr-45, .mr-45{margin-right:45px}.pd-46, .ptb-46, .pt-46{padding-top:46px}.pd-46, .ptb-46, .pb-46{padding-bottom:46px}.pd-46, .plr-46, .pl-46{padding-left:46px}.pd-46, .plr-46, .pr-46{padding-right:46px}.mg-46, .mtb-46, .mt-46{margin-top:46px}.mg-46, .mtb-46, .mb-46{margin-bottom:46px}.mg-46, .mlr-46, .ml-46{margin-left:46px}.mg-46, .mlr-46, .mr-46{margin-right:46px}.pd-47, .ptb-47, .pt-47{padding-top:47px}.pd-47, .ptb-47, .pb-47{padding-bottom:47px}.pd-47, .plr-47, .pl-47{padding-left:47px}.pd-47, .plr-47, .pr-47{padding-right:47px}.mg-47, .mtb-47, .mt-47{margin-top:47px}.mg-47, .mtb-47, .mb-47{margin-bottom:47px}.mg-47, .mlr-47, .ml-47{margin-left:47px}.mg-47, .mlr-47, .mr-47{margin-right:47px}.pd-48, .ptb-48, .pt-48{padding-top:48px}.pd-48, .ptb-48, .pb-48{padding-bottom:48px}.pd-48, .plr-48, .pl-48{padding-left:48px}.pd-48, .plr-48, .pr-48{padding-right:48px}.mg-48, .mtb-48, .mt-48{margin-top:48px}.mg-48, .mtb-48, .mb-48{margin-bottom:48px}.mg-48, .mlr-48, .ml-48{margin-left:48px}.mg-48, .mlr-48, .mr-48{margin-right:48px}.pd-49, .ptb-49, .pt-49{padding-top:49px}.pd-49, .ptb-49, .pb-49{padding-bottom:49px}.pd-49, .plr-49, .pl-49{padding-left:49px}.pd-49, .plr-49, .pr-49{padding-right:49px}.mg-49, .mtb-49, .mt-49{margin-top:49px}.mg-49, .mtb-49, .mb-49{margin-bottom:49px}.mg-49, .mlr-49, .ml-49{margin-left:49px}.mg-49, .mlr-49, .mr-49{margin-right:49px}
.pd-50, .ptb-50, .pt-50{padding-top:50px}.pd-50, .ptb-50, .pb-50{padding-bottom:50px}.pd-50, .plr-50, .pl-50{padding-left:50px}.pd-50, .plr-50, .pr-50{padding-right:50px}.mg-50, .mtb-50, .mt-50{margin-top:50px}.mg-50, .mtb-50, .mb-50{margin-bottom:50px}.mg-50, .mlr-50, .ml-50{margin-left:50px}.mg-50, .mlr-50, .mr-50{margin-right:50px}.pd-51, .ptb-51, .pt-51{padding-top:51px}.pd-51, .ptb-51, .pb-51{padding-bottom:51px}.pd-51, .plr-51, .pl-51{padding-left:51px}.pd-51, .plr-51, .pr-51{padding-right:51px}.mg-51, .mtb-51, .mt-51{margin-top:51px}.mg-51, .mtb-51, .mb-51{margin-bottom:51px}.mg-51, .mlr-51, .ml-51{margin-left:51px}.mg-51, .mlr-51, .mr-51{margin-right:51px}.pd-52, .ptb-52, .pt-52{padding-top:52px}.pd-52, .ptb-52, .pb-52{padding-bottom:52px}.pd-52, .plr-52, .pl-52{padding-left:52px}.pd-52, .plr-52, .pr-52{padding-right:52px}.mg-52, .mtb-52, .mt-52{margin-top:52px}.mg-52, .mtb-52, .mb-52{margin-bottom:52px}.mg-52, .mlr-52, .ml-52{margin-left:52px}.mg-52, .mlr-52, .mr-52{margin-right:52px}.pd-53, .ptb-53, .pt-53{padding-top:53px}.pd-53, .ptb-53, .pb-53{padding-bottom:53px}.pd-53, .plr-53, .pl-53{padding-left:53px}.pd-53, .plr-53, .pr-53{padding-right:53px}.mg-53, .mtb-53, .mt-53{margin-top:53px}.mg-53, .mtb-53, .mb-53{margin-bottom:53px}.mg-53, .mlr-53, .ml-53{margin-left:53px}.mg-53, .mlr-53, .mr-53{margin-right:53px}.pd-54, .ptb-54, .pt-54{padding-top:54px}.pd-54, .ptb-54, .pb-54{padding-bottom:54px}.pd-54, .plr-54, .pl-54{padding-left:54px}.pd-54, .plr-54, .pr-54{padding-right:54px}.mg-54, .mtb-54, .mt-54{margin-top:54px}.mg-54, .mtb-54, .mb-54{margin-bottom:54px}.mg-54, .mlr-54, .ml-54{margin-left:54px}.mg-54, .mlr-54, .mr-54{margin-right:54px}.pd-55, .ptb-55, .pt-55{padding-top:55px}.pd-55, .ptb-55, .pb-55{padding-bottom:55px}.pd-55, .plr-55, .pl-55{padding-left:55px}.pd-55, .plr-55, .pr-55{padding-right:55px}.mg-55, .mtb-55, .mt-55{margin-top:55px}.mg-55, .mtb-55, .mb-55{margin-bottom:55px}.mg-55, .mlr-55, .ml-55{margin-left:55px}.mg-55, .mlr-55, .mr-55{margin-right:55px}.pd-56, .ptb-56, .pt-56{padding-top:56px}.pd-56, .ptb-56, .pb-56{padding-bottom:56px}.pd-56, .plr-56, .pl-56{padding-left:56px}.pd-56, .plr-56, .pr-56{padding-right:56px}.mg-56, .mtb-56, .mt-56{margin-top:56px}.mg-56, .mtb-56, .mb-56{margin-bottom:56px}.mg-56, .mlr-56, .ml-56{margin-left:56px}.mg-56, .mlr-56, .mr-56{margin-right:56px}.pd-57, .ptb-57, .pt-57{padding-top:57px}.pd-57, .ptb-57, .pb-57{padding-bottom:57px}.pd-57, .plr-57, .pl-57{padding-left:57px}.pd-57, .plr-57, .pr-57{padding-right:57px}.mg-57, .mtb-57, .mt-57{margin-top:57px}.mg-57, .mtb-57, .mb-57{margin-bottom:57px}.mg-57, .mlr-57, .ml-57{margin-left:57px}.mg-57, .mlr-57, .mr-57{margin-right:57px}.pd-58, .ptb-58, .pt-58{padding-top:58px}.pd-58, .ptb-58, .pb-58{padding-bottom:58px}.pd-58, .plr-58, .pl-58{padding-left:58px}.pd-58, .plr-58, .pr-58{padding-right:58px}.mg-58, .mtb-58, .mt-58{margin-top:58px}.mg-58, .mtb-58, .mb-58{margin-bottom:58px}.mg-58, .mlr-58, .ml-58{margin-left:58px}.mg-58, .mlr-58, .mr-58{margin-right:58px}.pd-59, .ptb-59, .pt-59{padding-top:59px}.pd-59, .ptb-59, .pb-59{padding-bottom:59px}.pd-59, .plr-59, .pl-59{padding-left:59px}.pd-59, .plr-59, .pr-59{padding-right:59px}.mg-59, .mtb-59, .mt-59{margin-top:59px}.mg-59, .mtb-59, .mb-59{margin-bottom:59px}.mg-59, .mlr-59, .ml-59{margin-left:59px}.mg-59, .mlr-59, .mr-59{margin-right:59px}
.pd-60, .ptb-60, .pt-60{padding-top:60px}.pd-60, .ptb-60, .pb-60{padding-bottom:60px}.pd-60, .plr-60, .pl-60{padding-left:60px}.pd-60, .plr-60, .pr-60{padding-right:60px}.mg-60, .mtb-60, .mt-60{margin-top:60px}.mg-60, .mtb-60, .mb-60{margin-bottom:60px}.mg-60, .mlr-60, .ml-60{margin-left:60px}.mg-60, .mlr-60, .mr-60{margin-right:60px}.pd-61, .ptb-61, .pt-61{padding-top:61px}.pd-61, .ptb-61, .pb-61{padding-bottom:61px}.pd-61, .plr-61, .pl-61{padding-left:61px}.pd-61, .plr-61, .pr-61{padding-right:61px}.mg-61, .mtb-61, .mt-61{margin-top:61px}.mg-61, .mtb-61, .mb-61{margin-bottom:61px}.mg-61, .mlr-61, .ml-61{margin-left:61px}.mg-61, .mlr-61, .mr-61{margin-right:61px}.pd-62, .ptb-62, .pt-62{padding-top:62px}.pd-62, .ptb-62, .pb-62{padding-bottom:62px}.pd-62, .plr-62, .pl-62{padding-left:62px}.pd-62, .plr-62, .pr-62{padding-right:62px}.mg-62, .mtb-62, .mt-62{margin-top:62px}.mg-62, .mtb-62, .mb-62{margin-bottom:62px}.mg-62, .mlr-62, .ml-62{margin-left:62px}.mg-62, .mlr-62, .mr-62{margin-right:62px}.pd-63, .ptb-63, .pt-63{padding-top:63px}.pd-63, .ptb-63, .pb-63{padding-bottom:63px}.pd-63, .plr-63, .pl-63{padding-left:63px}.pd-63, .plr-63, .pr-63{padding-right:63px}.mg-63, .mtb-63, .mt-63{margin-top:63px}.mg-63, .mtb-63, .mb-63{margin-bottom:63px}.mg-63, .mlr-63, .ml-63{margin-left:63px}.mg-63, .mlr-63, .mr-63{margin-right:63px}.pd-64, .ptb-64, .pt-64{padding-top:64px}.pd-64, .ptb-64, .pb-64{padding-bottom:64px}.pd-64, .plr-64, .pl-64{padding-left:64px}.pd-64, .plr-64, .pr-64{padding-right:64px}.mg-64, .mtb-64, .mt-64{margin-top:64px}.mg-64, .mtb-64, .mb-64{margin-bottom:64px}.mg-64, .mlr-64, .ml-64{margin-left:64px}.mg-64, .mlr-64, .mr-64{margin-right:64px}.pd-65, .ptb-65, .pt-65{padding-top:65px}.pd-65, .ptb-65, .pb-65{padding-bottom:65px}.pd-65, .plr-65, .pl-65{padding-left:65px}.pd-65, .plr-65, .pr-65{padding-right:65px}.mg-65, .mtb-65, .mt-65{margin-top:65px}.mg-65, .mtb-65, .mb-65{margin-bottom:65px}.mg-65, .mlr-65, .ml-65{margin-left:65px}.mg-65, .mlr-65, .mr-65{margin-right:65px}.pd-66, .ptb-66, .pt-66{padding-top:66px}.pd-66, .ptb-66, .pb-66{padding-bottom:66px}.pd-66, .plr-66, .pl-66{padding-left:66px}.pd-66, .plr-66, .pr-66{padding-right:66px}.mg-66, .mtb-66, .mt-66{margin-top:66px}.mg-66, .mtb-66, .mb-66{margin-bottom:66px}.mg-66, .mlr-66, .ml-66{margin-left:66px}.mg-66, .mlr-66, .mr-66{margin-right:66px}.pd-67, .ptb-67, .pt-67{padding-top:67px}.pd-67, .ptb-67, .pb-67{padding-bottom:67px}.pd-67, .plr-67, .pl-67{padding-left:67px}.pd-67, .plr-67, .pr-67{padding-right:67px}.mg-67, .mtb-67, .mt-67{margin-top:67px}.mg-67, .mtb-67, .mb-67{margin-bottom:67px}.mg-67, .mlr-67, .ml-67{margin-left:67px}.mg-67, .mlr-67, .mr-67{margin-right:67px}.pd-68, .ptb-68, .pt-68{padding-top:68px}.pd-68, .ptb-68, .pb-68{padding-bottom:68px}.pd-68, .plr-68, .pl-68{padding-left:68px}.pd-68, .plr-68, .pr-68{padding-right:68px}.mg-68, .mtb-68, .mt-68{margin-top:68px}.mg-68, .mtb-68, .mb-68{margin-bottom:68px}.mg-68, .mlr-68, .ml-68{margin-left:68px}.mg-68, .mlr-68, .mr-68{margin-right:68px}.pd-69, .ptb-69, .pt-69{padding-top:69px}.pd-69, .ptb-69, .pb-69{padding-bottom:69px}.pd-69, .plr-69, .pl-69{padding-left:69px}.pd-69, .plr-69, .pr-69{padding-right:69px}.mg-69, .mtb-69, .mt-69{margin-top:69px}.mg-69, .mtb-69, .mb-69{margin-bottom:69px}.mg-69, .mlr-69, .ml-69{margin-left:69px}.mg-69, .mlr-69, .mr-69{margin-right:69px}
.pd-70, .ptb-70, .pt-70{padding-top:70px}.pd-70, .ptb-70, .pb-70{padding-bottom:70px}.pd-70, .plr-70, .pl-70{padding-left:70px}.pd-70, .plr-70, .pr-70{padding-right:70px}.mg-70, .mtb-70, .mt-70{margin-top:70px}.mg-70, .mtb-70, .mb-70{margin-bottom:70px}.mg-70, .mlr-70, .ml-70{margin-left:70px}.mg-70, .mlr-70, .mr-70{margin-right:70px}.pd-71, .ptb-71, .pt-71{padding-top:71px}.pd-71, .ptb-71, .pb-71{padding-bottom:71px}.pd-71, .plr-71, .pl-71{padding-left:71px}.pd-71, .plr-71, .pr-71{padding-right:71px}.mg-71, .mtb-71, .mt-71{margin-top:71px}.mg-71, .mtb-71, .mb-71{margin-bottom:71px}.mg-71, .mlr-71, .ml-71{margin-left:71px}.mg-71, .mlr-71, .mr-71{margin-right:71px}.pd-72, .ptb-72, .pt-72{padding-top:72px}.pd-72, .ptb-72, .pb-72{padding-bottom:72px}.pd-72, .plr-72, .pl-72{padding-left:72px}.pd-72, .plr-72, .pr-72{padding-right:72px}.mg-72, .mtb-72, .mt-72{margin-top:72px}.mg-72, .mtb-72, .mb-72{margin-bottom:72px}.mg-72, .mlr-72, .ml-72{margin-left:72px}.mg-72, .mlr-72, .mr-72{margin-right:72px}.pd-73, .ptb-73, .pt-73{padding-top:73px}.pd-73, .ptb-73, .pb-73{padding-bottom:73px}.pd-73, .plr-73, .pl-73{padding-left:73px}.pd-73, .plr-73, .pr-73{padding-right:73px}.mg-73, .mtb-73, .mt-73{margin-top:73px}.mg-73, .mtb-73, .mb-73{margin-bottom:73px}.mg-73, .mlr-73, .ml-73{margin-left:73px}.mg-73, .mlr-73, .mr-73{margin-right:73px}.pd-74, .ptb-74, .pt-74{padding-top:74px}.pd-74, .ptb-74, .pb-74{padding-bottom:74px}.pd-74, .plr-74, .pl-74{padding-left:74px}.pd-74, .plr-74, .pr-74{padding-right:74px}.mg-74, .mtb-74, .mt-74{margin-top:74px}.mg-74, .mtb-74, .mb-74{margin-bottom:74px}.mg-74, .mlr-74, .ml-74{margin-left:74px}.mg-74, .mlr-74, .mr-74{margin-right:74px}.pd-75, .ptb-75, .pt-75{padding-top:75px}.pd-75, .ptb-75, .pb-75{padding-bottom:75px}.pd-75, .plr-75, .pl-75{padding-left:75px}.pd-75, .plr-75, .pr-75{padding-right:75px}.mg-75, .mtb-75, .mt-75{margin-top:75px}.mg-75, .mtb-75, .mb-75{margin-bottom:75px}.mg-75, .mlr-75, .ml-75{margin-left:75px}.mg-75, .mlr-75, .mr-75{margin-right:75px}.pd-76, .ptb-76, .pt-76{padding-top:76px}.pd-76, .ptb-76, .pb-76{padding-bottom:76px}.pd-76, .plr-76, .pl-76{padding-left:76px}.pd-76, .plr-76, .pr-76{padding-right:76px}.mg-76, .mtb-76, .mt-76{margin-top:76px}.mg-76, .mtb-76, .mb-76{margin-bottom:76px}.mg-76, .mlr-76, .ml-76{margin-left:76px}.mg-76, .mlr-76, .mr-76{margin-right:76px}.pd-77, .ptb-77, .pt-77{padding-top:77px}.pd-77, .ptb-77, .pb-77{padding-bottom:77px}.pd-77, .plr-77, .pl-77{padding-left:77px}.pd-77, .plr-77, .pr-77{padding-right:77px}.mg-77, .mtb-77, .mt-77{margin-top:77px}.mg-77, .mtb-77, .mb-77{margin-bottom:77px}.mg-77, .mlr-77, .ml-77{margin-left:77px}.mg-77, .mlr-77, .mr-77{margin-right:77px}.pd-78, .ptb-78, .pt-78{padding-top:78px}.pd-78, .ptb-78, .pb-78{padding-bottom:78px}.pd-78, .plr-78, .pl-78{padding-left:78px}.pd-78, .plr-78, .pr-78{padding-right:78px}.mg-78, .mtb-78, .mt-78{margin-top:78px}.mg-78, .mtb-78, .mb-78{margin-bottom:78px}.mg-78, .mlr-78, .ml-78{margin-left:78px}.mg-78, .mlr-78, .mr-78{margin-right:78px}.pd-79, .ptb-79, .pt-79{padding-top:79px}.pd-79, .ptb-79, .pb-79{padding-bottom:79px}.pd-79, .plr-79, .pl-79{padding-left:79px}.pd-79, .plr-79, .pr-79{padding-right:79px}.mg-79, .mtb-79, .mt-79{margin-top:79px}.mg-79, .mtb-79, .mb-79{margin-bottom:79px}.mg-79, .mlr-79, .ml-79{margin-left:79px}.mg-79, .mlr-79, .mr-79{margin-right:79px}
.pd-80, .ptb-80, .pt-80{padding-top:80px}.pd-80, .ptb-80, .pb-80{padding-bottom:80px}.pd-80, .plr-80, .pl-80{padding-left:80px}.pd-80, .plr-80, .pr-80{padding-right:80px}.mg-80, .mtb-80, .mt-80{margin-top:80px}.mg-80, .mtb-80, .mb-80{margin-bottom:80px}.mg-80, .mlr-80, .ml-80{margin-left:80px}.mg-80, .mlr-80, .mr-80{margin-right:80px}.pd-81, .ptb-81, .pt-81{padding-top:81px}.pd-81, .ptb-81, .pb-81{padding-bottom:81px}.pd-81, .plr-81, .pl-81{padding-left:81px}.pd-81, .plr-81, .pr-81{padding-right:81px}.mg-81, .mtb-81, .mt-81{margin-top:81px}.mg-81, .mtb-81, .mb-81{margin-bottom:81px}.mg-81, .mlr-81, .ml-81{margin-left:81px}.mg-81, .mlr-81, .mr-81{margin-right:81px}.pd-82, .ptb-82, .pt-82{padding-top:82px}.pd-82, .ptb-82, .pb-82{padding-bottom:82px}.pd-82, .plr-82, .pl-82{padding-left:82px}.pd-82, .plr-82, .pr-82{padding-right:82px}.mg-82, .mtb-82, .mt-82{margin-top:82px}.mg-82, .mtb-82, .mb-82{margin-bottom:82px}.mg-82, .mlr-82, .ml-82{margin-left:82px}.mg-82, .mlr-82, .mr-82{margin-right:82px}.pd-83, .ptb-83, .pt-83{padding-top:83px}.pd-83, .ptb-83, .pb-83{padding-bottom:83px}.pd-83, .plr-83, .pl-83{padding-left:83px}.pd-83, .plr-83, .pr-83{padding-right:83px}.mg-83, .mtb-83, .mt-83{margin-top:83px}.mg-83, .mtb-83, .mb-83{margin-bottom:83px}.mg-83, .mlr-83, .ml-83{margin-left:83px}.mg-83, .mlr-83, .mr-83{margin-right:83px}.pd-84, .ptb-84, .pt-84{padding-top:84px}.pd-84, .ptb-84, .pb-84{padding-bottom:84px}.pd-84, .plr-84, .pl-84{padding-left:84px}.pd-84, .plr-84, .pr-84{padding-right:84px}.mg-84, .mtb-84, .mt-84{margin-top:84px}.mg-84, .mtb-84, .mb-84{margin-bottom:84px}.mg-84, .mlr-84, .ml-84{margin-left:84px}.mg-84, .mlr-84, .mr-84{margin-right:84px}.pd-85, .ptb-85, .pt-85{padding-top:85px}.pd-85, .ptb-85, .pb-85{padding-bottom:85px}.pd-85, .plr-85, .pl-85{padding-left:85px}.pd-85, .plr-85, .pr-85{padding-right:85px}.mg-85, .mtb-85, .mt-85{margin-top:85px}.mg-85, .mtb-85, .mb-85{margin-bottom:85px}.mg-85, .mlr-85, .ml-85{margin-left:85px}.mg-85, .mlr-85, .mr-85{margin-right:85px}.pd-86, .ptb-86, .pt-86{padding-top:86px}.pd-86, .ptb-86, .pb-86{padding-bottom:86px}.pd-86, .plr-86, .pl-86{padding-left:86px}.pd-86, .plr-86, .pr-86{padding-right:86px}.mg-86, .mtb-86, .mt-86{margin-top:86px}.mg-86, .mtb-86, .mb-86{margin-bottom:86px}.mg-86, .mlr-86, .ml-86{margin-left:86px}.mg-86, .mlr-86, .mr-86{margin-right:86px}.pd-87, .ptb-87, .pt-87{padding-top:87px}.pd-87, .ptb-87, .pb-87{padding-bottom:87px}.pd-87, .plr-87, .pl-87{padding-left:87px}.pd-87, .plr-87, .pr-87{padding-right:87px}.mg-87, .mtb-87, .mt-87{margin-top:87px}.mg-87, .mtb-87, .mb-87{margin-bottom:87px}.mg-87, .mlr-87, .ml-87{margin-left:87px}.mg-87, .mlr-87, .mr-87{margin-right:87px}.pd-88, .ptb-88, .pt-88{padding-top:88px}.pd-88, .ptb-88, .pb-88{padding-bottom:88px}.pd-88, .plr-88, .pl-88{padding-left:88px}.pd-88, .plr-88, .pr-88{padding-right:88px}.mg-88, .mtb-88, .mt-88{margin-top:88px}.mg-88, .mtb-88, .mb-88{margin-bottom:88px}.mg-88, .mlr-88, .ml-88{margin-left:88px}.mg-88, .mlr-88, .mr-88{margin-right:88px}.pd-89, .ptb-89, .pt-89{padding-top:89px}.pd-89, .ptb-89, .pb-89{padding-bottom:89px}.pd-89, .plr-89, .pl-89{padding-left:89px}.pd-89, .plr-89, .pr-89{padding-right:89px}.mg-89, .mtb-89, .mt-89{margin-top:89px}.mg-89, .mtb-89, .mb-89{margin-bottom:89px}.mg-89, .mlr-89, .ml-89{margin-left:89px}.mg-89, .mlr-89, .mr-89{margin-right:89px}
.pd-90, .ptb-90, .pt-90{padding-top:90px}.pd-90, .ptb-90, .pb-90{padding-bottom:90px}.pd-90, .plr-90, .pl-90{padding-left:90px}.pd-90, .plr-90, .pr-90{padding-right:90px}.mg-90, .mtb-90, .mt-90{margin-top:90px}.mg-90, .mtb-90, .mb-90{margin-bottom:90px}.mg-90, .mlr-90, .ml-90{margin-left:90px}.mg-90, .mlr-90, .mr-90{margin-right:90px}.pd-91, .ptb-91, .pt-91{padding-top:91px}.pd-91, .ptb-91, .pb-91{padding-bottom:91px}.pd-91, .plr-91, .pl-91{padding-left:91px}.pd-91, .plr-91, .pr-91{padding-right:91px}.mg-91, .mtb-91, .mt-91{margin-top:91px}.mg-91, .mtb-91, .mb-91{margin-bottom:91px}.mg-91, .mlr-91, .ml-91{margin-left:91px}.mg-91, .mlr-91, .mr-91{margin-right:91px}.pd-92, .ptb-92, .pt-92{padding-top:92px}.pd-92, .ptb-92, .pb-92{padding-bottom:92px}.pd-92, .plr-92, .pl-92{padding-left:92px}.pd-92, .plr-92, .pr-92{padding-right:92px}.mg-92, .mtb-92, .mt-92{margin-top:92px}.mg-92, .mtb-92, .mb-92{margin-bottom:92px}.mg-92, .mlr-92, .ml-92{margin-left:92px}.mg-92, .mlr-92, .mr-92{margin-right:92px}.pd-93, .ptb-93, .pt-93{padding-top:93px}.pd-93, .ptb-93, .pb-93{padding-bottom:93px}.pd-93, .plr-93, .pl-93{padding-left:93px}.pd-93, .plr-93, .pr-93{padding-right:93px}.mg-93, .mtb-93, .mt-93{margin-top:93px}.mg-93, .mtb-93, .mb-93{margin-bottom:93px}.mg-93, .mlr-93, .ml-93{margin-left:93px}.mg-93, .mlr-93, .mr-93{margin-right:93px}.pd-94, .ptb-94, .pt-94{padding-top:94px}.pd-94, .ptb-94, .pb-94{padding-bottom:94px}.pd-94, .plr-94, .pl-94{padding-left:94px}.pd-94, .plr-94, .pr-94{padding-right:94px}.mg-94, .mtb-94, .mt-94{margin-top:94px}.mg-94, .mtb-94, .mb-94{margin-bottom:94px}.mg-94, .mlr-94, .ml-94{margin-left:94px}.mg-94, .mlr-94, .mr-94{margin-right:94px}.pd-95, .ptb-95, .pt-95{padding-top:95px}.pd-95, .ptb-95, .pb-95{padding-bottom:95px}.pd-95, .plr-95, .pl-95{padding-left:95px}.pd-95, .plr-95, .pr-95{padding-right:95px}.mg-95, .mtb-95, .mt-95{margin-top:95px}.mg-95, .mtb-95, .mb-95{margin-bottom:95px}.mg-95, .mlr-95, .ml-95{margin-left:95px}.mg-95, .mlr-95, .mr-95{margin-right:95px}.pd-96, .ptb-96, .pt-96{padding-top:96px}.pd-96, .ptb-96, .pb-96{padding-bottom:96px}.pd-96, .plr-96, .pl-96{padding-left:96px}.pd-96, .plr-96, .pr-96{padding-right:96px}.mg-96, .mtb-96, .mt-96{margin-top:96px}.mg-96, .mtb-96, .mb-96{margin-bottom:96px}.mg-96, .mlr-96, .ml-96{margin-left:96px}.mg-96, .mlr-96, .mr-96{margin-right:96px}.pd-97, .ptb-97, .pt-97{padding-top:97px}.pd-97, .ptb-97, .pb-97{padding-bottom:97px}.pd-97, .plr-97, .pl-97{padding-left:97px}.pd-97, .plr-97, .pr-97{padding-right:97px}.mg-97, .mtb-97, .mt-97{margin-top:97px}.mg-97, .mtb-97, .mb-97{margin-bottom:97px}.mg-97, .mlr-97, .ml-97{margin-left:97px}.mg-97, .mlr-97, .mr-97{margin-right:97px}.pd-98, .ptb-98, .pt-98{padding-top:98px}.pd-98, .ptb-98, .pb-98{padding-bottom:98px}.pd-98, .plr-98, .pl-98{padding-left:98px}.pd-98, .plr-98, .pr-98{padding-right:98px}.mg-98, .mtb-98, .mt-98{margin-top:98px}.mg-98, .mtb-98, .mb-98{margin-bottom:98px}.mg-98, .mlr-98, .ml-98{margin-left:98px}.mg-98, .mlr-98, .mr-98{margin-right:98px}.pd-99, .ptb-99, .pt-99{padding-top:99px}.pd-99, .ptb-99, .pb-99{padding-bottom:99px}.pd-99, .plr-99, .pl-99{padding-left:99px}.pd-99, .plr-99, .pr-99{padding-right:99px}.mg-99, .mtb-99, .mt-99{margin-top:99px}.mg-99, .mtb-99, .mb-99{margin-bottom:99px}.mg-99, .mlr-99, .ml-99{margin-left:99px}.mg-99, .mlr-99, .mr-99{margin-right:99px}.pd-100, .ptb-100, .pt-100{padding-top:100px}.pd-100, .ptb-100, .pb-100{padding-bottom:100px}.pd-100, .plr-100, .pl-100{padding-left:100px}.pd-100, .plr-100, .pr-100{padding-right:100px}.mg-100, .mtb-100, .mt-100{margin-top:100px}.mg-100, .mtb-100, .mb-100{margin-bottom:100px}.mg-100, .mlr-100, .ml-100{margin-left:100px}.mg-100, .mlr-100, .mr-100{margin-right:100px}
.size-20{font-size:20px}.size-21{font-size:21px}.size-22{font-size:22px}.size-23{font-size:23px}.size-24{font-size:24px}.size-25{font-size:25px}.size-26{font-size:26px}.size-27{font-size:27px}.size-28{font-size:28px}.size-29{font-size:29px}.size-30{font-size:30px}.size-31{font-size:31px}.size-32{font-size:32px}.size-33{font-size:33px}.size-34{font-size:34px}.size-35{font-size:35px}.size-36{font-size:36px}.size-37{font-size:37px}.size-38{font-size:38px}.size-39{font-size:39px}.size-40{font-size:40px}.size-41{font-size:41px}.size-42{font-size:42px}.size-43{font-size:43px}.size-44{font-size:44px}.size-45{font-size:45px}.size-46{font-size:46px}.size-47{font-size:47px}.size-48{font-size:48px}.size-49{font-size:49px}.size-50{font-size:50px}.size-51{font-size:51px}.size-52{font-size:52px}.size-53{font-size:53px}.size-54{font-size:54px}.size-55{font-size:55px}.size-56{font-size:56px}.size-57{font-size:57px}.size-58{font-size:58px}.size-59{font-size:59px}.size-60{font-size:60px}.size-61{font-size:61px}.size-62{font-size:62px}.size-63{font-size:63px}.size-64{font-size:64px}.size-65{font-size:65px}.size-66{font-size:66px}.size-67{font-size:67px}.size-68{font-size:68px}.size-69{font-size:69px}.size-70{font-size:70px}.size-71{font-size:71px}.size-72{font-size:72px}.size-73{font-size:73px}.size-74{font-size:74px}.size-75{font-size:75px}.size-76{font-size:76px}.size-77{font-size:77px}.size-78{font-size:78px}.size-79{font-size:79px}.size-80{font-size:80px}.size-81{font-size:81px}.size-82{font-size:82px}.size-83{font-size:83px}.size-84{font-size:84px}.size-85{font-size:85px}.size-86{font-size:86px}.size-87{font-size:87px}.size-88{font-size:88px}.size-89{font-size:89px}.size-90{font-size:90px}.size-91{font-size:91px}.size-92{font-size:92px}.size-93{font-size:93px}.size-94{font-size:94px}.size-95{font-size:95px}.size-96{font-size:96px}.size-97{font-size:97px}.size-98{font-size:98px}.size-99{font-size:99px}.size-100{font-size:100px}