/*---------------------------------------------------------------------------*/

/*

    Module:    print.css

    Author:    Francois Schiettecatte (FS Consulting, LLC.)

    Creation Date:    2 June 201

    Purpose:    This is the CSS for printing.

*/


/*---------------------------------------------------------------------------*/

/*
** Basic features
*/

* {    
    margin: 0;
    padding: 0;
}

html {
    display: block;
}

body {
    font-family: 'Lucida Sans', 'Lucida Grande', 'Gill Sans', Arial, Helvetica, Verdana, Geneva, sans-serif;
    font-size: 100%;
    color: black;
    background-color: white;
}

p {
    margin-bottom: 0.5em;
}

a {
    color: black;
    text-decoration: none;
}

a:visited {
    color: black;
    text-decoration: none;
}


/*---------------------------------------------------------------------------*/

/*
** Body features
*/

#body {
    float: left;
    width: 100%;
    height: 100%;
}


/*---------------------------------------------------------------------------*/

/*
** Header features (part of body)
*/

#header {
    display: none;
}


/*---------------------------------------------------------------------------*/

/*
** Menu features (part of header)
*/

#menu {
    display: none;
}


/*---------------------------------------------------------------------------*/

/*
** Search features (part of header, optional)
*/

#search {
    display: none;
}


/*---------------------------------------------------------------------------*/

/*
** Content features (part of body)
*/

#content {
    margin: 10px 20px; 
    padding: 0px;
}


/*---------------------------------------------------------------------------*/

/*
** Footer features (part of body)
*/

#footer {
}


/*---------------------------------------------------------------------------*/


/*
** Other elements that we hide/display for the printer
*/

#floatingTocContainer, #floatingTocSpacer, #floatingLinkSpacer, #floatingLinkContainer {
    display: none;
}

#icd-number-screen  {
    display: none;
}

#icd-number-print  {
    display: inline;
}


/*---------------------------------------------------------------------------*/
