/*
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
*/

html {
	box-sizing: border-box;
}
*, ::before, ::after {
  box-sizing: inherit;
}

/* basic settings */

html{
	font-size:1em;
}
body{
	background:#fff;
	color:#000;
	font-style: normal;
	font-weight: normal;
	vertical-align:baseline;
}

/* reset */
dl,dt,dd{
	margin:0;
	padding:0;
}
table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0 }
a{
	text-decoration:none;
	color:#000;
}
h1,h2,h3,h4,h5,h6{
	font-size:1em;
	font-weight:normal;
	margin:0;
	padding:0;
}
figure{
	margin:0;
	padding:0;
}
img{
 	max-width:100%;
    height:auto;
    display:block;
}
menu,ul,ol{
	margin:0em;
	padding:0em;
}
li{
	list-style-type:none;
}
p{
	margin:0em;
}
input,button,textarea,select{
	-moz-appearance:none;
	-webkit-appearance:none;
	appearance:none;
	border: 0 none;
    border-radius: 0;
    box-sizing: border-box;
    outline-style: none;
    vertical-align: bottom;  
}
[type="search"] {
  -webkit-appearance: none; /* 1 */
  outline-offset: 0; /* 2 */
}
select::-ms-expand {
    display: none;
}
 select:focus::-ms-value {
      background-color: transparent;
 }
::-moz-placeholder {
  opacity: 1;
}