/*body {
	background-color: #333;
	height: 100%;
	width: 100%;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}*/

html, body {
  border:  none;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
}

  /*this is what we want the div to look like*/
.fullscreen{
    display:block;
	
	visibility:hidden;

    /*set the div in the top-left corner of the screen*/
    position:absolute;
    top:0;
    left:0;
    
    /*set the width and height to 100% of the screen*/
    width:100%;
    height:100%;
  }
  
.texto {
	font:"Times New Roman", Times, serif;
	font-size:12px;
	color:#333333
}

.count {
	font:"Times New Roman", Times, serif;
	font-size:11px;
	font-weight:bold;
	text-align:center;
	color:#ffffff
}

A {color:#519136; text-decoration: underline}
A:hover {color:#519136; text-decoration: none}
A:active {color:#519136; text-decoration: none}
A:visited {color:#519136; text-decoration: underline}