  body {
	padding-top: 20px;
	padding-bottom: 40px;
  }

  .container > hr {
	margin: 30px 0;
  }

  .small-title {
    font-size: 2em;
    line-height: 30px;
    font-weight: 800;
  }


   .front-back {
      /*background: no-repeat 25% 25% url('/assets/img/sun.jpg');*/
   }
  /* Main marketing message and sign up button */
  .jumbotron {
	margin: 60px 0;
	text-align: center;
  }
  .jumbotron h1 {
	font-size: 72px;
	line-height: 1;
  }
  .jumbotron .btn {
	font-size: 21px;
	padding: 14px 24px;
  }

@media (max-width: 767px) {
  .jumbotron {
	margin: 30px 0;
	text-align: center;
  }
   .front-back {
      /*background: no-repeat 25% 25% url('/assets/img/sun.jpg');*/
   }
  .jumbotron h1 {
	font-size: 50px;
	line-height: 1;
  }
  .jumbotron .btn {
	font-size: 18px;
	padding: 7px 14px;
  }
}

  /* Supporting marketing content */
  .marketing {
	margin: 60px 0;
  }
  .marketing p + h4 {
	margin-top: 28px;
  }

.container.normal {
   /*background: no-repeat 25% 0% url('/assets/img/sun.jpg');*/
   background-size: 100px;
}
@media (max-width: 767px) {
   .container.normal {
      /*background: no-repeat 100% 0% url('/assets/img/sun.jpg');*/
      background-size: 100px;
   }
}

.blogPosts dd p {
   margin-bottom: 0;
}
.blogPosts dd {
   margin-bottom: 10px;
}

code.github .Keyword {
	color: #990000;
	font-weight: bold;
}

code.github .Constant {
	color: #dd1144;
}

code.github .Comment {
	color: #999988;
	font-style: italic;
}

code.github .MetaVariable {
	color: #009090;
}


code .Keyword {
	color: #7B0052;
	font-weight: 900;
}

code .Constant {
	color: #8B008B;
}
code .Variable {
	color: #55AA55;
}

code .Identifier {
	color: #2C577C;
}

code .Type {
	color: #AB2525;
}

code .Comment {
	color: #528D73;
	font-style: italic;
}

code .MetaVariable {
	color: #295F94;
	font-style: italic;
}

pre.rascal {
	border: 0;
	background: 0;
	margin-left: 10px;
	line-height: 1.3;
}




.content h1,
.content h2,
.content h3 {
  line-height: 30px;
}

.content h1 {
  font-size: 32.5px;
}

.content h2 {
  font-size: 25.5px;
}

.content h3 {
  font-size: 18.5px;
}

.content h4 {
  font-size: 15.5px;
}

.content h5 {
  font-size: 12.5px;
}

.content h6 {
  font-size: 11.9px;
}

pre.rascal,
.pre-scrollable-x {
  overflow: auto;
  word-wrap: normal;
  white-space: pre;
}

pre.rascal code {
  overflow-wrap: normal;
  white-space: pre;
}

pre .important {
	font-weight: 900;
}

.front-back {
  position: relative;
  /*background-color:rgba(255,255,255,0.5);*/
}
#scrolling-container {
  z-index:-10;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -50%;
  margin-top:-60px;
	font-size: 200%;
	text-align: justify;
	overflow: hidden;
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
	-webkit-transform: perspective(300px) rotateX(25deg);
	-moz-transform: perspective(300px) rotateX(25deg);
	-ms-transform: perspective(300px) rotateX(25deg);
	-o-transform: perspective(300px) rotateX(25deg);
	transform: perspective(300px) rotateX(25deg);

}

#scrolling-container:after {
	position: absolute;
	content: ' ';
	left: 0;
	right: 0;
	top: 0;
	bottom: 60%;
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background-image: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background-image: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background-image: linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}

#scrolling-content {
	position: absolute;
	top: 100%;
  opacity: 0.5;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
	-webkit-animation: scroll 200s linear 2s infinite;
	-moz-animation: scroll 200s linear 2s infinite;
	-ms-animation: scroll 200s linear 2s infinite;
	-o-animation: scroll 200s linear 2s infinite;
	animation: scroll 200s linear 2s infinite;
}
/*
@-webkit-keyframes scroll {
	0% { top: 100%; }
	100% { top: -70em; }
}
*/
@-webkit-keyframes scroll {
	0% { -webkit-transform: translateY(0); transform: translateY(0); }
	100% { -webkit-transform: translateY(-140em); transform: translateY(-140em); }
}

@-moz-keyframes scroll {
	0% { transform: translateY(0); }
	100% { transform: translateY(-140em); }
}

@-ms-keyframes scroll {
	0% { -ms-transform: translateY(0); transform: translateY(0); }
	100% { -ms-transform: translateY(-140em); transform: translateY(-140em); }
}

@-o-keyframes scroll {
	0% { transform: translateY(0); }
	100% { transform: translateY(-140em); }
}

@keyframes scroll {
	0% { -webkit-transform: translateY(0);-ms-transform: translateY(0); transform: translateY(0); }
	100% { -webkit-transform: translateY(-140em);-ms-transform: translateY(-140em); transform: translateY(-140em); }
}
