/*
   New Perspectives on HTML and CSS
   Tutorial 6
   Case 4

   PC forms sheet
   Author: Crystal Robnett
   Date:   5/1/2016

   Filename:         oform.css
   Supporting Files: mclogo.png, go.png, stop.png

*/

/*page styles */

h1.pageTop {
    margin: 10px 20px 20px 20px;
    text-align: center;
}

h3.fb {
    
    text-align: center;
        }
        
table.hours {
     margin: 10px 0px 20px 360px;
}

p.info {
    margin: 10px 50px 20px 50px;
    font-size: 20px;
    text-align: center;
    
}

section p.start {
    margin: 10px 0px 5px 235px;
    font-size: 12px;
}

form.contactUs {
    
    font-family: Arial, Helvetica, sans-serif;
    
}

/*Field set styles*/

fieldset {
    background-color: cornflowerblue;
    border: 1px solid black;
    margin: 10px 0px 10px 200px;
    width: 55%;
}

/*label styles*/

label {
    clear: left;
    display: block;
    float: left;
    margin: 7px 4% 0px 5px;
    width: 40%;
}

/*input control styles*/

input {
    display: block;
    float: left;
    font-size: 0.9em;
    margin: 7px 0px;
    width: 50%;

}


/*selection list styles*/

select {
    display: block;
    float: left;
    font-size: 0.9em;
    margin: 7px 0px;
}

/*fieldset styles*/

fieldset.options {
    border-width: 0px;
}

fieldset.options label {
    display: inline;
    float: none;
    margin: 0px 0px 0px 0px;
    width: 20px;
}

fieldset.options input {
    display: inline;
    float: none;
    margin: 0px 30px 0px 0px;
    width: 20px;
}

/*text area styles*/

textarea {
    display: block;
    font-size: 0.9em;
    float: left;
    height: 150px;
    margin: 10px 0px;
    width: 50%;
}



/* button styles */

form p {
    text-align: center;
    margin: 10px 0px 20px 320px;
    width: 55%;

}

input[type="submit"], input[type="reset"] {
    display: inline;
    height: 30px;
    width: 150px;
    margin-bottom: 30px;

}



