CSS RESET

html5doctor.com Reset v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) - http://cssreset.com

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;font-size:100%;background:transparent}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{
	text-overflow: inherit;
	white-space: inherit;
	overflow: inherit;
}
img{
	display: inline-block;
}
ul{
	list-style: none;
	list-style-type: none;
}
*{
	outline: none; /* To remove the orange stuff that comes by default in android browser on links,etc */
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* Make the default touch feedback transparent, apart from outline in mobile */
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

Styling for touch feedback on mobile

*:not(input):not(select):not(textarea){
	-webkit-touch-callout: none;
	-webkit-user-select: none; /* To prevent user from selecting text */
	-o-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none; /* Not implemented by browser, but future proofing */
	-webkit-user-drag: none; /* To prevent user from dragging items in desktop */
	-webkit-user-modify: none;
	-ms-user-drag: none;
	-moz-user-modify: none;
	-webkit-highlight: none;
	-moz-highlight: none;
	-ms-text-size-adjust: none;
	user-select: none;
	cursor: default;
}
input, textarea, select{ /* For input elements, the feedback is taken care, but default action should be allowed, i.e. touch callout, text selection,etc */
	-webkit-touch-callout: initial;
	-ms-user-select: initial; /* Not implemented by browser, but future proofing */
	-webkit-user-drag: initial;
	-webkit-user-select: initial;
	-webkit-highlight: initial;
	-webkit-user-modify:  initial; /*read-write-plaintext-only; Added for orange box removal, but spoils input action itself for >Android4 */
}
input, textarea, select, button{
	font-family: "Helvetica Neue", Helvetica, Arial; /* Webkit defaults to -webkit-small-control and overrides body*/
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	/* -webkit-font-smoothing: antialiased; Remove to check perf*/
}
:root input, textarea, select{
	font-family: "Segoe UI", "Helvetica Neue",Helvetica,Arial \0/IE9;
}
input, textarea, select{
	color: inherit;
}