/*
CSS RESET
http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License:  none (public domain)
 */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block;
}
html{
    height:100%;
    background-color:#424F71;
}
body {
    line-height: 1;
    min-height: 100%;
    background-color:#424F71;
}

ol,ul {
    list-style: none;
}

blockquote,q {
    quotes: none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
body {
    font-family: sans-serif;
    background-color: #323B55;
    background-image: -webkit-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -moz-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -o-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: -ms-linear-gradient(bottom, #323B55 0%, #424F71 100%);
    background-image: linear-gradient(bottom, #323B55 0%, #424F71 100%);
}
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
#titre{
   font-weight:bold;
   font-family:Arial;
   font-size:28px;
   color:#FFF;
   width:300px;
   top:50px;
   position: absolute;
   left: 0;
   right: 0;
   margin-left: auto;
   margin-right: auto;
   text-shadow: 4px 4px 2px rgba(150, 150, 150, 1);
}
#sidebar{
   float:left;
   width:300px;
   height:500px;
   margin:0px 20px 0 20px;

   font-size: 16px;
   color: #444;
   outline: none;
   border: 1px solid rgba(0, 0, 0, .49);

   padding:20px;

   -webkit-background-clip: padding-box;
   -moz-background-clip: padding-box;
   background-clip: padding-box;
   border-radius: 6px;
   background-color: #eef1d6;
   background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #eef1d6 100%);
   background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #eef1d6 100%);
   background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #eef1d6 100%);
   background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #eef1d6 100%);
   background-image: linear-gradient(bottom, #FFFFFF 0%, #eef1d6 100%);

   -webkit-box-shadow: inset 0px 2px 0px #d9d9d9;
   box-shadow: inset 0px 2px 0px #d9d9d9;

   -webkit-transition: all .1s ease-in-out;
   -moz-transition: all .1s ease-in-out;
   -o-transition: all .1s ease-in-out;
   -ms-transition: all .1s ease-in-out;
   transition: all .1s ease-in-out;

   box-shadow: -2px 3px 7px 2px rgba(0, 0, 0, 0.7);
}
#sidebar ul li{
   height:50px;
   width: 100%;
   margin-bottom:10px;
   cursor:pointer;
   list-style: url(../images/arrow.png);
   border-radius: 6px;
   line-height:50px;
   padding-left:10px;
}
#sidebar ul li:hover,.selected{
   background-color:#424F71;
   color:#FFF;
}
#main{
   margin-top: 120px;
   width: 100px;
   margin-left: 340px;
   box-shadow: -2px 3px 7px 2px rgba(0, 0, 0, 0.7);
   border-radius: 6px;
   background-color: #323B55;
   background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
   background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
   background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
   background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
   background-image: linear-gradient(bottom, #FFFFFF 0%, #F2F2F2 100%);
   border: 1px solid rgba(0, 0, 0, .49);

   padding:20px;
   font-size: 16px;
   color: #444;

   overflow-y:auto;
}
#logoAM{
   width:142px;
   height:84px;
   overflow:hidden;
   position:absolute;
   top:20px;
   left:20px;
   background-image: url(../images/am.png);
   color:#a1c526;
   font-family: Arial;
   font-size:8pt;
   font-weight:bold;
   text-align: center;
   padding-top:60px;
}

.info{
   width:90%;
   margin-left:20px;
   margin-right:20px;
   margin-bottom:10px;
   border: 1px rgb(50, 49, 117) solid;
   border-radius: 6px;
   padding:20px;
   cursor:pointer;
   background-color:#FFF;
   position:relative;
}
.infoDate{
   float:right;
   font-size:12px;
}
.infoDate span,.infoComplements span{
   font-weight:bold;
   color:#536FAD;
}
.infoTitre{
   font-weight:bold;
   color:#536FAD;
}
.articleIMG{
   float:left;
   padding-top: 15px;
   padding-bottom: 15px;
   padding-right:15px;
}
.infoTheme{
   color:#6BA2F3;
   padding-bottom:15px;
}
.infoComplements{
   position:absolute;
   right:50px;
   top:50px;
   color:#536FAD;
}
.infoComplements img{
   vertical-align:middle;
   margin-bottom:5px;
}
#session{
    position:absolute;
    right:100px;
    top:10px;
    font-size:14px;
    color:#FFF;
}
#session img{
    border:none;
    vertical-align: middle;
}
#session a{
   color:#FFF;
   font-size:14px;
   text-decoration:none;
}
#session .partenaireCategorie{
    color:#6BA2F3;
}
#frmInfo{
    background-color:#c3c0c0;
    padding:10px;
    margin:5px;
    border-radius:5px;
    color:#000;
}
