
/* footer.css */

#footer {
  width: 100%;
  height: 70px;
  background: url('../images/footer-tile.png') repeat-y scroll top left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
}
  #footer_left {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff; /* url('../images/menu_btn.png') no-repeat scroll top left; */
    width: 180px;
    height: 70px;
  }
  #footer_right {
    position: absolute;
    right: 0;
    top: 0;
  }
    #social_links {
      position: absolute;
      top: -40px;
      right: 0;
      width: 135px;
    }
      .social_link {
        float: left;
        margin-left: 10px;
      }
      .social_link a {
        display: block;
        width: 33px;
        height: 30px;
        background: url('../images/social-logos.png');
        background-repeat: no-repeat;
      }
      #twitter_link a {
        background-position:0 -33px;
      }
      #twitter_link a:hover {
        background-position: 0 0;
      }
      #flickr_link a{
        background-position:-35px -33px;
      }
      #flickr_link a:hover {
        background-position: -35px 0;
      }
      #facebook_link a{
        background-position: -69px -33px;
      }
      #facebook_link a:hover {
        background-position: -69px 0;
      }
    
    

