/* stylesheet.css */

/* Unvisited links (no underline) */
a:link{
   color: #666563; /* gray */
   text-decoration: none;
}
/* Visited links (no underline) */ 
a:visited{
   color: #666563; /* gray */
   text-decoration: none;
}  
   /* Hover links (no underline) */ 
a:hover{
   color: #a80853; /* blue */
   text-decoration: none;   
}


     

	


/* Block all default margins and padding */
* {
   margin:0;
   margin-top:50px;
   margin-bottom:-3px;
   padding:0;
}

/* Wrapper contains the layout */
#wrapper{
    width:10em;
	height:5em;
	margin:auto;
	background-color: #fff;
	
}

#image{
     margin-left:0em;
	 margin-top:10em;
	
	 
}	 
	
