Hello jfinner,
You've zero'd out the default margin/padding. Now that you want some, you need to declair your own.
Start with something like this -
Code:
.leftalign ul{
margin: 0 0 0 20px;
}
Also, for what you're doing with lists there, a
Definition List might be fun.
Code:
<dl>
<dt>title</dt>
<dd>list item</dd>
<dd>list item</dd>
<dd>list item</dd>
</dl>
It's title gives you one more line to style. Some examples
here.