﻿.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


      body {
	    font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
        margin: 0px;
        padding: 0px;
		overflow:hidden;
		position:fixed;
      }
	  
	ul > li {
	  margin: .5em 0;
	  line-height: 1.5em;
	}
	
	input[type='range'] {
		padding-top:0px;
		padding-bottom:0px;
		font-size:inherit;
		width:auto;
		-webkit-appearance: none;
		border-radius: 1em;
		background-color: #999;
		height: 0.5em;
		vertical-align: middle;
		cursor:pointer;
	}
	input[type='range']::-moz-range-track {
		width:auto;
		-moz-appearance: none;
		border-radius: 1em;
		background-color: #999;
		height: 0.5em;
	}
	input[type='range']::-webkit-slider-thumb {
		-webkit-appearance: none;
		border-radius: 1em;
		background-color: #FFF;
		border: 1px solid #999;
		height: 1em;
		width: 1em;
		cursor:pointer;
	}
	input[type='range']::-moz-range-thumb {
		-moz-appearance: none;
		border-radius: 1em;
		background-color: #FFF;
		border: 1px solid #999;
		height: 1em;
		width: 1em;
		cursor:pointer;
	}