.bubble-from {
    position: relative;
    width: 400px;
    padding: 5px;
    background: #dcf1fa;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;

	-webkit-box-shadow: 2px 2px 10px 0px #616161;
    -moz-box-shadow: 2px 2px 10px 0px #616161;
    box-shadow: 2px 2px 10px 0px #616161;
	
}

.bubble-from:after {
    position: absolute;
    top: 35px;
    right: -15;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent #dcf1fa;
    display: block;
    width: 0;
    z-index: 1;
}


.bubble-to {
    position: relative;
    width: 400px;
    padding: 5px;
    background: #fdffd6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	-webkit-box-shadow: 2px 2px 10px 0px #616161;
    -moz-box-shadow: 2px 2px 10px 0px #616161;
    box-shadow: 2px 2px 10px 0px #616161;
}

.bubble-to:after {
    position: absolute;
    top: 40px;
    right: -15;
    border-style: solid;
    border-width: 15px 0 15px 15px;
    border-color: transparent #fdffd6;
    display: block;
    width: 0;
    z-index: 1;
}
