.lettrine:first-letter{font-size:300%;float:left;bottom: 5px;}

.downarrowdiv{
width:600px;
min-height:40px; /*min height of DIV should be set to at least 2x the width of the arrow*/
background: #F3F3F3;
color:black;
padding:5px;
position:relative;
word-wrap:break-word;
-moz-border-radius:5px; /*add some nice CSS3 round corners*/
-webkit-border-radius:5px;
border-radius:5px;
margin-bottom:2em;
text-align:justify;
}
.downarrowdiv:after{ /*arrow added to downarrowdiv DIV*/
content:'';
display:block;
position:absolute;
top:100%; /*should be set to 100% */
left:500px;
width:0;
height:0;
border-color: #F3F3F3 #F3F3F3 transparent transparent; /*border color should be same as div div background color*/
border-style: solid;
border-width: 11px;
} 
