/******************************************************************************
 * Graduate Division Author: Eli Levy - elevy <at> gdnet.ucla.edu
 * Filename: print.css 
 * Description: Controls the print layout of the page. Expands Print friendly
 *              design for new 2015 styling
 ******************************************************************************/


@media print {
/* For all pages print white background & 100% width.
   Other pages have additional printer friendly features. */
    body { 
	background: #ffffff !important;
	width: 100% !important;
	 }
	 
	 body:before { content: url(../img/ucla-grad-logo-print.png); }
	  
	  #visual-wrapper {
	 padding-top: 0px;	 
	 }
	  #content {
	 padding-top: 0px;	 
	 }

	  .site-branding{
 	 display: none; /* Branding Hide */
	 }
	 
	   #masthead {
	 display: none; /* Mobile Nav Hide */
	 }
	   header#mobile-main.show-xs.nav-bg-dark {
	 display: none; /* Blue Mobile Top Menu Hide */
	 }
	  .hero-wrap {
	 display: none; /* Hero Image Hide */
	 }
	  .hero-image-container{
	 position: static !important;	  
	 }
	  
	 footer {
	 display: none; /* Footer Hide */
	 }
  }
  

