@charset "UTF-8";

@font-face {
  font-family: "fficons";
  src:url("fonts/fficons.eot");
  src:url("fonts/fficons.eot?#iefix") format("embedded-opentype"),
    url("fonts/fficons.woff") format("woff"),
    url("fonts/fficons.ttf") format("truetype"),
    url("fonts/fficons.svg#fficons") format("svg");
  font-weight: normal;
  font-style: normal;

}

@font-face {
	font-family: 'lined-icons';
	src:url('fonts/lined-icons.eot');
	src:url('fonts/lined-icons.eot') format('embedded-opentype'),
		url('fonts/lined-icons.woff') format('woff'),
		url('fonts/lined-icons.ttf') format('truetype'),
		url('fonts/lined-icons.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Simple-Line-Icons';
	src:url('fonts/Simple-Line-Icons.eot');
	src:url('fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'),
		url('fonts/Simple-Line-Icons.woff') format('woff'),
		url('fonts/Simple-Line-Icons.ttf') format('truetype'),
		url('fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

[data-icon]:before {
  font-family: "fficons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fficons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"], [class*=" icon-"],
[class^="icon-line-"], [class*=" icon-line-"],
[class^="icon-line2-"], [class*=" icon-line2-"],
.side-header #primary-menu ul > li.sub-menu > a:after {
	display: inline-block;
	font-family: "fficons";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class^="icon-line-"], [class*=" icon-line-"] { font-family: 'lined-icons'; }

[class^="icon-line2-"], [class*=" icon-line2-"] { font-family: 'Simple-Line-Icons'; }

.icon-lg {
  font-size: 1.3333333333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.icon-2x {
  font-size: 2em;
}
.icon-3x {
  font-size: 3em;
}
.icon-4x {
  font-size: 4em;
}
.icon-5x {
  font-size: 5em;
}
.icon-fw {
  width: 1.2857142857142858em;
  text-align: center;
}

.iconlist {
	padding-left: 0;
	margin-left: 1.75em;
	list-style-type: none;
}

.iconlist li { position: relative; }

.iconlist ul {
	list-style-type: none;
	margin: 5px 0 5px 25px;
}

.iconlist > li [class^="icon-"]:first-child, .iconlist > li [class*=" icon-"]:first-child {
	position: absolute;
	left: -1.75em;
	width: 1.75em;
	text-align: center;
	top: 1px;
	width: 14px;
}

.iconlist.iconlist-large { font-size: 16px; }

.iconlist.iconlist-large li { margin: 4px 0; }

.iconlist.iconlist-large > li [class^="icon-"], .iconlist.iconlist-large > li [class*=" icon-"] {
	width: 16px;
	margin-right: 5px;
}

.iconlist-color li i { color: #1ABC9C; }

.icon-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.icon.pull-left {
  margin-right: .3em;
}
.icon.pull-right {
  margin-left: .3em;
}
.icon-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.icon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.icon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.icon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.icon-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.icon-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.icon-stacked {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.icon-stacked-1x,
.icon-stacked-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.icon-stacked-1x {
  line-height: inherit;
}
.icon-stacked-2x {
  font-size: 2em;
}
.icon-inverse {
  color: #ffffff;
}






.icon-tint:before {
  content: "a";
}
.icon-umbrella:before {
  content: "b";
}
.icon-tachometer:before {
  content: "c";
}
.icon-table:before {
  content: "d";
}
.icon-sun:before {
  content: "e";
}
.icon-star-two:before {
  content: "f";
}
.icon-stackoverflow:before {
  content: "g";
}
.icon-smile:before {
  content: "h";
}
.icon-signal:before {
  content: "i";
}
.icon-rocket:before {
  content: "j";
}
.icon-retweet:before {
  content: "k";
}
.icon-refresh:before {
  content: "l";
}
.icon-puzzle:before {
  content: "m";
}
.icon-prize-award:before {
  content: "n";
}
.icon-pin-map:before {
  content: "o";
}
.icon-pin-map-2:before {
  content: "p";
}
.icon-male:before {
  content: "q";
}
.icon-like-filled:before {
  content: "r";
}
.icon-lightbulb:before {
  content: "s";
}
.icon-leaf:before {
  content: "t";
}
.icon-key:before {
  content: "u";
}
.icon-instagram:before {
  content: "v";
}
.icon-heart:before {
  content: "w";
}
.icon-group:before {
  content: "x";
}
.icon-globe-world:before {
  content: "y";
}
.icon-gears-setting:before {
  content: "z";
}
.icon-euro:before {
  content: "A";
}
.icon-crosshair-aim:before {
  content: "B";
}
.icon-contrast:before {
  content: "C";
}
.icon-chat-bubble-two:before {
  content: "D";
}
.icon-camera:before {
  content: "E";
}
.icon-briefcase-case-two:before {
  content: "F";
}
.icon-align-justify:before {
  content: "G";
}
.icon-trees:before {
  content: "H";
}
.icon-bug:before {
  content: "K";
}
.icon-github:before {
  content: "L";
}
.icon-rocket-1:before {
  content: "M";
}
.icon-droplet:before {
  content: "P";
}
.icon-campfire:before {
  content: "R";
}
.icon-burning-fire:before {
  content: "S";
}
.icon-leaf-1:before {
  content: "T";
}
.icon-law:before {
  content: "U";
}
.icon-gift:before {
  content: "W";
}
.icon-flame:before {
  content: "X";
}
.icon-gear:before {
  content: "Y";
}
.icon-home:before {
  content: "Z";
}
.icon-heart-1:before {
  content: "0";
}
.icon-globe:before {
  content: "1";
}
.icon-lock:before {
  content: "2";
}
.icon-barcode:before {
  content: "5";
}
.icon-cutlery:before {
  content: "6";
}
.icon-globe-1:before {
  content: "7";
}
.icon-leaf-2:before {
  content: "8";
}
.icon-trophy:before {
  content: "!";
}
.icon-angle-down:before {
  content: "%";
}
.icon-angle-left:before {
  content: "&";
}
.icon-angle-right:before {
  content: "'";
}
.icon-angle-up:before {
  content: "(";
}
.icon-link:before {
  content: ")";
}
.icon-thumbnails-large:before {
  content: "*";
}
.icon-talk-chat-2:before {
  content: "+";
}
.icon-play:before {
  content: ",";
}
.icon-user:before {
  content: "-";
}
.icon-list-2:before {
  content: ".";
}
.icon-list:before {
  content: "/";
}
.icon-caret-right:before {
  content: ":";
}
.icon-caret-left:before {
  content: ";";
}
.icon-check-mark:before {
  content: "<";
}
.icon-clock:before {
  content: "=";
}
.icon-cog-gear:before {
  content: ">";
}
.icon-calendar:before {
  content: "?";
}
.icon-pencil-1:before {
  content: "@";
}
.icon-magic-wand:before {
  content: "[";
}
.icon-torsos:before {
  content: "]";
}
.icon-earser:before {
  content: "^";
}
.icon-home-1:before {
  content: "_";
}
.icon-letter-mail:before {
  content: "`";
}
.icon-facebook-places:before {
  content: "\e004";
}
.icon-msn-messenger:before {
  content: "\e006";
}
.icon-lines:before {
  content: "\e009";
}
.icon-mail-read:before {
  content: "\e00c";
}
.icon-bell-two:before {
  content: "\e00d";
}
.icon-book:before {
  content: "\e00e";
}
.icon-bullseye:before {
  content: "\e00f";
}
.icon-call-phone:before {
  content: "\e010";
}
.icon-check-mark-2:before {
  content: "\e011";
}
.icon-check-mark-circle:before {
  content: "\e012";
}
.icon-close-delete:before {
  content: "\e013";
}
.icon-credit-card:before {
  content: "\e014";
}
.icon-doctor:before {
  content: "\e015";
}
.icon-ellipsis:before {
  content: "\e016";
}
.icon-ellipsis-2:before {
  content: "\e017";
}
.icon-facebook-1:before {
  content: "\e018";
}
.icon-facebook-square:before {
  content: "\e019";
}
.icon-filmstrip:before {
  content: "\e01a";
}
.icon-cloud:before {
  content: "\e01b";
}
.icon-folder2:before {
  content: "\e01c";
}
.icon-google-plus:before {
  content: "\e01d";
}
.icon-google-plus-1:before {
  content: "\e01e";
}
.icon-heart-empty:before {
  content: "\e01f";
}
.icon-information-circle:before {
  content: "\e020";
}

.icon-line-loader:before {
	content: "\e105";
}

.icon-like:before {
  content: "\e021";
}
.icon-linkedin:before {
  content: "\e022";
}
.icon-linkedin-square:before {
  content: "\e023";
}
.icon-lock-1:before {
  content: "\e024";
}
.icon-mic:before {
  content: "\e025";
}
.icon-music-note:before {
  content: "\e026";
}
.icon-paper-clip:before {
  content: "\e027";
}
.icon-photo:before {
  content: "\e028";
}
.icon-pinterest-square:before {
  content: "\e029";
}
.icon-pinterest:before {
  content: "\e02a";
}
.icon-ptint:before {
  content: "\e02b";
}
.icon-screen-desktop:before {
  content: "\e02c";
}
.icon-search-find:before {
  content: "\e02d";
}
.icon-shopping-cart:before {
  content: "\e02e";
}
.icon-skype-1:before {
  content: "\e02f";
}
.icon-smiley-frown:before {
  content: "\e030";
}
.icon-star:before {
  content: "\e031";
}
.icon-tablet:before {
  content: "\e032";
}
.icon-trash-bin:before {
  content: "\e033";
}
.icon-truck:before {
  content: "\e034";
}
.icon-tumblr-square:before {
  content: "\e035";
}
.icon-twitter-1:before {
  content: "\e036";
}
.icon-twitter-square:before {
  content: "\e037";
}
.icon-video-camera:before {
  content: "\e038";
}
.icon-window-list:before {
  content: "\e039";
}
.icon-youtube-play:before {
  content: "\e03b";
}
.icon-youtube-square:before {
  content: "\e03c";
}
.icon-talk-chat:before {
  content: "\e03a";
}
.icon-air:before {
  content: "\e03d";
}
.icon-download:before {
  content: "O";
}
.icon-paper-plane:before {
  content: "J";
}
.icon-photos-pictures:before {
  content: "Q";
}
.icon-credit-card-1:before {
  content: "\"";
}
.icon-address-at:before {
  content: "#";
}
.icon-device-desktop:before {
  content: "N";
}
.icon-device-mobile:before {
  content: "$";
}
.icon-device-camera:before {
  content: "{";
}
.icon-credit-card-2:before {
  content: "|";
}
.icon-clock-1:before {
  content: "}";
}
.icon-asterisk:before {
  content: "I";
}
.icon-download-1:before {
  content: "V";
}
.icon-email-envelope:before {
  content: "3";
}
.icon-folder-open:before {
  content: "4";
}
.icon-list-bullet:before {
  content: "~";
}
.icon-undo:before {
  content: "\\";
}
.icon-arrow-down:before {
  content: "\e000";
}
.icon-arrow-left:before {
  content: "\e001";
}
.icon-arrow-right:before {
  content: "\e002";
}
.icon-arrow-up:before {
  content: "\e003";
}
.icon-certificate:before {
  content: "\e005";
}
.icon-search-magnifier:before {
  content: "9";
}
