/*  CSS style sheet for entryform.html  						G Kaniuk	12/03/2017  */
/* 																						*/
/*  REFERENCE murtaugh <https://github.com/murtaugh>/*HTML5-Reset 						*/

/* BASIC ELEMENTS */
html, body, div,  fieldset, form, label, legend,
span, pre, mark,
table, caption, tbody, tfoot, thead, tr, th, td,
dl, dt, dd, ol, ul, li, 
img, kbd, small,  sub, sup, b,strong, i, em 	 
{
	margin: 0;
	padding: 0;
	border: 0;
	/*font-size: 10pt;*/
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

/* BOX SIZING http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */	
html { box-sizing: border-box; }
	
*, *:before, *:after { box-sizing: inherit; }

/* SCROLLBAR force a vertical scrollbar to prevent a jumpy page */
html { overflow-y: scroll;}

/* LINKS */
a 
{
	margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; 
	background: transparent; text-decoration: none;
}

/* INPUT */
input, select { vertical-align: middle; }

pre {
white-space: pre; /* CSS2 */
white-space: pre-wrap; /* CSS 2.1 */
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea { font: 99% sans-serif; }

/* BEHAVIOUR */	
button, input, select, textarea { margin: 0; }	/* Webkit browsers add a 2px margin  outside form elements */	
button, input[type="button"], input[type="submit"] {width: auto; overflow: visible; -webkit-text-fill-color: black; color: black;} /* make buttons play nice in IE and Safari*/

/* END */
/* ---------------------------------------------------------------------------- */

	
