/*
 ----------------------------- 
 PVII Show More / Show Less
 by Project Seven Development
 www.projectseven.com
 Core CSS
 -----------------------------
*/

/* ----------- <a> tag triggers ----------- */

/* block */
a.sml-more {
	margin:0px 0px 0px 1.5em; 
	color: #555555 !important;
    font-style: italic !important;
/*     font-size:.9em; */
    text-decoration: none;
	display: inline-block;
	font-style: normal;
	border-bottom: 1px dotted;
	border-color: #555555;
	transition: all linear .5s .1s;
}
a.sml-more.open {
	color: #555555;
}
a.sml-more:hover {
	border-bottom-style: solid;
}

/* fixed height reveal */
.sml-blur {
	height: 7vw;
	position: absolute;
	width: 100%;
	bottom: -1px;
	background: -webkit-linear-gradient(rgba(251,250,248,.1) 0%, rgba(251,250,248,1) 100%);
	background: linear-gradient(rgba(251,250,248,.1) 0%, rgba(251,250,248,1) 100%);
}
.sml-content.fixed-reveal {
	position:relative;
}


/* ---------- DO NOT EDIT EVER ----------------- */

/* Block Contnent */
.sml-content {
	display: block; 
	height: 0px;
/* 	padding:0px 5px; */ 
	overflow: hidden;
	box-sizing: border-box;
}
.sml-content div {
	padding: 1px 0px;
}


/* inline content */
.sml-content-inline {
    display: inline;
}


