CSS Question

Okay i have a page set up for some friends of mine and i am using CSS to set the styles.

http://www.versusmediagroup.com/smallgroup

But i want the text at the end to be centered and at the bottom of the screen. i have a css file included on the page and here is the code i am using for the HTML page.


<span class="tag">Versus Media Group, LLC ©2005 - <a href="http://www.versusmediagroup.com", target="_blank">www.versusmediagroup.com</a> - <a href="http://www.ucfellowship.org", target="_blank">www.ucfellowship.org</a></span>

and here is the code in the css that works with this.


.tag {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:9px;
color:#CCCCCC;
text-align:center;
margin-bottom:0px;
}

I’m not sure what i am doing wrong but i hope you can help me.