/*Post-it note script- by javascriptkit.com
Visit JavaScript Kit (http://javascriptkit.com) for script
Credit must stay intact for use*/

#postit{
position:absolute;
right:50px;
top:50px;
width:245px;
padding:5px;
background-color:#d2ff00;
border:2px solid black;
visibility:hidden;
z-index:100;
cursor:hand;
cursor: pointer;
}

#postit a { 
	color:#d81818;
	background: transparent;
	font-weight: bold;
	text-decoration: none;
	font-size: 0.8em;
}

#postit a:hover {
  	background: transparent;
    	color: #0f480f;
	font-size: 0.8em;
}
