body {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
}

b {
    font-size: 110%;
}

em {
    color: red;
}

#ftopsection {
    background: #E44514;
    height: 280px; /*Height of top section*/
}

#ftopsection h1 {
    margin: 0;
    padding-top: 15px;
}

#fcontentwrapper {
    float: left;
    width: 100%;
    background: #313538;
}

#fcontentcolumn {
    margin: 0 350px 0 250px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
    background: #313538;
    color: #C3CED4;


}

#fleftcolumn {
    float: left;
    width: 250px; /*Width of left column*/
    margin-left: -100%;
    background: #313538;
    color: #C3CED4;
}

#frightcolumn {
    float: left;
    width: 350px; /*Width of right column*/
    margin-left: -350px; /*Set left marginto -(RightColumnWidth)*/
    background: #313538;
    color: #C3CED4;
}

#ffooter {
    clear: left;
    width: 100%;
    background: #1D2124;
    color: #FFF;
    text-align: center;
    padding: 4px 0;
    height: 45px;
}

#ffooter a {
    color: #fff;
}

.finnertube {
    margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
    margin-top: 0;
}
ul.services555 {
    margin: 0px;
    padding: 0px;
}



ul.services555 li {
    width: 300px;
    height: auto;
    display: inline-block;
    margin-right: 5px;
    margin-top: 15px;
    padding: 1px;


    vertical-align: top;
    border: 0px solid #000;
    color: #C3CED4;
    font-size: 13px;
    border-radius: 3px;

}
ul.footom {
    margin: 0px;
    padding: 0px;
}



ul.footom li {
    width: 45%;
    height: auto;
    display: inline-block;
    margin-right: 1px;
    margin-top: 15px;
    padding: 1px;
    vertical-align: top;
    border: 0px solid #000;
    color: #C3CED4;
    font-size: 16px;
    border-radius: 3px;

}

.finput{
    width: 300px;
    height: 40px;
    border-radius: 5px;
    background: #43484C;
    border: 0px;
}
.ftextarea{
    width: 300px;
    height: 170px;
    border-radius: 5px;
    background: #43484C;
    border: 0px;
}
.finput2{
    width: 300px;
    height: 40px;
    border-radius: 5px;
    background: #fff;
    border:1px solid #84C169;
}
.ftextarea2{
    width: 300px;
    height: 170px;
    border-radius: 5px;
    background: #fff;
    border:1px solid #84C169;
}
/* ####### responsive layout CSS ####### */
input.fbutton {
    cursor: pointer; /*forces the cursor to change to a hand when the button is hovered*/
    padding: 8px; /*add some padding to the inside of the button*/

    background: #84C169; /*the colour of the button*/
    border: 0px solid #FFF; /*required or the default border for the browser will appear*/
    /*give the button curved corners, alter the size as required*/
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 0px;
    /*give the button a drop shadow*/
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, .75);
    box-shadow: 0 0 4px rgba(0, 0, 0, .75);
    /*style the text*/
    color: #f3f3f3;
    font-size: 13px;
    font-weight: bold;
    width: 150px;
}

/***NOW STYLE THE BUTTON'S HOVER AND FOCUS STATES***/
input.fbutton:hover, input#gobutton:focus {
    background-color: #FD6204; /*make the background a little darker*/
    /*reduce the drop shadow size to give a pushed button effect*/
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .75);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, .75);
    box-shadow: 0 0 1px rgba(0, 0, 0, .75);
}
@media (max-width: 840px) {
    /* 1st level responsive layout break point- drop right column down*/
    #fleftcolumn {
      visibility: hidden;
    }

    #frightcolumn {
        float: none;
        width: 100%;
        margin-left: 0;
        clear: both;
    }

    #fcontentcolumn {
        margin-right: 0; /*Set margin to LeftColumnWidth*/
    }
    #ftopsection {
        background: #E44514;
        height: auto; /*Height of top section*/
    }
}



@media (max-width: 600px) {
    /* 2nd level responsive layout break point- drop left column down */
    #fleftcolumn {
        float: none;
        width: 100%;
        clear: both;
        margin-left: 0;
    }

    #fcontentcolumn {
        margin-left: 0;
    }
    #ftopsection {
        background: #E44514;
        height: auto; /*Height of top section*/
    }
}

