/*
 *
 * Main styles
 *
 */

body {
  background: #454545 url('../img/background.png') repeat scroll;
}

/*
 *
 * layout
 *
 */

#container {
  background: #f0f0f0;
  width: 600px;                         /* FIXED WIDTH HERE */
  margin: 20px auto 20px auto;
  text-align: center;
  padding: 10px;  /* same width as rounding */
}

#inner-container {
  position: relative; /* just to allow contained element to use position absolute (which will be relative to the nearest positionned element) */
  background: #808080;
  margin: 0;
  padding: 10px 0 10px 0;  /* same width as rounding */
  
  text-align: left;

  /*font-family: garamond;*/
}

#inner-container #header {
  position: relative; /* just to allow contained element to use position absolute (which will be relative to the nearest positionned element) */
  padding: 0px 10px 10px 10px;  /* 0 on corners side */
}

#inner-container #body {
  padding: 10px;
  color: #f0f0f0;
}

#body .part {
  padding: 10px 0 10px 0;
}

#body .left {
  width: 205px;                         /* FIXED WIDTH HERE */
  
  text-align: center;
}

#body .right {
  width: 355px;                         /* FIXED WIDTH HERE */
  float: right;
  margin-bottom: 15px;
}

#body .learnmore {
  position: relative; /* just to allow contained element to use position absolute (which will be relative to the nearest positionned element) */
  padding-bottom: 5px;
  width: 100%;
  display: block;
}

#inner-container #footer {
  padding: 10px 10px 0px 10px;  /* 0 on corners side */
  text-align: center;
}

/* closure sits directly in container, not in inner-container : allows to be displayed "in the rounded border" */
#container #closure {
  font-size: 8pt;
  margin: 5px 0 0 0;
}

/*
 *
 * utilities
 *
 */

.clearfloat {
  clear: both;
}

/*
 *
 * other
 *
 */

ul li {
  font-style: italic;
}

qt {
  font-weight: bold;
}

/*
 *
 * specific items
 *
 */

#logomedo {
  position: absolute;
  right: 10px;
}

#logoqt {
  /*position: absolute;*/
  /*left: 10px;*/
}

#tagline {
  position: absolute;
  right: 5%;
  bottom: 40%;
  
  text-align: center;
  font-weight: bold;
  font-size: 10pt;
}

#tagline fl {
  font-size: 12pt;
}

.icon {
  position: absolute;
  right: 65px;
  top: -15px;
}

/*
 *
 * style reset to make browsers behave the same
 *
 */

h2, h3 {
  margin: 10px 0 10px 0;
}

p {
  margin: 15px 0 15px 0;
}