This rule styles the block for each form of bird. The block is indented, with a bit of space above, and hanging indentation so the first line is not indented.
div.form
{ margin-top: 0.1em;
margin-left: 1em;
text-indent: -1em;
}
Because notable records are displayed in a red-bordered box, they need a bit more margin, or adjacent boxes will overlap. Hence this variant of the above rule:
div.notable-form
{ margin-top: 0.5em;
margin-bottom: 0.5em;
margin-left: 1em;
text-indent: -1em;
}