/*
* { -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 */
a{
	text-decoration:none;
	color:#000;
}
address{
	font-style:normal;
}
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;
}
ul,ol{
	margin:0;
	padding:0;
	list-style:none;
}
dl,dt,dd{
	margin:0;
	padding:0;
}
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0
}
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;
  outline-offset: 0;
}
select::-ms-expand {
    display: none;
}
 select:focus::-ms-value {
      background-color: transparent;
 }
::-moz-placeholder {
  opacity: 1;
}
*/