html,
body {
  height: 100%;
}

html, body, div {
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	min-height: 20px;
}

footer {
	width: 100%;
	min-height: 20px;
}

.DEV-bgcolor { background-color: #8fbc8f }
.QAS-bgcolor { background-color: #9292e0 }
.PRD-bgcolor { background-color: #8aace8 }

.rangerow {
   width: 100%;
   border:0;
   margin:0;
   padding:0;
   background:#eee;
}

.center-content {
   width: 100%;
   max-width: 1300px;
   margin: 0 auto;
}

.w-100 {
	width: 100%;
}

*:active, *:focus { 
	outline: none; 
	ie-dummy: expression(this.hideFocus=true);
}

#go-to-top {
    position: fixed;
    bottom: 1em;
    right: 1em;
    padding: 1em;
    display: none;
    cursor: pointer;
    z-index: 99999;
    
    background-image: url(/img/go-to-top.png);
    background-position: center center;
    background-repeat: no-repeat;
}

#zion-loading {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    
    display: none;
	cursor: wait;
	
	background-image: url(/zion/lib/zion/img/loader1.gif);
	background-position: center center;
	background-repeat: no-repeat;
	
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	-moz-opacity:0.3;
	-khtml-opacity: 0.3;
    opacity: 0.3;
}

.size-mobile-100 { width: 100%; }
.size-mobile-75  { width: 75%;  }
.size-mobile-50  { width: 50%;  }
.size-mobile-25  { width: 25%;  }

.size-desktop-100 { width: default; }
.size-desktop-75  { width: default; }
.size-desktop-50  { width: default; }
.size-desktop-25  { width: default; }

@media (min-width: 900px) {
	.size-mobile-100 { width: default; }
	.size-mobile-75  { width: default; }
	.size-mobile-50  { width: default; }
	.size-mobile-25  { width: default; }
	
	.size-desktop-100 { width: 100%; }
	.size-desktop-75  { width: 75%;  }
	.size-desktop-50  { width: 50%;  }
	.size-desktop-25  { width: 25%;  }
}

/* BOOTSTRAP 5 column */
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
.col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}
/* BOOTSTRAP 5 column */