/*---------------------------------------------------------------
-----------------------------------------------------------------
  
  fixed-footer.css
  * Sets footer to very bottom
  * Version: 	4.0 (2009/12/29)
  * Author: 	Dean Bourque | http://www.sparkable.com/

-----------------------------------------------------------------
  Example
-----------------------------------------------------------------

<div class="wrapper">
  <p>Your website content here.</p>
  <div class="push"></div>
</div>
<div id="b">
  <p>Copyright (c) 2008</p>
</div>

-----------------------------------------------------------------
---------------------------------------------------------------*/

* {
    margin: 0;
}
html {
  height: 100%;
  overflow: auto;
}
body {
  height: 100%;
  overflow: auto;
  overflow-y: hidden;
  -ms-overflow-y: hidden;  
}
#wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 98;  
}
* html .footer {
  position: absolute;
}

.push,
.footer {
  /* height: 36px; */
  /* Ignore due to 100% height on container */
}