html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}
body.j {
	overflow: hidden;
}
[id^="_view_id_"], 
[id^="_view_id_"]:before, 
[id^="_view_id_"]:after, 
[id^="_view_id_"] *, 
[id^="_view_id_"] *:before, 
[id^="_view_id_"] *:after {
    box-sizing: border-box;
}
[id^="_view_id_"] h1,
[id^="_view_id_"] h2,
[id^="_view_id_"] h3,
[id^="_view_id_"] h4,
[id^="_view_id_"] h5,
[id^="_view_id_"] {
	margin: 0;
	padding: 0;
}

[id^="_view_id_"] .j-field-text-editor-content h1{
	margin-top: 20px;
	margin-bottom: 20px;
}
[id^="_view_id_"] .j-field-text-editor-content h2{
	margin-top: 15px;
	margin-bottom: 15px;
}
[id^="_view_id_"] .j-field-text-editor-content h3{
	margin-top: 10px;
	margin-bottom: 10px;
}
[id^="_view_id_"] .j-field-text-editor-content h4{
	margin-top: 10px;
	margin-bottom: 10px;
}
[id^="_view_id_"] .j-field-text-editor-content h5{
	margin-top: 10px;
	margin-bottom: 10px;
}
[id^="_view_id_"] img {
	border: none;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background-color: #cdcdcd;
	border-radius: 3px;
	border: none
}
* {
	scrollbar-width: thin;
}
.jrow:before,
.jrow:after {
	content: '';
    display: table;
    line-height: 0;
	clear: both;
}
.j-blur {
	filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');
	-webkit-filter: blur(3px);
	filter: blur(3px);
}
.j-elem-loading {
	position: relative;
}
.j-elem-loading-overlay:after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	background: rgba(0,0,0,0.5);
	z-index: 1000;
}

@-webkit-keyframes loading-line-bar {
    from {transform: -webkit-translateX(-100%);} 
    to {transform: -webkit-translateX(100%);} 
} 
@keyframes loading-line-bar { 
    from {transform: translateX(-100%);} 
    to {transform: translateX(100%);} 
} 
.j-loading-line-bar:after { 
	content: ' ';
	background: repeating-linear-gradient(
		45deg,
		#f39c12,
		#f39c12 20px,
		#f9ce89 20px,
		#f9ce89 40px
	);
	width: 100%;
	display: block;
	-webkit-animation: loading-line-bar 1s infinite linear both;
	animation: loading-line-bar 1s infinite linear both;
}
.j-loading-line-bar {
	position: absolute;
	left: 0;
	top: -6px;
	width: 100%;
	overflow: hidden;
}
.j-loading-line-bar,
.j-loading-line-bar:after { 
	height: 6px;
}

.j-loading-overlay {
	background: rgba(0,0,0,0.5);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	z-index: 1000000;	
}
.j-start-loading-overlay {
	background: rgba(0,0,0,0.8);
}
.j-loading-overlay .j-spinner > div {
	background-color: #fff;
}
.j-loading-overlay .j-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -25px;
	margin-top: -20px;
}
.j-spinner {
  margin: auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.j-spinner > div {
  background-color: #050505;
  height: 100%;
  width: 6px;
  display: inline-block;
  margin: 0 2px;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.j-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.j-spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.j-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.j-spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

.ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	display: block;
}

.j-tips.j-tips-up:before,
.j-tips.j-tips-down:before {
	margin-left: -5px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	position: absolute;
	content: '';
	left: 50%;
	margin-left: -4px;
	overflow: hidden;
}

.j-tips.j-tips-up:before {
	border-bottom: 7px solid rgba(0,0,0,0.7);	
	top: -7px;
}
.j-tips.j-tips-down:before {
	border-top: 7px solid rgba(0,0,0,0.7);	
	bottom: -7px;
}

.j-tips.j-tips-down.j-tips-arrow-to-left:before,
.j-tips.j-tips-up.j-tips-arrow-to-left:before {
	left: 5px;
	margin-left: 0;
}
.j-tips.j-tips-down.j-tips-arrow-to-right:before,
.j-tips.j-tips-up.j-tips-arrow-to-right:before {
	left: auto;
	right: 5px;
	margin-left: 0;
}

.j-tips {
	margin-top: 6px;
	position: absolute;
	background: rgba(0,0,0,0.7);
	color: #fff;
	font-size: 12px;
	padding: 4px 6px;
	max-width: 300px;
	border-radius: 3px;
	z-index: 1000000000;
}