/* zero out margins, padding, and border for all elements */
* {
	border:  0 none; 
	margin:  0; 
	padding: 0;
}
/* reset table borders */
table { 
	border-collapse: separate; 
	border-spacing: 0; 
}
/* force table elements to left alignment */
caption, th, td { 
	text-align: left; 
}
/* remove border on focus elements */
:focus {
	outline: none; 
}