/* 
    Document   : css
    Created on : 13 nov. 2011, 19:50:49
    Author     : Ezëniel
    Last update: stopped counting
    Description:
        Purpose of the stylesheet follows.

   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

/*WHOLE PAGE DIRECTIVES*/
root {
    display:block;
}
body {
    background-color:#D6E6DE;
}

/*TAGS*/
a {
    text-decoration:none;
    color:#925800;
}
a:hover {
    text-decoration:underline;
}
a:active {
    font-style:italic;
}
a img {
    border:0;
}

em {
    font-style: italic;
}

footer {
    font-size:9px;
    color:#838383;
    margin-left:200px;
    font-family:"Trebuchet MS", "Time New Roman", arial;
    text-align:center;
}

nav {
    width:200px;
    background-color:#9BA0A4;
    border:ridge 5px #ddd;
    text-align:center;
    float:left;
}

h2 {
    font-size:40px;
    font-family: "Lucida Calligraphy", "Script MT Bold", Verdana, arial;
    text-align:center;
}
h3 {
    margin-bottom:3px;
}
h4 {
    font-size:18px;
}
h5 {
    color:grey;
    font-size:11px;
    margin-top:3px;
}

strong {
    font-weight: bold;
}

table {
    border-collapse:collapse;
}

/*CLASSES*/
.animationDarkBackGroundFadeIn {
    animation: darkedBackgroundFadeIn 0.5s linear 1 forwards;
}

.bold {
    font-weight:bold;
}

.center {
    text-align:center;
}

.centeredTable {
    margin: 0px auto; 
}

.content {
    margin-left: 230px;
    margin-right:40px;
    text-align:justify;
}

.contentCentered { 
   margin-left: 230px;
   margin-right:40px;
   text-align:center; /*autrement il y a conflit entre le justify et le center*/
}

.course {
   margin-left:30px; 
   background-color:#DEEBE4;
   border:outset 1px;
}
.course th {
    text-align:left;
    margin-bottom: 2px;
    margin-top: 2px;
    padding-left:10px;
    padding-right:7px;
    width:160px;
}
.course td {
    text-align:left;
    margin-bottom: 2px;
    margin-top: 2px;
    padding-right:10px;
    padding-left:7px;
}
.courseListElement:before {
  content: "\00a0- ";
}
.courseListElement:nth-child(1):before {
    content: "";
}
.cursor-click {
    cursor:pointer;
}
.cursor-zoom {
    cursor:zoom-in;
}

.followOnFb {
    height:25px;
    border: solid 1px #4267b2;
    background-color: #f5f6f7;
    text-decoration:none;
    margin: 17px;
}
.followOnFb:hover {
    font-style: normal;
}
.followOnFbLink {
    color: #4267b2;
}
.followOnFbText {
    vertical-align: middle;
    font-size: 17px;
    font-family: Verdana;
}
.followOnFbLink:hover {
    text-decoration:none;
    font-style:normal;
}
.followOnFb .fbLogo {
    height:25px;
    float:left;
}

.fullScreenImage {
   height:95%;
   position: relative;
   top: 2.5%;
}
.fullScreenImageCloseAnimation {
    background: rgba(0,0,0,0.8);
    animation: fadeOut 0.5s linear 1 forwards;
}

.gallery {
    display:flex;
    justify-content: space-around;
}

.hidden {
    display:none;
}

.h2popup {
    font-size:23px;
    font-family: "Lucida Calligraphy", "Script MT Bold", Verdana, arial;
    text-align:center;
}

.imgDesc {
    font-size: 13px;
    font-style:italic;
    color: #666666;
}

.navElement {
    margin:5px;
    margin-bottom:8px;
    margin-top:8px;
    padding:2px;
    font-size:19px;
    border:outset 2px #ddd;
    background-color:#BFC3C5;
    font-family:"Trebuchet MS", arial;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.navElement a {
    text-decoration:none;
    color:#b0823d;
}
.navElement a:hover{
    font-style:normal;
}

.news {
    padding:5px 30px;
}

.no-margin {
    margin: 0px;
}

.submit {
    background-color: #f0f0f0;
    padding:4px 8px;
    font-size:12px;
    font-weight:bold;
    font-family:Tahoma,sans-serif;
    cursor:pointer;
    -moz-border-radius:15px 15px;
    -webkit-border-radius:15px 15px;
    border-radius:15px 15px;
}

/*IDS*/
#alertMess {
    padding:10px 30px;
    margin-left:40px; 
    margin-right:40px; 
    background-color:#DEEBE4;
    border:outset 4px;
}

#banner {
    border: ridge 5px #ddd;
}

#course-furnitures table {
    text-align: center;
}

#course-furnitures table ul {
    padding:0;
    list-style-position: inside;
}

#course-furnitures thead th:nth-child(1) {
    border: none;
}

#course-furnitures th, #course-furnitures td {
    border:1px solid;
    padding: 1% 0.3%;
}

#coursesList {
    display:flex;
    justify-content: center;
    list-style-type: none;
    flex-wrap: wrap;
}

#closeFullScreenImageButton{
    background: none;
    border: none;
    position: fixed;
    top: 0.25%;
    right: 0.05%;
}

#embededPDFMof{
    width:100%;
    text-align:center;
    height:500px;
}

#fullScreenImageDiv{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow:auto;
}

#window {
    width:1200px;
    margin-left:auto;
    margin-right:auto;
}

/*ANIMATIONS*/
@keyframes darkedBackgroundFadeIn {
  from {
      background: rgba(0,0,0,0.0);
  }
  to {
      background: rgba(0,0,0,0.8);
  }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        filter:Alpha(opacity=100);
    }
    to {
        opacity: 0;
        filter:Alpha(opacity=0)
    }
}

/*RESPONSIVES*/
@media only screen and (max-width: 1000px){
    .fullScreenImage{
        top:25px; /*To prevent the closing button to be hide*/
    }
}
