/* https://www.w3schools.com/cssref/css_selectors.asp */
/* 2018-07-11 a */

/* tag -------------------------------------------------------------------------------- */

html {}

body {
	/*background-color:rgb(168, 168, 168);*/
	/*color:rgb(248, 248, 248);*/
	/*text-align:center;*/
	font-family:tahoma, arial, helvetica, sans-serif;
	font-size:1em; /* standard is 16px and is equal to 1em */
}

input, select, textarea, button { // Because these tags don't inherit automatically
	font-family: inherit;
	font-size: inherit;
}

a {
	color:Navy;
	text-decoration:none;
}

a:hover {
	text-decoration:underline;
}

/* class ------------------------------------------------------------------------------ */

.classSample {
}

/* id --------------------------------------------------------------------------------- */

#defaultBodyBackground {
}

#devBodyBackground {
	background-image: url('../img/dev.png');
	background-attachment: fixed;
	background-position: center;
}

#testBodyBackground {
	background-image: url('../img/test.png');
	background-attachment: fixed;
	background-position: center;
}

#underConstructionImage {
	width: 100%;
	height: auto;
}
