
/* MAIN */

.menu{
  padding: 0px 0px ;
}

/* ELEMENTS */

/* Anchor */
.menu_element{
  display: block;
  padding: 10px 15px ;
  color: white ;
  border-radius: 8px 8px 0px 0px;
  text-shadow: 0px 0px 5px rgba( 0, 0, 0, 0.6 );
}

.menu_element_active{
  /* For now is not used, in future may come in handy */
  text-decoration: none ;
}

.menu_subline_element{
  clear: both;
  height: 7px ;
}

.menu_link{
  text-decoration: none ;
}

/* Span */

.menu_span_left{
  float: left ;
  padding-right: 10px;
}

.menu_span_right{
  float: right ;
}

/* BACKGROUNDS AND TEXT COLOR */

/* About */
.background_about, .background_about_dynamic{
  color: white ;
  background-color: #BE4C39 ;
  transition: all 0.3s linear 0s;
}

.background_about_dynamic:hover{
  background-color: #A43 ;
}

/* Seminars */
.background_seminars, .background_seminars_dynamic{
  color: white ;
  background-color: #4472B9 ;
  transition: all 0.3s linear 0s;
}

.background_seminars_dynamic:hover{
  background-color: #3D67A6 ;
}

/* Thesis */
.background_thesis, .background_thesis_dynamic{
  color: white ;
  background-color: #4CA454 ;
  transition: all 0.3s linear 0s;
}

.background_thesis_dynamic:hover{
  background-color: #44934B ;
}

/* Software */
.background_software, .background_software_dynamic{
  color: white ;
  background-color: #9351A6 ;
  transition: all 0.3s linear 0s;
}

.background_software_dynamic:hover{
  background-color: #844995 ;
}

/* Sites */
.background_sites, .background_sites_dynamic{
  color: white ;
  background-color: #E18728 ;
  transition: all 0.3s linear 0s;
}

.background_sites_dynamic:hover{
  background-color: #D27A1D ;
}

/* Contact */
.background_contact, .background_contact_dynamic{
  color: white ;
  background-color: #8d8d8d ;
  transition: all 0.3s linear 0s;
}

.background_contact_dynamic:hover{
  background-color: #727272 ;
}

