body {
	overflow-y: visible; 
}
	
div#alertMessage {
	background: #f0f0f0;
}	

div#alertMessageText {
/* border: 1px solid red; */
  font-size: 13px;
  text-align: center;
  display: block;
  max-height: 200px;
  overflow: auto;
  background: white;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

div#alertMessageDetails {
  font-size: 11px;
  text-align: center;
  display: block;
  padding: 10px;
}

div#alertMessageHeader {
  font-size: 11px;
  text-align: center;
  display: block;
  padding: 3px;
  text-align: right;
  background: #888888;
}

div#alertMessageHeader a#alertMax {
   width: 26px;
   height: 20px;
   background-image: url(max_close.gif);
   background-position: 0px 0px;
   display: inline-block;
}

div#alertMessageHeader a#alertMax:hover {
   background-position: 0px 20px;
}

div#alertMessageHeader a#alertClose {
	 width: 26px;
	 height: 20px;
	 background-image: url(max_close.gif);
	 background-position: 26px 0px;
	 display: inline-block;
}

div#alertMessageHeader a#alertClose:hover {
   background-position: 26px 20px;
}

input#alertMessageButton {
	height: 30px;
	width: 150px;
	margin: 10px;
}

input.notValidated, textarea.notValidated {
  background-image: url(invalidated.gif);
  background-repeat: no-repeat;
  background-position: right top;
}

input.Validated, textarea.Validated {
  background-image: url(validated.gif);
  background-repeat: no-repeat;
  background-position: right top;
}

div.blockMsg {
    padding:  0;
    margin:   0;
    width:    30%;
    top:      40%;
    left:     35%;
    textAlign:  center;
    color:    #000;
    border:   4px solid #888;
    background: #fff;
    cursor:   wait;
}

div.blockMsg div#workingMessage {
	
}

#workingMessage {
	  width: 500px;
	  height: 42px;
	  border: 0;
	  margin: 0;
	  padding: 0px 0px 0px 50px;
	  display: table-cell;
	  vertical-align: middle;
	  text-align: left;
	  background: #ffffff url(loading_large.gif) no-repeat 5px 5px;
}

#workingMessage .msg {
	  font-size: 10pt;
	  font-weight: bold;
	  display: table-cell;
}

#workingMessage .desc {
    display: none;
}

#alertMessage {
	max-width: 600px;
	padding: 0px;
}

.workingMessage_dialog {
  background: #fff;
  box-shadow: 6px 6px 5px rgba(140, 141, 142, 0.6), inset 0 0 4px rgba(140, 140, 140, 0.7);
  border: 1px solid rgb(120, 121, 122);
  border-radius: 1px;
  padding: 6px;
  /*
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  */
}

.alertMessage_dialog {
  background: #fff;
  box-shadow: 6px 6px 5px rgba(140, 141, 142, 0.6), inset 0 0 4px rgba(140, 140, 140, 0.7);
  border: 1px solid rgb(120, 121, 122);
  border-radius: 1px;
}

.ui-widget-overlay {
	background: #000;
	opacity: 0.3;
}

#toast-container {
	position: fixed;
	bottom: 15px;
	right: 15px;
    z-index: 3000;
    min-width: 400px;
}

.toast-message {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    min-width: 200px;
    margin-left: auto;
    border-radius: 4px;
    padding: 20px 20px;
    text-align: center;
    font-size: 2em;
    color: #fff;
    border: 1px solid transparent;
    margin-bottom: 10px;
    -webkit-transition: opacity .5s ease-in;
    -moz-transition: opacity .5s ease-in;
    -o-transition: opacity .5s ease-in;
    transition: opacity .5s ease-in;
    z-index: 3000;
    display: table;
    position: relative;
    padding-right: 50px;
}

.toast-message.smallerfont {
    font-size: 1.4em;
}

.toast-message span.title {
	font-weight: bold;
	font-size: 1.1em;
	padding-bottom: 10px;
	color: rgb(75, 80, 85);
}

.toast-message span {
    display: block;
    position: relative;
    padding: 0 10px;
}

.toast-message.featured {
	font-size: 2em;
}

.toast-message.centered {
	text-align: center;
}

.toast-message.with-image {
	max-width: 300px;
	background-repeat: no-repeat;
	background-position: 10px center;
}

.toast-message.ect-message {
	width: 300px;
}

.toast-message .close {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 25px;
	font-size: 18px;
	cursor: pointer;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(0, 0, 0, 0.2);
	text-align: left;
}

.toast-message .close:hover {
	color: rgba(0, 0, 0, 0.5);
}

.toast-message .close.ect-close {
	top: 30px;
}

.toast-message.with-image span {
	left: 32px;
    border-left: 1px solid rgb(238, 222, 156);
}

.toast-message.visible {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    -khtml-opacity: 1.0;
}

.toast-message.default-message {
	color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.toast-message.primary-message {
    background-color: #337ab7;
    border-color: #2e6da4;
}

.toast-message.success-message {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.toast-message.info-message {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.toast-message.warning-message {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.toast-message.danger-message {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.toast-message.epis-message {
	border-color: #EEDE9C;
	background-color: #FFFFC0;
	color: black;
	text-align: left;
}

/*! bootstrap-progressbar v0.9.0 | Copyright (c) 2012-2015 Stephan Groß | MIT license | http://www.minddust.com */
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
  background-color: #5cb85c;
}
.progress-striped .progress-bar-success {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
  background-color: #5bc0de;
}
.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
  background-color: #f0ad4e;
}
.progress-striped .progress-bar-warning {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.progress {
  position: relative;
  max-width: 95%;
}
.progress .progress-bar {
  position: absolute;
  overflow: hidden;
  line-height: 20px;
}
.progress .progressbar-back-text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.progress .progressbar-front-text {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.progress.right .progress-bar {
  right: 0;
}
.progress.right .progressbar-front-text {
  position: absolute;
  right: 0;
}
.progress.vertical {
  width: 20px;
  height: 100%;
  float: left;
  margin-right: 20px;
}
.progress.vertical.bottom {
  position: relative;
}
.progress.vertical.bottom .progressbar-front-text {
  position: absolute;
  bottom: 0;
}
.progress.vertical .progress-bar {
  width: 100%;
  height: 0;
  -webkit-transition: height 0.6s ease;
  -o-transition: height 0.6s ease;
  transition: height 0.6s ease;
}
.progress.vertical.bottom .progress-bar {
  position: absolute;
  bottom: 0;
}

#workingMessage.noSelect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
	cursor:default;
}

#workingMessage.defaultCursor {
	cursor:default;
}
