html, body{
    width: 100%;
    height: 100%;
}

body {
    margin:0;
    padding:0;
    font-size: 14px;
	font-family: 'PT Sans',sans-serif;
    color: #000;
}

*, :after, :before {
    box-sizing: border-box;
}

header, footer
{
	width: 100%;
}

header > .w, footer > .w, #layout {
	max-width: 1200px;
	margin: 0 auto 0;
}

header #hamburger{
	padding: 8px 16px;
	cursor: pointer;
}

a {
	text-decoration: none;
}

table {
	border-spacing: 0;
}

#layout{
	margin-top: 50px;
    transition-duration: 0.2s;
    transition-property: padding;
    position: relative;
}

h1{
	font-size: 32px;
	font-weight: bold;
}

h2,
a.h2{
	font-size: 24px;
	font-weight: bold;
}

h3{
	font-size: 21px;
	font-weight: bold;
}

body > header{
    height: 50px;
    line-height: 50px;
    color: #000;
    position: fixed;
    top: 0;
    z-index: 100000;
}

body > header .w {
    height: 50px;
    width: 100%; 
    position: relative;   
}

body > header a#logo {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	color: #000;
	text-decoration: none;
	font-size: 26px;
	font-weight: bold;
	padding: 0 10px;
}

body > header .w .spacer {
	margin: auto;
}

body > header .w .icon {
	margin: 0 10px 0 0;
}

.bold {
	font-weight: bold;
}

.flex {
	display: flex;		
}

.fs0 {
	flex-shrink: 0;
}

.flexwrap {
	display: flex;		
	flex-wrap: wrap;
}

.jcfe {
	justify-content: flex-end;
}

.acenter {
	align-items: center;
}

.img-thumbnail {
	display: block;
}

#layout #main-left, #layout #main-center, #main-right { 
}

#layout #main-center{
	padding: 10px;
    font-size: 16px;
}

.fl8 {
	font-size: 32px;
}

.fl3 {
	font-size: 27px;
}

.fl2 {
	font-size: 24px;
}


.fl1 {
	font-size: 21px;
}

.fs1 {
	font-size: 14px;
}

.fs2 {
	font-size: 12px;
}

.fs3 {
	font-size: 11px;
}

.fwn {
	font-weight: normal;
}

#layout #main-left {
	width: 200px;
	flex-shrink: 0;
}

#layout #main-right {
	width: 300px;
	flex-shrink: 0;
}

#hmbg
{
	display: none;
	height: 100%;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100001;	
}

#hmbg.v {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
}

#hm {
    background-color: #fff;
    height: 100%;
    font-size: 16px;
    left: -250px;
    outline: none;
    overflow-y: scroll;
    position: fixed;
    top: 0;
	transition: left 0.5s;
    width: 250px;
    z-index: 100002;
}

#hm.v{
	left: 0px;
}

#hm #hmlogo {
	display: block;
	height: 50px;
	line-height: 50px;
	color: #000;
	text-decoration: none;
	font-size: 26px;
	font-weight: bold;
	margin-left: 15px;
}

#hm .catslite
{

}

.block {
	display: block;
}
.t-center {
	text-align: center;
}

.t-left {
	text-align: left;
}

.t-right {
	text-align: right;
}

.f-left {
	float: left;
}


.f-right {
	float: right;
}

.oyscroll {
    overflow-y: scroll;
}

#hm img,
#layout #main-left img,
#layout #main-right img,
#layout #main-center img,
#layout #main-center iframe
{
	max-width: 100%;
	height: auto;
}

.popup
{
    background: #fff;
    border: 1px solid #ccc;
    border-color: rgba(0,0,0,.2);
    color: #000;
    -webkit-box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
    box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
    z-index: 1000;
}

.btn-primary,
.btn-secondary,
.noborder {
	border: 0;
}

.popup.bubble {
	margin-top: 10px;
}

.bubble[arrow-alignment^="top"]:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: -5px;	
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: -1px -1px 0 0 rgb(0 0 0 / 7%);
    box-shadow: -1px -1px 0 0 rgb(0 0 0 / 7%);
}

.bubble[arrow-alignment$="left"]:before {
    left: 10px;
}	


.bubble[arrow-alignment$="right"]:before {
    right: 10px;
}	


.button {
    line-height: 32px;
    height: 32px;
    display: inline-block;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;	
    padding: 0 10px;
}


.button-cancel,
.button-gray {
	background-color: #EEE;
	color: #000;
}

.button-dgray {
	background-color: #AAA;
	color: #FFF;
}

.button-submit,
.button-ok {
	background-color: #2980b9;
	color: #FFF;
}

.button-red {
	background-color: #C00;
	color: #FFF;
}

.button.disabled {
	background-color: #AAA;
	color: #666;
}

.button .arrow {
	display: inline-block;
}

.button.dropped .arrow {
	transform: rotateZ(180deg);	
}

.important-button {
	background-color: #54a22c;
	color: #FFF;
    padding: 0 10px;
}

.important-button:hover {
	color: #FFF;
	background-color: #67c837;
}

.button-ok:hover {
	color: #FFF;
	background-color: #3f99d5;	
}


.abs {
	position: absolute;
}

.rel {
	position: relative;
}

.my0 {
	margin-top: 0;
	margin-bottom: 0;
}

.my10 {
	margin-top: 10px;
	margin-bottom: 10px;
}

.my20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.mx10 {
	margin-left: 10px;
	margin-right: 10px;
}

.ml5 {
	margin-left: 5px;
}

.mlauto {
	margin-left: auto;
}

.mrauto {
	margin-right: auto;
}

.mtauto {
	margin-top: auto;
}

.mt0 {
	margin-top: 0;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt20 {
	margin-top: 20px;
}

.mb0 {
	margin-bottom: 0px;
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb40 {
	margin-bottom: 40px;
}

.mr0 {
	margin-right: 0;
}

.ml0 {
	margin-left: 0px;
}

.ml10 {
	margin-left: 10px;
}

.ml20 {
	margin-left: 20px;
}

.ml30 {
	margin-left: 30px;
}

.ml40 {
	margin-left: 40px;
}

.mt-10 {
	margin-top: -10px;
}

.ml-10 {
	margin-left: -10px;
}

.ml-20 {
	margin-left: -20px;
}

.mr-10 {
	margin-right: -10px;
}

.mr-10 {
	margin-right: -10px;
}


.mr10 {
	margin-right: 10px;
}

.mr20 {
	margin-right: 20px;
}

.mr30 {
	margin-right: 30px;
}

.mr40 {
	margin-right: 40px;
}

.p0 {
	padding: 0;
}

.p5 {
	padding: 5px;
}

.p10 {
	padding: 10px;
}

.pt10 {
	padding-top: 10px;
}

.pb0 {
	padding-bottom: 0;
}

.pb10 {
	padding-bottom: 10px;
}

.pb20 {
	padding-bottom: 20px;
}

.px5 {
	padding-left: 5px;
	padding-right: 5px;
}

.px10 {
	padding-left: 10px;
	padding-right: 10px;
}

.px20 {
	padding-left: 20px;
	padding-right: 20px;
}

.py10 {
	padding-top: 10px;
	padding-bottom: 10px;
}

.py20 {
	padding-top: 20px;
	padding-bottom: 20px;
}

.pl10 {
	padding-left: 10px;
}

.pl20 {
	padding-left: 20px;
}

.pl25 {
	padding-left: 25px;
}


#layout #main-left #left-sticky, 
#layout #main-right #right-sticky {
    position: sticky;
    position: -webkit-sticky;
    top: 60px;
}


.clearul,
#breadcrumbs ol
{
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#breadcrumbs ol a {
	color: #888;
	text-decoration: none;
}

#breadcrumbs ol li {
	display: inline;
}

#breadcrumbs ol li:not(:last-child):after {
    content: "/";
    margin: 0 5px;
    color: #888;
}

.w32 {
	width: 32px;
}

.mw32 {
	max-width: 32px !important;
}

.w48 {
	width: 48px;
}

.w100p {
	width: 100%;
}


.w32 {
	width: 32px;
}

.w64 {
	width: 64px;
}

.w100 {
	width: 100px;
}

.w200 {
	width: 200px;
}

.w300 {
	width: 300px;
}

.col-d-10p {
	width: 10%;
}

.col-d-12p {
	width: 12.5%;
}

.col-d-16p {
	width: 16.6%;
}

.col-d-20p {
	width: 20%;
}

.col-d-25p {
	width: 25%;
}


.col-d-33p {
	width: 33.3%;
}

.col-d-50p {
	width: 50%;
}

.h-op1 {
	opacity: 0.1;
}


.h-op2 {
	opacity: 0.2;
}


.h-op3 {
	opacity: 0.3;
}

.h-op5 {
	opacity: 0.5;
}

.h-op6 {
	opacity: 0.6;
}

.h-op7 {
	opacity: 0.7;
}

.h-op8 {
	opacity: 0.8;
}

.h-op9 {
	opacity: 0.9;
}

.h-op:hover {
	opacity: 1;
}

.h-ch-op7 a {
	opacity: 0.7;
}

.h-ch-op8 a {
	opacity: 0.8;
}

.h-ch-op9 a {
	opacity: 0.9;
}

.h-ch-op a:hover {
	opacity: 1;
}

.bw1 {
	border-width: 1px;
}

.r4{
	border-radius: 4px;
}

.r50p {
	border-radius: 50%;
}

.oh {
	overflow: hidden;
}

.bg-white {
	background-color: #FFF;
}

.bg-blue {
	background-color: #2980b9;
}


.bg-lblue {
	background-color: #F4FAFC;
}

.bg-gray {
	background-color: #EEE;
}

.bg-gray-hover:hover {
	background-color: #EEE;	
}

.c-white {
	color: #FFF;
}

.c-black {
	color: #000;
}

a.notu {
	text-decoration: none;
}

.black {
	color: #000;
}

a.black:hover {
	color: #000;
}

.gray {
	color: #666;
}

.lgray {
	color: #AAA;
}

.info_bar .bar_item {
    height: 32px;
    line-height: 32px;
}

.h32 {
	height: 32px;
}

.lh32 {
	line-height: 32px;
}

.h42 {
	height: 42px;
}

.lh42 {
	line-height: 42px;
}

.lh15em {
	line-height: 1.5em;
}

.info_bar .bar_item:not(:last-child) {
	margin-right: 20px;
}

.info_bar .bar_item .caption {
	display: none;
}

.info_bar .bar_item .touch {
	cursor: pointer;
}

.tags_bar_link {
	color: #888;
	text-decoration: none;
	margin: 10px 0;
}

.scrollUp {
	    position: fixed;
    right: 5px;
    bottom: 5px;
    background-color: #FFF;
    color: #7f7f7f;
    z-index: 9999;
    cursor: pointer;
    padding: 2px 15px 0;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    -moz-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    height: 42px;
    line-height: 42px;
}

.pagebar_pages span, .pagebar_pages a {
	
}

.pagebar_nav, .pagebar_notice {
	display: none;
}

.clear {
	clear: both;
}

.maxh6em {
	max-height: 6em;
}

.hidden,
.popup.h
{
	display: none;	
}

.btn-primary,
.btn-secondary,
.pointer {
	cursor: pointer;
}

.abs-right-top {
	top: 32px;
	right: 0;
}

.nyroModalBg
{
  z-index: 200030;
}

.nyroModalTitle,
.nyroModalCloseButton,
.nyroModalCont
{
  z-index: 200040;
}

.modal_padding {
    padding: 10px;
    box-sizing: border-box;
    min-width: 460px;
}

.autoh {
	height: auto !important;
}

.dots {
	white-space: nowrap;
  	text-overflow: ellipsis;
}

.wscrollbar::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
.wscrollbar::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.centered-notification {
    color: #ffffff;
    background-color: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 300px;
    margin-top: -30px;
    margin-left: -150px;
    display: none;
    text-align:center;
}

.bline {
	border-bottom: 1px dotted #ccc;
}

.bline:last-child {
	border-bottom: none;
}

.bb1gray {
	border-bottom: 1px solid #EEE;
}

.o-1 {
	order: -1;
}

.o10 {
	order: 10;
}

.o11 {
	order: 11;
}

.o12 {
	order: 12;
}

.o13 {
	order: 13;
}

.positive {
	color: green;
}

.negative {
	color: red;
}


.message_error {
	color: #d0193b;
	background-color: #fce7eb;
}

.message_warning {
	color: #f5803e;
	background-color: #fef0e8;
}

.message_info,
.message_success {
	color: #00864e;
	background-color: #ccf6e4;
}

.msg_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #333;
    opacity: 0.6;
    top: 0;
    left: 0;
    z-index: 200030;
}

.confirm_wrap {
    z-index: 200030;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 110px;
    margin: -55px 0 0 -180px;
}

.confirm_wrap, .msg_overlay {
    position: fixed;
}