/*  */
.quotebox {
	background-color: #F9F9F9;
	border: 1px solid #aaa;
	box-sizing: border-box;
	padding: .25em .5em;
	font-size: 88%;
	max-width: 100%;
}
.quotebox.floatleft {
	margin: .5em 1.4em .8em 0;
}
.quotebox.floatright {
	margin: .5em 0 .8em 1.4em;
}
.quotebox.centered {
	margin: .5em auto .8em auto;
}
.quotebox p {
	font-style: inherit;	
	margin-bottom: 0;
}
.quotebox-title {
	background-color: #F9F9F9;
	text-align: center; 
    font-size: larger;
    font-weight: bold; 
	margin-bottom: 0;
}
.quotebox-quote.quoted:before {
    font-family:'Times New Roman',serif;
    font-weight:bold;
    font-size: large;
    color: gray;
    content: ' “ ';
    vertical-align: -45%;
	line-height: 0;
}
.quotebox-quote.quoted:after {
    font-family:'Times New Roman',serif;
    font-weight:bold;
    font-size: large;
    color: gray;
	content: ' ” ';
	line-height: 0;
}
.quotebox .left-aligned {
	text-align: left;
}
.quotebox .right-aligned {
	text-align: right;
}
.quotebox .center-aligned {
	text-align: center;
}
.quotebox cite {
	display:block;
	font-style:normal;
}

@media all and (max-width:720px) {
	.quotebox {
		/*override inline styles */
		width: 100% !important;
		margin: 0 0 .8em !important;
		float: none !important;
	}
}