/*
Letter 612 x 792
A4     498 x 750
*/

/***************************************************************************/
/* The bits that you probably want to override! */
body {
  font-size: 20pt;
  font-family: "Helvetica", "Arial", "Liberation Sans", sans-serif;
  color: black;
  background-color: #fff; /* Colour outside of slide */
}

div.presentation, div.slide {
  background-color: white; /* colour of the slide */
}

div.slide h1, div.slide h2, div.slide h3, div.slide h4, div.slide h5, div.slide h6 {
  color: navy;
  font-weight: normal;
}

div.slide h3, div.slide h4, div.slide h5, div.slide h6 {
  margin-bottom: 6px;
}

div.slide h3 + p, div.slide h4 + p, div.slide h5 + p, div.slide h6 + p {
  margin-top: 6px;
}

pre {
  font-size: 12pt;
  font-family: Monaco, Courier, monospace;
}

li {
  line-height: 1.5em;
  margin-left: 10pt;
  /*padding: 10px 0*/;
}

li ul, li ul li {
  margin-top: 0;
}

table {
  margin-top: 6pt;
  border-collapse: collapse;
  width: 100%;
}
table th {
  text-align: left;
  border-bottom: 1px solid #666;
}
table td, table th {
  padding-left:   10px;
  padding-right:  10px;
  padding-top:    4px;
  padding-bottom: 4px;
}
tr > td:first-child, tr > th:first-child {
  padding-left: 0;
}

/* .notes are displayed when you press '2' */
.notes {
  color: white;
  background: #777;
  opacity:0.90;
}

/* A title slide is a single header */
.slide header:only-child h1 {
  font-weight: bold;
  font-size: 36pt;
}

/* Source and page number */
aside.source, aside.page_number {
  font-size: 14pt;
}

/* Quote and blockquote */
blockquote          { text-indent: -1ex; margin-bottom: 10px;}
blockquote *        { quotes: none; }
blockquote p:before { content: '\201C'; }
blockquote p:after  { content: '\201D'; }
blockquote p        { margin:0; padding:0; }
blockquote q:before { content: '\2018'; }
blockquote q:after  { content: '\2019'; }
.cite { margin:0; text-align:right; margin-right: 40px;}

/***************************************************************************/
/* Specific clases for use with the .fx: macro */

/* smaller and larger */
.smaller section {
  font-size: 18pt;
}

.smaller div h1 {
  font-size: 40pt;
}

.smaller section pre {
  font-size: 10pt;
}

.larger section {
  font-size: 22pt;
}

.larger div h1 {
  font-size: 40pt;
}

.larger section pre {
  font-size: 14pt;
}

/* titleslide: displaying a title(h1) and subtitle(h2) on the same slide */
div.titleslide { text-align: center; }
div.titleslide h1 { padding-top: 50pt; font-size: 60pt; font-weight: bold;}

/* imageslide: covering a whole slide with an image */
div.slides div.imageslide {margin: 0; width: 750pt; height: 460pt; overflow: hidden}
div.imageslide img { 
  position: relative; 
  /*top: -144pt;*/
  /*top: -460pt;*/
  /*left: -10pt; */
  top: -138pt;
  left: -10pt;
  width: 750pt;
  height: 460pt;
  max-width: 750pt !important; 
  max-height: 460pt !important; 
  z-index: 0; 
}

div.imageslide h1 { position: relative; z-index: 3 !important; /*left: 40px; top: -70pt; */}

/* black and white header for use with imageslide */
div.whiteheading h1 {color: #fffffe !important;}
div.blackheading h1 {color: black !important;}

/***************************************************************************/
/* Syntax highlighting is by Pygments - select via config file */
.lineno {color: #aaa; }  /* Line numbers */



/***************************************************************************/
/* The structure - You shouldn't need to change anything from here on down */
body {
  /*padding : 70pt;*/
  margin  : 0;
  overflow: hidden;
}

div.presentation, div.slides {
    transform: scale(1),
    -ms-transform: scale(1),
    -moz-transform: scale(1),
    -webkit-transform: scale(1),
    -o-transform: scale(1),
}

/*div.slides {
  width: 754pt !important;
  height: 502pt !important;
}*/

div.slide {
  display: block !important;
  width: 740pt !important;
  height: 460pt !important;
  border: 2pt solid #ddd;
/*  width      : 100%;
  height     : 100%;*/
  overflow   : hidden;
  page-break-after: always;
}

div.slide div.inner {
  width: 750pt !important;
  height: 460pt !important;
  margin: auto;
  display: table-cell;
  padding: 10pt;
}


/* A title slide is a single header */
.slide header:only-child {
  display: table;
}

.slide header:only-child h1 {
  width: 750pt !important;
  height: 460pt !important;
  text-align    : center;
  display       : table-cell;
  vertical-align: middle;
}

/*.slide header:only-child h1 {
  line-height: 180%;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  height: 600px;
  width: 800px;
  font-size: 48px;
  margin-top:100px;
  margin-bottom:100px;
}
*/


ol {
  margin-left: 5pt;
}

/* Image alignment options. Note that we align centre by default */
img { display: block; margin: auto; max-width: 600pt; max-height: 340pt;}

section img.align-center, section img.align-centre, section img.center, section img.centre {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section img.align-right, section img.right {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

section img.align-left, section img.left {
  display: block;
  margin-right: auto;
  margin-left: 0;
}

section img.float-right {
  display: block;
  float: right;
  margin-left: auto;
  margin-right: 0;
}

section img.float-left {
  display: block;
  float: left;
  margin-right: auto;
  margin-left: 0;
}

/* Source and page number */
aside, footer {
  display: block;
  visibility: visible;
}

aside.source {
  display: none;
}

.page_number {
  position: relative; 
  text-align: right;
  display: block !important;
  visibility: visible !important;
  top: -40pt;
  right    : 0px;
  color    : black !important;
  padding  : 5pt !important;  
}


#toc, #help, .slide .notes,
.presenter_notes, #current_presenter_notes, #presenter_note,
 #time {
  display: none;
}


/* Turn of page numbers by uncommenting this */
.page_number {
  display: none !important;
}

/* Custom CSS bits */
.credits {
    float: right; 
    text-align:left;
    padding-top: 150pt !important;
}

.columnlist2 ul {
    vertical-align: top;
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -webkit-column-count: 2;
    -webkit-column-gap: 20px;
    column-count: 2;
    column-gap: 20px;
}

.columnlist3 ul {
    vertical-align: top;
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
}
