﻿/******************PRINT CSS*********************/

/***************************************/

/*THIS ONLY GETS USED WHEN WE PRINT THE WEBPAGE
So it only needs to "override" other css */

/*add a selector to hide the left side and footer */

/*css3 ATTRIBUTE selector
tag[attribute=value]
ex: a[target=_blank]
*/

#top-nav, #left-side, footer, input[type=button]
{
    display:none;/*hide it from the page*/
    /*visibility: hidden; similar to display none, but this reserves a space*/
}

body
{
    font-family: Serif;
    border: 10px solid #333;
}
#outer-wrapper
{
    width:100%;
    background-color: #333;
}
#main, #landing
{
    width: 90%;
    margin: 0 3%;
    padding: 10px;
    border: 1px solid #000;
    
}