html {
	height: 100%;
	width: 100%;
	background: #FFF;
}
	        
body {
	height: 100%;
	width: 100%;
	background: #FFF;
	margin : 0px;
	padding : 0px;
}

img {
	border: 0 none;
}

a:link, a:visited {
    color: var(--transform-main-color);
    text-decoration: none;
}

a:hover { 
	text-decoration: underline;
	color: #007BB6
}

.minWidthCheck {
 	min-width: 850px !important;
}

.message {
  	font-weight: bold;
  	color: blue;
}

.messagesDiv {
    font-size: 12px;
    color: #006600;
}

.error {
	color: red;
}

.errorMessage {
    font-size: 11px;
    color: #FF0000;
}

.errorsDiv {
    font-size: 12px;
    color: #FF0000;
}

.background-dark-gray1{
	background-color: #777;
}

.background-light-gray1{
	background-color: #DCDCDC; 
}

/* throbber */
/* The Modal (background) */
.transformModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 103; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.transformModal .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 15px;
    border: 1px solid #888;
    max-width: 600px;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation - disabled until it becomes smoother */
/*@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}*/

#transformProgressBar{
	border-radius: 4px;
	overflow: hidden;
	height: 20px;
	background-color: #f5f5f5;
	box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

#transformProgressText{
	height: 100%;
	width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
	color: #fff;
	background-color: #337ab7;
	animation: progress-bar-stripes 2s linear infinite;
	background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
	background-size: 40px 40px;
}

/*toggle switch*/
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 16px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .1s;
  transition: .1s;
}

.disabled .slider {
	cursor: not-allowed;
}

.disabled div label {
	cursor: not-allowed;
}

.slider:before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .1s;
  transition: .1s;
}

input:checked + .slider {
  background-color: var(--transform-main-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--transform-main-color);
}

input:checked + .slider:before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 10px;
}

.slider.round:before {
  border-radius: 50%;
}

.sliderLabel {
	white-space: nowrap;
	left: 45px;
	position: relative;
	display: block;
	bottom: 2px;
}

@font-face {
 font-family:'Glyphicons Halflings';
 src:url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.eot);
 src:url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.woff) format('woff'),url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../scripts/3rdParty/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

button.transform, input[type='button'].transform {
	background-color: white;
	color: #00a6dd;
	border: solid 1px #AAA;
	border-radius: 2px;
	padding: 5px;
	font-size: 10pt;
	cursor: pointer;
}

button.transform:hover, input[type='button'].transform:hover{
	border: solid 1px #00a6dd;
}

.nav-alert{
	position: absolute;
	top: 2px;
	left: 9px;
	font-size: 18px;
	color:red;
	font-weight:bold;
	display: none;
}

#documentID{
	width: 100%;
	height: 100%;
}