/*
Icon classes can be used entirely standalone. They are named after their original file names.

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
.icon-arrow_categories {
  background-image: url(../images/spritesheet.png);
  background-position: -46px -70px;
  width: 15px;
  height: 9px;
}
.icon-connect {
  background-image: url(../images/spritesheet.png);
  background-position: -46px 0px;
  width: 21px;
  height: 17px;
}
.icon-dating {
  background-image: url(../images/spritesheet.png);
  background-position: -46px -54px;
  width: 19px;
  height: 16px;
}
.icon-down_arrow {
  background-image: url(../images/spritesheet.png);
  background-position: 0px 0px;
  width: 46px;
  height: 84px;
}
.icon-home {
  background-image: url(../images/spritesheet.png);
  background-position: -46px -35px;
  width: 17px;
  height: 19px;
}
.icon-search {
  background-image: url(../images/spritesheet.png);
  background-position: -46px -17px;
  width: 18px;
  height: 18px;
}
