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

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

/* block */
a.sml-more {
	margin:0px 0px 18px 24px; 
	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: 50px;
	position: absolute;
	width: 100%;
	bottom: 0px;
	background: -webkit-linear-gradient(rgba(225, 225, 225,.5) 0%, rgba(225,225,225,1) 80%);
	background: linear-gradient(rgba(225,225,225,.5) 0%, rgba(225,225,225,1) 80%);
}
.sml-content.fixed-reveal {
	position:relative;
}

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

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


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


