/*
	BBCode Styling
	
	Custom Elements like Quote/Codeblocks
*/

.bbcode_code_header,
.bbcode_quote_header {
	-webkit-border-radius: 4px;
    border-radius: 4px;
	text-indent: 8px;
	padding-top: 8px;
	background-color: #f3f3f3;
	border: 1px solid #cacaca;	
	font-size: 0.8em;
	font-weight: bold;
	//margin-bottom: 18px;
}
.bbcode_code_body,
.bbcode_quote_body {
	-webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
	text-indent: 0;
	margin-bottom: 0;
	margin-top: 8px;
	font-size: 1.2em;
	font-weight: normal;
}

.bbcode_code_body {
	margin-left: -1px;
	margin-right: -1px;
	max-width: none;
}

.bbcode_quote_body {
	border-top: 1px solid #cacaca;	
	background-color: #fff;
	font-style: italic;
	padding: 11px 8px 11px 18px;
}