﻿
/* ***** MENU ***** */

#menu 
{
    font-family: Tahoma, Arial, Helvetica, Sans-Serif;
    background: #fff url(images/menu-fond.png) repeat-x top left;
    float: left;
    width: 200px;
    min-height: 500px;
    _height: 500px;
    padding-top: 10px;
}

#menu h2 
{
    background: #f4f8fb;
    color: #163451;
    font-size: 14px;
    font-weight: normal;
    margin: 10px 0 0 0;
    padding: 3px 0 3px 10px;
}

#menu ul 
{
    background: #fff;
    border-left: 1px solid #e76925;
    border-top: 1px solid #dba58a;
    border-bottom: 1px solid #dba58a;
    margin-bottom: 15px;
}
#menu ul li 
{
    background: none;
    padding: 0;
}

#menu a 
{
    background: #fff url(images/menu-puce.png) no-repeat 0 50%;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 2px 0 2px 10px;
}
#menu a:hover 
{
    background-color: #f6e7df;
}

/* ***** CONTENU ***** */

#contenu 
{
    float: left;
    width: 600px;
    margin-left: 10px;
    padding-bottom: 20px;
}

#contenu h1 
{
    color: #2570b8;
    margin: 20px;
}


/* formulaire de recherche d'opération */
.frmRecherche
{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5D7B9D;
    margin: 10px 0;
}
.frmRecherche th
{
    background: #f4f8fb;
    text-align: left;
    padding: 3px 2px;
}
.frmRecherche td
{
    padding: 3px 2px 10px 2px;
}
.frmRecherche table th, .frmRecherche table td 
{
    padding: 0;
}

/* table "générique", pour chaque ligne titre à gauche contenu à droite */
.tblDetails 
{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #5D7B9D;
    margin: 10px 0;
}
.tblDetails th 
{
    text-align: right;
    width: 30%;
    padding-right: 10px;
}


/* ************************************ MODAL POPUPS ************************************ */


/* jqModal base Styling courtesy of;
	Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
	the Window's z-index value will be set to 3000 by default (via jqModal.js). */
	
.jqmWindow {
    background-color: #fff;
    border: 1px solid black;
    
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    width: 600px;
    margin-left: -300px;
    padding: 12px;
}

.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}