body {
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
}

.pulledquote {
  display: block;
  float: right;
  padding: 0 0 0 10px;
  margin: 0 0 10px 10px;
  width: 170px;
  font-size: 1.5em;
  line-height: 1.4em;
  text-align: right;
  color: #666;
  border-left: 3px solid #ccc;
}

.story-content {
  color: #9c9fa3;
}

.story-profile {
  padding-bottom: 10px;
}

.img-responsive {
  margin: 0 auto;
}

.story-picture {
  max-width: 600px;
  max-height: 500px;
  border-style: solid;
  border-color: white;
  border-radius: 5px;
  margin-bottom: 15px;
}

.story-section-header { 
  color: white;
  background-color: #5cb85c;
  border-color: #4cae4c;
  border-radius: 7px;
  padding: 5px;
}

a:link, a:visited {
    color: #5cb85c;
    border-color: #4cae4c;
}

a:hover {
    text-decoration: underline;
    color: #4cae4c;
    font-weight: 900;
  
}

.darken {
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.90),
      rgba(0, 0, 0, 0.90)
    ),
    url("/img/background.jpg");
    background-size: cover;
}
/*---------------*/

.navbar-default {
  background-color: transparent;
  border-color: transparent;
  margin-top: 10px;
}

.vertical-center {
  min-height: 100%;  /* Fallback for browsers do NOT support vh unit */
  min-height: 100vh; /* These two lines are counted as one :-)       */

  display: flex;
  align-items: center;
}


input
{
    border: none;
    border-radius: 2.5px;
    margin-bottom: 15px;
}


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

.col-centered{
    float: none;
    margin: 0 auto;
}


.rounded {
	border-radius: 10px
}


h1, h2, h3, h4, h5, h6, p, ol, li, th, td{
	color: #e0e0e0;
}

li {
    padding-bottom: 10px;
}


.story-header, .newsletter-header {
  color: #e0e0e0;
}

.newsletter-date {
  color: #e0e0e0;

}

.newsletter-title {
  color: #e0e0e0;
}

.newsletter-subject {
  color: #e0e0e0;
}


.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

/* add a slight zoom effect to rows in a table*/
.fancyrow:hover {
  cursor: pointer;
  box-shadow: 0px 0px 0px #000000;
  z-index: 2;
  -webkit-transition: all 80ms ease-in-out;
  -webkit-transform: scale(1.05);
  -ms-transition: all 80ms ease-in-out;
  -ms-transform: scale(1.05);   
  -moz-transition: all 80ms ease-in-out;
  -moz-transform: scale(1.05);
  transition: all 80ms ease-in-out;
  transform: scale(1.05);
}

/* remove striping from bootstrap table*/
.table th, .table td { 
     border-top: none !important; 
 }