/* 
    Document   : pba
    Created on : Sep 16, 2013, 5:36:53 PM
    Author     : Alberto Gonzalez
    Description:
        Purpose of the stylesheet follows.
*/

@charset "utf-8";
@import url("reset.css");

html,body {
    height: 100%;
}

html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

body {
    font: 62.5% Tahoma, Helvetica, Arial, sans-serif;
    background: #FFF;
}

#mainContainer {
    position: relative;
    width: 100%;
    height: auto !important;
    height: 100%;
    min-height: 100%;
}


#mainContent {
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 494px;
    height: 270px;
}

#social-icons{
    position: absolute;
    text-align: right;
    top:190px;
    left:20px;
    width: 200px;
}
#social-icons a{
    margin: 0 1px;
}

#frm_contact{
    width: 90%;
    padding: 15px;
    margin: 15px 0;
    overflow: hidden;
    display: none;
}

#frm_contact:before, #frm_contact:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

#frm_contact:after {
    clear: both;
}

#contact-info{
    float: left;
    width: 45%;
}

#contact-info p{
    margin-bottom: 15px;
    font-size: 14px;
}

#contact-info .name{
    font-size: 17px;
}

#contact-info .name span{
    font-size: 13px;
}

#contact-form{
    font-size: 14px;
    width: 50%;
    float: right;
    position: relative;
}
form{
    font-size: inherit;
    width: 100%;
}
label{
    display: block;
    margin: 0 5px 5px;
}

input[type=text],textarea{
    display: block;
    width: 95%;
    border: none;
    font-size: inherit;
    padding: 7px;
    margin-bottom: 10px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}



input[type=submit]{
    width: 50%;
    float: right;
    margin: 15px 0;
    height: 35px;
    border: none;
    font-size: 19px;
    font-family: inherit;
    cursor: pointer;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}


#actionMsg{
    padding: 10px;
    font-size: 12px;
}
#actionMsg.confirmationMsg{
    color:#FFF;
    font-size: 19px;
}
.warningMsg{
    border: 1px solid #F12313;
}

.warningMsg li{
    margin-bottom: 2px;
    margin-left: 15px;
    list-style-type: disc;
}
.warningMsg li:first-child{
    margin-bottom: 4px;
    list-style-type: none;
    margin-left: 0;
}

.required:after{
    content: "*";
    margin-left: 5px;
}