/*
 * Base CSS file to use in any project.
 * It creates a set of standard settings for CSS across browsers, because
 * some default settings can be quite different from one browser to another.
 * Inspired from http://www.alsacreations.com/astuce/lire/654-feuille-de-styles-de-base.html
 */
html {
	font-size: 100%; /* Prevents a resize bug in IE */
	margin: 0;
	/* Always display scrollbars (even when not needed), to prevent the page from shifting if they appear suddenly. */
	overflow-y: scroll;
	padding: 0;
}

body {
	background: white;
	color: black;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: bold;
	line-height: 1.2;
	margin: 1em 0 .5em 0;
}

h1 {
	font-size: 1.75em;
}

h2 {
	font-size: 1.5em;
}

h3 {
	font-size: 1.25em;
}

h4 {
	font-size: 1em;
}

img {
	margin: 0;
	padding: 0;
}

ul, ol {
	margin: .75em 0 .75em 2em;
	padding: 0;
}

p {
	margin: .75em 0;
}

address {
	margin: .75em 0;
	font-style: normal;
}

a {
	text-decoration: underline;
}

a:link {
	color: mediumblue;
}

a:visited {
	color: indigo;
}

a:hover, a:focus, a:active {
	color: crimson;
}

a img {
	border: none;
}

em {
	font-style: italic;
}

strong {
	font-weight: bold;
}

form, fieldset {
	margin: 0;
	padding: 0;
}

form {
	border: none;
}

input, button, select {
	vertical-align: middle;
}


abbr, acronym {
	border-bottom: 1px dotted;
	cursor: help;
}

blockquote {
	margin: .75em 0 .75em 1.2em;
	padding: 0 0 0 .7em;
	border-left: solid 2px #ddd;
}

q {
	font-style: italic;
	quotes: none;
}

cite {
	font-style: italic;
}

q cite, q q {
	font-style: normal
}

blockquote p, li p {
	margin: .5em 0;
}

dl {
	margin: .75em 0;
}

dt {
	font-weight: bold;
	margin: .75em 0 0 0;
}

dd {
	margin: .25em 0 .25em 2em;
}

table {
	border: 1px solid #000;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0;
}

table td, table th {
	border: 1px solid #000;
	padding: 4px;
	text-align: left;
	vertical-align: top;
}
