@font-face {
	font-family: 'GputeksRegular';
	src: url(fonts/gputeks-regular.eot);
	src: url(fonts/gputeks-regular.eot?#iefix) format('embedded-opentype'),
        	url(fonts/gputeks-regular.woff) format('woff'),
        	url(fonts/gputeks-regular.ttf) format('truetype'),
        	url(fonts/gputeks-regular.svg#GputeksRegular) format('svg');
   	font-weight: normal;
   	font-style: normal;
}

body {
    margin:0;
    font-family:"GputeksRegular" !important;
    font-weight:normal;
}
#background {
    position: fixed;
    z-index: -100;
    width:100%;
    height:100%;
    left:-5px;
    top:-5px;
    padding:10px;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(2px);
    background: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#header {
    color:#BAA600;
    font-size:40px;
    text-shadow: rgba(0,0,0,0.9) 0 0 10px;
    text-decoration:none;
    display: inline-block;
    margin-bottom: 10px;
}
#container {
    vertical-align: middle;
    position: absolute;
    width:50%;
    min-width:400px;
    top: 50%;
    left: 50%;
    text-align:center;
    transform: translate(-50%, -50%);
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
         -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
}
#textbox {
    border-radius: 7px;
    height:65px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: rgba(0,0,0,0.7) 0 0 7px;
    background: rgba(255,255,255,0.5);
    text-align: left;
	font-family:"GputeksRegular" !important;
}
#textbox #box::-webkit-input-placeholder{ color:#000; }
#textbox #box:-ms-input-placeholder { color:#000; }
#textbox #box {
    margin-top: 1px;
    padding-left:20px;
    padding-right:20px;
    border:0;
    width:82%;
    height:100%;
    background: transparent;
    color: #000;
    font-size:30px;
}
#textbox #box:focus {outline:0;}
#textbox #button {
    width:17.4%;
    float: right;
    padding-left:10px;
    padding-top:2px;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
    border:0;
    height:100%;
    font-size:30px;
    cursor:pointer;
    background: rgba(255,255,255,0.5);
    -webkit-appearance: none;
}
#textbox #button:hover { background: rgba(255,255,255,0.7); }
#textbox #button:active { background: rgba(255,255,255,0.7); }
#textbox #button:focus {outline:0;}
#options {
    margin: 0 auto;
    padding:10px 0 0 0;
    max-width: 600px;
}
#proxySettings {
    background:#fff;
    position: absolute;
    z-index: 99999;
    width:50%;
    min-width:400px;
    border-radius: 7px;
    padding-top:10px;
    padding-bottom:10px;
    padding-left:15px;
    padding-right:15px;
    box-shadow: rgba(0,0,0,0.7) 0 0 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}