/* --------------------------------

Primary style

-------------------------------- */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 72.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  color: #000000;
  background-color: #ffffff;
}

a:link {
  color: #004698;
}

a:visited {
  color: #001c46;
}

a:focus {
  outline: 0;
}


h1 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
  line-height: normal;
  color: #ffffff;
  background: #004698;
  padding: 16px 15px 15px 15px;
}

h2 {
  font-size: 30px;
  font-weight: bold;
  line-height: normal;
  color: #ffffff;
  background: #004698;
  padding: 15px 15px 15px 30px;
}

h3 {
  font-size: 30px;
  line-height: normal;
  color: #ffffff;
  background: #001c46;
  padding: 15px 15px 15px 30px;
}

table, th, td {
  font-family: monospace;
  border: 1px dashed black;
  padding: 15px;
}


/* --------------------------------

Logo - Top of the page

-------------------------------- */

.logo {
  background: white;
  text-align: center;
  padding-top: 3.3em;
  padding-bottom: 1em;
}

.logo img {
  display: block;
  margin: auto;
  max-width: 100%;
}


/* --------------------------------

Lang selector

-------------------------------- */

.lang-selector {
  padding: 20px 5px 20px 28px;
  line-height: 25px;
}


/* --------------------------------

Main content

-------------------------------- */

.main-content p {
  line-height: 1.6;
  margin: 1.5em;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  color: #000000;
  word-wrap: break-word;
}


/* --------------------------------

Other Web sites

-------------------------------- */

.other ul  {
  margin: 1.5em;
  list-style: disc;
  padding-left: 1em;
}



/* --------------------------------

Bullet points

-------------------------------- */

.list ul  {
  line-height: 1.6;
  margin: 1.5em ;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  color: #000000;
  list-style: square;
  padding-left: 1.5em;
}

.list ol  {
  line-height: 1.6;
  margin: 1.5em ;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
  color: #000000;
  list-style: decimal;
  padding-left: 1.5em;
}

.list li {
  padding-bottom: 0.5em;
  word-wrap: break-word;
}


/* --------------------------------

Announcements

-------------------------------- */

.announce {
  display: block;
  margin: 1.5em;
}

.announce-item {
  width: 100%;
  display: block;
}

.announce-item li {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
}

/* --------------------------------

Table for events

-------------------------------- */

.event-content {
  background: #eeeeee;

}

.event-content li {
  display: block;
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}

.event-content li:nth-child(odd) {
  background-color: #eeeeee;
}

.event-content li:nth-child(even) {
  background-color: #ffffff;
}

.event-content li p {
  font-size: 1.6rem;
  color: #000000;
}


/* --------------------------------

Table for resources

-------------------------------- */

.tabs {
  position: relative;
  width: 90%;
  margin: 2em auto;
  border: 1px solid #000000;
}

.tabs-content {
  background: #ffffff;
}

.tabs-content li {
  display: block;
}

.tabs-content li p {
  color: #000000;
  margin-bottom: 2em;
}

.tabs-title {
  text-align: center;
  font-weight: bold;
}


/* --------------------------------

Badge FP - responsive

-------------------------------- */

.badge {

  background: white;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 15px;
  padding-bottom: 5px;
}

@media screen and (min-width: 1215px) {

    .badge {
    float: right;
    margin-left: auto;
    margin-right: auto;
    width: 20%;
  }
}

.badge img {
   max-width: 100%;
}


/* --------------------------------

Image Thumbnail - responsive

-------------------------------- */

.thumb {
  background: white;
}

.thumb img {
   width: 250px;
   margin-left: 1.5em;
   max-width: 100%;
   margin-right: 2.5em;
}

@media screen and (min-width: 920px) {

    .thumb {
    padding-bottom: 1.5em;
  }

    .thumb img {
    float: left;
  }

    .thumb p {
    padding-top: 38px;
  }

}


/* --------------------------------

Menu

-------------------------------- */

.burger {
  display: none;
  background: url(../img/menu.svg) no-repeat;
  background-size: 45px 45px;
  border: none;
  text-decoration: none;
  position: fixed;
  width: 45px;
  height: 45px;
  outline: 0;
  cursor: pointer;
  top: 2%;
  right: 2%;
  z-index: 2;
}

.burger::-moz-focus-inner {
  border: 0;
}

.navigation {
  display: none;
  position: fixed;
  background: #004698;
  width: 33%;
  height: 100%;
  top: 0;
  right:0;
  max-height: 100%;
  z-index: 1;
  overflow-y: auto;
  box-shadow: 3px 0 10px rgba(0,0,0,0.2);
}

@media screen and (max-width: 720px) {

    .navigation {
    width: 66%;
  }
}

.navigation ul {
  list-style-type: none;
  padding: 0;
}

.navigation ul li {
  color: #004698;
  display: block;
  font-size: 1em;
  line-height: 2em;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}

.navigation ul li a {
  color: #ffffff;
  display: block;
  font-size: 1em;
  line-height: 1em;
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  text-decoration: none;
  text-align: left;
  max-width: 85%;
}
