/* CSS talk bubble */
.talk-bubble {

    display: inline-block;
    position: relative;
    width: 80%;
    height: auto;
}
.talk-bubble.btm-right-in
{
    background-color: #2F6B81;
    margin: 16px 0 16px 15%;
}
.talk-bubble.btm-left-in
{
    background-color: #FAFCFC;
    margin: 0 0 24px;
    border : 1px solid #D3DBDE;
}

.border{
    border: 8px solid #666;
}
.round{
    border-radius: 30px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;

}


/*Right triangle, placed bottom left side slightly in*/
.tri-right.border.btm-left-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 30px;
    right: auto;
    top: auto;
    bottom: -40px;
    border: 20px solid;
    border-color: #D3DBDE transparent transparent transparent;
}
.tri-right.btm-left-in:after{
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 38px;
    right: auto;
    top: auto;
    bottom: -24px;
    border: 12px solid;
    border-color: #D3DBDE transparent transparent transparent;
}

/*Right triangle, placed bottom right side slightly in*/
.tri-right.border.btm-right-in:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 30px;
    bottom: -40px;
    border: 20px solid;
    border-color: #2F6B81 transparent transparent transparent;
}
.tri-right.btm-right-in:after{
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: auto;
    right: 38px;
    bottom: -20px;
    border: 12px solid;
    border-color: #2F6B81 transparent transparent transparent;
}

/* talk bubble contents */
.talktext{
    padding: 1em;
    text-align: left;
    line-height: 1.5em;
}
.btm-left-in .talktext
{
    color:#0E2A34;
}
.btm-right-in .talktext, .btm-right-in .talktext label
{
    color:white;
}
.talktext p{
    /* remove webkit p margins */
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    margin-bottom:0;

}

.chatTime
{
    margin:12px 24px 4px;
    color:#CCC;

}