/* Print Rules


Notes:

1. While Visibility:hidden hides content it can leave a gap where the content should be,
hence the use of display:none for some tags

*/

* {visibility:hidden;}
#navigation, #sidebar, #sidebar_left, #sidebar_right, #footer{display:none;}
body {
   background: white;
   font-size: 12pt;
   }

#header h1
{
    visibility: visible;
    display:block;
    padding: 0;
    margin-left:auto;
    margin-right:auto;
    width: 75%;
    font-size: 16pt;
    color:  #93376b;
}

#main{
    padding:0;
    margin-left:auto;
    margin-right:auto;
    width: 75%;
}
#main a, #main a:link { 
	color: #000;
	visibility:visible;	
}
#main h2,#main h3, #main h4
{
    width:75%;
    margin:10px 0 5px 0;
    padding: 0;
    font-family: Cambria,
             "Hoefler Text",
             Utopia,
             "Liberation Serif",
             "Nimbus Roman No9 L",
             Times,
             "Times New Roman",
             serif;
    visibility: visible;
    color:  #93376b;
   
}
#main h2{
    font-size: 14pt;
    font-weight:bold;
}
#main h3{
    font-size: 12pt;
    font-weight:bold;

}
#main h4{
    font-size: 10pt;
    font-weight:bold;
}
#main p, #main ul, #main li, #main  label {
    font-family: Corbel,
             "Lucida Grande",
             "Lucida Sans Unicode",
             "Lucida Sans",
             "DejaVu Sans",
             "Bitstream Vera Sans",
             "Liberation Sans",
             Verdana,
             sans-serif;
    font-size: 11pt;
    visibility: visible;
    
}
#main.news p, #main.news ul,#main.news li, #main.news  label {
    font-family: Corbel,
             "Lucida Grande",
             "Lucida Sans Unicode",
             "Lucida Sans",
             "DejaVu Sans",
             "Bitstream Vera Sans",
             "Liberation Sans",
             Verdana,
             sans-serif;
    font-size: 11pt;
    visibility: visible;
    
}
#main p, #main,news p {
    margin: 5px 0 7px 0;
}
#main ul, #main.news ul  {
    margin: 0 0 5px 0;
}

span#printpage a {
    visibility: hidden !important;
  }
