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

/*

    Module:    screen.css

    Author:    Francois Schiettecatte (FS Consulting, LLC.)

    Creation Date:    2 June 201

    Purpose:        This is the CSS for screen display.

*/


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

/*
** 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;
}

table {
    padding: 0;
    border-spacing: 0;
}

p {
    margin-bottom: 1em;
}

a {
    color: #0C2EBB;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #0C2EBB;
}

a:visited {
    color: #50177C;
}


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

/*
** Body features
*/

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


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

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

#header {
    background-color: white;
    z-index: 1;
}


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

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

#menu {
    padding: 6px 4px 4px;
}


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

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

#search {
    margin: 10px 20px 0px; 
    padding: 10px 10px 5px 10px;
}


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

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

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


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

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

#footer {
}


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


/*
** Other elements that we hide from the screen
*/

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


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