/* Global Styles - CSS Document */
body {
	font-family: 'Open Sans', sans-serif;
	color:#000000;
}

/*body > div.site-wrapper {

	
    animation: fadein 0.5s;
    -moz-animation: fadein 0.5s;
    -webkit-animation: fadein 0.5s;
    -o-animation: fadein 0.5s; 
	
}*/
p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6em;
    color: #231f20;
    /*margin-bottom: 1.6em;*/
}

a {
    color: #438797;
}
a:hover {
    color:#202020;
    text-decoration:none;
}
h1 {
	font-family: 'Libre Baskerville', serif;
	font-size: 36px;	
}

h2 {
    font-size: 24px;
	line-height: 2em;
	font-weight: 600;
	color: #333333;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 1em;
    font-weight: 600;
	font-size: 18px;
	color: #b9590a;
	line-height: 1.3em;
}

h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
	font-size: 16px;
	line-height:1.2em;
    margin-top: 0px;
	color:#403f44;
}

h4 > a, h3 > a {
	color: #438797 ;
}

hr {
	border-top: 1px solid #403f44;	
}

.break-word {
    word-wrap: break-word;
}

.media-left .media-body,
.media-right .media-body {
  width: 50%;
}

.rotate180 {

/* Safari */
-webkit-transform: rotate(180deg);

/* Firefox */
-moz-transform: rotate(180deg);

/* IE */
-ms-transform: rotate(180deg);

/* Opera */
-o-transform: rotate(180deg);

/* Internet Explorer */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
/*
The rotation property of Internet Explorer’s BasicImage filter can accept one of four values: 0, 1, 2, or 3 which will rotate the element 0, 90, 180 or 270 degrees respectively.
*/

}

.breadcrumb {
    padding: 0 1.5em;
    margin-bottom: 0;
    list-style: none;
    background: none;
    border-radius: 0px;
    font-size: 0.750em;
    color: #808080;
    position: relative;
    top: 6px;
}

@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-moz-keyframes fadein { /* Firefox */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
@-o-keyframes fadein { /* Opera */
    from {
        opacity:0;
    }
    to {
        opacity: 1;
    }
}
