
/*************/
/* CSS Reset */
/*************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, rem, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, rembed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video { margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline; }
img { border:0 none; }

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; } 

*
{
  box-sizing: border-box;
}

/*****************/
/* Site Elements */
/*****************/

html
{
  font-family: "Open Sans", Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  text-align: left;

  background-color: #fff;
  color: #444444;
}

body
{
  line-height: 1.5rem;
}

header
{
  border-bottom: 1px solid #ccc;
  margin-bottom:10px;
  padding-top:5px;
  padding-bottom:5px;
  background:#f9f9f9;
}

nav
{
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: .3rem 0;
  margin: 0 auto;
}

main
{
  max-width: 1200px;
  width: 100%;

  margin: 1rem auto;
  padding: 0 1rem;
}

footer
{
  border-top: 1px solid #ccc;
  margin-top:30px;
  padding-top:10px;
  padding-bottom:10px;
}

h1,
h2,
h3,
h4,
h5,
h6
{
  font-family: "Raleway", Verdana, sans-serif;
  font-size: 1.5rem;
  
  width: 100%;
}
h1
{
  font-size: 1.8rem;
 
  font-weight: 900;
  color:#000;
  text-align:center;
  
}
h2
{
  font-size: 2.125rem;
  line-height: 2.25rem;
  font-weight: 500;
}
h3
{
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 200;
  text-transform: uppercase;
  
}

p
{
  font-size: 1rem;
  line-height: 1.5rem;
  
  margin-bottom: 1rem;
  width: 100%;
}

a,
a:hover,
a:visited
{
  text-decoration: none;
  color: #cd2f2b;
}

nav a,
nav a:visited
{
  font-family: "Raleway", Verdana, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.125rem;

  color: #000;

  text-transform: uppercase;
}
nav a:hover
{
  color: #c94731;
}

li
{
  margin-bottom: 1rem;
}
li:last-of-type
{
  margin-bottom: 0;
}

hr
{
  color: transparent;
  border-bottom: 1px solid #000;
  width: 100%;
}

img
{
  max-width: 100%;
  height: auto;
}

/*******************/
/* Utility Classes */
/*******************/

/* simple flex container that will switch from columns to rows */
.responsive
{
  display: flex;
  flex-flow: column nowrap;
}

@media screen and (min-width: 880px)
{
  .responsive
  {
    flex-flow: row nowrap;
  }

  nav{
  	flex-flow: row;
  }
}

/* used to create a box container with pale bg */

.pale-box
{
 
  background-color: #2c2c2c;
  border-radius:25px;
  
}

/* arrows! e.g. pagination buttons */

.arrow
{
  border: solid #CB2F2A;
  border-width: 0 5px 5px 0;
  display: inline-block;
  padding: 5px;
}
.arrow-left
{
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg); 
}
.arrow-right
{
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

/* Previous/Next page navigation */

.pagination-container
{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 100%;
  margin: 2.5rem auto;
  margin-top:2.5rem;
 margin-bottom:.5rem;
  max-width: 500px;

}

.btn-page-arrow
{
  display: block;
}
.btn-page-arrow,
.btn-page-arrow:hover,
.btn-page-arrow:visited
{
  font-family: "Raleway", Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fff;
}

.btn-page-arrow:hover 
{
    color: #fff;
}

.btn-page-arrow-prev
{
 padding: 10px;
text-align: right;
border-radius:25px;
}
.btn-page-arrow-next
{
 padding: 10px;
text-align: left;
border-radius:25px;
}

/* Misc */

.border-red
{
  border-top: 4px dotted black;
  border-bottom:0px;
  width:75%;
}

/*******************/
/* General Classes */
/*******************/

.site-logo
{  
  max-width: 100%;
  height: auto;
  width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.nav-bot .site-logo
{  
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.nav-items
{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.button1 {
 
  font-family: Arial, Verdana;   
  background: #0275d8;
  width:228px;
  height:40px;
  font-size:1.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  background-size:60px;
  color:#fff;
  margin-bottom:3rem;
  margin-top:.5rem;
}





.addthis_inline_share_toolbox
{
  margin: 0rem 0 0rem 0;
  text-align:center;
}



@media screen and (min-width: 880px)


  .nav-bot
  {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: flex-end;
  }

 .nav-bot .nav-items a, .nav-bot .nav-items a:visited{
    font-size: 0.9rem;
  }

  .nav-bot .nav-items
  {
    display: flex;
    flex-flow: row nowrap;
    font-size: 1.2rem;
    align-items: center;

  }
  .nav-bot .nav-items li
  {
    display: block;
    margin: 0 1rem;
  }
}

/*************************/
/* Page-specific classes */
/*************************/

/* Homepage */

.model-lists
{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;

  margin: 0 auto;
}
.list-col-l
{
  margin-bottom: 0px;
}
.list-col-r
{
  margin-top: 0px;
}

.model-list-container
{
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 75%;
}
.model-list
{
  margin: 0;
  margin-left: 1.5rem;
  list-style-type: disc;
  width: 100%;
}
.model-list li
{
  margin-bottom: 5px;
  padding: 5px 0; 
}
.model-list a
{
  color: #c94731;
}
.model-list a:hover,
.model-list a:visited
{
  color: #c94731;
}

@media screen and (min-width: 700px)
{
  .model-lists
  {
    flex-flow: row nowrap;
    justify-content: space-around;
    align-content: flex-start;
    align-items: flex-start;
  }
  .model-list-container
  {
    width: 25%;
  }

}

/* Homepage hover thumbnails */
/* Ported from previous version with a few changes */

.thumbnail
{
  position: relative;
  z-index: 0;
}
.thumbnail:hover
{
  background-color: transparent;
  z-index: 5;
}

.thumbnail span
{
  position: absolute;
  left: -1000px;
  visibility: hidden;
  text-decoration: none;
  padding: 0;

  background-color: #E6E4E7;
  border: 1px dashed gray;
  box-shadow: 0px 5px 2px 2px rgba(0,0,0,0.5);
  color: black;
}
.thumbnail span img
{ 
  border-width: 0;
  padding: 5px;

  max-width: 125px;
  width: 125px;
  height: auto;
}

.thumbnail:hover span
{ 
  /*CSS for enlarged image on hover*/
  visibility: visible;
  top: 0;
  left: 120px;
}

@media screen and (max-width: 699px)
{
  .thumbnail span
  {
    display: none;
  }
}


/* PDF Pages */

.pdf-preview
{
  width: 100%;
  max-width: 431.25px;
  margin: 0 auto;

  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #939393;
  border-radius: 0px 0px 0px 0px;
  box-shadow: 0px 0px 11px 2px rgba(0,0,0,0.5);
  margin-bottom: 30px;

  /* debugging */
  /*border: 1px solid magenta;*/
}

.pdf-info {
    margin-top:3rem;
    margin-bottom:0rem;
    color:#444444;
    text-align:left;
}

.pdf-info-container
{
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  text-align:center;
}

.disclaimer-container
{
  margin-bottom: 2rem;
  margin-top: 2rem;
  padding:1rem;
  background:#f9f9f9;
}

.download-area
{
  text-align:center;
}


.pdf-download-link,
.pdf-download-link:hover,
.pdf-download-link:visited
{
  font-family: "Raleway", Verdana, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #000;
  padding: 2px;
  border-bottom: 2px solid #000;
 
}


@media screen and (min-width: 880px)
{
  .pdf-container
  {
    align-items: stretch;
  }
  .pdf-container .pdf-preview
  {
    margin: 0 auto;
    min-width: 431.25px;
    height: 455px;
    width: 40%;
	margin-right: 10px;
  }
  .pdf-container .pdf-info-container
  {
    margin: 0 auto;
    width: 40%;
	margin-left: 10px;
  }
  .pdf-container .pdf-info-container .adsbygoogle
  {
    margin-top: 1rem;
  }
}

.colorspan
{
color:#000;
font-weight: bold;
}

.colorspan2
{
color:#000;
font-weight: 900;
text-decoration:underline;
}


.info-box
{  
  margin-bottom:1rem;
  margin-top:10rem;
}
.info-box-title
{
  font-weight: bold;
}






