/* Start of CMSMS style sheet 'Print' */
/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}

/* This affects every tag */
* {
border:0 !important; /* again no borders on printouts */
}

/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
.accessibility,
.noprint
 {
display:none !important; 
}

/* 
remove all width constraints from content area
*/
div.titre,
div.col2 {
display:block !important;
width:100% !important;
border:0 !important;
padding:1em !important;
margin:0 !important;
position:relative !important;
float:none !important;
}

/* hide everything else! */
div#logo,
div.ariane,
div.col1,
div#footer,
div#menu_1_cont,
div.image_page
{
   display: none !important;
}

img {
float:none !important; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

.titre h1, .titre_mid *{
text-align:left !important;
padding:0 !important;
margin:0 !important;
text-indent:0 !important;
}

td{
vertical-align:top !important;
}


  .sIFR-flash {
    display    : none !important;
    height     : 0;
    width      : 0;
    position   : absolute;
    overflow   : hidden;
  }
  
  .sIFR-alternate {
    visibility : visible !important;
    display    : block   !important;
    position   : static  !important;
    left       : auto    !important;
    top        : auto    !important;
    width      : auto    !important;
    height     : auto    !important;
  }
/* End of 'Print' */

