/* --- STYLES DE BASE --- */

/*
Auteur : Nicolas Zengarli
www.ComCassandre.com
Pour : Magali Herbert
Date : 09/2009
*/

/* Page */
html {
    font-size: 100%; /* Ãvite un bug d'IE 6-7. (1) */
}
body {
    margin: 0;
    padding: 0; /* Remettre Ã  zÃ©ro si nÃ©cessaire. */
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size: .8em; /* Ã adapter pour la police choisie. (3) */
    line-height: 1.3; /* Ã adapter au design. (4) */
    color: black;
    background: black;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    margin: .8em 0 .5em 0; /* Rapproche le titre du texte. (5) */
    line-height: 1.2;
    font-weight: bold; /* Valeur par dÃ©faut. (6) */
    font-style: normal;
}
h1 {
    font-size: 1.75em;
}
h2 {
    font-size: 1.2em;
}
h3 {
    font-size: 1.1em;
}
h4 {
    font-size: 1em;
}

h5 {
    font-size: .8em;
}

/* Listes */
ul, ol {
    margin: .75em 0 .75em 32px;
    padding: 0;
}

/* Paragraphes */
p {
    margin: .5em 0; /* Marges plus faibles que par dÃ©faut. (7) */
}
address {
    margin: .75em 0;
    font-style: normal;
}

/* Liens */
a {
    text-decoration: underline;
    font-weight:bold;
}
a:link {
    color:#efcc34;
}
a:visited {
    color: #cba606;
}
a:hover, a:focus, a:active {
    color: crimson;
}
a img{
border:none;
text-decoration:none;	
}

/* Divers Ã©lÃ©ments de type en-ligne (8) */
em {
    font-style: italic;
}
strong {
    font-weight: bold;
}

/* Formulaires */
form, fieldset {
    margin: 0;
    padding: 0;
    border: none;
}
input, button, select {
    vertical-align: middle; /* Solution pb. d'alignement. (9) */
}

/*pour les png*/
img.png {
    background-image: expression(
        this.runtimeStyle.backgroundImage = "none",
        this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
        this.src = "http://www.magaliherbert.com/images/transparent.gif"
    );
}
