
.speech-item {
	position: relative;
	margin: 0px 30px;
	margin-top:50px;
}

.speech-item .speech-details {
	position: absolute;
	left: 0;
	width: 194px;
	padding: 5px 7.5px;
	background: #d0b26c;
	border-radius: 3px;
	color: white;
	top: 10px;
	text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 0px;
}

.speech-item .speech-details .speech-name,
.speech-item .speech-details .speech-date {
	display: block;
}

.speech-item .speech-details .speech-name {
	font-weight: bold;
	font-size: 14px;
}

.speech-item .speech-details .speech-date {
	font-size: 11px;
}

.speech-item .speech-bubble {
	margin-left: 215px;
	background: #EBEBEB;
	border: 1px solid #D6D6D6;
	border-radius: 5px;
	padding: 20px;
	position: relative;
	text-shadow: rgb(255, 255, 255) 1px 1px 0px;
}

.speech-item .speech-bubble::before {
	border-style: solid;
    border-width: 8px 15px 8px 0;
    border-color: transparent #D6D6D6 transparent transparent;
    position: absolute;
    top: 23px;
    left: -16px;
	content: "";
}





.speech-item:nth-child(even) .speech-details {
	right: 0;
	left: auto;
}

.speech-item:nth-child(even) .speech-bubble {
	margin-left: 0;
	margin-right: 215px;
}

.speech-item:nth-child(even) .speech-bubble::before {
    left: auto;
    right: -16px;
    border-width: 8px 0 8px 15px;
    border-color: transparent transparent transparent #D6D6D6;
}





@media(max-width:640px) {
	.speech-item .speech-details {
		width:100px;
	}
	
	.speech-item .speech-bubble {
		margin-left: 115px;
	}
	
	.speech-item:nth-child(even) .speech-bubble {
		margin-left: 0;
		margin-right: 115px;
	}
}
