.blocker {
	z-index: 9999;
	text-align: center;
	background: rgba(0, 0, 0, .65);
	display: none;
	-ms-overflow-style: none;
	overflow: auto;
	/*overflow-y: scroll;*/
	overflow-x: hidden;
	margin: 0;
	vertical-align: bottom;
}
.modal {
	position: absolute;
	display: table;
	top: 20%;
	left: 50%;
	transform: translate(-50%, 0%);
	background-color: #ffffff;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	border: 7px solid #e2e2e2;
	border-radius: 10px;
	font-family: "trebuchet ms", arial, sans-serif;
	font-size: 13.6px;
}
.modalMin {
	position: absolute;
	display: table;
	top: 0px;
	right: 0;
	width: 180px;
	/*transform: translate(-50%, -50%);*/
	background-color: #ffff22;
	animation-name: bgcolor;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	margin-left: auto;
	margin-right: auto;
	border: 7px solid #F00;
	border-radius: 10px;
	font-family: "trebuchet ms", arial, sans-serif;
	font-size: 13.6px;
}
@keyframes bgcolor {
  0% {
    background-color: #FFF;
  }
  50% {
    background-color: rgb(51, 255, 51);
  }
  100% {
    background-color: #FFF;
  }
}

.modal a.close-modal {
	position: absolute;
	top: -8px;
	right: -8px;
	display: inline-block;
	background-color: #273d5e;
	border-radius: 50%;
	border: 1px solid #e2e2e2;
	padding: 5px 6px 3px;
}

.modal a.close-modal i {
	color: white !important;
	font-size: 20px;
}
.modalButtons {
	vertical-align: bottom;
	text-align: right;
	margin: 20px 0 10px 0;
}
.modalButtons button, .primary button {
    background-color: #273d5e;
    border-radius: 7px;
    border: none;
    color: white;
    min-width: 98px;
    margin: 0 3px;
    padding: 5px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;0
}
.helpChoices button, .tutButton {
	background-color: #6697b8;
    border-radius: 7px;
    border: none;
    color: white;
    min-width: 98px;
    margin: 3px;
    padding: 5px 18px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-style: italic;
}

.messageBox {
	/*display: table-cell;*/
	display: block;
	vertical-align: middle;
	padding: 25px 7px 0 7px;
	height: 100%;
}

#msgTitle {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

#msgTxt input {
	margin-top: 5px;
	min-width: 250px;
	border: 2px solid #6697B8;
	padding: 3px;
}

.promptErr {
	color: red;
	font-weight: bold;
}

.big-bold {
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
	color: #a00000;
}
#noJS {
	z-index: 500;
	width: 100%;
	height: 100%;
	background-color: rgba(200,200,200,.75);
	position: fixed;
	top: 0;
}
#noJSmessageBox {
	font-family: "trebuchet ms", arial, sans-serif;
	text-align: left;
	position: relative;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	width: 420px;
	height: 200px;
	background-color: #273d5e;
	border: 5px solid #777;
	padding: 20px;
	color: white;
}
#noJSmsg {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 96%;
	font-size: 16px;
	text-align: center;
	padding: 5px 10px;
}
#noJSmsg a {
	color: #ccf;
	text-decoration: underline;
}
.fauxLink {
	color: #00F;
	text-decoration: underline;
	cursor: pointer;
}
