body
{
	font-family: 'arial';
	font-size:11px;
}
td
{
	font-family: 'arial';
	font-size:11px;
}
a
{
	text-decoration: none;
	color : Black;
	font-size:11px;
}

img  {
  border:0px;
}

A:visited
{
	text-decoration: none;
	color: Black;
	
}
h1
{
font-size:20px;

}

h2
{
font-size:16px;
}

h3
{
font-size:13px;
}



  /*Loading DIV*/
  /*this is what we want the div to look like
    when it is not showing*/
  div.loading-invisible{
    /*make invisible*/
    display:none;
  }

  /*this is what we want the div to look like
    when it IS showing*/
  div.loading-visible{
    /*make visible*/
    display:block;

    /*position it 200px down the screen*/
    position:absolute;
    top:200px;
    left:0;
    width:100%;
    height:710px;
    text-align:center;

    /*in supporting browsers, make it
    a little transparent*/
    opacity:0.7;
    
    background:#fff;
  }
