/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */

/****
 **** HTML ELEMENT STYLING
 ****/


/** fonts **/
  /*
   * Our font size and line height declarations are based on the following ALA
   * article:
   *   http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   */
  body
  {
    font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
  }

  #page
  {
    /*
     * To use a 12px font size on the page, delete the 14px declarations.
     * to use a 14px font size on the page, delete the 12px declarations.
     */

    /* Use a 12px base font size with a 16px line height */
    font-size: 0.75em; /* 16px x .75 = 12px */
    line-height: 1.333em; /* 12px x 1.333 = 16px */

    /* Use a 14px base font size with a 18px line height */
    /*font-size: 0.875em; /* 16px x .875 = 14px */
    /*line-height: 1.286em; /* 14px x 1.286 = 18px */
  }

  body, caption, th, td, input, textarea, select, option, legend, fieldset
  {
    /* The following font family declarations are based on the Microsoft core
     * web fonts which are common fonts available on most computer systems. The
     * Bitstream Vera fonts are commonly available on Linux systems where the MS
     * fonts are less common.
     *
     * A user's web browser will look at the comma-separated list and will
     * attempt to use each font in turn until it finds one that is available
     * on the user's computer. The final "generic" font (sans-serif or serif)
     * hints at what type of font to use if the web browser doesn't find any
     * of the fonts in the list.

    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;

     */

    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
  }

  pre, code
  {
    font-size: 1.1em; /* Monospace fonts can be hard to read */
    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
  }

/* Titre */
#content-header h1{color:#ed7802;font:1.8em Verdana;margin:0;padding:0;margin-bottom:10px; border-bottom:0px solid #ed7802;}

#content-area h2, #content-area h3, #content-area h4, #content-area h5{margin:5px 0;}
#content-area h2{font:1.1em Verdana;font-weight:bold;color:#504f4f;padding-left:16px;background:url(../images/ico/puce_h2.png) no-repeat 0 center;}
#content-area h3{font:1em Verdana;font-weight:bold;color:#333333;padding-left:10px;background:url(../images/ico/puce_h3.png) no-repeat 0 12px;}
#content-area h4{font-size:.9em;color:#605F5E;padding-left:10px;background:url(../images/ico/puce_h4.png) no-repeat 0 center;}
#content-area h5{font-size:.75em;color:#605f5e;border-left:2px solid #605f5e;padding-left:5px;}

/* address */
#content-area address{font-size:1em;padding:10px;margin:5px 0 15px 0;background:#000;color:#fff;}
#content-area address a{color:#fff;text-decoration:underline;}

/** block-level elements **/
  p, ul, ol, dl, pre, table, fieldset, blockquote
  {
    margin: 1em 0;
	line-height:17px;
  }

/** lists **/
  /* standardize list item indentation */
  ul, ol
  {
    margin-left: 0;
    padding-left: 2em;
  }

  .block ul, /* Drupal overrides */
  .item-list ul
  {
    margin: 1em 0;
    padding: 0 0 0 2em;
  }

  ul ul, ul ol,
  ol ol, ol ul,
  .block ul ul, .block ul ol,
  .block ol ol, .block ol ul,
  .item-list ul ul, .item-list ul ol,
  .item-list ol ol, .item-list ol ul
  {
    margin: 0;
  }

  li
  {
    margin: 0;
    padding: 0;
  }

  .item-list ul li /* Drupal override */
  {
    margin: 0;
    padding: 0;
    list-style: inherit;
  }

  ul.menu li, /* Drupal override */
  li.expanded,
  li.collapsed,
  li.leaf
  {
    margin: 0;
    padding: 0;
  }

  ul          { list-style-type: disc; }
  ul ul       { list-style-type: circle; }
  ul ul ul    { list-style-type: square; }
  ul ul ul ul { list-style-type: circle; }
  ol          { list-style-type: decimal; }
  ol ol       { list-style-type: lower-alpha; }
  ol ol ol    { list-style-type: decimal; }

  dt
  {
    margin: 0;
    padding: 0;
  }

  dd
  {
    margin: 0 0 0 2em;
    padding: 0;
  }

/** links **/
  /* The order of link states are based on Eric Meyer's article:
   * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
   */
  a:link
  {
  }

  a:visited
  {
  }

  a:hover,
  a:focus
  {
  }

  a:active
  {
  }

/** tables **/
  /* Override Drupal default CSS */
  table
  {
    border-collapse: collapse;
    /* width: 100%; */ /* Prevent cramped-looking tables */
  }

  th,
  thead th,
  tbody th
  {
    text-align: left;
    padding-right: 0;
    border-bottom: none;
  }

  tbody
  {
    border-top: none;
  }

/** abbreviations **/
  abbr
  {
    border-bottom: 1px dotted #666;
    cursor: help;
    white-space: nowrap;
  }

  /* Date-based "abbreviations" show computer-friendly timestamps which are not
     human-friendly. */
  abbr.created
  {
    border: none;
    cursor: auto;
    white-space: normal;
  }

/** images **/
  img
  {
    border: 0;
  }

/** horizontal rules **/
  hr
  {
    height: 1px;
    border: 1px solid #666;
  }

/** forms **/
  form
  {
    margin: 0;
    padding: 0;
  }

  fieldset
  {
    margin: 1em 0;
    padding: 0.5em;
  }

/* Class Editeur Wysiwyg - Tiny MCE */
.txt_tres_petit{font-size:0.75em;}
.txt_petit{font-size:0.85em;}
.txt_normal{font-size:1em;}
.txt_gros{font-size:1.15em;}
.txt_tres_gros{font-size:1.24em;}
.table_avec_bordure{border:1px solid #cccccc;}
.table_avec_quadrillage td{border:1px solid #cccccc;padding:0px 5px;}
img.img_float_left{float:left;margin-right:10px;}
img.img_float_right{float:right;margin-left:10px;}
.texte_orange{color:#e27304;}


/*
	FORMULAIRE : Demande de création d'une application Iphone 
*/
#webform-client-form-75{border-top:1px dotted #41403F;padding:10px 0 0;}
#webform-client-form-75 .form-item, #webform-client-form-75 .form-radios{
	margin:2;
}

/* Societe */
#webform-component-societe #edit-submitted-societe{float:left;}
#webform-component-societe .description{float:left;margin-left:10px;} 
#webform-component-societe .description p{margin:0;line-height:22px;} 
/* Fonction */
#webform-component-fonction{clear:both;margin-bottom:20px;padding:0 0 5px;border-bottom:1px solid #b9b8b6;}


/* Civilite */
#webform-component-civilite{}
	#edit-submitted-civilite-Mme-wrapper,
	#edit-submitted-civilite-Mlle-wrapper,
	#edit-submitted-civilite-M.-wrapper
	{float:left;margin:0 5px 0 0;}



/* Nom, Prénom */
#webform-component-nom{clear:both;float:left;margin-right:35px;}
#webform-component-prenom{float:left;}

/* Courriel, tel */
#webform-component-mail{clear:both;float:left;margin-right:35px;}
#webform-component-tel{float:left;margin-bottom:10px;}

/* Rue */
#webform-component-rue{clear:both;padding:5px 0 0;border-top:1px solid #b9b8b6;}
/* Complément */
#webform-component-complement{}

/* Code postal, ville */
#webform-component-code_postale{float:left;}
#webform-component-ville{float:left;margin:0 0 10px 20px;}

/* Message */
#webform-component-message{clear:both;margin-top:20px;padding:5px 0 0;border-top:1px solid #b9b8b6;}



/* fomulaire les itinéraires sur votre territoire ! */
#webform-component-organisme_que_vous_representez{clear:both;}