/* Bubble with an right triangle */
.bubble-theme2 {
	position:relative;
	padding:15px;
	margin:1em 0 3em;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	box-shadow: 0 0 10px #555;
	-webkit-box-shadow: 0 0 10px #555;
	-moz-box-shadow: 0 0 10px #555;
}
.bubble-theme2:after {
	content:"\00a0";
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	bottom:-40px; /* value = - border-top-width - border-bottom-width */
	width:0;
	height:0;
	border-width:20px 0 20px 20px; /* vary these values to change the angle of the vertex */
	border-style:solid;
}
.bubble-theme2.top:after {
	top:-40px; /* value = - border-top-width - border-bottom-width */
	bottom:auto;
	left:auto;
	border-width:20px 20px 20px 0; /* vary these values to change the angle of the vertex */
}
.bubble-theme2.left {
	margin-left:40px;
}
.bubble-theme2.left:after {
	left:-80px; /* value = - border-left-width - border-right-width */
	bottom:auto;
	border-width:15px 40px 0; /* vary these values to change the angle of the vertex */
}
