A bit of css and the sticky attribute.
To permanently stick it above all the posts you’ll need to either update the date of your entry each time you add a sticky or use a handy plugin to handle it.
Here’s the css, which removes the sticky styling, the entry meta and the utility meta & adds some border style.
The plugin is Sticky Post Order or Q2W3 Post Order as it is now known.
#post-1001 {
background:white;
border:20px groove #FBB040;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
-webkit-box-shadow:7px 7px 5px rgba(50,50,50,0.25);
-moz-box-shadow:7px 7px 5px rgba(50,50,50,0.25);
box-shadow:7px 7px 5px rgba(50,50,50,0.25);
width:80%;
padding:20px 5px 0 20px;
margin-left: 50px;}
#post-1001 .entry-title a:hover {
color:#482000;
text-decoration:none;
cursor:default;
}
#post-1001 .entry-meta {
display:none;
}
#post-1001 .entry-utility {
display:none;
}