/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;
  text-align:left;
  borderradius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  outline: none;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
.remodal h2 {
	color:#20AD36; font-size:18px;
}

.remodal ul {
	list-style-type:none; margin:0; padding:0; background-color:#666666;
}
.remodal ul.h {
	margin:0 0 50px 0;
}
.remodal ul li{
	margin:1px 0px 1px 0px; padding:0; font-size:16px;
	
}
.remodal ul li a{
	display:block; color:#333; background-color:#FFF; margin:1px 0px 1px 0px;
	padding:5px; text-decoration:none; position:relative;
	
}

.remodal ul li a i{
	position:absolute; top:25%; right:10px; font-size:18px;
}
.remodal form table th{
	background-color:#CEEEED; text-align:left;font-size: 0.7em; font-weight:normal;
}

.remodal form table input[type=text]{
	width:90%; font-size:0.9em;
}

.remodal form table input[type=text]::-webkit-input-placeholder {
	line-height:130%; padding-left:5px;
}

.remodal form table select{
	font-size:0.9em;
}

.remodal form input[type=submit]{
	padding:2% 5% 2% 5%; font-size:0.9em; margin-top:10px;
}
