
.quote {
	border: 1px solid #ddd;
	padding: 1em;
	position: relative;
	border-radius: 3px;
	background: white;
}

.quote:after {
	content: '';
	display: block;
    height: 0;
    width: 0;
    border-style: solid;
    position: absolute;
	bottom:-16px;
	left: 6px;
    border-width: 8px;
    border-color: transparent;
    border-top: 8px solid #ddd;
}

.quote:before {
	content: '';
	display: block;
    height: 0;
    width: 0;
    border-style: solid;
    position: absolute;
	bottom:-15px;
	left: 6px;
    border-width: 8px;
    border-color: transparent;
    border-top: 8px solid white;
	z-index: 1
}