/*
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2015 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and may be covered by U.S. and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 */
/*
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2015 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and may be covered by U.S. and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 */
/* grid component */
.aem-Grid {
  display: block;
  width: 100%;
}
.aem-Grid::before,
.aem-Grid::after {
  display: table;
  content: " ";
}
.aem-Grid::after {
  clear: both;
}
/* placeholder for new components */
.aem-Grid-newComponent {
  clear: both;
  margin: 0;
}
/* column of a grid */
.aem-GridColumn {
  box-sizing: border-box;
  clear: both;
}
/* force showing hidden */
.aem-GridShowHidden > .aem-Grid > .aem-GridColumn {
  display: block !important;
}
/* Generates all the rules for the grid columns up to the given amount of column */
/* Generates all the rules for the grid column offset up to the given amount of column */
/* Generates all the rules for the grid and columns for the given break point and total of columns */
/* Generates all the rules for the grids and columns */
/* API function to be called to generate a grid config */
/* maximum amount of grid cells to be provided */
/* example configuration */
/* add gutter in the grid */
.aem-GridColumn {
  padding: 0 5px;
}
/* smaller screen (phone) breakpoint */
@media (max-width: 650px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--1 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--2 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--3 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--4 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--phone--5 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--6 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--phone--7 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--phone--8 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--phone--9 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--phone--10 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--phone--11 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--phone--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--phone--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--phone--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--phone--12 > .aem-GridColumn.aem-GridColumn--offset--phone--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--none {
    /* none behavior */
    display: block;
    clear: none !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--phone--hide {
    /* hide behavior */
    display: none;
  }
}
/* tablet breakpoint */
@media (min-width: 651px) and (max-width: 1200px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--1 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--2 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--3 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--4 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--tablet--5 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--6 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--tablet--7 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--tablet--8 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--tablet--9 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--tablet--10 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--tablet--11 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--tablet--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--tablet--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--tablet--12 > .aem-GridColumn.aem-GridColumn--offset--tablet--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--none {
    /* none behavior */
    display: block;
    clear: none !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--tablet--hide {
    /* hide behavior */
    display: none;
  }
}
/* default breakpoint */
@media (min-width: 1201px) {
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--1 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--2 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--3 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--default--4 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--default--5 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--default--6 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 14.28571429%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 28.57142857%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 42.85714286%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 57.14285714%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 71.42857143%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 85.71428571%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 14.28571429%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 28.57142857%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 42.85714286%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 57.14285714%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 71.42857143%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 85.71428571%;
  }
  .aem-Grid.aem-Grid--default--7 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 12.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 37.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 62.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 87.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 12.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 37.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 62.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 87.5%;
  }
  .aem-Grid.aem-Grid--default--8 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 11.11111111%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 22.22222222%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 44.44444444%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 55.55555556%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 77.77777778%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 88.88888889%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 11.11111111%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 22.22222222%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 44.44444444%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 55.55555556%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 77.77777778%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 88.88888889%;
  }
  .aem-Grid.aem-Grid--default--9 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 10%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 20%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 30%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 40%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 60%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 70%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 80%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 90%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 10%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 20%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 30%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 40%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 60%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 70%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 80%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 90%;
  }
  .aem-Grid.aem-Grid--default--10 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--default--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 9.09090909%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 18.18181818%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 27.27272727%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 36.36363636%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 45.45454545%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 54.54545455%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 63.63636364%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 72.72727273%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 81.81818182%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 90.90909091%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--default--11 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 9.09090909%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 18.18181818%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 27.27272727%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 36.36363636%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 45.45454545%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 54.54545455%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 63.63636364%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 72.72727273%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 81.81818182%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 90.90909091%;
  }
  .aem-Grid.aem-Grid--default--11 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--default--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
    margin-left: 100%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--1 {
    float: left;
    clear: none;
    width: 8.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--2 {
    float: left;
    clear: none;
    width: 16.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--3 {
    float: left;
    clear: none;
    width: 25%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--4 {
    float: left;
    clear: none;
    width: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--5 {
    float: left;
    clear: none;
    width: 41.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--6 {
    float: left;
    clear: none;
    width: 50%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--7 {
    float: left;
    clear: none;
    width: 58.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    float: left;
    clear: none;
    width: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--9 {
    float: left;
    clear: none;
    width: 75%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--10 {
    float: left;
    clear: none;
    width: 83.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--11 {
    float: left;
    clear: none;
    width: 91.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 {
    float: left;
    clear: none;
    width: 100%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--0 {
    margin-left: 0%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--1 {
    margin-left: 8.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--2 {
    margin-left: 16.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--3 {
    margin-left: 25%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--4 {
    margin-left: 33.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--5 {
    margin-left: 41.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--6 {
    margin-left: 50%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--7 {
    margin-left: 58.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--8 {
    margin-left: 66.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--9 {
    margin-left: 75%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--10 {
    margin-left: 83.33333333%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--11 {
    margin-left: 91.66666667%;
  }
  .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--offset--default--12 {
    margin-left: 100%;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--default--newline {
    /* newline behavior */
    display: block;
    clear: both !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--default--none {
    /* none behavior */
    display: block;
    clear: none !important;
  }
  .aem-Grid > .aem-GridColumn.aem-GridColumn--default--hide {
    /* hide behavior */
    display: none;
  }
}

/* The Guide Styles v1.0.2 | 19-02-2016 12:51:17 */
@charset "UTF-8";
.tg .col-static {
  position: static !important;
}
.tg .cms-content-fix > .content-max-width {
  max-width: 550px;
}
.tg .cms-content-fix ul {
  display: block;
  max-width: 550px;
  margin: 0;
  padding: 0 0 12px 19px;
}
.tg .cms-content-fix ul > li ol > li {
  position: relative;
  list-style-type: decimal;
  padding: 0;
}
.tg .cms-content-fix ul > li ol > li:before {
  display: none;
}
.tg .cms-content-fix .cms-list-linklist ul,
.tg .cms-content-fix .cms-list-linklist ol {
  list-style: none;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 0;
}
.tg .cms-content-fix .cms-list-linklist ul li,
.tg .cms-content-fix .cms-list-linklist ol li {
  position: relative;
  padding-left: 20px;
}
.tg .cms-content-fix .cms-list-linklist ul li:before,
.tg .cms-content-fix .cms-list-linklist ol li:before,
.tg .cms-content-fix .cms-list-linklist ul li > .stacked-icon,
.tg .cms-content-fix .cms-list-linklist ol li > .stacked-icon,
.tg .cms-content-fix .cms-list-linklist ul li > .icon,
.tg .cms-content-fix .cms-list-linklist ol li > .icon {
  position: absolute;
  top: 4px;
  left: 0;
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e952";
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
}
.tg .cms-content-fix .cms-list-linklist ul li:before:before,
.tg .cms-content-fix .cms-list-linklist ol li:before:before,
.tg .cms-content-fix .cms-list-linklist ul li > .stacked-icon:before,
.tg .cms-content-fix .cms-list-linklist ol li > .stacked-icon:before,
.tg .cms-content-fix .cms-list-linklist ul li > .icon:before,
.tg .cms-content-fix .cms-list-linklist ol li > .icon:before {
  content: "\e952" !important;
}
.tg .cms-content-fix .cms-list-linklist ul li > a,
.tg .cms-content-fix .cms-list-linklist ol li > a {
  color: inherit;
  text-decoration: none;
}
.tg .cms-content-fix .cms-list-linklist ul li > a:hover,
.tg .cms-content-fix .cms-list-linklist ol li > a:hover {
  text-decoration: underline;
}
.tg .cms-content-fix .cms-list-linklist ul li li,
.tg .cms-content-fix .cms-list-linklist ol li li {
  padding: 0;
}
.tg .cms-content-fix strong,
.tg .cms-content-fix b {
  font-weight: bold;
}
.tg .cms-content-fix h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .cms-content-fix h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .cms-content-fix h4,
.tg .cms-content-fix h5,
.tg .cms-content-fix h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media print {
  .tg * {
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  .tg a,
  .tg a:visited {
    text-decoration: underline;
  }
  .tg abbr[title]:after {
    display: none;
  }
  .tg pre,
  .tg blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  .tg thead {
    display: table-header-group;
  }
  .tg tr,
  .tg img {
    page-break-inside: avoid;
  }
  .tg img {
    max-width: 100% !important;
  }
@page {
    margin: 2cm .5cm;
}
  .tg p,
  .tg h2,
  .tg h3 {
    orphans: 3;
    widows: 3;
  }
  .tg h2,
  .tg h3 {
    page-break-after: avoid;
  }
  .tg {
    padding-top: 0 !important;
  }
  .tg header,
  .tg nav,
  .tg aside,
  .tg footer {
    display: none;
  }
  .tg .subhead {
    padding-top: 0 !important;
  }
  .tg .label {
    border: 1px solid #000;
  }
  .tg .navbar {
    display: none;
  }
  .tg .table {
    border-collapse: collapse !important;
  }
  .tg .table td,
  .tg .table th {
    background-color: #fff !important;
  }
  .tg .table-bordered th,
  .tg .table-bordered td {
    border: 1px solid #ddd !important;
  }
  .tg .table-a th {
    color: #000000;
  }
  .tg .icon {
    display: none;
  }
  .tg .stacked-icon .icon {
    display: none;
  }
  .tg .stacked-icon-text {
    color: #000000;
  }
  .tg .hidden-print {
    display: none !important;
  }
  .print-hide-header .riaf-header {
    display: none !important;
  }
  .print-hide-search #q-go {
    display: none !important;
  }
  .print-hide-pagetitle .riaf-header-pagetitle {
    display: none !important;
  }
  .print-hide-navigator .riaf-navigator {
    display: none !important;
  }
  .print-hide-sidebar .riaf-workbench {
    display: none !important;
  }
  .print-hide-footer .riaf-doormat {
    display: none !important;
  }
}
.tg div.riaf-main {
  overflow: visible;
}
.tg div.riaf-main:before,
.tg div.riaf-main:after {
  content: " ";
  display: table;
}
.tg div.riaf-main:after {
  clear: both;
}
.tg .alert {
  width: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
}
.tg .alert span {
  color: #333333;
}
.tg .alert .icon-black {
  color: #000000;
}
.tg .alert .icon-gray-darker {
  color: #333333;
}
.tg .alert .icon-gray-dark {
  color: #767676;
}
.tg .alert .icon-gray {
  color: #adadad;
}
.tg .alert .icon-gray-light {
  color: #d5d5d5;
}
.tg .alert .icon-gray-lighter {
  color: #ebebeb;
}
.tg .alert .icon-white {
  color: #ffffff;
}
.tg .alert .icon-blue {
  color: #000066;
}
.tg .alert .icon-blue-light {
  color: #60a6da;
}
.tg .alert .icon-green {
  color: #349651;
}
.tg .alert .icon-orange {
  color: #ff6200;
}
.tg .alert .icon-red {
  color: #ff0000;
}
.tg .alert a:link,
.tg .alert a:visited {
  text-decoration: underline;
}
.tg .alert a:link.close,
.tg .alert a:visited.close {
  text-decoration: none;
}
.tg .alert a:hover {
  text-decoration: none;
}
.tg .table .alert {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
.tg label {
  font-weight: normal;
}
.tg textarea {
  text-indent: 0;
}
.tg .message {
  margin-bottom: 0;
  background-color: inherit;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.tg .message > span {
  line-height: 1;
}
.tg .riaf-link-correction {
  display: inline !important;
  color: #333333 !important;
  height: auto !important;
  line-height: inherit !important;
  font-size: inherit !important;
  font-weight: normal !important;
  padding-left: 0 !important;
  outline-offset: 0 !important;
  text-decoration: underline !important;
  background: none !important;
}
.tg .riaf-link-correction:hover {
  text-decoration: none !important;
}
.tg ul li,
.tg ol li {
  list-style: inherit;
}
.tg .alert .icon-orange {
  color: #ff6200;
}
.tg .list-checklist li {
  background: none;
  line-height: 1.5;
  height: auto;
}
.tg .rockwell {
  font-family: INGMe, "Arial", sans-serif;
}
.tg {
  font-family: sans-serif;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
.tg {
  font-family: INGMe, "Arial", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #333333;
  margin: 0 auto;
}
.tg article,
.tg aside,
.tg details,
.tg footer,
.tg header,
.tg hgroup,
.tg main,
.tg nav,
.tg section,
.tg summary,
.tg figcaption,
.tg figure {
  display: block;
}
.tg figure {
  margin: 0;
}
.tg template {
  display: none;
}
.tg audio,
.tg canvas,
.tg video {
  display: inline-block;
}
.tg audio:not([controls]) {
  display: none;
  height: 0;
}
.tg [hidden] {
  display: none;
}
.tg * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tg *:before,
.tg *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tg .clearfix:before,
.tg .clearfix:after,
.tg .container:before,
.tg .container:after,
.tg .container-fluid:before,
.tg .container-fluid:after,
.tg .row:before,
.tg .row:after,
.tg .row-table:before,
.tg .row-table:after,
.tg .dl-grid:before,
.tg .dl-grid:after,
.tg .fieldset-row:before,
.tg .fieldset-row:after,
.tg .form-group:before,
.tg .form-group:after,
.tg .brandbar-header:before,
.tg .brandbar-header:after,
.tg .flip-counter-segments:before,
.tg .flip-counter-segments:after,
.tg .media:before,
.tg .media:after,
.tg .media-dialog:before,
.tg .media-dialog:after,
.tg .media-list:before,
.tg .media-list:after {
  content: " ";
  display: table;
}
.tg .clearfix:after,
.tg .container:after,
.tg .container-fluid:after,
.tg .row:after,
.tg .row-table:after,
.tg .dl-grid:after,
.tg .fieldset-row:after,
.tg .form-group:after,
.tg .brandbar-header:after,
.tg .flip-counter-segments:after,
.tg .media:after,
.tg .media-dialog:after,
.tg .media-list:after {
  clear: both;
}
.tg .collapse {
  display: none;
}
.tg .collapse.in {
  display: block;
}
.tg .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease;
}
.tg .fade {
  opacity: 0;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.tg .fade.in {
  opacity: 1;
}
@-webkit-keyframes highlight {
  0% {
    background-color: #ffffff;
  }
  50% {
    background-color: #fff3eb;
  }
  100% {
    background-color: #ffffff;
  }
}
@keyframes highlight {
  0% {
    background-color: #ffffff;
  }
  50% {
    background-color: #fff3eb;
  }
  100% {
    background-color: #ffffff;
  }
}
.tg .animation-highlight {
  -webkit-animation: highlight 2s ease 1;
  animation: highlight 2s ease 1;
}
.tg .animate-fade.ng-enter,
.tg .animate-fade.ng-leave.ng-leave-active,
.tg .animate-fade.ng-hide-remove,
.tg .animate-fade.ng-hide-add.ng-hide-add-active,
.tg .animate-fade.sr-only-remove,
.tg .animate-fade.sr-only-add.sr-only-add-active {
  opacity: 0;
  -webkit-transition: opacity 0.6s linear;
  -o-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
}
.tg .animate-fade.ng-leave,
.tg .animate-fade.ng-enter.ng-enter-active,
.tg .animate-fade.ng-hide-add,
.tg .animate-fade.ng-hide-remove.ng-hide-remove-active,
.tg .animate-fade.sr-only-add,
.tg .animate-fade.sr-only-remove.sr-only-remove-active {
  opacity: 1;
  -webkit-transition: opacity 0.6s linear;
  -o-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
}
.tg .animate-collapse.ng-enter,
.tg .animate-collapse.ng-leave.ng-leave-active,
.tg .animate-collapse.ng-hide-remove,
.tg .animate-collapse.ng-hide-add.ng-hide-add-active,
.tg .animate-collapse.sr-only-remove,
.tg .animate-collapse.sr-only-add.sr-only-add-active {
  overflow: hidden;
  max-height: 0px;
}
.tg .animate-collapse.ng-leave,
.tg .animate-collapse.ng-enter.ng-enter-active,
.tg .animate-collapse.ng-hide-add,
.tg .animate-collapse.ng-hide-remove.ng-hide-remove-active,
.tg .animate-collapse.sr-only-add,
.tg .animate-collapse.sr-only-remove.sr-only-remove-active {
  max-height: 9999px;
}
.tg .animate-collapse.ng-enter,
.tg .animate-collapse.ng-hide-remove,
.tg .animate-collapse.sr-only-remove {
  -webkit-transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
  -o-transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
  transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
}
.tg .animate-collapse.ng-leave,
.tg .animate-collapse.ng-hide-add,
.tg .animate-collapse.sr-only-add {
  -webkit-transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  -o-transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.1s;
}
.tg .duration-in-none.ng-enter,
.tg .duration-in-none.ng-hide-add.ng-hide-add-active,
.tg .duration-in-none.ng-hide-remove,
.tg .duration-in-none.ng-leave.ng-leave-active,
.tg .duration-in-none.sr-only-add.sr-only-add-active,
.tg .duration-in-none.sr-only-remove,
.tg .duration-out-none.ng-enter.ng-enter-active,
.tg .duration-out-none.ng-hide-add,
.tg .duration-out-none.ng-hide-remove.ng-hide-remove-active .duration-out-none.ng-leave,
.tg .duration-out-none.sr-only-add,
.tg .duration-out-none.sr-only-remove.sr-only-remove-active {
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.tg .duration-in-slow.ng-enter,
.tg .duration-in-slow.ng-hide-add.ng-hide-add-active,
.tg .duration-in-slow.ng-hide-remove,
.tg .duration-in-slow.ng-leave.ng-leave-active,
.tg .duration-in-slow.sr-only-add.sr-only-add-active,
.tg .duration-in-slow.sr-only-remove,
.tg .duration-out-slow.ng-enter.ng-enter-active,
.tg .duration-out-slow.ng-hide-add,
.tg .duration-out-slow.ng-hide-remove.ng-hide-remove-active .duration-out-slow.ng-leave,
.tg .duration-out-slow.sr-only-add,
.tg .duration-out-slow.sr-only-remove.sr-only-remove-active {
  -webkit-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}
.tg .duration-in-medium.ng-enter,
.tg .duration-in-medium.ng-hide-add.ng-hide-add-active,
.tg .duration-in-medium.ng-hide-remove,
.tg .duration-in-medium.ng-leave.ng-leave-active,
.tg .duration-in-medium.sr-only-add.sr-only-add-active,
.tg .duration-in-medium.sr-only-remove,
.tg .duration-out-medium.ng-enter.ng-enter-active,
.tg .duration-out-medium.ng-hide-add,
.tg .duration-out-medium.ng-hide-remove.ng-hide-remove-active .duration-out-medium.ng-leave,
.tg .duration-out-medium.sr-only-add,
.tg .duration-out-medium.sr-only-remove.sr-only-remove-active {
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.tg .duration-in-fast.ng-enter,
.tg .duration-in-fast.ng-hide-add.ng-hide-add-active,
.tg .duration-in-fast.ng-hide-remove,
.tg .duration-in-fast.ng-leave.ng-leave-active,
.tg .duration-in-fast.sr-only-add.sr-only-add-active,
.tg .duration-in-fast.sr-only-remove,
.tg .duration-out-fast.ng-enter.ng-enter-active,
.tg .duration-out-fast.ng-hide-add,
.tg .duration-out-fast.ng-hide-remove.ng-hide-remove-active .duration-out-fast.ng-leave,
.tg .duration-out-fast.sr-only-add,
.tg .duration-out-fast.sr-only-remove.sr-only-remove-active {
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.tg .col-xxs-1,
.tg .col-xs-1,
.tg .col-sm-1,
.tg .col-md-1,
.tg .col-lg-1,
.tg .col-xl-1,
.tg .col-xxs-2,
.tg .col-xs-2,
.tg .col-sm-2,
.tg .col-md-2,
.tg .col-lg-2,
.tg .col-xl-2,
.tg .col-xxs-3,
.tg .col-xs-3,
.tg .col-sm-3,
.tg .col-md-3,
.tg .col-lg-3,
.tg .col-xl-3,
.tg .col-xxs-4,
.tg .col-xs-4,
.tg .col-sm-4,
.tg .col-md-4,
.tg .col-lg-4,
.tg .col-xl-4,
.tg .col-xxs-5,
.tg .col-xs-5,
.tg .col-sm-5,
.tg .col-md-5,
.tg .col-lg-5,
.tg .col-xl-5,
.tg .col-xxs-6,
.tg .col-xs-6,
.tg .col-sm-6,
.tg .col-md-6,
.tg .col-lg-6,
.tg .col-xl-6,
.tg .col-xxs-7,
.tg .col-xs-7,
.tg .col-sm-7,
.tg .col-md-7,
.tg .col-lg-7,
.tg .col-xl-7,
.tg .col-xxs-8,
.tg .col-xs-8,
.tg .col-sm-8,
.tg .col-md-8,
.tg .col-lg-8,
.tg .col-xl-8,
.tg .col-xxs-9,
.tg .col-xs-9,
.tg .col-sm-9,
.tg .col-md-9,
.tg .col-lg-9,
.tg .col-xl-9,
.tg .col-xxs-10,
.tg .col-xs-10,
.tg .col-sm-10,
.tg .col-md-10,
.tg .col-lg-10,
.tg .col-xl-10,
.tg .col-xxs-11,
.tg .col-xs-11,
.tg .col-sm-11,
.tg .col-md-11,
.tg .col-lg-11,
.tg .col-xl-11,
.tg .col-xxs-12,
.tg .col-xs-12,
.tg .col-sm-12,
.tg .col-md-12,
.tg .col-lg-12,
.tg .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.tg .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 480px) {
  .tg .container {
    width: 480px;
  }
}
@media (min-width: 680px) {
  .tg .container {
    width: 648px;
  }
}
@media (min-width: 768px) {
  .tg .container {
    width: 744px;
  }
}
@media (min-width: 992px) {
  .tg .container {
    width: 960px;
  }
}
@media (min-width: 1200px) {
  .tg .container {
    width: 1140px;
  }
}
.tg .container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.tg .row {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .row-table {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .row-table > .row-table-table {
  display: table;
  width: 100%;
}
.tg .row-table > .row-table-table > [class*="col-"] {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.tg .row-cols-stretch {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.tg .row-cols-stretch:before,
.tg .row-cols-stretch:after {
  content: none;
}
.tg .col-xxs-1,
.tg .col-xxs-2,
.tg .col-xxs-3,
.tg .col-xxs-4,
.tg .col-xxs-5,
.tg .col-xxs-6,
.tg .col-xxs-7,
.tg .col-xxs-8,
.tg .col-xxs-9,
.tg .col-xxs-10,
.tg .col-xxs-11,
.tg .col-xxs-12 {
  float: left;
}
.tg .col-xxs-12 {
  width: 100%;
}
.tg .col-xxs-11 {
  width: 91.66666667%;
}
.tg .col-xxs-10 {
  width: 83.33333333%;
}
.tg .col-xxs-9 {
  width: 75%;
}
.tg .col-xxs-8 {
  width: 66.66666667%;
}
.tg .col-xxs-7 {
  width: 58.33333333%;
}
.tg .col-xxs-6 {
  width: 50%;
}
.tg .col-xxs-5 {
  width: 41.66666667%;
}
.tg .col-xxs-4 {
  width: 33.33333333%;
}
.tg .col-xxs-3 {
  width: 25%;
}
.tg .col-xxs-2 {
  width: 16.66666667%;
}
.tg .col-xxs-1 {
  width: 8.33333333%;
}
.tg .col-xxs-pull-12 {
  right: 100%;
}
.tg .col-xxs-pull-11 {
  right: 91.66666667%;
}
.tg .col-xxs-pull-10 {
  right: 83.33333333%;
}
.tg .col-xxs-pull-9 {
  right: 75%;
}
.tg .col-xxs-pull-8 {
  right: 66.66666667%;
}
.tg .col-xxs-pull-7 {
  right: 58.33333333%;
}
.tg .col-xxs-pull-6 {
  right: 50%;
}
.tg .col-xxs-pull-5 {
  right: 41.66666667%;
}
.tg .col-xxs-pull-4 {
  right: 33.33333333%;
}
.tg .col-xxs-pull-3 {
  right: 25%;
}
.tg .col-xxs-pull-2 {
  right: 16.66666667%;
}
.tg .col-xxs-pull-1 {
  right: 8.33333333%;
}
.tg .col-xxs-pull-0 {
  right: auto;
}
.tg .col-xxs-push-12 {
  left: 100%;
}
.tg .col-xxs-push-11 {
  left: 91.66666667%;
}
.tg .col-xxs-push-10 {
  left: 83.33333333%;
}
.tg .col-xxs-push-9 {
  left: 75%;
}
.tg .col-xxs-push-8 {
  left: 66.66666667%;
}
.tg .col-xxs-push-7 {
  left: 58.33333333%;
}
.tg .col-xxs-push-6 {
  left: 50%;
}
.tg .col-xxs-push-5 {
  left: 41.66666667%;
}
.tg .col-xxs-push-4 {
  left: 33.33333333%;
}
.tg .col-xxs-push-3 {
  left: 25%;
}
.tg .col-xxs-push-2 {
  left: 16.66666667%;
}
.tg .col-xxs-push-1 {
  left: 8.33333333%;
}
.tg .col-xxs-push-0 {
  left: auto;
}
.tg .col-xxs-offset-12 {
  margin-left: 100%;
}
.tg .col-xxs-offset-11 {
  margin-left: 91.66666667%;
}
.tg .col-xxs-offset-10 {
  margin-left: 83.33333333%;
}
.tg .col-xxs-offset-9 {
  margin-left: 75%;
}
.tg .col-xxs-offset-8 {
  margin-left: 66.66666667%;
}
.tg .col-xxs-offset-7 {
  margin-left: 58.33333333%;
}
.tg .col-xxs-offset-6 {
  margin-left: 50%;
}
.tg .col-xxs-offset-5 {
  margin-left: 41.66666667%;
}
.tg .col-xxs-offset-4 {
  margin-left: 33.33333333%;
}
.tg .col-xxs-offset-3 {
  margin-left: 25%;
}
.tg .col-xxs-offset-2 {
  margin-left: 16.66666667%;
}
.tg .col-xxs-offset-1 {
  margin-left: 8.33333333%;
}
.tg .col-xxs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 480px) {
  .tg .col-xs-1,
  .tg .col-xs-2,
  .tg .col-xs-3,
  .tg .col-xs-4,
  .tg .col-xs-5,
  .tg .col-xs-6,
  .tg .col-xs-7,
  .tg .col-xs-8,
  .tg .col-xs-9,
  .tg .col-xs-10,
  .tg .col-xs-11,
  .tg .col-xs-12 {
    float: left;
  }
  .tg .col-xs-12 {
    width: 100%;
  }
  .tg .col-xs-11 {
    width: 91.66666667%;
  }
  .tg .col-xs-10 {
    width: 83.33333333%;
  }
  .tg .col-xs-9 {
    width: 75%;
  }
  .tg .col-xs-8 {
    width: 66.66666667%;
  }
  .tg .col-xs-7 {
    width: 58.33333333%;
  }
  .tg .col-xs-6 {
    width: 50%;
  }
  .tg .col-xs-5 {
    width: 41.66666667%;
  }
  .tg .col-xs-4 {
    width: 33.33333333%;
  }
  .tg .col-xs-3 {
    width: 25%;
  }
  .tg .col-xs-2 {
    width: 16.66666667%;
  }
  .tg .col-xs-1 {
    width: 8.33333333%;
  }
  .tg .col-xs-pull-12 {
    right: 100%;
  }
  .tg .col-xs-pull-11 {
    right: 91.66666667%;
  }
  .tg .col-xs-pull-10 {
    right: 83.33333333%;
  }
  .tg .col-xs-pull-9 {
    right: 75%;
  }
  .tg .col-xs-pull-8 {
    right: 66.66666667%;
  }
  .tg .col-xs-pull-7 {
    right: 58.33333333%;
  }
  .tg .col-xs-pull-6 {
    right: 50%;
  }
  .tg .col-xs-pull-5 {
    right: 41.66666667%;
  }
  .tg .col-xs-pull-4 {
    right: 33.33333333%;
  }
  .tg .col-xs-pull-3 {
    right: 25%;
  }
  .tg .col-xs-pull-2 {
    right: 16.66666667%;
  }
  .tg .col-xs-pull-1 {
    right: 8.33333333%;
  }
  .tg .col-xs-pull-0 {
    right: auto;
  }
  .tg .col-xs-push-12 {
    left: 100%;
  }
  .tg .col-xs-push-11 {
    left: 91.66666667%;
  }
  .tg .col-xs-push-10 {
    left: 83.33333333%;
  }
  .tg .col-xs-push-9 {
    left: 75%;
  }
  .tg .col-xs-push-8 {
    left: 66.66666667%;
  }
  .tg .col-xs-push-7 {
    left: 58.33333333%;
  }
  .tg .col-xs-push-6 {
    left: 50%;
  }
  .tg .col-xs-push-5 {
    left: 41.66666667%;
  }
  .tg .col-xs-push-4 {
    left: 33.33333333%;
  }
  .tg .col-xs-push-3 {
    left: 25%;
  }
  .tg .col-xs-push-2 {
    left: 16.66666667%;
  }
  .tg .col-xs-push-1 {
    left: 8.33333333%;
  }
  .tg .col-xs-push-0 {
    left: auto;
  }
  .tg .col-xs-offset-12 {
    margin-left: 100%;
  }
  .tg .col-xs-offset-11 {
    margin-left: 91.66666667%;
  }
  .tg .col-xs-offset-10 {
    margin-left: 83.33333333%;
  }
  .tg .col-xs-offset-9 {
    margin-left: 75%;
  }
  .tg .col-xs-offset-8 {
    margin-left: 66.66666667%;
  }
  .tg .col-xs-offset-7 {
    margin-left: 58.33333333%;
  }
  .tg .col-xs-offset-6 {
    margin-left: 50%;
  }
  .tg .col-xs-offset-5 {
    margin-left: 41.66666667%;
  }
  .tg .col-xs-offset-4 {
    margin-left: 33.33333333%;
  }
  .tg .col-xs-offset-3 {
    margin-left: 25%;
  }
  .tg .col-xs-offset-2 {
    margin-left: 16.66666667%;
  }
  .tg .col-xs-offset-1 {
    margin-left: 8.33333333%;
  }
  .tg .col-xs-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 680px) {
  .tg .col-sm-1,
  .tg .col-sm-2,
  .tg .col-sm-3,
  .tg .col-sm-4,
  .tg .col-sm-5,
  .tg .col-sm-6,
  .tg .col-sm-7,
  .tg .col-sm-8,
  .tg .col-sm-9,
  .tg .col-sm-10,
  .tg .col-sm-11,
  .tg .col-sm-12 {
    float: left;
  }
  .tg .col-sm-12 {
    width: 100%;
  }
  .tg .col-sm-11 {
    width: 91.66666667%;
  }
  .tg .col-sm-10 {
    width: 83.33333333%;
  }
  .tg .col-sm-9 {
    width: 75%;
  }
  .tg .col-sm-8 {
    width: 66.66666667%;
  }
  .tg .col-sm-7 {
    width: 58.33333333%;
  }
  .tg .col-sm-6 {
    width: 50%;
  }
  .tg .col-sm-5 {
    width: 41.66666667%;
  }
  .tg .col-sm-4 {
    width: 33.33333333%;
  }
  .tg .col-sm-3 {
    width: 25%;
  }
  .tg .col-sm-2 {
    width: 16.66666667%;
  }
  .tg .col-sm-1 {
    width: 8.33333333%;
  }
  .tg .col-sm-pull-12 {
    right: 100%;
  }
  .tg .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .tg .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .tg .col-sm-pull-9 {
    right: 75%;
  }
  .tg .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .tg .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .tg .col-sm-pull-6 {
    right: 50%;
  }
  .tg .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .tg .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .tg .col-sm-pull-3 {
    right: 25%;
  }
  .tg .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .tg .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .tg .col-sm-pull-0 {
    right: auto;
  }
  .tg .col-sm-push-12 {
    left: 100%;
  }
  .tg .col-sm-push-11 {
    left: 91.66666667%;
  }
  .tg .col-sm-push-10 {
    left: 83.33333333%;
  }
  .tg .col-sm-push-9 {
    left: 75%;
  }
  .tg .col-sm-push-8 {
    left: 66.66666667%;
  }
  .tg .col-sm-push-7 {
    left: 58.33333333%;
  }
  .tg .col-sm-push-6 {
    left: 50%;
  }
  .tg .col-sm-push-5 {
    left: 41.66666667%;
  }
  .tg .col-sm-push-4 {
    left: 33.33333333%;
  }
  .tg .col-sm-push-3 {
    left: 25%;
  }
  .tg .col-sm-push-2 {
    left: 16.66666667%;
  }
  .tg .col-sm-push-1 {
    left: 8.33333333%;
  }
  .tg .col-sm-push-0 {
    left: auto;
  }
  .tg .col-sm-offset-12 {
    margin-left: 100%;
  }
  .tg .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .tg .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .tg .col-sm-offset-9 {
    margin-left: 75%;
  }
  .tg .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .tg .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .tg .col-sm-offset-6 {
    margin-left: 50%;
  }
  .tg .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .tg .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .tg .col-sm-offset-3 {
    margin-left: 25%;
  }
  .tg .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .tg .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .tg .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 768px) {
  .tg .col-md-1,
  .tg .col-md-2,
  .tg .col-md-3,
  .tg .col-md-4,
  .tg .col-md-5,
  .tg .col-md-6,
  .tg .col-md-7,
  .tg .col-md-8,
  .tg .col-md-9,
  .tg .col-md-10,
  .tg .col-md-11,
  .tg .col-md-12 {
    float: left;
  }
  .tg .col-md-12 {
    width: 100%;
  }
  .tg .col-md-11 {
    width: 91.66666667%;
  }
  .tg .col-md-10 {
    width: 83.33333333%;
  }
  .tg .col-md-9 {
    width: 75%;
  }
  .tg .col-md-8 {
    width: 66.66666667%;
  }
  .tg .col-md-7 {
    width: 58.33333333%;
  }
  .tg .col-md-6 {
    width: 50%;
  }
  .tg .col-md-5 {
    width: 41.66666667%;
  }
  .tg .col-md-4 {
    width: 33.33333333%;
  }
  .tg .col-md-3 {
    width: 25%;
  }
  .tg .col-md-2 {
    width: 16.66666667%;
  }
  .tg .col-md-1 {
    width: 8.33333333%;
  }
  .tg .col-md-pull-12 {
    right: 100%;
  }
  .tg .col-md-pull-11 {
    right: 91.66666667%;
  }
  .tg .col-md-pull-10 {
    right: 83.33333333%;
  }
  .tg .col-md-pull-9 {
    right: 75%;
  }
  .tg .col-md-pull-8 {
    right: 66.66666667%;
  }
  .tg .col-md-pull-7 {
    right: 58.33333333%;
  }
  .tg .col-md-pull-6 {
    right: 50%;
  }
  .tg .col-md-pull-5 {
    right: 41.66666667%;
  }
  .tg .col-md-pull-4 {
    right: 33.33333333%;
  }
  .tg .col-md-pull-3 {
    right: 25%;
  }
  .tg .col-md-pull-2 {
    right: 16.66666667%;
  }
  .tg .col-md-pull-1 {
    right: 8.33333333%;
  }
  .tg .col-md-pull-0 {
    right: auto;
  }
  .tg .col-md-push-12 {
    left: 100%;
  }
  .tg .col-md-push-11 {
    left: 91.66666667%;
  }
  .tg .col-md-push-10 {
    left: 83.33333333%;
  }
  .tg .col-md-push-9 {
    left: 75%;
  }
  .tg .col-md-push-8 {
    left: 66.66666667%;
  }
  .tg .col-md-push-7 {
    left: 58.33333333%;
  }
  .tg .col-md-push-6 {
    left: 50%;
  }
  .tg .col-md-push-5 {
    left: 41.66666667%;
  }
  .tg .col-md-push-4 {
    left: 33.33333333%;
  }
  .tg .col-md-push-3 {
    left: 25%;
  }
  .tg .col-md-push-2 {
    left: 16.66666667%;
  }
  .tg .col-md-push-1 {
    left: 8.33333333%;
  }
  .tg .col-md-push-0 {
    left: auto;
  }
  .tg .col-md-offset-12 {
    margin-left: 100%;
  }
  .tg .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .tg .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .tg .col-md-offset-9 {
    margin-left: 75%;
  }
  .tg .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .tg .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .tg .col-md-offset-6 {
    margin-left: 50%;
  }
  .tg .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .tg .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .tg .col-md-offset-3 {
    margin-left: 25%;
  }
  .tg .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .tg .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .tg .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .tg .col-lg-1,
  .tg .col-lg-2,
  .tg .col-lg-3,
  .tg .col-lg-4,
  .tg .col-lg-5,
  .tg .col-lg-6,
  .tg .col-lg-7,
  .tg .col-lg-8,
  .tg .col-lg-9,
  .tg .col-lg-10,
  .tg .col-lg-11,
  .tg .col-lg-12 {
    float: left;
  }
  .tg .col-lg-12 {
    width: 100%;
  }
  .tg .col-lg-11 {
    width: 91.66666667%;
  }
  .tg .col-lg-10 {
    width: 83.33333333%;
  }
  .tg .col-lg-9 {
    width: 75%;
  }
  .tg .col-lg-8 {
    width: 66.66666667%;
  }
  .tg .col-lg-7 {
    width: 58.33333333%;
  }
  .tg .col-lg-6 {
    width: 50%;
  }
  .tg .col-lg-5 {
    width: 41.66666667%;
  }
  .tg .col-lg-4 {
    width: 33.33333333%;
  }
  .tg .col-lg-3 {
    width: 25%;
  }
  .tg .col-lg-2 {
    width: 16.66666667%;
  }
  .tg .col-lg-1 {
    width: 8.33333333%;
  }
  .tg .col-lg-pull-12 {
    right: 100%;
  }
  .tg .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .tg .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .tg .col-lg-pull-9 {
    right: 75%;
  }
  .tg .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .tg .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .tg .col-lg-pull-6 {
    right: 50%;
  }
  .tg .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .tg .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .tg .col-lg-pull-3 {
    right: 25%;
  }
  .tg .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .tg .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .tg .col-lg-pull-0 {
    right: auto;
  }
  .tg .col-lg-push-12 {
    left: 100%;
  }
  .tg .col-lg-push-11 {
    left: 91.66666667%;
  }
  .tg .col-lg-push-10 {
    left: 83.33333333%;
  }
  .tg .col-lg-push-9 {
    left: 75%;
  }
  .tg .col-lg-push-8 {
    left: 66.66666667%;
  }
  .tg .col-lg-push-7 {
    left: 58.33333333%;
  }
  .tg .col-lg-push-6 {
    left: 50%;
  }
  .tg .col-lg-push-5 {
    left: 41.66666667%;
  }
  .tg .col-lg-push-4 {
    left: 33.33333333%;
  }
  .tg .col-lg-push-3 {
    left: 25%;
  }
  .tg .col-lg-push-2 {
    left: 16.66666667%;
  }
  .tg .col-lg-push-1 {
    left: 8.33333333%;
  }
  .tg .col-lg-push-0 {
    left: auto;
  }
  .tg .col-lg-offset-12 {
    margin-left: 100%;
  }
  .tg .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .tg .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .tg .col-lg-offset-9 {
    margin-left: 75%;
  }
  .tg .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .tg .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .tg .col-lg-offset-6 {
    margin-left: 50%;
  }
  .tg .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .tg .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .tg .col-lg-offset-3 {
    margin-left: 25%;
  }
  .tg .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .tg .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .tg .col-lg-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .tg .col-xl-1,
  .tg .col-xl-2,
  .tg .col-xl-3,
  .tg .col-xl-4,
  .tg .col-xl-5,
  .tg .col-xl-6,
  .tg .col-xl-7,
  .tg .col-xl-8,
  .tg .col-xl-9,
  .tg .col-xl-10,
  .tg .col-xl-11,
  .tg .col-xl-12 {
    float: left;
  }
  .tg .col-xl-12 {
    width: 100%;
  }
  .tg .col-xl-11 {
    width: 91.66666667%;
  }
  .tg .col-xl-10 {
    width: 83.33333333%;
  }
  .tg .col-xl-9 {
    width: 75%;
  }
  .tg .col-xl-8 {
    width: 66.66666667%;
  }
  .tg .col-xl-7 {
    width: 58.33333333%;
  }
  .tg .col-xl-6 {
    width: 50%;
  }
  .tg .col-xl-5 {
    width: 41.66666667%;
  }
  .tg .col-xl-4 {
    width: 33.33333333%;
  }
  .tg .col-xl-3 {
    width: 25%;
  }
  .tg .col-xl-2 {
    width: 16.66666667%;
  }
  .tg .col-xl-1 {
    width: 8.33333333%;
  }
  .tg .col-xl-pull-12 {
    right: 100%;
  }
  .tg .col-xl-pull-11 {
    right: 91.66666667%;
  }
  .tg .col-xl-pull-10 {
    right: 83.33333333%;
  }
  .tg .col-xl-pull-9 {
    right: 75%;
  }
  .tg .col-xl-pull-8 {
    right: 66.66666667%;
  }
  .tg .col-xl-pull-7 {
    right: 58.33333333%;
  }
  .tg .col-xl-pull-6 {
    right: 50%;
  }
  .tg .col-xl-pull-5 {
    right: 41.66666667%;
  }
  .tg .col-xl-pull-4 {
    right: 33.33333333%;
  }
  .tg .col-xl-pull-3 {
    right: 25%;
  }
  .tg .col-xl-pull-2 {
    right: 16.66666667%;
  }
  .tg .col-xl-pull-1 {
    right: 8.33333333%;
  }
  .tg .col-xl-pull-0 {
    right: auto;
  }
  .tg .col-xl-push-12 {
    left: 100%;
  }
  .tg .col-xl-push-11 {
    left: 91.66666667%;
  }
  .tg .col-xl-push-10 {
    left: 83.33333333%;
  }
  .tg .col-xl-push-9 {
    left: 75%;
  }
  .tg .col-xl-push-8 {
    left: 66.66666667%;
  }
  .tg .col-xl-push-7 {
    left: 58.33333333%;
  }
  .tg .col-xl-push-6 {
    left: 50%;
  }
  .tg .col-xl-push-5 {
    left: 41.66666667%;
  }
  .tg .col-xl-push-4 {
    left: 33.33333333%;
  }
  .tg .col-xl-push-3 {
    left: 25%;
  }
  .tg .col-xl-push-2 {
    left: 16.66666667%;
  }
  .tg .col-xl-push-1 {
    left: 8.33333333%;
  }
  .tg .col-xl-push-0 {
    left: auto;
  }
  .tg .col-xl-offset-12 {
    margin-left: 100%;
  }
  .tg .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .tg .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .tg .col-xl-offset-9 {
    margin-left: 75%;
  }
  .tg .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .tg .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .tg .col-xl-offset-6 {
    margin-left: 50%;
  }
  .tg .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .tg .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .tg .col-xl-offset-3 {
    margin-left: 25%;
  }
  .tg .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .tg .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .tg .col-xl-offset-0 {
    margin-left: 0%;
  }
}
.tg .l-w-1 {
  width: 1% !important;
}
.tg .l-w-0 {
  width: 0% !important;
}
.tg .l-w-5 {
  width: 5% !important;
}
.tg .l-w-10 {
  width: 10% !important;
}
.tg .l-w-15 {
  width: 15% !important;
}
.tg .l-w-20 {
  width: 20% !important;
}
.tg .l-w-25 {
  width: 25% !important;
}
.tg .l-w-30 {
  width: 30% !important;
}
.tg .l-w-35 {
  width: 35% !important;
}
.tg .l-w-40 {
  width: 40% !important;
}
.tg .l-w-45 {
  width: 45% !important;
}
.tg .l-w-50 {
  width: 50% !important;
}
.tg .l-w-55 {
  width: 55% !important;
}
.tg .l-w-60 {
  width: 60% !important;
}
.tg .l-w-65 {
  width: 65% !important;
}
.tg .l-w-70 {
  width: 70% !important;
}
.tg .l-w-75 {
  width: 75% !important;
}
.tg .l-w-80 {
  width: 80% !important;
}
.tg .l-w-85 {
  width: 85% !important;
}
.tg .l-w-90 {
  width: 90% !important;
}
.tg .l-w-95 {
  width: 95% !important;
}
.tg .l-w-100 {
  width: 100% !important;
}
.tg .l-w-105 {
  width: 105% !important;
}
.tg .l-w-110 {
  width: 110% !important;
}
.tg .l-w-115 {
  width: 115% !important;
}
.tg .l-w-120 {
  width: 120% !important;
}
.tg .l-w-125 {
  width: 125% !important;
}
.tg .l-w-130 {
  width: 130% !important;
}
.tg .l-w-135 {
  width: 135% !important;
}
.tg .l-w-140 {
  width: 140% !important;
}
.tg .l-w-145 {
  width: 145% !important;
}
.tg .l-w-150 {
  width: 150% !important;
}
.tg .l-w-200 {
  width: 200% !important;
}
.tg .l-h-inherit {
  height: inherit !important;
}
.tg .l-h-0 {
  height: 0 !important;
}
.tg .l-h-1 {
  height: 6px !important;
}
.tg .l-h-2 {
  height: 12px !important;
}
.tg .l-h-3 {
  height: 18px !important;
}
.tg .l-h-4 {
  height: 24px !important;
}
.tg .l-h-5 {
  height: 30px !important;
}
.tg .l-h-6 {
  height: 36px !important;
}
.tg .l-h-7 {
  height: 42px !important;
}
.tg .l-h-8 {
  height: 48px !important;
}
.tg .l-h-9 {
  height: 54px !important;
}
.tg .l-h-10 {
  height: 60px !important;
}
.tg .l-h-11 {
  height: 66px !important;
}
.tg .l-h-12 {
  height: 72px !important;
}
.tg .l-h-13 {
  height: 78px !important;
}
.tg .l-h-14 {
  height: 84px !important;
}
.tg .l-h-15 {
  height: 90px !important;
}
.tg .l-h-16 {
  height: 96px !important;
}
.tg .l-h-17 {
  height: 102px !important;
}
.tg .l-h-18 {
  height: 108px !important;
}
.tg .l-h-19 {
  height: 114px !important;
}
.tg .l-h-20 {
  height: 120px !important;
}
.tg .l-h-25 {
  height: 150px !important;
}
.tg .l-pr {
  position: relative !important;
}
.tg .l-rt-0 {
  position: relative;
  top: 0 !important;
}
.tg .l-rt-1 {
  position: relative;
  top: 1px !important;
}
.tg .l-rt-2 {
  position: relative;
  top: 2px !important;
}
.tg .l-rt-3 {
  position: relative;
  top: 3px !important;
}
.tg .l-rt-4 {
  position: relative;
  top: 4px !important;
}
.tg .l-rt-5 {
  position: relative;
  top: 5px !important;
}
.tg .l-rt-6 {
  position: relative;
  top: 6px !important;
}
.tg .l-rt-7 {
  position: relative;
  top: 7px !important;
}
.tg .l-rt-8 {
  position: relative;
  top: 8px !important;
}
.tg .l-rt-9 {
  position: relative;
  top: 9px !important;
}
.tg .l-rt-10 {
  position: relative;
  top: 10px !important;
}
.tg .l-rt-n1 {
  position: relative;
  top: -1px !important;
}
.tg .l-rt-n2 {
  position: relative;
  top: -2px !important;
}
.tg .l-rt-n3 {
  position: relative;
  top: -3px !important;
}
.tg .l-rt-n4 {
  position: relative;
  top: -4px !important;
}
.tg .l-rt-n5 {
  position: relative;
  top: -5px !important;
}
.tg .l-rt-n6 {
  position: relative;
  top: -6px !important;
}
.tg .l-rt-n7 {
  position: relative;
  top: -7px !important;
}
.tg .l-rt-n8 {
  position: relative;
  top: -8px !important;
}
.tg .l-rt-n9 {
  position: relative;
  top: -9px !important;
}
.tg .l-rt-n10 {
  position: relative;
  top: -10px !important;
}
.tg .l-rl-0 {
  position: relative;
  left: 0 !important;
}
.tg .l-rl-1 {
  position: relative;
  left: 1px !important;
}
.tg .l-rl-2 {
  position: relative;
  left: 2px !important;
}
.tg .l-rl-3 {
  position: relative;
  left: 3px !important;
}
.tg .l-rl-4 {
  position: relative;
  left: 4px !important;
}
.tg .l-rl-5 {
  position: relative;
  left: 5px !important;
}
.tg .l-rl-6 {
  position: relative;
  left: 6px !important;
}
.tg .l-rl-7 {
  position: relative;
  left: 7px !important;
}
.tg .l-rl-8 {
  position: relative;
  left: 8px !important;
}
.tg .l-rl-9 {
  position: relative;
  left: 9px !important;
}
.tg .l-rl-10 {
  position: relative;
  left: 10px !important;
}
.tg .l-rl-n1 {
  position: relative;
  left: -1px !important;
}
.tg .l-rl-n2 {
  position: relative;
  left: -2px !important;
}
.tg .l-rl-n3 {
  position: relative;
  left: -3px !important;
}
.tg .l-rl-n4 {
  position: relative;
  left: -4px !important;
}
.tg .l-rl-n5 {
  position: relative;
  left: -5px !important;
}
.tg .l-rl-n6 {
  position: relative;
  left: -6px !important;
}
.tg .l-rl-n7 {
  position: relative;
  left: -7px !important;
}
.tg .l-rl-n8 {
  position: relative;
  left: -8px !important;
}
.tg .l-rl-n9 {
  position: relative;
  left: -9px !important;
}
.tg .l-rl-n10 {
  position: relative;
  left: -10px !important;
}
.tg .l-pa {
  position: absolute !important;
}
.tg .l-m-0 {
  margin: 0 !important;
}
.tg .l-m-05 {
  margin: 6px 5px 6px 5px !important;
}
.tg .l-m-1 {
  margin: 12px 10px 12px 10px !important;
}
.tg .l-m-2 {
  margin: 24px 20px 24px 20px !important;
}
.tg .l-m-3 {
  margin: 36px 30px 36px 30px !important;
}
.tg .l-m-4 {
  margin: 48px 40px 48px 40px !important;
}
.tg .l-m-5 {
  margin: 60px 50px 60px 50px !important;
}
.tg .l-mt-0 {
  margin-top: 0 !important;
}
.tg .l-mt-05 {
  margin-top: 6px !important;
}
.tg .l-mt-1 {
  margin-top: 12px !important;
}
.tg .l-mt-2 {
  margin-top: 24px !important;
}
.tg .l-mt-3 {
  margin-top: 36px !important;
}
.tg .l-mt-4 {
  margin-top: 48px !important;
}
.tg .l-mt-5 {
  margin-top: 60px !important;
}
.tg .l-mr-0 {
  margin-right: 0 !important;
}
.tg .l-mr-05 {
  margin-right: 5px !important;
}
.tg .l-mr-1 {
  margin-right: 10px !important;
}
.tg .l-mr-2 {
  margin-right: 20px !important;
}
.tg .l-mr-3 {
  margin-right: 30px !important;
}
.tg .l-mr-4 {
  margin-right: 40px !important;
}
.tg .l-mr-5 {
  margin-right: 50px !important;
}
.tg .l-mb-0 {
  margin-bottom: 0 !important;
}
.tg .l-mb-05 {
  margin-bottom: 6px !important;
}
.tg .l-mb-1 {
  margin-bottom: 12px !important;
}
.tg .l-mb-2 {
  margin-bottom: 24px !important;
}
.tg .l-mb-3 {
  margin-bottom: 36px !important;
}
.tg .l-mb-4 {
  margin-bottom: 48px !important;
}
.tg .l-mb-5 {
  margin-bottom: 60px !important;
}
.tg .l-ml-0 {
  margin-left: 0 !important;
}
.tg .l-ml-05 {
  margin-left: 5px !important;
}
.tg .l-ml-1 {
  margin-left: 10px !important;
}
.tg .l-ml-2 {
  margin-left: 20px !important;
}
.tg .l-ml-3 {
  margin-left: 30px !important;
}
.tg .l-ml-4 {
  margin-left: 40px !important;
}
.tg .l-ml-5 {
  margin-left: 50px !important;
}
.tg .l-mt-n05 {
  margin-top: -6px !important;
}
.tg .l-mt-n1 {
  margin-top: -12px !important;
}
.tg .l-mt-n2 {
  margin-top: -24px !important;
}
.tg .l-mt-n3 {
  margin-top: -36px !important;
}
.tg .l-mt-n4 {
  margin-top: -48px !important;
}
.tg .l-mt-n5 {
  margin-top: -60px !important;
}
.tg .l-mr-n05 {
  margin-right: -5px !important;
}
.tg .l-mr-n1 {
  margin-right: -10px !important;
}
.tg .l-mr-n2 {
  margin-right: -20px !important;
}
.tg .l-mr-n3 {
  margin-right: -30px !important;
}
.tg .l-mr-n4 {
  margin-right: -40px !important;
}
.tg .l-mr-n5 {
  margin-right: -50px !important;
}
.tg .l-mb-n05 {
  margin-bottom: -6px !important;
}
.tg .l-mb-n1 {
  margin-bottom: -12px !important;
}
.tg .l-mb-n2 {
  margin-bottom: -24px !important;
}
.tg .l-mb-n3 {
  margin-bottom: -36px !important;
}
.tg .l-mb-n4 {
  margin-bottom: -48px !important;
}
.tg .l-mb-n5 {
  margin-bottom: -60px !important;
}
.tg .l-ml-n05 {
  margin-left: -5px !important;
}
.tg .l-ml-n1 {
  margin-left: -10px !important;
}
.tg .l-ml-n2 {
  margin-left: -20px !important;
}
.tg .l-ml-n3 {
  margin-left: -30px !important;
}
.tg .l-ml-n4 {
  margin-left: -40px !important;
}
.tg .l-ml-n5 {
  margin-left: -50px !important;
}
.tg .l-p-0 {
  padding: 0 !important;
}
.tg .l-p-05 {
  padding: 6px 5px 6px 5px !important;
}
.tg .l-p-1 {
  padding: 12px 10px 12px 10px !important;
}
.tg .l-p-2 {
  padding: 24px 20px 24px 20px !important;
}
.tg .l-p-3 {
  padding: 36px 30px 36px 30px !important;
}
.tg .l-p-4 {
  padding: 48px 40px 48px 40px !important;
}
.tg .l-p-5 {
  padding: 60px 50px 60px 50px !important;
}
.tg .l-pt-0 {
  padding-top: 0 !important;
}
.tg .l-pt-05 {
  padding-top: 6px !important;
}
.tg .l-pt-1 {
  padding-top: 12px !important;
}
.tg .l-pt-2 {
  padding-top: 24px !important;
}
.tg .l-pt-3 {
  padding-top: 36px !important;
}
.tg .l-pt-4 {
  padding-top: 48px !important;
}
.tg .l-pt-5 {
  padding-top: 60px !important;
}
.tg .l-pr-0 {
  padding-right: 0 !important;
}
.tg .l-pr-05 {
  padding-right: 5px !important;
}
.tg .l-pr-1 {
  padding-right: 10px !important;
}
.tg .l-pr-2 {
  padding-right: 20px !important;
}
.tg .l-pr-3 {
  padding-right: 30px !important;
}
.tg .l-pr-4 {
  padding-right: 40px !important;
}
.tg .l-pr-5 {
  padding-right: 50px !important;
}
.tg .l-pb-0 {
  padding-bottom: 0 !important;
}
.tg .l-pb-05 {
  padding-bottom: 6px !important;
}
.tg .l-pb-1 {
  padding-bottom: 12px !important;
}
.tg .l-pb-2 {
  padding-bottom: 24px !important;
}
.tg .l-pb-3 {
  padding-bottom: 36px !important;
}
.tg .l-pb-4 {
  padding-bottom: 48px !important;
}
.tg .l-pb-5 {
  padding-bottom: 60px !important;
}
.tg .l-pl-0 {
  padding-left: 0 !important;
}
.tg .l-pl-05 {
  padding-left: 5px !important;
}
.tg .l-pl-1 {
  padding-left: 10px !important;
}
.tg .l-pl-2 {
  padding-left: 20px !important;
}
.tg .l-pl-3 {
  padding-left: 30px !important;
}
.tg .l-pl-4 {
  padding-left: 40px !important;
}
.tg .l-pl-5 {
  padding-left: 50px !important;
}
.tg [class*="l-ba-"]:before,
.tg [class*="l-ba-"]:after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  height: 100% !important;
  background-color: inherit !important;
}
.tg .l-ba-a:before,
.tg .l-ba-a:after {
  width: 20px !important;
}
.tg .l-ba-a:before {
  left: -20px !important;
}
.tg .l-ba-a:after {
  right: -20px !important;
}
.tg .navbar .icon-ing-logo {
  font-size: 32px;
  font-size: 2rem;
  margin-right: 5px;
}
.tg .navbar .navbar-brand {
  text-decoration: none !important;
}
.tg .navbar .navbar-topbar {
  height: 43px;
}
.tg .navbar-backdrop {
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  -o-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  position: absolute;
}
.tg .navbar-backdrop.in {
  opacity: 0.16;
}
.tg .navbar-brand .priba {
  display: inline-block;
  float: right;
  width: 114px;
  height: 34px;
  padding-top: 0px;
  padding-left: 0px;
  margin-left: -1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin-top: -5px;
}
.tg .navbar-a-wrapper {
  margin-bottom: 50px;
}

.tg .navbar-a {
  position: fixed;
  height: 50px;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1090;
}
.tg .navbar-a.navbar-full {
  height: 100%;
}
.tg .navbar-a .icon-ing-logo {
  margin-top: 2px;
  font-size: 28px;
}
.tg .navbar-a .navbar-brand {
  position: absolute;
}
.tg .navbar-a .navbar-brand .priba {
  height: 29px;
  padding-top: 0px;
  padding-left: 0px;
  margin-left: -1px;
  margin-top: -6px;
  font-size: 13px;
}
.tg .navbar-a .navbar-brand .priba img {
  height: 41px;
  width: 88px;
}
.tg .navbar-a .navbar-header {
  background-color: #ffffff;
  height: 50px;
  padding: 12px 5px 0 10px;
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
}
.tg .navbar-a .navbar-header.navbar-slide-up {
  -webkit-transform: translateY(-50px) translateZ(0);
  transform: translateY(-50px) translateZ(0);
}
.tg .navbar-a .nav-collapse {
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100% !important;
  padding-bottom: 50px;
  overflow: hidden;
  z-index: 3;
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container {
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: scrollbar;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container a {
  color: #333333;
  text-decoration: none;
  padding: 10px 10px 10px 20px;
  display: block;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container a:hover {
  background-color: #d5d5d5;
  cursor: pointer;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container h3 {
  padding: 24px 0 12px 20px;
  margin: 0;
  border-bottom: 1px solid #d5d5d5;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container p {
  padding: 10px 0 10px 20px;
}
.tg .navbar-a .nav-collapse > .nav-collapse-container .icon:before {
  position: static !important;
}
.tg .navbar-a .nav-collapse.in {
  -webkit-transform: translateX(-320px) translateZ(0);
  transform: translateX(-320px) translateZ(0);
}
.tg .navbar-a .nav-collapse.infb {
  right: 0px;
}
@media (max-width: 480px) {
  .tg .navbar-a .nav-collapse {
    width: 100%;
    right: -100%;
  }
  .tg .navbar-a .nav-collapse.in {
    -webkit-transform: translateX(-100%) translateZ(0);
    transform: translateX(-100%) translateZ(0);
  }
}
.tg .navbar-a .nav.nav-a {
  margin-top: 0;
}
.tg .navbar-a .nav.nav-a li {
  border-bottom: 1px solid #d5d5d5;
  position: static;
}
.tg .navbar-a .nav-header {
  text-align: center;
  height: 50px;
  padding: 0px 10px;
  border-bottom: 1px solid #d5d5d5;
}
.tg .navbar-a .nav-header button {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  margin: 8px 10px;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: 5px 7px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.tg .navbar-a .nav-header button:hover,
.tg .navbar-a .nav-header button:focus {
  background-color: #d5d5d5;
}
.tg .navbar-a .nav-header button:last-child {
  right: 0;
  left: auto;
}
.tg .navbar-a .nav-header h2 {
  display: inline-block;
  padding-top: 14px;
  font-size: 20px;
  font-weight: lighter;
}
.tg .animate-right-8 > .icon {
  line-height: 1.5;
  -webkit-transform: translateX(-8px) translateZ(0);
  transform: translateX(-8px) translateZ(0);
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
}
.tg .animate-right-8:hover > .icon {
  -webkit-transform: translateX(0) translateZ(0);
  transform: translateX(0) translateZ(0);
}
.tg .navbar-b {
  position: relative;
  min-height: 50px;
  margin-bottom: 24px;
}
.tg .navbar-b:before,
.tg .navbar-b:after {
  content: " ";
  display: table;
}
.tg .navbar-b:after {
  clear: both;
}
.tg .navbar-b:before,
.tg .navbar-b:after {
  content: " ";
  display: table;
}
.tg .navbar-b:after {
  clear: both;
}
.tg .navbar-b .navbar-backdrop {
  position: fixed;
  z-index: 1090;
}
.tg .navbar-b .navbar-brand {
  margin-right: 11px;
}
.tg .navbar-b .navbar-brand .priba img {
  height: 51px;
  width: 107px;
}
.tg .navbar-b .navbar-collapse {
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1091;
  background: none;
  pointer-events: none;
}
.tg .navbar-b .navbar-collapse:before,
.tg .navbar-b .navbar-collapse:after {
  content: " ";
  display: table;
}
.tg .navbar-b .navbar-collapse:after {
  clear: both;
}
.tg .navbar-b .navbar-collapse:before,
.tg .navbar-b .navbar-collapse:after {
  content: " ";
  display: table;
}
.tg .navbar-b .navbar-collapse:after {
  clear: both;
}
.tg .navbar-b .navbar-collapse * {
  pointer-events: auto;
}
.tg .navbar-b .navbar-collapse.collapse {
  display: block !important;
  height: auto !important;
  overflow: visible !important;
  padding-bottom: 0;
}
.tg .navbar-b .navbar-collapse.in {
  overflow-y: visible;
}
.tg .navbar-b .navbar-collapse .navbar-nav.navbar-left:first-child {
  margin-left: -10px;
}
.tg .navbar-b .navbar-collapse .navbar-nav.navbar-right:last-child {
  margin-right: -10px;
}
.tg .navbar-b .navbar-collapse .navbar-text:last-child {
  margin-right: 0;
}
.tg .navbar-b #importantMessageAlert > .overlay {
  width: 390px;
  right: -219px;
}
.tg .navbar-b #importantMessageAlert > .overlay .overlay-content:before,
.tg .navbar-b #importantMessageAlert > .overlay .overlay-content:after {
  left: 181px;
}
.tg .navbar-b .navbar-nav {
  float: left;
  margin: 0;
}
.tg .navbar-b .navbar-nav a,
.tg .navbar-b .navbar-nav a * {
  cursor: pointer;
}
.tg .navbar-b .navbar-nav > li {
  float: left;
  position: relative;
  z-index: 1091;
}
.tg .navbar-b .navbar-nav > li > a {
  line-height: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  background-color: transparent;
}
.tg .navbar-b .navbar-nav > li > a > span {
  font-weight: normal;
  border-bottom: none;
}
.tg .navbar-b .navbar-nav > li > a:focus {
  background-color: transparent;
}
.tg .navbar-b .navbar-nav > li > a:hover {
  background-color: transparent;
}
.tg .navbar-b .navbar-nav > li > a:hover > span {
  padding-bottom: 2px;
  font-weight: normal;
  border-bottom: 1px solid #adadad;
}
.tg .navbar-b .navbar-nav > li.active > a,
.tg .navbar-b .navbar-nav > li.active > a:hover {
  background-color: transparent;
  color: #ff6200;
}
.tg .navbar-b .navbar-nav > li.active > a > span,
.tg .navbar-b .navbar-nav > li.active > a:hover > span {
  border-bottom: none;
  font-weight: bold;
}
.tg .navbar-b .navbar-nav > li.active > a.has-list > span,
.tg .navbar-b .navbar-nav > li.active > a.has-list:hover > span {
  font-weight: normal;
}
.tg .navbar-b .nav > li > a {
  font-size: 16px;
  font-size: 1rem;
}
.tg .navbar-b .navbar-nav > li {
  margin-left: 7px;
}
.tg .navbar-b .navbar-nav > li:first-child {
  margin-left: 0;
}
.tg .navbar-b .navbar-nav > li > a {
  position: relative;
  z-index: 1091;
  line-height: inherit;
  padding-left: 11px;
  padding-right: 11px;
}
.tg .navbar-b nav.navbar-collapse {
  margin-top: 3px;
}
.tg .navbar-b .navbar-header {
  position: relative;
}
.tg .navbar-b .navbar-collapse {
  display: block;
  pointer-events: none;
}
.tg .navbar-b .navbar-collapse * {
  pointer-events: auto;
}
.tg .navbar-b .navbar-brand {
  position: relative;
  z-index: 1091;
  padding: 0;
  margin-top: 18px;
  float: left;
}
.tg .navbar-b .navbar-brand .icon-ing-logo {
  font-size: 32px;
  font-size: 2rem;
  margin-right: 5px;
}
.tg .navbar-b .navbar-nav {
  width: auto;
}
.tg .navbar-b .navbar-nav > li {
  position: static;
  z-index: 1091;
}
.tg .navbar-b .navbar-nav > li > a {
  padding-top: 7px;
  padding-bottom: 7px;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu {
  border-color: #ffffff;
  position: absolute;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  z-index: 3100;
  margin-left: -2px;
  margin-right: -2px;
  width: auto;
  left: 0;
  right: 0;
  margin-top: 7px;
  padding: 24px 40px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu .row {
  margin-right: -20px;
  margin-left: -20px;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu [class*="col-"] {
  padding: 0 20px;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu > .row > [class*="col-"]:first-child {
  padding-left: 10px;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu.pull-right {
  width: auto;
  right: 0;
  margin-right: 0;
  margin-top: 14px;
  left: auto;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu.pull-right .nav.nav-vertical a {
  white-space: nowrap;
  border: 0;
}
.tg .navbar-b .navbar-nav > li > .dropdown-menu.container {
  margin-left: auto;
  margin-right: auto;
}
.tg .navbar-b .navbar-nav > .open > .dropdown-toggle,
.tg .navbar-b .navbar-nav > .open > a.dropdown-toggle {
  position: relative;
  border-color: transparent;
  z-index: 3200;
}
.tg .navbar-b .navbar-nav > .open > .dropdown-toggle,
.tg .navbar-b .navbar-nav > .open > a.dropdown-toggle,
.tg .navbar-b .navbar-nav > .open > .dropdown-toggle:hover,
.tg .navbar-b .navbar-nav > .open > a.dropdown-toggle:hover,
.tg .navbar-b .navbar-nav > .open > .dropdown-toggle:focus,
.tg .navbar-b .navbar-nav > .open > a.dropdown-toggle:focus {
  background-color: #ffffff;
  color: #333333;
  border-bottom-color: transparent;
  padding-bottom: 18px;
  margin-bottom: -18px;
}
.tg .navbar-b .login {
  float: right;
  margin-top: 4px;
  position: relative;
  z-index: 1092;
}
.tg .navbar-b .nav.nav-vertical > li {
  border-bottom: solid 1px #d5d5d5;
}
.tg .navbar-b .nav.nav-vertical > li:first-child {
  border-top: solid 1px #d5d5d5;
}
.tg .navbar-b .nav.nav-vertical > li:hover > a.has-list > .icon,
.tg .navbar-b .nav.nav-vertical > li:hover > a > .icon-arrow-c-right {
  margin-right: -8px;
}
.tg .navbar-b .nav.nav-vertical > li > a {
  white-space: normal;
  cursor: pointer;
}
.tg .navbar-b .nav.nav-vertical > li > a.has-list .icon,
.tg .navbar-b .nav.nav-vertical > li > a.dropdown-toggle .icon,
.tg .navbar-b .nav.nav-vertical > li > a > .icon-arrow-c-right {
  float: right;
  content: "\e952";
  line-height: inherit;
  font-size: 18px;
}
.tg .navbar-b .nav.nav-vertical > li > a.has-list .icon:before,
.tg .navbar-b .nav.nav-vertical > li > a.dropdown-toggle .icon:before,
.tg .navbar-b .nav.nav-vertical > li > a > .icon-arrow-c-right:before {
  content: "\e952" !important;
}
.tg .navbar-b .nav.nav-vertical > li > a.active.has-list .icon,
.tg .navbar-b .nav.nav-vertical > li > a:hover.has-list .icon,
.tg .navbar-b .nav.nav-vertical > li > a.active.dropdown-toggle .icon,
.tg .navbar-b .nav.nav-vertical > li > a:hover.dropdown-toggle .icon {
  margin-right: -8px;
}
.tg .navbar-b .nav > li.open > a.dropdown-toggle .icon {
  content: "\e908";
  line-height: inherit;
}
.tg .navbar-b .nav > li.open > a.dropdown-toggle .icon:before {
  content: "\e908" !important;
}
.tg .navbar-b .nav > li > a.dropdown-toggle .icon {
  content: "\e905";
  line-height: inherit;
}
.tg .navbar-b .nav > li > a.dropdown-toggle .icon:before {
  content: "\e905" !important;
}
.tg .navbar-b .nav > li > a .icon,
.tg .navbar-b .nav > li > a [class^="icon-"],
.tg .navbar-b .nav > li > a [class*=" icon-"] {
  margin-right: 10px;
}
.tg .navbar-b .nav > li > a span + .icon,
.tg .navbar-b .nav > li > a span + [class^="icon-"],
.tg .navbar-b .nav > li > a span + [class*=" icon-"] {
  margin-right: 0;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: margin-right;
  -o-transition-property: margin-right;
  transition-property: margin-right;
}
.tg .navbar-b .segment {
  position: relative;
  z-index: 1091;
  display: inline-block;
  margin: 27px 0 0 18px;
  padding: 0;
}
.tg .navbar-b .segment li {
  line-height: 1;
  list-style-type: none;
}
.tg .navbar-b .segment > li {
  float: left;
  border-right: 1px solid #d5d5d5;
  padding: 2px 10px;
  margin-top: -2px;
  margin-bottom: -2px;
}
.tg .navbar-b .segment > li a {
  border-bottom: 0;
  color: #333333;
  text-decoration: none;
  margin-bottom: -2px;
}
.tg .navbar-b .segment > li a.active {
  padding-bottom: 10px;
  border-bottom: 3px solid #ff6200;
  font-weight: bold;
  color: #ff6200;
  text-decoration: none;
}
.tg .navbar-b .segment > li a.active:hover {
  padding-bottom: 10px;
  border-bottom: 3px solid #ff6200;
  color: #ff6200;
}
.tg .navbar-b .segment > li a:hover {
  padding-bottom: 2px;
  border-bottom: 1px solid #333333;
  cursor: pointer;
}
.tg .navbar-b .segment li:last-child {
  border-right: 0;
}
.tg .navbar-b .segment.priba > li {
  padding: 2px 9px;
}
@media (max-width: 992px) {
  .tg .navbar-b .segment {
    z-index: 1092;
    margin-top: 22px;
  }
  .tg .navbar-b .segment .dropdown-menu-default .dropdown-menu-item:not(.active) > a:hover,
  .tg .navbar-b .segment .dropdown-menu-default .dropdown-menu-item:not(.active) > a:focus {
    background-color: #f5f5f5;
    color: #000000;
  }
}
.tg .navbar-b .search {
  margin-top: 17px;
  display: table;
  position: relative;
  z-index: 1092;
}
.tg .navbar-b .search input {
  width: 135px;
  height: 36px;
  border: 1px solid #d5d5d5;
  font-size: 14px;
  -webkit-box-shadow: inset 0px 2px 3px 0px #E9E9E9;
  box-shadow: inset 0px 2px 3px 0px #E9E9E9;
  -webkit-transition: width 0.25s ease-in-out;
  -o-transition: width 0.25s ease-in-out;
  transition: width 0.25s ease-in-out;
}
.tg .navbar-b .search input:focus {
  width: 150px;
}
.tg .navbar-b .search button {
  border: 1px solid #d5d5d5;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: -1px;
}
.tg .navbar-b .service {
  position: relative;
  z-index: 1091;
  float: right;
}
.tg .navbar-b .service li {
  display: inline-block;
}
.tg .navbar-b .service li a {
  line-height: 1;
  padding-left: 7px;
  padding-right: 7px;
}
.tg .navbar-b .service li a:hover {
  background-color: transparent;
  text-decoration: underline;
}
.tg .navbar-b .service li a .icon {
  line-height: 1.5;
  color: #ff6200;
  margin-right: 6px;
}
.tg .navbar-b .navbar-fixed-bottom,
.tg .navbar-b .navbar-fixed-top {
  z-index: auto;
}
.tg .navbar-b a.has-list.dropdown-toggle .icon {
  font-size: 12px;
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-top: -7px;
  margin-left: 5px;
}
.tg .navbar-b .l2 .navbar-inner-shadow-right {
  position: absolute;
  width: 60px;
  height: 100%;
  left: 25%;
  margin-left: -70px;
  background-image: -webkit-radial-gradient(80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-image: -moz-radial-gradient(80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-image: -ms-radial-gradient(80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-image: -o-radial-gradient(80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-image: radial-gradient(80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-image: -webkit-gradient(radial, 80%, ellipse closest-side, rgba(0, 0, 0, 0.05), transparent);
  background-position: 10px;
  background-repeat: no-repeat;
  z-index: 100;
  z-index: 0 \9;
  pointer-events: none !important;
}
@media (max-width: 991px) {
  .tg .navbar-b .l2 .navbar-inner-shadow-right {
    left: 33%;
  }
}
.tg .navbar-b .l2 .nav-b > li.dropdown.open > .dropdown-menu {
  display: block;
}
.tg .navbar-b .l2 .nav-b > li {
  position: static;
}
.tg .navbar-b .l2 .nav-b > li > a {
  border-style: solid;
  border-width: 0px;
  border-color: #d5d5d5;
  font-size: 18px;
  padding: 6px 14px;
  padding-right: 18px;
}
.tg .navbar-b .l2 .nav-b > li > a:hover {
  background-color: #f5f5f5;
}
.tg .navbar-b .l2 .nav-b > li.active > a {
  background-color: #ff6200;
}
.tg .navbar-b .l2 .nav.nav-vertical.nav-b > li > a .icon {
  font-size: 12px;
  line-height: 30px;
}
.tg .navbar-b .l3 {
  position: absolute;
  top: 40px;
  right: 0;
  left: auto;
}
.tg .navbar-b .l3.dropdown-menu {
  display: none;
  border: none;
}
.tg .navbar-b .l3 h2.heading-b-xxl {
  color: #ff6200;
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.tg .navbar-b .l3 h2.heading-b-xxl a {
  font-family: INGMe, "Arial", sans-serif;
  padding-left: 15px;
  padding-right: 5px;
  margin-left: 15px;
  border-left: solid 1px #767676;
  color: #ff6200;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: normal;
}
.tg .navbar-b .l3 h2.heading-b-xxl a:hover {
  text-decoration: underline;
}
.tg .navbar-b .l3 h3 {
  margin-bottom: 6px;
}
.tg .navbar-b .l3 .list-link-icon-a li:before {
  font-size: 12px;
  line-height: 16px;
}
.tg .navbar-b .l3 li {
  margin-bottom: 6px;
  padding-left: 20px;
}
.tg .navbar-b .l3 .list-icons li:before {
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  left: -2px;
  top: 5px;
}
.tg .navbar-b .l3 .list-more {
  margin-top: 74px;
}
.tg .navbar-b .l3 .list-more:before {
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e952";
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  left: -2px;
  font-weight: 600;
  color: #ff6200;
}
.tg .navbar-b .l3 .list-more:before:before {
  content: "\e952" !important;
}
.tg .navbar-b .l3 .list-more a {
  color: #ff6200;
}
.tg .position {
  display: block;
  position: relative;
}
.tg .position-float {
  height: auto !important;
  min-height: 0 !important;
}
.tg .position-float:before,
.tg .position-float:after {
  content: " ";
  display: table;
}
.tg .position-float:after {
  clear: both;
}
.tg .position-float:before,
.tg .position-float:after {
  content: " ";
  display: table;
}
.tg .position-float:after {
  clear: both;
}
.tg .position-stacked {
  z-index: 0;
  padding: 0 !important;
  min-height: 0 !important;
}
.tg .position-body {
  position: relative;
  z-index: 2;
}
.tg .position-component {
  position: absolute;
  z-index: 1;
}
.tg .position-float > .position-component {
  position: relative;
  height: auto !important;
}
.tg .position-stacked > .position-component {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tg .position-component.position-component-bottom {
  bottom: 0;
}
.tg .position-stacked > .position-component.position-component-bottom {
  top: auto;
}
.tg .position-component.position-component-center {
  left: 50%;
}
.tg .position-component.position-component-filled.position-component-top,
.tg .position-component.position-component-filled.position-component-bottom {
  width: auto;
}
.tg .position-component.position-component-filled.position-component-right,
.tg .position-component.position-component-filled.position-component-left {
  height: auto;
}
.tg .position-stacked > .position-component.position-component-left {
  right: auto;
}
.tg .position-component.position-component-middle {
  top: 50%;
}
.tg .position-stacked > .position-component.position-component-right {
  left: auto;
}
.tg .position-component.position-component-top {
  top: 0;
}
.tg .position-stacked > .position-component.position-component-top {
  bottom: auto;
}
.tg .position-content {
  display: table-cell;
  width: inherit;
}
.tg .position-content-bottom {
  display: table;
  width: 100%;
}
.tg .position-content-bottom .position-content {
  vertical-align: bottom;
}
.tg .position-content-center {
  text-align: center;
}
.tg .position-content-middle {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.tg .position-content-middle .position-content {
  vertical-align: middle;
}
.tg .position-content-right {
  text-align: right;
}
.tg .position-filled {
  height: 100%;
  overflow: hidden;
}
.tg .position-left > .position-component {
  float: left;
  left: 0;
}
.tg .position-right > .position-component {
  float: right;
  right: 0;
}
.tg .position-xs {
  min-height: 14px;
}
.tg .position-xs.position-content-bottom,
.tg .position-xs.position-content-middle {
  height: 14px;
}
.tg .position-xs.position-component,
.tg .position-xs > .position-component {
  width: 14px;
  height: 14px;
}
.tg .position-xs.position-component.position-component-middle,
.tg .position-xs > .position-component.position-component-middle {
  margin-top: -7px;
}
.tg .position-xs.position-component.position-component-center,
.tg .position-xs > .position-component.position-component-center {
  margin-left: -7px;
}
.tg .position-xs.position-left {
  padding-left: 24px;
}
.tg .position-xs.position-float.position-left > .position-component {
  margin-left: -24px;
}
.tg .position-xs.position-middle > .position-component {
  margin-top: -7px;
}
.tg .position-xs.position-right {
  padding-right: 24px;
}
.tg .position-xs.position-float.position-right > .position-component {
  margin-right: -24px;
}
.tg .position-xs.position-center > .position-component {
  margin-left: -7px;
}
.tg .position-xs > .position-component.icon,
.tg .position-xs > .position-component > .icon {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .position-xs > .position-component > .stacked-icon {
  width: 14px;
  height: 14px;
}
.tg .position-xs > .position-component > .stacked-icon > .icon {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .position-sm {
  min-height: 16px;
}
.tg .position-sm.position-content-bottom,
.tg .position-sm.position-content-middle {
  height: 16px;
}
.tg .position-sm.position-component,
.tg .position-sm > .position-component {
  width: 16px;
  height: 16px;
}
.tg .position-sm.position-component.position-component-middle,
.tg .position-sm > .position-component.position-component-middle {
  margin-top: -8px;
}
.tg .position-sm.position-component.position-component-center,
.tg .position-sm > .position-component.position-component-center {
  margin-left: -8px;
}
.tg .position-sm.position-left {
  padding-left: 26px;
}
.tg .position-sm.position-float.position-left > .position-component {
  margin-left: -26px;
}
.tg .position-sm.position-middle > .position-component {
  margin-top: -8px;
}
.tg .position-sm.position-right {
  padding-right: 26px;
}
.tg .position-sm.position-float.position-right > .position-component {
  margin-right: -26px;
}
.tg .position-sm.position-center > .position-component {
  margin-left: -8px;
}
.tg .position-sm > .position-component.icon,
.tg .position-sm > .position-component > .icon {
  font-size: 16px;
  font-size: 1rem;
}
.tg .position-sm > .position-component > .stacked-icon {
  width: 16px;
  height: 16px;
}
.tg .position-sm > .position-component > .stacked-icon > .icon {
  font-size: 16px;
  font-size: 1rem;
}
.tg .position-md {
  min-height: 18px;
}
.tg .position-md.position-content-bottom,
.tg .position-md.position-content-middle {
  height: 18px;
}
.tg .position-md.position-component,
.tg .position-md > .position-component {
  width: 18px;
  height: 18px;
}
.tg .position-md.position-component.position-component-middle,
.tg .position-md > .position-component.position-component-middle {
  margin-top: -9px;
}
.tg .position-md.position-component.position-component-center,
.tg .position-md > .position-component.position-component-center {
  margin-left: -9px;
}
.tg .position-md.position-left {
  padding-left: 28px;
}
.tg .position-md.position-float.position-left > .position-component {
  margin-left: -28px;
}
.tg .position-md.position-middle > .position-component {
  margin-top: -9px;
}
.tg .position-md.position-right {
  padding-right: 28px;
}
.tg .position-md.position-float.position-right > .position-component {
  margin-right: -28px;
}
.tg .position-md.position-center > .position-component {
  margin-left: -9px;
}
.tg .position-md > .position-component.icon,
.tg .position-md > .position-component > .icon {
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .position-md > .position-component > .stacked-icon {
  width: 18px;
  height: 18px;
}
.tg .position-md > .position-component > .stacked-icon > .icon {
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .position-lg {
  min-height: 22px;
}
.tg .position-lg.position-content-bottom,
.tg .position-lg.position-content-middle {
  height: 22px;
}
.tg .position-lg.position-component,
.tg .position-lg > .position-component {
  width: 22px;
  height: 22px;
}
.tg .position-lg.position-component.position-component-middle,
.tg .position-lg > .position-component.position-component-middle {
  margin-top: -11px;
}
.tg .position-lg.position-component.position-component-center,
.tg .position-lg > .position-component.position-component-center {
  margin-left: -11px;
}
.tg .position-lg.position-left {
  padding-left: 32px;
}
.tg .position-lg.position-float.position-left > .position-component {
  margin-left: -32px;
}
.tg .position-lg.position-middle > .position-component {
  margin-top: -11px;
}
.tg .position-lg.position-right {
  padding-right: 32px;
}
.tg .position-lg.position-float.position-right > .position-component {
  margin-right: -32px;
}
.tg .position-lg.position-center > .position-component {
  margin-left: -11px;
}
.tg .position-lg > .position-component.icon,
.tg .position-lg > .position-component > .icon {
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .position-lg > .position-component > .stacked-icon {
  width: 22px;
  height: 22px;
}
.tg .position-lg > .position-component > .stacked-icon > .icon {
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .position-xl {
  min-height: 27px;
}
.tg .position-xl.position-content-bottom,
.tg .position-xl.position-content-middle {
  height: 27px;
}
.tg .position-xl.position-component,
.tg .position-xl > .position-component {
  width: 27px;
  height: 27px;
}
.tg .position-xl.position-component.position-component-middle,
.tg .position-xl > .position-component.position-component-middle {
  margin-top: -13.5px;
}
.tg .position-xl.position-component.position-component-center,
.tg .position-xl > .position-component.position-component-center {
  margin-left: -13.5px;
}
.tg .position-xl.position-left {
  padding-left: 37px;
}
.tg .position-xl.position-float.position-left > .position-component {
  margin-left: -37px;
}
.tg .position-xl.position-middle > .position-component {
  margin-top: -13.5px;
}
.tg .position-xl.position-right {
  padding-right: 37px;
}
.tg .position-xl.position-float.position-right > .position-component {
  margin-right: -37px;
}
.tg .position-xl.position-center > .position-component {
  margin-left: -13.5px;
}
.tg .position-xl > .position-component.icon,
.tg .position-xl > .position-component > .icon {
  font-size: 27px;
  font-size: 1.6875rem;
}
.tg .position-xl > .position-component > .stacked-icon {
  width: 27px;
  height: 27px;
}
.tg .position-xl > .position-component > .stacked-icon > .icon {
  font-size: 27px;
  font-size: 1.6875rem;
}
.tg .position-xxl {
  min-height: 32px;
}
.tg .position-xxl.position-content-bottom,
.tg .position-xxl.position-content-middle {
  height: 32px;
}
.tg .position-xxl.position-component,
.tg .position-xxl > .position-component {
  width: 32px;
  height: 32px;
}
.tg .position-xxl.position-component.position-component-middle,
.tg .position-xxl > .position-component.position-component-middle {
  margin-top: -16px;
}
.tg .position-xxl.position-component.position-component-center,
.tg .position-xxl > .position-component.position-component-center {
  margin-left: -16px;
}
.tg .position-xxl.position-left {
  padding-left: 42px;
}
.tg .position-xxl.position-float.position-left > .position-component {
  margin-left: -42px;
}
.tg .position-xxl.position-middle > .position-component {
  margin-top: -16px;
}
.tg .position-xxl.position-right {
  padding-right: 42px;
}
.tg .position-xxl.position-float.position-right > .position-component {
  margin-right: -42px;
}
.tg .position-xxl.position-center > .position-component {
  margin-left: -16px;
}
.tg .position-xxl > .position-component.icon,
.tg .position-xxl > .position-component > .icon {
  font-size: 32px;
  font-size: 2rem;
}
.tg .position-xxl > .position-component > .stacked-icon {
  width: 32px;
  height: 32px;
}
.tg .position-xxl > .position-component > .stacked-icon > .icon {
  font-size: 32px;
  font-size: 2rem;
}
.tg .position-xxxl {
  min-height: 37px;
}
.tg .position-xxxl.position-content-bottom,
.tg .position-xxxl.position-content-middle {
  height: 37px;
}
.tg .position-xxxl.position-component,
.tg .position-xxxl > .position-component {
  width: 37px;
  height: 37px;
}
.tg .position-xxxl.position-component.position-component-middle,
.tg .position-xxxl > .position-component.position-component-middle {
  margin-top: -18.5px;
}
.tg .position-xxxl.position-component.position-component-center,
.tg .position-xxxl > .position-component.position-component-center {
  margin-left: -18.5px;
}
.tg .position-xxxl.position-left {
  padding-left: 47px;
}
.tg .position-xxxl.position-float.position-left > .position-component {
  margin-left: -47px;
}
.tg .position-xxxl.position-middle > .position-component {
  margin-top: -18.5px;
}
.tg .position-xxxl.position-right {
  padding-right: 47px;
}
.tg .position-xxxl.position-float.position-right > .position-component {
  margin-right: -47px;
}
.tg .position-xxxl.position-center > .position-component {
  margin-left: -18.5px;
}
.tg .position-xxxl > .position-component.icon,
.tg .position-xxxl > .position-component > .icon {
  font-size: 37px;
  font-size: 2.3125rem;
}
.tg .position-xxxl > .position-component > .stacked-icon {
  width: 37px;
  height: 37px;
}
.tg .position-xxxl > .position-component > .stacked-icon > .icon {
  font-size: 37px;
  font-size: 2.3125rem;
}
.tg .position-jb {
  min-height: 44px;
}
.tg .position-jb.position-content-bottom,
.tg .position-jb.position-content-middle {
  height: 44px;
}
.tg .position-jb.position-component,
.tg .position-jb > .position-component {
  width: 44px;
  height: 44px;
}
.tg .position-jb.position-component.position-component-middle,
.tg .position-jb > .position-component.position-component-middle {
  margin-top: -22px;
}
.tg .position-jb.position-component.position-component-center,
.tg .position-jb > .position-component.position-component-center {
  margin-left: -22px;
}
.tg .position-jb.position-left {
  padding-left: 54px;
}
.tg .position-jb.position-float.position-left > .position-component {
  margin-left: -54px;
}
.tg .position-jb.position-middle > .position-component {
  margin-top: -22px;
}
.tg .position-jb.position-right {
  padding-right: 54px;
}
.tg .position-jb.position-float.position-right > .position-component {
  margin-right: -54px;
}
.tg .position-jb.position-center > .position-component {
  margin-left: -22px;
}
.tg .position-jb > .position-component.icon,
.tg .position-jb > .position-component > .icon {
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .position-jb > .position-component > .stacked-icon {
  width: 44px;
  height: 44px;
}
.tg .position-jb > .position-component > .stacked-icon > .icon {
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .position-xj {
  min-height: 54px;
}
.tg .position-xj.position-content-bottom,
.tg .position-xj.position-content-middle {
  height: 54px;
}
.tg .position-xj.position-component,
.tg .position-xj > .position-component {
  width: 54px;
  height: 54px;
}
.tg .position-xj.position-component.position-component-middle,
.tg .position-xj > .position-component.position-component-middle {
  margin-top: -27px;
}
.tg .position-xj.position-component.position-component-center,
.tg .position-xj > .position-component.position-component-center {
  margin-left: -27px;
}
.tg .position-xj.position-left {
  padding-left: 64px;
}
.tg .position-xj.position-float.position-left > .position-component {
  margin-left: -64px;
}
.tg .position-xj.position-middle > .position-component {
  margin-top: -27px;
}
.tg .position-xj.position-right {
  padding-right: 64px;
}
.tg .position-xj.position-float.position-right > .position-component {
  margin-right: -64px;
}
.tg .position-xj.position-center > .position-component {
  margin-left: -27px;
}
.tg .position-xj > .position-component.icon,
.tg .position-xj > .position-component > .icon {
  font-size: 54px;
  font-size: 3.375rem;
}
.tg .position-xj > .position-component > .stacked-icon {
  width: 54px;
  height: 54px;
}
.tg .position-xj > .position-component > .stacked-icon > .icon {
  font-size: 54px;
  font-size: 3.375rem;
}
.tg .position-xxj {
  min-height: 64px;
}
.tg .position-xxj.position-content-bottom,
.tg .position-xxj.position-content-middle {
  height: 64px;
}
.tg .position-xxj.position-component,
.tg .position-xxj > .position-component {
  width: 64px;
  height: 64px;
}
.tg .position-xxj.position-component.position-component-middle,
.tg .position-xxj > .position-component.position-component-middle {
  margin-top: -32px;
}
.tg .position-xxj.position-component.position-component-center,
.tg .position-xxj > .position-component.position-component-center {
  margin-left: -32px;
}
.tg .position-xxj.position-left {
  padding-left: 74px;
}
.tg .position-xxj.position-float.position-left > .position-component {
  margin-left: -74px;
}
.tg .position-xxj.position-middle > .position-component {
  margin-top: -32px;
}
.tg .position-xxj.position-right {
  padding-right: 74px;
}
.tg .position-xxj.position-float.position-right > .position-component {
  margin-right: -74px;
}
.tg .position-xxj.position-center > .position-component {
  margin-left: -32px;
}
.tg .position-xxj > .position-component.icon,
.tg .position-xxj > .position-component > .icon {
  font-size: 64px;
  font-size: 4rem;
}
.tg .position-xxj > .position-component > .stacked-icon {
  width: 64px;
  height: 64px;
}
.tg .position-xxj > .position-component > .stacked-icon > .icon {
  font-size: 64px;
  font-size: 4rem;
}
.tg .position-xxxj {
  min-height: 74px;
}
.tg .position-xxxj.position-content-bottom,
.tg .position-xxxj.position-content-middle {
  height: 74px;
}
.tg .position-xxxj.position-component,
.tg .position-xxxj > .position-component {
  width: 74px;
  height: 74px;
}
.tg .position-xxxj.position-component.position-component-middle,
.tg .position-xxxj > .position-component.position-component-middle {
  margin-top: -37px;
}
.tg .position-xxxj.position-component.position-component-center,
.tg .position-xxxj > .position-component.position-component-center {
  margin-left: -37px;
}
.tg .position-xxxj.position-left {
  padding-left: 84px;
}
.tg .position-xxxj.position-float.position-left > .position-component {
  margin-left: -84px;
}
.tg .position-xxxj.position-middle > .position-component {
  margin-top: -37px;
}
.tg .position-xxxj.position-right {
  padding-right: 84px;
}
.tg .position-xxxj.position-float.position-right > .position-component {
  margin-right: -84px;
}
.tg .position-xxxj.position-center > .position-component {
  margin-left: -37px;
}
.tg .position-xxxj > .position-component.icon,
.tg .position-xxxj > .position-component > .icon {
  font-size: 74px;
  font-size: 4.625rem;
}
.tg .position-xxxj > .position-component > .stacked-icon {
  width: 74px;
  height: 74px;
}
.tg .position-xxxj > .position-component > .stacked-icon > .icon {
  font-size: 74px;
  font-size: 4.625rem;
}
.tg .position-mg {
  min-height: 84px;
}
.tg .position-mg.position-content-bottom,
.tg .position-mg.position-content-middle {
  height: 84px;
}
.tg .position-mg.position-component,
.tg .position-mg > .position-component {
  width: 84px;
  height: 84px;
}
.tg .position-mg.position-component.position-component-middle,
.tg .position-mg > .position-component.position-component-middle {
  margin-top: -42px;
}
.tg .position-mg.position-component.position-component-center,
.tg .position-mg > .position-component.position-component-center {
  margin-left: -42px;
}
.tg .position-mg.position-left {
  padding-left: 94px;
}
.tg .position-mg.position-float.position-left > .position-component {
  margin-left: -94px;
}
.tg .position-mg.position-middle > .position-component {
  margin-top: -42px;
}
.tg .position-mg.position-right {
  padding-right: 94px;
}
.tg .position-mg.position-float.position-right > .position-component {
  margin-right: -94px;
}
.tg .position-mg.position-center > .position-component {
  margin-left: -42px;
}
.tg .position-mg > .position-component.icon,
.tg .position-mg > .position-component > .icon {
  font-size: 84px;
  font-size: 5.25rem;
}
.tg .position-mg > .position-component > .stacked-icon {
  width: 84px;
  height: 84px;
}
.tg .position-mg > .position-component > .stacked-icon > .icon {
  font-size: 84px;
  font-size: 5.25rem;
}
.tg .position-xmg {
  min-height: 94px;
}
.tg .position-xmg.position-content-bottom,
.tg .position-xmg.position-content-middle {
  height: 94px;
}
.tg .position-xmg.position-component,
.tg .position-xmg > .position-component {
  width: 94px;
  height: 94px;
}
.tg .position-xmg.position-component.position-component-middle,
.tg .position-xmg > .position-component.position-component-middle {
  margin-top: -47px;
}
.tg .position-xmg.position-component.position-component-center,
.tg .position-xmg > .position-component.position-component-center {
  margin-left: -47px;
}
.tg .position-xmg.position-left {
  padding-left: 104px;
}
.tg .position-xmg.position-float.position-left > .position-component {
  margin-left: -104px;
}
.tg .position-xmg.position-middle > .position-component {
  margin-top: -47px;
}
.tg .position-xmg.position-right {
  padding-right: 104px;
}
.tg .position-xmg.position-float.position-right > .position-component {
  margin-right: -104px;
}
.tg .position-xmg.position-center > .position-component {
  margin-left: -47px;
}
.tg .position-xmg > .position-component.icon,
.tg .position-xmg > .position-component > .icon {
  font-size: 94px;
  font-size: 5.875rem;
}
.tg .position-xmg > .position-component > .stacked-icon {
  width: 94px;
  height: 94px;
}
.tg .position-xmg > .position-component > .stacked-icon > .icon {
  font-size: 94px;
  font-size: 5.875rem;
}
.tg .position-xxmg {
  min-height: 104px;
}
.tg .position-xxmg.position-content-bottom,
.tg .position-xxmg.position-content-middle {
  height: 104px;
}
.tg .position-xxmg.position-component,
.tg .position-xxmg > .position-component {
  width: 104px;
  height: 104px;
}
.tg .position-xxmg.position-component.position-component-middle,
.tg .position-xxmg > .position-component.position-component-middle {
  margin-top: -52px;
}
.tg .position-xxmg.position-component.position-component-center,
.tg .position-xxmg > .position-component.position-component-center {
  margin-left: -52px;
}
.tg .position-xxmg.position-left {
  padding-left: 114px;
}
.tg .position-xxmg.position-float.position-left > .position-component {
  margin-left: -114px;
}
.tg .position-xxmg.position-middle > .position-component {
  margin-top: -52px;
}
.tg .position-xxmg.position-right {
  padding-right: 114px;
}
.tg .position-xxmg.position-float.position-right > .position-component {
  margin-right: -114px;
}
.tg .position-xxmg.position-center > .position-component {
  margin-left: -52px;
}
.tg .position-xxmg > .position-component.icon,
.tg .position-xxmg > .position-component > .icon {
  font-size: 104px;
  font-size: 6.5rem;
}
.tg .position-xxmg > .position-component > .stacked-icon {
  width: 104px;
  height: 104px;
}
.tg .position-xxmg > .position-component > .stacked-icon > .icon {
  font-size: 104px;
  font-size: 6.5rem;
}
.tg .position-xxxmg {
  min-height: 124px;
}
.tg .position-xxxmg.position-content-bottom,
.tg .position-xxxmg.position-content-middle {
  height: 124px;
}
.tg .position-xxxmg.position-component,
.tg .position-xxxmg > .position-component {
  width: 124px;
  height: 124px;
}
.tg .position-xxxmg.position-component.position-component-middle,
.tg .position-xxxmg > .position-component.position-component-middle {
  margin-top: -62px;
}
.tg .position-xxxmg.position-component.position-component-center,
.tg .position-xxxmg > .position-component.position-component-center {
  margin-left: -62px;
}
.tg .position-xxxmg.position-left {
  padding-left: 134px;
}
.tg .position-xxxmg.position-float.position-left > .position-component {
  margin-left: -134px;
}
.tg .position-xxxmg.position-middle > .position-component {
  margin-top: -62px;
}
.tg .position-xxxmg.position-right {
  padding-right: 134px;
}
.tg .position-xxxmg.position-float.position-right > .position-component {
  margin-right: -134px;
}
.tg .position-xxxmg.position-center > .position-component {
  margin-left: -62px;
}
.tg .position-xxxmg > .position-component.icon,
.tg .position-xxxmg > .position-component > .icon {
  font-size: 124px;
  font-size: 7.75rem;
}
.tg .position-xxxmg > .position-component > .stacked-icon {
  width: 124px;
  height: 124px;
}
.tg .position-xxxmg > .position-component > .stacked-icon > .icon {
  font-size: 124px;
  font-size: 7.75rem;
}
.tg .position-gg {
  min-height: 144px;
}
.tg .position-gg.position-content-bottom,
.tg .position-gg.position-content-middle {
  height: 144px;
}
.tg .position-gg.position-component,
.tg .position-gg > .position-component {
  width: 144px;
  height: 144px;
}
.tg .position-gg.position-component.position-component-middle,
.tg .position-gg > .position-component.position-component-middle {
  margin-top: -72px;
}
.tg .position-gg.position-component.position-component-center,
.tg .position-gg > .position-component.position-component-center {
  margin-left: -72px;
}
.tg .position-gg.position-left {
  padding-left: 154px;
}
.tg .position-gg.position-float.position-left > .position-component {
  margin-left: -154px;
}
.tg .position-gg.position-middle > .position-component {
  margin-top: -72px;
}
.tg .position-gg.position-right {
  padding-right: 154px;
}
.tg .position-gg.position-float.position-right > .position-component {
  margin-right: -154px;
}
.tg .position-gg.position-center > .position-component {
  margin-left: -72px;
}
.tg .position-gg > .position-component.icon,
.tg .position-gg > .position-component > .icon {
  font-size: 144px;
  font-size: 9rem;
}
.tg .position-gg > .position-component > .stacked-icon {
  width: 144px;
  height: 144px;
}
.tg .position-gg > .position-component > .stacked-icon > .icon {
  font-size: 144px;
  font-size: 9rem;
}
.tg .position-xgg {
  min-height: 184px;
}
.tg .position-xgg.position-content-bottom,
.tg .position-xgg.position-content-middle {
  height: 184px;
}
.tg .position-xgg.position-component,
.tg .position-xgg > .position-component {
  width: 184px;
  height: 184px;
}
.tg .position-xgg.position-component.position-component-middle,
.tg .position-xgg > .position-component.position-component-middle {
  margin-top: -92px;
}
.tg .position-xgg.position-component.position-component-center,
.tg .position-xgg > .position-component.position-component-center {
  margin-left: -92px;
}
.tg .position-xgg.position-left {
  padding-left: 194px;
}
.tg .position-xgg.position-float.position-left > .position-component {
  margin-left: -194px;
}
.tg .position-xgg.position-middle > .position-component {
  margin-top: -92px;
}
.tg .position-xgg.position-right {
  padding-right: 194px;
}
.tg .position-xgg.position-float.position-right > .position-component {
  margin-right: -194px;
}
.tg .position-xgg.position-center > .position-component {
  margin-left: -92px;
}
.tg .position-xgg > .position-component.icon,
.tg .position-xgg > .position-component > .icon {
  font-size: 184px;
  font-size: 11.5rem;
}
.tg .position-xgg > .position-component > .stacked-icon {
  width: 184px;
  height: 184px;
}
.tg .position-xgg > .position-component > .stacked-icon > .icon {
  font-size: 184px;
  font-size: 11.5rem;
}
.tg .position-xxgg {
  min-height: 224px;
}
.tg .position-xxgg.position-content-bottom,
.tg .position-xxgg.position-content-middle {
  height: 224px;
}
.tg .position-xxgg.position-component,
.tg .position-xxgg > .position-component {
  width: 224px;
  height: 224px;
}
.tg .position-xxgg.position-component.position-component-middle,
.tg .position-xxgg > .position-component.position-component-middle {
  margin-top: -112px;
}
.tg .position-xxgg.position-component.position-component-center,
.tg .position-xxgg > .position-component.position-component-center {
  margin-left: -112px;
}
.tg .position-xxgg.position-left {
  padding-left: 234px;
}
.tg .position-xxgg.position-float.position-left > .position-component {
  margin-left: -234px;
}
.tg .position-xxgg.position-middle > .position-component {
  margin-top: -112px;
}
.tg .position-xxgg.position-right {
  padding-right: 234px;
}
.tg .position-xxgg.position-float.position-right > .position-component {
  margin-right: -234px;
}
.tg .position-xxgg.position-center > .position-component {
  margin-left: -112px;
}
.tg .position-xxgg > .position-component.icon,
.tg .position-xxgg > .position-component > .icon {
  font-size: 224px;
  font-size: 14rem;
}
.tg .position-xxgg > .position-component > .stacked-icon {
  width: 224px;
  height: 224px;
}
.tg .position-xxgg > .position-component > .stacked-icon > .icon {
  font-size: 224px;
  font-size: 14rem;
}
.tg .position-xxxgg {
  min-height: 264px;
}
.tg .position-xxxgg.position-content-bottom,
.tg .position-xxxgg.position-content-middle {
  height: 264px;
}
.tg .position-xxxgg.position-component,
.tg .position-xxxgg > .position-component {
  width: 264px;
  height: 264px;
}
.tg .position-xxxgg.position-component.position-component-middle,
.tg .position-xxxgg > .position-component.position-component-middle {
  margin-top: -132px;
}
.tg .position-xxxgg.position-component.position-component-center,
.tg .position-xxxgg > .position-component.position-component-center {
  margin-left: -132px;
}
.tg .position-xxxgg.position-left {
  padding-left: 274px;
}
.tg .position-xxxgg.position-float.position-left > .position-component {
  margin-left: -274px;
}
.tg .position-xxxgg.position-middle > .position-component {
  margin-top: -132px;
}
.tg .position-xxxgg.position-right {
  padding-right: 274px;
}
.tg .position-xxxgg.position-float.position-right > .position-component {
  margin-right: -274px;
}
.tg .position-xxxgg.position-center > .position-component {
  margin-left: -132px;
}
.tg .position-xxxgg > .position-component.icon,
.tg .position-xxxgg > .position-component > .icon {
  font-size: 264px;
  font-size: 16.5rem;
}
.tg .position-xxxgg > .position-component > .stacked-icon {
  width: 264px;
  height: 264px;
}
.tg .position-xxxgg > .position-component > .stacked-icon > .icon {
  font-size: 264px;
  font-size: 16.5rem;
}
.tg .btn > .position {
  min-height: 0;
}
.tg .position-component > .icon,
.tg .position-component > .stacked-icon,
.tg .position-component > .figure-icon {
  display: inline-block;
  vertical-align: top;
}
.tg .position > .position-body {
  display: table-cell;
  width: inherit;
  z-index: inherit;
}
.tg .position > .position-body > .position-content {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.tg .position.position-content-middle > .position-body {
  vertical-align: middle;
}
.tg .position.position-content-bottom > .position-body {
  vertical-align: bottom;
}
.tg .position-center > .position-component {
  left: 50%;
}
.tg .position-middle > .position-component {
  top: 50%;
}
.tg .teaser {
  position: relative;
}
.tg .teaser > .container {
  position: relative;
}
.tg .teaser-heading {
  position: relative;
  padding: 20px;
}
@media (min-width: 768px) {
  .tg .teaser-heading {
    padding: 36px 20px 0;
  }
}
.tg .teaser-image {
  top: 0;
  height: 100%;
  width: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.tg .teaser-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .tg .teaser-title {
    font-size: 32px;
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .tg .teaser-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tg .teaser-lead {
  font-weight: normal;
}
@media (max-width: 767px) {
  .tg .teaser-lead {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .tg .teaser-lead {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tg .teaser-font-Wit {
  color: #ffffff;
  text-shadow: 1px 1px #767676;
}
.tg .teaser-font-Donkergrijs {
  color: #767676;
}
.tg .teaser-a.teaser .teaser-title {
  color: #ff6200;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tg .teaser-a.teaser .teaser-lead {
  color: #ff6200;
  font-size: 21px;
  font-size: 1.3125rem;
}
.tg .teaser-a.teaser .teaser-image {
  position: relative;
  height: 118px;
}
.tg .teaser-a.teaser .teaser-link {
  position: absolute;
  top: 20px;
  right: 0;
}
@media (min-width: 680px) {
  .tg .teaser-b {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .tg .teaser-b {
    height: 360px;
  }
}
.tg .teaser-b .teaser-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tg .teaser-b .teaser-lead {
  font-size: 32px;
  font-size: 2rem;
}
.tg .teaser-b .teaser-image {
  position: absolute;
}
.tg .teaser-c {
  height: 118px;
}
.tg .teaser-c .teaser-image {
  position: absolute;
}
.tg .teaser-d {
  height: 163px;
}
.tg .teaser-d .teaser-image {
  position: absolute;
}
.tg .teaser-e {
  height: 214px;
}
.tg .teaser-e .teaser-image {
  position: absolute;
}
.tg abbr[title] {
  border-bottom: 1px dotted #adadad;
  cursor: help;
}
.tg .abbr-initialism {
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.tg .abbr-currency {
  border-bottom-width: 0;
  margin-right: 5px;
}
.tg address {
  font-style: normal;
  line-height: 1.5;
  margin-bottom: 24px;
}
.tg dfn {
  font-style: italic;
}
.tg mark {
  background: #ff0;
  color: #000;
}
.tg p {
  margin-top: 0;
  margin-bottom: 24px;
}
.tg sub,
.tg sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.tg sup {
  top: -0.5em;
}
.tg sub {
  bottom: -0.25em;
}
.tg code,
.tg kbd,
.tg pre,
.tg samp {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  font-size: 0.75rem;
}
.tg code {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ebebeb;
  white-space: nowrap;
  color: #ff0000;
  padding: 2px 4px;
}
.tg kbd {
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #adadad;
  font-size: 90%;
  color: white;
  padding: 2px 4px;
}
.tg pre {
  display: block;
  background-color: #f5f5f5;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  color: #767676;
  margin: 0 0 12px;
  padding: 11.5px;
}
.tg pre code {
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
  font-size: inherit;
  white-space: pre-wrap;
  color: inherit;
  padding: 0;
}
.tg .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.tg b {
  font-weight: normal;
}
.tg b,
.tg .h-bold {
  font-weight: bold;
}
.tg table b,
.tg table .h-bold {
  font-family: inherit;
  font-weight: bold !important;
}
.tg cite {
  font-style: normal;
}
.tg em {
  font-style: normal;
}
.tg .italic {
  font-style: italic;
}
.tg small,
.tg .small {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg strong {
  font-weight: bold;
}
@font-face {
  font-family: 'INGMe';
  src: url('clientlibs/fonts/eot/INGMeWeb-Regular.eot');
  src: url('clientlibs/fonts/eot/INGMeWeb-Regular.eot?#iefix') format('embedded-opentype'), url('clientlibs/fonts/woff/INGMeWeb-Regular.woff') format('woff'), url('clientlibs/fonts/ttf/INGMeWeb-Regular.ttf') format('truetype'), url('clientlibs/fonts/svg/INGMeWeb-Regular.svg#INGMeWeb-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'INGMe';
  src: url('clientlibs/fonts/eot/INGMeWeb-Bold.eot');
  src: url('clientlibs/fonts/eot/INGMeWeb-Bold.eot?#iefix') format('embedded-opentype'), url('clientlibs/fonts/woff/INGMeWeb-Bold.woff') format('woff'), url('clientlibs/fonts/ttf/INGMeWeb-Bold.ttf') format('truetype'), url('clientlibs/fonts/svg/INGMeWeb-Bold.svg#INGMeWeb-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
}
.tg .line-height-inherit {
  line-height: inherit;
}
.tg .line-height-normal {
  line-height: normal;
}
.tg .line-height-0 {
  line-height: 0;
}
.tg .line-height-1 {
  line-height: 1;
}
.tg .line-height-xxs {
  line-height: 1;
}
.tg .line-height-xs {
  line-height: 1.2;
}
.tg .line-height-sm {
  line-height: 1.3;
}
.tg .line-height-md {
  line-height: 1.4;
}
.tg .line-height-lg,
.tg output {
  line-height: 1.5;
}
.tg .font-size-0 {
  font-size: 0px;
  font-size: 0rem;
}
.tg .font-size-xxs {
  font-size: 10px;
  font-size: 0.625rem;
}
.tg .font-size-xs {
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .font-size-sm {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .font-size-md,
.tg output,
.tg .legend-listing {
  font-size: 16px;
  font-size: 1rem;
}
.tg .font-size-lg,
.tg .form-group-lg .input-group-addon {
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .font-size-xl {
  font-size: 21px;
  font-size: 1.3125rem;
}
.tg .font-size-xxl {
  font-size: 24px;
  font-size: 1.5rem;
}
.tg .font-size-xxxl {
  font-size: 32px;
  font-size: 2rem;
}
.tg .font-size-hg {
  font-size: 36px;
  font-size: 2.25rem;
}
.tg .font-size-xh {
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .font-size-jb {
  font-size: 60px;
  font-size: 3.75rem;
}
.tg .font-size-xj {
  font-size: 70px;
  font-size: 4.375rem;
}
.tg .font-size-xxj {
  font-size: 80px;
  font-size: 5rem;
}
.tg .font-size-xxxj {
  font-size: 90px;
  font-size: 5.625rem;
}
.tg .font-size-mg {
  font-size: 100px;
  font-size: 6.25rem;
}
.tg .font-size-xmg {
  font-size: 110px;
  font-size: 6.875rem;
}
.tg .font-size-xxmg {
  font-size: 120px;
  font-size: 7.5rem;
}
.tg .font-size-xxxmg {
  font-size: 130px;
  font-size: 8.125rem;
}
.tg .font-size-gg {
  font-size: 150px;
  font-size: 9.375rem;
}
.tg .font-size-xgg {
  font-size: 170px;
  font-size: 10.625rem;
}
.tg .font-size-xxgg {
  font-size: 190px;
  font-size: 11.875rem;
}
.tg .font-size-xxxgg {
  font-size: 210px;
  font-size: 13.125rem;
}
.tg .font-primary-r {
  font-weight: normal !important;
}
.tg .font-primary-r-xs {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .font-primary-r-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-primary-r-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
.tg .font-primary-r-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-primary-r-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-primary-r-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .font-primary-r-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .font-primary-r-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .font-primary-r-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: normal;
  line-height: 1;
}
.tg .font-primary-b {
  font-weight: bold !important;
}
.tg .font-primary-b-xs {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
}
.tg .font-primary-b-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .font-primary-b-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
.tg .font-primary-b-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .font-primary-b-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .font-primary-b-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}
.tg .font-primary-b-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}
.tg .font-primary-b-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
}
.tg .font-primary-b-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1;
}
.tg .font-xs {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .font-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .font-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .font-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .font-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .font-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .font-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: normal;
  line-height: 1;
}
.tg h2,
.tg h3,
.tg h4,
.tg h5,
.tg h6 {
  font-family: inherit;
  line-height: 1;
  color: inherit;
  margin-top: 0;
}
.tg h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #ff6200;
  margin: 0 0 0.67em;
}
@media (min-width: 768px) {
  .tg h1 {
    font-size: 36px;
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
.tg h2 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .tg h2 {
    font-size: 32px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 16px;
  }
}
.tg h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tg h4 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-b-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-b-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}
.tg .heading-b-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-b-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-b-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tg .heading-b-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
.tg .heading-b-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tg .heading-b-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}
.tg .heading-l-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-l-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 12px;
}
.tg .heading-l-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-l-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .heading-l-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 24px;
}
.tg .heading-l-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 24px;
}
.tg .heading-l-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 24px;
}
.tg .heading-l-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 24px;
}
.tg h1.heading-inverted,
.tg h2.heading-inverted,
.tg h3.heading-inverted,
.tg h4.heading-inverted,
.tg h5.heading-inverted,
.tg h6.heading-inverted {
  color: #ffffff;
  text-shadow: 1px 1px #767676;
}
.tg .heading-inverted h1,
.tg .heading-inverted h2,
.tg .heading-inverted h3,
.tg .heading-inverted h4,
.tg .heading-inverted h5,
.tg .heading-inverted h6 {
  color: #ffffff;
  text-shadow: 1px 1px #767676;
}
.tg h1 small,
.tg h2 small,
.tg h3 small,
.tg h4 small,
.tg h5 small,
.tg h6 small {
  display: block;
  color: inherit;
}
.tg h1 small.small-inline,
.tg h2 small.small-inline,
.tg h3 small.small-inline,
.tg h4 small.small-inline,
.tg h5 small.small-inline,
.tg h6 small.small-inline {
  display: inline;
}
.tg h1 small {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .tg h1 small {
    font-size: 32px;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.3;
  }
}
.tg h1 a,
.tg h2 a,
.tg h3 a,
.tg h4 a,
.tg h5 a,
.tg h6 a,
.tg h1 a:visited,
.tg h2 a:visited,
.tg h3 a:visited,
.tg h4 a:visited,
.tg h5 a:visited,
.tg h6 a:visited {
  text-decoration: none;
  color: inherit;
}
.tg h1 a:hover,
.tg h2 a:hover,
.tg h3 a:hover,
.tg h4 a:hover,
.tg h5 a:hover,
.tg h6 a:hover,
.tg h1 a:visited:hover,
.tg h2 a:visited:hover,
.tg h3 a:visited:hover,
.tg h4 a:visited:hover,
.tg h5 a:visited:hover,
.tg h6 a:visited:hover,
.tg h1 a:focus,
.tg h2 a:focus,
.tg h3 a:focus,
.tg h4 a:focus,
.tg h5 a:focus,
.tg h6 a:focus,
.tg h1 a:visited:focus,
.tg h2 a:visited:focus,
.tg h3 a:visited:focus,
.tg h4 a:visited:focus,
.tg h5 a:visited:focus,
.tg h6 a:visited:focus {
  text-decoration: underline;
  color: inherit;
}
.tg hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  clear: both;
  height: 0;
  border: 0;
  border-top: 1px solid #d5d5d5;
  margin-top: 12px;
  margin-bottom: 12px;
}
.tg .hr-a {
  border-color: #adadad;
}
.tg .hr-b {
  border-color: #ff6200;
}
.tg .lead {
  margin-bottom: 12px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .lead-inverted {
  color: #ffffff;
  text-shadow: 1px 1px #767676;
}
.tg a {
  background: transparent;
  color: #525199;
  text-decoration: underline;
}
.tg .link-hover-inverse {
  text-decoration: none;
}
.tg .link-hover-inverse:hover,
.tg .link-hover-inverse:focus {
  text-decoration: underline;
}
.tg .link-inverse {
  color: #ffffff;
}
.tg .link-inverse:hover,
.tg .link-inverse:focus,
.tg .link-inverse:visited {
  color: #ffffff;
}
.tg a:active,
.tg a:hover {
  outline: 0;
}
.tg a:hover,
.tg a:focus {
  color: #525199;
  text-decoration: none;
}
.tg a:focus {
  outline: thin dotted;
  outline: thin dotted #767676;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
/*.tg :visited {
  color: #ab0066;
}*/
.tg .link-a {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  line-height: 1rem;
  padding-left: 20px;
}
.tg .link-a:hover,
.tg .link-a:focus {
  color: #333333;
  text-decoration: underline;
}
.tg .link-a:visited {
  color: #333333;
}
.tg .link-a .icon-xxs,
.tg .link-a .icon-xs,
.tg .link-a .icon-sm {
  float: left;
  height: 16;
  line-height: 1rem;
  margin-left: -20px;
}
.tg .link-b {
  display: inline-block;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid #ff6200;
  background: transparent;
  color: #ff6200;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}
.tg .link-b:hover,
.tg .link-b:focus,
.tg .open .dropdown-toggle.link-b {
  background: #ffffff;
  border-color: transparent;
  border-color: #ff6200;
  background: transparent;
  color: #333333;
}
.tg .link-b:active,
.tg .link-b.active,
.tg .open .dropdown-toggle.link-b {
  background: #ffffff;
  border-color: transparent;
  border-color: #ff6200;
  background: transparent;
  color: #333333;
}
.tg .link-b.disabled,
.tg .link-b[disabled],
.tg fieldset[disabled] .link-b {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .link-b.disabled.btn-transparent,
.tg .link-b[disabled].btn-transparent,
.tg fieldset[disabled] .link-b.btn-transparent {
  background-color: transparent !important;
}
.tg .link-b.read-only:hover,
.tg .link-b.read-only.active,
.tg .link-b.read-only:active,
.tg .open .dropdown-toggle.link-b.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent !important;
}
.tg .link-b:hover,
.tg .link-b:focus {
  text-decoration: underline;
}
.tg blockquote {
  border: 0;
  margin: 0 0 24px 0;
  padding: 0 20px;
}
.tg q {
  display: inline-block;
  quotes: "\201C" "\201D" "\2018" "\2019";
  margin: 0;
}
.tg .blockquote-footer .blockquote-attribution:before {
  display: block;
  content: "";
}
.tg .blockquote-text:last-child {
  margin-bottom: 0;
}
.tg .blockquote-text:before,
.tg .blockquote-text:after {
  position: absolute;
}
.tg .blockquote-text:first-of-type:before {
  margin-left: -0.71428571em;
  content: '\201C';
}
.tg .blockquote-text:last-of-type:after {
  margin-left: 0.35714286em;
  content: '\201D';
}
.tg .blockquote-lr-unpadded {
  padding: 0;
}
.tg .blockquote-b .blockquote-text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .blockquote-b .blockquote-text:before,
.tg .blockquote-b .blockquote-text:after {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}
.tg .blockquote-b .blockquote-text:first-of-type:before {
  margin-left: -24px;
}
.tg .blockquote-b .blockquote-text:last-of-type:after {
  margin-left: 0;
}
.tg button {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  text-transform: none;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: button;
}
.tg button[disabled] {
  cursor: default;
}
.tg button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.tg .btn {
  position: relative;
  display: inline-block;
  background-image: none;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: nowrap;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding: 4px 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tg .btn-block {
  display: block;
  width: 100%;
}
.tg .btn-block + .btn-block {
  margin-top: 6px;
}
.tg .btn-blockinput[type="submit"],
.tg .btn-blockinput[type="reset"],
.tg .btn-blockinput[type="button"] {
  width: 100%;
}
.tg [class*="btn-rounded"].btn {
  padding: 0 !important;
}
.tg .btn-rounded.btn-xs.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 22px;
}
.tg .btn-rounded.btn-xs.btn {
  width: 24px;
  height: 24px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.tg .btn-rounded.btn-xs.btn.btn-lh-0-50 {
  line-height: 11px;
}
.tg .btn-rounded.btn-xs.btn.btn-lh-0-50 > span {
  display: block;
}
.tg .btn-rounded.btn-sm.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 27px;
}
.tg .btn-rounded.btn-sm.btn {
  width: 29px;
  height: 29px;
  -webkit-border-radius: 14.5px;
  border-radius: 14.5px;
}
.tg .btn-rounded.btn-sm.btn.btn-lh-0-50 {
  line-height: 13.5px;
}
.tg .btn-rounded.btn-sm.btn.btn-lh-0-50 > span {
  display: block;
}
.tg .btn-rounded.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 32px;
}
.tg .btn-rounded.btn {
  width: 34px;
  height: 34px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
}
.tg .btn-rounded.btn.btn-lh-0-50 {
  line-height: 16px;
}
.tg .btn-rounded.btn.btn-lh-0-50 > span {
  display: block;
}
.tg .btn-rounded.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
}
.tg .btn-rounded.btn-lg.btn {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
}
.tg .btn-rounded.btn-lg.btn.btn-lh-0-50 {
  line-height: 23px;
}
.tg .btn-rounded.btn-lg.btn.btn-lh-0-50 > span {
  display: block;
}
.tg .btn-rounded-top.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
}
.tg .btn-rounded-top.btn-lg.btn {
  height: 24px;
  width: 48px;
  line-height: 23px;
  -webkit-border-radius: 24px 24px 0 0;
  border-radius: 24px 24px 0 0;
}
.tg .btn-rounded-right.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
}
.tg .btn-rounded-right.btn-lg.btn {
  height: 48px;
  width: 24px;
  -webkit-border-radius: 0 24px 24px 0;
  border-radius: 0 24px 24px 0;
}
.tg .btn-rounded-bottom.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
}
.tg .btn-rounded-bottom.btn-lg.btn {
  height: 24px;
  width: 48px;
  line-height: 23px;
  -webkit-border-radius: 0 0 24px 24px;
  border-radius: 0 0 24px 24px;
}
.tg .btn-rounded-left.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
}
.tg .btn-rounded-left.btn-lg.btn {
  height: 48px;
  width: 24px;
  -webkit-border-radius: 24px 0 0 24px;
  border-radius: 24px 0 0 24px;
}
.tg .btn-square.btn {
  padding: 0 !important;
}
.tg .btn-square.btn-sm.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 27px;
  width: 29px;
  height: 29px;
}
.tg .btn-square.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 32px;
  width: 34px;
  height: 34px;
}
.tg .btn-square.btn-lg.btn {
  border-width: 1px;
  background-clip: border-box !important;
  line-height: 46px;
  width: 48px;
  height: 48px;
}
.tg .btn-wrap {
  white-space: normal;
}
.tg .btn:focus {
  outline: thin dotted #767676;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.tg .btn:focus:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #66afe9;
  outline: 0;
}
.tg .btn:hover {
  z-index: 1;
  text-decoration: none;
}
.tg .btn.active,
.tg .btn:active {
  outline: none;
  background-image: none;
}
.tg .btn.disabled,
.tg .btn[disabled],
.tg fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
}
.tg .open .dropdown-toggle .btn.disabled.btn-transparent,
.tg .open .dropdown-toggle .btn[disabled].btn-transparent,
.tg .open .dropdown-toggle fieldset[disabled] .btn.btn-transparent {
  border-color: transparent !important;
  background-color: transparent !important;
}
.tg .btn-sm,
.tg .form-group-sm .btn {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 3px 10px;
}
.tg .btn-lg,
.tg .form-group-lg .btn {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 12px 20px;
}
.tg .btn-transparent,
.tg a.btn-transparent {
  border: 1px solid transparent;
  background: inherit;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-transparent:hover,
.tg a.btn-transparent:hover,
.tg .btn-transparent:focus,
.tg a.btn-transparent:focus,
.tg .open .dropdown-toggle.btn-transparent,
.tg .open .dropdown-togglea.btn-transparent {
  background: #ffffff;
  border-color: inherit;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-transparent:active,
.tg a.btn-transparent:active,
.tg .btn-transparent.active,
.tg a.btn-transparent.active,
.tg .open .dropdown-toggle.btn-transparent,
.tg .open .dropdown-togglea.btn-transparent {
  background: #ffffff;
  border-color: inherit;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-transparent.disabled,
.tg a.btn-transparent.disabled,
.tg .btn-transparent[disabled],
.tg a.btn-transparent[disabled],
.tg fieldset[disabled] .btn-transparent,
.tg fieldset[disabled] a.btn-transparent {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-transparent.disabled.btn-transparent,
.tg a.btn-transparent.disabled.btn-transparent,
.tg .btn-transparent[disabled].btn-transparent,
.tg a.btn-transparent[disabled].btn-transparent,
.tg fieldset[disabled] .btn-transparent.btn-transparent,
.tg fieldset[disabled] a.btn-transparent.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-transparent.read-only:hover,
.tg a.btn-transparent.read-only:hover,
.tg .btn-transparent.read-only.active,
.tg a.btn-transparent.read-only.active,
.tg .btn-transparent.read-only:active,
.tg a.btn-transparent.read-only:active,
.tg .open .dropdown-toggle.btn-transparent.read-only,
.tg .open .dropdown-togglea.btn-transparent.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit !important;
}
.tg .btn-tertiary-a,
.tg a.btn-tertiary-a {
  border: 1px solid transparent;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #afafd4;
  border-bottom-color: #373767;
  background: #525199;
  color: #ffffff;
}
.tg .btn-tertiary-a:hover,
.tg a.btn-tertiary-a:hover,
.tg .btn-tertiary-a:focus,
.tg a.btn-tertiary-a:focus,
.tg .open .dropdown-toggle.btn-tertiary-a,
.tg .open .dropdown-togglea.btn-tertiary-a {
  background: #ffffff;
  border-color: #525199;
  color: #333333;
}
.tg .btn-tertiary-a:active,
.tg a.btn-tertiary-a:active,
.tg .btn-tertiary-a.active,
.tg a.btn-tertiary-a.active,
.tg .open .dropdown-toggle.btn-tertiary-a,
.tg .open .dropdown-togglea.btn-tertiary-a {
  background: #ffffff;
  border-color: #525199;
  color: #333333;
}
.tg .btn-tertiary-a.disabled,
.tg a.btn-tertiary-a.disabled,
.tg .btn-tertiary-a[disabled],
.tg a.btn-tertiary-a[disabled],
.tg fieldset[disabled] .btn-tertiary-a,
.tg fieldset[disabled] a.btn-tertiary-a {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-tertiary-a.disabled.btn-transparent,
.tg a.btn-tertiary-a.disabled.btn-transparent,
.tg .btn-tertiary-a[disabled].btn-transparent,
.tg a.btn-tertiary-a[disabled].btn-transparent,
.tg fieldset[disabled] .btn-tertiary-a.btn-transparent,
.tg fieldset[disabled] a.btn-tertiary-a.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-tertiary-a.read-only:hover,
.tg a.btn-tertiary-a.read-only:hover,
.tg .btn-tertiary-a.read-only.active,
.tg a.btn-tertiary-a.read-only.active,
.tg .btn-tertiary-a.read-only:active,
.tg a.btn-tertiary-a.read-only:active,
.tg .open .dropdown-toggle.btn-tertiary-a.read-only,
.tg .open .dropdown-togglea.btn-tertiary-a.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #525199 !important;
}
.tg .btn-tertiary-b,
.tg a.btn-tertiary-b {
  border: 1px solid transparent;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #dcebf7;
  border-bottom-color: #2d82c1;
  background: #60a6da;
  color: #ffffff;
}
.tg .btn-tertiary-b:hover,
.tg a.btn-tertiary-b:hover,
.tg .btn-tertiary-b:focus,
.tg a.btn-tertiary-b:focus,
.tg .open .dropdown-toggle.btn-tertiary-b,
.tg .open .dropdown-togglea.btn-tertiary-b {
  background: #ffffff;
  border-color: #60a6da;
  color: #333333;
}
.tg .btn-tertiary-b:active,
.tg a.btn-tertiary-b:active,
.tg .btn-tertiary-b.active,
.tg a.btn-tertiary-b.active,
.tg .open .dropdown-toggle.btn-tertiary-b,
.tg .open .dropdown-togglea.btn-tertiary-b {
  background: #ffffff;
  border-color: #60a6da;
  color: #333333;
}
.tg .btn-tertiary-b.disabled,
.tg a.btn-tertiary-b.disabled,
.tg .btn-tertiary-b[disabled],
.tg a.btn-tertiary-b[disabled],
.tg fieldset[disabled] .btn-tertiary-b,
.tg fieldset[disabled] a.btn-tertiary-b {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-tertiary-b.disabled.btn-transparent,
.tg a.btn-tertiary-b.disabled.btn-transparent,
.tg .btn-tertiary-b[disabled].btn-transparent,
.tg a.btn-tertiary-b[disabled].btn-transparent,
.tg fieldset[disabled] .btn-tertiary-b.btn-transparent,
.tg fieldset[disabled] a.btn-tertiary-b.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-tertiary-b.read-only:hover,
.tg a.btn-tertiary-b.read-only:hover,
.tg .btn-tertiary-b.read-only.active,
.tg a.btn-tertiary-b.read-only.active,
.tg .btn-tertiary-b.read-only:active,
.tg a.btn-tertiary-b.read-only:active,
.tg .open .dropdown-toggle.btn-tertiary-b.read-only,
.tg .open .dropdown-togglea.btn-tertiary-b.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #60a6da !important;
}
.tg .btn-tertiary-c,
.tg a.btn-tertiary-c {
  border: 1px solid transparent;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ff45b4;
  border-bottom-color: #5e0038;
  background: #ab0066;
  color: #ffffff;
}
.tg .btn-tertiary-c:hover,
.tg a.btn-tertiary-c:hover,
.tg .btn-tertiary-c:focus,
.tg a.btn-tertiary-c:focus,
.tg .open .dropdown-toggle.btn-tertiary-c,
.tg .open .dropdown-togglea.btn-tertiary-c {
  background: #ffffff;
  border-color: #ab0066;
  color: #333333;
}
.tg .btn-tertiary-c:active,
.tg a.btn-tertiary-c:active,
.tg .btn-tertiary-c.active,
.tg a.btn-tertiary-c.active,
.tg .open .dropdown-toggle.btn-tertiary-c,
.tg .open .dropdown-togglea.btn-tertiary-c {
  background: #ffffff;
  border-color: #ab0066;
  color: #333333;
}
.tg .btn-tertiary-c.disabled,
.tg a.btn-tertiary-c.disabled,
.tg .btn-tertiary-c[disabled],
.tg a.btn-tertiary-c[disabled],
.tg fieldset[disabled] .btn-tertiary-c,
.tg fieldset[disabled] a.btn-tertiary-c {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-tertiary-c.disabled.btn-transparent,
.tg a.btn-tertiary-c.disabled.btn-transparent,
.tg .btn-tertiary-c[disabled].btn-transparent,
.tg a.btn-tertiary-c[disabled].btn-transparent,
.tg fieldset[disabled] .btn-tertiary-c.btn-transparent,
.tg fieldset[disabled] a.btn-tertiary-c.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-tertiary-c.read-only:hover,
.tg a.btn-tertiary-c.read-only:hover,
.tg .btn-tertiary-c.read-only.active,
.tg a.btn-tertiary-c.read-only.active,
.tg .btn-tertiary-c.read-only:active,
.tg a.btn-tertiary-c.read-only:active,
.tg .open .dropdown-toggle.btn-tertiary-c.read-only,
.tg .open .dropdown-togglea.btn-tertiary-c.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ab0066 !important;
}
.tg .btn-tertiary-d,
.tg a.btn-tertiary-d {
  border: 1px solid transparent;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #eff2bc;
  border-bottom-color: #a0a821;
  background: #d0d93c;
  color: #ffffff;
  color: #333333;
}
.tg .btn-tertiary-d:hover,
.tg a.btn-tertiary-d:hover,
.tg .btn-tertiary-d:focus,
.tg a.btn-tertiary-d:focus,
.tg .open .dropdown-toggle.btn-tertiary-d,
.tg .open .dropdown-togglea.btn-tertiary-d {
  background: #ffffff;
  border-color: #d0d93c;
  color: #333333;
}
.tg .btn-tertiary-d:active,
.tg a.btn-tertiary-d:active,
.tg .btn-tertiary-d.active,
.tg a.btn-tertiary-d.active,
.tg .open .dropdown-toggle.btn-tertiary-d,
.tg .open .dropdown-togglea.btn-tertiary-d {
  background: #ffffff;
  border-color: #d0d93c;
  color: #333333;
}
.tg .btn-tertiary-d.disabled,
.tg a.btn-tertiary-d.disabled,
.tg .btn-tertiary-d[disabled],
.tg a.btn-tertiary-d[disabled],
.tg fieldset[disabled] .btn-tertiary-d,
.tg fieldset[disabled] a.btn-tertiary-d {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-tertiary-d.disabled.btn-transparent,
.tg a.btn-tertiary-d.disabled.btn-transparent,
.tg .btn-tertiary-d[disabled].btn-transparent,
.tg a.btn-tertiary-d[disabled].btn-transparent,
.tg fieldset[disabled] .btn-tertiary-d.btn-transparent,
.tg fieldset[disabled] a.btn-tertiary-d.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-tertiary-d.read-only:hover,
.tg a.btn-tertiary-d.read-only:hover,
.tg .btn-tertiary-d.read-only.active,
.tg a.btn-tertiary-d.read-only.active,
.tg .btn-tertiary-d.read-only:active,
.tg a.btn-tertiary-d.read-only:active,
.tg .open .dropdown-toggle.btn-tertiary-d.read-only,
.tg .open .dropdown-togglea.btn-tertiary-d.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #d0d93c !important;
}
.tg .btn-tertiary-e,
.tg a.btn-tertiary-e {
  border: 1px solid transparent;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #8cd7a2;
  border-bottom-color: #205d32;
  background: #349651;
  color: #ffffff;
}
.tg .btn-tertiary-e:hover,
.tg a.btn-tertiary-e:hover,
.tg .btn-tertiary-e:focus,
.tg a.btn-tertiary-e:focus,
.tg .open .dropdown-toggle.btn-tertiary-e,
.tg .open .dropdown-togglea.btn-tertiary-e {
  background: #ffffff;
  border-color: #349651;
  color: #333333;
}
.tg .btn-tertiary-e:active,
.tg a.btn-tertiary-e:active,
.tg .btn-tertiary-e.active,
.tg a.btn-tertiary-e.active,
.tg .open .dropdown-toggle.btn-tertiary-e,
.tg .open .dropdown-togglea.btn-tertiary-e {
  background: #ffffff;
  border-color: #349651;
  color: #333333;
}
.tg .btn-tertiary-e.disabled,
.tg a.btn-tertiary-e.disabled,
.tg .btn-tertiary-e[disabled],
.tg a.btn-tertiary-e[disabled],
.tg fieldset[disabled] .btn-tertiary-e,
.tg fieldset[disabled] a.btn-tertiary-e {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-tertiary-e.disabled.btn-transparent,
.tg a.btn-tertiary-e.disabled.btn-transparent,
.tg .btn-tertiary-e[disabled].btn-transparent,
.tg a.btn-tertiary-e[disabled].btn-transparent,
.tg fieldset[disabled] .btn-tertiary-e.btn-transparent,
.tg fieldset[disabled] a.btn-tertiary-e.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-tertiary-e.read-only:hover,
.tg a.btn-tertiary-e.read-only:hover,
.tg .btn-tertiary-e.read-only.active,
.tg a.btn-tertiary-e.read-only.active,
.tg .btn-tertiary-e.read-only:active,
.tg a.btn-tertiary-e.read-only:active,
.tg .open .dropdown-toggle.btn-tertiary-e.read-only,
.tg .open .dropdown-togglea.btn-tertiary-e.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #349651 !important;
}
.tg .btn-default,
.tg a.btn-default {
  border: 1px solid transparent;
  background: #f5f5f5;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ffffff;
  border-bottom-color: #cfcfcf;
}
.tg .btn-default:hover,
.tg a.btn-default:hover,
.tg .btn-default:focus,
.tg a.btn-default:focus,
.tg .open .dropdown-toggle.btn-default,
.tg .open .dropdown-togglea.btn-default {
  background: #ffffff;
  border-color: #f5f5f5;
  border-color: #adadad;
  color: #333333;
}
.tg .btn-default:active,
.tg a.btn-default:active,
.tg .btn-default.active,
.tg a.btn-default.active,
.tg .open .dropdown-toggle.btn-default,
.tg .open .dropdown-togglea.btn-default {
  background: #ffffff;
  border-color: #f5f5f5;
  color: #333333;
  border-color: #adadad;
}
.tg .btn-default.disabled,
.tg a.btn-default.disabled,
.tg .btn-default[disabled],
.tg a.btn-default[disabled],
.tg fieldset[disabled] .btn-default,
.tg fieldset[disabled] a.btn-default {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-default.disabled.btn-transparent,
.tg a.btn-default.disabled.btn-transparent,
.tg .btn-default[disabled].btn-transparent,
.tg a.btn-default[disabled].btn-transparent,
.tg fieldset[disabled] .btn-default.btn-transparent,
.tg fieldset[disabled] a.btn-default.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-default.read-only:hover,
.tg a.btn-default.read-only:hover,
.tg .btn-default.read-only.active,
.tg a.btn-default.read-only.active,
.tg .btn-default.read-only:active,
.tg a.btn-default.read-only:active,
.tg .open .dropdown-toggle.btn-default.read-only,
.tg .open .dropdown-togglea.btn-default.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f5f5f5 !important;
}
.tg .btn-primary,
.tg a.btn-primary {
  border: 1px solid transparent;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ffc099;
  border-bottom-color: #b34500;
  background: #ff6200;
  color: #ffffff;
}
.tg .btn-primary:hover,
.tg a.btn-primary:hover,
.tg .btn-primary:focus,
.tg a.btn-primary:focus,
.tg .open .dropdown-toggle.btn-primary,
.tg .open .dropdown-togglea.btn-primary {
  background: #ffffff;
  border-color: #adadad;
  color: #333333;
  border-color: #ff6200;
  color: #ff6200;
}
.tg .btn-primary:active,
.tg a.btn-primary:active,
.tg .btn-primary.active,
.tg a.btn-primary.active,
.tg .open .dropdown-toggle.btn-primary,
.tg .open .dropdown-togglea.btn-primary {
  background: #ffffff;
  color: #333333;
  border-color: #adadad;
  border-color: #ff6200;
  color: #ff6200;
}
.tg .btn-primary.disabled,
.tg a.btn-primary.disabled,
.tg .btn-primary[disabled],
.tg a.btn-primary[disabled],
.tg fieldset[disabled] .btn-primary,
.tg fieldset[disabled] a.btn-primary {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-primary.disabled.btn-transparent,
.tg a.btn-primary.disabled.btn-transparent,
.tg .btn-primary[disabled].btn-transparent,
.tg a.btn-primary[disabled].btn-transparent,
.tg fieldset[disabled] .btn-primary.btn-transparent,
.tg fieldset[disabled] a.btn-primary.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-primary.read-only:hover,
.tg a.btn-primary.read-only:hover,
.tg .btn-primary.read-only.active,
.tg a.btn-primary.read-only.active,
.tg .btn-primary.read-only:active,
.tg a.btn-primary.read-only:active,
.tg .open .dropdown-toggle.btn-primary.read-only,
.tg .open .dropdown-togglea.btn-primary.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ff6200 !important;
}
.tg .btn-secondary,
.tg a.btn-secondary {
  border: 1px solid transparent;
  color: #ff6200;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ffffff;
  border-bottom-color: #cfcfcf;
  background: #f5f5f5;
}
.tg .btn-secondary:hover,
.tg a.btn-secondary:hover,
.tg .btn-secondary:focus,
.tg a.btn-secondary:focus,
.tg .open .dropdown-toggle.btn-secondary,
.tg .open .dropdown-togglea.btn-secondary {
  background: #ffffff;
  border-color: #f5f5f5;
  border-color: #adadad;
  color: #333333;
  color: #ff6200;
}
.tg .btn-secondary:active,
.tg a.btn-secondary:active,
.tg .btn-secondary.active,
.tg a.btn-secondary.active,
.tg .open .dropdown-toggle.btn-secondary,
.tg .open .dropdown-togglea.btn-secondary {
  background: #ffffff;
  border-color: #f5f5f5;
  color: #333333;
  border-color: #adadad;
  color: #ff6200;
}
.tg .btn-secondary.disabled,
.tg a.btn-secondary.disabled,
.tg .btn-secondary[disabled],
.tg a.btn-secondary[disabled],
.tg fieldset[disabled] .btn-secondary,
.tg fieldset[disabled] a.btn-secondary {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-secondary.disabled.btn-transparent,
.tg a.btn-secondary.disabled.btn-transparent,
.tg .btn-secondary[disabled].btn-transparent,
.tg a.btn-secondary[disabled].btn-transparent,
.tg fieldset[disabled] .btn-secondary.btn-transparent,
.tg fieldset[disabled] a.btn-secondary.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-secondary.read-only:hover,
.tg a.btn-secondary.read-only:hover,
.tg .btn-secondary.read-only.active,
.tg a.btn-secondary.read-only.active,
.tg .btn-secondary.read-only:active,
.tg a.btn-secondary.read-only:active,
.tg .open .dropdown-toggle.btn-secondary.read-only,
.tg .open .dropdown-togglea.btn-secondary.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f5f5f5 !important;
}
.tg .btn-inverse,
.tg a.btn-inverse {
  border: 1px solid transparent;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background: #ffffff;
  color: #ff6200;
}
.tg .btn-inverse:hover,
.tg a.btn-inverse:hover,
.tg .btn-inverse:focus,
.tg a.btn-inverse:focus,
.tg .open .dropdown-toggle.btn-inverse,
.tg .open .dropdown-togglea.btn-inverse {
  background: #ffffff;
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.tg .btn-inverse:active,
.tg a.btn-inverse:active,
.tg .btn-inverse.active,
.tg a.btn-inverse.active,
.tg .open .dropdown-toggle.btn-inverse,
.tg .open .dropdown-togglea.btn-inverse {
  background: #ffffff;
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.tg .btn-inverse.disabled,
.tg a.btn-inverse.disabled,
.tg .btn-inverse[disabled],
.tg a.btn-inverse[disabled],
.tg fieldset[disabled] .btn-inverse,
.tg fieldset[disabled] a.btn-inverse {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-inverse.disabled.btn-transparent,
.tg a.btn-inverse.disabled.btn-transparent,
.tg .btn-inverse[disabled].btn-transparent,
.tg a.btn-inverse[disabled].btn-transparent,
.tg fieldset[disabled] .btn-inverse.btn-transparent,
.tg fieldset[disabled] a.btn-inverse.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-inverse.read-only:hover,
.tg a.btn-inverse.read-only:hover,
.tg .btn-inverse.read-only.active,
.tg a.btn-inverse.read-only.active,
.tg .btn-inverse.read-only:active,
.tg a.btn-inverse.read-only:active,
.tg .open .dropdown-toggle.btn-inverse.read-only,
.tg .open .dropdown-togglea.btn-inverse.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff !important;
}
.tg .btn-inverse.btn-default,
.tg a.btn-inverse.btn-default {
  border: 1px solid transparent;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background: #ffffff;
  color: #333333;
}
.tg .btn-inverse.btn-default:hover,
.tg a.btn-inverse.btn-default:hover,
.tg .btn-inverse.btn-default:focus,
.tg a.btn-inverse.btn-default:focus,
.tg .open .dropdown-toggle.btn-inverse.btn-default,
.tg .open .dropdown-togglea.btn-inverse.btn-default {
  background: #ffffff;
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.tg .btn-inverse.btn-default:active,
.tg a.btn-inverse.btn-default:active,
.tg .btn-inverse.btn-default.active,
.tg a.btn-inverse.btn-default.active,
.tg .open .dropdown-toggle.btn-inverse.btn-default,
.tg .open .dropdown-togglea.btn-inverse.btn-default {
  background: #ffffff;
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.tg .btn-inverse.btn-default.disabled,
.tg a.btn-inverse.btn-default.disabled,
.tg .btn-inverse.btn-default[disabled],
.tg a.btn-inverse.btn-default[disabled],
.tg fieldset[disabled] .btn-inverse.btn-default,
.tg fieldset[disabled] a.btn-inverse.btn-default {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-inverse.btn-default.disabled.btn-transparent,
.tg a.btn-inverse.btn-default.disabled.btn-transparent,
.tg .btn-inverse.btn-default[disabled].btn-transparent,
.tg a.btn-inverse.btn-default[disabled].btn-transparent,
.tg fieldset[disabled] .btn-inverse.btn-default.btn-transparent,
.tg fieldset[disabled] a.btn-inverse.btn-default.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-inverse.btn-default.read-only:hover,
.tg a.btn-inverse.btn-default.read-only:hover,
.tg .btn-inverse.btn-default.read-only.active,
.tg a.btn-inverse.btn-default.read-only.active,
.tg .btn-inverse.btn-default.read-only:active,
.tg a.btn-inverse.btn-default.read-only:active,
.tg .open .dropdown-toggle.btn-inverse.btn-default.read-only,
.tg .open .dropdown-togglea.btn-inverse.btn-default.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ffffff !important;
}
.tg .btn-inverse.btn-transparent,
.tg a.btn-inverse.btn-transparent {
  border: 1px solid transparent;
  background: inherit;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-inverse.btn-transparent:hover,
.tg a.btn-inverse.btn-transparent:hover,
.tg .btn-inverse.btn-transparent:focus,
.tg a.btn-inverse.btn-transparent:focus,
.tg .open .dropdown-toggle.btn-inverse.btn-transparent,
.tg .open .dropdown-togglea.btn-inverse.btn-transparent {
  background: #ffffff;
  border-color: inherit;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-inverse.btn-transparent:active,
.tg a.btn-inverse.btn-transparent:active,
.tg .btn-inverse.btn-transparent.active,
.tg a.btn-inverse.btn-transparent.active,
.tg .open .dropdown-toggle.btn-inverse.btn-transparent,
.tg .open .dropdown-togglea.btn-inverse.btn-transparent {
  background: #ffffff;
  border-color: inherit;
  border-width: 0;
  background-color: transparent;
  color: inherit;
}
.tg .btn-inverse.btn-transparent.disabled,
.tg a.btn-inverse.btn-transparent.disabled,
.tg .btn-inverse.btn-transparent[disabled],
.tg a.btn-inverse.btn-transparent[disabled],
.tg fieldset[disabled] .btn-inverse.btn-transparent,
.tg fieldset[disabled] a.btn-inverse.btn-transparent {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-inverse.btn-transparent.disabled.btn-transparent,
.tg a.btn-inverse.btn-transparent.disabled.btn-transparent,
.tg .btn-inverse.btn-transparent[disabled].btn-transparent,
.tg a.btn-inverse.btn-transparent[disabled].btn-transparent,
.tg fieldset[disabled] .btn-inverse.btn-transparent.btn-transparent,
.tg fieldset[disabled] a.btn-inverse.btn-transparent.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-inverse.btn-transparent.read-only:hover,
.tg a.btn-inverse.btn-transparent.read-only:hover,
.tg .btn-inverse.btn-transparent.read-only.active,
.tg a.btn-inverse.btn-transparent.read-only.active,
.tg .btn-inverse.btn-transparent.read-only:active,
.tg a.btn-inverse.btn-transparent.read-only:active,
.tg .open .dropdown-toggle.btn-inverse.btn-transparent.read-only,
.tg .open .dropdown-togglea.btn-inverse.btn-transparent.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: inherit !important;
}
.tg .btn-link {
  -webkit-border-radius: 0;
  border-radius: 0;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
.tg .btn-link,
.tg .btn-link:active,
.tg .btn-link[disabled],
.tg fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tg .btn-link,
.tg .btn-link:hover,
.tg .btn-link:focus,
.tg .btn-link:active {
  border-color: transparent;
}
.tg .btn-link:hover,
.tg .btn-link:focus {
  background-color: transparent;
  text-decoration: underline;
  color: #333333;
}
.tg .btn-link[disabled]:hover,
.tg fieldset[disabled] .btn-link:hover,
.tg .btn-link[disabled]:focus,
.tg fieldset[disabled] .btn-link:focus {
  text-decoration: none;
  color: #d5d5d5;
}
.tg .btn-unstyled {
  border: none;
  background: transparent;
  text-decoration: inherit;
  line-height: 0;
  padding: 4px;
}
.tg .btn-icon-left .icon,
.tg .btn-icon-right .icon {
  display: inline-block;
  margin-top: -3px;
}
.tg .btn-icon-left.btn-sm .icon,
.tg .btn-icon-right.btn-sm .icon {
  margin-top: -2px;
}
.tg .btn-icon-left .btn-lg .icon,
.tg .btn-icon-right .btn-lg .icon {
  margin-top: -4px;
}
.tg .btn-icon-left .icon {
  margin-right: 5px;
}
.tg .btn-icon-right .icon {
  margin-left: 5px;
}
.tg .table .btn-sm {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.tg dl {
  margin-top: 0;
  margin-bottom: 24px;
}
.tg dt,
.tg dd {
  line-height: 1.5;
}
.tg dt ~ dt {
  margin-top: 12px;
}
.tg dt + dt {
  margin-top: 0;
}
.tg dd {
  margin-left: 0;
}
.tg dd + dd {
  margin-top: 6px;
}
.tg .dl-grid {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .dl-grid dt {
  clear: both;
}
.tg .dl-grid dt:first-child + dd {
  margin-top: 0;
}
.tg .dl-grid dd {
  float: right;
  margin-top: 12px;
}
.tg .dl-grid dd:before,
.tg .dl-grid dd:after {
  content: " ";
  display: table;
}
.tg .dl-grid dd:after {
  clear: both;
}
.tg .dl-grid dd:before,
.tg .dl-grid dd:after {
  content: " ";
  display: table;
}
.tg .dl-grid dd:after {
  clear: both;
}
.tg .dl-grid dd + dd {
  clear: right;
  margin-top: 6px;
}
@media (max-width: 479px) {
  .tg .dl-grid dd {
    float: none;
    margin-top: 0;
  }
}
.tg .dl-grid-reset dd {
  float: none;
  margin-top: 0;
}
.tg .dl-title-bold dt {
  font-weight: bold;
}
.tg .dl-sm dt ~ dt {
  margin-top: 0;
}
.tg .dl-sm.dl-grid dd {
  margin-top: 0;
}
.tg .dl-a dt {
  color: #ff6200;
}
.tg form {
  margin-bottom: 24px;
}
.tg .form-control {
  display: block;
  width: 100%;
  height: 34px;
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  background-image: none;
  color: #333333;
  margin-bottom: 0;
  padding: 5px 10px;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.tg .form-control::-webkit-input-placeholder {
  color: #adadad;
}
.tg .form-control::-moz-placeholder {
  color: #adadad;
}
.tg .form-control:-ms-input-placeholder {
  color: #adadad;
}
.tg .form-control::placeholder {
  color: #adadad;
}
.tg .form-control.placeholder {
  color: #adadad;
}
.tg textarea.form-control {
  height: auto;
}
.tg input {
  color: inherit;
  font: inherit;
  margin: 0;
}
.tg input[type="button"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.tg input[type="checkbox"],
.tg input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: normal;
  margin-top: 4px;
  padding: 0;
}
.tg .checkbox input[type="checkbox"],
.tg .checkbox-inline input[type="checkbox"],
.tg .radio input[type="radio"],
.tg .radio-inline input[type="radio"] {
  position: absolute;
  margin-left: -20px;
}
.tg .checkbox-custom input[type="checkbox"] {
  opacity: 0;
  z-index: -1;
}
.tg .radio-custom input[type="radio"] {
  opacity: 0;
  z-index: -1;
}
.tg .checkbox-custom-input,
.tg .radio-custom-input {
  display: inline-block;
  position: absolute;
  width: 18px;
  height: 18px;
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border: 1px solid #adadad;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  margin-top: 3px;
  margin-left: -24px;
}
.tg .checkbox-custom-input {
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.tg .radio-custom-input {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.tg input[type="file"] {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.tg input[type="file"]::-webkit-file-upload-button {
  cursor: pointer;
}
.tg input[type="file"]:focus + .focus-ring {
  opacity: 1;
}
.tg input[type="number"]::-webkit-outer-spin-button,
.tg input[type="number"]::-webkit-inner-spin-button {
  height: auto;
}
.tg input[type="range"] {
  display: block;
  width: 100%;
}
.tg input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.tg input[type="search"] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: none;
}
.tg input[type="search"]::-webkit-search-cancel-button,
.tg input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
.tg input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
.tg output {
  display: block;
  color: #333333;
}
.tg select,
.tg optgroup {
  color: inherit;
  font: inherit;
  text-transform: none;
  margin: 0;
}
.tg select[multiple],
.tg select[size] {
  height: auto;
}
.tg textarea {
  overflow: auto;
  color: inherit;
  font: inherit;
  margin: 0;
}
.tg .checkbox,
.tg .radio {
  position: relative;
  display: block;
}
.tg .checkbox + .radio,
.tg .radio + .radio,
.tg .checkbox + .checkbox,
.tg .radio + .checkbox {
  margin-top: -5px;
}
.tg .checkbox-inline,
.tg .radio-inline {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.tg .checkbox-inline + .checkbox-inline,
.tg .radio-inline + .checkbox-inline,
.tg .checkbox-inline + .radio-inline,
.tg .radio-inline + .radio-inline {
  margin-left: 10px;
}
.tg .control-label-pseudo {
  padding-top: 5px;
  padding-bottom: 5px;
}
.tg fieldset {
  min-width: 0;
  border: 0;
  margin: 0;
  padding: 0;
}
.tg .fieldset-row {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 8px;
  margin-bottom: 0;
}
.tg .fieldset-row dd {
  margin-bottom: 6px;
}
.tg .form-group {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 8px;
  padding-top: 8px;
}
.tg .fieldset-row .form-group {
  margin-right: 0;
  margin-left: 0;
  padding: 0;
}
.tg label {
  display: block;
  max-width: 100%;
  padding: 5px 0;
  cursor: pointer;
}
.tg .checkbox label,
.tg .radio label {
  min-height: 34px;
  padding-left: 20px;
}
.tg .checkbox-inline label,
.tg .radio-inline label {
  padding-left: 20px;
  padding-right: 5px;
}
.tg .checkbox-custom label,
.tg .radio-custom label {
  padding-left: 24px;
}
.tg legend {
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.tg legend.control-label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tg .fieldset-row legend {
  top: 8px;
}
.tg .legend-listing {
  margin-bottom: 0;
}
.tg form .alert {
  margin: 12px 0;
}
.tg .form-control-pseudo {
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tg .form-control-help {
  display: block;
  color: #767676;
  margin-top: 8px;
}
.tg .fieldset-row .form-control-help {
  margin-top: 0;
  margin-bottom: 8px;
}
.tg .form-text-only fieldset,
.tg fieldset.form-text-only {
  margin-bottom: 12px;
}
.tg .form-text-only .form-group,
.tg .form-text-only.form-group {
  margin-bottom: 6px;
  padding-top: 4px;
}
.tg .input-price {
  text-align: right;
}
.tg .checkbox-custom input[type="checkbox"]:checked + .checkbox-custom-input:after {
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 1px;
  left: 1px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #ff6200;
  content: "\e92d";
}
.tg .radio-custom input[type="radio"]:checked + .radio-custom-input:after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #ff6200;
  content: "";
}
.tg .form-control-disabled label {
  cursor: auto;
}
.tg .form-control-disabled .form-control {
  background-color: #f5f5f5;
  color: #adadad;
  cursor: not-allowed;
  opacity: 1;
}
.tg .form-control-disabled input[type="radio"][disabled],
.tg .form-control-disabled input[type="checkbox"][disabled] {
  cursor: not-allowed;
}
.tg .form-control-disabled input[type="radio"][disabled] + .checkbox-custom-input,
.tg .form-control-disabled input[type="checkbox"][disabled] + .checkbox-custom-input,
.tg .form-control-disabled input[type="radio"][disabled] + .radio-custom-input,
.tg .form-control-disabled input[type="checkbox"][disabled] + .radio-custom-input {
  border-color: #d5d5d5 !important;
  background-color: #f5f5f5 !important;
  cursor: not-allowed;
}
.tg .form-control-disabled input[type="radio"][disabled] + .checkbox-custom-input:after,
.tg .form-control-disabled input[type="checkbox"][disabled] + .checkbox-custom-input:after {
  color: #adadad !important;
}
.tg .form-control-disabled input[type="radio"][disabled] + .radio-custom-input:after,
.tg .form-control-disabled input[type="checkbox"][disabled] + .radio-custom-input:after {
  background: #adadad !important;
}
.tg input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.tg input[type="checkbox"]:focus,
.tg input[type="radio"]:focus {
  outline: thin dotted #767676;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.tg .checkbox-custom input[type="checkbox"]:focus + .checkbox-custom-input,
.tg .radio-custom input[type="radio"]:focus + .radio-custom-input {
  outline: thin dotted #767676;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.tg .form-control:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  border-color: #66afe9;
  outline: 0;
}
.tg .checkbox-custom input[type="checkbox"]:hover + .checkbox-custom-input,
.tg .radio-custom input[type="radio"]:hover + .radio-custom-input {
  border-color: #767676;
}
.tg .form-control[readonly] {
  background-color: #f5f5f5;
  color: #adadad;
  opacity: 1;
}
.tg .has-error {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background: #ffebeb;
  margin: 0 -20px 4px -20px;
  padding: 6px 20px;
}
.tg .has-error .invalid .form-control,
.tg .has-error .invalid .radio-custom-input,
.tg .has-error .invalid .checkbox-custom-input {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border-color: #ff0000;
}
.tg .has-error .invalid .form-control:focus,
.tg .has-error .invalid .radio-custom-input:focus,
.tg .has-error .invalid .checkbox-custom-input:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #ff6666;
  box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #ff6666;
  border-color: #990000;
}
.tg .has-error .invalid .input-group-addon {
  border-color: #ff0000;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-error .message {
  position: relative;
  color: #333333;
  padding: 0 0 0 30px;
}
.tg .has-error .message .icon,
.tg .has-error .message .stacked-icon {
  position: absolute;
  top: -1px;
  left: 0;
}
.tg .has-error .input-group-btn:last-child > .btn {
  margin-left: 0;
}
.tg .has-error .message .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .has-error .message .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .has-error .message .stacked-icon .icon {
  content: "\e9bf";
  color: #ff0000;
}
.tg .has-error .message .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .has-error .message .stacked-icon .icon + .icon {
  content: "\e9b6";
  color: #ffffff;
}
.tg .has-error .message .stacked-icon .icon + .icon:before {
  content: "\e9b6" !important;
}
.tg .has-info {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background: #f3f8fc;
  margin: 0 -20px 4px -20px;
  padding: 6px 20px;
}
.tg .has-info .invalid .form-control,
.tg .has-info .invalid .radio-custom-input,
.tg .has-info .invalid .checkbox-custom-input {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border-color: #60a6da;
}
.tg .has-info .invalid .form-control:focus,
.tg .has-info .invalid .radio-custom-input:focus,
.tg .has-info .invalid .checkbox-custom-input:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #b3d4ed;
  box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #b3d4ed;
  border-color: #2874ac;
}
.tg .has-info .invalid .input-group-addon {
  border-color: #60a6da;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-info .message {
  position: relative;
  color: #333333;
  padding: 0 0 0 30px;
}
.tg .has-info .message .icon,
.tg .has-info .message .stacked-icon {
  position: absolute;
  top: -1px;
  left: 0;
}
.tg .has-info .input-group-btn:last-child > .btn {
  margin-left: 0;
}
.tg .has-info .message .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .has-info .message .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .has-info .message .stacked-icon .icon {
  content: "\e9bf";
  color: #60a6da;
}
.tg .has-info .message .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .has-info .message .stacked-icon .icon + .icon {
  content: "\e9b8";
  color: #ffffff;
}
.tg .has-info .message .stacked-icon .icon + .icon:before {
  content: "\e9b8" !important;
}
.tg .has-success {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background: #eff7f1;
  margin: 0 -20px 4px -20px;
  padding: 6px 20px;
}
.tg .has-success .invalid .form-control,
.tg .has-success .invalid .radio-custom-input,
.tg .has-success .invalid .checkbox-custom-input {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border-color: #349651;
}
.tg .has-success .invalid .form-control:focus,
.tg .has-success .invalid .radio-custom-input:focus,
.tg .has-success .invalid .checkbox-custom-input:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #66ca84;
  box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #66ca84;
  border-color: #1a4a28;
}
.tg .has-success .invalid .input-group-addon {
  border-color: #349651;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-success .message {
  position: relative;
  color: #333333;
  padding: 0 0 0 30px;
}
.tg .has-success .message .icon,
.tg .has-success .message .stacked-icon {
  position: absolute;
  top: -1px;
  left: 0;
}
.tg .has-success .input-group-btn:last-child > .btn {
  margin-left: 0;
}
.tg .has-success .message .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .has-success .message .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .has-success .message .stacked-icon .icon {
  content: "\e9bf";
  color: #349651;
}
.tg .has-success .message .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .has-success .message .stacked-icon .icon + .icon {
  content: "\e9bc";
  color: #ffffff;
}
.tg .has-success .message .stacked-icon .icon + .icon:before {
  content: "\e9bc" !important;
}
.tg .has-warning {
  -webkit-box-sizing: initial;
  box-sizing: initial;
  background: #fff3eb;
  margin: 0 -20px 4px -20px;
  padding: 6px 20px;
}
.tg .has-warning .invalid .form-control,
.tg .has-warning .invalid .radio-custom-input,
.tg .has-warning .invalid .checkbox-custom-input {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
  border-color: #ff6200;
}
.tg .has-warning .invalid .form-control:focus,
.tg .has-warning .invalid .radio-custom-input:focus,
.tg .has-warning .invalid .checkbox-custom-input:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #ffa166;
  box-shadow: inset 0 3px 2px -2px #d5d5d5, 0 0 6px #ffa166;
  border-color: #993b00;
}
.tg .has-warning .invalid .input-group-addon {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-warning .message {
  position: relative;
  color: #333333;
  padding: 0 0 0 30px;
}
.tg .has-warning .message .icon,
.tg .has-warning .message .stacked-icon {
  position: absolute;
  top: -1px;
  left: 0;
}
.tg .has-warning .input-group-btn:last-child > .btn {
  margin-left: 0;
}
.tg .has-warning .message .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .has-warning .message .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .has-warning .message .stacked-icon .icon {
  content: "\e9bf";
  color: #ff6200;
}
.tg .has-warning .message .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .has-warning .message .stacked-icon .icon + .icon {
  content: "\e9be";
  color: #ffffff;
}
.tg .has-warning .message .stacked-icon .icon + .icon:before {
  content: "\e9be" !important;
}
.tg .form-inline {
  margin-bottom: 0;
}
.tg .form-inline .form-control,
.tg .form-inline .form-control-pseudo {
  display: inline-block;
  vertical-align: middle;
}
.tg .form-inline .checkbox,
.tg .form-inline .radio {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 8px;
}
.tg .form-inline .form-group {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 8px 0;
}
.tg .form-inline .input-group-addon,
.tg .form-inline .input-group-btn {
  display: table-cell;
}
.tg .form-inline .input-group-addon {
  width: auto;
}
.tg .form-inline legend {
  top: 0;
}
.tg .form-inline .btn {
  margin-left: 20px;
}
.tg .form-horizontal .fieldset-row legend {
  top: 0;
}
.tg .form-horizontal legend {
  margin-bottom: 8px;
}
.tg .form-horizontal legend.control-label {
  margin-bottom: 0;
}
.tg .form-horizontal legend.control-label-positioned {
  margin-top: 34px;
}
.tg .form-horizontal .label-help {
  display: block;
}
.tg .input-sm,
.tg .form-group-sm .form-control {
  height: 29px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 3px 10px;
}
.tg select.input-sm {
  height: 29px;
  line-height: 29px;
}
.tg textarea.input-sm {
  height: auto;
}
.tg .input-lg,
.tg .form-group-lg .form-control {
  height: 49px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 12px 20px;
}
.tg select.input-lg {
  height: 49px;
  line-height: 49px;
}
.tg textarea.input-lg {
  height: auto;
}
.tg .form-group-sm .input-group-addon {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .form-horizontal .form-group-sm label {
  padding-top: 2px;
}
.tg .form-horizontal .form-group-lg label {
  padding-top: 12px;
}
.tg .btn-bar.form-group {
  margin-bottom: 8px;
  padding-top: 0;
}
.tg .form-text-only .btn-bar.form-group,
.tg .btn-bar.form-text-only.form-group {
  margin-bottom: 0;
  padding-top: 0;
}
@font-face {
  font-family: 'ing-icons';
  src: url('clientlibs/fonts/eot/ing-icons-v4-3.eot');
  src: url('clientlibs/fonts/eot/ing-icons-v4-3.eot?#iefix') format('embedded-opentype'), url('clientlibs/fonts/woff/ing-icons-v4-3.woff') format('woff'), url('clientlibs/fonts/ttf/ing-icons-v4-3.ttf') format('truetype'), url('clientlibs/fonts/svg/ing-icons-v4-3.svg#ing-icons') format('svg');
}
.tg .icon {
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tg .icon:before {
  position: relative;
  z-index: 1;
}
.tg .icon-black {
  color: #000000;
}
.tg .icon-gray-darker {
  color: #333333;
}
.tg .icon-gray-dark {
  color: #767676;
}
.tg .icon-gray {
  color: #adadad;
}
.tg .icon-gray-light {
  color: #d5d5d5;
}
.tg .icon-gray-lighter {
  color: #ebebeb;
}
.tg .icon-white {
  color: #ffffff;
}
.tg .icon-blue {
  color: #000066;
}
.tg .icon-blue-light {
  color: #60a6da;
}
.tg .icon-green {
  color: #349651;
}
.tg .icon-orange {
  color: #ff6200;
}
.tg .icon-red {
  color: #ff0000;
}
.tg .icon-inline.icon {
  line-height: 0;
}
.tg .icon-xxs {
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .icon-xs {
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .icon-sm {
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-size: 1rem;
}
.tg .icon-md {
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .icon-lg {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .icon-lg .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .icon-xl {
  width: 27px;
  height: 27px;
  font-size: 27px;
  font-size: 1.6875rem;
}
.tg .icon-xl .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .icon-xxl {
  width: 32px;
  height: 32px;
  font-size: 32px;
  font-size: 2rem;
}
.tg .icon-xxl .stacked-icon-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .icon-xxxl {
  width: 37px;
  height: 37px;
  font-size: 37px;
  font-size: 2.3125rem;
}
.tg .icon-xxxl .stacked-icon-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
.tg .icon-jb {
  width: 44px;
  height: 44px;
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .icon-jb .stacked-icon-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .icon-xj {
  width: 54px;
  height: 54px;
  font-size: 54px;
  font-size: 3.375rem;
}
.tg .icon-xj .stacked-icon-text {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .icon-xxj {
  width: 64px;
  height: 64px;
  font-size: 64px;
  font-size: 4rem;
}
.tg .icon-xxj .stacked-icon-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .icon-xxxj {
  width: 74px;
  height: 74px;
  font-size: 74px;
  font-size: 4.625rem;
}
.tg .icon-xxxj .stacked-icon-text {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .icon-mg {
  width: 84px;
  height: 84px;
  font-size: 84px;
  font-size: 5.25rem;
}
.tg .icon-xmg {
  width: 94px;
  height: 94px;
  font-size: 94px;
  font-size: 5.875rem;
}
.tg .icon-xxmg {
  width: 104px;
  height: 104px;
  font-size: 104px;
  font-size: 6.5rem;
}
.tg .icon-xxxmg {
  width: 124px;
  height: 124px;
  font-size: 124px;
  font-size: 7.75rem;
}
.tg .icon-ing-clip {
  content: "\e64d";
}
.tg .icon-ing-clip:before {
  content: "\e64d" !important;
}
.tg .icon-ing-logo-lion {
  content: "\e6b8";
}
.tg .icon-ing-logo-lion:before {
  content: "\e6b8" !important;
}
.tg .icon-ing-logo-ing {
  content: "\e6b9";
}
.tg .icon-ing-logo-ing:before {
  content: "\e6b9" !important;
}
.tg .icon-lioninverse {
  content: "\e70f";
}
.tg .icon-lioninverse:before {
  content: "\e70f" !important;
}
.tg .icon-notification-warning {
  content: "\e96c";
}
.tg .icon-notification-warning:before {
  content: "\e96c" !important;
}
.tg .icon-circle-xl {
  content: "\e669";
}
.tg .icon-circle-xl:before {
  content: "\e669" !important;
}
.tg .icon-notification-warning-z2 {
  content: "\e9be";
}
.tg .icon-notification-warning-z2:before {
  content: "\e9be" !important;
}
.tg .icon-notification-warning-z1 {
  content: "\e9bf";
}
.tg .icon-notification-warning-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-notification-success {
  content: "\e96b";
}
.tg .icon-notification-success:before {
  content: "\e96b" !important;
}
.tg .icon-notification-success-z2 {
  content: "\e9bc";
}
.tg .icon-notification-success-z2:before {
  content: "\e9bc" !important;
}
.tg .icon-notification-success-z1 {
  content: "\e9bf";
}
.tg .icon-notification-success-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-notification-information {
  content: "\e968";
}
.tg .icon-notification-information:before {
  content: "\e968" !important;
}
.tg .icon-notification-information-z2 {
  content: "\e9b8";
}
.tg .icon-notification-information-z2:before {
  content: "\e9b8" !important;
}
.tg .icon-notification-information-z1 {
  content: "\e9bf";
}
.tg .icon-notification-information-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-notification-error {
  content: "\e967";
}
.tg .icon-notification-error:before {
  content: "\e967" !important;
}
.tg .icon-notification-error-z2 {
  content: "\e9b6";
}
.tg .icon-notification-error-z2:before {
  content: "\e9b6" !important;
}
.tg .icon-notification-error-z1 {
  content: "\e9bf";
}
.tg .icon-notification-error-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-notification-interference {
  content: "\e969";
}
.tg .icon-notification-interference:before {
  content: "\e969" !important;
}
.tg .icon-notification-maintenance {
  content: "\e96a";
}
.tg .icon-notification-maintenance:before {
  content: "\e96a" !important;
}
.tg .icon-notification-z1 {
  content: "\e9bf";
}
.tg .icon-notification-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-risk {
  content: "\e97c";
}
.tg .icon-risk:before {
  content: "\e97c" !important;
}
.tg .icon-risk-2 {
  content: "\e97d";
}
.tg .icon-risk-2:before {
  content: "\e97d" !important;
}
.tg .icon-moon-dashed {
  content: "\e963";
}
.tg .icon-moon-dashed:before {
  content: "\e963" !important;
}
.tg .icon-erlenmeyer {
  content: "\e940";
}
.tg .icon-erlenmeyer:before {
  content: "\e940" !important;
}
.tg .icon-arrow-d-up {
  content: "\e914";
}
.tg .icon-arrow-d-up:before {
  content: "\e914" !important;
}
.tg .icon-arrow-d-up-z1 {
  content: "\e669";
}
.tg .icon-arrow-d-up-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-d-up-z2 {
  content: "\e998";
}
.tg .icon-arrow-d-up-z2:before {
  content: "\e998" !important;
}
.tg .icon-arrow-d-right {
  content: "\e913";
}
.tg .icon-arrow-d-right:before {
  content: "\e913" !important;
}
.tg .icon-arrow-d-right-z1 {
  content: "\e669";
}
.tg .icon-arrow-d-right-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-d-right-z2 {
  content: "\e997";
}
.tg .icon-arrow-d-right-z2:before {
  content: "\e997" !important;
}
.tg .icon-arrow-d-left {
  content: "\e912";
}
.tg .icon-arrow-d-left:before {
  content: "\e912" !important;
}
.tg .icon-arrow-d-left-z1 {
  content: "\e669";
}
.tg .icon-arrow-d-left-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-d-left-z2 {
  content: "\e996";
}
.tg .icon-arrow-d-left-z2:before {
  content: "\e996" !important;
}
.tg .icon-arrow-d-down {
  content: "\e911";
}
.tg .icon-arrow-d-down:before {
  content: "\e911" !important;
}
.tg .icon-arrow-d-down-z1 {
  content: "\e669";
}
.tg .icon-arrow-d-down-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-d-down-z2 {
  content: "\e995";
}
.tg .icon-arrow-d-down-z2:before {
  content: "\e995" !important;
}
.tg .icon-arrow-inner-circle {
  content: "\e696";
}
.tg .icon-arrow-inner-circle:before {
  content: "\e696" !important;
}
.tg .icon-arrow-b-up {
  content: "\e90c";
}
.tg .icon-arrow-b-up:before {
  content: "\e90c" !important;
}
.tg .icon-arrow-b-up-z1 {
  content: "\e669";
}
.tg .icon-arrow-b-up-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-b-up-z2 {
  content: "\e696";
}
.tg .icon-arrow-b-up-z2:before {
  content: "\e696" !important;
}
.tg .icon-arrow-b-up-z3 {
  content: "\e998";
}
.tg .icon-arrow-b-up-z3:before {
  content: "\e998" !important;
}
.tg .icon-arrow-b-right {
  content: "\e90b";
}
.tg .icon-arrow-b-right:before {
  content: "\e90b" !important;
}
.tg .icon-arrow-b-right-z1 {
  content: "\e669";
}
.tg .icon-arrow-b-right-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-b-right-z2 {
  content: "\e696";
}
.tg .icon-arrow-b-right-z2:before {
  content: "\e696" !important;
}
.tg .icon-arrow-b-right-z3 {
  content: "\e997";
}
.tg .icon-arrow-b-right-z3:before {
  content: "\e997" !important;
}
.tg .icon-arrow-b-left {
  content: "\e90a";
}
.tg .icon-arrow-b-left:before {
  content: "\e90a" !important;
}
.tg .icon-arrow-b-left-z1 {
  content: "\e669";
}
.tg .icon-arrow-b-left-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-b-left-z2 {
  content: "\e696";
}
.tg .icon-arrow-b-left-z2:before {
  content: "\e696" !important;
}
.tg .icon-arrow-b-left-z3 {
  content: "\e996";
}
.tg .icon-arrow-b-left-z3:before {
  content: "\e996" !important;
}
.tg .icon-arrow-b-down {
  content: "\e909";
}
.tg .icon-arrow-b-down:before {
  content: "\e909" !important;
}
.tg .icon-arrow-b-down-z1 {
  content: "\e669";
}
.tg .icon-arrow-b-down-z1:before {
  content: "\e669" !important;
}
.tg .icon-arrow-b-down-z2 {
  content: "\e696";
}
.tg .icon-arrow-b-down-z2:before {
  content: "\e696" !important;
}
.tg .icon-arrow-b-down-z3 {
  content: "\e995";
}
.tg .icon-arrow-b-down-z3:before {
  content: "\e995" !important;
}
.tg .icon-backpack {
  content: "\e921";
}
.tg .icon-backpack:before {
  content: "\e921" !important;
}
.tg .icon-bandaid {
  content: "\e922";
}
.tg .icon-bandaid:before {
  content: "\e922" !important;
}
.tg .icon-bikes {
  content: "\e923";
}
.tg .icon-bikes:before {
  content: "\e923" !important;
}
.tg .icon-boat-2 {
  content: "\e924";
}
.tg .icon-boat-2:before {
  content: "\e924" !important;
}
.tg .icon-game {
  content: "\e9db";
}
.tg .icon-game:before {
  content: "\e9db" !important;
}
.tg .icon-holiday {
  content: "\e94f";
}
.tg .icon-holiday:before {
  content: "\e94f" !important;
}
.tg .icon-washing-machine {
  content: "\e98e";
}
.tg .icon-washing-machine:before {
  content: "\e98e" !important;
}
.tg .icon-wealth-increase {
  content: "\e98f";
}
.tg .icon-wealth-increase:before {
  content: "\e98f" !important;
}
.tg .icon-clothes {
  content: "\e92e";
}
.tg .icon-clothes:before {
  content: "\e92e" !important;
}
.tg .icon-guitar {
  content: "\e94d";
}
.tg .icon-guitar:before {
  content: "\e94d" !important;
}
.tg .icon-rings {
  content: "\e97b";
}
.tg .icon-rings:before {
  content: "\e97b" !important;
}
.tg .icon-party {
  content: "\e96d";
}
.tg .icon-party:before {
  content: "\e96d" !important;
}
.tg .icon-house {
  content: "\e951";
}
.tg .icon-house:before {
  content: "\e951" !important;
}
.tg .icon-electronics {
  content: "\e9da";
}
.tg .icon-electronics:before {
  content: "\e9da" !important;
}
.tg .icon-debt {
  content: "\e937";
}
.tg .icon-debt:before {
  content: "\e937" !important;
}
.tg .icon-college {
  content: "\e92f";
}
.tg .icon-college:before {
  content: "\e92f" !important;
}
.tg .icon-18-birthday {
  content: "\e9d9";
}
.tg .icon-18-birthday:before {
  content: "\e9d9" !important;
}
.tg .icon-first-home {
  content: "\e9de";
}
.tg .icon-first-home:before {
  content: "\e9de" !important;
}
.tg .icon-graduation {
  content: "\e9df";
}
.tg .icon-graduation:before {
  content: "\e9df" !important;
}
.tg .icon-study {
  content: "\e9e2";
}
.tg .icon-study:before {
  content: "\e9e2" !important;
}
.tg .icon-boat {
  content: "\e9dd";
}
.tg .icon-boat:before {
  content: "\e9dd" !important;
}
.tg .icon-house-2 {
  content: "\e9e0";
}
.tg .icon-house-2:before {
  content: "\e9e0" !important;
}
.tg .icon-money-coins {
  content: "\e9e1";
}
.tg .icon-money-coins:before {
  content: "\e9e1" !important;
}
.tg .icon-balance {
  content: "\e9dc";
}
.tg .icon-balance:before {
  content: "\e9dc" !important;
}
.tg .icon-youtube-you {
  content: "\e9d7";
}
.tg .icon-youtube-you:before {
  content: "\e9d7" !important;
}
.tg .icon-youtube-tube {
  content: "\e9d5";
}
.tg .icon-youtube-tube:before {
  content: "\e9d5" !important;
}
.tg .icon-youtube-tube-bg {
  content: "\e9d6";
}
.tg .icon-youtube-tube-bg:before {
  content: "\e9d6" !important;
}
.tg .icon-twitter-logo {
  content: "\e988";
}
.tg .icon-twitter-logo:before {
  content: "\e988" !important;
}
.tg .icon-linkedin-logo {
  content: "\e958";
}
.tg .icon-linkedin-logo:before {
  content: "\e958" !important;
}
.tg .icon-social-bg {
  content: "\e9ce";
}
.tg .icon-social-bg:before {
  content: "\e9ce" !important;
}
.tg .icon-googleplus-logo {
  content: "\e94c";
}
.tg .icon-googleplus-logo:before {
  content: "\e94c" !important;
}
.tg .icon-facebook-logo {
  content: "\e944";
}
.tg .icon-facebook-logo:before {
  content: "\e944" !important;
}
.tg .icon-instagram-logo {
  content: "\e954";
}
.tg .icon-instagram-logo:before {
  content: "\e954" !important;
}
.tg .icon-instagram-logo-inverted {
  content: "\e955";
}
.tg .icon-instagram-logo-inverted:before {
  content: "\e955" !important;
}
.tg .icon-flickr-logo {
  content: "\e9a8";
}
.tg .icon-flickr-logo:before {
  content: "\e9a8" !important;
}
.tg .icon-flickr-z1 {
  content: "\e9a8";
}
.tg .icon-flickr-z1:before {
  content: "\e9a8" !important;
}
.tg .icon-flickr-z2 {
  content: "\e9a9";
}
.tg .icon-flickr-z2:before {
  content: "\e9a9" !important;
}
.tg .icon-slideshare-z1 {
  content: "\e9cc";
}
.tg .icon-slideshare-z1:before {
  content: "\e9cc" !important;
}
.tg .icon-slideshare-z2 {
  content: "\e9cd";
}
.tg .icon-slideshare-z2:before {
  content: "\e9cd" !important;
}
.tg .icon-flickr-z3 {
  content: "\e9aa";
}
.tg .icon-flickr-z3:before {
  content: "\e9aa" !important;
}
.tg .icon-community-blog {
  content: "\e931";
}
.tg .icon-community-blog:before {
  content: "\e931" !important;
}
.tg .icon-community-forum {
  content: "\e932";
}
.tg .icon-community-forum:before {
  content: "\e932" !important;
}
.tg .icon-community-home {
  content: "\e933";
}
.tg .icon-community-home:before {
  content: "\e933" !important;
}
.tg .icon-community-people {
  content: "\e934";
}
.tg .icon-community-people:before {
  content: "\e934" !important;
}
.tg .icon-community-profile {
  content: "\e935";
}
.tg .icon-community-profile:before {
  content: "\e935" !important;
}
.tg .icon-community-suggestions {
  content: "\e936";
}
.tg .icon-community-suggestions:before {
  content: "\e936" !important;
}
.tg .icon-community {
  content: "\e930";
}
.tg .icon-community:before {
  content: "\e930" !important;
}
.tg .icon-community-profilelock-z1 {
  content: "\e935";
}
.tg .icon-community-profilelock-z1:before {
  content: "\e935" !important;
}
.tg .icon-community-profilelock-z3 {
  content: "\e9a1";
}
.tg .icon-community-profilelock-z3:before {
  content: "\e9a1" !important;
}
.tg .icon-tv-tl1 {
  content: "\e607";
}
.tg .icon-tv-tl1:before {
  content: "\e607" !important;
}
.tg .icon-tv-tl2 {
  content: "\e606";
}
.tg .icon-tv-tl2:before {
  content: "\e606" !important;
}
.tg .icon-tv-half {
  content: "\e608";
}
.tg .icon-tv-half:before {
  content: "\e608" !important;
}
.tg .icon-tv-full {
  content: "\e609";
}
.tg .icon-tv-full:before {
  content: "\e609" !important;
}
.tg .icon-tv-br2 {
  content: "\e60a";
}
.tg .icon-tv-br2:before {
  content: "\e60a" !important;
}
.tg .icon-tv-br1 {
  content: "\e60b";
}
.tg .icon-tv-br1:before {
  content: "\e60b" !important;
}
.tg .icon-moon-tl1 {
  content: "\e638";
}
.tg .icon-moon-tl1:before {
  content: "\e638" !important;
}
.tg .icon-moon-tl2 {
  content: "\e637";
}
.tg .icon-moon-tl2:before {
  content: "\e637" !important;
}
.tg .icon-moon-half {
  content: "\e639";
}
.tg .icon-moon-half:before {
  content: "\e639" !important;
}
.tg .icon-moon-full {
  content: "\e63a";
}
.tg .icon-moon-full:before {
  content: "\e63a" !important;
}
.tg .icon-moon-br2 {
  content: "\e63c";
}
.tg .icon-moon-br2:before {
  content: "\e63c" !important;
}
.tg .icon-moon-br1 {
  content: "\e63d";
}
.tg .icon-moon-br1:before {
  content: "\e63d" !important;
}
.tg .icon-target {
  content: "\e985";
}
.tg .icon-target:before {
  content: "\e985" !important;
}
.tg .icon-target-z1 {
  content: "\e669";
}
.tg .icon-target-z1:before {
  content: "\e669" !important;
}
.tg .icon-target-z2 {
  content: "\e9d4";
}
.tg .icon-target-z2:before {
  content: "\e9d4" !important;
}
.tg .icon-wrench {
  content: "\e990";
}
.tg .icon-wrench:before {
  content: "\e990" !important;
}
.tg .icon-users {
  content: "\e98c";
}
.tg .icon-users:before {
  content: "\e98c" !important;
}
.tg .icon-users-2 {
  content: "\e98d";
}
.tg .icon-users-2:before {
  content: "\e98d" !important;
}
.tg .icon-user {
  content: "\e98b";
}
.tg .icon-user:before {
  content: "\e98b" !important;
}
.tg .icon-up-down {
  content: "\e989";
}
.tg .icon-up-down:before {
  content: "\e989" !important;
}
.tg .icon-right-left {
  content: "\e97a";
}
.tg .icon-right-left:before {
  content: "\e97a" !important;
}
.tg .icon-tip-bulb {
  content: "\e986";
}
.tg .icon-tip-bulb:before {
  content: "\e986" !important;
}
.tg .icon-subtract {
  content: "\e9d2";
}
.tg .icon-subtract:before {
  content: "\e9d2" !important;
}
.tg .icon-subtract-z1 {
  content: "\e9bf";
}
.tg .icon-subtract-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-subtract-z2 {
  content: "\e919";
}
.tg .icon-subtract-z2:before {
  content: "\e919" !important;
}
.tg .icon-add {
  content: "\e91b";
}
.tg .icon-add:before {
  content: "\e91b" !important;
}
.tg .icon-add-z1 {
  content: "\e9bf";
}
.tg .icon-add-z1:before {
  content: "\e9bf" !important;
}
.tg .icon-add-z2 {
  content: "\e90d";
}
.tg .icon-add-z2:before {
  content: "\e90d" !important;
}
.tg .icon-rectangle-rounded {
  content: "\e9bf";
}
.tg .icon-rectangle-rounded:before {
  content: "\e9bf" !important;
}
.tg .icon-settings {
  content: "\e980";
}
.tg .icon-settings:before {
  content: "\e980" !important;
}
.tg .icon-settings-z2 {
  content: "\e9cb";
}
.tg .icon-settings-z2:before {
  content: "\e9cb" !important;
}
.tg .icon-settings-z1 {
  content: "\e9ca";
}
.tg .icon-settings-z1:before {
  content: "\e9ca" !important;
}
.tg .icon-search {
  content: "\e97f";
}
.tg .icon-search:before {
  content: "\e97f" !important;
}
.tg .icon-search-z2 {
  content: "\e9c9";
}
.tg .icon-search-z2:before {
  content: "\e9c9" !important;
}
.tg .icon-search-z1 {
  content: "\e9c8";
}
.tg .icon-search-z1:before {
  content: "\e9c8" !important;
}
.tg .icon-refresh {
  content: "\e979";
}
.tg .icon-refresh:before {
  content: "\e979" !important;
}
.tg .icon-questionmark {
  content: "\e978";
}
.tg .icon-questionmark:before {
  content: "\e978" !important;
}
.tg .icon-procent {
  content: "\e9d1";
}
.tg .icon-procent:before {
  content: "\e9d1" !important;
}
.tg .icon-print {
  content: "\e976";
}
.tg .icon-print:before {
  content: "\e976" !important;
}
.tg .icon-print-z2 {
  content: "\e9c5";
}
.tg .icon-print-z2:before {
  content: "\e9c5" !important;
}
.tg .icon-print-z1 {
  content: "\e9c4";
}
.tg .icon-print-z1:before {
  content: "\e9c4" !important;
}
.tg .icon-portfolio {
  content: "\e974";
}
.tg .icon-portfolio:before {
  content: "\e974" !important;
}
.tg .icon-portfolio-open {
  content: "\e975";
}
.tg .icon-portfolio-open:before {
  content: "\e975" !important;
}
.tg .icon-portfolio-open-z2 {
  content: "\e9c3";
}
.tg .icon-portfolio-open-z2:before {
  content: "\e9c3" !important;
}
.tg .icon-portfolio-open-z1 {
  content: "\e9c2";
}
.tg .icon-portfolio-open-z1:before {
  content: "\e9c2" !important;
}
.tg .icon-plus {
  content: "\e972";
}
.tg .icon-plus:before {
  content: "\e972" !important;
}
.tg .icon-phone {
  content: "\e96f";
}
.tg .icon-phone:before {
  content: "\e96f" !important;
}
.tg .icon-multiply {
  content: "\e965";
}
.tg .icon-multiply:before {
  content: "\e965" !important;
}
.tg .icon-moneybag {
  content: "\e962";
}
.tg .icon-moneybag:before {
  content: "\e962" !important;
}
.tg .icon-mobile {
  content: "\e961";
}
.tg .icon-mobile:before {
  content: "\e961" !important;
}
.tg .icon-mobile-z2 {
  content: "\e9b4";
}
.tg .icon-mobile-z2:before {
  content: "\e9b4" !important;
}
.tg .icon-mobile-z1 {
  content: "\e9b3";
}
.tg .icon-mobile-z1:before {
  content: "\e9b3" !important;
}
.tg .icon-min {
  content: "\e960";
}
.tg .icon-min:before {
  content: "\e960" !important;
}
.tg .icon-menu {
  content: "\e95c";
}
.tg .icon-menu:before {
  content: "\e95c" !important;
}
.tg .icon-lock {
  content: "\e95b";
}
.tg .icon-lock:before {
  content: "\e95b" !important;
}
.tg .icon-lock-z2 {
  content: "\e9b2";
}
.tg .icon-lock-z2:before {
  content: "\e9b2" !important;
}
.tg .icon-lock-z1 {
  content: "\e9b1";
}
.tg .icon-lock-z1:before {
  content: "\e9b1" !important;
}
.tg .icon-location {
  content: "\e95a";
}
.tg .icon-location:before {
  content: "\e95a" !important;
}
.tg .icon-location-z2 {
  content: "\e9b0";
}
.tg .icon-location-z2:before {
  content: "\e9b0" !important;
}
.tg .icon-location-z1 {
  content: "\e9af";
}
.tg .icon-location-z1:before {
  content: "\e9af" !important;
}
.tg .icon-my-location {
  content: "\e966";
}
.tg .icon-my-location:before {
  content: "\e966" !important;
}
.tg .icon-legend-z2 {
  content: "\e64b";
}
.tg .icon-legend-z2:before {
  content: "\e64b" !important;
}
.tg .icon-legend-z1 {
  content: "\e64c";
}
.tg .icon-legend-z1:before {
  content: "\e64c" !important;
}
.tg .icon-information-badge {
  content: "\e953";
}
.tg .icon-information-badge:before {
  content: "\e953" !important;
}
.tg .icon-information-badge-z2 {
  content: "\e9ac";
}
.tg .icon-information-badge-z2:before {
  content: "\e9ac" !important;
}
.tg .icon-information-badge-z1 {
  content: "\e9ab";
}
.tg .icon-information-badge-z1:before {
  content: "\e9ab" !important;
}
.tg .icon-forecast {
  content: "\e948";
}
.tg .icon-forecast:before {
  content: "\e948" !important;
}
.tg .icon-feedback {
  content: "\e945";
}
.tg .icon-feedback:before {
  content: "\e945" !important;
}
.tg .icon-eye {
  content: "\e943";
}
.tg .icon-eye:before {
  content: "\e943" !important;
}
.tg .icon-eye-z2 {
  content: "\e9a7";
}
.tg .icon-eye-z2:before {
  content: "\e9a7" !important;
}
.tg .icon-eye-z1 {
  content: "\e9a6";
}
.tg .icon-eye-z1:before {
  content: "\e9a6" !important;
}
.tg .icon-exclamationmark {
  content: "\e942";
}
.tg .icon-exclamationmark:before {
  content: "\e942" !important;
}
.tg .icon-euro {
  content: "\e941";
}
.tg .icon-euro:before {
  content: "\e941" !important;
}
.tg .icon-home {
  content: "\e950";
}
.tg .icon-home:before {
  content: "\e950" !important;
}
.tg .icon-eq {
  content: "\e93f";
}
.tg .icon-eq:before {
  content: "\e93f" !important;
}
.tg .icon-email {
  content: "\e93e";
}
.tg .icon-email:before {
  content: "\e93e" !important;
}
.tg .icon-edit {
  content: "\e93c";
}
.tg .icon-edit:before {
  content: "\e93c" !important;
}
.tg .icon-edit-z2 {
  content: "\e9a5";
}
.tg .icon-edit-z2:before {
  content: "\e9a5" !important;
}
.tg .icon-edit-z1 {
  content: "\e9a4";
}
.tg .icon-edit-z1:before {
  content: "\e9a4" !important;
}
.tg .icon-download {
  content: "\e93b";
}
.tg .icon-download:before {
  content: "\e93b" !important;
}
.tg .icon-dot-a {
  content: "\e93a";
}
.tg .icon-dot-a:before {
  content: "\e93a" !important;
}
.tg .icon-check {
  content: "\e92d";
}
.tg .icon-check:before {
  content: "\e92d" !important;
}
.tg .icon-chat {
  content: "\e92c";
}
.tg .icon-chat:before {
  content: "\e92c" !important;
}
.tg .icon-camera {
  content: "\e929";
}
.tg .icon-camera:before {
  content: "\e929" !important;
}
.tg .icon-calendar {
  content: "\e927";
}
.tg .icon-calendar:before {
  content: "\e927" !important;
}
.tg .icon-calendar-z2 {
  content: "\e99e";
}
.tg .icon-calendar-z2:before {
  content: "\e99e" !important;
}
.tg .icon-calendar-z1 {
  content: "\e99d";
}
.tg .icon-calendar-z1:before {
  content: "\e99d" !important;
}
.tg .icon-calendar-2 {
  content: "\e928";
}
.tg .icon-calendar-2:before {
  content: "\e928" !important;
}
.tg .icon-calendar-2-z2 {
  content: "\e99c";
}
.tg .icon-calendar-2-z2:before {
  content: "\e99c" !important;
}
.tg .icon-calendar-2-z1 {
  content: "\e99b";
}
.tg .icon-calendar-2-z1:before {
  content: "\e99b" !important;
}
.tg .icon-calculator {
  content: "\e926";
}
.tg .icon-calculator:before {
  content: "\e926" !important;
}
.tg .icon-calculator-z2 {
  content: "\e99a";
}
.tg .icon-calculator-z2:before {
  content: "\e99a" !important;
}
.tg .icon-calculator-z1 {
  content: "\e999";
}
.tg .icon-calculator-z1:before {
  content: "\e999" !important;
}
.tg .icon-attachment {
  content: "\e920";
}
.tg .icon-attachment:before {
  content: "\e920" !important;
}
.tg .icon-arrow-f-up-right {
  content: "\e95f";
}
.tg .icon-arrow-f-up-right:before {
  content: "\e95f" !important;
}
.tg .icon-arrow-e-up {
  content: "\e918";
}
.tg .icon-arrow-e-up:before {
  content: "\e918" !important;
}
.tg .icon-arrow-e-right {
  content: "\e917";
}
.tg .icon-arrow-e-right:before {
  content: "\e917" !important;
}
.tg .icon-arrow-e-left {
  content: "\e916";
}
.tg .icon-arrow-e-left:before {
  content: "\e916" !important;
}
.tg .icon-arrow-e-down {
  content: "\e915";
}
.tg .icon-arrow-e-down:before {
  content: "\e915" !important;
}
.tg .icon-arrow-c-up {
  content: "\e95d";
}
.tg .icon-arrow-c-up:before {
  content: "\e95d" !important;
}
.tg .icon-arrow-c-right {
  content: "\e952";
}
.tg .icon-arrow-c-right:before {
  content: "\e952" !important;
}
.tg .icon-arrow-c-left {
  content: "\e91d";
}
.tg .icon-arrow-c-left:before {
  content: "\e91d" !important;
}
.tg .icon-arrow-c-down {
  content: "\e91c";
}
.tg .icon-arrow-c-down:before {
  content: "\e91c" !important;
}
.tg .icon-arrow-h-down {
  content: "\e91e";
}
.tg .icon-arrow-h-down:before {
  content: "\e91e" !important;
}
.tg .icon-arrow-h-up {
  content: "\e91f";
}
.tg .icon-arrow-h-up:before {
  content: "\e91f" !important;
}
.tg .icon-arrow-a-up,
.tg .dropdown-toggle:focus .dropdown-toggle-icon,
.tg .dropdown-toggle:active .dropdown-toggle-icon,
.tg .open .dropdown-toggle .dropdown-toggle-icon {
  content: "\e908";
}
.tg .icon-arrow-a-up:before,
.tg .dropdown-toggle:focus .dropdown-toggle-icon:before,
.tg .dropdown-toggle:active .dropdown-toggle-icon:before,
.tg .open .dropdown-toggle .dropdown-toggle-icon:before {
  content: "\e908" !important;
}
.tg .icon-arrow-a-right {
  content: "\e907";
}
.tg .icon-arrow-a-right:before {
  content: "\e907" !important;
}
.tg .icon-arrow-a-left {
  content: "\e906";
}
.tg .icon-arrow-a-left:before {
  content: "\e906" !important;
}
.tg .icon-arrow-a-down,
.tg .dropdown-toggle .dropdown-toggle-icon {
  content: "\e905";
}
.tg .icon-arrow-a-down:before,
.tg .dropdown-toggle .dropdown-toggle-icon:before {
  content: "\e905" !important;
}
.tg .icon-addressbook {
  content: "\e902";
}
.tg .icon-addressbook:before {
  content: "\e902" !important;
}
.tg .icon-addressbook-z2 {
  content: "\e992";
}
.tg .icon-addressbook-z2:before {
  content: "\e992" !important;
}
.tg .icon-addressbook-z1 {
  content: "\e991";
}
.tg .icon-addressbook-z1:before {
  content: "\e991" !important;
}
.tg .icon-addressbook-empty {
  content: "\e903";
}
.tg .icon-addressbook-empty:before {
  content: "\e903" !important;
}
.tg .icon-arrow-g-down {
  content: "\e977";
}
.tg .icon-arrow-g-down:before {
  content: "\e977" !important;
}
.tg .icon-arrow-g-left {
  content: "\e984";
}
.tg .icon-arrow-g-left:before {
  content: "\e984" !important;
}
.tg .icon-arrow-g-right {
  content: "\e993";
}
.tg .icon-arrow-g-right:before {
  content: "\e993" !important;
}
.tg .icon-arrow-g-up {
  content: "\e994";
}
.tg .icon-arrow-g-up:before {
  content: "\e994" !important;
}
.tg .icon-menu-close {
  content: "\e91a";
}
.tg .icon-menu-close:before {
  content: "\e91a" !important;
}
.tg .icon-menu-arrow-open-left {
  content: "\e95e";
}
.tg .icon-menu-arrow-open-left:before {
  content: "\e95e" !important;
}
.tg .icon-menu2 {
  content: "\e9ae";
}
.tg .icon-menu2:before {
  content: "\e9ae" !important;
}
.tg .icon-trashcan {
  content: "\e987";
}
.tg .icon-trashcan:before {
  content: "\e987" !important;
}
.tg .icon-plus-circle {
  content: "\e973";
}
.tg .icon-plus-circle:before {
  content: "\e973" !important;
}
.tg .icon-play {
  content: "\e971";
}
.tg .icon-play:before {
  content: "\e971" !important;
}
.tg .icon-play-circle {
  content: "\e6d6";
}
.tg .icon-play-circle:before {
  content: "\e6d6" !important;
}
.tg .icon-desktop {
  content: "\e938";
}
.tg .icon-desktop:before {
  content: "\e938" !important;
}
.tg .icon-pig {
  content: "\e970";
}
.tg .icon-pig:before {
  content: "\e970" !important;
}
.tg .icon-hammer {
  content: "\e94e";
}
.tg .icon-hammer:before {
  content: "\e94e" !important;
}
.tg .icon-file {
  content: "\e946";
}
.tg .icon-file:before {
  content: "\e946" !important;
}
.tg .icon-accessibility {
  content: "\e900";
}
.tg .icon-accessibility:before {
  content: "\e900" !important;
}
.tg .icon-box {
  content: "\e925";
}
.tg .icon-box:before {
  content: "\e925" !important;
}
.tg .icon-filter {
  content: "\e947";
}
.tg .icon-filter:before {
  content: "\e947" !important;
}
.tg .icon-information {
  content: "\e9ad";
}
.tg .icon-information:before {
  content: "\e9ad" !important;
}
.tg .icon-information-z1 {
  content: "\e6d6";
}
.tg .icon-information-z1:before {
  content: "\e6d6" !important;
}
.tg .icon-information-z2 {
  content: "\e9ad";
}
.tg .icon-information-z2:before {
  content: "\e9ad" !important;
}
.tg .icon-circle-lg {
  content: "\e6d6";
}
.tg .icon-circle-lg:before {
  content: "\e6d6" !important;
}
.tg .icon-pdf {
  content: "\e96e";
}
.tg .icon-pdf:before {
  content: "\e96e" !important;
}
.tg .icon-star {
  content: "\e982";
}
.tg .icon-star:before {
  content: "\e982" !important;
}
.tg .icon-star-half {
  content: "\e983";
}
.tg .icon-star-half:before {
  content: "\e983" !important;
}
.tg .icon-star-half-z1 {
  content: "\e982";
}
.tg .icon-star-half-z1:before {
  content: "\e982" !important;
}
.tg .icon-star-half-z2 {
  content: "\e983";
}
.tg .icon-star-half-z2:before {
  content: "\e983" !important;
}
.tg .icon-save {
  content: "\e97e";
}
.tg .icon-save:before {
  content: "\e97e" !important;
}
.tg .icon-pdf-z3 {
  content: "\e9c1";
}
.tg .icon-pdf-z3:before {
  content: "\e9c1" !important;
}
.tg .icon-pdf-z2 {
  content: "\e9c0";
}
.tg .icon-pdf-z2:before {
  content: "\e9c0" !important;
}
.tg .icon-save-z2 {
  content: "\e9c7";
}
.tg .icon-save-z2:before {
  content: "\e9c7" !important;
}
.tg .icon-save-z1 {
  content: "\e9c6";
}
.tg .icon-save-z1:before {
  content: "\e9c6" !important;
}
.tg .icon-car {
  content: "\e92a";
}
.tg .icon-car:before {
  content: "\e92a" !important;
}
.tg .icon-car-z2 {
  content: "\e9a0";
}
.tg .icon-car-z2:before {
  content: "\e9a0" !important;
}
.tg .icon-car-z1 {
  content: "\e99f";
}
.tg .icon-car-z1:before {
  content: "\e99f" !important;
}
.tg .icon-document {
  content: "\e939";
}
.tg .icon-document:before {
  content: "\e939" !important;
}
.tg .icon-document-z2 {
  content: "\e9a3";
}
.tg .icon-document-z2:before {
  content: "\e9a3" !important;
}
.tg .icon-document-z1 {
  content: "\e9a2";
}
.tg .icon-document-z1:before {
  content: "\e9a2" !important;
}
.tg .icon-alarmclock {
  content: "\e904";
}
.tg .icon-alarmclock:before {
  content: "\e904" !important;
}
.tg .icon-chart {
  content: "\e92b";
}
.tg .icon-chart:before {
  content: "\e92b" !important;
}
.tg .icon-upload {
  content: "\e98a";
}
.tg .icon-upload:before {
  content: "\e98a" !important;
}
.tg .icon-like {
  content: "\e957";
}
.tg .icon-like:before {
  content: "\e957" !important;
}
.tg .icon-gender-female {
  content: "\e94a";
}
.tg .icon-gender-female:before {
  content: "\e94a" !important;
}
.tg .icon-gender-male {
  content: "\e94b";
}
.tg .icon-gender-male:before {
  content: "\e94b" !important;
}
.tg .icon-more {
  content: "\e964";
}
.tg .icon-more:before {
  content: "\e964" !important;
}
.tg .icon-label {
  content: "\e956";
}
.tg .icon-label:before {
  content: "\e956" !important;
}
.tg .icon-shoppingbasket {
  content: "\e981";
}
.tg .icon-shoppingbasket:before {
  content: "\e981" !important;
}
.tg .icon-loading-image-placeholder {
  content: "\e959";
}
.tg .icon-loading-image-placeholder:before {
  content: "\e959" !important;
}
.tg .icon-grandchildren {
  content: "\e93d";
}
.tg .icon-grandchildren:before {
  content: "\e93d" !important;
}
.tg .icon-renovation {
  content: "\e949";
}
.tg .icon-renovation:before {
  content: "\e949" !important;
}
.tg .icon-car-2 {
  content: "\e9d8";
}
.tg .icon-car-2:before {
  content: "\e9d8" !important;
}
.tg .icon-pig-2 {
  content: "\e9e3";
}
.tg .icon-pig-2:before {
  content: "\e9e3" !important;
}
.tg .icon-close {
  content: "\e605";
}
.tg .icon-close:before {
  content: "\e605" !important;
}
.tg .icon-gender-female-a.icon-gender-female {
  color: #e71e80;
}
.tg .icon-gender-male-a.icon-gender-male {
  color: #2b62ac;
}
.tg .icon-ing-logo {
  line-height: 1;
  vertical-align: bottom;
  white-space: nowrap;
}
.tg .icon-ing-logo .icon {
  white-space: nowrap;
}
.tg .icon-ing-logo .icon:before {
  vertical-align: bottom;
}
.tg .icon-ing-logo .icon-ing-logo-ing {
  color: #000066;
  font-size: 0.787em;
}
.tg .icon-ing-logo .icon-ing-logo-lion {
  color: #ff6200;
}
.tg .stacked-icon {
  position: relative;
  display: inline-block;
  line-height: 0.65;
  vertical-align: middle;
  text-align: center;
}
.tg .stacked-icon .icon {
  position: absolute;
  top: 0 !important;
  left: 0 !important;
}
.tg .stacked-icon.icon-block {
  display: block;
}
.tg .stacked-icon-text {
  position: relative;
  z-index: 2000;
  color: #ffffff;
}
.tg .figure-icon {
  display: inline-block;
  text-align: center;
}
.tg .figure-icon figcaption {
  margin-top: 6px;
}
.tg .figure-icon .figcaption-bold {
  font-weight: bold;
}
.tg .figure-icon .figcaption-lg {
  font-size: 21px;
  font-size: 1.3125rem;
}
.tg .icon-group > li:first-child .stacked-icon {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.tg .icon-group > li:last-child .stacked-icon {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
}
.tg img {
  border: 0;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  vertical-align: middle;
}
.tg svg:not(:root) {
  overflow: hidden;
}
.tg .img-circle {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.tg .img-non-rounded {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.tg svg.img-responsive,
.tg .img-responsive[src$=".svg"],
.tg .img-responsive[src^="data:image/svg"] {
  width: 100%;
}
@-moz-document url-prefix()  {
  .tg .img-responsive {
    width: 100%;
    max-width: -moz-max-content;
  }
}
.tg .img-thumbnail,
.tg .img-thumbnail-lg,
.tg .img-thumbnail-sm {
  border: 1px solid #adadad;
  background-color: #ffffff;
  line-height: 1.5;
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.tg .img-thumbnail {
  padding: 4px;
}
.tg .img-thumbnail-lg {
  padding: 6px;
}
.tg .img-thumbnail-sm {
  padding: 2px;
}
.tg .img-xs {
  width: 14px;
  height: auto;
}
.tg .img-sm {
  width: 16px;
  height: auto;
}
.tg .img-md {
  width: 18px;
  height: auto;
}
.tg .img-lg {
  width: 22px;
  height: auto;
}
.tg .img-xl {
  width: 27px;
  height: auto;
}
.tg .img-xxl {
  width: 32px;
  height: auto;
}
.tg .img-xxxl {
  width: 37px;
  height: auto;
}
.tg .img-jb {
  width: 44px;
  height: auto;
}
.tg .img-xj {
  width: 54px;
  height: auto;
}
.tg .img-xxj {
  width: 64px;
  height: auto;
}
.tg .img-xxxj {
  width: 74px;
  height: auto;
}
.tg .img-mg {
  width: 84px;
  height: auto;
}
.tg .img-xmg {
  width: 94px;
  height: auto;
}
.tg .img-xxmg {
  width: 104px;
  height: auto;
}
.tg .img-xxxmg {
  width: 124px;
  height: auto;
}
.tg .img-gg {
  width: 144px;
  height: auto;
}
.tg .img-xgg {
  width: 184px;
  height: auto;
}
.tg .img-xxgg {
  width: 224px;
  height: auto;
}
.tg .img-xxxgg {
  width: 264px;
  height: auto;
}
.tg .input-group {
  display: table;
  position: relative;
  width: 100%;
  border-collapse: separate;
}
.tg .input-group[class*="col-"] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.tg .input-group .form-control {
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.tg .input-group .input-group-additive {
  float: left;
  text-align: center;
  padding: 4px 10px;
}
.tg .input-group-addon,
.tg .input-group-btn,
.tg .input-group .form-control {
  display: table-cell;
}
.tg .input-group-addon:not(:first-child):not(:last-child),
.tg .input-group-btn:not(:first-child):not(:last-child),
.tg .input-group .form-control:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .input-group-addon,
.tg .input-group-btn {
  width: 1%;
  vertical-align: middle;
  white-space: nowrap;
}
.tg .input-group-addon {
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #333333;
  text-align: center;
  padding: 4px 10px;
}
.tg .input-group-addon.input-sm {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 3px 10px;
}
.tg .input-group-addon.input-lg {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 12px 20px;
}
.tg .input-group-addon input[type="radio"],
.tg .input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.tg .input-group-addon abbr.currency {
  margin-right: 0;
}
.tg .input-group-btn {
  position: relative;
  font-size: 0px;
  font-size: 0rem;
  white-space: nowrap;
}
.tg .input-group-btn > .btn {
  position: relative;
}
.tg .input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.tg .input-group-btn > .btn:hover,
.tg .input-group-btn > .btn:focus,
.tg .input-group-btn > .btn:active {
  z-index: 2;
}
.tg .input-group-btn:first-child > .btn,
.tg .input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.tg .input-group-btn:last-child > .btn,
.tg .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.tg .input-group-btn > .btn,
.tg .input-group-btn > .dropdown-menu,
.tg .input-group-btn > .dropdown .btn,
.tg .input-group-btn > .popover {
  border-color: #d5d5d5;
}
.tg .input-group-btn > .btn-default[disabled] {
  border-color: #d5d5d5 !important;
}
.tg .input-group-btn > .btn-primary,
.tg .input-group-btn > a.btn-primary {
  border: 1px solid transparent;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ffc099;
  border-bottom-color: #b34500;
  background: #ff6200;
  color: #ffffff;
}
.tg .input-group-btn > .btn-primary:hover,
.tg .input-group-btn > a.btn-primary:hover,
.tg .input-group-btn > .btn-primary:focus,
.tg .input-group-btn > a.btn-primary:focus,
.tg .open .dropdown-toggle.input-group-btn > .btn-primary,
.tg .open .dropdown-toggle.input-group-btn > a.btn-primary {
  background: #ffffff;
  border-color: #adadad;
  color: #333333;
  border-color: #ff6200;
  color: #ff6200;
}
.tg .input-group-btn > .btn-primary:active,
.tg .input-group-btn > a.btn-primary:active,
.tg .input-group-btn > .btn-primary.active,
.tg .input-group-btn > a.btn-primary.active,
.tg .open .dropdown-toggle.input-group-btn > .btn-primary,
.tg .open .dropdown-toggle.input-group-btn > a.btn-primary {
  background: #ffffff;
  color: #333333;
  border-color: #adadad;
  border-color: #ff6200;
  color: #ff6200;
}
.tg .input-group-btn > .btn-primary.disabled,
.tg .input-group-btn > a.btn-primary.disabled,
.tg .input-group-btn > .btn-primary[disabled],
.tg .input-group-btn > a.btn-primary[disabled],
.tg fieldset[disabled] .input-group-btn > .btn-primary,
.tg fieldset[disabled] .input-group-btn > a.btn-primary {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .input-group-btn > .btn-primary.disabled.btn-transparent,
.tg .input-group-btn > a.btn-primary.disabled.btn-transparent,
.tg .input-group-btn > .btn-primary[disabled].btn-transparent,
.tg .input-group-btn > a.btn-primary[disabled].btn-transparent,
.tg fieldset[disabled] .input-group-btn > .btn-primary.btn-transparent,
.tg fieldset[disabled] .input-group-btn > a.btn-primary.btn-transparent {
  background-color: transparent !important;
}
.tg .input-group-btn > .btn-primary.read-only:hover,
.tg .input-group-btn > a.btn-primary.read-only:hover,
.tg .input-group-btn > .btn-primary.read-only.active,
.tg .input-group-btn > a.btn-primary.read-only.active,
.tg .input-group-btn > .btn-primary.read-only:active,
.tg .input-group-btn > a.btn-primary.read-only:active,
.tg .open .dropdown-toggle.input-group-btn > .btn-primary.read-only,
.tg .open .dropdown-toggle.input-group-btn > a.btn-primary.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ff6200 !important;
}
.tg .input-group-sm > .form-control,
.tg .input-group-sm > .input-group-addon,
.tg .input-group-sm > .input-group-btn > .btn {
  height: 29px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 3px 10px;
}
.tg select.input-group-sm > .form-control,
.tg select.input-group-sm > .input-group-addon,
.tg select.input-group-sm > .input-group-btn > .btn {
  height: 29px;
  line-height: 29px;
}
.tg textarea.input-group-sm > .form-control,
.tg textarea.input-group-sm > .input-group-addon,
.tg textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.tg .input-group-lg > .form-control,
.tg .input-group-lg > .input-group-addon,
.tg .input-group-lg > .input-group-btn > .btn {
  height: 49px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 12px 20px;
}
.tg select.input-group-lg > .form-control,
.tg select.input-group-lg > .input-group-addon,
.tg select.input-group-lg > .input-group-btn > .btn {
  height: 49px;
  line-height: 49px;
}
.tg textarea.input-group-lg > .form-control,
.tg textarea.input-group-lg > .input-group-addon,
.tg textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.tg .input-group .form-control:first-child,
.tg .input-group-addon:first-child,
.tg .input-group-btn:first-child > .btn,
.tg .input-group-btn:first-child > .dropdown-toggle,
.tg .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tg .input-group-addon:first-child {
  border-right-width: 0;
}
.tg .input-group .form-control:last-child,
.tg .input-group-addon:last-child,
.tg .input-group-btn:last-child > .btn,
.tg .input-group-btn:last-child > .dropdown-toggle,
.tg .input-group-btn:first-child > .btn:not(:first-child) {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tg .input-group-addon:last-child {
  border-left-width: 0;
}
.tg .input-group > .sr-only:first-child + .form-control {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.tg .input-group > .sr-only:first-child + .input-group-addon {
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .full-cover {
  position: relative;
  padding-top: 36px;
  padding-bottom: 36px;
  width: 100%; /* for IE (see OTRS 1802071336768)*/ 
}
.tg .full-cover-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #767676;
  text-align: center;
}
.tg ul {
  list-style: square;
}
.tg ul,
.tg ol {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}
.tg ul li + li,
.tg ol li + li {
  margin-top: 6px;
}
.tg ul ul,
.tg ol ul {
  list-style: circle;
}
.tg ul ul,
.tg ol ul,
.tg ul ol,
.tg ol ol {
  margin: 6px 0 0 0;
}
.tg .list-unstyled {
  list-style: none;
  padding-left: 0;
}
.tg .list-horizontal {
  padding: 0;
}
.tg .list-horizontal:before,
.tg .list-horizontal:after {
  content: " ";
  display: table;
}
.tg .list-horizontal:after {
  clear: both;
}
.tg .list-horizontal:before,
.tg .list-horizontal:after {
  content: " ";
  display: table;
}
.tg .list-horizontal:after {
  clear: both;
}
.tg .list-horizontal > li {
  float: left;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
}
.tg .list-horizontal.list-unstyled > li {
  margin-left: 0;
}
.tg .panel {
  margin-bottom: 24px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tg .panel > .panel-heading,
.tg .panel > .panel-body:first-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .panel > .panel-footer,
.tg .panel > .panel-body:last-child {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tg .panel-heading {
  padding: 12px 20px;
}
.tg .panel-heading a {
  color: inherit;
}
.tg .panel-heading-filled {
  overflow: hidden;
  padding: 0;
}
.tg .panel-heading-filled img {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .panel-sub-heading {
  border-bottom: 1px solid transparent;
  padding: 12px 20px;
}
.tg .panel-body {
  padding: 12px 20px 0;
}
.tg .panel-body:before,
.tg .panel-body:after {
  content: " ";
  display: table;
}
.tg .panel-body:after {
  clear: both;
}
.tg .panel-body:before,
.tg .panel-body:after {
  content: " ";
  display: table;
}
.tg .panel-body:after {
  clear: both;
}
.tg .panel-heading ~ .panel-body {
  padding-top: 24px;
}
.tg .panel-footer {
  border-top: 1px solid #d5d5d5;
  padding: 12px 20px;
}
.tg .panel-title {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0;
}
.tg .panel-title > a {
  color: inherit;
}
.tg .panel-title-primary {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #ff6200;
}
.tg .panel-title-a {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
  color: #ff6200;
  text-align: center;
}
.tg .panel-bordered {
  border: 1px solid #d5d5d5;
}
.tg .panel-bordered.collapsed > .panel-heading {
  border-color: transparent;
}
.tg .panel-radius-collapsible {
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .panel-radius-collapsible.collapsed {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tg .panel-center {
  text-align: center;
}
.tg .panel-center .panel-title {
  text-align: center;
}
.tg .panel-relative {
  position: relative;
}
.tg .panel-relative > .panel-heading,
.tg .panel-relative > .panel-sub-heading,
.tg .panel-relative > .panel-body,
.tg .panel-relative > .panel-footer {
  position: relative;
}
.tg .panel-shadow-a {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #ebebeb;
  border-color: #ebebeb #d5d5d5 #d5d5d5 #d5d5d5 \9;
}
.tg .panel-shadow-b {
  -webkit-box-shadow: 0 2px 6px #adadad;
  box-shadow: 0 2px 6px #adadad;
  border: 1px solid #d5d5d5;
}
.tg .panel-success {
  border-color: #349651 !important;
  background-color: #eff7f1 !important;
}
.tg .panel-success > .panel-heading {
  border-color: #349651 !important;
  background-color: #eff7f1 !important;
  color: #333333 !important;
}
.tg .panel-success > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #349651 !important;
}
.tg .panel-success > .panel-sub-heading {
  border-color: #349651 !important;
  background-color: #eff7f1 !important;
}
.tg .panel-success > .panel-footer {
  border-color: #349651 !important;
  background-color: #eff7f1 !important;
}
.tg .panel-success > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #349651 !important;
}
.tg .panel-info {
  border-color: #60a6da !important;
  background-color: #f3f8fc !important;
}
.tg .panel-info > .panel-heading {
  border-color: #60a6da !important;
  background-color: #f3f8fc !important;
  color: #333333 !important;
}
.tg .panel-info > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #60a6da !important;
}
.tg .panel-info > .panel-sub-heading {
  border-color: #60a6da !important;
  background-color: #f3f8fc !important;
}
.tg .panel-info > .panel-footer {
  border-color: #60a6da !important;
  background-color: #f3f8fc !important;
}
.tg .panel-info > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #60a6da !important;
}
.tg .panel-warning {
  border-color: #ff6200 !important;
  background-color: #fff3eb !important;
}
.tg .panel-warning > .panel-heading {
  border-color: #ff6200 !important;
  background-color: #fff3eb !important;
  color: #333333 !important;
}
.tg .panel-warning > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ff6200 !important;
}
.tg .panel-warning > .panel-sub-heading {
  border-color: #ff6200 !important;
  background-color: #fff3eb !important;
}
.tg .panel-warning > .panel-footer {
  border-color: #ff6200 !important;
  background-color: #fff3eb !important;
}
.tg .panel-warning > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ff6200 !important;
}
.tg .panel-danger {
  border-color: #ff0000 !important;
  background-color: #ffebeb !important;
}
.tg .panel-danger > .panel-heading {
  border-color: #ff0000 !important;
  background-color: #ffebeb !important;
  color: #333333 !important;
}
.tg .panel-danger > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #ff0000 !important;
}
.tg .panel-danger > .panel-sub-heading {
  border-color: #ff0000 !important;
  background-color: #ffebeb !important;
}
.tg .panel-danger > .panel-footer {
  border-color: #ff0000 !important;
  background-color: #ffebeb !important;
}
.tg .panel-danger > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #ff0000 !important;
}
.tg .panel-sm > .panel-heading {
  padding: 6px 10px 0;
}
.tg .panel-sm > .panel-sub-heading {
  padding: 6px 10px 0;
}
.tg .panel-sm > .panel-body {
  padding: 24px 10px 0;
}
.tg .panel-sm > .panel-footer {
  padding: 6px 10px;
}
.tg .panel-sm .panel-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
.tg .panel-lg > .panel-heading {
  padding: 24px 20px;
}
.tg .panel-lg > .panel-heading .panel-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .panel-lg > .panel-sub-heading {
  padding: 12px 20px;
}
.tg .panel-lg > .panel-body {
  padding: 24px 20px 0;
}
.tg .panel-lg > .panel-footer {
  padding: 24px 20px;
}
.tg .panel-default {
  border-color: #d5d5d5;
  background-color: #ffffff;
}
.tg .panel-default > .panel-heading {
  border-color: #d5d5d5;
  background-color: #ebebeb;
  color: #333333;
}
.tg .panel-default > .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d5d5d5;
}
.tg .panel-default > .panel-sub-heading {
  border-color: #d5d5d5;
  background-color: #f5f5f5;
}
.tg .panel-default > .panel-footer {
  border-color: #d5d5d5;
  background-color: #ebebeb;
}
.tg .panel-default > .panel-footer + .panel-collapse .panel-body {
  border-bottom-color: #d5d5d5;
}
.tg .panel-default > .panel-heading {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.tg .panel-default.panel-sm > .panel-heading {
  padding-bottom: 6px;
}
.tg .panel-default.panel-sm > .panel-sub-heading {
  padding-bottom: 6px;
}
.tg .panel-default.panel-lg > .panel-heading {
  padding-bottom: 24px;
}
.tg .panel-a {
  background-color: #ffffff;
}
.tg .panel-a > .panel-heading + .panel-body {
  padding-top: 0;
}
.tg .panel-a > .panel-sub-heading {
  padding-top: 0;
}
.tg .panel-a > .panel-sub-heading + .panel-body {
  padding-top: 6px;
}
.tg .panel-a > .panel-footer {
  border: none;
  padding-top: 0;
  padding-bottom: 12px;
}
.tg .panel-group {
  margin-bottom: 24px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tg .panel-group .panel {
  margin-top: 1px;
  margin-bottom: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .panel-group .panel > .panel-heading,
.tg .panel-group .panel > .panel-body,
.tg .panel-group .panel > .panel-footer {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .panel-group .panel:first-child {
  margin-top: 0;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .panel-group .panel:first-child > .panel-heading,
.tg .panel-group .panel:first-child > .panel-body:first-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .panel-group .panel:last-child {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tg .panel-group .panel:last-child > .panel-footer,
.tg .panel-group .panel:last-child > .panel-body:last-child,
.tg .panel-group .panel:last-child > .panel-heading.collapsed,
.tg .panel-group .panel:last-child > .collapsible-content {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tg .panel-group .panel-heading {
  border-bottom-width: 0;
}
.tg .panel-group .panel-footer {
  border-top-width: 0;
}
.tg .panel > .list-group {
  margin-bottom: 0;
}
.tg .panel > .list-group .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .panel > .list-group:first-child .list-group-item:first-child {
  border-top-width: 0;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .panel > .list-group:last-child .list-group-item:last-child {
  border-bottom-width: 0;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.tg .list-group + .panel-footer {
  border-top-width: 0;
}
.tg .popover-content .panel {
  margin: 0;
}
.tg .panel > .table:first-child {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .panel > .table:last-child {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .panel > .table,
.tg .panel > .table-responsive {
  margin-bottom: 0;
}
.tg .panel > .panel-body + .table,
.tg .panel > .panel-body + .table-responsive {
  border-top: 1px solid #d5d5d5;
}
.tg .panel > .table-bordered,
.tg .panel > .table-responsive > .table-bordered {
  border: none;
}
.tg .panel > .table-bordered > thead > tr > th:first-child,
.tg .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.tg .panel > .table-bordered > tbody > tr > th:first-child,
.tg .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.tg .panel > .table-bordered > tfoot > tr > th:first-child,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.tg .panel > .table-bordered > thead > tr > td:first-child,
.tg .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.tg .panel > .table-bordered > tbody > tr > td:first-child,
.tg .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.tg .panel > .table-bordered > tfoot > tr > td:first-child,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left-width: 0;
}
.tg .panel > .table-bordered > thead > tr > th:last-child,
.tg .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.tg .panel > .table-bordered > tbody > tr > th:last-child,
.tg .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.tg .panel > .table-bordered > tfoot > tr > th:last-child,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.tg .panel > .table-bordered > thead > tr > td:last-child,
.tg .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.tg .panel > .table-bordered > tbody > tr > td:last-child,
.tg .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.tg .panel > .table-bordered > tfoot > tr > td:last-child,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right-width: 0;
}
.tg .panel > .table-bordered > thead > tr:last-child > th,
.tg .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.tg .panel > .table-bordered > tbody > tr:last-child > th,
.tg .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.tg .panel > .table-bordered > tfoot > tr:last-child > th,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.tg .panel > .table-bordered > thead > tr:last-child > td,
.tg .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.tg .panel > .table-bordered > tbody > tr:last-child > td,
.tg .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.tg .panel > .table-bordered > tfoot > tr:last-child > td,
.tg .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom-width: 0;
}
.tg .panel-tabs-primary > .panel-heading {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  background-color: #ff6200;
  color: #ffffff;
  margin: -1px -1px 0 -1px;
  padding: 4px 20px;
}
.tg .panel-tabs-primary > .panel-sub-heading + .panel-body {
  padding-top: 6px;
}
.tg table {
  position: relative;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: transparent;
  margin-bottom: 24px;
}
.tg table > thead > tr > th,
.tg table > tbody > tr > th,
.tg table > tfoot > tr > th,
.tg table > thead > tr > td,
.tg table > tbody > tr > td,
.tg table > tfoot > tr > td {
  vertical-align: top;
}
.tg th {
  text-align: left;
}
.tg .table {
  width: 100%;
  margin-bottom: 24px;
}
.tg .table caption {
  font-weight: bold;
  text-align: left;
}
.tg .table > thead > tr > th,
.tg .table > tbody > tr > th,
.tg .table > tfoot > tr > th,
.tg .table > thead > tr > td,
.tg .table > tbody > tr > td,
.tg .table > tfoot > tr > td {
  text-align: left;
  vertical-align: top;
  padding: 8px 10px;
}
.tg .table > thead > tr > th,
.tg .table > tbody > tr > th,
.tg .table > tfoot > tr > th {
  font-weight: bold;
  line-height: 1.3;
}
.tg .table > thead > tr > th {
  vertical-align: top;
}
.tg .table .table {
  background-color: #ffffff;
}
.tg .table-bordered {
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border-collapse: separate;
}
.tg .table-bordered caption + thead tr:first-child th,
.tg .table-bordered caption + tbody tr:first-child th,
.tg .table-bordered caption + tbody tr:first-child td,
.tg .table-bordered colgroup + thead tr:first-child th,
.tg .table-bordered colgroup + tbody tr:first-child th,
.tg .table-bordered colgroup + tbody tr:first-child td,
.tg .table-bordered thead:first-child tr:first-child th,
.tg .table-bordered > tbody:first-child tr:first-child th,
.tg .table-bordered > tbody:first-child tr:first-child td {
  border-top-width: 0;
}
.tg .table-bordered:not(.table-bordered-caption) colgroup + thead tr:first-child th:first-child,
.tg .table-bordered:not(.table-bordered-caption) caption + thead tr:first-child th:first-child,
.tg .table-bordered:not(.table-bordered-caption) thead:first-child tr:first-child th:first-child,
.tg .table-bordered:not(.table-bordered-caption) colgroup + thead tr:first-child td:first-child,
.tg .table-bordered:not(.table-bordered-caption) caption + thead tr:first-child td:first-child,
.tg .table-bordered:not(.table-bordered-caption) thead:first-child tr:first-child td:first-child {
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .table-bordered:not(.table-bordered-caption) colgroup + thead tr:first-child th:last-child,
.tg .table-bordered:not(.table-bordered-caption) caption + thead tr:first-child th:last-child,
.tg .table-bordered:not(.table-bordered-caption) thead:first-child tr:first-child th:last-child,
.tg .table-bordered:not(.table-bordered-caption) colgroup + thead tr:first-child td:last-child,
.tg .table-bordered:not(.table-bordered-caption) caption + thead tr:first-child td:last-child,
.tg .table-bordered:not(.table-bordered-caption) thead:first-child tr:first-child td:last-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
}
.tg .table-bordered:not(.table-bordered-caption) tbody:first-child tr:first-child th:first-child,
.tg .table-bordered:not(.table-bordered-caption) tbody:first-child tr:first-child td:first-child {
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .table-bordered:not(.table-bordered-caption) tbody:first-child tr:first-child th:last-child,
.tg .table-bordered:not(.table-bordered-caption) tbody:first-child tr:first-child td:last-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
}
.tg .table-bordered:not(.table-bordered-caption) > tr:first-child th:first-child,
.tg .table-bordered:not(.table-bordered-caption) > tr:first-child td:first-child {
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .table-bordered:not(.table-bordered-caption) > tr:first-child th:last-child,
.tg .table-bordered:not(.table-bordered-caption) > tr:first-child td:last-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
}
.tg .table-bordered tbody tr:last-child th:first-child,
.tg .table-bordered tfoot tr:last-child th:first-child,
.tg .table-bordered tbody tr:last-child td:first-child,
.tg .table-bordered tfoot tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .table-bordered tbody tr:last-child td:last-child,
.tg .table-bordered tfoot tr:last-child td:last-child,
.tg .table-bordered tbody tr:last-child th:last-child,
.tg .table-bordered tfoot tr:last-child th:last-child {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tg .table-bordered tfoot + tbody:last-child tr:last-child th:first-child,
.tg .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tg .table-bordered tfoot + tbody:last-child tr:last-child th:last-child,
.tg .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tg .table-bordered .table-bordered-caption {
  border: 1px solid #d5d5d5;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 12px 20px;
  margin-bottom: -1px;
}
.tg .table-bordered-caption {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .table-bordered-caption caption {
  border: 1px solid #d5d5d5;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  padding: 12px 20px;
  margin-bottom: -1px;
}
.tg .table-bordered-cells th,
.tg .table-bordered-cells td {
  border: 1px solid #d5d5d5;
}
.tg .table-bordered-cells.table-bordered {
  border-bottom-width: 0;
}
.tg .table-bordered-cells.table-bordered th,
.tg .table-bordered-cells.table-bordered td {
  border: 0;
  border-left: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
}
.tg .table-bordered-cells.table-bordered caption + thead th:first-child,
.tg .table-bordered-cells.table-bordered caption + thead td:first-child,
.tg .table-bordered-cells.table-bordered caption + tbody td:first-child,
.tg .table-bordered-cells.table-bordered thead th:first-child,
.tg .table-bordered-cells.table-bordered thead td:first-child,
.tg .table-bordered-cells.table-bordered tbody th:first-child,
.tg .table-bordered-cells.table-bordered tbody td:first-child {
  border-left-width: 0;
}
.tg .table-cell-border-left {
  border-left: 1px solid #d5d5d5;
}
.tg .table-cell-border-dotted {
  border-right: 1px dotted #adadad;
  border-left: 1px dotted #adadad;
}
.tg .table-bordered-rows > thead tr,
.tg .table-bordered-rows > tbody tr,
.tg .table-bordered-rows > tfoot tr {
  border-bottom: 1px solid #d5d5d5;
}
.tg .table-bordered-rows > tbody:last-child > tr:last-child,
.tg .table-bordered-rows > tfoot > tr:last-child {
  border: 0;
}
.tg .table-bordered-rows > tfoot + tbody > tr:last-child {
  border-bottom: 1px solid #d5d5d5;
}
.tg [class^="table-radius--"],
.tg [class*="table-radius--"] {
  border-collapse: separate !important;
}
.tg .table-radius-top {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .table-radius-right {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tg .table-radius-bottom {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .table-radius-left {
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .table-radius-top-bottomRight {
  -webkit-border-radius: 6px 6px 6px 0;
  border-radius: 6px 6px 6px 0;
}
.tg .table-radius-top-bottomLeft {
  -webkit-border-radius: 6px 6px 0 6px;
  border-radius: 6px 6px 0 6px;
}
.tg .table-radius-bottom-topRight {
  -webkit-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.tg .table-radius-bottom-topLeft {
  -webkit-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.tg .table > thead > tr td.has-success,
.tg .table > tbody > tr td.has-success,
.tg .table > tfoot > tr td.has-success,
.tg .table > thead > tr td.has-success,
.tg .table > tbody > tr td.has-success,
.tg .table > tfoot > tr td.has-success {
  background-color: #349651;
  color: #ffffff;
}
.tg .table > thead > tr td.has-danger,
.tg .table > tbody > tr td.has-danger,
.tg .table > tfoot > tr td.has-danger,
.tg .table > thead > tr td.has-danger,
.tg .table > tbody > tr td.has-danger,
.tg .table > tfoot > tr td.has-danger {
  background-color: #ff0000;
  color: #ffffff;
}
.tg .table > thead > tr td.has-warning,
.tg .table > tbody > tr td.has-warning,
.tg .table > tfoot > tr td.has-warning,
.tg .table > thead > tr td.has-warning,
.tg .table > tbody > tr td.has-warning,
.tg .table > tfoot > tr td.has-warning {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .table > thead > tr td.has-info,
.tg .table > tbody > tr td.has-info,
.tg .table > tfoot > tr td.has-info,
.tg .table > thead > tr td.has-info,
.tg .table > tbody > tr td.has-info,
.tg .table > tfoot > tr td.has-info {
  background-color: #60a6da;
  color: #ffffff;
}
.tg .table > thead > tr td.has-muted,
.tg .table > tbody > tr td.has-muted,
.tg .table > tfoot > tr td.has-muted,
.tg .table > thead > tr td.has-muted,
.tg .table > tbody > tr td.has-muted,
.tg .table > tfoot > tr td.has-muted {
  background-color: #adadad;
  color: #ffffff;
}
.tg .table > thead > tr.active > td,
.tg .table > tbody > tr.active > td,
.tg .table > tfoot > tr.active > td,
.tg .table > thead > tr.active > th,
.tg .table > tbody > tr.active > th,
.tg .table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.tg .table-hover > thead > tr.active:hover > td,
.tg .table-hover > tbody > tr.active:hover > td,
.tg .table-hover > tfoot > tr.active:hover > td,
.tg .table-hover > thead > tr.active:hover > th,
.tg .table-hover > tbody > tr.active:hover > th,
.tg .table-hover > tfoot > tr.active:hover > th {
  background-color: #e8e8e8;
}
.tg .table > thead > tr.success > td,
.tg .table > tbody > tr.success > td,
.tg .table > tfoot > tr.success > td,
.tg .table > thead > tr.success > th,
.tg .table > tbody > tr.success > th,
.tg .table > tfoot > tr.success > th {
  background-color: #eff7f1;
}
.tg .table-hover > thead > tr.success:hover > td,
.tg .table-hover > tbody > tr.success:hover > td,
.tg .table-hover > tfoot > tr.success:hover > td,
.tg .table-hover > thead > tr.success:hover > th,
.tg .table-hover > tbody > tr.success:hover > th,
.tg .table-hover > tfoot > tr.success:hover > th {
  background-color: #deefe2;
}
.tg .table > thead > tr.info > td,
.tg .table > tbody > tr.info > td,
.tg .table > tfoot > tr.info > td,
.tg .table > thead > tr.info > th,
.tg .table > tbody > tr.info > th,
.tg .table > tfoot > tr.info > th {
  background-color: #f3f8fc;
}
.tg .table-hover > thead > tr.info:hover > td,
.tg .table-hover > tbody > tr.info:hover > td,
.tg .table-hover > tfoot > tr.info:hover > td,
.tg .table-hover > thead > tr.info:hover > th,
.tg .table-hover > tbody > tr.info:hover > th,
.tg .table-hover > tfoot > tr.info:hover > th {
  background-color: #dfecf7;
}
.tg .table > thead > tr.warning > td,
.tg .table > tbody > tr.warning > td,
.tg .table > tfoot > tr.warning > td,
.tg .table > thead > tr.warning > th,
.tg .table > tbody > tr.warning > th,
.tg .table > tfoot > tr.warning > th {
  background-color: #fff3eb;
}
.tg .table-hover > thead > tr.warning:hover > td,
.tg .table-hover > tbody > tr.warning:hover > td,
.tg .table-hover > tfoot > tr.warning:hover > td,
.tg .table-hover > thead > tr.warning:hover > th,
.tg .table-hover > tbody > tr.warning:hover > th,
.tg .table-hover > tfoot > tr.warning:hover > th {
  background-color: #ffe4d1;
}
.tg .table > thead > tr.danger > td,
.tg .table > tbody > tr.danger > td,
.tg .table > tfoot > tr.danger > td,
.tg .table > thead > tr.danger > th,
.tg .table > tbody > tr.danger > th,
.tg .table > tfoot > tr.danger > th {
  background-color: #ffebeb;
}
.tg .table-hover > thead > tr.danger:hover > td,
.tg .table-hover > tbody > tr.danger:hover > td,
.tg .table-hover > tfoot > tr.danger:hover > td,
.tg .table-hover > thead > tr.danger:hover > th,
.tg .table-hover > tbody > tr.danger:hover > th,
.tg .table-hover > tfoot > tr.danger:hover > th {
  background-color: #ffd1d1;
}
.tg .v-align-middle {
  vertical-align: middle !important;
}
.tg .v-align-middle > thead > tr > th,
.tg .v-align-middle > tbody > tr > th,
.tg .v-align-middle > tfoot > tr > th,
.tg .v-align-middle > thead > tr > td,
.tg .v-align-middle > tbody > tr > td,
.tg .v-align-middle > tfoot > tr > td {
  vertical-align: middle !important;
}
.tg .v-align-middle > th,
.tg .v-align-middle > td {
  vertical-align: middle !important;
}
.tg .table-lr-unpadded > thead > tr > td:first-child,
.tg .table-lr-unpadded > tbody > tr > td:first-child,
.tg .table-lr-unpadded > tfoot > tr > td:first-child,
.tg .table-lr-unpadded > thead > tr > th:first-child,
.tg .table-lr-unpadded > tbody > tr > th:first-child,
.tg .table-lr-unpadded > tfoot > tr > th:first-child {
  padding-left: 0;
}
.tg .table-lr-unpadded > thead > tr > td:last-child,
.tg .table-lr-unpadded > tbody > tr > td:last-child,
.tg .table-lr-unpadded > tfoot > tr > td:last-child,
.tg .table-lr-unpadded > thead > tr > th:last-child,
.tg .table-lr-unpadded > tbody > tr > th:last-child,
.tg .table-lr-unpadded > tfoot > tr > th:last-child {
  padding-right: 0;
}
.tg .table-striped-a tbody > tr:nth-child(odd) > td,
.tg .table-striped-a tbody > tr:nth-child(odd) > th {
  background-color: #ebebeb;
}
.tg .table-hover-a > tbody > tr:hover > td,
.tg .table-hover-a > tbody > tr:hover > th {
  background-color: #f5f5f5;
  cursor: pointer;
}
.tg .table > thead > tr.has-success > td,
.tg .table > tbody > tr.has-success > td,
.tg .table > tfoot > tr.has-success > td,
.tg .table > thead > tr.has-success > th,
.tg .table > tbody > tr.has-success > th,
.tg .table > tfoot > tr.has-success > th {
  background-color: #eff7f1;
}
.tg .table-hover > thead > tr.has-success:hover > td,
.tg .table-hover > tbody > tr.has-success:hover > td,
.tg .table-hover > tfoot > tr.has-success:hover > td,
.tg .table-hover > thead > tr.has-success:hover > th,
.tg .table-hover > tbody > tr.has-success:hover > th,
.tg .table-hover > tfoot > tr.has-success:hover > th {
  background-color: #deefe2;
}
.tg .table > thead > tr.has-error > td,
.tg .table > tbody > tr.has-error > td,
.tg .table > tfoot > tr.has-error > td,
.tg .table > thead > tr.has-error > th,
.tg .table > tbody > tr.has-error > th,
.tg .table > tfoot > tr.has-error > th {
  background-color: #ffebeb;
}
.tg .table-hover > thead > tr.has-error:hover > td,
.tg .table-hover > tbody > tr.has-error:hover > td,
.tg .table-hover > tfoot > tr.has-error:hover > td,
.tg .table-hover > thead > tr.has-error:hover > th,
.tg .table-hover > tbody > tr.has-error:hover > th,
.tg .table-hover > tfoot > tr.has-error:hover > th {
  background-color: #ffd1d1;
}
.tg .table > thead > tr.has-warning > td,
.tg .table > tbody > tr.has-warning > td,
.tg .table > tfoot > tr.has-warning > td,
.tg .table > thead > tr.has-warning > th,
.tg .table > tbody > tr.has-warning > th,
.tg .table > tfoot > tr.has-warning > th {
  background-color: #fff3eb;
}
.tg .table-hover > thead > tr.has-warning:hover > td,
.tg .table-hover > tbody > tr.has-warning:hover > td,
.tg .table-hover > tfoot > tr.has-warning:hover > td,
.tg .table-hover > thead > tr.has-warning:hover > th,
.tg .table-hover > tbody > tr.has-warning:hover > th,
.tg .table-hover > tfoot > tr.has-warning:hover > th {
  background-color: #ffe4d1;
}
.tg .table > thead > tr.has-info > td,
.tg .table > tbody > tr.has-info > td,
.tg .table > tfoot > tr.has-info > td,
.tg .table > thead > tr.has-info > th,
.tg .table > tbody > tr.has-info > th,
.tg .table > tfoot > tr.has-info > th {
  background-color: #f3f8fc;
}
.tg .table-hover > thead > tr.has-info:hover > td,
.tg .table-hover > tbody > tr.has-info:hover > td,
.tg .table-hover > tfoot > tr.has-info:hover > td,
.tg .table-hover > thead > tr.has-info:hover > th,
.tg .table-hover > tbody > tr.has-info:hover > th,
.tg .table-hover > tfoot > tr.has-info:hover > th {
  background-color: #dfecf7;
}
.tg .table > thead > tr.has-muted > td,
.tg .table > tbody > tr.has-muted > td,
.tg .table > tfoot > tr.has-muted > td,
.tg .table > thead > tr.has-muted > th,
.tg .table > tbody > tr.has-muted > th,
.tg .table > tfoot > tr.has-muted > th {
  background-color: #adadad;
}
.tg .table-hover > thead > tr.has-muted:hover > td,
.tg .table-hover > tbody > tr.has-muted:hover > td,
.tg .table-hover > tfoot > tr.has-muted:hover > td,
.tg .table-hover > thead > tr.has-muted:hover > th,
.tg .table-hover > tbody > tr.has-muted:hover > th,
.tg .table-hover > tfoot > tr.has-muted:hover > th {
  background-color: #a0a0a0;
}
.tg .table-sm > thead > tr > th,
.tg .table-sm > tbody > tr > th,
.tg .table-sm > tfoot > tr > th,
.tg .table-sm > thead > tr > td,
.tg .table-sm > tbody > tr > td,
.tg .table-sm > tfoot > tr > td {
  padding-top: 4px;
  padding-right: 5px;
  padding-bottom: 4px;
  padding-left: 5px;
}
.tg .table-a {
  border-color: #d5d5d5;
  background-color: #ffffff;
}
.tg .table-a > thead > tr > th,
.tg .table-a > tbody > tr > th,
.tg .table-a > tfoot > tr > th,
.tg .table-a > thead > tr > td,
.tg .table-a > tbody > tr > td,
.tg .table-a > tfoot > tr > td {
  border-top: 1px solid #d5d5d5;
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .table-a > thead {
  background-color: #d5d5d5;
}
.tg .table-a tfoot tr {
  background-color: #ffffff;
}
.tg .table-a tfoot tr td,
.tg .table-a tfoot tr th {
  font-weight: bold;
}
.tg .table-a .thead-sub td,
.tg .table-a .thead-sub th {
  background-color: #ebebeb;
  font-weight: bold;
}
.tg .table-a .tfoot-sub th,
.tg .table-a .tfoot-sub td {
  font-weight: bold;
}
.tg .table-a .collapsible tr.collapsible-content > th,
.tg .table-a .collapsible tr.collapsible-content > td {
  border-top: 0;
}
.tg .table-b {
  border-bottom: 1px solid #ff6200;
}
.tg .table-b > thead > tr,
.tg .table-b > tbody > tr,
.tg .table-b > tfoot > tr {
  border-bottom: 1px solid #d5d5d5;
}
.tg .table-b > thead > tr > th,
.tg .table-b > tbody > tr > th,
.tg .table-b > tfoot > tr > th,
.tg .table-b > thead > tr > td,
.tg .table-b > tbody > tr > td,
.tg .table-b > tfoot > tr > td {
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .table-b thead tr {
  border-bottom: 1px solid #ff6200;
}
.tg .table-b thead th {
  color: #ff6200;
}
.tg .table-b .thead-sub th,
.tg .table-b .thead-sub td {
  border-bottom: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  font-weight: bold;
  color: inherit;
}
.tg .table-b tfoot tr {
  background-color: #ebebeb;
}
.tg .table-b tfoot tr td,
.tg .table-b tfoot tr th {
  border-top: 1px solid #d5d5d5;
  font-weight: bold;
}
.tg .table-b tfoot .tfoot-sub {
  background-color: #ffffff;
}
.tg .table-b tfoot .tfoot-sub th,
.tg .table-b tfoot .tfoot-sub td {
  border-top: 0;
  font-weight: inherit;
}
.tg .table-c > thead > tr > th,
.tg .table-c > tbody > tr > th,
.tg .table-c > tfoot > tr > th,
.tg .table-c > thead > tr > td,
.tg .table-c > tbody > tr > td,
.tg .table-c > tfoot > tr > td {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .table-c > thead > tr > th:first-child,
.tg .table-c > tbody > tr > th:first-child,
.tg .table-c > tfoot > tr > th:first-child,
.tg .table-c > thead > tr > td:first-child,
.tg .table-c > tbody > tr > td:first-child,
.tg .table-c > tfoot > tr > td:first-child {
  padding-left: 0;
}
.tg .table-c > thead > tr > th:last-child,
.tg .table-c > tbody > tr > th:last-child,
.tg .table-c > tfoot > tr > th:last-child,
.tg .table-c > thead > tr > td:last-child,
.tg .table-c > tbody > tr > td:last-child,
.tg .table-c > tfoot > tr > td:last-child {
  padding-right: 0;
}
.tg .table-c tfoot th,
.tg .table-c tfoot td {
  border-top: 1px solid #adadad;
}
.tg .table-c .tfoot-sub th,
.tg .table-c .tfoot-sub td {
  border-top: 0;
  font-weight: inherit;
}
.tg .table-d > thead > tr > th,
.tg .table-d > tbody > tr > th,
.tg .table-d > tfoot > tr > th,
.tg .table-d > thead > tr > td,
.tg .table-d > tbody > tr > td,
.tg .table-d > tfoot > tr > td {
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .table-d thead th,
.tg .table-d thead td {
  border-top: 1px solid #d5d5d5;
  background-color: #f5f5f5;
}
.tg .table-d .thead-sub th,
.tg .table-d .thead-sub td {
  border-top: 0;
  border-bottom-color: #f5f5f5;
  background-color: #f5f5f5;
  color: #adadad;
}
.tg .table-d tbody th,
.tg .table-d tbody td {
  border-bottom: 1px solid #d5d5d5;
}
.tg .table-d tfoot th,
.tg .table-d tfoot td {
  border-top: 1px solid #d5d5d5;
  background-color: #f5f5f5;
  font-weight: bold;
}
.tg .table-d .tfoot-sub th,
.tg .table-d .tfoot-sub td {
  background-color: inherit;
  font-weight: inherit;
}
.tg .table-e > thead > tr > th,
.tg .table-e > tbody > tr > th,
.tg .table-e > tfoot > tr > th,
.tg .table-e > thead > tr > td,
.tg .table-e > tbody > tr > td,
.tg .table-e > tfoot > tr > td {
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .table-e > thead > tr > th:first-child,
.tg .table-e > tbody > tr > th:first-child,
.tg .table-e > tfoot > tr > th:first-child,
.tg .table-e > thead > tr > td:first-child,
.tg .table-e > tbody > tr > td:first-child,
.tg .table-e > tfoot > tr > td:first-child {
  padding-left: 0;
}
.tg .table-e > thead > tr > th:last-child,
.tg .table-e > tbody > tr > th:last-child,
.tg .table-e > tfoot > tr > th:last-child,
.tg .table-e > thead > tr > td:last-child,
.tg .table-e > tbody > tr > td:last-child,
.tg .table-e > tfoot > tr > td:last-child {
  padding-right: 0;
}
.tg .table-e tfoot tr td,
.tg .table-e tfoot tr th {
  border-top: 1px solid #d5d5d5;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
.tg .table-e .tfoot-sub th,
.tg .table-e .tfoot-sub td {
  border-top: 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: inherit;
}
.tg .table-grid {
  margin-bottom: 12px;
}
.tg .table-grid th,
.tg .table-grid td {
  float: none;
}
.tg .content-page h2,
.tg .content-page h3,
.tg .content-page h4,
.tg .content-page h5,
.tg .content-page h6 {
  color: #ff6200;
}
.tg .content-page li {
  list-style: inherit;
}
.tg .body-box {
  font-family: INGMe, "Arial", sans-serif;
  white-space: normal;
  text-align: left;
}
.tg .body-box.body-box-sm [class*="heading-b-"],
.tg .body-box.body-box-sm [class*="heading-l-"] {
  margin-bottom: 6px;
}
.tg .body-box.body-box-sm p,
.tg .body-box.body-box-sm ol,
.tg .body-box.body-box-sm ul,
.tg .body-box.body-box-sm .btn-bar {
  margin-bottom: 12px;
}
.tg .body-box p:last-child,
.tg .body-box ol:last-child,
.tg .body-box ul:last-child,
.tg .body-box .btn-bar:last-child {
  margin-bottom: 0;
}
.tg .btn .layout-box {
  font-family: INGMe, "Arial", sans-serif;
  white-space: normal;
  text-align: left;
}
.tg .plain-markup h2 {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .plain-markup h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .plain-markup h4 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
}
.tg .plain-markup h5 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .plain-markup h6 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 12px;
}
.tg .plain-markup table {
  margin-bottom: 24px;
}
.tg .plain-markup table > thead > tr > th,
.tg .plain-markup table > tbody > tr > th,
.tg .plain-markup table > tfoot > tr > th,
.tg .plain-markup table > thead > tr > td,
.tg .plain-markup table > tbody > tr > td,
.tg .plain-markup table > tfoot > tr > td {
  font-weight: normal;
  padding: 8px 10px;
}
.tg .plain-markup table > thead > tr > th:first-child,
.tg .plain-markup table > tbody > tr > th:first-child,
.tg .plain-markup table > tfoot > tr > th:first-child,
.tg .plain-markup table > thead > tr > td:first-child,
.tg .plain-markup table > tbody > tr > td:first-child,
.tg .plain-markup table > tfoot > tr > td:first-child {
  padding-left: 0;
}
.tg .plain-markup table > thead > tr > th,
.tg .plain-markup table > thead > tr > td {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
.tg .h-bg-l-priba {
  background-color: #767676 !important;
  background-color: rgba(118, 118, 118, 0.7) !important;
  color: #ffffff;
}
.tg .h-bg-a-darker {
  background-color: #ff6200 !important;
  color: #ffffff;
}
.tg .h-bg-a-lighter {
  background-color: #fff3eb !important;
}
.tg .h-bg-b-base {
  background-color: #ffffff !important;
}
.tg .h-bg-c-dark {
  background-color: #767676 !important;
  color: #ffffff;
}
.tg .h-bg-c-base {
  background-color: #adadad !important;
}
.tg .h-bg-c-light {
  background-color: #d5d5d5 !important;
}
.tg .h-bg-c-lighter {
  background-color: #ebebeb !important;
}
.tg .h-bg-c-lightest {
  background-color: #f5f5f5 !important;
}
.tg .h-bg-d-darker {
  background-color: #525199 !important;
  color: #ffffff;
}
.tg .h-bg-d-dark {
  background-color: #9897c2 !important;
}
.tg .h-bg-d-base {
  background-color: #cbcbe1 !important;
}
.tg .h-bg-d-light {
  background-color: #e6e6f0 !important;
}
.tg .h-bg-e-darker {
  background-color: #60a6da !important;
  color: #ffffff;
}
.tg .h-bg-e-dark {
  background-color: #a0cae9 !important;
}
.tg .h-bg-e-base {
  background-color: #cfe5f4 !important;
}
.tg .h-bg-e-light {
  background-color: #e8f2fa !important;
}
.tg .h-bg-e-lighter {
  background-color: #f3f8fc !important;
}
.tg .h-bg-f-darker {
  background-color: #ab0066 !important;
  color: #ffffff;
}
.tg .h-bg-f-dark {
  background-color: #cd66a4 !important;
}
.tg .h-bg-f-base {
  background-color: #e6b2d1 !important;
}
.tg .h-bg-f-light {
  background-color: #f3d9e9 !important;
}
.tg .h-bg-g-darker {
  background-color: #d0d93c !important;
}
.tg .h-bg-g-dark {
  background-color: #e3e98a !important;
}
.tg .h-bg-g-base {
  background-color: #f1f4c5 !important;
}
.tg .h-bg-g-light {
  background-color: #f8fae2 !important;
}
.tg .h-bg-h-darker {
  background-color: #349651 !important;
  color: #ffffff;
}
.tg .h-bg-h-dark {
  background-color: #86c097 !important;
}
.tg .h-bg-h-base {
  background-color: #c2e0cb !important;
}
.tg .h-bg-h-light {
  background-color: #e1f0e6 !important;
}
.tg .h-bg-h-lighter {
  background-color: #eff7f1 !important;
}
.tg .h-bg-i-darker {
  background-color: #ff0000 !important;
  color: #ffffff;
}
.tg .h-bg-i-lighter {
  background-color: #ffebeb !important;
}
.tg .h-bg-unicef {
  background-color: #0099ff !important;
  color: #ffffff !important;
}
.tg .h-bg-priba {
  background-color: #767676 !important;
  color: #ffffff !important;
}
.tg .h-bg-transparent {
  background-color: transparent !important;
}
.tg [class*="h-bor-"] {
  border-style: solid !important;
  border-width: 0;
}
.tg .h-bor-0 {
  border: 0 !important;
}
.tg .h-bor-1 {
  border-width: 1px !important;
}
.tg .h-bor-2 {
  border-width: 2px !important;
}
.tg .h-bor-t-0 {
  border-top-width: 0 !important;
}
.tg .h-bor-t-1 {
  border-top-width: 1px !important;
}
.tg .h-bor-t-2 {
  border-top-width: 2px !important;
}
.tg .h-bor-r-0 {
  border-right-width: 0 !important;
}
.tg .h-bor-r-1 {
  border-right-width: 1px !important;
}
.tg .h-bor-r-2 {
  border-right-width: 2px !important;
}
.tg .h-bor-b-0 {
  border-bottom-width: 0 !important;
}
.tg .h-bor-b-1 {
  border-bottom-width: 1px !important;
}
.tg .h-bor-b-2 {
  border-bottom-width: 2px !important;
}
.tg .h-bor-l-0 {
  border-left-width: 0 !important;
}
.tg .h-bor-l-1 {
  border-left-width: 1px !important;
}
.tg .h-bor-l-2 {
  border-left-width: 2px !important;
}
.tg .h-bor-dashed {
  border-style: dashed !important;
}
.tg .h-bor-dotted {
  border-style: dotted !important;
}
.tg .h-bor-a {
  border-color: #d5d5d5 !important;
}
.tg .h-bor-b {
  border-color: #f5f5f5 !important;
}
.tg .h-bor-c {
  border-color: #ebebeb !important;
}
.tg .h-bor-d {
  border-color: #ff6200 !important;
}
.tg .h-bor-k {
  border-color: #333333 !important;
}
.tg .h-bor-m {
  border-color: #ffffff !important;
}
.tg .h-bor-n {
  border-color: transparent !important;
}
.tg .h-bor-o {
  border-color: #adadad !important;
}
.tg .h-cursor-auto {
  cursor: auto !important;
}
.tg .h-cursor-pointer {
  cursor: pointer !important;
}
.tg .h-block {
  display: block !important;
}
.tg .h-center-block {
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.tg .h-inline-block {
  display: inline-block !important;
}
.tg .h-clear-float {
  clear: both !important;
}
.tg .h-clearfix:before,
.tg .h-clearfix:after {
  content: " ";
  display: table;
}
.tg .h-clearfix:after {
  clear: both;
}
.tg .h-clearfix:before,
.tg .h-clearfix:after {
  content: " ";
  display: table;
}
.tg .h-clearfix:after {
  clear: both;
}
.tg .h-float-right {
  float: right !important;
}
.tg .h-float-left {
  float: left !important;
}
.tg .h-z-index-1 {
  position: relative !important;
  z-index: 1 !important;
}
.tg .h-z-index-2 {
  z-index: 2 !important;
}
.tg .h-z-index-3 {
  z-index: 3 !important;
}
.tg .h-opacity-100 {
  opacity: 1 !important;
}
.tg .h-opacity-95 {
  opacity: 0.95 !important;
}
.tg .h-opacity-90 {
  opacity: 0.9 !important;
}
.tg .h-opacity-85 {
  opacity: 0.85 !important;
}
.tg .h-opacity-80 {
  opacity: 0.8 !important;
}
.tg .h-opacity-75 {
  opacity: 0.75 !important;
}
.tg .h-opacity-70 {
  opacity: 0.7 !important;
}
.tg .h-opacity-65 {
  opacity: 0.65 !important;
}
.tg .h-opacity-60 {
  opacity: 0.6 !important;
}
.tg .h-opacity-55 {
  opacity: 0.55 !important;
}
.tg .h-opacity-50 {
  opacity: 0.5 !important;
}
.tg .h-opacity-45 {
  opacity: 0.45 !important;
}
.tg .h-opacity-40 {
  opacity: 0.4 !important;
}
.tg .h-opacity-35 {
  opacity: 0.35 !important;
}
.tg .h-opacity-30 {
  opacity: 0.3 !important;
}
.tg .h-opacity-25 {
  opacity: 0.25 !important;
}
.tg .h-opacity-20 {
  opacity: 0.2 !important;
}
.tg .h-opacity-15 {
  opacity: 0.15 !important;
}
.tg .h-opacity-10 {
  opacity: 0.1 !important;
}
.tg .h-opacity-5 {
  opacity: 0.05 !important;
}
.tg .h-opacity-0 {
  opacity: 0 !important;
}
.tg .visible-xs {
  display: none !important;
}
@media (max-width: 679px) {
  .tg .visible-xs {
    display: block !important;
  }
  .tg table.visible-xs {
    display: table;
  }
  .tg tr.visible-xs {
    display: table-row !important;
  }
  .tg th.visible-xs,
  .tg td.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .visible-xs.visible-sm {
    display: block !important;
  }
  .tg table.visible-xs.visible-sm {
    display: table;
  }
  .tg tr.visible-xs.visible-sm {
    display: table-row !important;
  }
  .tg th.visible-xs.visible-sm,
  .tg td.visible-xs.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .visible-xs.visible-md {
    display: block !important;
  }
  .tg table.visible-xs.visible-md {
    display: table;
  }
  .tg tr.visible-xs.visible-md {
    display: table-row !important;
  }
  .tg th.visible-xs.visible-md,
  .tg td.visible-xs.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) {
  .tg .visible-xs.visible-lg {
    display: block !important;
  }
  .tg table.visible-xs.visible-lg {
    display: table;
  }
  .tg tr.visible-xs.visible-lg {
    display: table-row !important;
  }
  .tg th.visible-xs.visible-lg,
  .tg td.visible-xs.visible-lg {
    display: table-cell !important;
  }
}
.tg .visible-sm {
  display: none !important;
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .visible-sm {
    display: block !important;
  }
  .tg table.visible-sm {
    display: table;
  }
  .tg tr.visible-sm {
    display: table-row !important;
  }
  .tg th.visible-sm,
  .tg td.visible-sm {
    display: table-cell !important;
  }
}
@media (max-width: 679px) {
  .tg .visible-sm.visible-xs {
    display: block !important;
  }
  .tg table.visible-sm.visible-xs {
    display: table;
  }
  .tg tr.visible-sm.visible-xs {
    display: table-row !important;
  }
  .tg th.visible-sm.visible-xs,
  .tg td.visible-sm.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .visible-sm.visible-md {
    display: block !important;
  }
  .tg table.visible-sm.visible-md {
    display: table;
  }
  .tg tr.visible-sm.visible-md {
    display: table-row !important;
  }
  .tg th.visible-sm.visible-md,
  .tg td.visible-sm.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) {
  .tg .visible-sm.visible-lg {
    display: block !important;
  }
  .tg table.visible-sm.visible-lg {
    display: table;
  }
  .tg tr.visible-sm.visible-lg {
    display: table-row !important;
  }
  .tg th.visible-sm.visible-lg,
  .tg td.visible-sm.visible-lg {
    display: table-cell !important;
  }
}
.tg .visible-md {
  display: none !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .visible-md {
    display: block !important;
  }
  .tg table.visible-md {
    display: table;
  }
  .tg tr.visible-md {
    display: table-row !important;
  }
  .tg th.visible-md,
  .tg td.visible-md {
    display: table-cell !important;
  }
}
@media (max-width: 679px) {
  .tg .visible-md.visible-xs {
    display: block !important;
  }
  .tg table.visible-md.visible-xs {
    display: table;
  }
  .tg tr.visible-md.visible-xs {
    display: table-row !important;
  }
  .tg th.visible-md.visible-xs,
  .tg td.visible-md.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .visible-md.visible-sm {
    display: block !important;
  }
  .tg table.visible-md.visible-sm {
    display: table;
  }
  .tg tr.visible-md.visible-sm {
    display: table-row !important;
  }
  .tg th.visible-md.visible-sm,
  .tg td.visible-md.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 992px) {
  .tg .visible-md.visible-lg {
    display: block !important;
  }
  .tg table.visible-md.visible-lg {
    display: table;
  }
  .tg tr.visible-md.visible-lg {
    display: table-row !important;
  }
  .tg th.visible-md.visible-lg,
  .tg td.visible-md.visible-lg {
    display: table-cell !important;
  }
}
.tg .visible-lg {
  display: none !important;
}
@media (min-width: 992px) {
  .tg .visible-lg {
    display: block !important;
  }
  .tg table.visible-lg {
    display: table;
  }
  .tg tr.visible-lg {
    display: table-row !important;
  }
  .tg th.visible-lg,
  .tg td.visible-lg {
    display: table-cell !important;
  }
}
@media (max-width: 679px) {
  .tg .visible-lg.visible-xs {
    display: block !important;
  }
  .tg table.visible-lg.visible-xs {
    display: table;
  }
  .tg tr.visible-lg.visible-xs {
    display: table-row !important;
  }
  .tg th.visible-lg.visible-xs,
  .tg td.visible-lg.visible-xs {
    display: table-cell !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .visible-lg.visible-sm {
    display: block !important;
  }
  .tg table.visible-lg.visible-sm {
    display: table;
  }
  .tg tr.visible-lg.visible-sm {
    display: table-row !important;
  }
  .tg th.visible-lg.visible-sm,
  .tg td.visible-lg.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .visible-lg.visible-md {
    display: block !important;
  }
  .tg table.visible-lg.visible-md {
    display: table;
  }
  .tg tr.visible-lg.visible-md {
    display: table-row !important;
  }
  .tg th.visible-lg.visible-md,
  .tg td.visible-lg.visible-md {
    display: table-cell !important;
  }
}
.tg .hidden-xs {
  display: block !important;
}
.tg table.hidden-xs {
  display: table;
}
.tg tr.hidden-xs {
  display: table-row !important;
}
.tg th.hidden-xs,
.tg td.hidden-xs {
  display: table-cell !important;
}
@media (max-width: 679px) {
  .tg .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .tg .hidden-xs.hidden-lg {
    display: none !important;
  }
}
.tg .hidden-sm {
  display: block !important;
}
.tg table.hidden-sm {
  display: table;
}
.tg tr.hidden-sm {
  display: table-row !important;
}
.tg th.hidden-sm,
.tg td.hidden-sm {
  display: table-cell !important;
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .hidden-sm {
    display: none !important;
  }
}
@media (max-width: 679px) {
  .tg .hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .tg .hidden-sm.hidden-lg {
    display: none !important;
  }
}
.tg .hidden-md {
  display: block !important;
}
.tg table.hidden-md {
  display: table;
}
.tg tr.hidden-md {
  display: table-row !important;
}
.tg th.hidden-md,
.tg td.hidden-md {
  display: table-cell !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .hidden-md {
    display: none !important;
  }
}
@media (max-width: 679px) {
  .tg .hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .tg .hidden-md.hidden-lg {
    display: none !important;
  }
}
.tg .hidden-lg {
  display: block !important;
}
.tg table.hidden-lg {
  display: table;
}
.tg tr.hidden-lg {
  display: table-row !important;
}
.tg th.hidden-lg,
.tg td.hidden-lg {
  display: table-cell !important;
}
@media (min-width: 992px) {
  .tg .hidden-lg {
    display: none !important;
  }
}
@media (max-width: 679px) {
  .tg .hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 680px) and (max-width: 767px) {
  .tg .hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .hidden-lg.hidden-md {
    display: none !important;
  }
}
.tg .visible-print {
  display: none !important;
}
@media print {
  .tg .visible-print {
    display: block !important;
  }
  .tg table.visible-print {
    display: table;
  }
  .tg tr.visible-print {
    display: table-row !important;
  }
  .tg th.visible-print,
  .tg td.visible-print {
    display: table-cell !important;
  }
}
@media print {
  .tg .hidden-print {
    display: none !important;
  }
}
.tg .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
}
.tg .sr-only-focusable:active,
.tg .sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 !important;
}
.tg .sr-only-undo {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 !important;
}
.tg .icon-social.icon-facebook .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-facebook .icon-facebook-logo {
  color: #3b5a9b;
}
.tg .icon-social.icon-googleplus .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-googleplus .icon-googleplus-logo {
  color: #da402e;
}
.tg .icon-social.icon-linkedin .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-linkedin .icon-linkedin-logo {
  color: #0076b3;
}
.tg .icon-social.icon-twitter .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-twitter .icon-twitter-logo {
  color: #6baddf;
}
.tg .icon-social.icon-youtube .icon-social-bg {
  color: #f8f8f8;
}
.tg .icon-social.icon-youtube .icon-youtube-you {
  color: #000000;
}
.tg .icon-social.icon-youtube .icon-youtube-tube-bg {
  color: #d02a1a;
}
.tg .icon-social.icon-youtube .icon-youtube-tube {
  color: #ffffff;
}
.tg .icon-social.icon-instagram .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-instagram .icon-instagram-logo {
  color: #a78063;
}
.tg .icon-social.icon-flickr .icon-social-bg {
  color: #f5f5f5;
}
.tg .icon-social.icon-flickr .icon-flickr-z2 {
  color: #2b62ac;
}
.tg .icon-social.icon-flickr .icon-flickr-z3 {
  color: #e71e80;
}
.tg .icon-social.icon-slideshare .icon-social-bg {
  color: #137bb7;
}
.tg .icon-social.icon-slideshare .icon-slideshare-z2 {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone .icon.icon-facebook-logo,
.tg .icon-social.icon-social-monotone .icon.icon-googleplus-logo,
.tg .icon-social.icon-social-monotone .icon.icon-linkedin-logo,
.tg .icon-social.icon-social-monotone .icon.icon-twitter-logo,
.tg .icon-social.icon-social-monotone .icon.icon-instagram-logo {
  color: #767676;
}
.tg .icon-social.icon-social-monotone .icon-social-bg,
.tg .icon-social.icon-social-monotone .icon-youtube-you,
.tg .icon-social.icon-social-monotone .icon-youtube-tube-bg,
.tg .icon-social.icon-social-monotone .icon-flickr-z2,
.tg .icon-social.icon-social-monotone .icon-flickr-z3,
.tg .icon-social.icon-social-monotone .icon-slideshare-z2 {
  color: #ebebeb;
}
.tg .icon-social.icon-social-monotone .icon-youtube-tube,
.tg .icon-social.icon-social-monotone.icon-youtube .icon-social-bg,
.tg .icon-social.icon-social-monotone.icon-flickr .icon-social-bg,
.tg .icon-social.icon-social-monotone.icon-slideshare .icon-social-bg {
  color: #767676;
}
.tg .icon-social.icon-social-monotone:hover.icon-facebook .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-facebook .icon-facebook-logo {
  color: #3b5a9b;
}
.tg .icon-social.icon-social-monotone:hover.icon-googleplus .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-googleplus .icon-googleplus-logo {
  color: #da402e;
}
.tg .icon-social.icon-social-monotone:hover.icon-linkedin .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-linkedin .icon-linkedin-logo {
  color: #0076b3;
}
.tg .icon-social.icon-social-monotone:hover.icon-twitter .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-twitter .icon-twitter-logo {
  color: #6baddf;
}
.tg .icon-social.icon-social-monotone:hover.icon-youtube .icon-social-bg {
  color: #f8f8f8;
}
.tg .icon-social.icon-social-monotone:hover.icon-youtube .icon-youtube-you {
  color: #000000;
}
.tg .icon-social.icon-social-monotone:hover.icon-youtube .icon-youtube-tube-bg {
  color: #d02a1a;
}
.tg .icon-social.icon-social-monotone:hover.icon-youtube .icon-youtube-tube {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-instagram .icon-social-bg {
  color: #ffffff;
}
.tg .icon-social.icon-social-monotone:hover.icon-instagram .icon-instagram-logo {
  color: #a78063;
}
.tg .icon-social.icon-social-monotone:hover.icon-flickr .icon-social-bg {
  color: #f5f5f5;
}
.tg .icon-social.icon-social-monotone:hover.icon-flickr .icon-flickr-z2 {
  color: #2b62ac;
}
.tg .icon-social.icon-social-monotone:hover.icon-flickr .icon-flickr-z3 {
  color: #e71e80;
}
.tg .icon-social.icon-social-monotone:hover.icon-slideshare .icon-social-bg {
  color: #137bb7;
}
.tg .icon-social.icon-social-monotone:hover.icon-slideshare .icon-slideshare-z2 {
  color: #ffffff;
}
.tg .icon-moon-1-7 > .icon {
  content: "\e63a";
  color: #adadad;
}
.tg .icon-moon-1-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-2-7 > .icon {
  content: "\e63a";
  color: #adadad;
}
.tg .icon-moon-2-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-2-7 .icon + .icon {
  content: "\e638";
  color: #ff6200;
}
.tg .icon-moon-2-7 .icon + .icon:before {
  content: "\e638" !important;
}
.tg .icon-moon-3-7 > .icon {
  content: "\e63a";
  color: #adadad;
}
.tg .icon-moon-3-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-3-7 .icon + .icon {
  content: "\e637";
  color: #ff6200;
}
.tg .icon-moon-3-7 .icon + .icon:before {
  content: "\e637" !important;
}
.tg .icon-moon-4-7 > .icon {
  content: "\e63a";
  color: #adadad;
}
.tg .icon-moon-4-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-4-7 .icon + .icon {
  content: "\e639";
  color: #ff6200;
}
.tg .icon-moon-4-7 .icon + .icon:before {
  content: "\e639" !important;
}
.tg .icon-moon-5-7 > .icon {
  content: "\e63a";
  color: #ff6200;
}
.tg .icon-moon-5-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-5-7 .icon + .icon {
  content: "\e63c";
  color: #adadad;
}
.tg .icon-moon-5-7 .icon + .icon:before {
  content: "\e63c" !important;
}
.tg .icon-moon-6-7 > .icon {
  content: "\e63a";
  color: #ff6200;
}
.tg .icon-moon-6-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-6-7 .icon + .icon {
  content: "\e63d";
  color: #adadad;
}
.tg .icon-moon-6-7 .icon + .icon:before {
  content: "\e63d" !important;
}
.tg .icon-moon-7-7 > .icon {
  content: "\e63a";
  color: #ff6200;
}
.tg .icon-moon-7-7 > .icon:before {
  content: "\e63a" !important;
}
.tg .icon-moon-7-7 .icon + .icon {
  display: none;
}
.tg .icon-tv-1-7 > .icon {
  content: "\e609";
  color: #adadad;
}
.tg .icon-tv-1-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-2-7 > .icon {
  content: "\e609";
  color: #adadad;
}
.tg .icon-tv-2-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-2-7 .icon + .icon {
  content: "\e607";
  color: #ff6200;
}
.tg .icon-tv-2-7 .icon + .icon:before {
  content: "\e607" !important;
}
.tg .icon-tv-3-7 > .icon {
  content: "\e609";
  color: #adadad;
}
.tg .icon-tv-3-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-3-7 .icon + .icon {
  content: "\e606";
  color: #ff6200;
}
.tg .icon-tv-3-7 .icon + .icon:before {
  content: "\e606" !important;
}
.tg .icon-tv-4-7 > .icon {
  content: "\e609";
  color: #adadad;
}
.tg .icon-tv-4-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-4-7 .icon + .icon {
  content: "\e608";
  color: #ff6200;
}
.tg .icon-tv-4-7 .icon + .icon:before {
  content: "\e608" !important;
}
.tg .icon-tv-5-7 > .icon {
  content: "\e609";
  color: #ff6200;
}
.tg .icon-tv-5-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-5-7 .icon + .icon {
  content: "\e60a";
  color: #adadad;
}
.tg .icon-tv-5-7 .icon + .icon:before {
  content: "\e60a" !important;
}
.tg .icon-tv-6-7 > .icon {
  content: "\e609";
  color: #ff6200;
}
.tg .icon-tv-6-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-6-7 .icon + .icon {
  content: "\e60b";
  color: #adadad;
}
.tg .icon-tv-6-7 .icon + .icon:before {
  content: "\e60b" !important;
}
.tg .icon-tv-7-7 > .icon {
  content: "\e609";
  color: #ff6200;
}
.tg .icon-tv-7-7 > .icon:before {
  content: "\e609" !important;
}
.tg .icon-tv-7-7 .icon + .icon {
  display: none;
}
.tg .icon-arrow-g-right-btn > .icon {
  content: "\e669";
}
.tg .icon-arrow-g-right-btn > .icon:before {
  content: "\e669" !important;
}
.tg .icon-arrow-g-right-btn .icon + .icon {
  content: "\e993";
  font-size: 75%;
  right: 12.5% !important;
  bottom: auto !important;
  left: auto !important;
  top: 12.5% !important;
}
.tg .icon-arrow-g-right-btn .icon + .icon:before {
  content: "\e993" !important;
}
.tg .icon-arrow-g-left-btn > .icon {
  content: "\e669";
}
.tg .icon-arrow-g-left-btn > .icon:before {
  content: "\e669" !important;
}
.tg .icon-arrow-g-left-btn .icon + .icon {
  content: "\e984";
  font-size: 75%;
  right: auto !important;
  bottom: auto !important;
  left: 12.5% !important;
  top: 12.5% !important;
}
.tg .icon-arrow-g-left-btn .icon + .icon:before {
  content: "\e984" !important;
}
.tg .h-hidden {
  display: none !important;
  visibility: hidden !important;
}
.tg .h-invisible {
  visibility: hidden !important;
}
.tg .h-show {
  display: block !important;
}
.tg .h-text-left {
  text-align: left !important;
}
.tg .h-text-right {
  text-align: right !important;
}
.tg .h-text-center {
  text-align: center !important;
}
.tg .h-text-justify {
  text-align: justify !important;
}
.tg .h-text-b {
  color: #ff6200 !important;
}
.tg a.h-text-b:hover,
.tg a.h-text-b:focus {
  color: #cc4e00 !important;
}
.tg .h-text-f {
  color: #ffffff !important;
}
.tg a.h-text-f:hover,
.tg a.h-text-f:focus {
  color: #e6e6e6 !important;
}
.tg .h-text-i {
  color: #333333 !important;
}
.tg a.h-text-i:hover,
.tg a.h-text-i:focus {
  color: #1a1a1a !important;
}
.tg .h-text-k {
  color: #767676 !important;
}
.tg a.h-text-k:hover,
.tg a.h-text-k:focus {
  color: #5d5d5d !important;
}
.tg .h-text-ellipsis {
  display: block;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tg .h-text-hide {
  border: 0 !important;
  background-color: transparent !important;
  font: 0/0 a !important;
  color: transparent !important;
  text-shadow: none !important;
}
.tg .h-no-wrap {
  white-space: nowrap !important;
}
.tg .h-line-height-0 {
  line-height: 0 !important;
}
.tg .h-text-overflow-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.tg .h-text-word-break {
  word-break: break-all;
}
.tg .h-max-width-100p {
  max-width: 100% !important;
}
.tg .h-link-underline {
  text-decoration: underline !important;
}
.tg .h-link-underline:hover,
.tg .h-link-underline:focus {
  text-decoration: none !important;
}
.tg .focus-ring {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  outline: thin dotted #767676;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.tg .alert {
  position: relative;
  border: 1px solid #adadad;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #f5f5f5;
  font-family: inherit;
  color: #333333;
  margin-bottom: 24px;
  padding: 6px 10px 6px 40px;
}
.tg .alert > p,
.tg .alert > ol,
.tg .alert > ul,
.tg .alert > .btn-bar {
  margin: 0;
}
.tg .alert > p + p,
.tg .alert > ol + p,
.tg .alert > ul + p,
.tg .alert > .btn-bar + p,
.tg .alert > p + ol,
.tg .alert > ol + ol,
.tg .alert > ul + ol,
.tg .alert > .btn-bar + ol,
.tg .alert > p + ul,
.tg .alert > ol + ul,
.tg .alert > ul + ul,
.tg .alert > .btn-bar + ul {
  margin-top: 6px;
}
.tg .alert > p + .btn-bar,
.tg .alert > ol + .btn-bar,
.tg .alert > ul + .btn-bar,
.tg .alert > .btn-bar + .btn-bar {
  margin-top: 18px;
}
.tg .alert strong {
  font-weight: bold;
}
.tg .alert-close {
  margin-top: 6px;
}
.tg .alert > .icon,
.tg .alert > .stacked-icon {
  position: absolute;
  top: 7px;
  left: 10px;
}
.tg .alert-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
  color: inherit;
  margin-bottom: 6px;
}
.tg .alert-badge {
  display: block;
  height: 16px;
  width: 16px;
  overflow: hidden;
  border: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  letter-spacing: -0.6px;
  margin: 0;
  padding: 2px 0 0 0;
}
.tg .alert-block {
  padding-bottom: 12px;
}
.tg .alert-inline {
  display: inline-block;
}
.tg .alert-inverse.alert-danger {
  border-color: #ffebeb;
  background-color: #ff0000;
  color: #ffffff;
}
.tg .alert-inverse.alert-danger .stacked-icon .icon {
  color: #ffffff;
}
.tg .alert-inverse.alert-danger .stacked-icon .icon + .icon {
  color: #ff0000;
}
.tg .alert-inverse.alert-info {
  border-color: #f3f8fc;
  background-color: #60a6da;
  color: #ffffff;
}
.tg .alert-inverse.alert-info .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .alert-inverse.alert-info .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .alert-inverse.alert-info .stacked-icon .icon {
  color: #ffffff;
}
.tg .alert-inverse.alert-info .stacked-icon .icon + .icon {
  color: #60a6da;
}
.tg .alert-inverse.alert-success {
  border-color: #eff7f1;
  background-color: #349651;
  color: #ffffff;
}
.tg .alert-inverse.alert-success .stacked-icon .icon {
  color: #ffffff;
}
.tg .alert-inverse.alert-success .stacked-icon .icon + .icon {
  color: #349651;
}
.tg .alert-inverse.alert-warning {
  border-color: #fff3eb;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .alert-inverse.alert-warning .stacked-icon .icon {
  color: #ffffff;
}
.tg .alert-inverse.alert-warning .stacked-icon .icon + .icon {
  color: #ff6200;
}
.tg .alert-label {
  display: inline;
  margin: 0;
  padding: 1px 6px;
}
.tg .alert-scale {
  -webkit-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.tg .alert-scale.in {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.tg .alert-transparent {
  border-color: transparent !important;
  background-color: transparent !important;
}
.tg .alert-danger {
  border-color: #ff0000;
  background-color: #ffebeb;
  color: #333333;
}
.tg .alert-danger .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .alert-danger .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .alert-danger .stacked-icon .icon {
  content: "\e9bf";
  color: #ff0000;
}
.tg .alert-danger .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .alert-danger .stacked-icon .icon + .icon {
  content: "\e9b6";
  color: #ffffff;
}
.tg .alert-danger .stacked-icon .icon + .icon:before {
  content: "\e9b6" !important;
}
.tg .alert-info {
  border-color: #60a6da;
  background-color: #f3f8fc;
  color: #333333;
}
.tg .alert-info .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .alert-info .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .alert-info .stacked-icon .icon {
  content: "\e9bf";
  color: #60a6da;
}
.tg .alert-info .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .alert-info .stacked-icon .icon + .icon {
  content: "\e9b8";
  color: #ffffff;
}
.tg .alert-info .stacked-icon .icon + .icon:before {
  content: "\e9b8" !important;
}
.tg .alert-success {
  border-color: #349651;
  background-color: #eff7f1;
  color: #333333;
}
.tg .alert-success .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .alert-success .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .alert-success .stacked-icon .icon {
  content: "\e9bf";
  color: #349651;
}
.tg .alert-success .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .alert-success .stacked-icon .icon + .icon {
  content: "\e9bc";
  color: #ffffff;
}
.tg .alert-success .stacked-icon .icon + .icon:before {
  content: "\e9bc" !important;
}
.tg .alert-warning {
  border-color: #ff6200;
  background-color: #fff3eb;
  color: #333333;
}
.tg .alert-warning .stacked-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .alert-warning .stacked-icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .alert-warning .stacked-icon .icon {
  content: "\e9bf";
  color: #ff6200;
}
.tg .alert-warning .stacked-icon .icon:before {
  content: "\e9bf" !important;
}
.tg .alert-warning .stacked-icon .icon + .icon {
  content: "\e9be";
  color: #ffffff;
}
.tg .alert-warning .stacked-icon .icon + .icon:before {
  content: "\e9be" !important;
}
.tg .position.alert > .icon,
.tg .position.alert > .stacked-icon {
  left: 5px;
}
.tg .brandbar {
  position: relative;
  height: 118px;
}
.tg .brandbar > .container {
  position: relative;
}
.tg .brandbar-heading {
  position: relative;
  margin: 10px 10px 14px;
  padding: 10px;
}
@media (max-width: 767px) {
  .tg .brandbar-heading {
    background: none;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-heading {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .tg .brandbar-heading {
    width: 75%;
    margin: 15px 10px;
    padding-top: 15px;
  }
}
@media (min-width: 992px) {
  .tg .brandbar-heading {
    width: 66.666%;
    padding-top: 12px;
  }
}
.tg .brandbar-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tg .brandbar-header {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .brandbar-lead {
  font-size: 21px;
  font-size: 1.3125rem;
  margin: 0 0 10px;
}
@media (min-width: 992px) {
  .tg .brandbar-lead {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tg .brandbar-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
  margin: 0 0 5px;
}
@media (min-width: 992px) {
  .tg .brandbar-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (max-width: 679px) {
  .tg .brandbar-a {
    height: auto;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    background: #ffffff;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-a {
    height: 214px;
  }
}
@media (min-width: 992px) {
  .tg .brandbar-a {
    height: 295px;
  }
}
.tg .brandbar-a .brandbar-image,
.tg .brandbar-a .brandbar-link {
  height: 118px;
}
@media (min-width: 480px) {
  .tg .brandbar-a .brandbar-image,
  .tg .brandbar-a .brandbar-link {
    height: 163px;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-a .brandbar-image,
  .tg .brandbar-a .brandbar-link {
    height: 100%;
  }
}
.tg .brandbar-a .brandbar-heading {
  position: relative;
  margin-top: 128px;
}
@media (max-width: 679px) {
  .tg .brandbar-a .brandbar-heading {
    background: none !important;
  }
}
@media (min-width: 480px) {
  .tg .brandbar-a .brandbar-heading {
    margin-top: 173px;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-a .brandbar-heading {
    margin-top: 15px;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-a .brandbar-title {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .tg .brandbar-a .brandbar-title {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media (min-width: 680px) {
  .tg .brandbar-a .brandbar-lead {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .tg .brandbar-a .brandbar-lead {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tg .brandbar-a .brandbar-title + .btn {
  margin-top: 10px;
}
.tg .brandbar-b {
  height: 118px;
}
@media (min-width: 768px) {
  .tg .brandbar-b {
    height: 163px;
  }
}
@media (min-width: 768px) {
  .tg .brandbar-b .brandbar-title {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .tg .brandbar-b .brandbar-lead {
    margin-bottom: 20px;
  }
}
.tg .comparator {
  position: relative;
}
.tg .comparator:before,
.tg .comparator:after {
  position: absolute;
  top: 0;
  height: 100%;
  content: "";
}
.tg .comparator:before {
  left: 0;
  width: 55%;
}
.tg .comparator:after {
  right: 0;
  width: 50%;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .comparator-divider {
  position: relative;
  z-index: 1;
}
@media (min-width: 680px) {
  .tg .comparator-divider:before {
    position: absolute;
    left: -75px;
    width: 150px;
    height: 100%;
    content: "";
  }
}
@media (min-width: 680px) {
  .tg .comparator-divider:after {
    position: absolute;
    width: 150px;
    height: 100%;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
    content: "";
    -webkit-transform: skewX(-3deg);
    -ms-transform: skewX(-3deg);
    transform: skewX(-3deg);
  }
}
@media (min-width: 768px) {
  .tg .comparator-divider:after {
    -webkit-transform: skewX(-5deg);
    -ms-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
}
@media (min-width: 992px) {
  .tg .comparator-divider:after {
    -webkit-transform: skewX(-7deg);
    -ms-transform: skewX(-7deg);
    transform: skewX(-7deg);
  }
}
@media (min-width: 1200px) {
  .tg .comparator-divider:after {
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
  }
}
.tg .comparator-icon {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  margin-left: -27px;
  margin-top: -27px;
}
@media (min-width: 680px) {
  .tg .comparator-icon {
    top: 50%;
  }
}
.tg .comparator-item {
  position: relative;
  z-index: 2;
  padding-top: 24px;
}
@media (min-width: 680px) {
  .tg .comparator-item-one {
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .tg .comparator-item-one {
    padding-right: 50px;
  }
}
@media (min-width: 680px) {
  .tg .comparator-item-two {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .tg .comparator-item-two {
    padding-left: 50px;
  }
}
.tg .comparator-a:before {
  background: #ffffff;
}
.tg .comparator-a:after {
  background: #ff6200;
}
.tg .comparator-a .comparator-divider:before {
  background: #ffffff;
}
.tg .comparator-a .comparator-divider:after {
  background: #ff6200;
}
.tg .comparator-a .comparator-item-two {
  color: #ffffff;
}
.tg .comparator-b:before {
  background: #ebebeb;
}
.tg .comparator-b:after {
  background: #ff6200;
}
.tg .comparator-b .comparator-divider:before {
  background: #ebebeb;
}
.tg .comparator-b .comparator-divider:after {
  background: #ff6200;
}
.tg .comparator-b .comparator-item-two {
  color: #ffffff;
}
.tg .datepicker {
  position: relative;
}
.tg .datepicker > .icon {
  position: absolute;
  top: 0;
  left: -30px;
  content: "\e906";
  color: #ffffff;
  width: 44px;
  height: 44px;
  font-size: 44px;
  font-size: 2.75rem;
  text-shadow: -2px 2px 4px #d5d5d5;
}
.tg .datepicker > .icon:before {
  content: "\e906" !important;
}
.tg .datepicker > .icon .stacked-icon-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .datepicker-heading {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
  color: #ff6200;
  margin: 0;
  padding: 0 8px 10px 2px;
}
.tg .datepicker-body {
  margin-bottom: 24px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 6px #adadad;
  box-shadow: 0 2px 6px #adadad;
  border: 1px solid #d5d5d5;
  display: inline-block;
  background-color: #ffffff;
  background-clip: padding-box;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .datepicker-body > .panel-heading,
.tg .datepicker-body > .panel-body:first-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .datepicker-body > .panel-footer,
.tg .datepicker-body > .panel-body:last-child {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tg .datepicker-body > .list-group {
  margin-bottom: 0;
}
.tg .datepicker-body > .list-group .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .datepicker-body > .list-group:first-child .list-group-item:first-child {
  border-top-width: 0;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .datepicker-body > .list-group:last-child .list-group-item:last-child {
  border-bottom-width: 0;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .popover-content .datepicker-body {
  margin: 0;
}
.tg .datepicker-body > .table:first-child {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .datepicker-body > .table:last-child {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .datepicker-body > .table,
.tg .datepicker-body > .table-responsive {
  margin-bottom: 0;
}
.tg .datepicker-body > .panel-body + .table,
.tg .datepicker-body > .panel-body + .table-responsive {
  border-top: 1px solid #d5d5d5;
}
.tg .datepicker-body > .table-bordered,
.tg .datepicker-body > .table-responsive > .table-bordered {
  border: none;
}
.tg .datepicker-body > .table-bordered > thead > tr > th:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr > th:first-child,
.tg .datepicker-body > .table-bordered > tbody > tr > th:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.tg .datepicker-body > .table-bordered > tfoot > tr > th:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.tg .datepicker-body > .table-bordered > thead > tr > td:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr > td:first-child,
.tg .datepicker-body > .table-bordered > tbody > tr > td:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.tg .datepicker-body > .table-bordered > tfoot > tr > td:first-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left-width: 0;
}
.tg .datepicker-body > .table-bordered > thead > tr > th:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr > th:last-child,
.tg .datepicker-body > .table-bordered > tbody > tr > th:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.tg .datepicker-body > .table-bordered > tfoot > tr > th:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.tg .datepicker-body > .table-bordered > thead > tr > td:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr > td:last-child,
.tg .datepicker-body > .table-bordered > tbody > tr > td:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.tg .datepicker-body > .table-bordered > tfoot > tr > td:last-child,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right-width: 0;
}
.tg .datepicker-body > .table-bordered > thead > tr:last-child > th,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr:last-child > th,
.tg .datepicker-body > .table-bordered > tbody > tr:last-child > th,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.tg .datepicker-body > .table-bordered > tfoot > tr:last-child > th,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.tg .datepicker-body > .table-bordered > thead > tr:last-child > td,
.tg .datepicker-body > .table-responsive > .table-bordered > thead > tr:last-child > td,
.tg .datepicker-body > .table-bordered > tbody > tr:last-child > td,
.tg .datepicker-body > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.tg .datepicker-body > .table-bordered > tfoot > tr:last-child > td,
.tg .datepicker-body > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom-width: 0;
}
.tg .datepicker-content {
  padding: 12px 20px 0;
  padding: 2px;
}
.tg .datepicker-content:before,
.tg .datepicker-content:after {
  content: " ";
  display: table;
}
.tg .datepicker-content:after {
  clear: both;
}
.tg .datepicker-content:before,
.tg .datepicker-content:after {
  content: " ";
  display: table;
}
.tg .datepicker-content:after {
  clear: both;
}
.tg .panel-heading ~ .datepicker-content {
  padding-top: 24px;
}
.tg .datepicker-footer {
  border-top: 1px solid #d5d5d5;
  padding: 12px 20px;
  padding: 12px 10px;
}
.tg .datepicker-footer:before,
.tg .datepicker-footer:after {
  content: " ";
  display: table;
}
.tg .datepicker-footer:after {
  clear: both;
}
.tg .datepicker-footer:before,
.tg .datepicker-footer:after {
  content: " ";
  display: table;
}
.tg .datepicker-footer:after {
  clear: both;
}
.tg .datepicker-footer .btn-group {
  margin: 0;
}
.tg .datepicker-popup {
  display: none;
  float: left;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  margin-top: 2px;
  padding: 0;
}
.tg .datepicker-popup .datepicker-body {
  -webkit-box-shadow: 0 1px 7px #adadad;
  box-shadow: 0 1px 7px #adadad;
}
.tg .datepicker .table {
  margin: 0;
}
.tg .datepicker .table th,
.tg .datepicker .table td {
  text-align: center;
  vertical-align: middle;
  padding: 0;
}
.tg .datepicker .table th .btn,
.tg .datepicker .table td .btn {
  width: 100%;
  margin: 0;
}
.tg .datepicker .table th .day,
.tg .datepicker .table td .day,
.tg .datepicker .table th .nonDay,
.tg .datepicker .table td .nonDay {
  background: #f5f5f5;
  border: none;
  color: #767676;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.tg .datepicker .table th .btn.day,
.tg .datepicker .table td .btn.day,
.tg .datepicker .table th .btn.nonDay,
.tg .datepicker .table td .btn.nonDay {
  margin-right: 1px;
  margin-bottom: 1px;
}
.tg .datepicker .table th .previousMonth,
.tg .datepicker .table td .previousMonth,
.tg .datepicker .table th .nextMonth,
.tg .datepicker .table td .nextMonth,
.tg .datepicker .table th .day.previousMonth.disabled,
.tg .datepicker .table td .day.previousMonth.disabled,
.tg .datepicker .table th .day.nextMonth.disabled,
.tg .datepicker .table td .day.nextMonth.disabled {
  color: #d5d5d5;
  background: #ffffff;
}
.tg .datepicker .table th .today.selected,
.tg .datepicker .table td .today.selected,
.tg .datepicker .table th .selected,
.tg .datepicker .table td .selected {
  background: #ff6200;
  color: #ffffff;
}
.tg .datepicker .table th .today,
.tg .datepicker .table td .today {
  color: #ff6200;
}
.tg .datepicker .table th .day[disabled],
.tg .datepicker .table td .day[disabled],
.tg .datepicker .table th .day.disabled,
.tg .datepicker .table td .day.disabled,
.tg .datepicker .table th .nonDay[disabled],
.tg .datepicker .table td .nonDay[disabled],
.tg .datepicker .table th .nonDay.disabled,
.tg .datepicker .table td .nonDay.disabled {
  background: #f5f5f5;
  color: #d5d5d5;
  border: none;
}
.tg .datepicker .table th .day:hover,
.tg .datepicker .table td .day:hover {
  color: #333333;
}
.tg .datepicker .table th .day.disabled:hover,
.tg .datepicker .table td .day.disabled:hover {
  color: #d5d5d5;
  cursor: default;
}
.tg .datepicker .table th .day,
.tg .datepicker .table td .day,
.tg .datepicker .table th .weekNumber,
.tg .datepicker .table td .weekNumber,
.tg .datepicker .table th .nonDay,
.tg .datepicker .table td .nonDay {
  height: 40px;
  width: 40px !important;
}
.tg .datepicker .table thead th {
  padding: 4px 1px;
}
.tg .dropdown {
  position: relative;
  display: inline-block;
}
.tg .dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3090;
}
.tg .dropdown-toggle .dropdown-toggle-icon {
  color: inherit;
}
.tg .dropdown-toggle:focus,
.tg .dropdown-toggle:active,
.tg .open .dropdown-toggle {
  outline: none;
}
.tg .dropdown-menu {
  list-style: none;
  display: none;
  float: left;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  border: 1px solid #adadad;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ffffff;
  background-clip: padding-box;
  font-size: 16px;
  font-size: 1rem;
  margin: 2px 0 0 0;
  padding: 0 0 6px 0;
  z-index: 3100;
}
.tg .dropdown-menu-element {
  display: block;
  clear: both;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  margin-bottom: 0;
  padding: 4px 10px;
  cursor: pointer;
}
.tg .dropdown-menu-item {
  margin-top: 0;
}
.tg .dropdown-menu-item > label,
.tg .dropdown-menu-item > a {
  display: block;
  clear: both;
  line-height: 1.5;
  color: #333333;
  text-decoration: none;
  margin-bottom: 0;
  padding: 4px 10px;
  cursor: pointer;
}
.tg .dropdown-menu-item:first-child {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .dropdown-menu-item:first-child > a {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .dropdown-menu-item:last-child {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .dropdown-menu-item:last-child > a {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .dropdown-menu-default-link > a,
.tg .dropdown-menu-default-link > a:hover {
  color: #525199;
  text-decoration: underline;
  padding-bottom: 12px;
}
.tg .dropdown-menu-default-link > a:hover {
  background-color: transparent;
  text-decoration: none;
}
.tg .dropdown-menu .divider {
  height: 1px;
  overflow: hidden;
  background-color: #adadad;
  margin: 11px 0;
}
.tg .dropdown-menu-header {
  display: block;
  background-color: #f5f5f5;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  line-height: 1.5;
  padding: 4px 10px;
}
.tg .float-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.tg .dropdown-menu-right {
  right: 0;
  left: auto;
}
.tg .dropdown-menu-left {
  right: auto;
  left: 0;
}
.tg .dropdown-block,
.tg .dropdown-block.dropdown {
  display: block;
  position: relative;
}
.tg .dropdown-block .dropdown-toggle,
.tg .dropdown-block.dropdown .dropdown-toggle {
  display: block;
  text-align: left;
  white-space: normal;
}
.tg .dropdown-block .dropdown-menu,
.tg .dropdown-block.dropdown .dropdown-menu {
  right: 0;
}
.tg .dropup .dropdown-menu,
.tg .navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}
.tg .dropdown-filled {
  height: 100%;
}
.tg .dropdown-filled .dropdown-toggle {
  height: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tg .dropdown-filled .dropdown-toggle-inner {
  height: inherit;
}
.tg .dropdown-menu-item.active > label,
.tg .dropdown-menu-item.active > a,
.tg .dropdown-menu-item.active .dropdown-menu-element,
.tg .dropdown-menu-item.active > label:hover,
.tg .dropdown-menu-item.active > a:hover,
.tg .dropdown-menu-item.active .dropdown-menu-element:hover,
.tg .dropdown-menu-item.active > label:focus,
.tg .dropdown-menu-item.active > a:focus,
.tg .dropdown-menu-item.active .dropdown-menu-element:focus {
  outline: 0;
}
.tg .dropdown-menu-item.disabled > label,
.tg .dropdown-menu-item.disabled > a,
.tg .dropdown-menu-item.disabled .dropdown-menu-element,
.tg .dropdown-menu-item.disabled > label:hover,
.tg .dropdown-menu-item.disabled > a:hover,
.tg .dropdown-menu-item.disabled .dropdown-menu-element:hover,
.tg .dropdown-menu-item.disabled > label:focus,
.tg .dropdown-menu-item.disabled > a:focus,
.tg .dropdown-menu-item.disabled .dropdown-menu-element:focus {
  color: #adadad !important;
}
.tg .dropdown-menu-item.disabled > label:hover,
.tg .dropdown-menu-item.disabled > a:hover,
.tg .dropdown-menu-item.disabled .dropdown-menu-element:hover,
.tg .dropdown-menu-item.disabled > label:focus,
.tg .dropdown-menu-item.disabled > a:focus,
.tg .dropdown-menu-item.disabled .dropdown-menu-element:focus {
  background-color: transparent !important;
  text-decoration: none !important;
  cursor: not-allowed !important;
}
.tg .open > .dropdown-menu {
  display: block;
}
.tg .open > label,
.tg .open > a,
.tg .open .dropdown-menu-element {
  outline: none;
}
.tg .dropdown-menu-lg {
  min-width: 230px;
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .dropdown-menu-lg .dropdown-menu-item > label,
.tg .dropdown-menu-lg .dropdown-menu-item > a,
.tg .dropdown-menu-lg .dropdown-menu-item > span,
.tg .dropdown-menu-lg .dropdown-menu-item .dropdown-menu-element {
  padding: 12px 20px;
}
.tg .dropdown-menu-default {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
  border-color: #ebebeb;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding-bottom: 0;
}
.tg .dropdown-menu-default .dropdown-menu-item {
  border-top: 1px solid #d5d5d5;
}
.tg .dropdown-menu-default .dropdown-menu-item.active .dropdown-menu-element {
  cursor: auto;
}
.tg .dropdown-menu-default .dropdown-menu-item:first-child {
  border: 0;
}
.tg .dropdown-menu-default .dropdown-menu-item > label:hover,
.tg .dropdown-menu-default .dropdown-menu-item > a:hover,
.tg .dropdown-menu-default .dropdown-menu-item .dropdown-menu-element:hover,
.tg .dropdown-menu-default .dropdown-menu-item > label:focus,
.tg .dropdown-menu-default .dropdown-menu-item > a:focus,
.tg .dropdown-menu-default .dropdown-menu-item .dropdown-menu-element:focus {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .dropdown-menu-default .dropdown-menu-item.active > label,
.tg .dropdown-menu-default .dropdown-menu-item.active > a,
.tg .dropdown-menu-default .dropdown-menu-item.active .dropdown-menu-element,
.tg .dropdown-menu-default .dropdown-menu-item.active > label:hover,
.tg .dropdown-menu-default .dropdown-menu-item.active > a:hover,
.tg .dropdown-menu-default .dropdown-menu-item.active .dropdown-menu-element:hover,
.tg .dropdown-menu-default .dropdown-menu-item.active > label:focus,
.tg .dropdown-menu-default .dropdown-menu-item.active > a:focus,
.tg .dropdown-menu-default .dropdown-menu-item.active .dropdown-menu-element:focus {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .footer-primary {
  background-color: #ebebeb;
  font-size: 0.875rem;
  padding-top: 32px;
  margin-top: 50px;
}
@media (min-width: 680px) {
  .tg .footer-primary {
    padding-bottom: 7px;
  }
}
.tg .footer-primary ul,
.tg .footer-primary li {
  margin-top: 0;
  padding: 0;
  list-style-type: none;
}
.tg .footer-primary.is-docked {
  width: 100%;
}
.tg .footer-links {
  vertical-align: middle;
  padding: 0 0 20px 0;
}
.tg .footer-links li {
  display: inline;
}
@media (min-width: 992px) {
  .tg .footer-links li:first-child a {
    padding-left: 0;
  }
}
.tg .footer-links a {
  display: block;
  color: #333333;
  text-decoration: none;
  padding-right: 13px;
  padding-left: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 679px) {
  .tg .footer-links a {
    margin-top: 2px;
    margin-bottom: 2px;
  }
}
.tg .footer-links a:hover {
  text-decoration: underline;
}
.tg .footer-social {
  color: #767676;
  vertical-align: middle;
  padding: 0;
}
.tg .footer-social .footer-social-links li {
  display: inline-block;
}
@media (max-width: 679px) {
  .tg .footer-social .footer-social-links {
    margin-top: 15px;
  }
}
@media (min-width: 680px) {
  .tg .footer-social .footer-social-links {
    margin-top: 2px;
  }
}
.tg .footer-social a {
  text-decoration: none;
}
@media (max-width: 679px) {
  .tg .footer-primary {
    font-size: 1.0rem;
    text-align: center;
  }
  .tg .footer-social {
    padding-bottom: 30px;
  }
  .tg .footer-social-links li {
    margin-right: 10px;
  }
}
@media (min-width: 680px) and (max-width: 991px) {
  .tg .footer-primary {
    padding-top: 10px;
  }
  .tg .footer-links {
    padding-bottom: 40px;
  }
  .tg .footer-links a {
    display: block;
    float: none;
    line-height: 1.5em;
    margin-left: 0;
  }
  .tg .footer-links a:nth-child(4) {
    margin-top: -5.5em;
  }
  .tg .footer-links a:nth-child(n+4) {
    margin-left: 50%;
  }
  .tg .footer-social-links li {
    margin-right: 5px;
  }
}
@media (min-width: 992px) {
  .tg .footer-social .footer-social-links {
    display: inline-block;
    margin-top: 0;
  }
  .tg .footer-social {
    text-align: right;
  }
  .tg .footer-social span {
    margin: 0 0 -2px;
    display: inline-block;
  }
  .tg .footer-links li {
    width: auto;
  }
  .tg .footer-links a {
    border-right: 1px solid #d5d5d5;
  }
  .tg .footer-links li:last-child a {
    border-right: 0;
  }
  .tg .footer-links {
    text-align: center;
  }
  .tg .footer-social-links li {
    margin-right: 5px;
  }
}
.tg .footer-social a {
  vertical-align: bottom;
}
@media (max-width: 679px) {
  .tg .footer-social a {
    margin: 0 5px 6px 5px;
  }
}
@media (min-width: 680px) {
  .tg .footer-social a {
    margin: 0 1px 6px 1px;
  }
}
.tg .footer-social a:first-child {
  margin-left: 0;
}
.tg .footer-social a:last-child {
  margin-right: 0;
}
@media (min-width: 680px) {
  .tg .footer-social > span {
    margin: 5px 10px 5px 0;
    display: inline-block;
  }
}
.tg .footer-social li {
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  .tg .footer-primary {
    min-width: 960px;
  }
}
@media print {
  .tg footer {
    display: block !important;
  }
  .tg .footer-primary {
    background-color: transparent;
  }
  .tg .footer-primary .container {
    border-top: solid 3px #ff6200;
  }
  .tg .footer-primary .container * {
    display: none;
  }
}
.tg .is-docked {
  position: fixed;
  bottom: 0;
}
.tg .footer-primary.is-docked {
  position: absolute;
}
.tg .flip-counter {
  position: relative;
  font-weight: bold;
}
.tg .flip-counter-segments-clamps {
  position: absolute;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-color: transparent;
  border-width: 0 1px 0 1px;
}
.tg .flip-counter-segments-clamps:before,
.tg .flip-counter-segments-clamps:after {
  display: block;
  position: absolute;
  width: 0.04em;
  height: 20%;
  top: 45%;
  background-color: #767676;
  content: "";
}
.tg .flip-counter-segments-clamps:before {
  left: 4%;
}
.tg .flip-counter-segments-clamps:after {
  right: 4%;
}
.tg .flip-counter-segments-complement {
  float: left;
  font-size: 0.75em;
  line-height: 1.6;
}
.tg .flip-counter-segments-element {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  color: #ffffff;
  -webkit-perspective: 1.6em;
  perspective: 1.6em;
}
.tg .flip-counter-segments-item {
  list-style: none;
  float: left;
  position: relative;
  width: 0.7em;
  height: 1.1em;
  line-height: 0.97;
  margin: 0.08em;
  padding-left: 0;
}
.tg .flip-counter-segments-text-up,
.tg .flip-counter-segments-text-down {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 1;
  text-align: center;
}
.tg .flip-counter-segments-text-up {
  top: 0;
}
.tg .flip-counter-segments-text-up:before,
.tg .flip-counter-segments-text-up:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
}
.tg .flip-counter-segments-text-up:before {
  background-color: rgba(1, 1, 1, 0.1);
}
.tg .flip-counter-segments-text-up:after {
  top: 0;
  border: 1px solid #ff914d;
  border-width: 1px 1px 0 1px;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .flip-counter-segments-text-down {
  bottom: 0;
}
.tg .flip-counter-segments-up,
.tg .flip-counter-segments-down {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #767676;
  background-color: #ff6200;
}
.tg .flip-counter-segments-up:before,
.tg .flip-counter-segments-down:before,
.tg .flip-counter-segments-up:after,
.tg .flip-counter-segments-down:after {
  display: block;
  position: absolute;
  width: 0.04em;
  height: 0.06em;
  background-color: #767676;
  content: "";
}
.tg .flip-counter-segments-up:before,
.tg .flip-counter-segments-down:before {
  left: 4%;
}
.tg .flip-counter-segments-up:after,
.tg .flip-counter-segments-down:after {
  right: 4%;
}
.tg .flip-counter-segments-up {
  top: -1%;
  border-width: 1px 1px 0 1px;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(-10deg);
  transform: rotateX(-10deg);
  outline: 1px solid transparent;
}
.tg .flip-counter-segments-up:before,
.tg .flip-counter-segments-up:after {
  bottom: 0;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .flip-counter-segments-down {
  bottom: -1%;
  border-width: 0 1px 1px 1px;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: rotateX(10deg);
  transform: rotateX(10deg);
  outline: 1px solid transparent;
}
.tg .flip-counter-segments-down:before,
.tg .flip-counter-segments-down:after {
  top: 0;
  -webkit-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.tg .flip-counter-inverse .flip-counter-segments-element {
  color: #ff6200;
}
.tg .flip-counter-inverse .flip-counter-segments-text-up:after {
  border-color: #ffffff;
}
.tg .flip-counter-inverse .flip-counter-segments-up,
.tg .flip-counter-inverse .flip-counter-segments-down {
  border-color: #adadad;
  background-color: #ffffff;
}
.tg .flip-counter-active {
  display: block;
  z-index: 3;
}
.tg .flip-counter-behind {
  display: block;
  z-index: 2;
}
.tg .flip-counter-sm .flip-counter-segments {
  font-size: 32px;
  font-size: 2rem;
}
.tg .flip-counter-md .flip-counter-segments {
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .flip-counter-lg .flip-counter-segments {
  font-size: 70px;
  font-size: 4.375rem;
}
.tg .icon-position {
  display: block;
  position: relative;
}
.tg .icon-position > .icon,
.tg .icon-position > .stacked-icon,
.tg .icon-position > .figure-icon,
.tg .icon-position .icon-position-icon {
  position: absolute;
  top: 3px;
  line-height: 1;
}
.tg .icon-position.icon-middle > .icon,
.tg .icon-position.icon-middle > .stacked-icon,
.tg .icon-position.icon-middle > .figure-icon,
.tg .icon-position.icon-middle .icon-position-icon {
  top: 50%;
}
.tg .icon-after .icon,
.tg .icon-after .stacked-icon,
.tg .icon-after .figure-icon,
.tg .icon-after .icon-position-icon {
  right: 0;
}
.tg .icon-before .icon,
.tg .icon-before .stacked-icon,
.tg .icon-before .figure-icon,
.tg .icon-before .icon-position-icon {
  left: 0;
}
.tg .icon-center.icon-position {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.tg .icon-center.icon-position .icon-center-body {
  display: table-cell;
  width: inherit;
  text-align: center;
  vertical-align: middle;
}
.tg .icon-center.icon-position .icon-center-body > .icon,
.tg .icon-center.icon-position .icon-center-body > .stacked-icon,
.tg .icon-center.icon-position .icon-center-body > .figure-icon,
.tg .icon-center.icon-position .icon-center-body .icon-position-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
}
.tg .icon-center.icon-position .icon-center-body .icon-center-content {
  position: relative;
  z-index: 2;
}
.tg .icon-position-xs {
  min-height: 14px;
}
.tg .icon-position-xs > .icon,
.tg .icon-position-xs > .stacked-icon,
.tg .icon-position-xs > .figure-icon,
.tg .icon-position-xs > .icon-position-icon,
.tg .icon-position-xs > a .icon-position-icon {
  width: 14px;
  height: auto;
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .icon-position-xs.btn > .icon,
.tg .icon-position-xs.btn > .stacked-icon,
.tg .icon-position-xs.btn > .figure-icon,
.tg .icon-position-xs.btn > .icon-position-icon {
  top: 50%;
  margin-top: -7px;
}
.tg .icon-position-xs.icon-position-ratio-3-2 {
  min-height: 9.33333333px;
}
.tg .icon-position-xs.icon-after {
  padding-right: 34px;
}
.tg .icon-position-xs.icon-after.btn {
  padding-right: 34px;
}
.tg .icon-position-xs.icon-after.btn > .icon,
.tg .icon-position-xs.icon-after.btn > .stacked-icon,
.tg .icon-position-xs.icon-after.btn > .figure-icon,
.tg .icon-position-xs.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xs.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xs.icon-middle > .icon,
.tg .icon-position-xs.icon-middle > .stacked-icon,
.tg .icon-position-xs.icon-middle > .figure-icon,
.tg .icon-position-xs.icon-middle .icon-position-icon {
  margin-top: -7px;
}
.tg .icon-position-xs.icon-before {
  padding-left: 34px;
}
.tg .icon-position-xs.icon-before.btn {
  padding-left: 34px;
}
.tg .icon-position-xs.icon-before.btn > .icon,
.tg .icon-position-xs.icon-before.btn > .stacked-icon,
.tg .icon-position-xs.icon-before.btn > .figure-icon,
.tg .icon-position-xs.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xs.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xs.icon-middle > .icon,
.tg .icon-position-xs.icon-middle > .stacked-icon,
.tg .icon-position-xs.icon-middle > .figure-icon,
.tg .icon-position-xs.icon-middle .icon-position-icon {
  margin-top: -7px;
}
.tg .icon-position-xs.icon-center .icon-center-body > .icon,
.tg .icon-position-xs.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xs.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xs.icon-center .icon-center-body .icon-position-icon {
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: -7px;
  margin-left: -7px;
}
.tg .icon-position-sm {
  min-height: 16px;
}
.tg .icon-position-sm > .icon,
.tg .icon-position-sm > .stacked-icon,
.tg .icon-position-sm > .figure-icon,
.tg .icon-position-sm > .icon-position-icon,
.tg .icon-position-sm > a .icon-position-icon {
  width: 16px;
  height: auto;
  font-size: 16px;
  font-size: 1rem;
}
.tg .icon-position-sm.btn > .icon,
.tg .icon-position-sm.btn > .stacked-icon,
.tg .icon-position-sm.btn > .figure-icon,
.tg .icon-position-sm.btn > .icon-position-icon {
  top: 50%;
  margin-top: -8px;
}
.tg .icon-position-sm.icon-position-ratio-3-2 {
  min-height: 10.66666667px;
}
.tg .icon-position-sm.icon-after {
  padding-right: 36px;
}
.tg .icon-position-sm.icon-after.btn {
  padding-right: 36px;
}
.tg .icon-position-sm.icon-after.btn > .icon,
.tg .icon-position-sm.icon-after.btn > .stacked-icon,
.tg .icon-position-sm.icon-after.btn > .figure-icon,
.tg .icon-position-sm.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-sm.icon-middle {
  min-height: inherit;
}
.tg .icon-position-sm.icon-middle > .icon,
.tg .icon-position-sm.icon-middle > .stacked-icon,
.tg .icon-position-sm.icon-middle > .figure-icon,
.tg .icon-position-sm.icon-middle .icon-position-icon {
  margin-top: -8px;
}
.tg .icon-position-sm.icon-before {
  padding-left: 36px;
}
.tg .icon-position-sm.icon-before.btn {
  padding-left: 36px;
}
.tg .icon-position-sm.icon-before.btn > .icon,
.tg .icon-position-sm.icon-before.btn > .stacked-icon,
.tg .icon-position-sm.icon-before.btn > .figure-icon,
.tg .icon-position-sm.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-sm.icon-middle {
  min-height: inherit;
}
.tg .icon-position-sm.icon-middle > .icon,
.tg .icon-position-sm.icon-middle > .stacked-icon,
.tg .icon-position-sm.icon-middle > .figure-icon,
.tg .icon-position-sm.icon-middle .icon-position-icon {
  margin-top: -8px;
}
.tg .icon-position-sm.icon-center .icon-center-body > .icon,
.tg .icon-position-sm.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-sm.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-sm.icon-center .icon-center-body .icon-position-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-size: 1rem;
  margin-top: -8px;
  margin-left: -8px;
}
.tg .icon-position-md {
  min-height: 18px;
}
.tg .icon-position-md > .icon,
.tg .icon-position-md > .stacked-icon,
.tg .icon-position-md > .figure-icon,
.tg .icon-position-md > .icon-position-icon,
.tg .icon-position-md > a .icon-position-icon {
  width: 18px;
  height: auto;
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .icon-position-md.btn > .icon,
.tg .icon-position-md.btn > .stacked-icon,
.tg .icon-position-md.btn > .figure-icon,
.tg .icon-position-md.btn > .icon-position-icon {
  top: 50%;
  margin-top: -9px;
}
.tg .icon-position-md.icon-position-ratio-3-2 {
  min-height: 12px;
}
.tg .icon-position-md.icon-after {
  padding-right: 38px;
}
.tg .icon-position-md.icon-after.btn {
  padding-right: 38px;
}
.tg .icon-position-md.icon-after.btn > .icon,
.tg .icon-position-md.icon-after.btn > .stacked-icon,
.tg .icon-position-md.icon-after.btn > .figure-icon,
.tg .icon-position-md.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-md.icon-middle {
  min-height: inherit;
}
.tg .icon-position-md.icon-middle > .icon,
.tg .icon-position-md.icon-middle > .stacked-icon,
.tg .icon-position-md.icon-middle > .figure-icon,
.tg .icon-position-md.icon-middle .icon-position-icon {
  margin-top: -9px;
}
.tg .icon-position-md.icon-before {
  padding-left: 38px;
}
.tg .icon-position-md.icon-before.btn {
  padding-left: 38px;
}
.tg .icon-position-md.icon-before.btn > .icon,
.tg .icon-position-md.icon-before.btn > .stacked-icon,
.tg .icon-position-md.icon-before.btn > .figure-icon,
.tg .icon-position-md.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-md.icon-middle {
  min-height: inherit;
}
.tg .icon-position-md.icon-middle > .icon,
.tg .icon-position-md.icon-middle > .stacked-icon,
.tg .icon-position-md.icon-middle > .figure-icon,
.tg .icon-position-md.icon-middle .icon-position-icon {
  margin-top: -9px;
}
.tg .icon-position-md.icon-center .icon-center-body > .icon,
.tg .icon-position-md.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-md.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-md.icon-center .icon-center-body .icon-position-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: -9px;
  margin-left: -9px;
}
.tg .icon-position-lg {
  min-height: 22px;
}
.tg .icon-position-lg > .icon,
.tg .icon-position-lg > .stacked-icon,
.tg .icon-position-lg > .figure-icon,
.tg .icon-position-lg > .icon-position-icon,
.tg .icon-position-lg > a .icon-position-icon {
  width: 22px;
  height: auto;
  font-size: 22px;
  font-size: 1.375rem;
}
.tg .icon-position-lg.btn > .icon,
.tg .icon-position-lg.btn > .stacked-icon,
.tg .icon-position-lg.btn > .figure-icon,
.tg .icon-position-lg.btn > .icon-position-icon {
  top: 50%;
  margin-top: -11px;
}
.tg .icon-position-lg.icon-position-ratio-3-2 {
  min-height: 14.66666667px;
}
.tg .icon-position-lg.icon-after {
  padding-right: 42px;
}
.tg .icon-position-lg.icon-after.btn {
  padding-right: 42px;
}
.tg .icon-position-lg.icon-after.btn > .icon,
.tg .icon-position-lg.icon-after.btn > .stacked-icon,
.tg .icon-position-lg.icon-after.btn > .figure-icon,
.tg .icon-position-lg.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-lg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-lg.icon-middle > .icon,
.tg .icon-position-lg.icon-middle > .stacked-icon,
.tg .icon-position-lg.icon-middle > .figure-icon,
.tg .icon-position-lg.icon-middle .icon-position-icon {
  margin-top: -11px;
}
.tg .icon-position-lg.icon-before {
  padding-left: 42px;
}
.tg .icon-position-lg.icon-before.btn {
  padding-left: 42px;
}
.tg .icon-position-lg.icon-before.btn > .icon,
.tg .icon-position-lg.icon-before.btn > .stacked-icon,
.tg .icon-position-lg.icon-before.btn > .figure-icon,
.tg .icon-position-lg.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-lg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-lg.icon-middle > .icon,
.tg .icon-position-lg.icon-middle > .stacked-icon,
.tg .icon-position-lg.icon-middle > .figure-icon,
.tg .icon-position-lg.icon-middle .icon-position-icon {
  margin-top: -11px;
}
.tg .icon-position-lg.icon-center .icon-center-body > .icon,
.tg .icon-position-lg.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-lg.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-lg.icon-center .icon-center-body .icon-position-icon {
  width: 22px;
  height: 22px;
  font-size: 22px;
  font-size: 1.375rem;
  margin-top: -11px;
  margin-left: -11px;
}
.tg .icon-position-xl {
  min-height: 27px;
}
.tg .icon-position-xl > .icon,
.tg .icon-position-xl > .stacked-icon,
.tg .icon-position-xl > .figure-icon,
.tg .icon-position-xl > .icon-position-icon,
.tg .icon-position-xl > a .icon-position-icon {
  width: 27px;
  height: auto;
  font-size: 27px;
  font-size: 1.6875rem;
}
.tg .icon-position-xl.btn > .icon,
.tg .icon-position-xl.btn > .stacked-icon,
.tg .icon-position-xl.btn > .figure-icon,
.tg .icon-position-xl.btn > .icon-position-icon {
  top: 50%;
  margin-top: -13.5px;
}
.tg .icon-position-xl.icon-position-ratio-3-2 {
  min-height: 18px;
}
.tg .icon-position-xl.icon-after {
  padding-right: 47px;
}
.tg .icon-position-xl.icon-after.btn {
  padding-right: 47px;
}
.tg .icon-position-xl.icon-after.btn > .icon,
.tg .icon-position-xl.icon-after.btn > .stacked-icon,
.tg .icon-position-xl.icon-after.btn > .figure-icon,
.tg .icon-position-xl.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xl.icon-middle > .icon,
.tg .icon-position-xl.icon-middle > .stacked-icon,
.tg .icon-position-xl.icon-middle > .figure-icon,
.tg .icon-position-xl.icon-middle .icon-position-icon {
  margin-top: -13.5px;
}
.tg .icon-position-xl.icon-before {
  padding-left: 47px;
}
.tg .icon-position-xl.icon-before.btn {
  padding-left: 47px;
}
.tg .icon-position-xl.icon-before.btn > .icon,
.tg .icon-position-xl.icon-before.btn > .stacked-icon,
.tg .icon-position-xl.icon-before.btn > .figure-icon,
.tg .icon-position-xl.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xl.icon-middle > .icon,
.tg .icon-position-xl.icon-middle > .stacked-icon,
.tg .icon-position-xl.icon-middle > .figure-icon,
.tg .icon-position-xl.icon-middle .icon-position-icon {
  margin-top: -13.5px;
}
.tg .icon-position-xl.icon-center .icon-center-body > .icon,
.tg .icon-position-xl.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xl.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xl.icon-center .icon-center-body .icon-position-icon {
  width: 27px;
  height: 27px;
  font-size: 27px;
  font-size: 1.6875rem;
  margin-top: -13.5px;
  margin-left: -13.5px;
}
.tg .icon-position-xxl {
  min-height: 32px;
}
.tg .icon-position-xxl > .icon,
.tg .icon-position-xxl > .stacked-icon,
.tg .icon-position-xxl > .figure-icon,
.tg .icon-position-xxl > .icon-position-icon,
.tg .icon-position-xxl > a .icon-position-icon {
  width: 32px;
  height: auto;
  font-size: 32px;
  font-size: 2rem;
}
.tg .icon-position-xxl.btn > .icon,
.tg .icon-position-xxl.btn > .stacked-icon,
.tg .icon-position-xxl.btn > .figure-icon,
.tg .icon-position-xxl.btn > .icon-position-icon {
  top: 50%;
  margin-top: -16px;
}
.tg .icon-position-xxl.icon-position-ratio-3-2 {
  min-height: 21.33333333px;
}
.tg .icon-position-xxl.icon-after {
  padding-right: 52px;
}
.tg .icon-position-xxl.icon-after.btn {
  padding-right: 52px;
}
.tg .icon-position-xxl.icon-after.btn > .icon,
.tg .icon-position-xxl.icon-after.btn > .stacked-icon,
.tg .icon-position-xxl.icon-after.btn > .figure-icon,
.tg .icon-position-xxl.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxl.icon-middle > .icon,
.tg .icon-position-xxl.icon-middle > .stacked-icon,
.tg .icon-position-xxl.icon-middle > .figure-icon,
.tg .icon-position-xxl.icon-middle .icon-position-icon {
  margin-top: -16px;
}
.tg .icon-position-xxl.icon-before {
  padding-left: 52px;
}
.tg .icon-position-xxl.icon-before.btn {
  padding-left: 52px;
}
.tg .icon-position-xxl.icon-before.btn > .icon,
.tg .icon-position-xxl.icon-before.btn > .stacked-icon,
.tg .icon-position-xxl.icon-before.btn > .figure-icon,
.tg .icon-position-xxl.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxl.icon-middle > .icon,
.tg .icon-position-xxl.icon-middle > .stacked-icon,
.tg .icon-position-xxl.icon-middle > .figure-icon,
.tg .icon-position-xxl.icon-middle .icon-position-icon {
  margin-top: -16px;
}
.tg .icon-position-xxl.icon-center .icon-center-body > .icon,
.tg .icon-position-xxl.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxl.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxl.icon-center .icon-center-body .icon-position-icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  font-size: 2rem;
  margin-top: -16px;
  margin-left: -16px;
}
.tg .icon-position-xxxl {
  min-height: 37px;
}
.tg .icon-position-xxxl > .icon,
.tg .icon-position-xxxl > .stacked-icon,
.tg .icon-position-xxxl > .figure-icon,
.tg .icon-position-xxxl > .icon-position-icon,
.tg .icon-position-xxxl > a .icon-position-icon {
  width: 37px;
  height: auto;
  font-size: 37px;
  font-size: 2.3125rem;
}
.tg .icon-position-xxxl.btn > .icon,
.tg .icon-position-xxxl.btn > .stacked-icon,
.tg .icon-position-xxxl.btn > .figure-icon,
.tg .icon-position-xxxl.btn > .icon-position-icon {
  top: 50%;
  margin-top: -18.5px;
}
.tg .icon-position-xxxl.icon-position-ratio-3-2 {
  min-height: 24.66666667px;
}
.tg .icon-position-xxxl.icon-after {
  padding-right: 57px;
}
.tg .icon-position-xxxl.icon-after.btn {
  padding-right: 57px;
}
.tg .icon-position-xxxl.icon-after.btn > .icon,
.tg .icon-position-xxxl.icon-after.btn > .stacked-icon,
.tg .icon-position-xxxl.icon-after.btn > .figure-icon,
.tg .icon-position-xxxl.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxxl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxl.icon-middle > .icon,
.tg .icon-position-xxxl.icon-middle > .stacked-icon,
.tg .icon-position-xxxl.icon-middle > .figure-icon,
.tg .icon-position-xxxl.icon-middle .icon-position-icon {
  margin-top: -18.5px;
}
.tg .icon-position-xxxl.icon-before {
  padding-left: 57px;
}
.tg .icon-position-xxxl.icon-before.btn {
  padding-left: 57px;
}
.tg .icon-position-xxxl.icon-before.btn > .icon,
.tg .icon-position-xxxl.icon-before.btn > .stacked-icon,
.tg .icon-position-xxxl.icon-before.btn > .figure-icon,
.tg .icon-position-xxxl.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxxl.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxl.icon-middle > .icon,
.tg .icon-position-xxxl.icon-middle > .stacked-icon,
.tg .icon-position-xxxl.icon-middle > .figure-icon,
.tg .icon-position-xxxl.icon-middle .icon-position-icon {
  margin-top: -18.5px;
}
.tg .icon-position-xxxl.icon-center .icon-center-body > .icon,
.tg .icon-position-xxxl.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxxl.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxxl.icon-center .icon-center-body .icon-position-icon {
  width: 37px;
  height: 37px;
  font-size: 37px;
  font-size: 2.3125rem;
  margin-top: -18.5px;
  margin-left: -18.5px;
}
.tg .icon-position-jb {
  min-height: 44px;
}
.tg .icon-position-jb > .icon,
.tg .icon-position-jb > .stacked-icon,
.tg .icon-position-jb > .figure-icon,
.tg .icon-position-jb > .icon-position-icon,
.tg .icon-position-jb > a .icon-position-icon {
  width: 44px;
  height: auto;
  font-size: 44px;
  font-size: 2.75rem;
}
.tg .icon-position-jb.btn > .icon,
.tg .icon-position-jb.btn > .stacked-icon,
.tg .icon-position-jb.btn > .figure-icon,
.tg .icon-position-jb.btn > .icon-position-icon {
  top: 50%;
  margin-top: -22px;
}
.tg .icon-position-jb.icon-position-ratio-3-2 {
  min-height: 29.33333333px;
}
.tg .icon-position-jb.icon-after {
  padding-right: 64px;
}
.tg .icon-position-jb.icon-after.btn {
  padding-right: 64px;
}
.tg .icon-position-jb.icon-after.btn > .icon,
.tg .icon-position-jb.icon-after.btn > .stacked-icon,
.tg .icon-position-jb.icon-after.btn > .figure-icon,
.tg .icon-position-jb.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-jb.icon-middle {
  min-height: inherit;
}
.tg .icon-position-jb.icon-middle > .icon,
.tg .icon-position-jb.icon-middle > .stacked-icon,
.tg .icon-position-jb.icon-middle > .figure-icon,
.tg .icon-position-jb.icon-middle .icon-position-icon {
  margin-top: -22px;
}
.tg .icon-position-jb.icon-before {
  padding-left: 64px;
}
.tg .icon-position-jb.icon-before.btn {
  padding-left: 64px;
}
.tg .icon-position-jb.icon-before.btn > .icon,
.tg .icon-position-jb.icon-before.btn > .stacked-icon,
.tg .icon-position-jb.icon-before.btn > .figure-icon,
.tg .icon-position-jb.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-jb.icon-middle {
  min-height: inherit;
}
.tg .icon-position-jb.icon-middle > .icon,
.tg .icon-position-jb.icon-middle > .stacked-icon,
.tg .icon-position-jb.icon-middle > .figure-icon,
.tg .icon-position-jb.icon-middle .icon-position-icon {
  margin-top: -22px;
}
.tg .icon-position-jb.icon-center .icon-center-body > .icon,
.tg .icon-position-jb.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-jb.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-jb.icon-center .icon-center-body .icon-position-icon {
  width: 44px;
  height: 44px;
  font-size: 44px;
  font-size: 2.75rem;
  margin-top: -22px;
  margin-left: -22px;
}
.tg .icon-position-xj {
  min-height: 54px;
}
.tg .icon-position-xj > .icon,
.tg .icon-position-xj > .stacked-icon,
.tg .icon-position-xj > .figure-icon,
.tg .icon-position-xj > .icon-position-icon,
.tg .icon-position-xj > a .icon-position-icon {
  width: 54px;
  height: auto;
  font-size: 54px;
  font-size: 3.375rem;
}
.tg .icon-position-xj.btn > .icon,
.tg .icon-position-xj.btn > .stacked-icon,
.tg .icon-position-xj.btn > .figure-icon,
.tg .icon-position-xj.btn > .icon-position-icon {
  top: 50%;
  margin-top: -27px;
}
.tg .icon-position-xj.icon-position-ratio-3-2 {
  min-height: 36px;
}
.tg .icon-position-xj.icon-after {
  padding-right: 74px;
}
.tg .icon-position-xj.icon-after.btn {
  padding-right: 74px;
}
.tg .icon-position-xj.icon-after.btn > .icon,
.tg .icon-position-xj.icon-after.btn > .stacked-icon,
.tg .icon-position-xj.icon-after.btn > .figure-icon,
.tg .icon-position-xj.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xj.icon-middle > .icon,
.tg .icon-position-xj.icon-middle > .stacked-icon,
.tg .icon-position-xj.icon-middle > .figure-icon,
.tg .icon-position-xj.icon-middle .icon-position-icon {
  margin-top: -27px;
}
.tg .icon-position-xj.icon-before {
  padding-left: 74px;
}
.tg .icon-position-xj.icon-before.btn {
  padding-left: 74px;
}
.tg .icon-position-xj.icon-before.btn > .icon,
.tg .icon-position-xj.icon-before.btn > .stacked-icon,
.tg .icon-position-xj.icon-before.btn > .figure-icon,
.tg .icon-position-xj.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xj.icon-middle > .icon,
.tg .icon-position-xj.icon-middle > .stacked-icon,
.tg .icon-position-xj.icon-middle > .figure-icon,
.tg .icon-position-xj.icon-middle .icon-position-icon {
  margin-top: -27px;
}
.tg .icon-position-xj.icon-center .icon-center-body > .icon,
.tg .icon-position-xj.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xj.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xj.icon-center .icon-center-body .icon-position-icon {
  width: 54px;
  height: 54px;
  font-size: 54px;
  font-size: 3.375rem;
  margin-top: -27px;
  margin-left: -27px;
}
.tg .icon-position-xxj {
  min-height: 64px;
}
.tg .icon-position-xxj > .icon,
.tg .icon-position-xxj > .stacked-icon,
.tg .icon-position-xxj > .figure-icon,
.tg .icon-position-xxj > .icon-position-icon,
.tg .icon-position-xxj > a .icon-position-icon {
  width: 64px;
  height: auto;
  font-size: 64px;
  font-size: 4rem;
}
.tg .icon-position-xxj.btn > .icon,
.tg .icon-position-xxj.btn > .stacked-icon,
.tg .icon-position-xxj.btn > .figure-icon,
.tg .icon-position-xxj.btn > .icon-position-icon {
  top: 50%;
  margin-top: -32px;
}
.tg .icon-position-xxj.icon-position-ratio-3-2 {
  min-height: 42.66666667px;
}
.tg .icon-position-xxj.icon-after {
  padding-right: 84px;
}
.tg .icon-position-xxj.icon-after.btn {
  padding-right: 84px;
}
.tg .icon-position-xxj.icon-after.btn > .icon,
.tg .icon-position-xxj.icon-after.btn > .stacked-icon,
.tg .icon-position-xxj.icon-after.btn > .figure-icon,
.tg .icon-position-xxj.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxj.icon-middle > .icon,
.tg .icon-position-xxj.icon-middle > .stacked-icon,
.tg .icon-position-xxj.icon-middle > .figure-icon,
.tg .icon-position-xxj.icon-middle .icon-position-icon {
  margin-top: -32px;
}
.tg .icon-position-xxj.icon-before {
  padding-left: 84px;
}
.tg .icon-position-xxj.icon-before.btn {
  padding-left: 84px;
}
.tg .icon-position-xxj.icon-before.btn > .icon,
.tg .icon-position-xxj.icon-before.btn > .stacked-icon,
.tg .icon-position-xxj.icon-before.btn > .figure-icon,
.tg .icon-position-xxj.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxj.icon-middle > .icon,
.tg .icon-position-xxj.icon-middle > .stacked-icon,
.tg .icon-position-xxj.icon-middle > .figure-icon,
.tg .icon-position-xxj.icon-middle .icon-position-icon {
  margin-top: -32px;
}
.tg .icon-position-xxj.icon-center .icon-center-body > .icon,
.tg .icon-position-xxj.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxj.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxj.icon-center .icon-center-body .icon-position-icon {
  width: 64px;
  height: 64px;
  font-size: 64px;
  font-size: 4rem;
  margin-top: -32px;
  margin-left: -32px;
}
.tg .icon-position-xxxj {
  min-height: 74px;
}
.tg .icon-position-xxxj > .icon,
.tg .icon-position-xxxj > .stacked-icon,
.tg .icon-position-xxxj > .figure-icon,
.tg .icon-position-xxxj > .icon-position-icon,
.tg .icon-position-xxxj > a .icon-position-icon {
  width: 74px;
  height: auto;
  font-size: 74px;
  font-size: 4.625rem;
}
.tg .icon-position-xxxj.btn > .icon,
.tg .icon-position-xxxj.btn > .stacked-icon,
.tg .icon-position-xxxj.btn > .figure-icon,
.tg .icon-position-xxxj.btn > .icon-position-icon {
  top: 50%;
  margin-top: -37px;
}
.tg .icon-position-xxxj.icon-position-ratio-3-2 {
  min-height: 49.33333333px;
}
.tg .icon-position-xxxj.icon-after {
  padding-right: 94px;
}
.tg .icon-position-xxxj.icon-after.btn {
  padding-right: 94px;
}
.tg .icon-position-xxxj.icon-after.btn > .icon,
.tg .icon-position-xxxj.icon-after.btn > .stacked-icon,
.tg .icon-position-xxxj.icon-after.btn > .figure-icon,
.tg .icon-position-xxxj.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxxj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxj.icon-middle > .icon,
.tg .icon-position-xxxj.icon-middle > .stacked-icon,
.tg .icon-position-xxxj.icon-middle > .figure-icon,
.tg .icon-position-xxxj.icon-middle .icon-position-icon {
  margin-top: -37px;
}
.tg .icon-position-xxxj.icon-before {
  padding-left: 94px;
}
.tg .icon-position-xxxj.icon-before.btn {
  padding-left: 94px;
}
.tg .icon-position-xxxj.icon-before.btn > .icon,
.tg .icon-position-xxxj.icon-before.btn > .stacked-icon,
.tg .icon-position-xxxj.icon-before.btn > .figure-icon,
.tg .icon-position-xxxj.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxxj.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxj.icon-middle > .icon,
.tg .icon-position-xxxj.icon-middle > .stacked-icon,
.tg .icon-position-xxxj.icon-middle > .figure-icon,
.tg .icon-position-xxxj.icon-middle .icon-position-icon {
  margin-top: -37px;
}
.tg .icon-position-xxxj.icon-center .icon-center-body > .icon,
.tg .icon-position-xxxj.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxxj.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxxj.icon-center .icon-center-body .icon-position-icon {
  width: 74px;
  height: 74px;
  font-size: 74px;
  font-size: 4.625rem;
  margin-top: -37px;
  margin-left: -37px;
}
.tg .icon-position-mg {
  min-height: 84px;
}
.tg .icon-position-mg > .icon,
.tg .icon-position-mg > .stacked-icon,
.tg .icon-position-mg > .figure-icon,
.tg .icon-position-mg > .icon-position-icon,
.tg .icon-position-mg > a .icon-position-icon {
  width: 84px;
  height: auto;
  font-size: 84px;
  font-size: 5.25rem;
}
.tg .icon-position-mg.btn > .icon,
.tg .icon-position-mg.btn > .stacked-icon,
.tg .icon-position-mg.btn > .figure-icon,
.tg .icon-position-mg.btn > .icon-position-icon {
  top: 50%;
  margin-top: -42px;
}
.tg .icon-position-mg.icon-position-ratio-3-2 {
  min-height: 56px;
}
.tg .icon-position-mg.icon-after {
  padding-right: 104px;
}
.tg .icon-position-mg.icon-after.btn {
  padding-right: 104px;
}
.tg .icon-position-mg.icon-after.btn > .icon,
.tg .icon-position-mg.icon-after.btn > .stacked-icon,
.tg .icon-position-mg.icon-after.btn > .figure-icon,
.tg .icon-position-mg.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-mg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-mg.icon-middle > .icon,
.tg .icon-position-mg.icon-middle > .stacked-icon,
.tg .icon-position-mg.icon-middle > .figure-icon,
.tg .icon-position-mg.icon-middle .icon-position-icon {
  margin-top: -42px;
}
.tg .icon-position-mg.icon-before {
  padding-left: 104px;
}
.tg .icon-position-mg.icon-before.btn {
  padding-left: 104px;
}
.tg .icon-position-mg.icon-before.btn > .icon,
.tg .icon-position-mg.icon-before.btn > .stacked-icon,
.tg .icon-position-mg.icon-before.btn > .figure-icon,
.tg .icon-position-mg.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-mg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-mg.icon-middle > .icon,
.tg .icon-position-mg.icon-middle > .stacked-icon,
.tg .icon-position-mg.icon-middle > .figure-icon,
.tg .icon-position-mg.icon-middle .icon-position-icon {
  margin-top: -42px;
}
.tg .icon-position-mg.icon-center .icon-center-body > .icon,
.tg .icon-position-mg.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-mg.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-mg.icon-center .icon-center-body .icon-position-icon {
  width: 84px;
  height: 84px;
  font-size: 84px;
  font-size: 5.25rem;
  margin-top: -42px;
  margin-left: -42px;
}
.tg .icon-position-xmg {
  min-height: 94px;
}
.tg .icon-position-xmg > .icon,
.tg .icon-position-xmg > .stacked-icon,
.tg .icon-position-xmg > .figure-icon,
.tg .icon-position-xmg > .icon-position-icon,
.tg .icon-position-xmg > a .icon-position-icon {
  width: 94px;
  height: auto;
  font-size: 94px;
  font-size: 5.875rem;
}
.tg .icon-position-xmg.btn > .icon,
.tg .icon-position-xmg.btn > .stacked-icon,
.tg .icon-position-xmg.btn > .figure-icon,
.tg .icon-position-xmg.btn > .icon-position-icon {
  top: 50%;
  margin-top: -47px;
}
.tg .icon-position-xmg.icon-position-ratio-3-2 {
  min-height: 62.66666667px;
}
.tg .icon-position-xmg.icon-after {
  padding-right: 114px;
}
.tg .icon-position-xmg.icon-after.btn {
  padding-right: 114px;
}
.tg .icon-position-xmg.icon-after.btn > .icon,
.tg .icon-position-xmg.icon-after.btn > .stacked-icon,
.tg .icon-position-xmg.icon-after.btn > .figure-icon,
.tg .icon-position-xmg.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xmg.icon-middle > .icon,
.tg .icon-position-xmg.icon-middle > .stacked-icon,
.tg .icon-position-xmg.icon-middle > .figure-icon,
.tg .icon-position-xmg.icon-middle .icon-position-icon {
  margin-top: -47px;
}
.tg .icon-position-xmg.icon-before {
  padding-left: 114px;
}
.tg .icon-position-xmg.icon-before.btn {
  padding-left: 114px;
}
.tg .icon-position-xmg.icon-before.btn > .icon,
.tg .icon-position-xmg.icon-before.btn > .stacked-icon,
.tg .icon-position-xmg.icon-before.btn > .figure-icon,
.tg .icon-position-xmg.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xmg.icon-middle > .icon,
.tg .icon-position-xmg.icon-middle > .stacked-icon,
.tg .icon-position-xmg.icon-middle > .figure-icon,
.tg .icon-position-xmg.icon-middle .icon-position-icon {
  margin-top: -47px;
}
.tg .icon-position-xmg.icon-center .icon-center-body > .icon,
.tg .icon-position-xmg.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xmg.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xmg.icon-center .icon-center-body .icon-position-icon {
  width: 94px;
  height: 94px;
  font-size: 94px;
  font-size: 5.875rem;
  margin-top: -47px;
  margin-left: -47px;
}
.tg .icon-position-xxmg {
  min-height: 104px;
}
.tg .icon-position-xxmg > .icon,
.tg .icon-position-xxmg > .stacked-icon,
.tg .icon-position-xxmg > .figure-icon,
.tg .icon-position-xxmg > .icon-position-icon,
.tg .icon-position-xxmg > a .icon-position-icon {
  width: 104px;
  height: auto;
  font-size: 104px;
  font-size: 6.5rem;
}
.tg .icon-position-xxmg.btn > .icon,
.tg .icon-position-xxmg.btn > .stacked-icon,
.tg .icon-position-xxmg.btn > .figure-icon,
.tg .icon-position-xxmg.btn > .icon-position-icon {
  top: 50%;
  margin-top: -52px;
}
.tg .icon-position-xxmg.icon-position-ratio-3-2 {
  min-height: 69.33333333px;
}
.tg .icon-position-xxmg.icon-after {
  padding-right: 124px;
}
.tg .icon-position-xxmg.icon-after.btn {
  padding-right: 124px;
}
.tg .icon-position-xxmg.icon-after.btn > .icon,
.tg .icon-position-xxmg.icon-after.btn > .stacked-icon,
.tg .icon-position-xxmg.icon-after.btn > .figure-icon,
.tg .icon-position-xxmg.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxmg.icon-middle > .icon,
.tg .icon-position-xxmg.icon-middle > .stacked-icon,
.tg .icon-position-xxmg.icon-middle > .figure-icon,
.tg .icon-position-xxmg.icon-middle .icon-position-icon {
  margin-top: -52px;
}
.tg .icon-position-xxmg.icon-before {
  padding-left: 124px;
}
.tg .icon-position-xxmg.icon-before.btn {
  padding-left: 124px;
}
.tg .icon-position-xxmg.icon-before.btn > .icon,
.tg .icon-position-xxmg.icon-before.btn > .stacked-icon,
.tg .icon-position-xxmg.icon-before.btn > .figure-icon,
.tg .icon-position-xxmg.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxmg.icon-middle > .icon,
.tg .icon-position-xxmg.icon-middle > .stacked-icon,
.tg .icon-position-xxmg.icon-middle > .figure-icon,
.tg .icon-position-xxmg.icon-middle .icon-position-icon {
  margin-top: -52px;
}
.tg .icon-position-xxmg.icon-center .icon-center-body > .icon,
.tg .icon-position-xxmg.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxmg.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxmg.icon-center .icon-center-body .icon-position-icon {
  width: 104px;
  height: 104px;
  font-size: 104px;
  font-size: 6.5rem;
  margin-top: -52px;
  margin-left: -52px;
}
.tg .icon-position-xxxmg {
  min-height: 124px;
}
.tg .icon-position-xxxmg > .icon,
.tg .icon-position-xxxmg > .stacked-icon,
.tg .icon-position-xxxmg > .figure-icon,
.tg .icon-position-xxxmg > .icon-position-icon,
.tg .icon-position-xxxmg > a .icon-position-icon {
  width: 124px;
  height: auto;
  font-size: 124px;
  font-size: 7.75rem;
}
.tg .icon-position-xxxmg.btn > .icon,
.tg .icon-position-xxxmg.btn > .stacked-icon,
.tg .icon-position-xxxmg.btn > .figure-icon,
.tg .icon-position-xxxmg.btn > .icon-position-icon {
  top: 50%;
  margin-top: -62px;
}
.tg .icon-position-xxxmg.icon-position-ratio-3-2 {
  min-height: 82.66666667px;
}
.tg .icon-position-xxxmg.icon-after {
  padding-right: 144px;
}
.tg .icon-position-xxxmg.icon-after.btn {
  padding-right: 144px;
}
.tg .icon-position-xxxmg.icon-after.btn > .icon,
.tg .icon-position-xxxmg.icon-after.btn > .stacked-icon,
.tg .icon-position-xxxmg.icon-after.btn > .figure-icon,
.tg .icon-position-xxxmg.icon-after.btn .icon-position-icon {
  right: 10px;
}
.tg .icon-position-xxxmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxmg.icon-middle > .icon,
.tg .icon-position-xxxmg.icon-middle > .stacked-icon,
.tg .icon-position-xxxmg.icon-middle > .figure-icon,
.tg .icon-position-xxxmg.icon-middle .icon-position-icon {
  margin-top: -62px;
}
.tg .icon-position-xxxmg.icon-before {
  padding-left: 144px;
}
.tg .icon-position-xxxmg.icon-before.btn {
  padding-left: 144px;
}
.tg .icon-position-xxxmg.icon-before.btn > .icon,
.tg .icon-position-xxxmg.icon-before.btn > .stacked-icon,
.tg .icon-position-xxxmg.icon-before.btn > .figure-icon,
.tg .icon-position-xxxmg.icon-before.btn .icon-position-icon {
  left: 10px;
}
.tg .icon-position-xxxmg.icon-middle {
  min-height: inherit;
}
.tg .icon-position-xxxmg.icon-middle > .icon,
.tg .icon-position-xxxmg.icon-middle > .stacked-icon,
.tg .icon-position-xxxmg.icon-middle > .figure-icon,
.tg .icon-position-xxxmg.icon-middle .icon-position-icon {
  margin-top: -62px;
}
.tg .icon-position-xxxmg.icon-center .icon-center-body > .icon,
.tg .icon-position-xxxmg.icon-center .icon-center-body > .stacked-icon,
.tg .icon-position-xxxmg.icon-center .icon-center-body > .figure-icon,
.tg .icon-position-xxxmg.icon-center .icon-center-body .icon-position-icon {
  width: 124px;
  height: 124px;
  font-size: 124px;
  font-size: 7.75rem;
  margin-top: -62px;
  margin-left: -62px;
}
.tg .icon-position.btn {
  display: inline-block;
}
.tg .list-group {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 0;
}
.tg .list-group-header {
  display: block;
  background-color: #f5f5f5;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  line-height: 1.5;
  padding: 4px 10px;
}
.tg .list-group-item {
  position: relative;
  display: block;
  border: 1px solid #d5d5d5;
  background-color: transparent;
  margin-top: 0;
  margin-bottom: -1px;
  padding: 12px 20px;
}
.tg .list-group-item:first-child {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .list-group-item:last-child {
  margin-bottom: 0;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg a.list-group-item {
  color: inherit;
  text-decoration: none;
}
.tg a.list-group-item .list-group-item-heading {
  color: #333333;
}
.tg a.list-group-item:hover,
.tg a.list-group-item:focus {
  background-color: #ebebeb;
}
.tg a.list-group-item.active,
.tg a.list-group-item.active:hover,
.tg a.list-group-item.active:focus {
  z-index: 2;
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg a.list-group-item.active .list-group-item-heading,
.tg a.list-group-item.active:hover .list-group-item-heading,
.tg a.list-group-item.active:focus .list-group-item-heading {
  color: inherit;
}
.tg .list-group-sm .list-group-item {
  padding: 4px 10px;
}
.tg .list-group-item-danger {
  background-color: #ffebeb;
  color: #ff0000;
}
.tg a.list-group-item-danger {
  color: #ff0000;
}
.tg a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
.tg a.list-group-item-danger:hover,
.tg a.list-group-item-danger:focus {
  background-color: #ffd1d1;
  color: #ff0000;
}
.tg a.list-group-item-danger.active,
.tg a.list-group-item-danger.active:hover,
.tg a.list-group-item-danger.active:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .list-group-item-info {
  background-color: #f3f8fc;
  color: #60a6da;
}
.tg a.list-group-item-info {
  color: #60a6da;
}
.tg a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
.tg a.list-group-item-info:hover,
.tg a.list-group-item-info:focus {
  background-color: #dfecf7;
  color: #60a6da;
}
.tg a.list-group-item-info.active,
.tg a.list-group-item-info.active:hover,
.tg a.list-group-item-info.active:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .list-group-item-success {
  background-color: #eff7f1;
  color: #349651;
}
.tg a.list-group-item-success {
  color: #349651;
}
.tg a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
.tg a.list-group-item-success:hover,
.tg a.list-group-item-success:focus {
  background-color: #deefe2;
  color: #349651;
}
.tg a.list-group-item-success.active,
.tg a.list-group-item-success.active:hover,
.tg a.list-group-item-success.active:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .list-group-item-warning {
  background-color: #fff3eb;
  color: #ff6200;
}
.tg a.list-group-item-warning {
  color: #ff6200;
}
.tg a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
.tg a.list-group-item-warning:hover,
.tg a.list-group-item-warning:focus {
  background-color: #ffe4d1;
  color: #ff6200;
}
.tg a.list-group-item-warning.active,
.tg a.list-group-item-warning.active:hover,
.tg a.list-group-item-warning.active:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.tg .list-group-item-text {
  line-height: 1.3;
  margin-bottom: 0;
}
.tg .list-group-item > .badge {
  float: right;
}
.tg .list-group-item > .badge + .badge {
  margin-right: 5px;
}
.tg .list-icons {
  list-style: none;
  padding-left: 0;
}
.tg .list-icons li {
  position: relative;
  padding-left: 30px;
}
.tg .list-icons li:before,
.tg .list-icons li > .stacked-icon,
.tg .list-icons li > .icon {
  position: absolute;
  top: 4px;
  left: 5px;
}
.tg .list-icons li > a {
  color: #333333;
  text-decoration: none;
}
.tg .list-icons li > a:hover,
.tg .list-icons li > a:focus {
  text-decoration: underline;
}
.tg .list-icons li li {
  padding: 0;
}
.tg .list-icons-inverse li {
  color: #ffffff;
}
.tg .list-icons-inverse li:before {
  color: inherit !important;
}
.tg .list-icons-inverse li > a {
  color: inherit;
}
.tg .list-icons .active {
  background-color: #d5d5d5;
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .list-icons.list-horizontal > li {
  margin-top: 0;
  margin-left: 10px;
}
.tg .list-icons.list-horizontal > li:first-child {
  margin-left: 0;
}
.tg .list-icons-sm > li {
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 24px;
}
.tg .list-icons-sm > li:before,
.tg .list-icons-sm > li .stacked-icon,
.tg .list-icons-sm > li .icon {
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  top: 4px;
  left: 3px;
}
.tg .list-icons-sm > li.active {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .table .list-icons-sm > li {
  font-size: inherit;
}
.tg .table .list-icons-sm > li:before,
.tg .table .list-icons-sm > li .stacked-icon,
.tg .table .list-icons-sm > li .icon {
  top: 3px;
}
.tg .list-icons-lg > li {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 34px;
}
.tg .list-icons-lg > li:before,
.tg .list-icons-lg > li .stacked-icon,
.tg .list-icons-lg > li .icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-size: 1.125rem;
  top: 5px;
  left: 7px;
}
.tg .list-icons-lg > li.active {
  font-size: 21px;
  font-size: 1.3125rem;
}
.tg .table .list-icons-lg > li {
  font-size: inherit;
}
.tg .table .list-icons-lg > li:before,
.tg .table .list-icons-lg > li .stacked-icon,
.tg .table .list-icons-lg > li .icon {
  top: 1px;
}
.tg .list-checklist > li:before {
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e92d";
  color: #ff6200;
}
.tg .list-checklist > li:before:before {
  content: "\e92d" !important;
}
.tg .list-linklist > li {
  padding-left: 20px;
}
.tg .list-linklist > li:before {
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e952";
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  left: 0;
  top: 5px;
  color: #ff6200;
}
.tg .list-linklist > li:before:before {
  content: "\e952" !important;
}
.tg .list-linklist > li a {
  color: inherit;
  text-decoration: none;
}
.tg .list-linklist > li a:hover,
.tg .list-linklist > li a:focus {
  text-decoration: underline;
}
.tg .list-linklist.list-icons-sm > li {
  padding-left: 15px;
}
.tg .list-linklist.list-icons-sm > li:before {
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-size: 0.75rem;
}
.tg .media {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  margin-bottom: 24px;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .media:first-child {
  margin-top: 0;
}
.tg .media > a {
  display: block;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  left: 10px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  color: inherit;
  text-decoration: none;
}
.tg .media-dialog {
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .media-body {
  overflow: hidden;
}
.tg .media-body > p,
.tg .media-body > ul {
  margin: 0;
}
.tg .media-body > p + p,
.tg .media-body > ul + p,
.tg .media-body > p + ul,
.tg .media-body > ul + ul {
  margin-top: 12px;
}
.tg .media-title {
  color: #ff6200;
  margin-top: 0;
  margin-bottom: 0;
}
.tg .media-title > a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .tg .media-copy {
    display: none;
  }
}
.tg .media-object img {
  display: block;
  max-width: 100%;
  height: auto;
}
.tg svg.media-object img,
.tg .media-object img[src$=".svg"],
.tg .media-object img[src^="data:image/svg"] {
  width: 100%;
}
.tg .media-a {
  padding: 12px 0;
}
@media (min-width: 768px) {
  .tg .media-a {
    padding: 24px 0;
  }
}
.tg .media-a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  left: 10px;
  height: 0;
  border-bottom: 1px solid #d5d5d5;
}
.tg .media-a .media-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tg .media-a .media-title {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
.tg .media-b {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 0;
  padding-right: 28px;
}
@media (min-width: 768px) {
  .tg .media-b {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .tg .media-b:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    right: 10px;
    left: 10px;
    height: 0;
    border-bottom: 1px solid #d5d5d5;
  }
}
@media (max-width: 767px) {
  .tg .media-b:first-child:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    left: 10px;
    height: 0;
    border-top: 1px solid #d5d5d5;
  }
}
.tg .media-b:hover .list-linklist li span {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .tg .media-b .media-content:after {
    position: absolute;
    top: 50%;
    right: 10px;
    font-family: 'ing-icons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e952";
    width: 18px;
    height: 18px;
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: -9px;
  }
  .tg .media-b .media-content:after:before {
    content: "\e952" !important;
  }
}
@media (min-width: 768px) {
  .tg .media-b .media-heading {
    padding-bottom: 12px;
  }
}
.tg .media-b .media-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tg .media-b .media-title {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .tg .media-b .media-body {
    display: none;
  }
}
.tg .media-c {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .tg .media-c {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 0;
    padding-right: 28px;
  }
}
@media (min-width: 768px) {
  .tg .media-c {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 37px;
  }
}
.tg .media-c:hover .media-body {
  text-decoration: underline;
}
.tg .media-c > .media-container {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.tg .media-c .media-object {
  display: none;
}
@media (min-width: 768px) {
  .tg .media-c .media-object {
    display: table-cell;
    float: none;
    vertical-align: middle;
  }
}
.tg .media-c .media-content {
  display: table-cell;
  float: none;
  vertical-align: middle;
}
.tg .media-c .media-content:after {
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e952";
}
.tg .media-c .media-content:after:before {
  content: "\e952" !important;
}
@media (max-width: 767px) {
  .tg .media-c .media-content:after {
    width: 18px;
    height: 18px;
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: -9px;
  }
}
@media (min-width: 768px) {
  .tg .media-c .media-content:after {
    width: 27px;
    height: 27px;
    font-size: 27px;
    font-size: 1.6875rem;
    margin-top: -14px;
  }
  .tg .media-c .media-content:after .stacked-icon-text {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.2;
  }
}
.tg .media-c .media-title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .tg .media-c .media-title {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 0;
  }
}
.tg .media-list .media-c:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  left: 10px;
  height: 0;
  border-bottom: 1px solid #d5d5d5;
}
.tg .media-list .media-c:first-child:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  left: 10px;
  height: 0;
  border-top: 1px solid #d5d5d5;
}
.tg .media-d {
  border-top: 1px solid #d5d5d5;
  margin: 0;
  padding: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.tg .media-d > a {
  left: 0;
}
.tg .media-d:hover .media-dialog {
  background-color: #f5f5f5;
}
.tg .media-d.active .media-dialog {
  background-color: #ebebeb;
}
.tg .media-d .media-dialog {
  padding: 10px;
}
@media (min-width: 768px) {
  .tg .media-d .media-heading {
    padding-bottom: 6px;
  }
}
.tg .media-d .media-title {
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
}
.tg .media-list .media-d:first-child {
  border: 0;
}
.tg .media-e {
  border-top: 1px solid #d5d5d5;
}
.tg .media-e > .media-object {
  padding-top: 10px;
  padding-left: 20px;
}
.tg .media-list {
  list-style: none;
  margin-bottom: 24px;
  padding-left: 0;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}
.tg .media-list .media {
  margin: 0;
}
.tg .nav {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.tg .nav:before,
.tg .nav:after {
  content: " ";
  display: table;
}
.tg .nav:after {
  clear: both;
}
.tg .nav:before,
.tg .nav:after {
  content: " ";
  display: table;
}
.tg .nav:after {
  clear: both;
}
.tg .nav > li {
  position: relative;
  display: block;
  margin: 0;
}
.tg .nav > li > a {
  position: relative;
  display: block;
  color: #333333;
  line-height: 1.5;
  text-decoration: none;
  padding: 4px 10px;
}
.tg .nav > li > a:hover,
.tg .nav > li > a:focus {
  background-color: #ebebeb;
  text-decoration: none;
}
.tg .nav > li.active > a {
  background-color: #d5d5d5;
  cursor: default;
}
.tg .nav > li.disabled > a {
  color: #d5d5d5;
}
.tg .nav > li.disabled > a:hover,
.tg .nav > li.disabled > a:focus {
  background-color: transparent;
  color: #d5d5d5;
  text-decoration: none;
  cursor: not-allowed;
}
.tg .nav .open > a {
  border-color: #adadad;
  background-color: #ffffff;
}
.tg .nav > li > a > img {
  max-width: none;
}
.tg .nav-list {
  margin-bottom: 0;
}
.tg .nav-list > li {
  position: relative;
  padding: 0;
}
.tg .nav-list > li > a,
.tg .nav-list > li .nav-header {
  margin: 0;
}
.tg .nav-list > li > a {
  padding: 10px;
}
.tg .nav-list > li > a:hover {
  background-color: #d5d5d5;
}
.tg .nav-list > .active > a,
.tg .nav-list > .active > a:hover {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .nav-list > li > a [class^="icon-"],
.tg .nav-list > li > a [class*=" icon-"] {
  margin-right: 20px;
}
.tg .nav-list .divider {
  height: 1px;
  overflow: hidden;
  background-color: #adadad;
  margin: 11px 0;
}
.tg .nav-list-b ul {
  padding: 0 10px;
}
.tg .nav-list-b li {
  display: none;
}
.tg .nav-list-b li.active-parent {
  display: block;
}
.tg .nav-list-b li.active {
  display: block;
}
.tg .nav-list-b .active > a,
.tg .nav-list-b .active > a:hover {
  background-color: transparent;
  color: #ff6200;
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: none;
}
.tg .nav-list-b .active > ul li {
  display: block;
}
.tg .nav-list-b .active > ul li > a,
.tg .nav-list-b .active > ul li > a:hover {
  background-color: transparent;
}
.tg .nav-list-b .active > ul li > ul {
  display: none;
}
.tg .nav-list-b li {
  font-family: INGMe, "Arial", sans-serif;
  white-space: no-wrap;
  padding-top: 4px;
  padding-left: 0;
}
.tg .nav-list-b li.active {
  font-weight: bold;
}
.tg .nav-list-b li a,
.tg .nav-list-b ul li > a {
  display: inline;
  background-color: transparent;
  color: #525199;
  text-decoration: none;
}
.tg .nav-list-b li a:hover,
.tg .nav-list-b ul li > a:hover {
  background-color: transparent;
  text-decoration: underline;
}
.tg .nav-tabs.nav > li {
  float: left;
}
.tg .nav-tabs.nav > li + li {
  margin-top: 0;
  margin-left: 10px;
}
.tg .nav-tabs.nav > li > a {
  border-bottom-width: 0;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .nav-tabs.nav > li > a:hover {
  border-color: #adadad #adadad #d5d5d5 #adadad;
}
.tg .nav-tabs.nav > li.active > a {
  border-bottom-color: transparent;
}
.tg .nav-tabs.nav .open > a,
.tg .nav-tabs.nav .open > a:hover,
.tg .nav-tabs.nav .open > a:focus {
  border-bottom-color: #ffffff;
}
.tg .nav-tabs.nav.nav-justified.nav.nav-pills,
.tg .nav-tabs.nav.nav-justified.nav.nav-tabs {
  width: 100%;
}
.tg .nav-tabs.nav.nav-justified.nav.nav-pills > li,
.tg .nav-tabs.nav.nav-justified.nav.nav-tabs > li {
  display: table-cell;
  width: 1%;
  float: none;
}
.tg .nav-tabs.nav.nav-justified.nav.nav-pills > li + li,
.tg .nav-tabs.nav.nav-justified.nav.nav-tabs > li + li {
  margin-left: 0;
}
.tg .nav-tabs.nav.nav-justified.nav.nav-pills > li > a,
.tg .nav-tabs.nav.nav-justified.nav.nav-tabs > li > a {
  text-align: center;
  margin-bottom: 0;
}
.tg .nav-tabs.nav.nav-justified.nav.nav-pills > .dropdown .dropdown-menu,
.tg .nav-tabs.nav.nav-justified.nav.nav-tabs > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
.tg .nav-tabs.nav.nav-justified.nav {
  border-bottom-width: 0;
  margin-right: 0;
}
.tg .nav-tabs.nav.nav-justified.nav > li > a {
  border-bottom: 1px solid #d5d5d5;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .nav-tabs.nav.nav-justified.nav > .active > a,
.tg .nav-tabs.nav.nav-justified.nav > .active > a:hover,
.tg .nav-tabs.nav.nav-justified.nav > .active > a:focus {
  border: 1px solid #d5d5d5;
  border-bottom-color: #ffffff;
}
.tg .nav-tabs-b.nav {
  border-bottom: 1px solid #d5d5d5;
}
.tg .nav-tabs-b.nav > li {
  margin-bottom: -1px;
}
.tg .nav-tabs-b.nav > li.active > a {
  border-bottom-color: transparent;
  color: #ff6200;
}
.tg .nav-tabs-b.nav > li.active > a:hover,
.tg .nav-tabs-b.nav > li.active > a:focus {
  border-color: #d5d5d5 #d5d5d5 transparent;
}
.tg .nav-tabs-b.nav > li > a {
  border: 1px solid #d5d5d5;
  background-color: #ffffff;
}
.tg .nav-pills.nav > li {
  float: left;
}
.tg .nav-pills.nav > li + li {
  margin-top: 0;
  margin-left: 10px;
}
.tg .nav-pills.nav > li > a {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tg .nav-item-secondary.nav-item > a {
  color: #767676;
  font-weight: normal;
}
.tg .nav-justified.nav.nav-pills,
.tg .nav-justified.nav.nav-tabs {
  width: 100%;
}
.tg .nav-justified.nav.nav-pills > li,
.tg .nav-justified.nav.nav-tabs > li {
  display: table-cell;
  width: 1%;
  float: none;
}
.tg .nav-justified.nav.nav-pills > li + li,
.tg .nav-justified.nav.nav-tabs > li + li {
  margin-left: 0;
}
.tg .nav-justified.nav.nav-pills > li > a,
.tg .nav-justified.nav.nav-tabs > li > a {
  text-align: center;
  margin-bottom: 0;
}
.tg .nav-justified.nav.nav-pills > .dropdown .dropdown-menu,
.tg .nav-justified.nav.nav-tabs > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
.tg .nav-tabs-justified.nav {
  border-bottom-width: 0;
  margin-right: 0;
}
.tg .nav-tabs-justified.nav > li > a {
  border-bottom: 1px solid #d5d5d5;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .nav-tabs-justified.nav > .active > a,
.tg .nav-tabs-justified.nav > .active > a:hover,
.tg .nav-tabs-justified.nav > .active > a:focus {
  border: 1px solid #d5d5d5;
  border-bottom-color: #ffffff;
}
.tg .nav-vertical > li {
  float: none !important;
}
.tg .nav-vertical > li + li {
  margin-left: 0 !important;
}
.tg .nav-primary > li > a {
  border: 1px solid #d5d5d5;
  background-color: #ffffff;
}
.tg .nav-primary > li > a:hover,
.tg .nav-primary > li > a:focus {
  border-color: #adadad;
  background-color: #ffffff;
}
.tg .nav-primary > li.active > a {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
}
.tg .nav-secondary > li > a {
  border: 1px solid #d5d5d5;
  background-color: #ffffff;
}
.tg .nav-secondary > li > a:hover,
.tg .nav-secondary > li > a:focus {
  border-color: #adadad;
  background-color: #ffffff;
}
.tg .nav-secondary > li.active > a {
  border-color: #ff6200;
  background-color: #ffffff;
}
.tg .nav-c > li > a {
  border: 1px solid #d5d5d5;
  background-color: #f5f5f5;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  color: #ff6200;
  padding: 8px 10px;
}
.tg .nav-c > li > a:hover {
  border-color: #adadad;
  background-color: #f5f5f5;
}
.tg .nav-c > li.active > a,
.tg .nav-c > li.active > a:hover,
.tg .nav-c > li.active > a:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
}
.tg .nav-tabs .dropdown-menu {
  margin-top: -1px;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .tab-content {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .tab-content > .tab-pane {
  display: none;
}
.tg .tab-content > .active {
  display: block;
}
.tg .tab-content-a {
  border: 1px solid #d5d5d5;
  padding: 12px 20px 24px;
}
.tg .tab-content-b {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .tab-content-c {
  margin-top: -1px;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
.tg .pager {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.tg .pager:before,
.tg .pager:after {
  content: " ";
  display: table;
}
.tg .pager:after {
  clear: both;
}
.tg .pager:before,
.tg .pager:after {
  content: " ";
  display: table;
}
.tg .pager:after {
  clear: both;
}
.tg .pager-element {
  display: inline-block;
}
.tg .pager-item {
  display: inline;
  font-weight: normal;
}
.tg .pager-wrapper {
  margin: 0;
}
.tg .pager-centered {
  text-align: center;
}
.tg .pager-centered .pager {
  display: inline-block;
}
.tg .pager-right {
  text-align: right;
}
.tg .pager-right .pager {
  display: inline-block;
}
.tg .pager-spread .pager-next .pager-element {
  float: right;
}
.tg .pager-spread .pager-previous .pager-element {
  float: left;
}
.tg .pager-item.disabled .pager-element,
.tg .pager-item.disabled .pager-element:hover,
.tg .pager-item.disabled .pager-element:focus {
  background-color: #ffffff;
  color: #adadad;
  text-decoration: none;
  cursor: not-allowed;
}
.tg .pager-default .pager-element {
  display: inline-block;
  border: 1px solid #adadad;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ffffff;
  text-decoration: none;
  padding: 4px 10px;
}
.tg .pager-default a.pager-element:hover,
.tg .pager-default a.pager-element:focus {
  background-color: #d5d5d5;
  text-decoration: none;
}
.tg .pagination {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.tg .pagination:before,
.tg .pagination:after {
  content: " ";
  display: table;
}
.tg .pagination:after {
  clear: both;
}
.tg .pagination:before,
.tg .pagination:after {
  content: " ";
  display: table;
}
.tg .pagination:after {
  clear: both;
}
.tg .pagination-element,
.tg a.pagination-element {
  position: relative;
  float: left;
  border: 1px solid #adadad;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ffffff;
  line-height: 1.5;
  text-decoration: none;
  color: #333333;
  margin: 0 7px;
  padding: 4px 10px;
}
.tg .pagination-item {
  display: inline;
  margin-top: 0;
}
.tg .pagination-wrapper {
  margin: 0;
}
.tg .pagination-centered {
  line-height: 0;
  text-align: center;
}
.tg .pagination-centered .pagination {
  display: inline-block;
}
.tg .pagination-right {
  line-height: 0;
  text-align: right;
}
.tg .pagination-right .pagination {
  display: inline-block;
}
.tg .pagination-rounded .pagination-element {
  display: block;
  text-align: center;
  padding: 0 !important;
}
.tg .pagination-rounded.pagination-xs .pagination-element {
  width: 24px;
  height: 24px;
  border-width: 1px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 22px;
}
.tg .pagination-rounded.pagination-sm .pagination-element {
  width: 29px;
  height: 29px;
  border-width: 1px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 27px;
}
.tg .pagination-rounded .pagination-element {
  width: 34px;
  height: 34px;
  border-width: 1px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 32px;
}
.tg .pagination-rounded.pagination-lg .pagination-element {
  width: 48px;
  height: 48px;
  border-width: 1px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 46px;
}
.tg .pagination-item.active .pagination-element,
.tg .pagination-item.active .pagination-element:hover,
.tg .pagination-item.active .pagination-element:focus {
  border-color: #adadad;
  background-color: #d5d5d5;
  color: #333333;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-item.disabled .pagination-element,
.tg .pagination-item.disabled .pagination-element:hover,
.tg .pagination-item.disabled .pagination-element:focus {
  border-color: #d5d5d5 !important;
  background-color: #ebebeb !important;
  color: #d5d5d5 !important;
  text-decoration: none !important;
  cursor: not-allowed;
}
.tg a.pagination-element:hover,
.tg a.pagination-element:focus {
  border-color: #adadad;
  background-color: #d5d5d5;
  color: #333333;
  text-decoration: none;
}
.tg .pagination-sm .pagination-element {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 3px 10px;
}
.tg .pagination-lg .pagination-element {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  padding: 12px 20px;
}
.tg .pagination-primary .pagination-item.active .pagination-element,
.tg .pagination-primary .pagination-item.active .pagination-element:hover,
.tg .pagination-primary .pagination-item.active .pagination-element:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-primary a.pagination-element:hover,
.tg .pagination-primary a.pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
}
.tg .pagination-secondary .pagination-element {
  border: 1px solid #d5d5d5;
}
.tg .pagination-secondary .pagination-item.active .pagination-element,
.tg .pagination-secondary .pagination-item.active .pagination-element:hover,
.tg .pagination-secondary .pagination-item.active .pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-secondary a.pagination-element:hover,
.tg .pagination-secondary a.pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
}
.tg .pagination-rounded-a .pagination-element {
  display: block;
  border-color: #ff6200;
  text-align: center;
  color: #ff6200;
  padding: 0 !important;
}
.tg .pagination-rounded-a.pagination-xs .pagination-element {
  width: 24px;
  height: 24px;
  border-width: 3px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 18px;
}
.tg .pagination-rounded-a.pagination-sm .pagination-element {
  width: 29px;
  height: 29px;
  border-width: 3px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 23px;
}
.tg .pagination-rounded-a .pagination-element {
  width: 34px;
  height: 34px;
  border-width: 3px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 28px;
}
.tg .pagination-rounded-a.pagination-lg .pagination-element {
  width: 48px;
  height: 48px;
  border-width: 3px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-clip: border-box;
  line-height: 42px;
}
.tg .pagination-rounded-a .pagination-item.active .pagination-element,
.tg .pagination-rounded-a .pagination-item.active .pagination-element:hover,
.tg .pagination-rounded-a .pagination-item.active .pagination-element:focus {
  border-color: #ff6200;
  background-color: #ff6200;
  color: #ffffff;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-rounded-a a.pagination-element:hover,
.tg .pagination-rounded-a a.pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
}
.tg .pagination-rounded-b .pagination-element {
  display: block;
  border-color: #ff6200;
  background-color: #ff6200;
  text-indent: -9999px;
  padding: 0 !important;
}
.tg .pagination-rounded-b .pagination-item.active .pagination-element,
.tg .pagination-rounded-b .pagination-item.active .pagination-element:hover,
.tg .pagination-rounded-b .pagination-item.active .pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-rounded-b a.pagination-element:hover,
.tg .pagination-rounded-b a.pagination-element:focus {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #ff6200;
  text-decoration: none;
}
.tg .pagination-rounded-c .pagination-element {
  display: block;
  -webkit-box-shadow: 1px 1px #767676;
  box-shadow: 1px 1px #767676;
  border-color: #ffffff;
  background-color: #ffffff;
  text-indent: -9999px;
  padding: 0 !important;
}
.tg .pagination-rounded-c .pagination-item.active .pagination-element,
.tg .pagination-rounded-c .pagination-item.active .pagination-element:hover,
.tg .pagination-rounded-c .pagination-item.active .pagination-element:focus {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  cursor: default;
  z-index: 2;
}
.tg .pagination-rounded-c a.pagination-element:hover,
.tg .pagination-rounded-c a.pagination-element:focus {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
}
.tg .pagination-transparent .pagination-element,
.tg .pagination-transparent a.pagination-element {
  border-color: transparent;
  background-color: transparent;
  color: #ff6200;
  margin: 0;
  padding: 0 8px;
}
.tg .pagination-transparent .pagination-item.active .pagination-element,
.tg .pagination-transparent .pagination-item.active .pagination-element:hover,
.tg .pagination-transparent .pagination-item.active .pagination-element:focus {
  border-color: transparent;
  background-color: transparent;
  color: #ff6200;
  text-decoration: underline;
  cursor: default;
  z-index: 2;
}
.tg .pagination-transparent a.pagination-element:hover,
.tg .pagination-transparent a.pagination-element:focus {
  border-color: transparent;
  background-color: transparent;
  color: #ff6200;
  text-decoration: underline;
}
.tg .pagination-transparent .pagination-item.disabled .pagination-element,
.tg .pagination-transparent .pagination-item.disabled .pagination-element:hover,
.tg .pagination-transparent .pagination-item.disabled .pagination-element:focus {
  border-color: transparent !important;
  background-color: transparent !important;
  color: #d5d5d5 !important;
  text-decoration: none !important;
  cursor: not-allowed;
}
.tg .pagination-wrapper .pager {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.tg .pagination-wrapper .pager .pager-element {
  padding: 4px 10px;
}
.tg .pagination-wrapper .pager + .pagination {
  display: inline-block;
}
.tg .pagination-wrapper.pagination-xs .pager-element {
  padding: 3px 10px;
}
.tg .pagination-wrapper.pagination-sm .pager-element {
  padding: 3px 10px;
}
.tg .pagination-wrapper.pagination-lg .pager-element {
  padding: 12px 20px;
}
.tg .overlay {
  position: absolute;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  outline: 0;
  z-index: 3710;
}
@media (max-width: 479px) {
  .tg .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
  }
}
.tg .overlay-content {
  position: relative;
  max-width: 100%;
}
@media (max-width: 479px) {
  .tg .overlay-content {
    top: 0;
    right: 0;
    left: 0;
    min-height: 100%;
    width: 100%;
  }
}
.tg .overlay-inline-wrapper {
  position: relative;
}
.overlay-absolute-open {
  position: relative;
}
.overlay-fixed-open {
  overflow: hidden;
}
.tg .overlay-centered .overlay-content {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 479px) {
  .tg .overlay-centered .overlay-content {
    margin: 0;
  }
}
.tg .overlay-cover .overlay-content {
  top: 0;
  right: 0;
  left: 0;
  min-height: 100%;
  width: 100%;
}
.tg .overlay-fixed {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 479px) {
  .tg .overlay-fixed {
    padding: 0;
  }
}
.tg .overlay-inline {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1060;
}
@media (max-width: 479px) {
  .tg .overlay-inline {
    z-index: 3710;
  }
}
.tg .overlay-margin > .overlay-content {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 479px) {
  .tg .overlay-margin > .overlay-content {
    margin: 0;
  }
}
.tg .overlay-padding .overlay-content {
  padding: 18px 20px;
}
@media (max-width: 479px) {
  .tg .overlay-padding .overlay-content {
    padding: 42px 20px 24px;
  }
}
@media (max-width: 479px) {
  .tg .overlay-sticky-close {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 54px;
    background: #ffffff;
  }
}
@media (max-width: 479px) {
  .tg .overlay-sticky-close-shadow {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  }
}
.tg .overlay-top {
  top: 18px;
}
@media (max-width: 479px) {
  .tg .overlay-top {
    top: 0;
  }
}
.tg .overlay-top.overlay-fixed {
  top: 0;
}
.tg .overlay-top.overlay-fixed .overlay-content {
  position: absolute;
  top: 18px;
}
@media (max-width: 479px) {
  .tg .overlay-top.overlay-fixed .overlay-content {
    top: 0;
  }
}
.tg .overlay-right {
  right: 20px;
}
@media (max-width: 479px) {
  .tg .overlay-right {
    right: 0;
  }
}
.tg .overlay-right.overlay-fixed {
  right: 0;
}
.tg .overlay-right.overlay-fixed .overlay-content {
  position: absolute;
  right: 20px;
}
@media (max-width: 479px) {
  .tg .overlay-right.overlay-fixed .overlay-content {
    right: 0;
  }
}
.tg .overlay-bottom {
  bottom: 18px;
}
@media (max-width: 479px) {
  .tg .overlay-bottom {
    bottom: 0;
  }
}
.tg .overlay-bottom.overlay-fixed {
  bottom: 0;
}
.tg .overlay-bottom.overlay-fixed .overlay-content {
  position: absolute;
  bottom: 18px;
}
@media (max-width: 479px) {
  .tg .overlay-bottom.overlay-fixed .overlay-content {
    bottom: 0;
  }
}
.tg .overlay-left {
  left: 20px;
}
@media (max-width: 479px) {
  .tg .overlay-left {
    left: 0;
  }
}
.tg .overlay-left.overlay-fixed {
  left: 0;
}
.tg .overlay-left.overlay-fixed .overlay-content {
  position: absolute;
  left: 20px;
}
@media (max-width: 479px) {
  .tg .overlay-left.overlay-fixed .overlay-content {
    left: 0;
  }
}
.tg .overlay-fade {
  -webkit-transition: opacity .2s linear;
  -o-transition: opacity .2s linear;
  transition: opacity .2s linear;
}
.tg .overlay-fade.overlay-in {
  opacity: 1;
}
.tg .overlay-in {
  opacity: 1;
}
.tg .overlay-out {
  opacity: 0;
}
.tg .overlay-slide-up .overlay-content {
  -webkit-transform: translate3d(0, 25%, 0);
  transform: translate3d(0, 25%, 0);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.tg .overlay-slide-up.overlay-in .overlay-content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.tg .overlay-xxs > .overlay-content {
  width: 200px;
}
@media (max-width: 479px) {
  .tg .overlay-xxs > .overlay-content {
    width: 100%;
  }
}
.tg .overlay-xxs.overlay-padding .overlay-content {
  padding: 3px 5px;
}
@media (max-width: 479px) {
  .tg .overlay-xxs.overlay-padding .overlay-content {
    padding: 42px 20px 24px;
  }
}
.tg .overlay-xs > .overlay-content {
  width: 300px;
}
@media (max-width: 479px) {
  .tg .overlay-xs > .overlay-content {
    width: 100%;
  }
}
.tg .overlay-xs.overlay-padding .overlay-content {
  padding: 6px 10px;
}
@media (max-width: 479px) {
  .tg .overlay-xs.overlay-padding .overlay-content {
    padding: 42px 20px 24px;
  }
}
.tg .overlay-sm > .overlay-content {
  width: 460px;
}
@media (max-width: 479px) {
  .tg .overlay-sm > .overlay-content {
    width: 100%;
  }
}
.tg .overlay-md > .overlay-content {
  width: 700px;
}
@media (max-width: 479px) {
  .tg .overlay-md > .overlay-content {
    width: 100%;
  }
}
.tg .overlay-lg > .overlay-content {
  width: 940px;
}
@media (max-width: 479px) {
  .tg .overlay-lg > .overlay-content {
    width: 100%;
  }
}
.tg .overlay-a .overlay-content {
  position: relative;
  min-height: 100%;
  margin-bottom: -117px;
  padding-bottom: 117px;
}
.tg .overlay-a .overlay-footer {
  height: 117px;
}
.tg .overlay-a.overlay-md .overlay-footer {
  width: 700px;
  max-width: 100%;
}
@media (max-width: 479px) {
  .tg .overlay-a.overlay-md .overlay-footer {
    width: 100%;
  }
}
.tg .overlay-a.overlay-centered .overlay-footer {
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 479px) {
  .tg .overlay-a.overlay-centered .overlay-footer {
    margin: 0;
  }
}
@media (max-width: 479px) {
  .tg .overlay .overlay-content:before,
  .tg .overlay .overlay-content:after,
  .tg .overlay .arrow {
    display: none;
  }
}
@media (max-width: 479px) {
  .tg .overlay.backdrop.backdrop-default,
  .tg .overlay.backdrop.backdrop-a,
  .tg .overlay.backdrop.backdrop-b {
    background: #ffffff;
  }
}
.tg .overlay-inline.backdrop,
.tg .overlay-top.backdrop,
.tg .overlay-right.backdrop,
.tg .overlay-bottom.backdrop,
.tg .overlay-left.backdrop {
  position: absolute;
}
.tg .overlay .close-float-right {
  margin-top: 4px;
}
@media (max-width: 479px) {
  .tg .overlay .close-hidden {
    display: inline-block;
  }
}
.tg .overlay.overlay-content > .panel {
  margin-bottom: 0;
  background: #ffffff;
}
@media (max-width: 479px) {
  .tg .overlay.overlay-content > .panel {
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
  }
}
.tg .overlay.overlay-content > .panel .panel-footer .close-float-right {
  margin-top: 6px;
}
@media (max-width: 479px) {
  .tg .overlay.overlay-content .panel-b {
    padding-top: 0;
  }
}
.tg .overlay-close-position .panel {
  padding-top: 48px;
}
.tg .overlay-title-padding .panel-title {
  padding-right: 40px;
}
@media (max-width: 479px) {
  .tg .overlay-title-padding .panel-title {
    padding-right: 0;
  }
}
.tg .popover {
  display: inline-block;
  position: relative;
}
.tg .popover-close {
  float: right;
}
.tg .popover-wrapper {
  position: absolute;
  outline: 0;
  z-index: 3600;
}
.tg .popover-sm .popover-wrapper {
  width: 200px;
}
.tg .popover-md .popover-wrapper {
  width: 300px;
}
.tg .popover-lg .popover-wrapper {
  width: 440px;
}
.tg .popover-default .popover-content {
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #ebebeb;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ffffff;
}
.tg .popover-default .popover-content > .panel {
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.tg .progress {
  position: relative;
  -webkit-box-shadow: inset 0 2px 3px -2px #d5d5d5;
  box-shadow: inset 0 2px 3px -2px #d5d5d5;
  border: 1px solid #d5d5d5;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #f5f5f5;
  padding: 1px;
  height: 40px;
}
.tg .progress .progress-bar {
  height: 36px;
}
.tg .progress-radial {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 0;
}
.tg .progress-radial,
.tg .progress-radial .progress-dial,
.tg .progress-radial .progress-dial-indicator,
.tg .progress-radial .progress-dial-indicator .progress-dial-indicator-inner {
  width: 150px;
  height: 150px;
}
.tg .progress-radial .progress-dial-indicator {
  clip: rect(0, 150px, 150px, 75px);
}
.tg .progress-radial .progress-dial-indicator .progress-dial-indicator-inner {
  clip: rect(0, 75px, 150px, 0);
}
.tg .progress-radial .progress-dial-content,
.tg .progress-radial .progress-dial-value {
  width: 120px;
  height: 120px;
}
.tg .progress-radial .progress-dial-content {
  margin: 15px 0 0 15px;
}
.tg .progress-radial .progress-dial-value {
  font-size: 38px;
}
.tg .progress-radial .progress-dial-value-text {
  font-size: 17px;
}
.tg .progress-radial .progress-dial-value-number {
  font-size: 35px;
}
.tg .progress-bar {
  width: 0;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-color: #ff6200;
}
.tg .progress-dial {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #f5f5f5;
}
.tg .progress-dial-indicator,
.tg .progress-dial-indicator-inner {
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.tg .progress-dial-indicator-inner {
  background-color: #ff6200;
  -moz-transform: scale(1.05);
}
.tg .progress-dial-content {
  display: table-cell;
  position: absolute;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: #ffffff;
  vertical-align: middle;
}
.tg .progress-value {
  left: 0;
  background-color: #ffffff;
  white-space: nowrap;
  color: #ff6200;
  text-align: center;
}
.tg .progress-dial-value {
  display: table-cell;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  color: #ff6200;
  font-weight: bold;
}
.tg .progress-dial-value-text {
  display: block;
  font-weight: bold;
  color: #000000;
}
.tg .progress-dial-value-number {
  font-weight: normal;
}
.tg .progress-animated .progress-bar {
  -webkit-transition: width 1s, background-color 0.5s;
  -o-transition: width 1s, background-color 0.5s;
  transition: width 1s, background-color 0.5s;
}
.tg .progress-animated .progress-dial-indicator,
.tg .progress-animated .progress-dial-indicator-inner {
  -webkit-transition: -webkit-transform 1s, background-color 0.5s;
  -o-transition: transform 1s, background-color 0.5s;
  transition: transform 1s, background-color 0.5s;
}
.tg .progress-animated .progress-value {
  -webkit-transition: left 1s;
  -o-transition: left 1s;
  transition: left 1s;
}
.tg .progress-centered {
  margin: 0 auto;
}
.tg [class^="progress-completed-"] + .progress-value .arrow {
  display: none;
}
.tg .progress-completed-default .progress-bar,
.tg .progress-completed-default .progress-dial-indicator-inner {
  background-color: #ff6200;
}
.tg .progress-completed-default .progress-value,
.tg .progress-completed-default .progress-dial-value {
  color: #ff6200;
}
.tg .progress-completed-a .progress-bar,
.tg .progress-completed-a .progress-dial-indicator-inner {
  background-color: #349651;
}
.tg .progress-completed-a .progress-value,
.tg .progress-completed-a .progress-dial-value {
  color: #349651;
}
.tg .progress-sm {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.tg .progress-sm.progress {
  height: 20px;
}
.tg .progress-sm.progress .progress-bar {
  height: 16px;
}
.tg .progress-sm .progress-bar {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.tg .progress-sm.progress-radial {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.tg .progress-sm.progress-radial,
.tg .progress-sm.progress-radial .progress-dial,
.tg .progress-sm.progress-radial .progress-dial-indicator,
.tg .progress-sm.progress-radial .progress-dial-indicator .progress-dial-indicator-inner {
  width: 100px;
  height: 100px;
}
.tg .progress-sm.progress-radial .progress-dial-indicator {
  clip: rect(0, 100px, 100px, 50px);
}
.tg .progress-sm.progress-radial .progress-dial-indicator .progress-dial-indicator-inner {
  clip: rect(0, 50px, 100px, 0);
}
.tg .progress-sm.progress-radial .progress-dial-content,
.tg .progress-sm.progress-radial .progress-dial-value {
  width: 80px;
  height: 80px;
}
.tg .progress-sm.progress-radial .progress-dial-content {
  margin: 10px 0 0 10px;
}
.tg .progress-sm.progress-radial .progress-dial-value {
  font-size: 25px;
}
.tg .progress-sm.progress-radial .progress-dial-value-text {
  font-size: 11px;
}
.tg .progress-sm.progress-radial .progress-dial-value-number {
  font-size: 22px;
}
.tg .ribbon {
  font-size: 0;
  text-align: center;
}
.tg .ribbon-container {
  display: table-cell;
  height: inherit;
  vertical-align: top;
}
.tg .ribbon-dropdown {
  height: inherit;
}
.tg .ribbon-dropdown-menu {
  text-align: left;
}
.tg .ribbon-dropdown-menu-element {
  position: relative;
  z-index: 2;
}
.tg .ribbon-element {
  height: inherit;
}
.tg .ribbon-element-icon-element {
  display: inline-block;
}
.tg .ribbon-list {
  display: table;
  height: inherit;
  margin-bottom: 0;
  padding: 0;
}
.tg .ribbon-list-item {
  display: table-cell;
  height: inherit;
  vertical-align: top;
  margin: 0;
}
.tg .ribbon-wrapper {
  display: inline-block;
  height: 100%;
}
.tg .ribbon-inverse {
  color: #ffffff !important;
}
.tg .ribbon-inverse .ribbon-element-icon-element {
  color: inherit !important;
}
.tg .ribbon-a {
  color: #ff6200;
}
.tg .ribbon-a:not(.ribbon-sm) .dropdown-menu-item[style*="display: none"] + .dropdown-menu-item {
  border-top: 0;
}
.tg .ribbon-a:not(.ribbon-sm) .dropdown-menu-item[style*="display: none"] + .dropdown-menu-item .dropdown-menu-element {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .ribbon-a .dropdown-menu-item:first-child {
  border-top: 0;
}
.tg .ribbon-a .dropdown-menu-item:first-child .dropdown-menu-element {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .ribbon-a .dropdown-menu-item:last-child .dropdown-menu-element {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .ribbon-a .ribbon-dropdown-menu {
  float: none;
  margin-top: -4px;
}
.tg .ribbon-a .ribbon-dropdown-menu.ribbon-dropdown-menu-arrow {
  position: absolute;
}
.tg .ribbon-a .ribbon-dropdown-menu-arrow.dropdown-menu-right:before,
.tg .ribbon-a .ribbon-dropdown-menu-arrow.dropdown-menu-right:after {
  left: 80%;
}
.tg .ribbon-a .ribbon-element {
  width: 100px;
  max-width: 120px;
  border-width: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tg .ribbon-a .ribbon-element-arrow {
  display: none;
}
.tg .ribbon-a .ribbon-element-icon {
  height: 54px;
  line-height: 54px;
  margin-top: 12px;
}
.tg .ribbon-a .ribbon-element-icon-element {
  width: 44px;
  height: 44px;
  font-size: 44px;
  font-size: 2.75rem;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}
.tg .ribbon-a .ribbon-element-icon-element .stacked-icon-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .ribbon-a .ribbon-element-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  padding-bottom: 16px;
}
.tg .ribbon-a .ribbon-element:hover .ribbon-element-icon-element,
.tg .ribbon-a .ribbon-element:focus .ribbon-element-icon-element {
  -webkit-transform: translate(0%, -10%) scale(1.2);
  -ms-transform: translate(0%, -10%) scale(1.2);
  transform: translate(0%, -10%) scale(1.2);
}
.tg .ribbon-a .ribbon-element.active .ribbon-element-arrow {
  display: block;
  z-index: 1;
}
.tg .ribbon-a .ribbon-element.active:not(.ribbon-element-more dropdown-toggle) {
  cursor: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.tg .ribbon-a .ribbon-element.active:not(.ribbon-element-more dropdown-toggle):hover .ribbon-element-icon-element,
.tg .ribbon-a .ribbon-element.active:not(.ribbon-element-more dropdown-toggle):focus .ribbon-element-icon-element {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.tg .ribbon-a.ribbon-sm .dropdown-menu-item:first-child {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .ribbon-a.ribbon-sm .dropdown-menu-item:first-child .dropdown-menu-element {
  -webkit-box-shadow: inset 0 6px 6px -5px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 6px 6px -5px rgba(0, 0, 0, 0.25);
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .ribbon-a.ribbon-sm .dropdown-menu-item:last-child {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tg .ribbon-a.ribbon-sm .dropdown-menu-item:last-child .dropdown-menu-element {
  -webkit-box-shadow: inset 0 -6px 6px -5px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -6px 6px -5px rgba(0, 0, 0, 0.25);
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tg .ribbon-a.ribbon-sm .ribbon-dropdown {
  display: block;
}
.tg .ribbon-a.ribbon-sm .ribbon-dropdown-menu {
  -webkit-box-shadow: none;
  box-shadow: none;
  position: relative;
  border-width: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-top: 0;
}
.tg .ribbon-a.ribbon-sm .ribbon-dropdown-menu.ribbon-dropdown-menu-arrow:before,
.tg .ribbon-a.ribbon-sm .ribbon-dropdown-menu.ribbon-dropdown-menu-arrow:after {
  display: none;
}
.tg .ribbon-a.ribbon-sm .ribbon-element-icon {
  height: 38px;
  line-height: 38px;
}
.tg .ribbon-a.ribbon-sm .ribbon-element-icon-element {
  width: 32px;
  height: 32px;
  font-size: 32px;
  font-size: 2rem;
}
.tg .ribbon-a.ribbon-sm .ribbon-element-icon-element .stacked-icon-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .ribbon-a.ribbon-sm .ribbon-element-text {
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .ribbon-a.ribbon-lg .ribbon-element {
  width: 120px;
}
.tg .container .ribbon-a.ribbon-sm .ribbon-dropdown-menu {
  margin-right: -10px;
  margin-left: -10px;
}
.tg .slider {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 2020;
}
.tg .slider-benchmarks {
  position: relative;
  display: table;
  width: 100%;
  height: inherit;
  margin: 0;
  table-layout: fixed;
  border-collapse: separate;
  z-index: 1;
  list-style: none;
  padding-left: 0;
}
.tg .slider-benchmarks-item {
  vertical-align: middle;
}
.tg .slider-handle {
  position: relative;
}
.tg .slider-range {
  display: block;
  position: absolute;
  background-color: #ff6200;
  z-index: 1;
}
.tg .slider-segments {
  position: relative;
  display: table;
  width: 100%;
  height: inherit;
  margin: 0;
  table-layout: fixed;
  border-collapse: separate;
  z-index: 1;
  list-style: none;
  padding-left: 0;
}
.tg .slider-segments-item {
  display: table-cell;
  vertical-align: middle;
  margin-top: 0;
}
.tg .slider-slide {
  position: absolute;
  z-index: 2010;
}
.tg .slider-wrapper {
  position: absolute;
  background-color: #333333;
}
.tg .slider-horizontal .slider-benchmarks-content {
  text-align: center;
  margin-right: -100%;
}
.tg .slider-horizontal .slider-benchmarks-content.slider-benchmarks-content-center {
  margin-right: 0;
}
.tg .slider-horizontal .slider-benchmarks-indicator {
  height: 50px;
}
.tg .slider-horizontal .slider-benchmarks-item {
  display: table-cell;
  margin-top: 0;
}
.tg .slider-horizontal .slider-benchmarks-item:first-child {
  width: 0;
}
.tg .slider-horizontal .slider-benchmarks-item:first-child .slider-benchmarks-content {
  width: 400px;
  margin-left: -200px;
}
.tg .slider-horizontal .slider-handle {
  left: -1px;
  height: inherit;
}
.tg .slider-horizontal .slider-handle.slider-handle-min {
  left: 0;
}
.tg .slider-horizontal .slider-range {
  left: 0;
  height: inherit;
}
.tg .slider-horizontal .slider-segments-element {
  height: inherit;
}
.tg .slider-horizontal .slider-segments-item {
  height: inherit;
}
.tg .slider-horizontal .slider-slide {
  width: 0;
  height: inherit;
}
.tg .slider-horizontal .slider-wrapper {
  width: 100%;
}
.tg .slider-vertical {
  height: inherit;
}
.tg .slider-vertical .slider-benchmarks-content {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: -12px;
}
.tg .slider-vertical .slider-benchmarks-element {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.tg .slider-vertical .slider-benchmarks-indicator {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 50px;
  height: 100%;
}
.tg .slider-vertical .slider-benchmarks-item {
  display: table-row;
}
.tg .slider-vertical .slider-benchmarks-item:first-child {
  height: 0;
  font-size: 0;
  line-height: 0;
}
.tg .slider-vertical .slider-benchmarks-item:first-child .slider-benchmarks-indicator {
  height: 0;
}
.tg .slider-vertical .slider-benchmarks-item:first-child .slider-benchmarks-content {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  vertical-align: top;
  margin-top: -12px;
}
.tg .slider-vertical .slider-handle {
  top: -1px;
}
.tg .slider-vertical .slider-handle.slider-handle-max {
  top: 0;
}
.tg .slider-vertical .slider-range {
  bottom: 0;
  width: inherit;
}
.tg .slider-vertical .slider-segments {
  height: 100%;
}
.tg .slider-vertical .slider-segments-item {
  display: table-row;
}
.tg .slider-vertical .slider-segments-element {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.tg .slider-vertical .slider-slide {
  width: 100%;
  height: 0;
}
.tg .slider-vertical .slider-wrapper {
  height: inherit;
}
.tg .slider-default .slider-wrapper {
  z-index: 2;
}
.tg .slider-default.slider-inverse .slider-range {
  background-color: #ffffff;
}
.tg .slider-default.slider-inverse .slider-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}
.tg .slider-default.slider-horizontal {
  min-height: 40px;
}
.tg .slider-default.slider-horizontal .slider-benchmarks {
  top: 3px;
}
.tg .slider-default.slider-horizontal .slider-benchmarks-indicator {
  border-right: 1px solid #adadad;
}
.tg .slider-default.slider-horizontal .slider-handle [class*="btn-rounded"] {
  top: 50%;
  margin-top: -24px;
}
.tg .slider-default.slider-horizontal .slider-handle .btn-rounded.btn-lg.btn,
.tg .slider-default.slider-horizontal .slider-handle .btn-rounded-left.btn-lg.btn {
  margin-left: -24px;
}
.tg .slider-default.slider-horizontal .slider-segments-element {
  border-right: 1px solid transparent;
}
.tg .slider-default.slider-horizontal .slider-segments-item:first-child .slider-segments-element {
  border-left: 1px solid transparent;
}
.tg .slider-default.slider-horizontal .slider-wrapper {
  top: 18px;
  height: 3px;
}
.tg .slider-default.slider-horizontal.slider-inverse .slider-segments-element {
  border-right: 1px solid #adadad;
}
.tg .slider-default.slider-horizontal.slider-inverse .slider-segments-item:first-child .slider-segments-element {
  border-left: 1px solid #adadad;
}
.tg .slider-default.slider-vertical .slider-benchmarks {
  left: 3px;
}
.tg .slider-default.slider-vertical .slider-benchmarks-indicator {
  border-bottom: 1px solid #adadad;
}
.tg .slider-default.slider-vertical .slider-handle [class*="btn-rounded"] {
  left: 50%;
  margin-left: -24px;
}
.tg .slider-default.slider-vertical .slider-handle .btn-rounded.btn-lg.btn,
.tg .slider-default.slider-vertical .slider-handle .btn-rounded-top.btn-lg.btn {
  margin-top: -24px;
}
.tg .slider-default.slider-vertical .slider-segments-element {
  border-bottom: 1px solid transparent;
}
.tg .slider-default.slider-vertical .slider-segments-item:first-child .slider-segments-element {
  border-top: 1px solid transparent;
}
.tg .slider-default.slider-vertical .slider-wrapper {
  left: 18px;
  width: 3px;
}
.tg .slider-default.slider-vertical.slider-inverse .slider-segments-element {
  border-bottom: 1px solid #adadad;
}
.tg .slider-default.slider-vertical.slider-inverse .slider-segments-item:first-child .slider-segments-element {
  border-top: 1px solid #adadad;
}
.tg .steps {
  display: table;
  height: 48px;
  overflow: hidden;
  background-color: #ffffff;
}
.tg .steps-complete {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
}
.tg .steps-complete-element {
  display: table-cell;
  height: inherit;
  line-height: 1.2;
  text-align: center;
  color: #adadad;
  vertical-align: middle;
  padding: 0 10px 0 30px;
}
.tg .steps-complete-icon {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}
.tg .steps-complete-icon .icon {
  width: 27px;
  height: 27px;
  font-size: 27px;
  font-size: 1.6875rem;
  color: #adadad;
}
.tg .steps-complete-icon .icon .stacked-icon-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .steps-complete-icon .icon:before {
  content: "\e92d";
}
.tg .steps-complete-icon .icon:before:before {
  content: "\e92d" !important;
}
.tg .steps-complete-item {
  display: table;
  height: inherit;
  background-color: #ebebeb;
}
.tg .steps-complete-text {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
  padding: 0 5px;
}
.tg .steps-indicator {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
  padding: 0;
}
.tg .steps-indicator .steps-indicator-arrow {
  width: 38px;
  height: 38px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -19px;
  margin-top: -19px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 50% \9;
  right: -38px \9;
  border-top: 30px solid \9;
  border-bottom: 30px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 30px solid #ebebeb \9;
  margin-top: -30px \9;
  border-left: 15px solid #d5d5d5 \9;
  right: -19px \9;
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  right: -36px \9;
}
.tg .steps-indicator .steps-indicator-arrow:before {
  width: 38px;
  height: 38px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .steps-indicator .steps-indicator-arrow:after {
  top: -1px;
  right: 1px;
  width: 38px;
  height: 38px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
}
.tg .steps-indicator .steps-indicator-arrow,
.tg .steps-indicator .steps-indicator-arrow:before,
.tg .steps-indicator .steps-indicator-arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .steps-indicator .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-indicator .steps-indicator-arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .steps-indicator .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-indicator .steps-indicator-arrow,
.tg .steps-indicator .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-indicator .steps-indicator-arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .steps-indicator .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-indicator .steps-indicator-arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .steps-indicator .steps-indicator-arrow:before,
.tg .steps-indicator .steps-indicator-arrow:after {
  border-top: 31px solid transparent \9 !important;
  border-bottom: 31px solid transparent \9 !important;
  margin-top: -31px \9;
}
.tg .steps-indicator .steps-indicator-arrow:before {
  left: -14px \9;
  border-left: 15px solid #ffffff \9;
}
.tg .steps-indicator .steps-indicator-arrow:after {
  left: -15px \9;
  border-left: 15px solid #ebebeb \9;
}
.tg .steps-indicator-element {
  display: block;
  position: relative;
  width: 100%;
  height: inherit;
  background-color: #ebebeb;
  line-height: 1.2;
  text-decoration: none;
  color: #adadad;
  padding-left: 20px;
}
.tg .steps-indicator-item {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
  margin-top: 0;
}
.tg .steps-indicator-list {
  list-style: none;
  padding-left: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: inherit;
  border-collapse: separate;
  margin-bottom: 0;
}
.tg .steps-indicator-text {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
}
.tg .steps-indicator-type {
  display: table-cell;
  height: inherit;
  width: 30px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
}
.tg .steps-arrow .steps-indicator-element {
  padding-left: 24px;
}
.tg .steps-arrow .steps-indicator-item:first-child .steps-indicator-element {
  padding-left: 0;
}
.tg .steps-indicator-item.active .steps-indicator-element {
  background-color: #adadad;
  color: #ffffff;
}
.tg .steps-indicator-item.active .steps-indicator-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .steps-indicator-item.active .steps-indicator-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  border-right-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .steps-complete-item.active {
  background-color: #ffffff;
}
.tg .steps-complete-item.active .steps-complete-icon .icon {
  color: #349651;
}
.tg a.steps-indicator-element:hover,
.tg a.steps-indicator-element:focus {
  background-color: #adadad;
  color: #ffffff;
}
.tg a.steps-indicator-element:hover .steps-indicator-arrow:before,
.tg a.steps-indicator-element:focus .steps-indicator-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg a.steps-indicator-element:hover .steps-indicator-arrow:after,
.tg a.steps-indicator-element:focus .steps-indicator-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  border-right-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg a.steps-indicator-element:focus {
  z-index: 3300;
}
.tg .steps-indicator-item.visited .steps-indicator-element {
  background-color: #ffffff;
  color: #adadad;
}
.tg .steps-indicator-item.visited a.steps-indicator-element:hover,
.tg .steps-indicator-item.visited a.steps-indicator-element:focus {
  background-color: #adadad;
  color: #ffffff;
}
.tg .steps-indicator-item.visited .steps-indicator-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  border-right-color: #ebebeb \9;
  border-left-color: #ebebeb \9;
}
.tg .steps-indicator-item.visited .steps-indicator-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .steps-sm {
  height: 30px;
}
.tg .steps-sm .steps-complete-icon .icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-size: 1.125rem;
}
.tg .steps-sm .steps-indicator-type {
  font-size: 16px;
  font-size: 1rem;
}
.tg .steps-sm .steps-indicator-element {
  padding-left: 10px;
}
.tg .steps-sm .steps-indicator-element .steps-indicator-type {
  width: 1%;
}
.tg .steps-sm .steps-complete-element {
  padding: 0 10px 0 20px;
}
.tg .steps-sm .steps-complete-element .steps-complete-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
}
.tg .steps-sm .steps-indicator-arrow {
  width: 26px;
  height: 26px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -13px;
  margin-top: -13px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 50% \9;
  right: -27px \9;
  border-top: 19px solid \9;
  border-bottom: 19px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 19px solid #ebebeb \9;
  margin-top: -19px \9;
  border-left: 9.5px solid #d5d5d5 \9;
  right: -13.5px \9;
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  right: -26px \9;
}
.tg .steps-sm .steps-indicator-arrow:before {
  width: 26px;
  height: 26px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .steps-sm .steps-indicator-arrow:after {
  top: -1px;
  right: 1px;
  width: 26px;
  height: 26px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
}
.tg .steps-sm .steps-indicator-arrow,
.tg .steps-sm .steps-indicator-arrow:before,
.tg .steps-sm .steps-indicator-arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .steps-sm .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-sm .steps-indicator-arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .steps-sm .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-sm .steps-indicator-arrow,
.tg .steps-sm .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-sm .steps-indicator-arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .steps-sm .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-sm .steps-indicator-arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .steps-sm .steps-indicator-arrow:before,
.tg .steps-sm .steps-indicator-arrow:after {
  border-top: 20px solid transparent \9 !important;
  border-bottom: 20px solid transparent \9 !important;
  margin-top: -20px \9;
}
.tg .steps-sm .steps-indicator-arrow:before {
  left: -8.5px \9;
  border-left: 9.5px solid #ffffff \9;
}
.tg .steps-sm .steps-indicator-arrow:after {
  left: -9.5px \9;
  border-left: 9.5px solid #ebebeb \9;
}
.tg .steps-md .steps-indicator-item.active .steps-indicator-text {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 !important;
}
.tg .steps-md.steps-arrow .steps-indicator-element {
  padding-left: 30px;
}
.tg .steps-lg {
  height: 60px;
}
.tg .steps-lg .steps-complete-icon .icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  font-size: 2rem;
}
.tg .steps-lg .steps-complete-icon .icon .stacked-icon-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .steps-lg .steps-indicator-text {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  margin: 0 !important;
}
.tg .steps-lg .steps-indicator-type {
  font-size: 32px;
  font-size: 2rem;
}
.tg .steps-lg .steps-indicator-element {
  padding-left: 30px;
}
.tg .steps-lg.steps-arrow .steps-indicator-element {
  padding-left: 40px;
}
.tg .steps-lg .steps-complete-element {
  padding: 0 10px 0 40px;
}
.tg .steps-lg .steps-indicator-arrow {
  width: 48px;
  height: 48px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -24px;
  margin-top: -24px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 50% \9;
  right: -42px \9;
  border-top: 34px solid \9;
  border-bottom: 34px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 34px solid #ebebeb \9;
  margin-top: -34px \9;
  border-left: 17px solid #d5d5d5 \9;
  right: -21px \9;
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  right: -46px \9;
}
.tg .steps-lg .steps-indicator-arrow:before {
  width: 48px;
  height: 48px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .steps-lg .steps-indicator-arrow:after {
  top: -1px;
  right: 1px;
  width: 48px;
  height: 48px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
}
.tg .steps-lg .steps-indicator-arrow,
.tg .steps-lg .steps-indicator-arrow:before,
.tg .steps-lg .steps-indicator-arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .steps-lg .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-lg .steps-indicator-arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .steps-lg .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-lg .steps-indicator-arrow,
.tg .steps-lg .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-lg .steps-indicator-arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .steps-lg .steps-indicator-arrow _:-ms-fullscreen,
.tg .steps-lg .steps-indicator-arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .steps-lg .steps-indicator-arrow:before,
.tg .steps-lg .steps-indicator-arrow:after {
  border-top: 35px solid transparent \9 !important;
  border-bottom: 35px solid transparent \9 !important;
  margin-top: -35px \9;
}
.tg .steps-lg .steps-indicator-arrow:before {
  left: -16px \9;
  border-left: 17px solid #ffffff \9;
}
.tg .steps-lg .steps-indicator-arrow:after {
  left: -17px \9;
  border-left: 17px solid #ebebeb \9;
}
.tg .steps-a {
  border-bottom: 1px solid #d5d5d5;
}
.tg .steps-a .steps-indicator-item.active .steps-indicator-element {
  background-color: #ff6200;
}
.tg .steps-a .steps-indicator-item.active .steps-indicator-arrow:before {
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .steps-a .steps-indicator-item.active .steps-indicator-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  border-right-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .steps-a a.steps-indicator-element:hover,
.tg .steps-a a.steps-indicator-element:focus {
  background-color: #ff6200;
}
.tg .steps-a a.steps-indicator-element:hover .steps-indicator-arrow:after,
.tg .steps-a a.steps-indicator-element:focus .steps-indicator-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  border-right-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .steps-a .steps-indicator-item.visited .steps-indicator-element {
  color: #ff6200;
}
.tg .steps-a .steps-indicator-item.visited a.steps-indicator-element:hover,
.tg .steps-a .steps-indicator-item.visited a.steps-indicator-element:focus {
  background-color: #ff6200;
}
.tg .arrow {
  width: 0;
  height: 0;
  z-index: 1020;
}
.tg .arrow,
.tg .arrow:before,
.tg .arrow:after {
  position: absolute;
}
.tg .arrow:before,
.tg .arrow:after {
  content: '';
  display: block;
}
.tg .arrow.arrow-up {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-right {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-down {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-left {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-up {
  left: 50% \9;
  top: -28px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-up,
.tg .arrow.arrow-up:before,
.tg .arrow.arrow-up:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-up {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-up,
.tg .arrow.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-up:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-up:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-right {
  top: 50% \9;
  right: -28px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-right,
.tg .arrow.arrow-right:before,
.tg .arrow.arrow-right:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-right {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-right,
.tg .arrow.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-right:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-right:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-down {
  left: 50% \9;
  bottom: -28px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-down,
.tg .arrow.arrow-down:before,
.tg .arrow.arrow-down:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-down {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-down,
.tg .arrow.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-down:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-down:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-left {
  top: 50% \9;
  left: -28px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-left,
.tg .arrow.arrow-left:before,
.tg .arrow.arrow-left:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-left {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-left,
.tg .arrow.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-left:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-left:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-container {
  position: relative;
}
.tg .arrow.arrow-up-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -15px;
  margin-left: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-right-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -15px;
  margin-top: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-down-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -15px;
  margin-left: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-left-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -15px;
  margin-top: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-up-inset {
  left: 50% \9;
  bottom: -1px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-up-inset,
.tg .arrow.arrow-up-inset:before,
.tg .arrow.arrow-up-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-up-inset {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-up-inset,
.tg .arrow.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-up-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-up-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-right-inset {
  top: 50% \9;
  left: -1px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-right-inset,
.tg .arrow.arrow-right-inset:before,
.tg .arrow.arrow-right-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-right-inset {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-right-inset,
.tg .arrow.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-right-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-right-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-down-inset {
  left: 50% \9;
  top: -1px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-down-inset,
.tg .arrow.arrow-down-inset:before,
.tg .arrow.arrow-down-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-down-inset {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-down-inset,
.tg .arrow.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-down-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-down-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-left-inset {
  top: 50% \9;
  right: -1px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-left-inset,
.tg .arrow.arrow-left-inset:before,
.tg .arrow.arrow-left-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-left-inset {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-left-inset,
.tg .arrow.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-left-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-left-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-border.arrow-up {
  position: relative;
}
.tg .arrow-border.arrow-up:before {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  content: '';
  left: 10%;
  top: -8px;
  margin-left: -8px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-border.arrow-up:after {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  content: '';
  left: 10%;
  top: -7px;
  margin-left: -7px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-border.arrow-right {
  position: relative;
}
.tg .arrow-border.arrow-right:before {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  content: '';
  top: 10%;
  right: -8px;
  margin-top: -8px;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-border.arrow-right:after {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  content: '';
  top: 10%;
  right: -7px;
  margin-top: -7px;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-border.arrow-down {
  position: relative;
}
.tg .arrow-border.arrow-down:before {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  content: '';
  left: 10%;
  bottom: -8px;
  margin-left: -8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-border.arrow-down:after {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  content: '';
  left: 10%;
  bottom: -7px;
  margin-left: -7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-border.arrow-left {
  position: relative;
}
.tg .arrow-border.arrow-left:before {
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  content: '';
  top: 10%;
  left: -8px;
  margin-top: -8px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-border.arrow-left:after {
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  content: '';
  top: 10%;
  left: -7px;
  margin-top: -7px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-border.arrow-up {
  position: relative \9;
}
.tg .arrow-border.arrow-up:before {
  display: block \9;
  position: absolute \9;
  left: 10% \9;
  top: -12px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-left: 12px solid transparent \9 !important;
  border-right: 12px solid transparent \9 !important;
  border-bottom: 12px solid #d5d5d5 \9;
  margin-left: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-up _:-ms-fullscreen,
.tg .arrow-border.arrow-up:before {
  -ms-transform: rotate(225deg) !important;
  transform: rotate(225deg) !important;
}
.tg .arrow-border.arrow-up:after {
  display: block \9;
  position: absolute \9;
  left: 10% \9;
  top: -11px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-left: 12px solid transparent \9 !important;
  border-right: 12px solid transparent \9 !important;
  border-bottom: 12px solid #ffffff \9;
  margin-left: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-up _:-ms-fullscreen,
.tg .arrow-border.arrow-up:after {
  -ms-transform: rotate(225deg) !important;
  transform: rotate(225deg) !important;
}
.tg .arrow-border.arrow-right {
  position: relative \9;
}
.tg .arrow-border.arrow-right:before {
  display: block \9;
  position: absolute \9;
  top: 10% \9;
  right: -12px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-top: 12px solid transparent \9 !important;
  border-bottom: 12px solid transparent \9 !important;
  border-left: 12px solid #d5d5d5 \9;
  margin-top: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-right _:-ms-fullscreen,
.tg .arrow-border.arrow-right:before {
  -ms-transform: rotate(315deg) !important;
  transform: rotate(315deg) !important;
}
.tg .arrow-border.arrow-right:after {
  display: block \9;
  position: absolute \9;
  top: 10% \9;
  right: -11px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-top: 12px solid transparent \9 !important;
  border-bottom: 12px solid transparent \9 !important;
  border-left: 12px solid #ffffff \9;
  margin-top: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-right _:-ms-fullscreen,
.tg .arrow-border.arrow-right:after {
  -ms-transform: rotate(315deg) !important;
  transform: rotate(315deg) !important;
}
.tg .arrow-border.arrow-down {
  position: relative \9;
}
.tg .arrow-border.arrow-down:before {
  display: block \9;
  position: absolute \9;
  left: 10% \9;
  bottom: -12px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-left: 12px solid transparent \9 !important;
  border-right: 12px solid transparent \9 !important;
  border-top: 12px solid #d5d5d5 \9;
  margin-left: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-down _:-ms-fullscreen,
.tg .arrow-border.arrow-down:before {
  -ms-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
}
.tg .arrow-border.arrow-down:after {
  display: block \9;
  position: absolute \9;
  left: 10% \9;
  bottom: -11px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-left: 12px solid transparent \9 !important;
  border-right: 12px solid transparent \9 !important;
  border-top: 12px solid #ffffff \9;
  margin-left: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-down _:-ms-fullscreen,
.tg .arrow-border.arrow-down:after {
  -ms-transform: rotate(45deg) !important;
  transform: rotate(45deg) !important;
}
.tg .arrow-border.arrow-left {
  position: relative \9;
}
.tg .arrow-border.arrow-left:before {
  display: block \9;
  position: absolute \9;
  top: 10% \9;
  left: -12px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-top: 12px solid transparent \9 !important;
  border-bottom: 12px solid transparent \9 !important;
  border-right: 12px solid #d5d5d5 \9;
  margin-top: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-left _:-ms-fullscreen,
.tg .arrow-border.arrow-left:before {
  -ms-transform: rotate(135deg) !important;
  transform: rotate(135deg) !important;
}
.tg .arrow-border.arrow-left:after {
  display: block \9;
  position: absolute \9;
  top: 10% \9;
  left: -11px \9;
  width: 0 \9;
  height: 0 \9;
  z-index: 1 \9;
  border-top: 12px solid transparent \9 !important;
  border-bottom: 12px solid transparent \9 !important;
  border-right: 12px solid #ffffff \9;
  margin-top: -12px \9;
  -webkit-transform: rotate(0deg) \9 !important;
  -ms-transform: rotate(0deg) \9 !important;
  transform: rotate(0deg) \9 !important;
}
.tg .arrow-border.arrow-left _:-ms-fullscreen,
.tg .arrow-border.arrow-left:after {
  -ms-transform: rotate(135deg) !important;
  transform: rotate(135deg) !important;
}
.tg .arrow.arrow-bordered.arrow-up {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-bordered.arrow-up:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-right {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-bordered.arrow-right:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-down {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-bordered.arrow-down:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-left {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-bordered.arrow-left:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-up-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -15px;
  margin-left: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-bordered.arrow-up-inset:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-right-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -15px;
  margin-top: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-bordered.arrow-right-inset:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-down-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -15px;
  margin-left: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-bordered.arrow-down-inset:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-left-inset {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -15px;
  margin-top: -15px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-bordered.arrow-left-inset:before {
  top: -1px;
  right: 1px;
  bottom: 1px;
  left: -1px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-bordered.arrow-up {
  left: 50% \9;
  top: -28px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-up,
.tg .arrow.arrow-bordered.arrow-up:before,
.tg .arrow.arrow-bordered.arrow-up:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-bordered.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up,
.tg .arrow.arrow-bordered.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-up _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-up:before {
  bottom: -21px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #ffffff \9;
  margin-left: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-right {
  top: 50% \9;
  right: -28px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-right,
.tg .arrow.arrow-bordered.arrow-right:before,
.tg .arrow.arrow-bordered.arrow-right:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-bordered.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right,
.tg .arrow.arrow-bordered.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-right _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-right:before {
  left: -21px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #ffffff \9;
  margin-top: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-down {
  left: 50% \9;
  bottom: -28px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-down,
.tg .arrow.arrow-bordered.arrow-down:before,
.tg .arrow.arrow-bordered.arrow-down:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-bordered.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down,
.tg .arrow.arrow-bordered.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-down _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-down:before {
  top: -21px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #ffffff \9;
  margin-left: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-left {
  top: 50% \9;
  left: -28px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-left,
.tg .arrow.arrow-bordered.arrow-left:before,
.tg .arrow.arrow-bordered.arrow-left:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-bordered.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left,
.tg .arrow.arrow-bordered.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-left _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-left:before {
  right: -21px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #ffffff \9;
  margin-top: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-up-inset {
  left: 50% \9;
  bottom: -1px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-up-inset,
.tg .arrow.arrow-bordered.arrow-up-inset:before,
.tg .arrow.arrow-bordered.arrow-up-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up-inset {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-bordered.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up-inset,
.tg .arrow.arrow-bordered.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-up-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-up-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-up-inset:before {
  bottom: -21px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #ffffff \9;
  margin-left: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-right-inset {
  top: 50% \9;
  left: -1px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-right-inset,
.tg .arrow.arrow-bordered.arrow-right-inset:before,
.tg .arrow.arrow-bordered.arrow-right-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right-inset {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-bordered.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right-inset,
.tg .arrow.arrow-bordered.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-right-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-right-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-right-inset:before {
  left: -21px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #ffffff \9;
  margin-top: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-down-inset {
  left: 50% \9;
  top: -1px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-down-inset,
.tg .arrow.arrow-bordered.arrow-down-inset:before,
.tg .arrow.arrow-bordered.arrow-down-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down-inset {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-bordered.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down-inset,
.tg .arrow.arrow-bordered.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-down-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-down-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-down-inset:before {
  top: -21px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #ffffff \9;
  margin-left: -19px \9;
}
.tg .arrow.arrow-bordered.arrow-left-inset {
  top: 50% \9;
  right: -1px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
}
.tg .arrow.arrow-bordered.arrow-left-inset,
.tg .arrow.arrow-bordered.arrow-left-inset:before,
.tg .arrow.arrow-bordered.arrow-left-inset:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-bordered.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left-inset {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-bordered.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left-inset,
.tg .arrow.arrow-bordered.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left-inset:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-bordered.arrow-left-inset _:-ms-fullscreen,
.tg .arrow.arrow-bordered.arrow-left-inset:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-bordered.arrow-left-inset:before {
  right: -21px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #ffffff \9;
  margin-top: -19px \9;
}
.tg .arrow.arrow-h-10 {
  left: 10% !important;
}
.tg .arrow.arrow-h-20 {
  left: 20% !important;
}
.tg .arrow.arrow-h-30 {
  left: 30% !important;
}
.tg .arrow.arrow-h-40 {
  left: 40% !important;
}
.tg .arrow.arrow-h-60 {
  left: 60% !important;
}
.tg .arrow.arrow-h-70 {
  left: 70% !important;
}
.tg .arrow.arrow-h-80 {
  left: 80% !important;
}
.tg .arrow.arrow-h-90 {
  left: 90% !important;
}
.tg .arrow.arrow-v-10 {
  top: 10% !important;
}
.tg .arrow.arrow-v-20 {
  top: 20% !important;
}
.tg .arrow.arrow-v-30 {
  top: 30% !important;
}
.tg .arrow.arrow-v-40 {
  top: 40% !important;
}
.tg .arrow.arrow-v-60 {
  top: 60% !important;
}
.tg .arrow.arrow-v-70 {
  top: 70% !important;
}
.tg .arrow.arrow-v-80 {
  top: 80% !important;
}
.tg .arrow.arrow-v-90 {
  top: 90% !important;
}
.tg .arrow-sm > .arrow {
  height: 16px;
  width: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tg .arrow-sm > .arrow.arrow-up {
  top: -8px;
  margin-left: -8px;
}
.tg .arrow-sm > .arrow.arrow-right {
  right: -8px;
  margin-top: -8px;
}
.tg .arrow-sm > .arrow.arrow-down {
  bottom: -8px;
  margin-left: -8px;
}
.tg .arrow-sm > .arrow.arrow-left {
  left: -8px;
  margin-top: -8px;
}
.tg .arrow-sm > .arrow.arrow-up-inset {
  bottom: -9px;
  margin-left: -8px;
}
.tg .arrow-sm > .arrow.arrow-right-inset {
  left: -9px;
  margin-top: -8px;
}
.tg .arrow-sm > .arrow.arrow-down-inset {
  top: -9px;
  margin-left: -8px;
}
.tg .arrow-sm > .arrow.arrow-left-inset {
  right: -9px;
  margin-top: -8px;
}
.tg .arrow-sm > .arrow.arrow-bordered {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tg .arrow-sm > .arrow.arrow-bordered:before {
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow-md > .arrow {
  height: 22px;
  width: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tg .arrow-md > .arrow.arrow-up {
  top: -11px;
  margin-left: -11px;
}
.tg .arrow-md > .arrow.arrow-right {
  right: -11px;
  margin-top: -11px;
}
.tg .arrow-md > .arrow.arrow-down {
  bottom: -11px;
  margin-left: -11px;
}
.tg .arrow-md > .arrow.arrow-left {
  left: -11px;
  margin-top: -11px;
}
.tg .arrow-md > .arrow.arrow-up-inset {
  bottom: -12px;
  margin-left: -11px;
}
.tg .arrow-md > .arrow.arrow-right-inset {
  left: -12px;
  margin-top: -11px;
}
.tg .arrow-md > .arrow.arrow-down-inset {
  top: -12px;
  margin-left: -11px;
}
.tg .arrow-md > .arrow.arrow-left-inset {
  right: -12px;
  margin-top: -11px;
}
.tg .arrow-md > .arrow.arrow-bordered {
  width: 22px;
  height: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.tg .arrow-md > .arrow.arrow-bordered:before {
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow-xl > .arrow {
  height: 36px;
  width: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tg .arrow-xl > .arrow.arrow-up {
  top: -18px;
  margin-left: -18px;
}
.tg .arrow-xl > .arrow.arrow-right {
  right: -18px;
  margin-top: -18px;
}
.tg .arrow-xl > .arrow.arrow-down {
  bottom: -18px;
  margin-left: -18px;
}
.tg .arrow-xl > .arrow.arrow-left {
  left: -18px;
  margin-top: -18px;
}
.tg .arrow-xl > .arrow.arrow-up-inset {
  bottom: -19px;
  margin-left: -18px;
}
.tg .arrow-xl > .arrow.arrow-right-inset {
  left: -19px;
  margin-top: -18px;
}
.tg .arrow-xl > .arrow.arrow-down-inset {
  top: -19px;
  margin-left: -18px;
}
.tg .arrow-xl > .arrow.arrow-left-inset {
  right: -19px;
  margin-top: -18px;
}
.tg .arrow-xl > .arrow.arrow-bordered {
  width: 36px;
  height: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tg .arrow-xl > .arrow.arrow-bordered:before {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tg .arrow-sm > .arrow {
  border-top-width: 12px \9;
  border-right-width: 12px \9;
  border-bottom-width: 12px \9;
  border-left-width: 12px \9;
}
.tg .arrow-sm > .arrow _:-ms-fullscreen,
.tg .arrow-sm > .arrow {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-sm > .arrow.arrow-up {
  top: -16px \9;
  margin-left: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-right {
  right: -16px \9;
  margin-top: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-down {
  bottom: -16px \9;
  margin-left: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-left {
  left: -16px \9;
  margin-top: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-up-inset {
  bottom: -1px \9;
  margin-left: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-right-inset {
  left: -1px \9;
  margin-top: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-down-inset {
  top: -1px \9;
  margin-left: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-left-inset {
  right: -1px \9;
  margin-top: -12px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered {
  border-top-width: 12px \9;
  border-right-width: 12px \9;
  border-bottom-width: 12px \9;
  border-left-width: 12px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-sm > .arrow.arrow-bordered,
.tg .arrow-sm > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-sm > .arrow.arrow-bordered:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-sm > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-sm > .arrow.arrow-bordered:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-sm > .arrow.arrow-bordered.arrow-up:before,
.tg .arrow-sm > .arrow.arrow-bordered.arrow-up-inset:before {
  bottom: -13px \9;
  margin-left: -11px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered.arrow-right:before,
.tg .arrow-sm > .arrow.arrow-bordered.arrow-right-inset:before {
  left: -13px \9;
  margin-top: -11px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered.arrow-down:before,
.tg .arrow-sm > .arrow.arrow-bordered.arrow-down-inset:before {
  top: -13px \9;
  margin-left: -11px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered.arrow-left:before,
.tg .arrow-sm > .arrow.arrow-bordered.arrow-left-inset:before {
  right: -13px \9;
  margin-top: -11px \9;
}
.tg .arrow-sm > .arrow.arrow-bordered:before {
  border-top-width: 12px \9;
  border-right-width: 12px \9;
  border-bottom-width: 12px \9;
  border-left-width: 12px \9;
}
.tg .arrow-md > .arrow {
  border-top-width: 16px \9;
  border-right-width: 16px \9;
  border-bottom-width: 16px \9;
  border-left-width: 16px \9;
}
.tg .arrow-md > .arrow _:-ms-fullscreen,
.tg .arrow-md > .arrow {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-md > .arrow.arrow-up {
  top: -22px \9;
  margin-left: -16px \9;
}
.tg .arrow-md > .arrow.arrow-right {
  right: -22px \9;
  margin-top: -16px \9;
}
.tg .arrow-md > .arrow.arrow-down {
  bottom: -22px \9;
  margin-left: -16px \9;
}
.tg .arrow-md > .arrow.arrow-left {
  left: -22px \9;
  margin-top: -16px \9;
}
.tg .arrow-md > .arrow.arrow-up-inset {
  bottom: -1px \9;
  margin-left: -16px \9;
}
.tg .arrow-md > .arrow.arrow-right-inset {
  left: -1px \9;
  margin-top: -16px \9;
}
.tg .arrow-md > .arrow.arrow-down-inset {
  top: -1px \9;
  margin-left: -16px \9;
}
.tg .arrow-md > .arrow.arrow-left-inset {
  right: -1px \9;
  margin-top: -16px \9;
}
.tg .arrow-md > .arrow.arrow-bordered {
  border-top-width: 16px \9;
  border-right-width: 16px \9;
  border-bottom-width: 16px \9;
  border-left-width: 16px \9;
}
.tg .arrow-md > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-md > .arrow.arrow-bordered,
.tg .arrow-md > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-md > .arrow.arrow-bordered:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-md > .arrow.arrow-bordered _:-ms-fullscreen,
.tg .arrow-md > .arrow.arrow-bordered:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-md > .arrow.arrow-bordered.arrow-up:before,
.tg .arrow-md > .arrow.arrow-bordered.arrow-up-inset:before {
  bottom: -17px \9;
  margin-left: -15px \9;
}
.tg .arrow-md > .arrow.arrow-bordered.arrow-right:before,
.tg .arrow-md > .arrow.arrow-bordered.arrow-right-inset:before {
  left: -17px \9;
  margin-top: -15px \9;
}
.tg .arrow-md > .arrow.arrow-bordered.arrow-down:before,
.tg .arrow-md > .arrow.arrow-bordered.arrow-down-inset:before {
  top: -17px \9;
  margin-left: -15px \9;
}
.tg .arrow-md > .arrow.arrow-bordered.arrow-left:before,
.tg .arrow-md > .arrow.arrow-bordered.arrow-left-inset:before {
  right: -17px \9;
  margin-top: -15px \9;
}
.tg .arrow-md > .arrow.arrow-bordered:before {
  border-top-width: 16px \9;
  border-right-width: 16px \9;
  border-bottom-width: 16px \9;
  border-left-width: 16px \9;
}
.tg .arrow-xl > .arrow {
  border-top-width: 26px \9;
  border-right-width: 26px \9;
  border-bottom-width: 26px \9;
  border-left-width: 26px \9;
}
.tg .arrow-xl > .arrow.arrow-up {
  top: -36px \9;
  margin-left: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-right {
  right: -36px \9;
  margin-top: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-down {
  bottom: -36px \9;
  margin-left: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-left {
  left: -36px \9;
  margin-top: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-up-inset {
  bottom: -1px \9;
  margin-left: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-right-inset {
  left: -1px \9;
  margin-top: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-down-inset {
  top: -1px \9;
  margin-left: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-left-inset {
  right: -1px \9;
  margin-top: -26px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered {
  border-top-width: 26px \9;
  border-right-width: 26px \9;
  border-bottom-width: 26px \9;
  border-left-width: 26px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered.arrow-up:before,
.tg .arrow-xl > .arrow.arrow-bordered.arrow-up-inset:before {
  bottom: -27px \9;
  margin-left: -25px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered.arrow-right:before,
.tg .arrow-xl > .arrow.arrow-bordered.arrow-right-inset:before {
  left: -27px \9;
  margin-top: -25px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered.arrow-down:before,
.tg .arrow-xl > .arrow.arrow-bordered.arrow-down-inset:before {
  top: -27px \9;
  margin-left: -25px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered.arrow-left:before,
.tg .arrow-xl > .arrow.arrow-bordered.arrow-left-inset:before {
  right: -27px \9;
  margin-top: -25px \9;
}
.tg .arrow-xl > .arrow.arrow-bordered:before {
  border-top-width: 26px \9;
  border-right-width: 26px \9;
  border-bottom-width: 26px \9;
  border-left-width: 26px \9;
}
.tg .arrow.arrow-a {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-a:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-a,
.tg .arrow.arrow-a:after {
  border-top-color: #ffffff \9;
  border-right-color: #ffffff \9;
  border-bottom-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .arrow.arrow-b {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
}
.tg .arrow.arrow-b:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-b,
.tg .arrow.arrow-b:after {
  border-top-color: #f5f5f5 \9;
  border-right-color: #f5f5f5 \9;
  border-bottom-color: #f5f5f5 \9;
  border-left-color: #f5f5f5 \9;
}
.tg .arrow.arrow-c {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
}
.tg .arrow.arrow-c:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-c,
.tg .arrow.arrow-c:after {
  border-top-color: #ebebeb \9;
  border-right-color: #ebebeb \9;
  border-bottom-color: #ebebeb \9;
  border-left-color: #ebebeb \9;
}
.tg .arrow.arrow-d {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
}
.tg .arrow.arrow-d:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-d,
.tg .arrow.arrow-d:after {
  border-top-color: #ff6200 \9;
  border-right-color: #ff6200 \9;
  border-bottom-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .arrow-box {
  padding: 12px;
}
.tg .arrow-box.arrow-up .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  top: -8px;
  margin-left: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-right .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  right: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-down .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  bottom: -8px;
  margin-left: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-left .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  left: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-up .arrow {
  left: 50% \9;
  top: -20px \9;
  border-left: 12px solid \9;
  border-right: 12px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 12px solid #d5d5d5 \9;
  margin-left: -12px \9;
  top: -16px \9;
}
.tg .arrow-box.arrow-up .arrow,
.tg .arrow-box.arrow-up .arrow:before,
.tg .arrow-box.arrow-up .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-up .arrow {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-up .arrow,
.tg .arrow-box.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-up .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-up .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-right .arrow {
  top: 50% \9;
  right: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 12px solid #d5d5d5 \9;
  margin-top: -12px \9;
  right: -16px \9;
}
.tg .arrow-box.arrow-right .arrow,
.tg .arrow-box.arrow-right .arrow:before,
.tg .arrow-box.arrow-right .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-right .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-right .arrow,
.tg .arrow-box.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-right .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-right .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-down .arrow {
  left: 50% \9;
  bottom: -20px \9;
  border-left: 12px solid \9;
  border-right: 12px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 12px solid #d5d5d5 \9;
  margin-left: -12px \9;
  bottom: -16px \9;
}
.tg .arrow-box.arrow-down .arrow,
.tg .arrow-box.arrow-down .arrow:before,
.tg .arrow-box.arrow-down .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-down .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-down .arrow,
.tg .arrow-box.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-down .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-down .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-left .arrow {
  top: 50% \9;
  left: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 12px solid #d5d5d5 \9;
  margin-top: -12px \9;
  left: -16px \9;
}
.tg .arrow-box.arrow-left .arrow,
.tg .arrow-box.arrow-left .arrow:before,
.tg .arrow-box.arrow-left .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-left .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-left .arrow,
.tg .arrow-box.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-left .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-left .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-md {
  padding: 16px;
}
.tg .arrow-box.arrow-md.arrow-up .arrow {
  width: 22px;
  height: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  top: -11px;
  margin-left: -11px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-md.arrow-right .arrow {
  width: 22px;
  height: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  right: -11px;
  margin-top: -11px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-md.arrow-down .arrow {
  width: 22px;
  height: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  bottom: -11px;
  margin-left: -11px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-md.arrow-left .arrow {
  width: 22px;
  height: 22px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  left: -11px;
  margin-top: -11px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-md.arrow-up .arrow {
  left: 50% \9;
  top: -24px \9;
  border-left: 16px solid \9;
  border-right: 16px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 16px solid #d5d5d5 \9;
  margin-left: -16px \9;
  top: -22px \9;
}
.tg .arrow-box.arrow-md.arrow-up .arrow,
.tg .arrow-box.arrow-md.arrow-up .arrow:before,
.tg .arrow-box.arrow-md.arrow-up .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-md.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-up .arrow {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-md.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-up .arrow,
.tg .arrow-box.arrow-md.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-up .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-md.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-up .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-md.arrow-right .arrow {
  top: 50% \9;
  right: -24px \9;
  border-top: 16px solid \9;
  border-bottom: 16px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 16px solid #d5d5d5 \9;
  margin-top: -16px \9;
  right: -22px \9;
}
.tg .arrow-box.arrow-md.arrow-right .arrow,
.tg .arrow-box.arrow-md.arrow-right .arrow:before,
.tg .arrow-box.arrow-md.arrow-right .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-md.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-right .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-md.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-right .arrow,
.tg .arrow-box.arrow-md.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-right .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-md.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-right .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-md.arrow-down .arrow {
  left: 50% \9;
  bottom: -24px \9;
  border-left: 16px solid \9;
  border-right: 16px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 16px solid #d5d5d5 \9;
  margin-left: -16px \9;
  bottom: -22px \9;
}
.tg .arrow-box.arrow-md.arrow-down .arrow,
.tg .arrow-box.arrow-md.arrow-down .arrow:before,
.tg .arrow-box.arrow-md.arrow-down .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-md.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-down .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-md.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-down .arrow,
.tg .arrow-box.arrow-md.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-down .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-md.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-down .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-md.arrow-left .arrow {
  top: 50% \9;
  left: -24px \9;
  border-top: 16px solid \9;
  border-bottom: 16px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 16px solid #d5d5d5 \9;
  margin-top: -16px \9;
  left: -22px \9;
}
.tg .arrow-box.arrow-md.arrow-left .arrow,
.tg .arrow-box.arrow-md.arrow-left .arrow:before,
.tg .arrow-box.arrow-md.arrow-left .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-md.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-left .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-md.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-left .arrow,
.tg .arrow-box.arrow-md.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-left .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-box.arrow-md.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-md.arrow-left .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-box.arrow-lg {
  padding: 20px;
}
.tg .arrow-box.arrow-lg.arrow-up .arrow {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-lg.arrow-right .arrow {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-lg.arrow-down .arrow {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-lg.arrow-left .arrow {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-lg.arrow-up .arrow {
  left: 50% \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
  top: -28px \9;
}
.tg .arrow-box.arrow-lg.arrow-up .arrow,
.tg .arrow-box.arrow-lg.arrow-up .arrow:before,
.tg .arrow-box.arrow-lg.arrow-up .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-lg.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-up .arrow {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-lg.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-up .arrow,
.tg .arrow-box.arrow-lg.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-up .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-lg.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-up .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-lg.arrow-right .arrow {
  top: 50% \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
  right: -28px \9;
}
.tg .arrow-box.arrow-lg.arrow-right .arrow,
.tg .arrow-box.arrow-lg.arrow-right .arrow:before,
.tg .arrow-box.arrow-lg.arrow-right .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-lg.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-right .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-lg.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-right .arrow,
.tg .arrow-box.arrow-lg.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-right .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-lg.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-right .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-lg.arrow-down .arrow {
  left: 50% \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 20px solid #d5d5d5 \9;
  margin-left: -20px \9;
  bottom: -28px \9;
}
.tg .arrow-box.arrow-lg.arrow-down .arrow,
.tg .arrow-box.arrow-lg.arrow-down .arrow:before,
.tg .arrow-box.arrow-lg.arrow-down .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-lg.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-down .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-lg.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-down .arrow,
.tg .arrow-box.arrow-lg.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-down .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-lg.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-down .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-lg.arrow-left .arrow {
  top: 50% \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 20px solid #d5d5d5 \9;
  margin-top: -20px \9;
  left: -28px \9;
}
.tg .arrow-box.arrow-lg.arrow-left .arrow,
.tg .arrow-box.arrow-lg.arrow-left .arrow:before,
.tg .arrow-box.arrow-lg.arrow-left .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-lg.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-left .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-lg.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-left .arrow,
.tg .arrow-box.arrow-lg.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-left .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-lg.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-lg.arrow-left .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-xl {
  padding: 26px;
}
.tg .arrow-box.arrow-xl.arrow-up .arrow {
  width: 36px;
  height: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -18px;
  margin-left: -18px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-xl.arrow-right .arrow {
  width: 36px;
  height: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -18px;
  margin-top: -18px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-xl.arrow-down .arrow {
  width: 36px;
  height: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -18px;
  margin-left: -18px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-xl.arrow-left .arrow {
  width: 36px;
  height: 36px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -18px;
  margin-top: -18px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-xl.arrow-up .arrow {
  left: 50% \9;
  top: -34px \9;
  border-left: 26px solid \9;
  border-right: 26px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 26px solid #d5d5d5 \9;
  margin-left: -26px \9;
  top: -36px \9;
}
.tg .arrow-box.arrow-xl.arrow-up .arrow,
.tg .arrow-box.arrow-xl.arrow-up .arrow:before,
.tg .arrow-box.arrow-xl.arrow-up .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-xl.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-up .arrow {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow-box.arrow-xl.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-up .arrow,
.tg .arrow-box.arrow-xl.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-up .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-xl.arrow-up .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-up .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-xl.arrow-right .arrow {
  top: 50% \9;
  right: -34px \9;
  border-top: 26px solid \9;
  border-bottom: 26px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 26px solid #d5d5d5 \9;
  margin-top: -26px \9;
  right: -36px \9;
}
.tg .arrow-box.arrow-xl.arrow-right .arrow,
.tg .arrow-box.arrow-xl.arrow-right .arrow:before,
.tg .arrow-box.arrow-xl.arrow-right .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-xl.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-right .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-box.arrow-xl.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-right .arrow,
.tg .arrow-box.arrow-xl.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-right .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-xl.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-right .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-xl.arrow-down .arrow {
  left: 50% \9;
  bottom: -34px \9;
  border-left: 26px solid \9;
  border-right: 26px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 26px solid #d5d5d5 \9;
  margin-left: -26px \9;
  bottom: -36px \9;
}
.tg .arrow-box.arrow-xl.arrow-down .arrow,
.tg .arrow-box.arrow-xl.arrow-down .arrow:before,
.tg .arrow-box.arrow-xl.arrow-down .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-xl.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-down .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-box.arrow-xl.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-down .arrow,
.tg .arrow-box.arrow-xl.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-down .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-xl.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-down .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow-box.arrow-xl.arrow-left .arrow {
  top: 50% \9;
  left: -34px \9;
  border-top: 26px solid \9;
  border-bottom: 26px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 26px solid #d5d5d5 \9;
  margin-top: -26px \9;
  left: -36px \9;
}
.tg .arrow-box.arrow-xl.arrow-left .arrow,
.tg .arrow-box.arrow-xl.arrow-left .arrow:before,
.tg .arrow-box.arrow-xl.arrow-left .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-box.arrow-xl.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-left .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-box.arrow-xl.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-left .arrow,
.tg .arrow-box.arrow-xl.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-left .arrow:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow-box.arrow-xl.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-box.arrow-xl.arrow-left .arrow:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-up.arrow-marker {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  top: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 50% \9;
  top: -22px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-bottom: 14px solid #d5d5d5 \9;
  margin-left: -20px \9;
  top: -28px \9;
}
.tg .arrow.arrow-up.arrow-marker:before {
  top: 3px;
  right: 9px;
  bottom: 9px;
  left: 3px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
}
.tg .arrow.arrow-up.arrow-marker:after {
  top: 3px;
  right: 10px;
  bottom: 10px;
  left: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow.arrow-up.arrow-marker,
.tg .arrow.arrow-up.arrow-marker:before,
.tg .arrow.arrow-up.arrow-marker:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker {
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker,
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-up.arrow-marker:before,
.tg .arrow.arrow-up.arrow-marker:after {
  border-left: 10px solid transparent \9 !important;
  border-right: 10px solid transparent \9 !important;
  margin-left: -12px \9;
}
.tg .arrow.arrow-up.arrow-marker:before {
  bottom: -17px \9;
  border-bottom: 7px solid #adadad \9;
}
.tg .arrow.arrow-up.arrow-marker:after {
  bottom: -17px \9;
  border-bottom: 7px solid #d5d5d5 \9;
}
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow.arrow-up.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-up.arrow-marker:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow.arrow-right.arrow-marker {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  right: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 50% \9;
  right: -22px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 14px solid #d5d5d5 \9;
  margin-top: -20px \9;
  right: -28px \9;
}
.tg .arrow.arrow-right.arrow-marker:before {
  top: 3px;
  right: 9px;
  bottom: 9px;
  left: 3px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
}
.tg .arrow.arrow-right.arrow-marker:after {
  top: 3px;
  right: 10px;
  bottom: 10px;
  left: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow.arrow-right.arrow-marker,
.tg .arrow.arrow-right.arrow-marker:before,
.tg .arrow.arrow-right.arrow-marker:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker,
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-right.arrow-marker:before,
.tg .arrow.arrow-right.arrow-marker:after {
  border-top: 10px solid transparent \9 !important;
  border-bottom: 10px solid transparent \9 !important;
  margin-top: -12px \9;
}
.tg .arrow.arrow-right.arrow-marker:before {
  left: -17px \9;
  border-left: 7px solid #adadad \9;
}
.tg .arrow.arrow-right.arrow-marker:after {
  left: -17px \9;
  border-left: 7px solid #d5d5d5 \9;
}
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow.arrow-right.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-right.arrow-marker:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow.arrow-down.arrow-marker {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 50% \9;
  bottom: -22px \9;
  border-left: 20px solid \9;
  border-right: 20px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 14px solid #d5d5d5 \9;
  margin-left: -20px \9;
  bottom: -28px \9;
}
.tg .arrow.arrow-down.arrow-marker:before {
  top: 3px;
  right: 9px;
  bottom: 9px;
  left: 3px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
}
.tg .arrow.arrow-down.arrow-marker:after {
  top: 3px;
  right: 10px;
  bottom: 10px;
  left: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow.arrow-down.arrow-marker,
.tg .arrow.arrow-down.arrow-marker:before,
.tg .arrow.arrow-down.arrow-marker:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker,
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-down.arrow-marker:before,
.tg .arrow.arrow-down.arrow-marker:after {
  border-left: 10px solid transparent \9 !important;
  border-right: 10px solid transparent \9 !important;
  margin-left: -12px \9;
}
.tg .arrow.arrow-down.arrow-marker:before {
  top: -17px \9;
  border-top: 7px solid #adadad \9;
}
.tg .arrow.arrow-down.arrow-marker:after {
  top: -17px \9;
  border-top: 7px solid #d5d5d5 \9;
}
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow.arrow-down.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-down.arrow-marker:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow.arrow-left.arrow-marker {
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  top: 50%;
  left: -14px;
  margin-top: -14px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #d5d5d5 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 50% \9;
  left: -22px \9;
  border-top: 20px solid \9;
  border-bottom: 20px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 14px solid #d5d5d5 \9;
  margin-top: -20px \9;
  left: -28px \9;
}
.tg .arrow.arrow-left.arrow-marker:before {
  top: 3px;
  right: 9px;
  bottom: 9px;
  left: 3px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
}
.tg .arrow.arrow-left.arrow-marker:after {
  top: 3px;
  right: 10px;
  bottom: 10px;
  left: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.tg .arrow.arrow-left.arrow-marker,
.tg .arrow.arrow-left.arrow-marker:before,
.tg .arrow.arrow-left.arrow-marker:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker,
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker:before {
  border-bottom-right-radius: 6px !important;
}
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker:after {
  border-bottom-right-radius: 5px !important;
}
.tg .arrow.arrow-left.arrow-marker:before,
.tg .arrow.arrow-left.arrow-marker:after {
  border-top: 10px solid transparent \9 !important;
  border-bottom: 10px solid transparent \9 !important;
  margin-top: -12px \9;
}
.tg .arrow.arrow-left.arrow-marker:before {
  right: -17px \9;
  border-right: 7px solid #adadad \9;
}
.tg .arrow.arrow-left.arrow-marker:after {
  right: -17px \9;
  border-right: 7px solid #d5d5d5 \9;
}
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow.arrow-left.arrow-marker _:-ms-fullscreen,
.tg .arrow.arrow-left.arrow-marker:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow.arrow-marker.arrow-a,
.tg .arrow.arrow-marker.arrow-a:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-marker.arrow-b,
.tg .arrow.arrow-marker.arrow-b:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #f5f5f5 50%);
}
.tg .arrow.arrow-marker.arrow-c,
.tg .arrow.arrow-marker.arrow-c:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
}
.tg .arrow.arrow-marker.arrow-d,
.tg .arrow.arrow-marker.arrow-d:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
}
.tg .arrow.arrow-marker.arrow-d:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
}
.tg .arrow.arrow-marker.arrow-a:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-marker.arrow-a,
.tg .arrow.arrow-marker.arrow-a:after {
  border-top-color: #ffffff \9;
  border-right-color: #ffffff \9;
  border-bottom-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .arrow.arrow-marker.arrow-b:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-marker.arrow-b,
.tg .arrow.arrow-marker.arrow-b:after {
  border-top-color: #f5f5f5 \9;
  border-right-color: #f5f5f5 \9;
  border-bottom-color: #f5f5f5 \9;
  border-left-color: #f5f5f5 \9;
}
.tg .arrow.arrow-marker.arrow-c:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-marker.arrow-c,
.tg .arrow.arrow-marker.arrow-c:after {
  border-top-color: #ebebeb \9;
  border-right-color: #ebebeb \9;
  border-bottom-color: #ebebeb \9;
  border-left-color: #ebebeb \9;
}
.tg .arrow.arrow-marker.arrow-d:before {
  border-top-color: #ffffff \9;
  border-right-color: #ffffff \9;
  border-bottom-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .arrow.arrow-marker.arrow-d,
.tg .arrow.arrow-marker.arrow-d:after {
  border-top-color: #ff6200 \9;
  border-right-color: #ff6200 \9;
  border-bottom-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .overlay-content > .arrow.arrow-bordered,
.tg .popover-content > .arrow.arrow-bordered {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  border-color: #ebebeb \9;
}
.tg .arrow-text p {
  margin: 0;
}
.tg .arrow-text.arrow-right {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-right .arrow-container,
.tg .arrow-text.arrow-right .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #adadad;
}
.tg .arrow-text.arrow-right .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  right: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-text.arrow-right .arrow-container,
.tg .arrow-text.arrow-right .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #adadad \9;
}
.tg .arrow-text.arrow-right .arrow {
  top: 50% \9;
  right: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 12px solid #adadad \9;
  margin-top: -12px \9;
  right: -12px \9;
}
.tg .arrow-text.arrow-right .arrow,
.tg .arrow-text.arrow-right .arrow:before,
.tg .arrow-text.arrow-right .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-text.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right .arrow,
.tg .arrow-text.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-right .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-text.arrow-right.arrow-d {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
}
.tg .arrow-text.arrow-right.arrow-d .arrow-container,
.tg .arrow-text.arrow-right.arrow-d .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #ff6200;
}
.tg .arrow-text.arrow-right.arrow-d .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  right: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-text.arrow-right.arrow-d {
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-right.arrow-d .arrow-container,
.tg .arrow-text.arrow-right.arrow-d .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #ff6200 \9;
}
.tg .arrow-text.arrow-right.arrow-d .arrow {
  top: 50% \9;
  right: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-left: 12px solid #ff6200 \9;
  margin-top: -12px \9;
  right: -12px \9;
}
.tg .arrow-text.arrow-right.arrow-d .arrow,
.tg .arrow-text.arrow-right.arrow-d .arrow:before,
.tg .arrow-text.arrow-right.arrow-d .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-right.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right.arrow-d .arrow {
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.tg .arrow-text.arrow-right.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right.arrow-d .arrow,
.tg .arrow-text.arrow-right.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right.arrow-d .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-right.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-right.arrow-d .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-text.arrow-left {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-left .arrow-container,
.tg .arrow-text.arrow-left .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #adadad;
}
.tg .arrow-text.arrow-left .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  left: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-text.arrow-left .arrow-container,
.tg .arrow-text.arrow-left .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #adadad \9;
}
.tg .arrow-text.arrow-left .arrow {
  top: 50% \9;
  left: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 12px solid #adadad \9;
  margin-top: -12px \9;
  left: -12px \9;
}
.tg .arrow-text.arrow-left .arrow,
.tg .arrow-text.arrow-left .arrow:before,
.tg .arrow-text.arrow-left .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-text.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left .arrow,
.tg .arrow-text.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-left .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-text.arrow-left.arrow-d {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
}
.tg .arrow-text.arrow-left.arrow-d .arrow-container,
.tg .arrow-text.arrow-left.arrow-d .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #ff6200;
}
.tg .arrow-text.arrow-left.arrow-d .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  top: 50%;
  left: -8px;
  margin-top: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-text.arrow-left.arrow-d {
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-left.arrow-d .arrow-container,
.tg .arrow-text.arrow-left.arrow-d .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #ff6200 \9;
}
.tg .arrow-text.arrow-left.arrow-d .arrow {
  top: 50% \9;
  left: -20px \9;
  border-top: 12px solid \9;
  border-bottom: 12px solid \9;
  border-top-color: transparent \9 !important;
  border-bottom-color: transparent \9 !important;
  border-right: 12px solid #ff6200 \9;
  margin-top: -12px \9;
  left: -12px \9;
}
.tg .arrow-text.arrow-left.arrow-d .arrow,
.tg .arrow-text.arrow-left.arrow-d .arrow:before,
.tg .arrow-text.arrow-left.arrow-d .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-left.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left.arrow-d .arrow {
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.tg .arrow-text.arrow-left.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left.arrow-d .arrow,
.tg .arrow-text.arrow-left.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left.arrow-d .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-left.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-left.arrow-d .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-text.arrow-down {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-down .arrow-container,
.tg .arrow-text.arrow-down .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #adadad;
}
.tg .arrow-text.arrow-down .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  bottom: -8px;
  margin-left: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #adadad 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-text.arrow-down .arrow-container,
.tg .arrow-text.arrow-down .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #adadad \9;
}
.tg .arrow-text.arrow-down .arrow {
  left: 50% \9;
  bottom: -20px \9;
  border-left: 12px solid \9;
  border-right: 12px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 12px solid #adadad \9;
  margin-left: -12px \9;
  bottom: -16px \9;
}
.tg .arrow-text.arrow-down .arrow,
.tg .arrow-text.arrow-down .arrow:before,
.tg .arrow-text.arrow-down .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-text.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down .arrow,
.tg .arrow-text.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-down .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .arrow-text.arrow-down.arrow-d {
  position: relative;
  display: inline-block;
  padding: 12px 12px 24px;
}
.tg .arrow-text.arrow-down.arrow-d .arrow-container,
.tg .arrow-text.arrow-down.arrow-d .panel {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  height: 4px;
  background: #ff6200;
}
.tg .arrow-text.arrow-down.arrow-d .arrow {
  width: 16px;
  height: 16px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  left: 50%;
  bottom: -8px;
  margin-left: -8px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-text.arrow-down.arrow-d {
  position: relative \9;
  display: inline-block \9;
  padding: 12px 12px 24px \9;
}
.tg .arrow-text.arrow-down.arrow-d .arrow-container,
.tg .arrow-text.arrow-down.arrow-d .panel {
  position: absolute \9;
  bottom: 10px \9;
  left: 12px \9;
  right: 12px \9;
  height: 4px \9;
  background: #ff6200 \9;
}
.tg .arrow-text.arrow-down.arrow-d .arrow {
  left: 50% \9;
  bottom: -20px \9;
  border-left: 12px solid \9;
  border-right: 12px solid \9;
  border-left-color: transparent \9 !important;
  border-right-color: transparent \9 !important;
  border-top: 12px solid #ff6200 \9;
  margin-left: -12px \9;
  bottom: -16px \9;
}
.tg .arrow-text.arrow-down.arrow-d .arrow,
.tg .arrow-text.arrow-down.arrow-d .arrow:before,
.tg .arrow-text.arrow-down.arrow-d .arrow:after {
  -webkit-transform: rotate(0deg) \9;
  -ms-transform: rotate(0deg) \9;
  transform: rotate(0deg) \9;
  -webkit-border-radius: 0 \9 !important;
  border-radius: 0 \9 !important;
}
.tg .arrow-text.arrow-down.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down.arrow-d .arrow {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .arrow-text.arrow-down.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down.arrow-d .arrow,
.tg .arrow-text.arrow-down.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down.arrow-d .arrow:before {
  border-bottom-right-radius: 4px !important;
}
.tg .arrow-text.arrow-down.arrow-d .arrow _:-ms-fullscreen,
.tg .arrow-text.arrow-down.arrow-d .arrow:after {
  border-bottom-right-radius: 3px !important;
}
.tg .backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3700;
}
.tg .backdrop-inline-wrapper {
  position: relative;
}
.tg .backdrop-inline.backdrop {
  position: absolute;
  z-index: 1050;
}
.tg .backdrop-in {
  opacity: 1;
}
.tg .backdrop-out {
  opacity: 0;
}
.tg .backdrop-default {
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.6);
}
.tg .backdrop-a {
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.2);
}
.tg .backdrop-b {
  background-color: #ffffff;
}
.tg .backdrop-c {
  background-color: #ff6200;
}
.tg .close {
  display: inline-block;
  text-decoration: none;
}
.tg button.close {
  border-width: 0;
  background-color: transparent;
  padding: 0;
}
.tg .close-wrapper {
  position: relative;
}
.tg .close-absolute-right {
  position: absolute;
  top: 9px;
  right: 10px;
}
.tg .close-float-right {
  float: right;
  margin-bottom: 3px;
  margin-left: 5px;
}
.tg .close-hidden {
  display: none;
}
.tg .close-default {
  width: 14px;
  height: 14px;
  color: #333333;
  line-height: 0;
}
.tg .close-default .icon {
  opacity: 0.5;
  content: "\e91a";
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
}
.tg .close-default .icon:before {
  content: "\e91a" !important;
}
.tg .close-default.close-inverse {
  color: #ffffff;
}
.tg .close-default.close-inverse:hover,
.tg .close-default.close-inverse:focus {
  color: #ffffff;
}
.tg .close-default:hover,
.tg .close-default:focus {
  color: #333333;
}
.tg .close-default:hover .icon,
.tg .close-default:focus .icon {
  opacity: 1;
}
.tg .close-a {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  border: 1px solid #ebebeb;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  color: #333333;
  line-height: 0;
  padding: 6px 10px;
}
.tg .close-a .icon {
  opacity: 0.5;
  content: "\e91a";
  width: 16px;
  height: 16px;
  font-size: 16px;
  font-size: 1rem;
}
.tg .close-a .icon:before {
  content: "\e91a" !important;
}
.tg button.close-a {
  border-width: 1px;
  padding: 6px 10px;
}
.tg .close-a.close-inverse {
  border-color: #ffffff;
  color: #ffffff;
  opacity: 0.9;
}
.tg .close-a.close-inverse .icon {
  opacity: 1;
}
.tg .close-a.close-inverse:hover,
.tg .close-a.close-inverse:focus {
  color: #ffffff;
  opacity: 1;
}
.tg .close-a:hover,
.tg .close-a:focus {
  color: #333333;
}
.tg .close-a:hover .icon,
.tg .close-a:focus .icon {
  opacity: 1;
}
.tg .collapsible-content {
  max-height: 9999px;
  overflow: hidden;
  margin-bottom: 0;
  -webkit-transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
  -o-transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
  transition: max-height 0.8s cubic-bezier(0.5, 0, 1, 0) 0s;
}
.tg .collapsed .collapsible-content {
  max-height: 0;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -o-transition-timing-function: cubic-bezier(0, 1, 0, 1);
  transition-timing-function: cubic-bezier(0, 1, 0, 1);
  -webkit-transition-delay: -0.1s;
  -o-transition-delay: -0.1s;
  transition-delay: -0.1s;
}
.tg .collapsible-control {
  cursor: pointer;
}
.tg a.collapsible-control {
  display: block;
  text-decoration: none;
}
.tg .collapsible-control:hover {
  background-color: #d5d5d5;
}
.tg .collapsible-control:hover a {
  color: #333333;
}
.tg .collapsible-icon {
  display: inline-block;
  content: "\e908";
  -webkit-transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.tg .collapsible-icon:before {
  content: "\e908" !important;
}
.tg .collapsed .collapsible-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.tg .collapse {
  display: none;
}
.tg .collapse.in {
  display: block;
}
.tg .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease;
}
.tg .table-collapsible-a th:first-child {
  padding-left: 30px;
}
.tg .table-collapsible-a .collapsible td {
  position: relative;
}
.tg .table-collapsible-a .collapsible td:first-child {
  padding-left: 30px;
}
.tg .table-collapsible-a .collapsible .collapsible-control {
  position: absolute;
  top: 4px;
  left: 10px;
}
.tg .table-collapsible-a .collapsible:hover,
.tg .table-collapsible-a .collapsible:focus {
  background-color: #f5f5f5;
  cursor: pointer;
}
.tg a.sortable-link {
  position: relative;
  color: inherit;
}
.tg a.sortable-link .icon {
  display: inline-block;
  margin-left: 4px;
}
.tg a.sortable-link abbr {
  margin: 0;
}
.tg .spinner {
  display: inline-block;
  position: relative;
  width: 5em;
  height: 5em;
  overflow: hidden;
  background: url(clientlibs/img/css/SOL_loadingindicator_small_32px.gif) no-repeat 0 0 \0;
  font-size: 7px;
  margin: 0 .5em;
  -webkit-animation: spin 1s infinite steps(8);
  animation: spin 1s infinite steps(8);
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tg .spinner:before {
  background: #ff6600;
}
.tg .spinner:after {
  background: #ff944c;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tg .spinner > div:before {
  background: #ffab73;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.tg .spinner > div:after {
  background: #ffc299;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.tg .spinner:before,
.tg .spinner:after,
.tg .spinner > div:before,
.tg .spinner > div:after {
  position: absolute;
  top: 0;
  left: 2.25em;
  width: .5em;
  height: 2em;
  -webkit-box-shadow: 0 3em #d8d5d2;
  box-shadow: 0 3em #d8d5d2;
  -webkit-border-radius: .4em;
  border-radius: .4em;
  background: none \0;
  content: "";
  -webkit-transform-origin: 50% 2.5em;
  -ms-transform-origin: 50% 2.5em;
  transform-origin: 50% 2.5em;
}
.tg .spinner-sm {
  background: url(clientlibs/img/css/SOL_loadingindicator_small_16px.gif) no-repeat 0 0 \0;
  font-size: 4px;
}
.tg .spinner-text {
  position: relative;
  padding-left: 50px;
}
.tg .spinner-text .spinner {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -16px;
}
.tg .spinner-text .spinner-sm.spinner {
  margin-top: -9px;
  margin-left: 10px;
}
.tg .btn-bar {
  margin-bottom: 24px;
}
.tg .btn-bar:before,
.tg .btn-bar:after {
  content: " ";
  display: table;
}
.tg .btn-bar:after {
  clear: both;
}
.tg .btn-bar:before,
.tg .btn-bar:after {
  content: " ";
  display: table;
}
.tg .btn-bar:after {
  clear: both;
}
.tg .btn-bar .btn + .btn {
  margin-left: 20px;
}
.tg .btn-group,
.tg .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 24px;
}
.tg .btn-group > .btn,
.tg .btn-group-vertical > .btn {
  float: left;
  position: relative;
}
.tg .btn-group > .btn:hover,
.tg .btn-group-vertical > .btn:hover,
.tg .btn-group > .btn:focus,
.tg .btn-group-vertical > .btn:focus,
.tg .btn-group > .btn:active,
.tg .btn-group-vertical > .btn:active,
.tg .btn-group > .btn.active,
.tg .btn-group-vertical > .btn.active {
  z-index: 2;
}
.tg .btn-group > .btn-group,
.tg .btn-group-vertical > .btn-group {
  margin: 0;
}
.tg .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle),
.tg .btn-group .btn + .btn:not(:last-child):not(.dropdown-toggle),
.tg .btn-group .btn + .btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle),
.tg .btn-group .btn-group + .btn:not(.dropdown-toggle),
.tg .btn-group .btn-group + .btn-group .btn:first-child:not(.dropdown-toggle),
.tg .btn-group.btn-group-justified .btn-group .btn {
  border-right-color: #d5d5d5;
}
.tg .btn-group .btn.btn-inverse {
  margin-left: -1px;
}
.tg .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .btn-group > .btn:first-child {
  margin-left: 0;
}
.tg .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tg .btn-group > .btn:last-child:not(:first-child),
.tg .btn-group > .dropdown-toggle:not(:first-child) {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .btn-group > .btn:not(.btn-inverse):last-child:not(:first-child),
.tg .btn-group > .dropdown-toggle:not(:first-child) {
  border-right-color: transparent;
}
.tg .btn-group > .btn-group {
  float: left;
}
.tg .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .btn-group > .btn-group:first-child > .btn:last-child,
.tg .btn-group > .btn-group:first-child > .dropdown-toggle {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.tg .btn-group > .btn-group:last-child > .btn:first-child {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.tg .btn-group.btn-group-justified .btn-group:last-child .btn:first-child:not(.dropdown-toggle),
.tg .btn-group.btn-group-justified .btn-group:last-child .btn {
  border-right-color: transparent;
}
.tg .btn-group .btn:hover {
  border-right-color: #adadad !important;
}
.tg .btn-group .dropdown-toggle:active,
.tg .btn-group.open .dropdown-toggle {
  outline: none;
}
.tg .btn-toolbar {
  margin-left: -5px;
}
.tg .btn-toolbar:before,
.tg .btn-toolbar:after {
  content: " ";
  display: table;
}
.tg .btn-toolbar:after {
  clear: both;
}
.tg .btn-toolbar:before,
.tg .btn-toolbar:after {
  content: " ";
  display: table;
}
.tg .btn-toolbar:after {
  clear: both;
}
.tg .btn-toolbar > .btn,
.tg .btn-toolbar > .btn-group,
.tg .btn-toolbar > .input-group {
  margin-left: 5px;
}
.tg .btn-toolbar.btn-toolbar-top {
  position: relative;
  z-index: 1;
  margin-bottom: -19px;
}
.tg .btn-toolbar.btn-toolbar-top .btn:active,
.tg .btn-toolbar.btn-toolbar-top .btn.active {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.tg .btn-group-justified > .btn,
.tg .btn-group-justified > .btn-group {
  display: table-cell;
  float: none;
  width: 1%;
}
.tg .btn-group-justified > .btn-group .btn {
  width: 100%;
}
.tg .btn-group > .btn + .dropdown-toggle {
  padding-right: 8px;
  padding-left: 8px;
}
.tg .btn-group > .btn-lg + .dropdown-toggle {
  padding-right: 20px;
  padding-left: 20px;
}
.tg .btn-group-vertical > .btn,
.tg .btn-group-vertical > .btn-group,
.tg .btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.tg .btn-group-vertical > .btn-group:before,
.tg .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.tg .btn-group-vertical > .btn-group:after {
  clear: both;
}
.tg .btn-group-vertical > .btn-group:before,
.tg .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
}
.tg .btn-group-vertical > .btn-group:after {
  clear: both;
}
.tg .btn-group-vertical > .btn-group > .btn {
  float: none;
  border-right-color: transparent;
}
.tg .btn-group-vertical > .btn + .btn,
.tg .btn-group-vertical > .btn + .btn-group,
.tg .btn-group-vertical > .btn-group + .btn,
.tg .btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.tg .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .btn-group-vertical > .btn:first-child:not(:last-child) {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
}
.tg .btn-group-vertical > .btn:last-child:not(:first-child) {
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.tg .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.tg .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.tg .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
@media (max-width: 679px) {
  .tg .btn-toolbar-a .container {
    padding: 0;
  }
}
.tg .btn-toolbar-a .btn {
  border: 0;
  white-space: normal;
  line-height: 1.3;
  padding: 0;
  opacity: 1 !important;
}
@media (max-width: 479px) {
  .tg .btn-toolbar-a .btn {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.4;
    line-height: 1.2;
  }
}
.tg .btn-toolbar-a .btn:active .icon-position,
.tg .btn-toolbar-a .btn.active .icon-position {
  position: relative;
}
.tg .btn-toolbar-a .btn:active .icon-position:before,
.tg .btn-toolbar-a .btn.active .icon-position:before {
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  content: '';
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .btn-toolbar-a .btn:active .icon-position.arrow-bordered,
.tg .btn-toolbar-a .btn.active .icon-position.arrow-bordered {
  position: relative;
}
.tg .btn-toolbar-a .btn:active .icon-position.arrow-bordered:before,
.tg .btn-toolbar-a .btn.active .icon-position.arrow-bordered:before {
  display: block;
  position: absolute;
  width: 28px;
  height: 28px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  content: '';
  left: 50%;
  bottom: -14px;
  margin-left: -14px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .btn-toolbar-a .btn:active .icon-position.arrow-bordered:after,
.tg .btn-toolbar-a .btn.active .icon-position.arrow-bordered:after {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  content: '';
  left: 50%;
  bottom: -13px;
  margin-left: -13px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .btn-toolbar-a .icon-position {
  height: 100px;
  display: block;
  padding-top: 58px;
  padding-right: 10px;
  padding-left: 10px;
  min-height: 64px;
}
.tg .btn-toolbar-a .icon-position > .icon,
.tg .btn-toolbar-a .icon-position > .stacked-icon,
.tg .btn-toolbar-a .icon-position > .figure-icon,
.tg .btn-toolbar-a .icon-position > .icon-position-icon,
.tg .btn-toolbar-a .icon-position > a .icon-position-icon {
  width: 64px;
  height: auto;
  font-size: 64px;
  font-size: 4rem;
}
.tg .btn-toolbar-a .icon-position.btn > .icon,
.tg .btn-toolbar-a .icon-position.btn > .stacked-icon,
.tg .btn-toolbar-a .icon-position.btn > .figure-icon,
.tg .btn-toolbar-a .icon-position.btn > .icon-position-icon {
  top: 50%;
  margin-top: -32px;
}
.tg .btn-toolbar-a .icon-position.icon-position-ratio-3-2 {
  min-height: 42.66666667px;
}
.tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .icon,
.tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .stacked-icon,
.tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .figure-icon,
.tg .btn-toolbar-a .icon-position.icon-center .icon-center-body .icon-position-icon {
  width: 64px;
  height: 64px;
  font-size: 64px;
  font-size: 4rem;
  margin-top: -32px;
  margin-left: -32px;
}
@media (min-width: 480px) {
  .tg .btn-toolbar-a .icon-position {
    height: 120px;
    padding-top: 70px;
    min-height: 84px;
  }
  .tg .btn-toolbar-a .icon-position > .icon,
  .tg .btn-toolbar-a .icon-position > .stacked-icon,
  .tg .btn-toolbar-a .icon-position > .figure-icon,
  .tg .btn-toolbar-a .icon-position > .icon-position-icon,
  .tg .btn-toolbar-a .icon-position > a .icon-position-icon {
    width: 84px;
    height: auto;
    font-size: 84px;
    font-size: 5.25rem;
  }
  .tg .btn-toolbar-a .icon-position.btn > .icon,
  .tg .btn-toolbar-a .icon-position.btn > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.btn > .figure-icon,
  .tg .btn-toolbar-a .icon-position.btn > .icon-position-icon {
    top: 50%;
    margin-top: -42px;
  }
  .tg .btn-toolbar-a .icon-position.icon-position-ratio-3-2 {
    min-height: 56px;
  }
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body .icon-position-icon {
    width: 84px;
    height: 84px;
    font-size: 84px;
    font-size: 5.25rem;
    margin-top: -42px;
    margin-left: -42px;
  }
}
@media (min-width: 768px) {
  .tg .btn-toolbar-a .icon-position {
    height: 140px;
    padding-top: 86px;
    min-height: 104px;
  }
  .tg .btn-toolbar-a .icon-position > .icon,
  .tg .btn-toolbar-a .icon-position > .stacked-icon,
  .tg .btn-toolbar-a .icon-position > .figure-icon,
  .tg .btn-toolbar-a .icon-position > .icon-position-icon,
  .tg .btn-toolbar-a .icon-position > a .icon-position-icon {
    width: 104px;
    height: auto;
    font-size: 104px;
    font-size: 6.5rem;
  }
  .tg .btn-toolbar-a .icon-position.btn > .icon,
  .tg .btn-toolbar-a .icon-position.btn > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.btn > .figure-icon,
  .tg .btn-toolbar-a .icon-position.btn > .icon-position-icon {
    top: 50%;
    margin-top: -52px;
  }
  .tg .btn-toolbar-a .icon-position.icon-position-ratio-3-2 {
    min-height: 69.33333333px;
  }
  .tg .btn-toolbar-a .icon-position.icon-after {
    padding-right: 124px;
  }
  .tg .btn-toolbar-a .icon-position.icon-after.btn {
    padding-right: 124px;
  }
  .tg .btn-toolbar-a .icon-position.icon-after.btn > .icon,
  .tg .btn-toolbar-a .icon-position.icon-after.btn > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-after.btn > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-after.btn .icon-position-icon {
    right: 10px;
  }
  .tg .btn-toolbar-a .icon-position.icon-middle {
    min-height: inherit;
  }
  .tg .btn-toolbar-a .icon-position.icon-middle > .icon,
  .tg .btn-toolbar-a .icon-position.icon-middle > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-middle > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-middle .icon-position-icon {
    margin-top: -52px;
  }
  .tg .btn-toolbar-a .icon-position.icon-before {
    padding-left: 124px;
  }
  .tg .btn-toolbar-a .icon-position.icon-before.btn {
    padding-left: 124px;
  }
  .tg .btn-toolbar-a .icon-position.icon-before.btn > .icon,
  .tg .btn-toolbar-a .icon-position.icon-before.btn > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-before.btn > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-before.btn .icon-position-icon {
    left: 10px;
  }
  .tg .btn-toolbar-a .icon-position.icon-middle {
    min-height: inherit;
  }
  .tg .btn-toolbar-a .icon-position.icon-middle > .icon,
  .tg .btn-toolbar-a .icon-position.icon-middle > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-middle > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-middle .icon-position-icon {
    margin-top: -52px;
  }
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .stacked-icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body > .figure-icon,
  .tg .btn-toolbar-a .icon-position.icon-center .icon-center-body .icon-position-icon {
    width: 104px;
    height: 104px;
    font-size: 104px;
    font-size: 6.5rem;
    margin-top: -52px;
    margin-left: -52px;
  }
}
@media (min-width: 992px) {
  .tg .btn-toolbar-a .icon-position {
    height: 130px;
  }
}
.tg .btn-toolbar-a .icon-position .icon-center-body {
  vertical-align: top;
  display: inline-block;
}
.tg .btn-toolbar-a .icon-position .icon-center-body .icon {
  color: inherit;
  top: 40%;
}
.tg .btn-toolbar-b .btn-group {
  margin: 0 5px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.tg .btn-toolbar-b .btn {
  width: 130px;
  width: calc((100% - 20px) / 8);
  width: -webkit-calc((100% - 20px) / 8);
  min-width: 80px;
  float: none;
  border: 0;
  line-height: 1.3;
  margin-top: 0;
  padding: 0;
  white-space: normal;
}
.tg .btn-toolbar-b .btn:hover .arrow,
.tg .btn-toolbar-b .btn:focus .arrow,
.tg .btn-toolbar-b .btn:active .arrow,
.tg .btn-toolbar-b .btn.active .arrow {
  display: block;
}
.tg .btn-toolbar-b .btn:hover figcaption,
.tg .btn-toolbar-b .btn:focus figcaption,
.tg .btn-toolbar-b .btn:active figcaption {
  text-decoration: underline;
}
.tg .btn-toolbar-b .btn:hover img,
.tg .btn-toolbar-b .btn:focus img,
.tg .btn-toolbar-b .btn:active img {
  border-color: #ff6200;
}
.tg .btn-toolbar-b .btn.active figcaption {
  font-weight: bold;
}
.tg .btn-toolbar-b .btn.active img {
  border-color: #ff6200;
}
.tg .btn-toolbar-b .btn .arrow {
  display: none;
}
.tg .btn-toolbar-b .btn-transparent {
  opacity: 1 !important;
  color: inherit;
}
.tg .btn-toolbar-b > .arrow {
  display: none;
}
.tg .btn-toolbar-b.wrapped .btn:hover .arrow,
.tg .btn-toolbar-b.wrapped .btn:focus .arrow,
.tg .btn-toolbar-b.wrapped .btn:active .arrow,
.tg .btn-toolbar-b.wrapped .btn.active .arrow {
  display: none;
}
.tg .btn-toolbar-b.wrapped > .arrow {
  display: block;
}
.tg .btn-toolbar-b .layout-box {
  text-align: center;
  padding: 0 10px 20px 10px;
}
.tg .btn-toolbar-b a {
  color: inherit;
  text-decoration: none;
}
.tg .btn-toolbar-b figcaption {
  height: 41.6px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-top: 15px;
  margin-right: -5px;
  margin-left: -5px;
}
.tg .btn-toolbar-b img {
  width: 115px;
}
.tg [role="tabpanel"].panel {
  display: none;
}
.tg [role="tabpanel"].panel:focus {
  outline: 0;
}
.tg [role="tabpanel"].panel.active {
  display: block;
}
.tg .alert > .close {
  margin-top: 6px;
}
.tg .alert .alert-block > .close {
  margin-top: 4px;
}
.tg .arrow.arrow-priba {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #767676 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #767676 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #767676 50%);
}
.tg .arrow.arrow-priba:before {
  border-top-color: #adadad \9;
  border-right-color: #adadad \9;
  border-bottom-color: #adadad \9;
  border-left-color: #adadad \9;
}
.tg .arrow.arrow-priba,
.tg .arrow.arrow-priba:after {
  border-top-color: #767676 \9;
  border-right-color: #767676 \9;
  border-bottom-color: #767676 \9;
  border-left-color: #767676 \9;
}
.tg .h-bg-l-a {
  background-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
}
.tg .h-bg-l-b {
  background-color: #f5f5f5 !important;
  background-color: rgba(245, 245, 245, 0.95) !important;
}
.tg .h-bg-l-c {
  background-color: #ebebeb !important;
  background-color: rgba(235, 235, 235, 0.95) !important;
}
.tg .h-bg-l-d {
  background-color: #ff6200 !important;
  background-color: rgba(255, 98, 0, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-e {
  background-color: #544641 !important;
  background-color: rgba(84, 70, 65, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-f {
  background-color: #998575 !important;
  background-color: rgba(153, 133, 117, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-g {
  background-color: #5e6a76 !important;
  background-color: rgba(94, 106, 118, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-h {
  background-color: #8f9eaf !important;
  background-color: rgba(143, 158, 175, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-i {
  background-color: #899893 !important;
  background-color: rgba(137, 152, 147, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-j {
  background-color: #a4b5a5 !important;
  background-color: rgba(164, 181, 165, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-k {
  background-color: #333333 !important;
  background-color: rgba(51, 51, 51, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-l-m {
  background-color: #fff3eb !important;
  background-color: rgba(255, 243, 235, 0.95) !important;
}
.tg .h-bg-l-n {
  background-color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.95) !important;
  color: #ffffff;
}
.tg .h-bg-a {
  background-color: #ffffff !important;
}
.tg .h-bg-b {
  background-color: #f5f5f5 !important;
}
.tg .h-bg-c {
  background-color: #ebebeb !important;
}
.tg .h-bg-d {
  background-color: #ff6200 !important;
  color: #ffffff;
}
.tg .h-bg-e {
  background-color: #544641 !important;
  color: #ffffff;
}
.tg .h-bg-f {
  background-color: #998575 !important;
  color: #ffffff;
}
.tg .h-bg-g {
  background-color: #5e6a76 !important;
  color: #ffffff;
}
.tg .h-bg-h {
  background-color: #8f9eaf !important;
  color: #ffffff;
}
.tg .h-bg-i {
  background-color: #899893 !important;
  color: #ffffff;
}
.tg .h-bg-j {
  background-color: #a4b5a5 !important;
  color: #ffffff;
}
.tg .h-bg-k {
  background-color: #767676 !important;
  color: #ffffff;
}
.tg .h-bg-m {
  background-color: #fff3eb !important;
}
.tg .h-bg-n {
  background-color: #000000 !important;
  color: #ffffff;
}
.tg .h-bg-o {
  background-color: #ffebeb !important;
}
.tg .body-box .bg-a {
  background-color: #ffffff !important;
}
.tg .body-box .bg-b {
  background-color: #f5f5f5 !important;
}
.tg .body-box .bg-c {
  background-color: #ebebeb !important;
}
.tg .body-box .bg-d {
  background-color: #ff6200 !important;
  color: #ffffff;
}
.tg .body-box .bg-e {
  background-color: #544641 !important;
  color: #ffffff;
}
.tg .body-box .bg-f {
  background-color: #998575 !important;
  color: #ffffff;
}
.tg .body-box .bg-g {
  background-color: #5e6a76 !important;
  color: #ffffff;
}
.tg .body-box .bg-h {
  background-color: #8f9eaf !important;
  color: #ffffff;
}
.tg .body-box .bg-i {
  background-color: #899893 !important;
  color: #ffffff;
}
.tg .body-box .bg-j {
  background-color: #a4b5a5 !important;
  color: #ffffff;
}
.tg .body-box .bg-k {
  background-color: #767676 !important;
  color: #ffffff;
}
.tg .body-box .bg-m {
  background-color: #fff3eb !important;
}
.tg .body-box .bg-n {
  background-color: #000000 !important;
  color: #ffffff;
}
.tg .body-box .bg-o {
  background-color: #ffebeb !important;
}
.tg .body-box .text-a,
.tg .body-box .text-muted {
  color: #767676;
}
.tg a.body-box .text-a:hover,
.tg a.body-box .text-muted:hover,
.tg a.body-box .text-a:focus,
.tg a.body-box .text-muted:focus {
  color: #5d5d5d;
}
.tg .body-box .text-b,
.tg .body-box .text-primary,
.tg .body-box .text-warning {
  color: #ff6200;
}
.tg a.body-box .text-b:hover,
.tg a.body-box .text-primary:hover,
.tg a.body-box .text-warning:hover,
.tg a.body-box .text-b:focus,
.tg a.body-box .text-primary:focus,
.tg a.body-box .text-warning:focus {
  color: #cc4e00;
}
.tg .body-box .text-c,
.tg .body-box .text-success {
  color: #349651;
}
.tg a.body-box .text-c:hover,
.tg a.body-box .text-success:hover,
.tg a.body-box .text-c:focus,
.tg a.body-box .text-success:focus {
  color: #27703d;
}
.tg .body-box .text-d,
.tg .body-box .text-info {
  color: #60a6da;
}
.tg a.body-box .text-d:hover,
.tg a.body-box .text-info:hover,
.tg a.body-box .text-d:focus,
.tg a.body-box .text-info:focus {
  color: #378fd0;
}
.tg .body-box .text-e,
.tg .body-box .text-danger {
  color: #ff0000;
}
.tg a.body-box .text-e:hover,
.tg a.body-box .text-danger:hover,
.tg a.body-box .text-e:focus,
.tg a.body-box .text-danger:focus {
  color: #cc0000;
}
.tg .body-box .text-f {
  color: #ffffff;
}
.tg a.body-box .text-f:hover,
.tg a.body-box .text-f:focus {
  color: #e6e6e6;
}
.tg .body-box .text-g {
  color: #f5f5f5;
}
.tg a.body-box .text-g:hover,
.tg a.body-box .text-g:focus {
  color: #dcdcdc;
}
.tg .body-box .text-h {
  color: #ebebeb;
}
.tg a.body-box .text-h:hover,
.tg a.body-box .text-h:focus {
  color: #d2d2d2;
}
.tg .body-box .text-i {
  color: #333333;
}
.tg a.body-box .text-i:hover,
.tg a.body-box .text-i:focus {
  color: #1a1a1a;
}
.tg .body-box .text-j {
  color: #000000;
}
.tg a.body-box .text-j:hover,
.tg a.body-box .text-j:focus {
  color: #000000;
}
.tg .btn-lucent,
.tg a.btn-lucent {
  border: 1px solid transparent;
  background: #000000;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}
.tg .btn-lucent:hover,
.tg a.btn-lucent:hover,
.tg .btn-lucent:focus,
.tg a.btn-lucent:focus,
.tg .open .dropdown-toggle.btn-lucent,
.tg .open .dropdown-togglea.btn-lucent {
  background: #ffffff;
  border-color: #000000;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: transparent;
  color: #ffffff;
}
.tg .btn-lucent:active,
.tg a.btn-lucent:active,
.tg .btn-lucent.active,
.tg a.btn-lucent.active,
.tg .open .dropdown-toggle.btn-lucent,
.tg .open .dropdown-togglea.btn-lucent {
  background: #ffffff;
  border-color: #000000;
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: transparent;
  color: #ffffff;
}
.tg .btn-lucent.disabled,
.tg a.btn-lucent.disabled,
.tg .btn-lucent[disabled],
.tg a.btn-lucent[disabled],
.tg fieldset[disabled] .btn-lucent,
.tg fieldset[disabled] a.btn-lucent {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-lucent.disabled.btn-transparent,
.tg a.btn-lucent.disabled.btn-transparent,
.tg .btn-lucent[disabled].btn-transparent,
.tg a.btn-lucent[disabled].btn-transparent,
.tg fieldset[disabled] .btn-lucent.btn-transparent,
.tg fieldset[disabled] a.btn-lucent.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-lucent.read-only:hover,
.tg a.btn-lucent.read-only:hover,
.tg .btn-lucent.read-only.active,
.tg a.btn-lucent.read-only.active,
.tg .btn-lucent.read-only:active,
.tg a.btn-lucent.read-only:active,
.tg .open .dropdown-toggle.btn-lucent.read-only,
.tg .open .dropdown-togglea.btn-lucent.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #000000 !important;
}
.tg .btn-a,
.tg a.btn-a {
  border: 1px solid transparent;
  background: #f5f5f5;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-top-color: #ffffff;
  border-bottom-color: #cfcfcf;
}
.tg .btn-a:hover,
.tg a.btn-a:hover,
.tg .btn-a:focus,
.tg a.btn-a:focus,
.tg .open .dropdown-toggle.btn-a,
.tg .open .dropdown-togglea.btn-a {
  background: #ffffff;
  border-color: #f5f5f5;
  border-color: #adadad;
  color: #333333;
}
.tg .btn-a:active,
.tg a.btn-a:active,
.tg .btn-a.active,
.tg a.btn-a.active,
.tg .open .dropdown-toggle.btn-a,
.tg .open .dropdown-togglea.btn-a {
  background: #ffffff;
  border-color: #f5f5f5;
  color: #333333;
  border-color: #adadad;
}
.tg .btn-a.disabled,
.tg a.btn-a.disabled,
.tg .btn-a[disabled],
.tg a.btn-a[disabled],
.tg fieldset[disabled] .btn-a,
.tg fieldset[disabled] a.btn-a {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-a.disabled.btn-transparent,
.tg a.btn-a.disabled.btn-transparent,
.tg .btn-a[disabled].btn-transparent,
.tg a.btn-a[disabled].btn-transparent,
.tg fieldset[disabled] .btn-a.btn-transparent,
.tg fieldset[disabled] a.btn-a.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-a.read-only:hover,
.tg a.btn-a.read-only:hover,
.tg .btn-a.read-only.active,
.tg a.btn-a.read-only.active,
.tg .btn-a.read-only:active,
.tg a.btn-a.read-only:active,
.tg .open .dropdown-toggle.btn-a.read-only,
.tg .open .dropdown-togglea.btn-a.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #f5f5f5 !important;
}
.tg .btn-b,
.tg a.btn-b {
  border: 1px solid transparent;
  background: #ff6200;
  color: #333333;
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  border-color: #adadad;
  background: #ffffff;
  color: #ff6200;
}
.tg .btn-b:hover,
.tg a.btn-b:hover,
.tg .btn-b:focus,
.tg a.btn-b:focus,
.tg .open .dropdown-toggle.btn-b,
.tg .open .dropdown-togglea.btn-b {
  background: #ffffff;
  border-color: #ff6200;
}
.tg .btn-b:active,
.tg a.btn-b:active,
.tg .btn-b.active,
.tg a.btn-b.active,
.tg .open .dropdown-toggle.btn-b,
.tg .open .dropdown-togglea.btn-b {
  background: #ffffff;
  border-color: #ff6200;
}
.tg .btn-b.disabled,
.tg a.btn-b.disabled,
.tg .btn-b[disabled],
.tg a.btn-b[disabled],
.tg fieldset[disabled] .btn-b,
.tg fieldset[disabled] a.btn-b {
  border-color: transparent !important;
  background-color: #f5f5f5 !important;
  color: #adadad !important;
}
.tg .btn-b.disabled.btn-transparent,
.tg a.btn-b.disabled.btn-transparent,
.tg .btn-b[disabled].btn-transparent,
.tg a.btn-b[disabled].btn-transparent,
.tg fieldset[disabled] .btn-b.btn-transparent,
.tg fieldset[disabled] a.btn-b.btn-transparent {
  background-color: transparent !important;
}
.tg .btn-b.read-only:hover,
.tg a.btn-b.read-only:hover,
.tg .btn-b.read-only.active,
.tg a.btn-b.read-only.active,
.tg .btn-b.read-only:active,
.tg a.btn-b.read-only:active,
.tg .open .dropdown-toggle.btn-b.read-only,
.tg .open .dropdown-togglea.btn-b.read-only {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #ff6200 !important;
}

/* 
.tg .carousel {
  overflow: hidden;
  margin-bottom: 24px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  position: relative;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 1px rgba(0, 0, 0, 0.15);
  border: 1px solid #ebebeb;
  border-color: #ebebeb #d5d5d5 #d5d5d5 #d5d5d5 \9;
  border: 0 !important;
  border-bottom-width: 1px !important;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .carousel > .panel-heading,
.tg .carousel > .panel-body:first-child {
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
}
.tg .carousel > .panel-footer,
.tg .carousel > .panel-body:last-child {
  -webkit-border-bottom-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tg .carousel > .list-group {
  margin-bottom: 0;
}
.tg .carousel > .list-group .list-group-item {
  border-right-width: 0;
  border-left-width: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.tg .carousel > .list-group:first-child .list-group-item:first-child {
  border-top-width: 0;
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .carousel > .list-group:last-child .list-group-item:last-child {
  border-bottom-width: 0;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .popover-content .carousel {
  margin: 0;
}
.tg .carousel > .table:first-child {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
}
.tg .carousel > .table:last-child {
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.tg .carousel > .table,
.tg .carousel > .table-responsive {
  margin-bottom: 0;
}
.tg .carousel > .panel-body + .table,
.tg .carousel > .panel-body + .table-responsive {
  border-top: 1px solid #d5d5d5;
}
.tg .carousel > .table-bordered,
.tg .carousel > .table-responsive > .table-bordered {
  border: none;
}
.tg .carousel > .table-bordered > thead > tr > th:first-child,
.tg .carousel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.tg .carousel > .table-bordered > tbody > tr > th:first-child,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.tg .carousel > .table-bordered > tfoot > tr > th:first-child,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.tg .carousel > .table-bordered > thead > tr > td:first-child,
.tg .carousel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.tg .carousel > .table-bordered > tbody > tr > td:first-child,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.tg .carousel > .table-bordered > tfoot > tr > td:first-child,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left-width: 0;
}
.tg .carousel > .table-bordered > thead > tr > th:last-child,
.tg .carousel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.tg .carousel > .table-bordered > tbody > tr > th:last-child,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.tg .carousel > .table-bordered > tfoot > tr > th:last-child,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.tg .carousel > .table-bordered > thead > tr > td:last-child,
.tg .carousel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.tg .carousel > .table-bordered > tbody > tr > td:last-child,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.tg .carousel > .table-bordered > tfoot > tr > td:last-child,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right-width: 0;
}
.tg .carousel > .table-bordered > thead > tr:last-child > th,
.tg .carousel > .table-responsive > .table-bordered > thead > tr:last-child > th,
.tg .carousel > .table-bordered > tbody > tr:last-child > th,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.tg .carousel > .table-bordered > tfoot > tr:last-child > th,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
.tg .carousel > .table-bordered > thead > tr:last-child > td,
.tg .carousel > .table-responsive > .table-bordered > thead > tr:last-child > td,
.tg .carousel > .table-bordered > tbody > tr:last-child > td,
.tg .carousel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.tg .carousel > .table-bordered > tfoot > tr:last-child > td,
.tg .carousel > .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  border-bottom-width: 0;
}
.tg .carousel > .panel-heading,
.tg .carousel > .panel-sub-heading,
.tg .carousel > .panel-body,
.tg .carousel > .panel-footer {
  position: relative;
}
.tg .carousel .position-absolute-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.tg .carousel-indicators {
  width: 100%;
  z-index: 1;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0;
  padding: 0;
}
.tg .carousel-indicators > li {
  display: inline-block;
}
.tg .carousel-indicators > li > a {
  z-index: 2;
}
.tg .carousel-item {
  display: none;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tg .carousel-item > img,
.tg .carousel-item > a > img {
  pointer-events: none;
  display: block;
  max-width: 100%;
  height: auto;
  line-height: 1;
}
.tg svg.carousel-item > img,
.tg svg.carousel-item > a > img,
.tg .carousel-item > img[src$=".svg"],
.tg .carousel-item > a > img[src$=".svg"],
.tg .carousel-item > img[src^="data:image/svg"],
.tg .carousel-item > a > img[src^="data:image/svg"] {
  width: 100%;
}
.tg .carousel-controls .carousel-control {
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  z-index: 1;
  outline: none;
  text-decoration: none;
  opacity: 0.6;
}
.tg .carousel-controls .carousel-control + .carousel-control {
  right: -100px;
  left: auto;
}
.tg .carousel-controls .carousel-control > [class^="icon-"],
.tg .carousel-controls .carousel-control > [class*=" icon-"] {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #767676;
  margin-top: -0.5em;
  margin-left: -0.5em;
}
.tg .carousel-controls .carousel-control:hover {
  opacity: 0.8;
}
.tg .carousel-controls .carousel-control:hover > [class^="icon-"],
.tg .carousel-controls .carousel-control:hover > [class*=" icon-"] {
  color: #ffffff;
}
.tg .carousel a:active,
.tg .carousel button:active,
.tg .carousel a:focus,
.tg .carousel button:focus {
  outline: none;
}
.tg .carousel-inner.left-add,
.tg .carousel-inner.right-add {
  -webkit-transition: 0.6s ease-in-out -webkit-transform;
  -o-transition: 0.6s ease-in-out transform;
  transition: 0.6s ease-in-out transform;
}
.tg .carousel-inner.left-add .carousel-item,
.tg .carousel-inner.right-add .carousel-item {
  -webkit-transition: 0.6s ease-in-out -webkit-transform;
  -o-transition: 0.6s ease-in-out transform;
  transition: 0.6s ease-in-out transform;
}
.tg .carousel-inner.right .active {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.tg .carousel-inner.left .active {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tg .carousel-inner .carousel-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}
.tg .carousel-inner .carousel-item.active,
.tg .carousel-inner .carousel-item.next,
.tg .carousel-inner .carousel-item.prev {
  display: block;
  left: 0;
}
.tg .carousel-inner .carousel-item.next,
.tg .carousel-inner .carousel-item.prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.tg .carousel-inner .carousel-item.next {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.tg .carousel-inner .carousel-item.prev {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.tg .carousel-inner.left .next,
.tg .carousel-inner.right .prev {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.tg .carousel-b.carousel .carousel-indicators {
  margin-top: -48px !important;
}
.tg .carousel-c.carousel .carousel-indicators a,
.tg .carousel-c.carousel .carousel-indicators button {
  font-size: 21px;
  font-size: 1.3125rem;
  padding: 0 12px;
}
.tg .carousel-c.carousel .carousel-nav {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tg .carousel-c.carousel .carousel-controls {
  position: relative;
  height: 100%;
}
.tg .carousel-c.carousel .carousel-controls .carousel-control {
  margin-top: -26px;
}
*/

.tg .collapsible-header {
  cursor: pointer;
}
.tg .collapsible-header a {
  text-decoration: none;
}
.tg .collapsible-header:hover {
  background-color: #d5d5d5;
}
.tg .collapsible-header:hover a {
  color: #333333;
}
.tg .collapsible-header .show-hide {
  display: none;
}
.tg .collapsible-header .icon-collapsible-toggle {
  position: relative;
  top: -1px;
  display: inline-block;
  content: "\e908";
  margin-right: 10px;
}
.tg .collapsible-header .icon-collapsible-toggle:before {
  content: "\e908" !important;
}
.tg .collapsed.collapsible-header {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.tg .collapsed.collapsible-header .show-hide {
  display: block;
}
.tg .collapsed.collapsible-header .show-hide .stacked-icon {
  vertical-align: baseline;
}
.tg .collapsed .icon-collapsible-toggle {
  content: "\e905";
}
.tg .collapsed .icon-collapsible-toggle:before {
  content: "\e905" !important;
}
.tg .gray-dark-priba {
  background-color: #767676 !important;
  color: #ffffff;
}
.tg .gray-priba {
  background-color: #adadad !important;
}
.tg .h-color-priba-a {
  color: #adadad !important;
}
.tg .h-color-priba-b {
  color: #767676 !important;
}
.tg a.h-color-priba-b:hover,
.tg a.h-color-priba-b:focus {
  color: #5d5d5d !important;
}
.tg .arial-r-xs,
.tg .rockwell-r-xs,
.tg .rockwell-l-xs {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .arial-r-sm,
.tg .rockwell-r-sm,
.tg .rockwell-l-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .arial-r-md,
.tg .rockwell-r-md,
.tg .rockwell-l-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
}
.tg .arial-r-lg,
.tg .rockwell-r-lg,
.tg .rockwell-l-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .arial-r-xl,
.tg .rockwell-r-xl,
.tg .rockwell-l-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .arial-r-xxl,
.tg .rockwell-r-xxl,
.tg .rockwell-l-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .arial-r-xxxl,
.tg .rockwell-r-xxxl,
.tg .rockwell-l-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.3;
}
.tg .arial-r-hg,
.tg .rockwell-r-hg,
.tg .rockwell-l-xhg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 1.2;
}
.tg .arial-r-xh,
.tg .rockwell-r-xh,
.tg .rockwell-l-xxh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: normal;
  line-height: 1;
}
.tg .arial-b,
.tg .rockwell-b {
  font-weight: bold !important;
}
.tg .arial-b-xs,
.tg .rockwell-b-xs {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
}
.tg .arial-b-sm,
.tg .rockwell-b-sm {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .arial-b-md,
.tg .rockwell-b-md {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}
.tg .arial-b-lg,
.tg .rockwell-b-lg {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .arial-b-xl,
.tg .rockwell-b-xl {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.4;
}
.tg .arial-b-xxl,
.tg .rockwell-b-xxl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
}
.tg .arial-b-xxxl,
.tg .rockwell-b-xxxl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
}
.tg .arial-b-hg,
.tg .rockwell-b-hg {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
}
.tg .arial-b-xh,
.tg .rockwell-b-xh {
  font-size: 44px;
  font-size: 2.75rem;
  font-weight: bold;
  line-height: 1;
}
.tg .help-block,
.tg .help-inline,
.tg .help-additional {
  display: block;
  color: #767676;
  white-space: normal;
}
.tg .help-block {
  margin-top: 12px;
}
.tg .help-additional {
  padding: 0;
}
@media (min-width: 768px) {
  .tg .help-additional {
    position: absolute;
    margin-top: -24px;
  }
}
@media (min-width: 768px) {
  .tg .additional-help .form-group {
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .tg .form-inline.additional-help .form-group {
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .tg .form-horizontal .additional-help {
    padding-top: 24px;
  }
}
@media (min-width: 768px) {
  .tg .form-horizontal .additional-help .form-group {
    padding-top: 0;
  }
}
.tg .form-control-static {
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.tg .form-inline .form-control-static {
  display: inline-block;
  min-width: auto;
  vertical-align: middle;
}
.tg label.radio-inline,
.tg label.checkbox-inline,
.tg label.radio,
.tg label.checkbox {
  padding-left: 20px;
}
.tg .form-horizontal .control-label {
  padding-top: 5px;
}
.tg .form-horizontal .control-label label {
  padding-top: 0;
}
.tg .fieldset-row {
  margin-bottom: 12px;
}
.tg .form-group.btn-bar {
  margin-top: 24px;
}
.tg .has-error .form-control {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2;
  box-shadow: inset 0 3px 2px -2px #d8d5d2;
  border-color: #ff0000;
}
.tg .has-error .form-control:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #ff6666;
  box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #ff6666;
  border-color: #990000;
}
.tg .has-error .input-group-addon {
  border-color: #ff0000;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-info .form-control {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2;
  box-shadow: inset 0 3px 2px -2px #d8d5d2;
  border-color: #60A6DA;
}
.tg .has-info .form-control:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #55dbff;
  box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #55dbff;
  border-color: #006b88;
}
.tg .has-info .input-group-addon {
  border-color: #60A6DA;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-success .form-control {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2;
  box-shadow: inset 0 3px 2px -2px #d8d5d2;
  border-color: #349651;
}
.tg .has-success .form-control:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #3be53f;
  box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #3be53f;
  border-color: #0a4a0b;
}
.tg .has-success .input-group-addon {
  border-color: #349651;
  background-color: #ffffff;
  color: #333333;
}
.tg .has-warning .form-control {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2;
  box-shadow: inset 0 3px 2px -2px #d8d5d2;
  border-color: #ff6200;
}
.tg .has-warning .form-control:focus {
  -webkit-box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #ffa166;
  box-shadow: inset 0 3px 2px -2px #d8d5d2, 0 0 6px #ffa166;
  border-color: #993b00;
}
.tg .has-warning .input-group-addon {
  border-color: #ff6200;
  background-color: #ffffff;
  color: #333333;
}
.tg .h-bor-e {
  border-color: #544641 !important;
}
.tg .h-bor-f {
  border-color: #998575 !important;
}
.tg .h-bor-g {
  border-color: #5e6a76 !important;
}
.tg .h-bor-h {
  border-color: #8f9eaf !important;
}
.tg .h-bor-i {
  border-color: #899893 !important;
}
.tg .h-bor-j {
  border-color: #a4b5a5 !important;
}
.tg .h-text-primary,
.tg .h-text-warning {
  color: #ff6200 !important;
}
.tg a.h-text-primary:hover,
.tg a.h-text-warning:hover,
.tg a.h-text-primary:focus,
.tg a.h-text-warning:focus {
  color: #cc4e00 !important;
}
.tg .input-group-btn:last-child > [ing-popover] > .btn {
  border-color: #d5d5d5;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: -1px;
}
.tg .introduction {
  text-align: center;
}
.tg .media-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}
.tg .media-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tg .pagination-steps.pagination {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 30px;
  border-collapse: separate;
}
.tg .pagination-steps.pagination:before,
.tg .pagination-steps.pagination:after {
  content: none;
}
@media (min-width: 768px) {
  .tg .pagination-steps.pagination {
    height: 48px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps.pagination {
    height: 60px;
  }
}
.tg .pagination-steps-wrapper .pagination-complete {
  display: table;
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ebebeb;
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper .pagination-complete {
    width: 80px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper .pagination-complete {
    width: 100px;
  }
}
.tg .pagination-steps-wrapper .pagination-complete .pagination-complete-item {
  display: table-cell;
  line-height: 1.2;
  text-align: center;
  color: #adadad;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .tg .pagination-steps-wrapper .pagination-complete .pagination-complete-item {
    height: 30px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper .pagination-complete .pagination-complete-item {
    height: 48px;
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper .pagination-complete .pagination-complete-item {
    height: 60px;
    padding-left: 30px;
  }
}
.tg .pagination-steps-wrapper .pagination-complete .icon,
.tg .pagination-steps-wrapper .pagination-complete .stacked-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #adadad;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.tg .pagination-steps-wrapper .pagination-complete .icon:before,
.tg .pagination-steps-wrapper .pagination-complete .stacked-icon:before {
  content: "\e92d";
}
.tg .pagination-steps-wrapper .pagination-complete .icon:before:before,
.tg .pagination-steps-wrapper .pagination-complete .stacked-icon:before:before {
  content: "\e92d" !important;
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper .pagination-complete .icon,
  .tg .pagination-steps-wrapper .pagination-complete .stacked-icon {
    width: 27px;
    height: 27px;
    font-size: 27px;
    font-size: 1.6875rem;
  }
  .tg .pagination-steps-wrapper .pagination-complete .icon .stacked-icon-text,
  .tg .pagination-steps-wrapper .pagination-complete .stacked-icon .stacked-icon-text {
    font-size: 12px;
    font-size: 0.75rem;
    font-weight: normal;
    line-height: 1.2;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper .pagination-complete .icon,
  .tg .pagination-steps-wrapper .pagination-complete .stacked-icon {
    width: 32px;
    height: 32px;
    font-size: 32px;
    font-size: 2rem;
  }
  .tg .pagination-steps-wrapper .pagination-complete .icon .stacked-icon-text,
  .tg .pagination-steps-wrapper .pagination-complete .stacked-icon .stacked-icon-text {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.4;
  }
}
.tg .pagination-steps-wrapper .pagination-complete.active {
  background-color: #ffffff;
}
.tg .pagination-steps-wrapper .pagination-complete.active .icon,
.tg .pagination-steps-wrapper .pagination-complete.active .stacked-icon {
  color: #349651;
}
.tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete {
  width: 56px;
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete {
    width: 120px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete {
    width: 150px;
  }
}
.tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete .pagination-complete-item {
  padding: 0 10px;
}
.tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete .pagination-complete-item + .pagination-complete-item {
  text-align: left;
  padding-left: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete .pagination-complete-item + .pagination-complete-item {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .tg .pagination-steps-wrapper.pagination-complete-text .pagination-complete .pagination-complete-item + .pagination-complete-item {
    display: none;
  }
}
.tg .pagination-steps .pagination-element {
  display: block;
  float: none;
  width: 100%;
  height: inherit;
  border: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #ebebeb;
  line-height: 1.2;
  color: #adadad;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .pagination-steps .pagination-element {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.tg .pagination-steps .pagination-item {
  display: table-cell;
  height: inherit;
  vertical-align: middle;
}
.tg .pagination-steps .pagination-item:first-child .pagination-element {
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  padding-left: 10px;
}
.tg .pagination-steps .pagination-text {
  display: none;
  height: inherit;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .tg .pagination-steps .pagination-text {
    display: table-cell;
  }
}
.tg .pagination-type {
  display: table-cell;
  height: inherit;
  width: 30px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .tg .pagination-type {
    width: 1%;
  }
}
@media (min-width: 768px) {
  .tg .pagination-type {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .tg .pagination-type {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tg .pagination-steps-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #adadad;
  -webkit-border-top-right-radius: 5px;
  border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  border-top-left-radius: 5px;
  background-color: #ffffff;
  margin-bottom: 24px;
}
.tg .pagination-steps .pagination-item.active .pagination-element {
  background-color: #adadad;
  color: #ffffff;
}
.tg .pagination-steps a.pagination-element:hover,
.tg .pagination-steps a.pagination-element:focus {
  background-color: #adadad;
  color: #ffffff;
}
.tg .pagination-steps .pagination-item.visited .pagination-element {
  background-color: #ffffff;
  color: #adadad;
}
.tg .pagination-steps .pagination-item.visited a.pagination-element:hover,
.tg .pagination-steps .pagination-item.visited a.pagination-element:focus {
  background-color: #adadad;
  color: #ffffff;
}
@media (max-width: 991px) {
  .tg .pagination-steps-a.pagination-steps {
    table-layout: auto;
    height: 30px;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    width: 26px;
    height: 26px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    top: 50%;
    right: -13px;
    margin-top: -13px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 50% \9;
    right: -38px \9;
    border-top: 30px solid \9;
    border-bottom: 30px solid \9;
    border-top-color: transparent \9 !important;
    border-bottom-color: transparent \9 !important;
    border-left: 30px solid #ebebeb \9;
    margin-top: -30px \9;
    border-left: 15px solid #d5d5d5 \9;
    right: -19px \9;
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    right: -26px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    width: 26px;
    height: 26px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    top: -1px;
    right: 1px;
    width: 26px;
    height: 26px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    -webkit-border-radius: 0 \9 !important;
    border-radius: 0 \9 !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    border-bottom-right-radius: 6px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-bottom-right-radius: 5px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-top: 31px solid transparent \9 !important;
    border-bottom: 31px solid transparent \9 !important;
    margin-top: -31px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    left: -14px \9;
    border-left: 15px solid #ffffff \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    left: -15px \9;
    border-left: 15px solid #ebebeb \9;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .pagination-steps-a.pagination-steps {
    table-layout: auto;
    height: 48px;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    width: 38px;
    height: 38px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    top: 50%;
    right: -19px;
    margin-top: -19px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 50% \9;
    border-top: 28px solid \9;
    border-bottom: 28px solid \9;
    border-top-color: transparent \9 !important;
    border-bottom-color: transparent \9 !important;
    border-left: 28px solid #ebebeb \9;
    margin-top: -28px \9;
    border-left: 14px solid #d5d5d5 \9;
    right: -18px \9;
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    right: -36px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    width: 38px;
    height: 38px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    top: -1px;
    right: 1px;
    width: 38px;
    height: 38px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    -webkit-border-radius: 0 \9 !important;
    border-radius: 0 \9 !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    border-bottom-right-radius: 6px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-bottom-right-radius: 5px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-top: 29px solid transparent \9 !important;
    border-bottom: 29px solid transparent \9 !important;
    margin-top: -29px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    left: -13px \9;
    border-left: 14px solid #ffffff \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    left: -14px \9;
    border-left: 14px solid #ebebeb \9;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-a.pagination-steps {
    height: 60px;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    width: 48px;
    height: 48px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    top: 50%;
    right: -24px;
    margin-top: -24px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
    top: 50% \9;
    right: -42px \9;
    border-top: 34px solid \9;
    border-bottom: 34px solid \9;
    border-top-color: transparent \9 !important;
    border-bottom-color: transparent \9 !important;
    border-left: 34px solid #ebebeb \9;
    margin-top: -34px \9;
    border-left: 17px solid #d5d5d5 \9;
    right: -21px \9;
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    right: -46px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    width: 48px;
    height: 48px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    top: -1px;
    right: 1px;
    width: 48px;
    height: 48px;
    -webkit-border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    -webkit-transform: rotate(0deg) \9;
    -ms-transform: rotate(0deg) \9;
    transform: rotate(0deg) \9;
    -webkit-border-radius: 0 \9 !important;
    border-radius: 0 \9 !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow {
    -ms-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    border-bottom-right-radius: 6px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow _:-ms-fullscreen,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-bottom-right-radius: 5px !important;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before,
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    border-top: 35px solid transparent \9 !important;
    border-bottom: 35px solid transparent \9 !important;
    margin-top: -35px \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:before,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:before {
    left: -16px \9;
    border-left: 17px solid #ffffff \9;
  }
  .tg .pagination-steps-a.pagination-steps .step-indicator-arrow:after,
  .tg .pagination-steps-a.pagination-steps .pagination-arrow:after {
    left: -17px \9;
    border-left: 17px solid #ebebeb \9;
  }
}
.tg .pagination-steps-a.pagination-steps .pagination-element {
  background-color: #ebebeb;
  color: #adadad;
}
@media (max-width: 767px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element {
    padding-left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element {
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element {
    padding-left: 40px;
  }
}
.tg .pagination-item:first-child .pagination-steps-a.pagination-steps .pagination-element:before {
  left: 6px;
}
.tg .pagination-steps-a.pagination-steps .pagination-element .pagination-type {
  width: 34px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element .pagination-type {
    width: 1%;
  }
}
@media (min-width: 768px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element .pagination-type {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-a.pagination-steps .pagination-element .pagination-type {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tg .pagination-steps-a.pagination-steps .pagination-item.active .pagination-element {
  background-color: #ff6200;
  color: #ffffff;
}
@media (min-width: 768px) {
  .tg .pagination-steps-a.pagination-steps .pagination-item.active .pagination-text {
    display: table-cell;
  }
}
.tg .pagination-steps-a.pagination-steps .pagination-item.active .step-indicator-arrow:before,
.tg .pagination-steps-a.pagination-steps .pagination-item.active .pagination-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .pagination-steps-a.pagination-steps .pagination-item.active .step-indicator-arrow:after,
.tg .pagination-steps-a.pagination-steps .pagination-item.active .pagination-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  border-right-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .pagination-steps-a.pagination-steps a.pagination-element:hover,
.tg .pagination-steps-a.pagination-steps a.pagination-element:focus {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .pagination-steps-a.pagination-steps a.pagination-element:hover .step-indicator-arrow:before,
.tg .pagination-steps-a.pagination-steps a.pagination-element:focus .step-indicator-arrow:before,
.tg .pagination-steps-a.pagination-steps a.pagination-element:hover .pagination-arrow:before,
.tg .pagination-steps-a.pagination-steps a.pagination-element:focus .pagination-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .pagination-steps-a.pagination-steps a.pagination-element:hover .step-indicator-arrow:after,
.tg .pagination-steps-a.pagination-steps a.pagination-element:focus .step-indicator-arrow:after,
.tg .pagination-steps-a.pagination-steps a.pagination-element:hover .pagination-arrow:after,
.tg .pagination-steps-a.pagination-steps a.pagination-element:focus .pagination-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  border-right-color: #ff6200 \9;
  border-left-color: #ff6200 \9;
}
.tg .pagination-steps-a.pagination-steps .pagination-item.visited .pagination-element {
  background-color: #ffffff;
  color: #ff6200;
}
.tg .pagination-steps-a.pagination-steps .pagination-item.visited a.pagination-element:hover,
.tg .pagination-steps-a.pagination-steps .pagination-item.visited a.pagination-element:focus {
  background-color: #ff6200;
  color: #ffffff;
}
.tg .pagination-steps-a.pagination-steps .pagination-item.visited .step-indicator-arrow:before,
.tg .pagination-steps-a.pagination-steps .pagination-item.visited .pagination-arrow:before {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ebebeb 50%);
  border-right-color: #ebebeb \9;
  border-left-color: #ebebeb \9;
}
.tg .pagination-steps-a.pagination-steps .pagination-item.visited .step-indicator-arrow:after,
.tg .pagination-steps-a.pagination-steps .pagination-item.visited .pagination-arrow:after {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ffffff 50%);
  border-right-color: #ffffff \9;
  border-left-color: #ffffff \9;
}
.tg .pagination-steps-wrapper-a.pagination-steps-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid #adadad;
  background-color: #ebebeb;
  padding: 0 56px 0 0;
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper-a.pagination-steps-wrapper {
    padding-right: 80px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper-a.pagination-steps-wrapper {
    padding-right: 100px;
  }
}
.tg .pagination-steps-wrapper-a.pagination-steps-wrapper.pagination-complete-text {
  padding-right: 56px;
}
@media (min-width: 768px) {
  .tg .pagination-steps-wrapper-a.pagination-steps-wrapper.pagination-complete-text {
    padding-right: 120px;
  }
}
@media (min-width: 992px) {
  .tg .pagination-steps-wrapper-a.pagination-steps-wrapper.pagination-complete-text {
    padding-right: 150px;
  }
}
.tg .panel-heading .pagination-steps-wrapper {
  border-width: 0 0 1px 0;
  border-color: #d5d5d5;
  margin-bottom: 0;
}
.tg .panel-img-dep {
  display: block;
  overflow: hidden;
  -webkit-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.tg .blockquote-a {
  background-color: #998575 !important;
  color: #ffffff;
}
.tg .blockquote-a blockquote p:last-child {
  margin-bottom: 0;
}
.tg .blockquote-a blockquote p:before,
.tg .blockquote-a blockquote p:after {
  position: absolute;
  font-family: INGMe, "Arial", sans-serif;
}
.tg .blockquote-a blockquote p:first-of-type:before {
  margin-left: -20px;
  content: '\201C';
}
.tg .blockquote-a blockquote p:last-of-type:after {
  margin-left: 10px;
  content: '\201D';
}
.tg .blockquote-a .container {
  position: relative;
}
.tg .blockquote-a .panel-body {
  padding-top: 0;
}
.tg .blockquote-a cite {
  color: white;
}
@media (min-width: 768px) {
  .tg .blockquote-a cite span {
    display: block;
  }
}
.tg .blockquote-a footer {
  color: white;
}
.tg .blockquote-a .img-right {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}
.tg .blockquote-a .img-left {
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 100%;
}
.tg .l-grid {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tg .l-grid:before,
.tg .l-grid:after {
  content: " ";
  display: table;
}
.tg .l-grid:after {
  clear: both;
}
.tg .l-grid:before,
.tg .l-grid:after {
  content: " ";
  display: table;
}
.tg .l-grid:after {
  clear: both;
}
.tg .l-grid > div,
.tg .l-grid > li,
.tg .l-grid > .l-grid-outer {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  list-style: none;
  float: left;
  margin-top: 0;
}
.tg .l-grid > div > .l-grid-inner,
.tg .l-grid > li > .l-grid-inner,
.tg .l-grid > .l-grid-outer > .l-grid-inner {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
}
.tg .l-grid-gutter {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-right: -10px;
  margin-left: -10px;
}
.tg .l-grid-gutter > .l-grid-outer > .l-grid-inner {
  margin-right: 10px;
  margin-left: 10px;
}
.tg .l-grid-null {
  position: absolute;
  top: 0;
  bottom: 0;
}
.tg .l-grid-1 > li,
.tg .l-grid-1 > .l-grid-outer {
  width: 100%;
}
.tg .l-grid-1 > .l-grid-null {
  right: -100%;
}
.tg .l-grid-2 > li,
.tg .l-grid-2 > .l-grid-outer {
  width: 50%;
}
.tg .l-grid-2 > .l-grid-null {
  right: -50%;
}
.tg .l-grid-3 > li,
.tg .l-grid-3 > .l-grid-outer {
  width: 33.333333%;
}
.tg .l-grid-3 > .l-grid-null {
  right: -33.333333%;
}
.tg .l-grid-4 > li,
.tg .l-grid-4 > .l-grid-outer {
  width: 25%;
}
.tg .l-grid-4 > .l-grid-null {
  right: -25%;
}
.tg .l-grid-5 > li,
.tg .l-grid-5 > .l-grid-outer {
  width: 20%;
}
.tg .l-grid-5 > .l-grid-null {
  right: -20%;
}
.tg .l-grid-6 > li,
.tg .l-grid-6 > .l-grid-outer {
  width: 16.666666%;
}
.tg .l-grid-6 > .l-grid-null {
  right: -16.666666%;
}
.tg .l-grid-7 > li,
.tg .l-grid-7 > .l-grid-outer {
  width: 14.285714%;
}
.tg .l-grid-7 > .l-grid-null {
  right: -14.285714%;
}
.tg .l-grid-8 > li,
.tg .l-grid-8 > .l-grid-outer {
  width: 12.5%;
}
.tg .l-grid-8 > .l-grid-null {
  right: -12.5%;
}
.tg .l-grid-9 > li,
.tg .l-grid-9 > .l-grid-outer {
  width: 11.111111%;
}
.tg .l-grid-9 > .l-grid-null {
  right: -11.111111%;
}
.tg .l-grid-10 > li,
.tg .l-grid-10 > .l-grid-outer {
  width: 10%;
}
.tg .l-grid-10 > .l-grid-null {
  right: -10%;
}
.tg .l-grid-25-75 > .l-grid-outer {
  width: 75%;
}
.tg .l-grid-25-75 > .l-grid-outer:first-child {
  width: 25%;
}
.tg .l-grid-33-66 > .l-grid-outer {
  width: 66.666666%;
}
.tg .l-grid-33-66 > .l-grid-outer:first-child {
  width: 33.333333%;
}
.tg .l-grid-40-60 > .l-grid-outer {
  width: 60%;
}
.tg .l-grid-40-60 > .l-grid-outer:first-child {
  width: 40%;
}
.tg .l-grid-60-40 > .l-grid-outer {
  width: 40%;
}
.tg .l-grid-60-40 > .l-grid-outer:first-child {
  width: 60%;
}
.tg .l-grid-66-33 > .l-grid-outer {
  width: 33.333333%;
}
.tg .l-grid-66-33 > .l-grid-outer:first-child {
  width: 66.666666%;
}
.tg .l-grid-75-25 > .l-grid-outer {
  width: 25%;
}
.tg .l-grid-75-25 > .l-grid-outer:first-child {
  width: 75%;
}
@media (max-width: 767px) {
  .tg .table-responsive {
    width: 100%;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #d5d5d5;
    margin-bottom: 18px;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table > thead > tr > th,
  .tg .table-responsive > .table > tbody > tr > th,
  .tg .table-responsive > .table > tfoot > tr > th,
  .tg .table-responsive > .table > thead > tr > td,
  .tg .table-responsive > .table > tbody > tr > td,
  .tg .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table-bordered > thead > tr > th:first-child,
  .tg .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .tg .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .tg .table-responsive > .table-bordered > thead > tr > td:first-child,
  .tg .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .tg .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table-bordered > thead > tr > th:last-child,
  .tg .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .tg .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .tg .table-responsive > .table-bordered > thead > tr > td:last-child,
  .tg .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .tg .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
}
@media (max-width: 767px) {
  .tg .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .tg .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .tg .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .tg .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
.tg .panel-bg-mig-a,
.tg .panel-bg-mig-a-lr,
.tg .panel-bg-mig-a-r,
.tg .panel-bg-mig-a-l,
.tg .panel-bg-mig-a-messages {
  position: relative;
}
.tg .panel-bg-mig-a:before,
.tg .panel-bg-mig-a:after,
.tg .panel-bg-mig-a-lr:before,
.tg .panel-bg-mig-a-lr:after,
.tg .panel-bg-mig-a-r:before,
.tg .panel-bg-mig-a-r:after,
.tg .panel-bg-mig-a-l:before,
.tg .panel-bg-mig-a-l:after,
.tg .panel-bg-mig-a-messages:before,
.tg .panel-bg-mig-a-messages:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 230px;
  height: 100%;
  background: #ebebeb;
}
.tg .panel-bg-mig-a:after,
.tg .panel-bg-mig-a-lr:after,
.tg .panel-bg-mig-a-r:after,
.tg .panel-bg-mig-a-l:after,
.tg .panel-bg-mig-a-messages:after {
  z-index: -1;
}
.tg .panel-bg-mig-a-lr:before {
  left: 0;
}
.tg .panel-bg-mig-a-lr:after {
  right: 0;
}
.tg .panel-bg-mig-a-r:before {
  right: 0;
}
.tg .panel-bg-mig-a-r:after {
  content: none;
}
.tg .panel-bg-mig-a-l:before {
  left: 0;
}
.tg .panel-bg-mig-a-l:after {
  content: none;
}
.tg .panel-bg-mig-a-messages:before {
  width: 260px;
  left: 0;
}
.tg .panel-bg-mig-a-messages:after {
  width: 260px;
  content: none;
}
.tg .row-bg-mig-a {
  position: relative;
}
.tg .row-bg-mig-a:before,
.tg .row-bg-mig-a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 10000px;
  height: 100%;
  background: #f5f5f5;
}
.tg .row-bg-mig-a:before {
  left: 100%;
}
.tg .row-bg-mig-a:after {
  right: 100%;
}
.tg .list-group-mig-a {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.tg .list-group-mig-a .list-group-item {
  overflow: hidden;
  border-color: #ffffff;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 1px 0;
  background-color: transparent;
  padding: 0;
}
.tg .list-group-mig-a .list-group-item:first-child {
  border-top: 0;
}
.tg .list-group-mig-a .list-group-item > a {
  display: block;
  border-bottom: 1px solid #d5d5d5;
  color: #333333;
  text-decoration: none;
  padding: 4px 10px;
}
.tg .list-group-mig-a .list-group-item > a .list-group-item-heading {
  color: #333333;
}
.tg .list-group-mig-a .list-group-item > a:hover,
.tg .list-group-mig-a .list-group-item > a:focus {
  background-color: #ffffff;
}
.tg .list-group-mig-a .list-group-item.active,
.tg .list-group-mig-a .list-group-item.active:hover,
.tg .list-group-mig-a .list-group-item.active:focus {
  z-index: 2;
  border-right-color: #ffffff;
  background-color: #ffffff;
}
.tg .list-group-mig-a .list-group-item.active > a,
.tg .list-group-mig-a .list-group-item.active:hover > a,
.tg .list-group-mig-a .list-group-item.active:focus > a {
  cursor: default;
}
.tg .list-group-mig-a .list-group-item.active {
  margin-right: -1px;
  padding-right: 1px;
}
.tg .list-group-mig-a.list-group-messages {
  margin-right: -40px;
}
.tg .list-group-mig-a.list-group-messages .list-group-item.active,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:hover,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:focus {
  background-color: #ff6200;
}
.tg .list-group-mig-a.list-group-messages .list-group-item.active a,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:hover a,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:focus a {
  color: #ffffff;
}
.tg .list-group-mig-a.list-group-messages .list-group-item.active a:hover,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:hover a:hover,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:focus a:hover,
.tg .list-group-mig-a.list-group-messages .list-group-item.active a:focus,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:hover a:focus,
.tg .list-group-mig-a.list-group-messages .list-group-item.active:focus a:focus {
  background-color: #ff6200;
}
.tg .list-group-mig-a.list-group-messages .list-group-item a {
  height: 81px;
}
.tg .list-group-mig-a.list-group-messages .list-group-item a .list-group-item-additives {
  float: right;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
  line-height: 1.8;
  margin-left: 10px;
}
.tg .list-group-mig-a.list-group-messages .list-group-item a .list-group-item-additives .list-group-item-icons {
  display: block;
  text-align: right;
  line-height: 1;
}
.tg .list-group-mig-a.list-group-messages .list-group-item a .list-group-item-additives .list-group-item-icons .icon {
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #767676;
}
.tg .list-group-mig-a.list-group-messages .list-group-item a .not-read {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  line-height: 1.7;
}
.tg .list-group-mig-a.list-group-messages .list-group-item.active a .list-group-item-additives .list-group-item-icons .icon {
  color: inherit;
}
.tg .list-group-mig-b .list-group-item:after {
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: 'ing-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 14px;
  height: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  content: "\e952";
  margin-top: -7px;
}
.tg .list-group-mig-b .list-group-item:after:before {
  content: "\e952" !important;
}
@media (min-width: 992px) {
  .tg .list-group-mig-b .list-group-item {
    padding-right: 24px;
  }
}
.tg .list-group-mig-compare-a.active {
  background-color: #f5f5f5;
  margin-bottom: 48px;
  position: relative;
}
.tg .list-group-mig-compare-a.active:before {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: -o-linear-gradient(315deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 50%, #ff6200 50%);
  content: '';
  left: 50%;
  bottom: -25px;
  margin-left: -25px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tg .list-group-mig-compare-a .list-group-item {
  height: 43px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.2;
  padding-left: 10px;
  padding-right: 10px;
}
.tg .list-group-mig-compare-a .list-group-item.list-group-heading {
  height: 100px;
}
.tg .list-group-mig-compare-a .list-group-item.list-group-footer {
  height: 60px;
}
.tg .list-group-mig-compare-a .list-group-item.h-bold {
  font-weight: bold;
}
.tg .list-group-mig-compare-a .list-group-synopsis {
  margin-top: 100px;
}
.tg .list-group-mig-compare-a .list-group-synopsis .list-group-item {
  -webkit-border-radius: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
}
.tg .riaf-focusgroup-column-left-inner {
  margin: -12px;
}
.tg .alerts-mig-table table {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.4;
}
.tg .alerts-mig-table h2 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0;
}
.tg .navbar-a-wrapper.old-content-correction {
  margin-bottom: 53px !important;
}
.tg .navbar-b.old-content-correction {
  margin-bottom: 3px !important;
}

.tg .h-bg-d .panel-body,
.tg .h-bg-k .panel-body,
.tg .h-bg-e .panel-body,
.tg .h-bg-f .panel-body, 
.tg .h-bg-g .panel-body,
.tg .h-bg-h .panel-body,
.tg .h-bg-i .panel-body,
.tg .h-bg-j .panel-body {
	color:#333333;
}

.list-b .row {
	margin-bottom:15px	
}

.tg .footrow:before,
.tg .footrow:after {
	content: " ";
	display: table;
}
.tg .footrow:after {
	clear: both;
}
.tg .footrow {
	display: block;	
}

.td strong {
	font-weight: bold;
}

.tg .position-xxs.position-left {
	padding-left: 34px;
}

.tg .icon.icon-social-link {
	width: 27px;
	height: 27px;
	border: 0;
}

.hide {
	display: none;
}

.tg a:hover img.icon-social-link.normal {
	display: none;
}

.tg a:hover img.icon-social-link.hide {
	display: block;
}

.tg .navbar-b .language {
	position: relative;
	z-index: 1093;
	float: right;
	display: inline-block;
	margin: 27px 0 0 18px;
	padding: 0;
}
.tg .navbar-b .language li {
	line-height: 1;
	list-style-type: none;
}
.tg .navbar-b .language > li {
	float: left;
	border-right: 1px solid #d5d5d5;
	padding: 2px 10px;
	margin-top: -2px;
	margin-bottom: -4px;
}
.tg .navbar-b .language > li a {
	border-bottom: 0;
	color: #333333;
	text-decoration: none;
	margin-bottom: -2px;
}
.tg .navbar-b .language > li a.active {
	padding-bottom: 10px;
	font-weight: bold;
	color: #ff6200;
	text-decoration: none;
}
.tg .navbar-b .language > li a.active:hover {
	padding-bottom: 10px;
	border-bottom: 3px solid #ff6200;
	color: #ff6200;
}
.tg .navbar-b .language > li a:hover {
	padding-bottom: 2px;
	border-bottom: 1px solid #333333;
	cursor: pointer;
}
.tg .navbar-b .language li:last-child {
	border-right: 0;
}
.tg .alert p {
	margin: 0;
}
.tg .alert ul {
	margin: 0;
}
.tg .alert ol {
	margin: 0;
}
.tg .alert .btn-primary span {
	color: #ffffff;
}
.tg .alert .btn-primary:hover span {
	color: #ff6200;
}
.tg .alert.popinBar-top {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 5000;
}
.tg .alert.popinBar-bottom {
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	margin-bottom: 0px;
	z-index: 5000;
}
.tg .alert.cookieBar {
	margin-bottom: 0px;
	z-index: 6000;
}



div.search span.icon {
	/* fix inherited aem main.css */
	background-image:none;	
}


.container .container {
	width:auto;
}

.tg .tab-content {
	margin-bottom:20px;	
}


.timeline {
	border-left: 2px solid #e7e8ea;
	padding-left: 20px;
	margin-left: 5px;
}

.timeline .timeline-item {
	position: relative;
	border-bottom: 1px solid #f6f6f7;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.timeline .timeline-item .news-date {
	line-height: 1;
	font-weight: 700;
	font-size: 11px;
}

.timeline .timeline-item:before {
	content: "";
	width: 14px;
	height: 14px;
	border-radius: 7px;
	border: 2px solid #e7e8ea;
	background: #fff;
	position: absolute;
	left: -28px;
	top: 0;
}

.timeline .timeline-item .news-title {
	color: #ff6200;
	font-size: 20px;
	margin: 5px 0;
}

.timeline .timeline-item .news-description {
	font-size: 14px;
}

.timeline .timeline-item .author .author-name {
	color: #858d95;
	font-size: 11px;
	line-height: 20px;
	margin-left: 30px;
}

.timeline .timeline-item .author .author-picture {
	float: left;
	width: 20px;
	height: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.title , .text, .ribbon-element-text , .list {
	word-wrap: break-word; 
}

/* Allow line breaks in FAQ questions. */
div.faq > div > button > div > div > h3 {
	white-space: normal;
}

/** Forced width when embedded in an iFrame. */
.tg .ing-width33 {
	width: 33.33333333%;
}
.tg .ing-width50 {
	width: 50%;
}
.tg .ing-width66 {
	width: 66.66666667%;
}
.tg .ing-width100 {
	width: 100%;
}

/* Smaller screen (phone) breakpoint
   The actual width value comes from the file grid.less */
@media (max-width: 650px) {
	.tg .ing-phone-hide {
		display: none;
	}
	.tg .ing-phone-width33 {
		width: 33.33333333%;
	}
	.tg .ing-phone-width50 {
		width: 50%;
	}
	.tg .ing-phone-width66 {
		width: 66.66666667%;
	}
	.tg .ing-phone-width100 {
		width: 100%;
	}
}

/* Tablet breakpoint
   The actual width values come from the file grid.less */
@media (min-width: 651px) and (max-width: 1200px) {
	.tg .ing-tablet-hide {
		display: none;
	}
	.tg .ing-tablet-width33 {
		width: 33.33333333%;
	}
	.tg .ing-tablet-width50 {
		width: 50%;
	}
	.tg .ing-tablet-width66 {
		width: 66.66666667%;
	}
	.tg .ing-tablet-width100 {
		width: 100%;
	}
}

.number-slider-wrapper{
	padding-top:10px;
}
.img-responsive,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

.carousel {
  position: relative;
}

div.carousel {
  margin-top: 0px;
  margin-bottom: 3px;
}

.carousel-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-inner > .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}

.carousel .subtitles {
	box-shadow: 0 3px 00 rgba(0,0,0,.15);
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    -o-transition: -o-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}

.carousel-control > .icon {
	position: relative;
    text-decoration: none;
    color: #fff;
}
    
.carousel-control.left {
  /* background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);*/
}
.carousel-control.right {
  left: auto;
  right: 0;
  /*background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);*/
}
.carousel-control:hover,
.carousel-control:focus {
  outline: 0;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .carousel-chevron-left,
.carousel-control .carousel-chevron-right {
  position: absolute;
  top: 50%;
  margin-top: -10px;
  z-index: 5;
  display: inline-block;
  color:#ffffff;
}
.carousel-control .icon-prev,
.carousel-control .carousel-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .carousel-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  line-height: 1;
  font-family: serif;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}

.carousel-default-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 100;
  width: 60%;
  margin-left: -30%;
  padding-left: 0;
  list-style: none;
  text-align: center;
}

.carousel-default-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
}
.carousel-default-indicators .active {
  margin: 0;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
}

.carousel-caption {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 20px;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.carousel-caption .btn {
  text-shadow: none;
}



.tg .carousel-submenu-indicators {
  width: 100%;
  z-index: 1;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0;
  padding: 0;
}
.tg .carousel-submenu-indicators > li {
  display: inline-block;
}
.tg .carousel-submenu-indicators > li > a {
  z-index: 2;
}

.tg .carousel-submenu-indicators > li > .arrow  {
	display:none;
}
.tg .carousel-submenu-indicators > li.active > .arrow  {
	display:inherit;
}


@media screen and (min-width: 768px) {
  .carousel-control .carousel-chevron-left,
  .carousel-control .carousel-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -10px;
    font-size: 30px;
  }
  .carousel-control .carousel-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -10px;
  }
  .carousel-control .carousel-chevron-right,
  .carousel-control .icon-next {
    margin-right: -10px;
  }
  .carousel-caption {
    left: 20%;
    right: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}

@media screen and (max-width: 650px) {
	.carousel-inner {
		box-shadow: 0 1px 00 rgba(0,0,0,.15);
	}
}

/* Explose modifications */
.tg .pictogramList .panel .media-list {
  margin-bottom: 0;
}
.tg .pictogramList .panel.h-bg-e-darker .media-heading .media-title {
  color: white;
}
.tg .pictogramList .panel.h-bg-e-darker .media-content:after {
  color: #fff;
}
.tg .media-c {
  padding: 30px 40px 30px 20px;
}
.tg .media-c .media-object {
  width: 60px;
}
.tg .media-c .media-content {
  padding-left: 20px;
}
.tg .media-c .media-content:after {
  font-size: 18px;
  color: #D5D5D5;
  margin-top: -10px;
  width: 14px;
  height: 18px;
  right: -7px;
  transition: right 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.tg .media-c .media-content .media-title {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 15px;
}
.tg .media-c:last-child:after {
  border-bottom: none !important;
}
.tg .media-c:last-child:before {
  border-top: none !important;
}
.tg .media-c:hover .media-content:after {
  right: -12px;
}
.tg .media-c:hover .media-body {
  text-decoration: none;
}
.tg .media-c .icon:before {
  z-index: 0;
}
.tg .h-bg-l-priba {
  background-color: #000 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #ffffff;
}
.tg .brandbar .brandbar-header .brandbar-heading {
  padding: 25px;
}
.tg .brandbar .brandbar-header .brandbar-heading .brandbar-title,
.tg .brandbar .brandbar-header .brandbar-heading .brandbar-lead {
  text-shadow: none;
}
.tg .brandbar .brandbar-header .brandbar-heading .brandbar-lead:last-child {
  margin: 0;
}
.tg .brandbar .brandbar-header .brandbar-heading .brandbar-lead:last-child p {
  margin: 0;
}
.tg .responsiverow .container .responsiverow .container {
  padding-left: 0;
  padding-right: 0;
}
.tg .responsivegrid .container .aem-Grid.aem-Grid--12 {
  margin-left: -10px;
  margin-right: -10px;
}
.tg .responsivegrid .container .aem-GridColumn {
  padding: 0 10px;
}
.tg .panel.no-border {
  border: none !important;
  box-shadow: none !important;
}
.tg .panel.no-border .panel-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 0 !important;
}
.tg .responsivegrid .grid-cols-stretch .aem-Grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.tg .responsivegrid .grid-cols-stretch .aem-Grid:before,
.tg .responsivegrid .grid-cols-stretch .aem-Grid:after {
  content: none;
}
.tg .responsivegrid .grid-cols-stretch .aem-Grid .aem-GridColumn {
  display: flex;
}
.tg .responsivegrid .grid-cols-stretch .aem-Grid .aem-GridColumn > div.panel {
  width: 100%;
}
@media (max-width: 650px) {
  .tg .responsivegrid .grid-cols-stretch .aem-Grid .aem-GridColumn.aem-GridColumn--phone--hide {
    display: none !important;
  }
}
@media (min-width: 651px) and (max-width: 1200px) {
  .tg .responsivegrid .grid-cols-stretch .aem-Grid .aem-GridColumn.aem-GridColumn--tablet--hide {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .tg .responsivegrid .grid-cols-stretch .aem-Grid .aem-GridColumn.aem-GridColumn--default--hide {
    display: none !important;
  }
}
.tg .responsivegrid .grid-cols-stretch .aem-Grid .new {
  flex: 0 0 100%;
}
.tg .responsiverow .row-cols-stretch > div {
  display: flex;
  position: relative;
  padding-bottom: 50px;
}
.tg .responsiverow .row-cols-stretch > div > div:not(.new) {
  display: flex;
  width: 100%;
}
.tg .responsiverow .row-cols-stretch > div > div:not(.new) > div {
  width: 100%;
}
.tg .responsiverow .row-cols-stretch > div > div.new {
  position: absolute;
  bottom: 0;
  left: 0;
}
.tg a {
  color: #ff6200;
  transition: color 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  /* &:visited { color: #ff6200; } */
}
.tg a:hover {
  color: #cc4e00;
  text-decoration: underline;
}
.tg .btn {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.tg .btn:hover {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.tg .btn.btn-primary {
  border-color: #ff6200;
}
.tg .btn.btn-primary:hover {
  border-color: #e65800;
  background-color: #e65800;
  color: white;
}
.tg .btn.btn-secondary {
  border-color: #f5f5f5;
}
.tg .btn.btn-secondary:hover {
  border-color: #e8e8e8;
  background-color: #e8e8e8;
}
.tg .btn.btn-tertiary-a {
  border-color: #525199;
}
.tg .btn.btn-tertiary-a:hover {
  border-color: #6665ae;
  background-color: #6665ae;
  color: white;
}
.tg .btn.btn-tertiary-b {
  border-color: #60a6da;
}
.tg .btn.btn-tertiary-b:hover {
  border-color: #4b9ad5;
  background-color: #4b9ad5;
  color: white;
}
.tg .btn.btn-tertiary-c {
  border-color: #ab0066;
}
.tg .btn.btn-tertiary-c:hover {
  border-color: #d4007e;
  background-color: #d4007e;
  color: white;
}
.tg .btn.btn-tertiary-d {
  border-color: #d0d93c;
  color: #798019;
}
.tg .btn.btn-tertiary-d:hover {
  border-color: #d8e05e;
  background-color: #d8e05e;
  color: #798019;
}
.tg .btn.btn-tertiary-e {
  border-color: #349651;
}
.tg .btn.btn-tertiary-e:hover {
  border-color: #3fb461;
  background-color: #3fb461;
  color: white;
}
.tg a.link-b {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}
.tg a.link-b:hover {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), border-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) !important;
  text-decoration: none;
  border-color: #e65800;
  color: #e65800;
  cursor: pointer;
}
.tg div.section.video {
  margin-bottom: 20px;
}

.guideToolbarNode.toolbar.bottomToolbar {
  display: none;
}
.custom-form-component-wrapper {
  display: flex;
  padding-top: 12px;
}
.guideFieldWidget[type="radio"] input[type="radio"] {
  position: absolute;
  left: -9999999px;
}
.guideFieldWidget[type="radio"] + .guideWidgetLabel {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.guideFieldWidget[type="radio"] + .guideWidgetLabel:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid #ADADAD;
  border-radius: 50%;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
}
.guideFieldWidget[type="radio"] + .guideWidgetLabel:after {
  position: absolute;
  top: 18px;
  left: 4px;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #FF6200;
  content: "";
  visibility: hidden;
}
.guideFieldWidget[type="radio"][aria-selected="false"] + .guideWidgetLabel:after {
  visibility: hidden;
}
.guideFieldWidget[type="radio"][aria-selected="true"] + .guideWidgetLabel:after {
  visibility: visible;
}
.guideFieldWidget[type="checkbox"] input[type="checkbox"] {
  position: absolute;
  left: -9999999px;
}
.guideFieldWidget[type="checkbox"] + .guideWidgetLabel {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
.guideFieldWidget[type="checkbox"] + .guideWidgetLabel:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 1px solid #ADADAD;
  border-radius: 3px;
  box-shadow: inset 0 3px 2px -2px #d5d5d5;
}
.guideFieldWidget[type="checkbox"] + .guideWidgetLabel:after {
  font-family: ing-icons;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 16px;
  left: 2px;
  font-size: 14px;
  font-size: .875rem;
  color: #FF6200;
  content: "\e92d";
  visibility: hidden;
}
.guideFieldWidget[type="checkbox"][aria-selected="false"] + .guideWidgetLabel:after {
  visibility: hidden;
}
.guideFieldWidget[type="checkbox"][aria-selected="true"] + .guideWidgetLabel:after {
  visibility: visible;
}
.guideFieldWidget input[type="button"],
.guideFieldWidget button,
.guideFieldWidget .button {
  transition-timing-function: ease;
  border-top-color: #ffc099;
  border-bottom-color: #b34500;
  background: #FF6200;
  color: #FFF;
  border: 1px solid transparent;
  font-weight: bold;
}
.xfaButton button:focus {
  background: #FFF;
  color: #FF6200;
}
.xfaButton button:active {
  border-top-color: #ffc099;
  border-bottom-color: #b34500;
  background: #FF6200;
  color: #FFF;
}
.xfaButton button:hover {
  background: #FFF;
  border-color: #FF6200;
  color: #FF6200;
}
@media (min-width: 990px) {
  .xfaButton .moveNext:after {
    content: '>';
    margin-left: 10px;
  }
}
.xfaButton .movePrev {
  color: #FF6200;
  background-color: #F5F5F5;
  border-bottom-color: #cfcfcf;
}
@media (min-width: 990px) {
  .xfaButton .movePrev:before {
    content: '<';
    margin-right: 10px;
  }
}
.wizard-navigators {
  counter-reset: item;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
}
.wizard-navigators > li {
  counter-increment: item;
  display: inline-block;
  border: solid 0px #000000;
  margin-right: 10px;
  position: relative;
  border-radius: 0;
  color: #666666;
  background-color: #ffffff;
}
.wizard-navigators > li:before {
  content: counter(item) ".";
  float: left;
  border: 1px solid #0079c1;
  padding: 2px 2px 2px 4px;
  font-size: 10px;
  position: absolute;
  bottom: 12px;
}
.wizard-navigators > li .indicator {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  margin-left: 6px;
  border-radius: 0;
  margin-top: -39px;
  z-index: 20;
}
.wizard-navigators > li > a {
  color: inherit;
  display: table;
  padding: 0px 0px 0px 36px;
  font-size: inherit;
  text-decoration: none;
  word-break: break-word;
  white-space: normal;
}
.wizard-navigators > li.stepped {
  color: #02874e;
  background-color: #ffffff;
}
.wizard-navigators > li.completed {
  color: #FF6200;
  background-color: #FFF;
}
.wizard-navigators > li.active {
  color: #FFF;
  background-color: #FF6200;
}
.wizard-navigators > li.active .indicator {
  border-bottom-color: #FFF;
}
[id$="_guide-item-container"] > [id$="_guide-item"] {
  display: none;
}
[id$="_guide-item-container"] > [id$="_guide-item"].active {
  display: block;
}
.wizard .progress {
  height: 3px;
  margin-top: 9px;
  margin-right: 3px;
  background: #8f9399;
  border-radius: 0;
  border: 0;
}
.wizard .progress-bar-warning {
  background: #FF6200;
}
.wizard-nav-arrow {
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 200px;
  cursor: pointer;
}
.wizard-tab-disabled {
  opacity: 0.5;
}
@media (max-width: 991px) {
  .wizard-nav-arrow {
    display: none;
  }
}
.wizard-navigators {
  text-transform: uppercase;
}
.wizard-navigators > li {
  border: none;
  outline: none;
}
.wizard-navigators > li:before {
  border-width: 0px;
  margin-right: 10px;
  content: counter(item);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding: 3px 8px;
  color: #ffffff;
  font-size: 16px;
  background-color: #666666;
}
.wizard-navigators > li > a {
  margin-top: 20px;
}
.wizard-navigators > li.stepped .progress {
  background-color: #8f9399;
}
.wizard-navigators > li.stepped:before {
  background-color: #8f9399;
}
.wizard-navigators > li.completed .progress {
  background-color: #FF6200;
}
.wizard-navigators > li.completed:before {
  background-color: #FF6200;
}
.wizard-navigators > li.active {
  color: #FFF;
}
.wizard-navigators > li.active .progress {
  background: #FFF;
}
.wizard-navigators > li.active:before {
  background-color: #FFF;
  color: #FF6200;
}
.hiddenInput {
  position: absolute !important;
  width: 0px;
  height: 0px;
  opacity: 0;
}
.guideImage img,
.guideChart img {
  height: auto;
}
.custom-form-component-wrapper > .list {
  width: 100%;
}
.guideFieldNode.guideTextBox {
  display: flex;
  align-items: center;
}
.guideFieldNode.guideTextBox .guideFieldLabel.top {
  height: auto;
  padding-top: 0;
  margin-bottom: 0;
}
.guideFieldNode.guideTextBox .guideFieldLabel.top label {
  margin-bottom: 0;
}
.guideDropDownList > .guideFieldLabel.top {
  padding-top: 0;
  display: flex;
  align-items: center;
}
.guideRadioButtonGroup > .guideFieldLabel.top {
  height: auto;
}
.guideCheckBoxGroup > .guideFieldLabel.top {
  height: auto;
  padding-top: 0;
}
.guideCheckBoxGroup .guideCheckBoxItem {
  overflow: hidden;
}
.guideCheckBoxGroup .guideFieldLabel.top {
  height: auto;
}
.guideFieldNode.guideNumericBox {
  display: flex;
  align-items: center;
}
.guideFieldNode.guideNumericBox .guideFieldLabel.top {
  height: auto;
  padding-top: 0;
  margin-bottom: 0;
}
.guideFieldNode.guideNumericBox .guideFieldLabel.top label {
  margin-bottom: 0;
}
.guideFieldNode.guideDatePicker {
  display: flex;
  align-items: center;
}
.guideFieldNode.guideDatePicker .guideFieldLabel.top {
  height: auto;
  padding-top: 0;
  margin-bottom: 0;
}
.guideFieldNode.guideDatePicker .guideFieldLabel.top label {
  margin-bottom: 0;
}
.moveNext {
  display: flex;
}
.bt-appointment > * {
  display: inline-block;
}
.bt-appointment .guideFieldLabel {
  padding-top: 0;
}
.mobileLayout.simple .guide-mobile-navigator {
  display: none;
}
.mobileLayout.simple .guide-header-bar-wrapper .guide-header-bar {
  background-color: #FF6200;
}
.mobileLayout.simple .guide-header-bar-wrapper .guide-header-bar .guide-nav-toolbar-button {
  color: #FFFFFF;
}
.slider-handle > .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-handle > .btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tg .row {
  max-width: 100%;
}
.number-slider-widget {
  z-index: 0;
}
.numberSlider > .guideNumericBox > .guideFieldLabel.top {
  height: auto;
}
.guideRadioButtonItem.guideFieldVerticalAlignment {
  float: left;
}
.tg .icon:before {
  display: initial;
  font-family: inherit;
  margin-right: initial;
  margin-left: initial;
}
.guideRadioButtonGroupItems {
  padding-top: 10px;
}
.guideRadioButtonGroupItems .guideRadioButtonItem .guideFieldWidget.left.XfaCheckBox {
  display: none;
}
.guideCheckBoxGroupItems {
  padding-top: 10px;
}
.guideCheckBoxGroupItems .guideCheckBoxItem .guideFieldWidget.left.XfaCheckBox {
  display: none;
}
.accordion-navigators[id$="_guide-item-container"] > [id$="_guide-item"].active > .guideHeader > a {
  background-color: #FF6200;
}
.accordion-navigators[id$="_guide-item-container"] > [id$="_guide-item"].active > .guideHeader > a:hover {
  background-color: #FF6200;
}
.accordion-navigators[id$="_guide-item-container"] > [id$="_guide-item"].active > .guideHeader > a:focus {
  outline: none !important;
}
.accordion-navigators[id$="_guide-item-container"] > [id$="_guide-item"] > .guideHeader > a:focus {
  outline: none !important;
}

@media (max-width: 768px) {
  .bannering .published.img-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .bannering .published.img-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .bannering .published.title-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .bannering .published.title-mobile {
    display: none;
  }
}
.bannering .top {
  width: 936px;
  height: 200px;
}
.bannering .top span {
  left: 42%;
  top: 42%;
}
.bannering .top .no-button {
  margin-left: 42%;
}
.bannering .bottom {
  width: 976px;
  height: 70px;
}
.bannering .bottom span {
  left: 42%;
  top: 25%;
}
.bannering .bottom .no-button {
  margin-left: 42%;
}
.bannering .right_side {
  width: 530px;
}
.bannering .right_side span {
  left: 36%;
  top: 42%;
}
.bannering .right_side .no-button {
  margin-left: 33%;
}
.bannering .full_page {
  width: 500px;
  height: 420px;
}
.bannering .full_page span {
  left: 36%;
  top: 42%;
}
.bannering .full_page .no-button {
  margin-left: 33%;
}
@media (max-width: 768px) {
  .bannering .full_page {
    width: 280px;
    height: 440px;
  }
}
.bannering .banner-wrapper {
  position: relative;
  display: flex;
}
.bannering .banner-wrapper img {
  width: 100%;
}
.bannering .banner-wrapper span {
  position: absolute;
  font-size: 25px;
}
.bannering .banner-wrapper .default-close {
  right: 10px;
  top: 5px;
  left: inherit;
  color: white;
}
.bannering .banner-wrapper .gray-close {
  right: 10px;
  top: 5px;
  left: inherit;
  color: gray;
}
.bannering .banner-wrapper .orange-close {
  right: 10px;
  top: 5px;
  left: inherit;
  color: orange;
}
.bannering .banner-wrapper .actions-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 10px;
  width: 100%;
}
.bannering .banner-wrapper .actions-wrapper .action-button {
  font-size: 12px;
  position: initial;
}
.bannering .banner-wrapper .actions-wrapper .later-button {
  float: left;
}
.bannering .banner-wrapper .actions-wrapper .yes-button {
  float: right;
}

#solr-searcher .match:first-child {
  margin-top: 12px;
}
div.enableDebugSearch {
  font-family: ing-icons;
  font-size: x-small;
  display: none;
}

#ing-cookie-bar {
  width: 100%;
  position: fixed;
  bottom: 0px;
  border-radius: 0px;
  z-index: 3710;
}
#ing-cookie-bar .cookie-bar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1091;
}
#ing-cookie-bar .cookieBar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0px;
  background: white;
  border: 1px solid #adadad;
}
#ing-cookie-bar .stacked-icon {
  display: none;
}
#ing-cookie-bar .disclaimer-text {
  padding-bottom: 24px;
}
#ing-cookie-bar .btn-primary:hover span {
  color: white;
}
#ing-cookie-bar.config-mode {
  position: relative;
}
#ing-cookie-bar.config-mode .cookieBar {
  position: relative;
}

.cmp-tabs__tablist {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}
.cmp-tabs__tab {
  display: table-cell;
  background: #ffffff;
  text-align: center;
  border: 1px solid #d5d5d5;
  border-radius: 6px 6px 0 0;
}
.cmp-tabs__tab--active {
  color: #ff6200;
  border-color: none;
  border-bottom-color: #ffffff;
}
.cmp-tabs__tabpanel {
  border: 1px solid #d5d5d5;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top: 0;
}

