Looks to me like things are working as expected. Some excerpts from your CSS:
CODE
blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
In other words, you've specifically got no indent or margin set, nor any dotted border. You want to add something like:
CODE
blockquote { margin: 20px; border: 1px dotted #000; padding: 20px; }