
.modalOver {
  position: fixed;
  display: none;
  text-align: center;
  vertical-align: middle;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  z-index: 99;
  background: rgba(0,0,0,0.6);
  overflow: hidden;
}
.modCenter {
  position: relative;
  margin: 10vh auto 0 auto;
  text-align: left;
  width: 50vw;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: auto;
	-moz-border-radius: 1vw;
	-webkit-border-radius: 1vw;
	border-radius: 1vw;  
}
.modCenter .modCenterIn {
  position: relative;
  display: block;
  margin: 0px auto;
  padding: 0vw;
  text-align: left;
  -webkit-transition: all 0.5s ease-out;  /* Chrome 1-25, Safari 3.2+ */
  -moz-transition: all 0.5s ease-out;  /* Firefox 4-15 */
  -o-transition: all 0.5s ease-out;  /* Opera 10.50ñ12.00 */
  transition: all 0.5s ease-out;  /* Chrome 26, Firefox 16+, IE 10+, Opera 12.50+ */
}

.modCenter .mContent {
	padding: 2vw 4vw 2vw 4vw;
	font-size: 1vw;
}
.mContent .form {
  width: 40vw; 
  padding: 0.5vw;
  font-size: 1.25vw;
  background: #F0F0F0;
  border: 1px solid #99191D;
	-moz-border-radius: 0.5vw;
	-webkit-border-radius: 0.5vw;
	border-radius: 0.5vw;  
}
.mContent label {
	display: inline-block;
	color: #6f6f6f;
	margin-top: 1vw;
/* 	width: 8vw; */
}
.mContent input.iSmall {
	width: 10vw;
}

.mContent input, .mContent textarea {
	resize: none;
}

.mContent h2 {
	color: #6f6f6f;
	font-size: 2vw;
	font-weight: 300;
	padding: 0;
	margin: 0 0 1vw 0;
}
.mContent h2 span {
	color: #99191D;
	font-size: 2vw;
	font-weight: 300;
	font-style: italic;
	padding: 0 1vw 0 0;
}

.mFoot {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 5vw;
/* 	background: #82878E; */
	z-index: 10;
/* 	border-left: 1.5vw solid #F26419; */
}
.modCenter #mfSubmit 
{
	position: absolute;
	right: 4vw;
	top: 0vw;
/* 	top: 25.4vw; */
	background: #99191D;
}
.modCenter #mfCancel
{
	position: absolute;
	left: 3vw;
	top: 0vw;
/* 	top: 25.4vw; */
	background: #6f6f6f;
}

.mFoot .butt, 
.mFoot .buttL, 
.mFoot .buttR {
    display: inline-block;
    position: relative;
    width: 12vw;
	height: auto;
    margin: 0 1vw 0 1vw;
    padding: 0.75vw 0 0.75vw 0;
    font-size: 1vw;
    font-weight: bold;
    color: #ffffff;
    background: #1B436E;
    text-align: center;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0.3vw 0.3vw 0.3vw rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0.3vw 0.3vw 0.3vw rgba(0, 0, 0, 0.3);
    box-shadow: 0.3vw 0.3vw 0.3vw rgba(0, 0, 0, 0.3);
    -moz-border-radius: 0.5vw;
    -webkit-border-radius: 0.5vw;
    border-radius: 0.5vw;
}
.mFoot .butt:hover,
.mFoot .buttL:hover,
.mFoot .buttR:hover {
	text-decoration: none;
    background: #2C728F;
}

