html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-top: 10px;
	background: rgb(241, 241, 241);
}

/* Reset form elements */

/*--- Buttons style reset ---*/
	/* Убираем border и padding у input */
	input[type=text],input[type=email],
	input[type=number],input[type=search],
	input[type=tel],input[type=password],input[type=url], select{
		padding: 0;
		border: 0;
	}	
	/* Убираем  выделение при фокусе */
	input[type=text]:focus,input[type=email]:focus,
	input[type=number]:focus,input[type=search]:focus,
	input[type=tel]:focus,input[type=password]:focus,input[type=url]:focus, select:focus{
		outline:none;
	}
	/* Убираем стрелки для type number */
	input::-webkit-outer-spin-button,
	input::-webkit-inner-spin-button {
		-webkit-appearance: none;;
	}
	input::-o-outer-spin-button,
	input::-o-inner-spin-button {
		-o-appearance: none;
		margin: 0;
	}	
	input[type=number] {
		-moz-appearance:textfield;
	}
	/* Убираем крест для search */	
	input[type="search"]::-webkit-search-decoration,
	input[type="search"]::-webkit-search-cancel-button,
	input[type="search"]::-webkit-search-results-button,
	input[type="search"]::-webkit-search-results-decoration {
		display: none;
	}
	/* Убираем крест для search в IE*/	
	input::-ms-clear {
		display: none;
	}
	select{		
		-webkit-appearance: none;
		-moz-appearance: none;
		text-indent: 0.01px;
		text-overflow: '';
		-ms-appearance: none;
		appearance: none!important;
	}
	textarea {
		padding: 0;
		border: 0;
	}
	textarea:focus {
		outline:none;
	}
	select::-ms-expand {
		display: none;
	}	
	input[type=button],input[type=file],input[type=reset],input[type=submit]{
		cursor: pointer;
		border: none;
		background: none;
		padding:0;
	}
	input[type=button]:focus,input[type=file]:focus,input[type=reset]:focus,input[type=submit]:focus{
		outline:none;
	}	