/*
  back-to-top: unobtrusive global 'back to top' link using mootools
  
  copyright (c) 2007 by gonchuki - http://blog.gonchuki.com
                    and Nicolas Sanguinetti - http://nicolassanguinetti.info
  
  version:	1.0
  released: November 11, 2007
  
  This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
    http://creativecommons.org/licenses/by-sa/3.0/
*/

#back-to-top,
#back-to-top.visible {
  display: none;
}

body>#back-to-top {
  position: fixed;
  bottom: 0;
  right: 0;
  cursor: pointer;
  padding: 3px 17px 3px 7px;
  font: 10px Arial, Helvetica, sans-serif;
  color: #fff;
  background: #666 url(images/triangle-gray-up.png) no-repeat right center;
}

body>#back-to-top.visible {
  display: inline;
}