ol.phpfmg_form{
    list-style-type:none;
    padding:0px;
    margin:0px;
}

ol.phpfmg_form input, ol.phpfmg_form textarea, ol.phpfmg_form select{
    border: 1px solid #ccc;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
}

ol.phpfmg_form li{
    margin-bottom:5px;
    clear:both;
    display:block;
    overflow:hidden;
	width: 100%
}


.form_field, .form_required{
    
}

.form_required{
    color:#0099CC;
    margin-right:8px;
}

.field_block_over{
}

.form_submit_block{
    padding-top: 3px;
}

.text_box, .text_area, .text_select {
    font-family: "David Libre", serif;
	width:80%;
	max-width:800px;
	padding:1em;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	margin-bottom:10px;
	font-size:1.4em;
}

.text_area{
    height:180px;
}
textarea:focus, input:focus {
	border: 1px solid blue;
	background: #0099cc;
	outline:none;
	color:#FFF;
}
.form_error_title{
   
    color: red;
}

.form_error{
    border: 1px dashed #ff0000;
    padding: 10px;
    margin-bottom: 10px;
	width:80%;
	max-width:800px;
}

.form_error_highlight{
    border-bottom: 1px dashed #ff0000;
}

div.instruction_error{
    color: red;
   
}

hr.sectionbreak{
    height:1px;
    color: #ccc;
}

#one_entry_msg{
    background-color: #F4F6E5;
    border: 1px dashed #ff0000;
    padding: 10px;
    margin-bottom: 10px;
}

input[type="submit"] {
	-webkit-appearance: none;
border-radius: 0;
}
.button {
	font-family: "David Libre", serif;
  text-decoration: none;
  font-size: 1rem;
  background:#f5f8f8;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #00c7ec;
  border: 1px solid #00c7ec;
  border-radius: 2px;
  line-height: 2;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top:0.4rem;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin:0;
}
.button:hover {
  color: white;
  box-shadow: 0 0 30px 0 rgba(0, 199, 236, 0.5);
  background-color: #00c7ec;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.button:hover:before {
  -webkit-animation: shine 0.5s 0s linear;
  -moz-animation: shine 0.5s 0s linear;
  animation: shine 0.5s 0s linear;
}
.button:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}
.button:before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 15px 3px white;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}