/**
 *  Molennet Home Page Cascading Style Sheet
 *
 *  Author: Q.R. Vermeulen
 *
 *  Copyright Q.R.Vermeulen 2020
 *  All rights reserved.
 *
 **/

/** Import web-based fonts to be used on this page
 *
 *  NOTE: The import of the fonts should be the first thing on the CSS sheet!
 *  Otherwise the fonts will not work.
 *
 **/
@import url(http://fonts.googleapis.com/css?family=Quattrocento+Sans);
@import url(http://fonts.googleapis.com/css?family=Oxygen);
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Quattrocento);
@import url(http://fonts.googleapis.com/css?family=Noto+Serif);

/**
 *  Browser CSS reset
 *
 *  Reset the default browser values for CSS properties to prevent differences in display
 *  between different browsers, like Chrome, Internet Explorer, Firefox, Opera,
 *  Safari etc.
 *
 *  Although some differences may still show, the script is meant to minimize the chances
 *  of deviations in output between different web browsers as much as possible.
 **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after,
nav:before, nav:after {
    content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/** CSS definitions **/

/**
 *  Logo
 */
.logo {
  float: left;
}

/**
 *  Navigation
 */
nav::before {
  content='';
  color: #0099ff;
}

nav {
  background-color: #000044;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

ul li {
  display: inline-block;
  margin-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

nav a {
  text-decoration: none;
  color: #0099ff;
}

nav a:hover {
  text-decoration: none;
  border-top: solid #0099ff 2px;
  border-bottom: solid #0099ff 2px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.lingua ul {
  display: inline-block;
}

.current {
  text-decoration: none;
  border-top: solid #0099ff 2px;
  border-bottom: solid #0099ff 2px;
}

/**
 *  body tag
 *
 *  The body tag contains the default font and colors.
 *  These defaults will be used when an element has no CSS specified.
 **/
body {
  background-color: #000011;
  color: #FFFFFF;
  font-family: "Open Sans", "Quattrocento Sans", "MS Sans Serif", sans-serif;
  font-size: 100%;
  font-size: medium;
  margin-left: 20px;
  Margin-right: 20px;
}

/**
 *  Regular text styles
 *
 *  These styles apply to all kinds of elements and set the styling of the text.
 **/
div.canvas {
  margin-left: 10px;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

div.topic {
  display: block;
  width: 100%;
}

div.topic::after {
    clear: both;
}

div.image {
  float: left;
  width: 20%;
}
div.content {
  float: right;
  width: 80%;

}

h1 {
  font-size: xx-large;
  line-height: 1.5em;
}

h1.PageTitle {
  font-family: "Open Sans", "Quattrocento Sans", "MS Sans Serif", sans-serif;
  font-size: xx-large;
  line-height: 2.5em;
  text-decoration: underline #0099ff;
}

h2 {
  font-family: "Open Sans", "Quattrocento Sans", "MS Sans Serif", sans-serif;
  font-size: x-large;
  line-height: 1.5em;
  text-decoration: underline #0099ff;
}

h3 {
  font-family: "Open Sans", "Quattrocento Sans", "MS Sans Serif", sans-serif;
  font-size: large;
  line-height: 1.5em;
  text-decoration: underline #0099ff;
}

p {
  font-family: "Noto Serif", "Quattrocento", Georgia, "Times New Roman", "Times", serif;
  font-size: medium;
  line-height: 1.6em;
  padding-bottom: 1em;
}

p.footer {
  margin-left: 10px;
  line-height: 1.6em;
  padding-bottom: 0;
}

a {
  text-decoration: none;
  color: #CCCCCC;
}

a:hover {
  text-decoration: underline solid #0099ff;
  color: #FFFFFF;
}

a:focus {
  text-decoration: underline dotted #0099ff;
  color: #EEEEEE;
  outline: none;
}

footer::before {
  clear: both;
}
