/*
SCSS variables are information about icon's compiled state, stored under its original file name
.icon-home {
  width: $icon-home-width;
}
The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;
At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables
.icon-home {
  @include sprite-width($icon-home);
}
.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS
@include sprites($spritesheet-sprites);
*/
.table_stripe ul {
  padding: 10px 0 0 0 !important;
}
.table_stripe ul:after {
  content: "";
  clear: both;
  display: block;
}
.table_stripe ul li {
  margin-top: 15px;
}
.table_stripe ul li .download {
  margin-bottom: 0 !important;
}
.table_stripe ul li:first-child {
  margin-top: 0;
}
.table_stripe tr td dl {
  line-height: 1.4 !important;
}
.border_gray {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
table.separeted tr {
  height: 32px;
}
