http://www.htmlcenter.com/tutorials/tutorials.cfm/62/CSS/

P { text-transform: uppercase }
P { letter-spacing: 0.1cm }
H1 { word-spacing: 1em }
P { text-shadow: black }
A:link, A:visited, A:active 
{ text-decoration: none|underline|overline|line-through|blink }
P { text-indent: 3em }
P { alignment: center|left|right|justify }

How to style text

Search for: css font-weight


p
{
font-weight: bold
}

normal
bold
bolder
lighter

styling text from w3cschools


overline
line-through
underline
none

setting the fonts


italic
normal
oblique

div.news-heading-div p
{
margin-bottom:0px;
margin-top:0px;
font-style:italic;
}
div.news-heading-div a
{
margin-bottom:0px;
margin-top:0px;
}
div.news-heading-div a.light
{
color:gray;
}
div.news-heading-div h3
{
margin-bottom:0px;
font-size:12px;
}
div.news-heading-div
{
margin-top:3em;
}