@charset "utf-8";
/* CSS Document 
margin and padding is:  top, right, bottom, left */

a:link {
    color: inherit;
    font-family: verdana, geneva, tahoma, sans-serif;
    font-weight: bold;
	line-height: 170%;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}

a:visited {
	color: inherit;
    font-family: verdana, geneva, tahoma, sans-serif;
    font-weight: bold;
	text-decoration: none;
}

a:hover {
    font-family: verdana, geneva, tahoma, sans-serif;
    font-weight: 900;
	text-decoration: none;
}

a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    font-family: verdana, geneva, tahoma, sans-serif;
	text-decoration: none;
}

p {
    margin:0;
}