html,body {
    width:100%;
    height:100%;
    margin:0;
    padding:0;
    font-family: "Montserrat", Arial, sans-serif;
}
body {
    background: url("../img/bg6.jpg") no-repeat center fixed;
    background-size: cover;
    min-height: 100%;
}
label,input {
    display: block;
}
label{
    margin:5px 0;
}
input {
    margin: 0 0 10px;
    padding: 5px;
    font-family: "Montserrat", Arial, sans-serif;
    border: 1px solid #f2f2f2;
}
input[type="checkbox"] {
    display: inline;
    margin-right:5px;
}
button {
    font-family: "Montserrat", Arial, sans-serf;
}
input:focus {
    border:1px solid #f2f2f2;
}
input[type="submit"] {
    width:auto;
    padding:2px 5px;
}

input[readonly], input[readonly="readonly"] {
    background: #EF7D00;
    color: #fff;
}
select {
    padding: 3px;
    width: 100%;
    border: none;
    height: 40px;
    border-bottom: 2px solid #ddd;
    cursor: pointer;
}
option {
    font-family: "Montserrat", Arial, sans-serif;
    border-bottom: 1px solid #d2d2d2;
    padding:2px 0;
    font-size:16px;
}
img {
    max-width: 100%;
}
h1,h2,h3,h4,h5 {
    margin:0;
}
a {
    color: #EF7D00;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}
a:hover, a:focus, a:active {
    color:#222;
}
input {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}
.center {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.block {
    display: block;
}
#tfooter {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 10px 15px;
    color: #ddd;
    background: rgba(0,0,0,0.6);
    text-align: center;
    z-index:2;
}
.red {
    color:red;
}

.green {
    color: rgb(42, 212, 90)
}
.orange {
    color: #EF7D00;
}
.borderBottom {
    border-bottom: 1px solid #666;
}
.paddedSmallBox {
    padding:10px 0;
}
.floatLeft {
    float:left;
}
.floatRight {
    float:right;
}
.middleGrey {
    color: #444;
}
.marginBottom {
    margin-bottom: 20px;
}
.textLeft {
    text-align: left;
}
.alignCenter {
    margin: 0 auto;
    text-align: center;
}