@charset "utf-8";
/* CSS Document */
body,html {
	margin-left: auto;
	margin-right: auto;
	padding:0px;
	margin: 0px;
	text-align: center;
	background-attachment:fixed;	
	font-family: 'Roboto',sans-serif;
	font-size:18px;
	font-weight:400;
	-webkit-font-smoothing	: antialiased;
	-moz-osx-font-smoothing	: grayscale;	
	color: #444;
	background-color:#fff;
	line-height:35px;
	width:100%;
	min-height: 100%;
	letter-spacing:0.3px;
}

a{
	text-decoration: none;
	color:#444;
}

p{
    font-size:17px;
    line-height:30px;
}

h6{
	font-family:'Open Sans',sans-serif;
	font-family: 'Roboto',sans-serif;
	font-size: 16px;
	font-weight:200;
	margin: 0px;
	padding:0px;
	line-height:30px;
	color: #444;
	color: #444;
	letter-spacing:0.3px;
}

h5{
	font-family:'Open Sans',sans-serif;
	font-family: 'Roboto',sans-serif;
	font-size:18px;
	font-weight: 100;
	margin: 0px;
	padding:0px;
	line-height:30px;
	color:#444;
	letter-spacing:0.3px;
}

h4{
	/*font: normal 200% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif;
	font-family: 'Roboto',sans-serif;*/
	font-family:'Open Sans',sans-serif;
	font-size:22px;
	line-height:35px; 
	margin: 0px;
	padding:0px;
	color:#444;
	letter-spacing:0.3px;
}

h3{
	/*font: normal normal 100% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif;
	font-family: 'Roboto',sans-serif;*/
	font-family:'Open Sans',sans-serif;
	font-size:27px;
	margin: 0px;
	padding:0px;
	color:#444;
	line-height:35px;
	letter-spacing:0.3px;
}

h2{
	/*font-family:'Roboto',sans-serif;*/
	font-family:'Open Sans',sans-serif;
	color:#444;
	font-size:35px;	
	line-height:35px;
	margin: 0px;
	padding:0px;
	letter-spacing:0.3px;
}

input{
	 padding: 7.5px 7.5px;
	margin:2.5px 0px;
	margin-top:0px;
	border:none;
	background:#f5f5f5;
	border-radius: 3px;
	font-family: 'Roboto',sans-serif;
	font-size: 15px;
	color: #555;
}

button{
	 padding: 7.5px 7.5px;
	margin:2.5px 2px;
	margin-top:0px;
	border:none;
	background:#f5f5f5;
	border-radius: 3px;
	font-family: 'Roboto',sans-serif;
	font-size: 15px;
	color: #555;

}



select{
	padding:7.5px 7.5px;
	font-family: 'Roboto',sans-serif;
	font-size: 15px;
	color: #555;
}

textarea{
	padding:10px 15px;	
	margin:5px 2px;
	margin-top:0px;
	font-size:14px;
	border:none;
	background:#f5f5f5;
	border-radius: 3px;
	resize: none;
	font-family: 'Roboto',sans-serif;
	font-size: 16px;
	color: #555;
}

table tr:nth-child(odd) td {
  /*background:rgba(0, 0, 0, 0.035);*/
}

table td {
  border-bottom:dashed 1px #ccc;
  padding:7px 5px;
  font-family: 'Roboto',sans-serif;
  font-size:14px;
  font-weight: 100;
  line-height:25px;
  color:#444;
}

table th {
  font: normal 100% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif;
  font-family: 'Roboto',sans-serif;
  font-size:16px;
  font-weight:600;
  padding:7px 5px;
  border-bottom:solid 3px #444;
}

table th img{
  height:12px;
  margin-left:5px;
}

/*Slider*/
input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    
    /*fix for FF unable to apply focus style bug */
    border: none;
    background: none;
    
    /*required for proper track sizing in FF*/
    width: 125px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #e5e5e5;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 7px;
    width: 18px;
    border-radius: 5px;
    background: #bbb;
    margin-top: -1px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #e5e5e5;
}

input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    background: goldenrod;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}
/*Slider/*

