/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #00CCFF;
  color: black;
  font-family: Verdana;
}

#navigationBar {
  /*position: relative;
  display: block;*/
  padding: 10px 15px;
  border : solid red 0px;
  float: left;
  width: 800px;
  height: 50px;
  padding: 10px;
}  

#navigationBar > ul {
/*  width: 400px;
  height: 40px;*/
  padding : 0px;
  margin : 0px;
}

li.navig{
  background-color : #33CC33;
  color : #FFB870;
  width : 350px;
  display : inline;
  padding : 10px 0px;
  border-radius : 4px 4px 0 0;
}

li.navig:hover{
  background-color : #00A3CC;
  
}

li.navig a:hover {
  color : white;
  font-size : 1.1em;
}

li.navig a {
/*  color : white;*/
  padding : 10px 20px;
}

#selectedMenuElement {
  background-color : #E0FFA3;
  color : #00A3CC;
}

#leftSideBar {
  width : 150px;
  height : 400px;
  float : left;
}

#site {
  display: inline-block;
  border : solid 1px;
  width : 1000px;
  height : 620px;
  float : left;
}

#site > p {
  padding : 10px 0px 0px 0px;
}

header {
    background-color : #0099FF;
    color : #CC9900;
    clear:both;
    text-align:center;
    padding:5px;	 	 
}

footer {
    background-color : #0099FF;
    color : #CC9900;
    clear:both;
    text-align:center;
    padding:5px;	 	 
}

.leftSideBarImage {
    padding : 10px;
    width: 130px;
}

#leftSideBar > hr {
    padding : 0px 5px;
}

figure {
  margin : 0px;
}

.formClass {
  margin: 10px;
}

.formClass > p {
  margin: 0px;  
}

th {
  vertical-align:top;
  width: 120px;
}

table, th, td {
/*  border: 1px solid black;*/
  vertical-align:top;
}

.etel {
  width: 150px;
}

.ureselem {
  height: 1em;
}

.etelleiras {
  height: 2em;
  vertical-align: top;
}
  


                        
    