/*
  Current modals are Feedback Form, Mapping Popup.
*/
#modal-overlay {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #333;
    display: none;
}
/*feedback form*/
#feedback_wrapper{
    display:none;
    position:absolute;
    height:425px;
    width:500px;
    background: #fff;
    border: solid 5px black;
    top:2em;
    left:25%;
    padding:3em;
    z-index:102;
}
.highlight_required{
    background: #FFAAAA;
    border:solid red 1px;
}
textarea.highlight_required{
    background: #FFAAAA;
    border:solid red 1px;
}
#feedback_status{
    margin:1em;
    padding-top:2em;
    font-weight:bold;
    font-size:1.25em;
}

/* map popup */
#map_wrapper{
    display:none;
    height:350px;
    width:400px;
    background: #fff;
    border: solid 5px black;
    overflow:hidden;
    z-index:103;
}
#map_positioning_wrapper{
	position:fixed; 
	top: 30%; 
	left: 35%;
        z-index:102;
}

#pricing_form_wrapper{
    display:none;
    position:absolute;
    height:425px;
    width:500px;
    background: #fff;
    border: solid 5px black;
    top:2em;
    left:25%;
    padding:3em;
    z-index:102;
}