/*
 * style.css
 *
 * Stylesheet for GLiP Project's website
 *
 * 2010 (c) Florent Matignon
 */

body
{
  margin: 15px;
  background-color: #444455;
  font-family: sans-serif;
}

/* Header styles */
#header
{
  background-color: #dddddd;
  margin-bottom: 15px;
}

#header-banner
{
  height: 120px;
  clear: both;
}

#header-logo
{
  width: 100px;
  height: 100px;
  float: left;

  margin: 10px;
}

#title-container
{
  height: 120px;
  width: 450px;

  position: relative;
  top: 10px;
  left: 50px;
}

#title
{
  font-size: 3em;
  font-weight: bold;
}

#subtitle
{
  position: relative;
  left: 70px;
  top: 10px;

  font-size: large;
  font-style: italic;
  font-family: serif;
}

#greetings-card
{
  float: right;
  margin: 10px;
}

.greetings-large
{
  width: 155px;
  height: 155px;
}

.greetings-small
{
  width: 100px;
  height: 100px;
}

#menu
{
  height:50px;
  /* As far as menu is handled through JS,
   * JS must be activated to see it.
   * So menu is displayed by JS.
   */
  display: none;
}

.menu-button
{
  width: 100px;
  height: 60px;
  font-size: small;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

#menu-news
{
  height: 40px;
  width: 450px;
  float: right;

  padding-right: 15px;

  text-align: right;
  font-size: small;
}

/* Menu buttons positions */
#btn1
{
  position: relative;
  left: 30px;
}

#btn2
{
  position: relative;
  left: 150px;
  top: -60px;
}

#btn3
{
  position: relative;
  left: 270px;
  top: -120px;
}

#btn4
{
  position: relative;
  left: 390px;
  top: -180px;
}

.menu-button:hover
{
  font-style: italic;
}

.menu-button a
{
  text-decoration: none;
  color: black;
}

/* Content styles */
#content-container
{
  clear: both;
  background-color: #dddddd;
  margin-bottom: 15px;
}

#content
{
  padding-left: 15px;
  padding-right: 15px;
}

#content h1
{
  text-align: center;
}

#content h2
{
  border-bottom: 2px solid black;
}

#content h3
{
  font-weight: normal;
  border-bottom: 1px solid black;
  padding-left: 10px;
}

#content h4
{
  font-weight: normal;
  border-bottom: 1px dashed black;
  padding-left: 20px;
}

#content h5
{
  font-weight: normal;
  border-bottom: 1px dotted black;
  padding-left: 30px;
}

#content p
{
  font-size: small;
}

#content ul
{
  font-size: small;
}

.img-container
{
  padding-left: 50px;
  height: 320px;
}

.img-1
{
  height: 320px;
  width: 300px;
}

.img-2
{
  height: 320px;
  width: 300px;

  position: relative;
  top: -320px;
  left: 350px;
}

.img-1 img
{
  width: 300px;
}

.img-2 img
{
  width: 300px;
}

.img-legend
{
  text-align: center;
  font-style: italic;
  font-size: x-small;
}

/* Footer style */
#footer
{
  background-color: #dddddd;
  height: 90px;
}

#footer-langs
{
  float: left;
  padding-left: 15px;
  /* As far as langs are handled through JS,
   * JS must be activated to see flags.
   * So there are displayed by JS.
   */
  display: none;
}

#footer-langs img
{
  cursor: pointer;
}

#footer-logo
{
  width: 50px;
  height: 50px;
  float:right;

  margin: 10px;

  background-color: #dddddd;
}

#footer img
{
  border: none;
}

#footer-text
{
  position: relative;
  top: 45px;

  font-size: 0.7em;
  font-style: italic;
  text-align: right;
}

#validation
{
  text-align: center;
  font-size: x-small;
  margin: 5px;
}

#validation a
{
  text-decoration: none;
  color: black;
}

#validation a:hover
{
  text-decoration: underline;
}

/*
 * Rounded corners
 */
.rcorner-t
{
  background: url("../images/corner-topright.png") no-repeat top right;
  height: 10px;
  clear: both;
}

.rcorner-t div
{
  background: url("../images/corner-topleft.png") no-repeat top left;
  height: 10px;
  clear: both;
}

.rcorner-b
{
  background: url("../images/corner-bottomright.png") no-repeat bottom right;
  height: 10px;
  clear: both;
}

.rcorner-b div
{
  background: url("../images/corner-bottomleft.png") no-repeat bottom left;
  height: 10px;
  clear: both;
}

/*
 * Rounded borders
 */
.rborder-t
{
  background: url("../images/dot.png") repeat-x top left;
}

.rborder-l
{
  background: url("../images/dot.png") repeat-y top left;
  height: 50px;
}

.rborder-r
{
  background: url("../images/dot.png") repeat-y top right;
  height: 50px;
}

.rborder-tl
{
  background: url("../images/border-topleft.png") no-repeat top left;
}

.rborder-tr
{
  background: url("../images/border-topright.png") no-repeat top right;
  padding: 10px;
} 

