/*
 * sombshet-print.css
 *
 * Modify the CSS rules to make the presentation suitable for print media
 *
 */

html {
	padding: 0;
	margin: 0;
	border: 0;
	background: white;
	font-size:10pt;
	font-family: arial, sans-serif;
}
body {
	padding: 0;
	margin: 0;
	border: 0;
}


#header {
    height: auto;
    width: 100%;
    background: white;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}
#title1 {font-size: 3em;}

#menu {display: none;} /* remove the menu */

#content {
    display: table-cell;
    overflow: hidden;
    padding-left: 0;
    width: 100%
}

#footer {
    position: static; /* put the footer back into the normal flow */
    height: auto;
    width: 100%;
    font-size: 8pt;
    background: white;
    border-top:1px solid black;
}
.footleft {padding-left: 0;}
