html, body {
	margin: 0;
	width: 100%;
	overflow: hidden;
	font-family:Arial, Helvetica, sans-serif;
}
.fullscreen {
	position: absolute;
	margin:0px;
	top: 0px;
	left: 0px;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	opacity:0;
	display:table;
}
#scrollbar {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 15px;
	z-index: 999;
	background-color:#000;
	opacity: 0.4;
	filter: alpha(opacity=40); /* For IE8 and earlier */
}

#scrollbutton {
	position: relative;
	width: 10px;
	background-color:#fff;
	opacity: 1;
	height: 0px;
	margin: 2px;
	border-radius: 6px;
}
.autofluid {
	position: absolute;
	overflow:hidden;
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
    box-sizing: border-box; 
}

a {
	color: #000; //#337ab7;
	text-decoration:none
}
a:focus,a:hover {
	color:#23527c;
	text-decoration:underline
}
a:focus {
	outline:thin dotted;
	outline:5px auto -webkit-focus-ring-color;
	outline-offset:-2px
}

.btn {
	display:inline-block;
	padding:6px 6px;
	margin:0px 18px;
	font-size:14px;
	font-weight:400;
	line-height:1.42857143;
	text-align:center;
	white-space:nowrap;
	vertical-align:middle;
	-ms-touch-action:manipulation;
	touch-action:manipulation;
	cursor:pointer;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
	background-image:none;
	border:1px solid transparent;
	border-radius:4px;
	min-width:150px;
}

.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus {
	outline:thin dotted;
	outline:5px auto -webkit-focus-ring-color;
	outline-offset:-2px
	}
.btn.focus,.btn:focus,.btn:hover {
	color:#333;
	text-decoration:none
}
.btn.active,.btn:active {
	background-image:none;
	outline:0;
	-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);
	box-shadow:inset 0 3px 5px rgba(0,0,0,.125)
}
.btn.disabled,.btn[disabled],fieldset[disabled] .btn {
	pointer-events:none;
	cursor:not-allowed;
	filter:alpha(opacity=65);
	-webkit-box-shadow:none;
	box-shadow:none;
	opacity:.65
}

.btn-md { height:45px; line-height:47px; padding:0 25px; font-size:14px; text-transform:uppercase; }
.btn-lg { height:52px; line-height:54px; padding:0 25px; font-size:14px; text-transform:uppercase; }
.btn-primary { border:none; background:#4ea2ea; }
.btn-success { border:none; background:#23ab0d; }


