@charset "utf-8";
/* CSS Document */

/* --------------- reset.css --------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i,  dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;                               /* reset padding and remove curbs */
	vertical-align: baseline;          /* give all to the same baseline */
	background: transparent;      /* to not slipped unwanted backgrounds, the default */
	font-size: 100%;                     /* do all the same font size */
}
h1, h2, h3, h4, h5, h6{
	font-weight:normal;}
a {                                      	     /* link is not in the list that do not reset the default outline */
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
table {						/* spacing between table cells */
	border-collapse: collapse; 
	border-spacing: 0;
}
td, td img {
	vertical-align: top;			/* return the familiar vertical alignment */
} 
input, select, button, textarea {
	margin: 0; 				/* remove the default spacing for form elements (in particular for the checkbox and radio) */
	font-size: 100%; 			/* do all the same font size */
}
input[type="text"], input[type="password"], textarea {
	padding: 0; 				/* remove padding for text fields */
}
input[type="checkbox"] { 		/* vertical alignment of checkboxes and radio fields relatively tags */
	vertical-align: bottom;
}
input[type="radio"] {
	vertical-align: text-bottom;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
/* --------------- /reset.css --------------- */

/* --------------- basic settings ---------*/
body {
	line-height: 1;
}
label, input[type="button"], input[type="submit"], button {
	cursor: pointer; /* hand cursor for all clickable form elements */
}
img{
	border:none;}
/* --------------- /basic settings ---------*/
