/* http://www.w3schools.com/HTML/html_colornames.asp */
/* http://www.pompage.net/pompe/csspratique/ */
/* http://www.siteduzero.com/tutoriel-3-13661-liste-des-balises-xhtml.html : so useful */
/* http://www.sovavsiti.cz/css/horizontal_menu.html */
/* http://webdesign.about.com/od/beginningcss/a/style_hr_tag.htm */
/* http://stopdesign.com/archive/2003/03/07/replace-text.html */

body {
  width: 900px;
  margin: auto;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 7px;
  font-family: 'Segoe UI', 'Trebuchet MS', Verdana, Arial, sans-serif;
  border: 3px orange outset;
  background-color: #FDF5E6; /* OldLace */
}

a img {
  border: 0;
}

#logo {
  height: 200px;
  width: 300px;
  margin: auto;
  background: url('images/logo.png');
}
#logo span {
  display: none;
}

#menu {
  list-style: none;
  margin: auto;
  text-align: center;
  font-size: 1.3em;
  font-variant: small-caps;
}
#menu li {
  display: inline;
  margin-right: 40px;
}
#menu li a {
  text-decoration: none;
}
#menu li a:hover {
  border-bottom: 1px dashed
}

h1 {
  text-align: center;
}

h2 {
  border-bottom: 1px dashed black;
}

.hr_75 {
  width: 75%;
  color: black;
  background-color: black;
  height: 1px;
  border: none;
}

p {
  padding-left: 10px;
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
}

.screen {
  float: left;
  text-align: center;
}
.screen img {
  max-height: 250px;
  max-width: 250px;
}

#copy {
  text-align: center;
}
#valid {
 text-align: right;
}

#valid img {
  border: none;
  width: 88px;
  height: 31px
}