/*--------------------------------------------------*/
/* print.css - Created By Keary T. Cunningham
/*--------------------------------------------------*/
@media only print
{
/*Hide Several of the Divisions and Classes*/
#menu,
#coflHeader,
#menu, 
#coflHeader, 
#coflNavButtons, 
#rope,
#gisNavMenuArea,
#divToggleDetail,/*hide the green toggle button that hides the left panel*/ 
#divLeftPanelBackground,/*hide the left panel background*/ 
#divParkListContainer /*hide the list of parks*/
{display:none !important;} 
 
/*Resize the Panel Containing the Directions so they don't get cut off*/  
#divParkDirections
{height: 250px !important;}

/*Show the Map (only needed for Chrome - This DOES NOT work - Chrome does not allow for background printing which is what the map portion is made up of)*/  
#divMainContainer
{-webkit-print-color-adjust:exact;}

/*Resize the Panel Containing the Directions so they don't get cut off*/  
#direction
{height: 250px !important;
 overflow: visible;

}

/*Resize the Panel Containing the Directions so they don't get cut off*/  
#scrollbar_container2
{height: 300px !important;}

/*hide the "Search Results" text displayed at the top of the results panel*/
.divAccordionTitle 
{display:none !important;}  

/*Move the Header Background to the top of the page so it acts as a title bar for the printed map*/  
.headerBackground
{top: 0px;}
  
/*hide the address search and other tools in the header*/   
.headerContent
{display:none;}

/*Move the Application Icon to the top of the page*/  
.headerIcon
{top: 2px;}

/*Move the Application Title (label) to the top of the page*/  
.header
{top: 5px;}

  
}