
html {
    position: relative;
    min-height: 100%;
    font-size: 100%;
}
body {
  padding-bottom: 50px;
}


/*=====================*/

.bloc {
	background:#333;
}

.modal-header{
	border-top-left-radius:6px;
	border-top-right-radius:6px;
	background: #87CAE0;
	color:#FFF;
}

.modal-header .close {
	opacity:1; 
	color:#FFF;
}

.container{
  width: 90%;
  margin: 1% auto;
 text-align:center;
}

.insbackground{
  margin:0 0 2rem 0;
  width:100%;
  background-color: #B4D27C;
}

header{
    background-image: url("../images/headerBg.png");
    padding:.5rem;
}

header h1{
    color: white;
    font-family: Arial, sans-serif;
    font-size:1.6rem;
    font-weight:bold;
    margin: .2rem;
}

img{
  max-width:100%;
  margin:0;
}

div#instructions{
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding:.5rem 0;
    margin:0;
    text-align: left;
}

.scrolldecoration{
    height:40px;
    background-image: url("../images/scrollTile.png");
}

.rightscroll{
    height:40px;
    min-width:70px;
    background-image: url("../images/scrollRight.png");
    background-repeat: no-repeat;
}

.leftscroll{
    height:40px;
    min-width:70px;
    background-image: url("../images/scrollLeft.png");
    background-repeat: no-repeat;
    background-position:right;
}

#scroll{
    background-color:#EDE5C0;
    padding:0;
}

#scroll h1{
    margin:0 0 1rem 1rem;
    text-align: left;
    font-size:1.4rem;
}

.button{
    color:#3197B9;
    background-color:#ffffff;
    cursor:pointer;
    text-decoration: none;
    border:2px solid #3197B9;
    border-radius: 25px;
    font-size:1.4rem;
    font-weight:bold;
    margin:0.5rem;
    padding: 0.25rem 0.5rem;
    min-width:6rem;
}

.glyphicon{
    padding:1rem;
    margin-left:1rem;
}

/* sticker footer */

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  background: #87CAE0;
  height: 30px;
}

.footer p {
  line-height: 30px;
  margin-bottom: 0;
}


/*---------------- Media Queries ---------------*/

@media (min-width: 1300px) {
   
    div#instructions{
    font-size: 1.5rem;
    padding: 0.5rem 0;
}
    header h1{
    font-size:1.6rem;
    font-weight: bold;
    margin: .4rem;
}
}

@media (min-width: 1800px) {
  
    div#instructions{
    font-size: 1.6rem;
    padding: 0.5rem 0;
}
    .button{
    font-size:1.6rem;
}
    header h1{
    font-size:1.8rem;
    margin: .4rem;
}
    footer{
    font-size: 1.4rem;
}
}

/*--------------- print Queries --------------------*/ 

@media print {
 div{
    page-break-inside: avoid;  //ensure contents are not printed across pages
 }
 .button {
    display:none !important;
 }
 footer {
    page-break-after: always;
 }
}