﻿/* webkit, please don't mess up type=search input... */
input[type=search] {
    -webkit-appearance: textfield;
}

/*The -moz-box-shadow style is there just to prevent Firefox 4 Beta from adding it's default red border.*/
input:required:invalid, input:focus:invalid {
  -moz-box-shadow: none;
}

/* box sizing... */
div, a, input, select, textarea, section, footer, header, iframe { 
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
/* links... arg! */
a, div
{
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}
/* no heighlight pls...*/