@font-face {
    font-family: 'Open Sans';
    src: url("../fonts/OpenSans-Light.ttf");
}

@font-face {
    font-family: 'Open Sans bold';
    src: url("../fonts/OpenSans-Bold.ttf");
}

@font-face {
    font-family: 'Open Sans italic';
    src: url("../fonts/OpenSans-Italic.ttf");
}

html {
    height:auto;
    min-height:100%;
    background: url(../img/bg_small.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: scroll;
    overflow-x: hidden;
    
}

@media only screen and (max-width: 480px) {
  html {
    overscroll-behavior: none;
  }
}


::-webkit-scrollbar {
    width: 0px;  /* remove scrollbar space */
    background: transparent;  /* optional: just make scrollbar invisible */
}
/* optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

body {
    margin: 0;
    height: 100%;
    padding: 0;
    font-family: 'Open Sans', 'Open Sans bold', 'Open Sans italic', sans-serif;
    font-size: 12px;
    
}

a {
    display: block;
    color: white;
    text-decoration: none;
}

h1 {
    font-size: 6vh;
    font-weight: 100;
    color:white;
    margin-top: 1%;
    margin-bottom: 1%;
}

textarea {
    background: black;
    color:white;
    font-size: 2em;
}


.tabs ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333333;
}

.tabs li {
    float: left;
    font-size: 2em;
    
}

.tabs li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    padding-left: 35px;
    padding-right: 35px;
    text-decoration: none;
}

.tabs li a:hover {
    background-color: #111111;
}

.ui-tabs-active {
    background-color: #18861a !important;
}