/* Blockquote bubble stylesheet */
@charset "utf-8";

#left_column .quote_box_left, .quote_box_right {
position: relative;
width: 618px;	
background-color: #c3d9ad;
padding: 10px;
margin: 0 0 50px 0;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;		
}
/* ----Quote bubble left tail---- */
	.quote_box_left:before {
	content:"";
	position: absolute;
	bottom: -20px; /* value = - border-top-width - border-bottom-width */
	left: 60px; /* controls horizontal position */
	border: 0;
	border-right-width: 30px; /* vary this value to change the angle of the vertex */
	border-bottom-width: 20px; /* vary this value to change the height of the triangle. Must be equal to the corresponding value in :after */
	border-style: solid;
	border-color: transparent #c3d9ad;
	/* FF3.0 compatability */
    display: block; 
    width: 0;
	}
	.quote_box_left:after {
	content:"";
	position: absolute;
	bottom: -20px; /* value = - border-top-width - border-bottom-width */
	left :80px; /* value = (:before's left) + (:before's border-right/left-width)  - (:after's border-right/left-width) */
	border: 0;
	border-right-width: 10px; /* vary this value to change the angle of the vertex */
	border-bottom-width: 20px; /* vary this value to change the height of the triangle. Must be equal to the corresponding value in :before */
	border-style: solid;
	border-color: transparent #ddedce;
    /* FF3.0 compatability */
    display: block; 
    width: 0;
	}
/* ----Quote bubble right tail---- */
	.quote_box_right:before {
	content:"";
	position: absolute;
	bottom: -20px; /* value = - border-top-width - border-bottom-width */
	right: 130px; /* controls horizontal position */
	border: 0;
	border-left-width: 30px; /* vary this value to change the angle of the vertex */
	border-bottom-width: 20px; /* vary this value to change the height of the triangle. Must be equal to the corresponding value in :after */
	border-style: solid;
	border-color: transparent #c3d9ad;
	/* FF3.0 compatability */
    display: block; 
    width: 0;
	}
	.quote_box_right:after {
	content:"";
	position: absolute;
	bottom: -20px; /* value = - border-top-width - border-bottom-width */
	right : 150px; /* value = (:before's left) + (:before's border-right/left-width)  - (:after's border-right/left-width) */
	border: 0;
	border-left-width: 10px; /* vary this value to change the angle of the vertex */
	border-bottom-width: 20px; /* vary this value to change the height of the triangle. Must be equal to the corresponding value in :before */
	border-style: solid;
	border-color: transparent #ddedce;
    /* FF3.0 compatability */
    display: block; 
    width: 0;
	}
blockquote {margin: 0 0 0 20px;}

	blockquote:before {
	display: block;
	content: "\201C";
	font-size: 90px;
	position: absolute;
	left: 0px;
	top: -12px;
	color: #acbf99;
	}
cite {
display: block;
text-align: right;
}