/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Alignments
# Clearings
# Widgets
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}

.widget {
	margin-bottom: 30px;
	background-color: #fff;
}
.widget:last-child{
    margin-bottom: 0px;
}
.widget a:hover {
    color: #F2784B;
}
.el-widgets-title h5,
.widget h2 {
    font-size: 20px;
    text-transform: uppercase;
    color: #424242;
    letter-spacing: 1px;
	border-bottom: 1px solid #EAECEE;
	padding-bottom: 10px;
	position: relative;
	margin-bottom: 30px;
	line-height: 1.5;
}
.el-widgets-title h5::after,
.widget h2::after {
	content: "";
	background: #000C2D;
	height: 3px;
	width: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 2;
}
.widget ul ul {
    padding-left: 15px;
}
.widget ul ul ul {
    padding-left: 5px;
}
.widget a {
    color: #555;
}
.widget table {
    width: 100%;
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
.widget table th {
    background-color: #ddd;
}
.widget table th,
.widget table td {
    padding: 5px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.widget.widget_rss li {
    margin-bottom: 30px;
}
.widget.widget_rss .rssSummary {
    font-size: 95%;
    padding-top: 10px;
}
.widget.widget_rss cite {
    padding-top: 10px;
    display: inline-block;
    font-weight: 700;
}
.widget.widget_rss a.rsswidget {
    font-size: 110%;
}
.widget.widget_rss .rss-date {
    font-size: 80%;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
    margin: 15px 0px;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}