/* Global Styles */
 
*{
    padding: 0; /* Reset all padding to 0 */
    margin: 0; /* Reset all margin to 0 */
}

body{
    background: #F9F9F9; /* Set HTML background color */
    font: 14px "Lucida Grande";  /* Set global font size & family */
    color: #A9402F; /* Set global text color */
}
 
p{
    margin: 10px 0px 10px 0px; /* Add some padding to the top and bottom of the <p> tags */
}
 
/* Header */
 
#header{
    height: 45px; /* Set header height */
    background: #A9402F; /* Set header background color */
}

 
#header h3{
    color: #FFFFF3; /* Set header heading(top left title ) color */
    padding: 10px; /* Set padding, to center it within the header */
    font-weight: normal; /* Set font weight to normal, default it was set to bold */
}
 
/* Wrap */
 
#wrap{
    background: #FFFFFF; /* Set content background to white */
    width: 700px; /* Set the width of our content area */
    margin: 0 auto; /* Center our content in our browser */
    margin-top: 80px; /* Margin top to make some space between the header and the content */
    padding: 10px; /* Padding to make some more space for our text */
    border: 1px solid #DFDFDF; /* Small border for the finishing touch */
    text-align: center; /* Center our content text */
}
 
#wrap h3{
    font: italic 22px Georgia; /* Set font for our heading 2 that will be displayed in our wrap */
}
 
/* Form & Input field styles */
 
form{
    margin-top: 10px; /* Make some more distance away from the description text */
}
 
form .submit_button{
    background: #E1553E; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    width:90px;
    color: white;
}

form .submit_button:hover {
    background: #ee9d91; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}

form .submit_button2{
    background: #339933; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    width:90px;
    color: white;
}

form .submit_button2:hover {
    background: #8cd98c; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}

form .submit_button3{
    background: #339933; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    
    color: black;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    color: white;
}

form .submit_button3:hover {
    background: #8cd98c; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}

form .submit_button3red{
    background: #E1553E; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    
    color: black;
    padding: 8px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    color: white;
}

form .submit_button3red:hover {
    background: #ee9d91; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}

form .submit_button4{
    background: #FE9A2E; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    width:90px;
    color: white;
}

form .submit_button4:hover {
    background: #F3E2A9; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}
 

form .submit_button5{
    background: #013ADF; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    padding: 8px; /* Add some more space around our button text */
    cursor: pointer;
    width:90px;
    color: white;
}

form .submit_button5:hover {
    background: #819FF7; /* Set button background */
    border: 1px solid #DFDFDF; /* Small border around our submit button */
    color: black;
}



input{
    font: normal 16px Georgia; /* Set font for our input fields */
    border: 1px solid #DFDFDF; /* Small border around our input field */
    padding: 8px; /* Add some more space around our text */
width: 90%;
	}

#wrap .statusmsg{
    font-size: 18px; /* Set message font size  */
    padding: 3px; /* Some padding to make some more space for our text  */
    background: #EDEDED; /* Add a background color to our status message   */
    border: 1px solid #DFDFDF; /* Add a border arround our status message   */
	border-color: red;
   
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}