


/* For portrait, we want the tool bar on top */

@media screen and (orientation: portrait) {
  #header {
     position: fixed;
	
  }
 
  
  #breadcrumbs {
   position:fixed;
 }  

 
 #footer  {
   position:fixed;
 }
 
  #footer1  {
   position:fixed;
 }

}



/* For landscape, we want the tool bar stick on the left */

@media screen and (orientation: landscape) {
  #header {
    position: absolute;
  }

   
  
   #breadcrumbs {
   position:absolute;
 }  
 
  #footer  {
   position:static;
 }
 
 #footer1  {
   position:static;
 }

 
}