@CHARSET "ISO-8859-1";

/* BOOTSTRAP OVERRIDES */

.form-control {
  border-radius: 7px;
}

.btn {
  border-radius: 7px;
}

/**/

html, body {
	height: 100%;
	/* The html and body elements cannot have any padding or margin. */
}

.table>tbody>tr>td {
  vertical-align: middle;
 }

/* Wrapper for page content to push down footer */
#wrap {
/* 	 min-height: 100%; */
/* 	 height: auto; */
	 /* Negative indent footer by its height */
/* 	 margin: 0 auto -60px; */
	 /* Pad bottom by footer height */
/* 	 padding: 0 0 60px; */
	 
	 
	min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -60px; /* the bottom margin is the negative value of the footer's height */
}

/* Set the fixed height of the footer here */
#push, #footer {
	height: 60px;
}

#footer {
  	background-color: #333333;
}

.container .credit {
  margin: 20px;
}

/* Lastly, apply responsive CSS fixes as necessary */
@media ( max-width : 767px) {
	#footer {
		margin-left: -20px;
		margin-right: -20px;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.intro-header {
	background-color: #808080;
	background: no-repeat center center;
	background-attachment: scroll;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
	margin-bottom: 10px;
}

.intro-header h1 {
	color: white;
	
	text-shadow: 0px 0px 5px rgba(0,0,0,.8);
}

.intro-header .subheading a {text-shadow: black 0.1em 0.1em 0.2em}

.intro-header .site-heading, .intro-header .post-heading, .intro-header .page-heading
	{
	padding: 80px 0 30px;
	color: white;
}

@media only screen and (min-width: 768px) {
	.intro-header .site-heading, .intro-header .post-heading, .intro-header .page-heading
		{
		padding: 100px 0;
	}
}

.intro-header .site-heading, .intro-header .page-heading {
	text-align: center;
}

.intro-header .site-heading h1, .intro-header .page-heading h1 {
	margin-top: 0;
	font-size: 50px;
}

.intro-header .site-heading .subheading, .intro-header .page-heading .subheading
	{
	font-size: 16px;
	line-height: 1.1;
	display: block;
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 10px 0 0;
}

@media only screen and (min-width: 768px) {
	.intro-header .site-heading h1, .intro-header .page-heading h1 {
		font-size: 60px;
	}
}

.intro-header .post-heading h1 {
	font-size: 35px;
}

.intro-header .post-heading .subheading, .intro-header .post-heading .meta
	{
	line-height: 1.1;
	display: block;
}

.intro-header .post-heading .subheading {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 24px;
	margin: 10px 0 30px;
	font-weight: 600;
}

.intro-header .post-heading .meta {
	font-family: 'Lora', 'Times New Roman', serif;
	font-style: italic;
	font-weight: 300;
	font-size: 20px;
}

.intro-header .post-heading .meta a {
	color: white;
}

@media only screen and (min-width: 768px) {
	.intro-header .post-heading h1 {
		font-size: 55px;
	}
	.intro-header .post-heading .subheading {
		font-size: 30px;
	}
}

.omnisearch {
	text-align: left;
	padding: 20px 60px 20px 60px;
}

.top-buffer { margin-top:20px; }


.transformable {
    -webkit-transition: height 100ms linear;
    -moz-transition: height 100ms linear;
    -o-transition: height 100ms linear;
    -ms-transition: height 100ms linear;
    transition: height 100ms linear;

}

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

.animate-enter, 
.animate-leave
{ 
    -webkit-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -moz-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -ms-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    -o-transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    transition: 400ms cubic-bezier(0.250, 0.250, 0.750, 0.750) all;
    position: relative;
    display: block;
} 

.animate-enter.animate-enter-active, 
.animate-leave {
    opacity: 1;
    top: 0;
    height: 30px;
}

.animate-leave.animate-leave-active,
.animate-enter {
    opacity: 0;
    top: -50px;
    height: 0px;
}}