﻿
.shortText  {
   max-height:500px;
  
    overflow: hidden;
    text-overflow: ellipsis;
}
.box {
    width: 100%;
    margin: 10px auto;
    border: thin solid #263C83;
    padding: 20px;
    text-align: center;
    background-color: #1e2f65;
    color: white;
    font-family: sans-serif;
    position: relative;
}



.sbR:after {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 5px solid #1e2f65;
    border-right: 5px solid transparent;
    border-top: 5px solid #1e2f65;
    border-bottom: 5px solid transparent;
    right: 0px;
    bottom: -10px; /*old was -19 with 10px boarder*/
}

.sbL:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 5px solid transparent;
    border-right: 5px solid #1e2f65;
    border-top: 5px solid #1e2f65;
    border-bottom: 5px solid transparent;
    left: 0px;
    bottom: -10px;
}

