﻿body {
	/*background-color: #DDDDDD;*/
	background-color: #F8F8F8;
}

* {
		font-family: 'Roboto-Regular', Tahoma, Geneva, Verdana, sans-serif;
		/*font-size: 1em;*/ /*= 16px = 12pt*/
		font-size:100%;	
	}

/* 1.3rem; */ /* PX: Misschien 11px? MIjn beeldscherm niet goed.. */
/*@media (min-width: 768px) {
	* {
		font-family: 'Roboto-Regular', Tahoma, Geneva, Verdana, sans-serif;
		font-size: 11px; 	
	}
}

@media (min-width: 992px) {
	* {
		font-family: 'Roboto-Regular', Tahoma, Geneva, Verdana, sans-serif;
		font-size: 11px; 
	}
}

@media (min-width: 1200px){
	* {
		font-family: 'Roboto-Regular', Tahoma, Geneva, Verdana, sans-serif;
		font-size: 11px; 
	}
}

@media (min-width: 1500px){
	* {
		font-family: 'Roboto-Regular', Tahoma, Geneva, Verdana, sans-serif;
		font-size: 1.3rem;  
	}
}*/



/*input, select, option {
	background: rgba(255, 255, 255, 1);
	color: #333;
	border: 1px solid #000000;
	padding: 0px 8px 0px 0px !important;
	line-height: 1;
	text-indent:5px;
}

input:hover, select:hover {
	border: 1px solid #ffbb00;
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
}

input:focus, select:focus {
	border: 1px solid #ffbb00;
	outline: none;
	box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.3);
	background: rgb(255, 255, 255);
}

select>option:hover, select>option:focus {
	background-color: #ffbb00;
}*/






.standard_Button {
	background-color:#ffbb00;
	display: inline-block;
	padding: 5px 10px 6px;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	line-height: 1;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px #999;
	-webkit-box-shadow: 0 1px 3px #999;
	text-shadow: 0 -1px 1px #222;
	border-bottom: 1px solid #222;
	position: relative;
	cursor: pointer;
	width:100%;
}

/*Scrollbars*/



/* Let's get this party started */
::-webkit-scrollbar {
    width: 8px; 
	height: 8px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    -webkit-border-radius: 8px;
    border-radius: 8px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    /*background: rgba(255,0,0,0.8);*/ 
	background-color: #BBBBBB;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
	
}
::-webkit-scrollbar-thumb:window-inactive {
	background-color: #BBBBBB; 
}

