.wlc {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 10px; 
	color: #FFFFFF; 
	text-decoration: none;
	text-align: justify;
}
.t1 {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 10px; 
	color: #FFFFFF; 
	text-decoration: none;
	text-align: justify;
}
.t2 {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 14px; 
	color: #FFFFFF; 
	font-weight: bold;
	text-decoration: none;
	text-align: justify;
}
.t3 {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 18px; 
	color: #FFFFFF; 
	font-weight: bold;
	text-decoration: none;
	text-align: justify;
}
.tg {  
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 14px; 
	color: #FFFFFF; 
	font-weight: bold;
	text-decoration: none;
	text-align: justify;
}
/* I haven't touched anything above this line */

.address { /* try using names, not numbers, since names are self-explanatory */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 7pt; /* you meant points, not pixels, take a look in w3c */
	color: white;
	font-weight: bold;
	text-decoration: none;
}
.footer * { /* try to remove the star, then try to read CSS at w3c.org */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #999999;
	font-weight: bold;
}
.title {
	font-size: 10pt;
	padding-bottom: 1.2em; /* This actually doesn't work, because i'm using
       									 		it with <span>. If I were using it with a <table>
														or <div> it would work. I still need more research
														on the differences within <span>.
												 */
}

.big { font-size: larger; } /*
  This is pretty cool, look in contactus for this.
  But what I really want to do is to use "larger than title"
   and I couldn't do it and I can't spend more time on this
   the following is only doing "larger than parent element"
   within the HTML DOM.
  So, if you look in contact us for "the live example",
   I think you can understand how this is working.
  What I really wanted to do is, if I change, lets say,
   the .title font-size, just the fact to use class="big title"
   would make the tag with a bigger font. Actually I want to
   increase the font size by summing up an absolute number.
	If you set .title font-size to same than address, you'll
   realise that it's not working like that. And using 120% or
   1.2em under .big font-size doesn't help either.
*/

