/*
Sticky footer implemented like this:
https://github.com/timothylong/Responsive-Sticky-Footer/blob/master/index.html
*/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(http://fonts.googleapis.com/css?family=Lato:100,300,400);
@font-face {
    font-family: 'latobold';
    src: url('../fonts/Lato-Bol-webfont.eot');
    src: url('../fonts/Lato-Bol-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Lato-Bol-webfont.woff2') format('woff2'),
         url('../fonts/Lato-Bol-webfont.woff') format('woff'),
         url('../fonts/Lato-Bol-webfont.ttf') format('truetype'),
         url('../fonts/Lato-Bol-webfont.svg#latobold') format('svg');
    font-weight: normal;
    font-style: normal;

}

html, body {
    height: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    /* background: url('../images/background.png'); */
    padding: 50px 0 0 0;
	
    background: #252581;
}

#mainwrap {
    display: table;
    height: 100%;
    width: 100%;
}

/** Header *******************************************/

header {
    display: table-row;
    color: #fff;
    width: 100%;
    height: 1px;
    text-align: center;
}

header h1 {
    font-style: bold;
    font-weight: 400;
    font-size: 1.8em;
    margin: 22px 0 2px 0;
}

header p {
    font-style: normal;
    font-weight: 300;
    font-size: 0.8em;
    line-height: 1em;
    margin: 0;
}

/* CONTRIBUTE */

#banners {
    display: block;
    position: absolute;
    top:0;
    right: 30px;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0,0,0,.5);
}
#banners ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
#banners li {
    display: inline-block;
    padding: 0;
    margin: 0;
}
#banners li a {
    display: block;
    position: relative;
    padding: 8px 40px 8px 10px;
    color: #fff;
    font-size: 0.7em;
    font-weight: 400;
    text-decoration: none;
    margin: 0px;
}
#banners li a .icon {
    position: absolute;
    top: 3px;
    right: 7px;
    display: block;
    width: 24px;
    height: 24px;
}
#banners li.github a {
    background-color: #5f5f5f;
    border-bottom-left-radius: 2px;
    margin-right: 1px;
}
#banners li.github a:hover {
    background-color: #414141;
}
#banners li.github a .icon {
    background: url('../images/sprites.png') no-repeat 0 -47px;
}
#banners li.coin a {
    border-bottom-right-radius: 2px;
    background-color: #FFAD00;
    padding-right: 25px;
}
#banners li.coin a:hover {
    background-color: #cc3406;
}
#banners li.coin a .icon {
    background: url('../images/sprites.png') no-repeat -24px -47px;
}


/** Content layout ***********************************/

#contentwrap {
    position: relative;
    width: 1280px;
    margin: 1px auto 0 auto;
}

#content {
    display: table-row;
    height: auto;
}

#keycontent {
    height: 372px;
}

#othercontent {
    position: relative;
    margin-top: 40px;
    min-height: 250px;
}

#keyinfo {
    position: absolute;
    left: 0;
    width: 365px;
    height: 200px;
    background: url('../images/fastlabels-logo.png') no-repeat;
}

#search {
    position: absolute;
    left: 365px; /* = (contentwrap.width-550)/2; */
    width: 550px;
}

#mousecontent {
    position: absolute;
    right: 0;
    width: 365px;
    height: 250px;

}

/* Common input styles ******/

nav input, nav button,
nav .chosen-container-single .chosen-single,
#searchbox input {
    position: relative;
    overflow: hidden;
    padding: 11px 15px;
    margin: 0;
  /*  border: 1px solid #fff;
    border-radius: 2px;*/
    background-color: #fff;
    /*background-image: -webkit-linear-gradient(top, rgb(249,249,249) 0%, rgb(246,246,246) 100%);
    background-image: linear-gradient(top, rgb(249,249,249) 0%, rgb(246,246,246) 100%);*/
    background-clip: padding-box;
    /*box-shadow: 0 0 1px 1px #d0d0d0,
                0 2px 1px 0px #d0d0d0;*/
    font-size: 0.8em;
    font-weight: 400;
    text-decoration: none;
    color: #666;
    white-space: nowrap;
    border: 1px solid #ccc;
}
.chosen-container-active.chosen-with-drop .chosen-single,
nav button.checked,
#searchbox input:focus,
#searchbox input.active {
    outline: none;
    background-image: -webkit-linear-gradient(top, rgb(226, 226, 226) 0%, rgb(243,243,243) 100%);
    background-image: linear-gradient(top, rgb(226, 226, 226) 0%, rgb(243,243,243) 100%);
	
    background: #DFDFDF;
}

/*** NAVIGATION *****************************************************/

nav {
    display: inline-block;
    margin: 36px auto;
    text-align: left;
}

nav .inputgroup {
    float: left;
    margin-right:50px;
}

nav .inputgroup:last-child {
    margin-right: 0;
}

nav .inputgroup .spacer {
    display: inline-block;
    width: 5px;
    clear: right;
}

nav .inputgroup .leftfield,
nav .inputgroup .leftfield .chosen-single {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

nav .inputgroup .midfield,
nav .inputgroup .midfield .chosen-single {
    border-radius: 0px;
    border-left-color: #f7f7f7;
    /*margin-left: 1px;*/
}

nav .inputgroup .rightfield,
nav .inputgroup .rightfield .chosen-single {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left-color: #f7f7f7;
    /*margin-left: 1px;*/
}

#application_select { width: 200px; }
#version_select { width: 75px;}
#context_select { width: 275px; }
#keyboardtype_select { width: 135px; }

nav .chosen-container-single.keyboard-select .chosen-single {
    padding-right: 10px;
}
nav .chosen-container-single.keyboard-select .chosen-single div {
    width: 15px;
    height: 14px;
}
nav .chosen-container-single.keyboard-select .chosen-single div b {
    padding-right: 10px;
    background: url('../images/sprites.png') no-repeat -35px 0px;
}


nav button.os-radiobutton {
    height: 42px;
	width:48px;
    line-height: 1px;
   /* padding: 7px 9px 7px 9px;
   padding:0px;*/
	 cursor:pointer;
    border: 0px solid #ccc;
}
nav button.os-radiobutton b {
    display: block;
    width: 20px;
    height: 16px;
    background: url('../images/sprites.png') no-repeat 0px 0px;
    padding: 0px;
}
nav button.os-windows b {
    background-position: 2px -30px;
}
nav button.os-mac b {
    background-position: -16px -30px;
}
nav button.os-linux b {
    background-position: -34px -30px;
}

/*** CHOSEN PLUGIN STYLING *********************************************/

.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    zoom: 1;
    *display: inline;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    left: -9999px;
    z-index: 1010;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;

    margin-top: 1px;
    background-color: ##f3f4f5;
    border-radius: 2px;
}
.chosen-container.chosen-with-drop .chosen-drop {
    left: 0;
}
.chosen-container a {
    cursor: pointer;
}


/* Chosen Single */
.chosen-container-single .chosen-single {
    display: block;
}
.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 12px;
	  font-family: "Lato",Helvetica,Arial,sans-serif;
    font-size: 15px;
	font-weight:normal;
}
.chosen-container-single .chosen-single div {
    position: absolute;
    top: 13px;
    right: 11px;
    display: block;
    width: 10px;
    height: 14px;
}
.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../images/sprites.png') no-repeat 0px 0px;
}
.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 2px;
    white-space: nowrap;
    font-size: 0.7em;
    font-weight: 300;
	display:none;
}
.chosen-container-single .chosen-search input[type="text"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1px 0;
    padding: 2px 20px 2px 3px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #e4e4e4;
    background: white url('../images/sprites.png') no-repeat 100% -14px;
    font-size: 1em;
    color: #777777;
    border-radius: 1px;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    left: -9999px;
}

/* Chosen Results */
.chosen-container .chosen-results {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 400px;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0 0 0;
    padding: 0;
    list-style-type: none;
    /* border: 1px solid #ccc; */
}
.chosen-container .chosen-results li {
    display: none;
    list-style: none;
    padding: 12px 16px;
    margin: 0;
    font-size: 0.7em;
    font-weight: 300;
    background-color: #f0f0f0;
    color: #444;
    -webkit-touch-callout: none;
}
.chosen-container .chosen-results li:nth-child(even) {
    /*background-color: #f9f9f9;*/
}
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer;
	  font-family: "Lato",Helvetica,Arial,sans-serif;
    font-size: 15px;
	  font-weight: normal;
}
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default;
}
.chosen-container .chosen-results li.highlighted {
    background-color: #7E8791;
    color: #fff;
}
.chosen-container .chosen-results li.no-results {
    display: list-item;
}
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: bold;
    cursor: default;
}
.chosen-container .chosen-results li.group-option {
    padding-left: 15px;
}
.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline;
}

/* Active */
.chosen-container-active .chosen-single {
    background: #fdfdfd;
    background-image: none;
}
.chosen-container-active.chosen-with-drop .chosen-single {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}





/*** KEYBOARD LAYOUT *****************************************************/

#keycontent {
    padding: 15px 11px 8px 14px;
    background-color: #DFDFDF;
    border-radius: 10px;
    box-shadow: inset 0px 0px 0px 1px #F5F5F5,                  inset 0px 0px 0px 0px #f5f5f5,                  0px 0px 0px 0px #aaaaaa,                  0px 0px 0px 0px #919191,                  0px 2px 30px 0px rgba(0, 0, 0, 0.25);
}

div#keyboard div.row {
    clear: both;
}
div#keyboard div.row:after {
    display: block;
    content: '';
    clear: both;
}
div#keyboard div.col {
    float: left;
}

div#keyboard button,
div#keyboard div.spacer-key {
    float: left;
    height: 52px;
    width: 52px;
    margin: 0 3px 7px 0;
}

div#keyboard div.mac-fkeys button {
    width: 55px;
}

div#keyboard button.high {
    height: 111px;
}
div#keyboard button.wide {
    width: 107px;
}

div#keyboard button {
    padding: 0;
}

div#keyboard div.spacer-key {
    display: block;
}

div#keyboard div.spacer-small {
    display: block;
    float: left;
    width: 25px;
    height: 16px;
}

/*** KEYBOARD STYLES *****************************************************/
div#keyboard button {
    border: 0px;
    border-radius: 6px;
    background: #e9e9e9 -webkit-linear-gradient(top, rgb(239,239,239) 0%, rgb(244, 244, 244) 100%);
    background: #e9e9e9 linear-gradient(top, rgb(239,239,239) 0%, rgb(224,224,224) 100%);

    box-shadow: inset 0px 0px 0px 1px #A8A8A8,                  inset 0px 0px 0px 0px #fbfbfb,                  0px 0px 0px 0px #A56C6C,                  0px 0px 0px 0px #352F2F,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
    position: relative;
}

div#keyboard button:focus {
    outline: none;
}

div#keyboard button:active {
    margin-top: 1px;
    margin-bottom: 2px;
    box-shadow: inset 0px 0px 0px 1px #8b8b8b,
                inset 0px 0px 0px 2px #fbfbfb,
                0px 1px 0px 0px #aaaaaa,
                0px 2px 0px 0px #7e7e7e,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}

div#keyboard button b {
    display: none;
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #b3b3b3;
}

div#keyboard button.hasitems b {
    display: block;
}

div#keyboard button .label {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    padding: 5px 0px 0px 7px;
    font-size: 12px;
    font-weight: 400;
    color: #747474;
    text-align: left;
    text-shadow: 0px -1px 0px rgb(255,255,255);
}

div#keyboard button .shortcut {
    display: block;
    position: absolute;
    bottom: 6px;
    left: -0px;
    font-family: 'Lato', sans-serif;
    width: 70%;
    height: 40%;
    padding: 0px 6px 0px 7px;
    font-size: 9px;
    font-weight: 300;
    line-height: 10px;
    color: #ffffff;
    text-shadow: 0px 0px 0px rgba(0,0,0,0);
    text-align: left;
    text-rendering: optimizeLegibility;
    text-overflow: clip;
    overflow: hidden;
    word-wrap: break-word;
}


/*** KEYBOARD BUTTON STYLES *****************************************************/

div#keyboard button.nomod .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.nomod {
    background: #7E8791;
    box-shadow: inset 0px 0px 0px 1px #5e6d7d,                  inset 0px 0px 0px 0px #c1cad3,                  0px 0px 0px 0px #758597,                  0px 0px 0px 0px #556371,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.nomod:active {
    box-shadow: inset 0px 0px 0px 1px #5e6d7d,
                inset 0px 0px 0px 2px #bcc4cc,
                0px 1px 0px 0px #758597,
                0px 2px 0px 0px #556371,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.nomod.hasitems b {
    background-color: #828B9E;
}

div#keyboard button.alt .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.alt {
    background: #004886;
    box-shadow: inset 0px 0px 0px 1px #004886,                  inset 0px 0px 0px 0px #004886,                  0px 0px 0px 0px #004886,                  0px 0px 0px 0px #004886,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.alt:active {
    box-shadow: inset 0px 0px 0px 1px #0867b6,
                inset 0px 0px 0px 2px #7cbdf8,
                0px 1px 0px 0px #0a7dde,
                0px 2px 0px 0px #0e4776,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.alt.hasitems b {
    background-color: #517796;
}

div#keyboard button.command .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.command {
    background: #B2311A;
    box-shadow: inset 0px 0px 0px 1px #B2311A,                  inset 0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.command:active {
    box-shadow: inset 0px 0px 0px 1px #b82309,
                inset 0px 0px 0px 2px #f88875,
                0px 1px 0px 0px #c9260a,
                0px 2px 0px 0px #942512,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.command.hasitems b {
    background-color: #985446;
}

div#keyboard button.control .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.control {
    background: #89007D;
    box-shadow: inset 0px 0px 0px 1px #89007D,                  inset 0px 0px 0px 0px #89007D,                  0px 0px 0px 0px #89007D,                  0px 0px 0px 0px #89007D,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.control:active {
    box-shadow: inset 0px 0px 0px 1px #9d1a69,
                inset 0px 0px 0px 2px #e66cb6,
                0px 1px 0px 0px #b11c74,
                0px 2px 0px 0px #831f5d,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.control.hasitems b {
    background-color: #935078;
}

div#keyboard button.shift .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.shift {
    background: #1D9064;
    box-shadow: inset 0px 0px 0px 1px #187618,                  inset 0px 0px 0px 0px #1D9064,                  0px 0px 0px 0px #1e901e,                  0px 0px 0px 0px #1b5a1b,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.shift:active {
    box-shadow: inset 0px 0px 0px 1px #187618,
                inset 0px 0px 0px 2px #59d859,
                0px 1px 0px 0px #1e901e,
                0px 2px 0px 0px #1b5a1b,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.shift.hasitems b {
    background-color: #498149;
}

div#keyboard button.multi .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.multi {
    background: #C37E00;
    box-shadow: inset 0px 0px 0px 1px #C37E00,                  inset 0px 0px 0px 0px #C37E00,                  0px 0px 0px 0px #C37E00,                  0px 0px 0px 0px #C37E00,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.multi:active {
    box-shadow: inset 0px 0px 0px 1px #a26105,
                inset 0px 0px 0px 2px #f9b251,
                0px 1px 0px 0px #ba7205,
                0px 2px 0px 0px #83510e,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.multi.hasitems b {
    background-color: #b7833a;
}



div#keyboard button.other .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.other {
    background: #b46029;
    box-shadow: inset 0px 0px 0px 1px #753c17,                  inset 0px 0px 0px 0px #b46029,                  0px 0px 0px 0px #b46029,                  0px 0px 0px 0px #b46029,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.other:active {
    box-shadow: inset 0px 0px 0px 1px #753c17,
                inset 0px 0px 0px 2px #d88c59,
                0px 1px 0px 0px #904b1e,
                0px 2px 0px 0px #5a341b,
                0px 2px 3px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.other.hasitems b {
    background-color: #834923;
}



div#keyboard button.mod-active {
    margin-top: 1px;
    margin-bottom: 2px;

}

div#keyboard button.mod-alt {
    box-shadow: inset 0px 0px 0px 1px #004886,                  inset 0px 0px 0px 0px #fafafa,                  0px 0px 0px 0px #004486,                  0px 0px 0px 0px #004486,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.mod-alt:active .label,
div#keyboard button.mod-alt.mod-active .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.mod-alt:active,
div#keyboard button.mod-alt.mod-active {
    background: #004886;
    box-shadow: inset 0px 0px 0px 1px #004886,                  inset 0px 0px 0px 0px #004886,                  0px 0px 0px 0px #004886,                  0px 0px 0px 0px #0e4776,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}

div#keyboard button.mod-command {
    box-shadow: inset 0px 0px 0px 1px #B2311A,                  inset 0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.mod-command:active .label,
div#keyboard button.mod-command.mod-active .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.mod-command:active,
div#keyboard button.mod-command.mod-active {
    background: #B2311A;
    box-shadow: inset 0px 0px 0px 1px #B2311A,                  inset 0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px #B2311A,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}

div#keyboard button.mod-control {
    box-shadow: inset 0px 0px 0px 1px #89007D,                  inset 0px 0px 0px 0px #fafafa,                  0px 0px 0px 0px #89007D,                  0px 0px 0px 0px #89007D,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.mod-control:active .label,
div#keyboard button.mod-control.mod-active .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.mod-control:active,
div#keyboard button.mod-control.mod-active {
    background: #89007D;
    box-shadow: inset 0px 0px 0px 0px #89007D,                  inset 0px 0px 0px 0px #89007D,                  0px 0px 0px 0px #b11c74,                  0px 0px 0px 0px #831f5d,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}

div#keyboard button.mod-shift {
    box-shadow: inset 0px 0px 0px 1px #187618,                  inset 0px 0px 0px 0px #936868,                  0px 0px 0px 0px #1e901e,                  0px 0px 0px 0px #1b5a1b,                  0px 0px 0px 0px rgba(242, 242, 242, 1);
}
div#keyboard button.mod-shift:active .label,
div#keyboard button.mod-shift.mod-active .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.mod-shift:active,
div#keyboard button.mod-shift.mod-active {
    background: #1D9064;
    box-shadow: inset 0px 0px 0px 1px #187618,                  inset 0px 0px 0px 0px #59d859,                  0px 0px 0px 0px #1e901e,                  0px 0px 0px 0px #1b5a1b,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}


div#keyboard button.mod-other {
    box-shadow: inset 0px 0px 0px 1px #b46029,                  inset 0px 0px 0px 0px #b46029,                  0px 0px 0px 0px #904b1e,                  0px 0px 0px 0px #b46029,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
div#keyboard button.mod-other:active .label,
div#keyboard button.mod-other.mod-active .label {
    color: #fff;
    text-shadow: 0px 1px 0px rgb(80, 80, 80);
}
div#keyboard button.mod-other:active,
div#keyboard button.mod-other.mod-active {
    background: #b46029;
    box-shadow: inset 0px 0px 0px 1px #753c17,                  inset 0px 0px 0px 0px #b46029,                  0px 0px 0px 0px #b46029,                  0px 0px 0px 0px #5a341b,                  0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}



/*** SEARCHBOX *****************************************************/


#search {
    height: 100px;
}

#searchbox {
    position: relative;
    width: 250px;
    margin: 0 auto;
}

#searchbox input {
    z-index: 10;
    outline: none;
    width: 224px;
    padding: 12px 15px;
    margin: 0px;
	border:none;
	
    border-radius: 0px;
}

#searchbox span.icon {
    z-index: 2001;
    display: block;
    position: absolute;
    top: 11px;
    right: 12px;
    width: 16px;
    height: 16px;
    background: url('../images/sprites.png') no-repeat -34px -14px;

}

#search_results {
    display: none;
    z-index: 2002;
    position: absolute;
    top: 32px;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 2px;
    margin-top: 1px;
    background-color: #f6f6f6;
    border: 1px solid #fff;
    border-radius: 2px;
    box-shadow: 0 1px 1px 1px #b2b1b1;
    min-width: 400px;
    max-height: 200px;
    overflow-y: auto;
}
#search_results table {
    -webkit-touch-callout: none;
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}
#search_results table td {
    font-size: 0.7em;
    font-weight: 300;
    line-height: 16px;
    background-color: #f0f0f0;
    color: #444;
    padding: 0 3px;
}
#search_results table td em {
    font-weight: 400;
    font-style: normal;
    text-decoration: underline;
    color: #333;
}
#search_results table tr:nth-child(even) td {
    background-color: #f9f9f9;
}
#search_results table tr td:last-child {
    color: #999;
}
#search_results table td span {
    background-color: #556371;
    border-radius: 1px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.6em;
    padding: 0 2px;
    margin-right: 2px;
}
#search_results table td span.shift { background-color: #2dc42d; }
#search_results table td span.control { background-color: #de43a0; }
#search_results table td span.alt { background-color: #4aa6f4; }
#search_results table td span.command { background-color: #f56248; }

#search_results table tr.selected td {
    background-color: #758597;
    color: #fff;
}
#search_results table tr.selected td em {
    font-style: normal;
    text-decoration: underline;
    color: #fff;
}

#search_results span.more-results {
    display: block;
    font-size: 0.7em;
    width: 100%;
    text-align: center;
    color: #777;
}

#search_blurdetect {
    z-index: 1999;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
}


/*** FOOTER *****************************************************/

#footer {
    display: table-row;
    background-color: #fff;
    width: 100%;
    height: 28px;
    text-align: center;
}

#footer span {
    font-style: normal;
    font-weight: 300;
    font-size: 0.7em;
    line-height: 1em;
}

#footer span a {
    font-weight: 400;
    color: #151515;
}
#footer span a:hover {
    color: #0089ff;
}


/*** EXTRA *****************************************************/
#le, #ri, #to, #bo {
    border-color:#2bd8f5;
    display: block;
    position: fixed;
    z-index: 10;
}
#to{ border-style:solid; border-width: 10px 0 0;
    left: 0;
    right: 0;
    top: 0;}
	
#bo{  bottom: 0;
    border-style:solid;   border-width: 0 0 10px;
    left: 0;
    right: 0;}
	#le{bottom: 0;
    left: 0;
    top: 0;
    border-style:solid; border-width: 0 10px 0 0;}
	#ri{bottom: 0;
    right: 0;
    top: 0;
    border-style:solid; border-width: 0 0 0 10px;}
 .result{text-align:center; margin-top:20px; font-size:23px; font-weight:600; color:#fff; position:absolute; left:0; right:0; width:100%; font-family: 'latobold';}  	
 nav button.os-radiobutton:hover{background:#eee;}
 #version_select_chosen{margin-left:5px;}

/* Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
    .chosen-rtl .chosen-search input[type="text"],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type="text"],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span,
    nav button.os-radiobutton b,
    #searchbox span.icon,
    #banners li a .icon {
        background-image: url('../images/sprites@2x.png') !important;
        background-size: 64px 79px !important;
        background-repeat: no-repeat !important;
    }
}

