/* ======== QuickShow specific styling =========
   ---- These styles are needed to make the ----
   ---- projections work, and will be       ----
   ---- included in any Presentation made   ----
   ---- with QuickShow                      ----
   ============================================= */


/* -------------- General styling -------------- */

.aLeft   {text-align: left;}
.aRight  {text-align: right;}
.aCenter {text-align:center; margin-left: auto; margin-right: auto;}
.aJust   {text-align: justify}
.fLeft   {float: left;}
.fRight  {float: right;}
.uLine   {text-decoration: underline;}

img.logoright {
  position: fixed;
  top: 1em;
  right: 1em;
  }
  
img.logoleft {
  position: fixed;
  top: 1em;
  left: 1em;
  }
  
img.logoleft+div.projection, 
img.logoright+div.projection{
  page-break-before: auto;
  }
  
  
  /* --------------- Screen styling -------------- */

@media screen {


}

/* --------------- Print styling --------------- */

@media print {

div.projection, div.notes {
  page-break-inside: avoid;
  }

pre {
  white-space : -pre-wrap;
  /* proprietary Opera extension */
  }

}
  
  /* ------------- Projection styling ------------ */

@media projection {

div.projection {
  page-break-before:always;
  }
  
img#background + div.projection, div.projection:first-child {
  page-break-before:avoid;
  }

div.notes {
  display: none;
  }

pre {
  /*white-space: -pre-wrap;*/
  /* proprietary Opera extension */
  }
 

}


  

