
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_2acd57ed65fc92e86813f570.woff')format("woff");}.ff1{font-family:ff1;line-height:1.117000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2acd57ed65fc92e86813f570.woff')format("woff");}.ff2{font-family:ff2;line-height:1.117000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_adf6560813d3d3c3d707bb20.woff')format("woff");}.ff3{font-family:ff3;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5855380e6bc4541ce14d5f6e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.138672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5c4c9efda4f476781370eb65.woff')format("woff");}.ff5{font-family:ff5;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1a8af2c5c00aa00c17735148.woff')format("woff");}.ff6{font-family:ff6;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2acd57ed65fc92e86813f570.woff')format("woff");}.ff7{font-family:ff7;line-height:1.117000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64ba0dec123a39a5fea32752.woff')format("woff");}.ff8{font-family:ff8;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d350df229f84f4b4e7464443.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e06a83b23fecbec15c4f7b96.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1a8af2c5c00aa00c17735148.woff')format("woff");}.ffb{font-family:ffb;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2d501a620e8c093d61d5471b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_adf6560813d3d3c3d707bb20.woff')format("woff");}.ffd{font-family:ffd;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2acd57ed65fc92e86813f570.woff')format("woff");}.ffe{font-family:ffe;line-height:1.117000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b9aa6519801749dbe2cbaaa2.woff')format("woff");}.fff{font-family:fff;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_474946731aa7e87c263325db.woff')format("woff");}.ff10{font-family:ff10;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e3ada409decf1847446342d4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.882324;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a3e35776ecd0fec3aa1ca92b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1a8af2c5c00aa00c17735148.woff')format("woff");}.ff13{font-family:ff13;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2d501a620e8c093d61d5471b.woff')format("woff");}.ff14{font-family:ff14;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_adf6560813d3d3c3d707bb20.woff')format("woff");}.ff15{font-family:ff15;line-height:1.108000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2acd57ed65fc92e86813f570.woff')format("woff");}.ff16{font-family:ff16;line-height:1.117000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4f1b9cc636d2387f3961a295.woff')format("woff");}.ff17{font-family:ff17;line-height:0.884277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m64{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242710,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.242722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242722,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242832,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242847,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242877,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243512,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243585,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.243606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243606,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.243657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243657,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243743,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.243747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243747,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.243863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243863,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.243920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243920,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.243938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243938,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244393,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244418,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244455,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.244542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244542,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244582,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.244913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244913,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.244947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244947,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.244952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244952,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244965,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245023,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245128,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245277,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245337,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245356,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245360,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245440,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245484,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245894,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246057,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246072,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246095,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246230,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246359,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246468,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246493,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246516,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246548,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246573,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246603,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246613,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246635,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246640,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246678,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246707,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246762,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246773,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246797,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246888,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246890,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247185,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.247316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247316,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247323,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247363,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247381,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247485,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247490,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247494,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247553,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247603,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247857,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m139{transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247909,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.m144{transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248031,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248040,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248128,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248153,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248482,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248657,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248953,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249540,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m11e{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250372,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250978,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251007,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251107,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.251187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251187,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251398,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251458,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251503,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251643,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251691,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251820,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251827,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251897,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252007,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252053,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252065,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252092,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252140,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252397,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252456,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252542,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252716,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252795,0.000000,0.000000,0.250000,0,0);}
.m156{transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252803,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252822,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252937,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252947,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253441,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253613,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253638,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253682,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253719,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253745,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253759,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253823,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254078,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254695,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255034,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255088,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255115,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255128,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255192,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255242,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255282,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255367,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255415,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255844,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.255853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255853,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255903,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256222,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.256327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256327,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.256457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256457,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256522,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256645,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256770,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.256857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256857,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257175,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-18.037200px;}
.v2{vertical-align:-12.599400px;}
.v3{vertical-align:-1.521000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.200000px;}
.ls38{letter-spacing:-1.740000px;}
.ls35{letter-spacing:-1.620000px;}
.ls37{letter-spacing:-1.560000px;}
.ls41{letter-spacing:-1.500000px;}
.ls36{letter-spacing:-1.440000px;}
.ls42{letter-spacing:-1.380000px;}
.ls19{letter-spacing:-1.320000px;}
.ls22{letter-spacing:-1.260000px;}
.ls57{letter-spacing:-1.248000px;}
.ls29{letter-spacing:-1.200000px;}
.ls18{letter-spacing:-1.140000px;}
.lse{letter-spacing:-1.134000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls5f{letter-spacing:-1.056000px;}
.ls1e{letter-spacing:-1.020000px;}
.ls24{letter-spacing:-0.960000px;}
.ls5e{letter-spacing:-0.912000px;}
.ls27{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls28{letter-spacing:-0.780000px;}
.ls23{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls4e{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls5c{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.420000px;}
.ls5d{letter-spacing:-0.384000px;}
.ls10{letter-spacing:-0.360000px;}
.ls56{letter-spacing:-0.336000px;}
.ls25{letter-spacing:-0.300000px;}
.ls5b{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls20{letter-spacing:-0.240000px;}
.ls58{letter-spacing:-0.192000px;}
.lsb{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.162000px;}
.ls5a{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.126000px;}
.ls3f{letter-spacing:-0.120000px;}
.ls59{letter-spacing:-0.096000px;}
.ls2a{letter-spacing:-0.060000px;}
.ls4d{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.024000px;}
.ls45{letter-spacing:0.048000px;}
.ls14{letter-spacing:0.060000px;}
.ls46{letter-spacing:0.096000px;}
.ls0{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.120000px;}
.ls51{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.150000px;}
.ls31{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.192000px;}
.ls3a{letter-spacing:0.210000px;}
.ls7{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.240000px;}
.ls4a{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls53{letter-spacing:0.312000px;}
.ls44{letter-spacing:0.336000px;}
.ls34{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.420000px;}
.ls49{letter-spacing:0.432000px;}
.ls47{letter-spacing:0.456000px;}
.lsc{letter-spacing:0.480000px;}
.ls40{letter-spacing:0.510000px;}
.ls39{letter-spacing:0.540000px;}
.ls4f{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.588000px;}
.ls17{letter-spacing:0.600000px;}
.ls30{letter-spacing:0.660000px;}
.ls54{letter-spacing:0.672000px;}
.ls16{letter-spacing:0.720000px;}
.ls50{letter-spacing:0.768000px;}
.ls12{letter-spacing:0.780000px;}
.ls13{letter-spacing:0.840000px;}
.ls55{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.870000px;}
.ls3d{letter-spacing:0.900000px;}
.ls48{letter-spacing:0.912000px;}
.ls11{letter-spacing:0.960000px;}
.ls3c{letter-spacing:1.020000px;}
.ls3e{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.140000px;}
.ls3b{letter-spacing:1.320000px;}
.ls33{letter-spacing:1.440000px;}
.ls2e{letter-spacing:1.500000px;}
.ls43{letter-spacing:1.560000px;}
.ls2b{letter-spacing:1.620000px;}
.ls4{letter-spacing:2.016000px;}
.ls2{letter-spacing:50.591400px;}
.ls1{letter-spacing:50.592000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws26{word-spacing:-60.000000px;}
.wsa9{word-spacing:-48.000000px;}
.ws2{word-spacing:-17.160000px;}
.ws80{word-spacing:-16.560000px;}
.ws62{word-spacing:-16.140000px;}
.ws63{word-spacing:-15.840000px;}
.ws65{word-spacing:-15.600000px;}
.ws5e{word-spacing:-15.360000px;}
.ws61{word-spacing:-15.300000px;}
.ws5f{word-spacing:-15.240000px;}
.ws48{word-spacing:-15.180000px;}
.ws66{word-spacing:-15.120000px;}
.ws2a{word-spacing:-15.060000px;}
.ws49{word-spacing:-15.000000px;}
.ws64{word-spacing:-14.760000px;}
.ws60{word-spacing:-14.640000px;}
.ws25{word-spacing:-14.580000px;}
.ws21{word-spacing:-14.520000px;}
.ws2b{word-spacing:-14.460000px;}
.ws24{word-spacing:-14.400000px;}
.ws23{word-spacing:-14.340000px;}
.ws74{word-spacing:-14.280000px;}
.ws81{word-spacing:-14.220000px;}
.ws1f{word-spacing:-14.160000px;}
.ws29{word-spacing:-14.100000px;}
.ws20{word-spacing:-13.980000px;}
.ws28{word-spacing:-13.920000px;}
.ws1e{word-spacing:-13.860000px;}
.ws27{word-spacing:-13.800000px;}
.ws22{word-spacing:-13.740000px;}
.ws47{word-spacing:-13.560000px;}
.ws73{word-spacing:-13.500000px;}
.ws9e{word-spacing:-13.440000px;}
.ws9d{word-spacing:-12.960000px;}
.ws83{word-spacing:-12.912000px;}
.ws9c{word-spacing:-12.768000px;}
.wsaa{word-spacing:-12.720000px;}
.wsa8{word-spacing:-12.672000px;}
.ws82{word-spacing:-12.480000px;}
.wsa1{word-spacing:-12.432000px;}
.ws84{word-spacing:-12.384000px;}
.wsa4{word-spacing:-12.312000px;}
.wsab{word-spacing:-12.288000px;}
.wsac{word-spacing:-12.240000px;}
.wsae{word-spacing:-12.144000px;}
.wsad{word-spacing:-12.096000px;}
.wsa3{word-spacing:-12.048000px;}
.wsa2{word-spacing:-12.024000px;}
.ws9b{word-spacing:-12.000000px;}
.wsa0{word-spacing:-11.952000px;}
.wsa5{word-spacing:-11.856000px;}
.wsc8{word-spacing:-11.760000px;}
.ws9f{word-spacing:-11.712000px;}
.wsa7{word-spacing:-11.520000px;}
.wsa6{word-spacing:-11.088000px;}
.ws0{word-spacing:-10.116000px;}
.ws3{word-spacing:-9.180000px;}
.ws1{word-spacing:-7.005600px;}
.ws14{word-spacing:-6.060000px;}
.wsc{word-spacing:-5.280000px;}
.wsca{word-spacing:-4.464000px;}
.ws11{word-spacing:-3.480000px;}
.wsc4{word-spacing:-3.264000px;}
.wsf{word-spacing:-2.580000px;}
.ws2e{word-spacing:-2.340000px;}
.ws2d{word-spacing:-2.280000px;}
.ws30{word-spacing:-2.220000px;}
.wscb{word-spacing:-2.184000px;}
.ws75{word-spacing:-2.160000px;}
.ws7b{word-spacing:-2.100000px;}
.ws6e{word-spacing:-2.040000px;}
.ws70{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.872000px;}
.ws91{word-spacing:-1.824000px;}
.ws86{word-spacing:-1.800000px;}
.wsc0{word-spacing:-1.776000px;}
.ws9{word-spacing:-1.764000px;}
.ws5b{word-spacing:-1.740000px;}
.wsc9{word-spacing:-1.728000px;}
.ws7d{word-spacing:-1.680000px;}
.ws5a{word-spacing:-1.620000px;}
.ws34{word-spacing:-1.560000px;}
.ws3b{word-spacing:-1.500000px;}
.wsc5{word-spacing:-1.488000px;}
.wsb0{word-spacing:-1.440000px;}
.ws4d{word-spacing:-1.380000px;}
.ws45{word-spacing:-1.320000px;}
.ws68{word-spacing:-1.260000px;}
.ws52{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.140000px;}
.ws8d{word-spacing:-1.080000px;}
.wsb3{word-spacing:-1.056000px;}
.ws4f{word-spacing:-1.020000px;}
.wsc2{word-spacing:-1.008000px;}
.ws72{word-spacing:-0.960000px;}
.ws79{word-spacing:-0.900000px;}
.ws37{word-spacing:-0.840000px;}
.ws50{word-spacing:-0.780000px;}
.wsb2{word-spacing:-0.768000px;}
.ws55{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.600000px;}
.ws94{word-spacing:-0.576000px;}
.wsb9{word-spacing:-0.528000px;}
.ws39{word-spacing:-0.480000px;}
.ws97{word-spacing:-0.432000px;}
.ws89{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.360000px;}
.ws3c{word-spacing:-0.300000px;}
.wsb7{word-spacing:-0.288000px;}
.ws7{word-spacing:-0.270000px;}
.ws41{word-spacing:-0.240000px;}
.ws98{word-spacing:-0.192000px;}
.ws6a{word-spacing:-0.180000px;}
.wscd{word-spacing:-0.156000px;}
.wsb5{word-spacing:-0.144000px;}
.ws8c{word-spacing:-0.120000px;}
.ws93{word-spacing:-0.096000px;}
.ws3f{word-spacing:-0.060000px;}
.wsbe{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws92{word-spacing:0.048000px;}
.ws71{word-spacing:0.120000px;}
.ws8{word-spacing:0.126000px;}
.wsc1{word-spacing:0.144000px;}
.ws6{word-spacing:0.162000px;}
.wsb{word-spacing:0.180000px;}
.ws40{word-spacing:0.240000px;}
.wsbc{word-spacing:0.288000px;}
.ws15{word-spacing:0.300000px;}
.wsb8{word-spacing:0.336000px;}
.ws59{word-spacing:0.360000px;}
.ws3d{word-spacing:0.420000px;}
.ws90{word-spacing:0.432000px;}
.ws6d{word-spacing:0.480000px;}
.wsc6{word-spacing:0.576000px;}
.ws3e{word-spacing:0.600000px;}
.ws32{word-spacing:0.660000px;}
.ws51{word-spacing:0.720000px;}
.ws4c{word-spacing:0.780000px;}
.ws6f{word-spacing:0.840000px;}
.wsbd{word-spacing:0.864000px;}
.ws6c{word-spacing:0.900000px;}
.ws9a{word-spacing:0.912000px;}
.ws5c{word-spacing:0.960000px;}
.ws99{word-spacing:1.056000px;}
.ws8a{word-spacing:1.080000px;}
.wsaf{word-spacing:1.104000px;}
.ws2c{word-spacing:1.140000px;}
.ws42{word-spacing:1.200000px;}
.wsb6{word-spacing:1.248000px;}
.ws69{word-spacing:1.260000px;}
.ws78{word-spacing:1.320000px;}
.ws58{word-spacing:1.380000px;}
.ws8b{word-spacing:1.440000px;}
.wsbb{word-spacing:1.488000px;}
.ws38{word-spacing:1.500000px;}
.wsc3{word-spacing:1.584000px;}
.ws4a{word-spacing:1.620000px;}
.ws95{word-spacing:1.728000px;}
.ws67{word-spacing:1.740000px;}
.wsa{word-spacing:1.764000px;}
.ws8f{word-spacing:1.776000px;}
.ws88{word-spacing:1.800000px;}
.wsbf{word-spacing:1.824000px;}
.ws12{word-spacing:1.860000px;}
.ws53{word-spacing:1.920000px;}
.ws77{word-spacing:1.980000px;}
.wsc7{word-spacing:2.016000px;}
.ws7a{word-spacing:2.040000px;}
.wsba{word-spacing:2.064000px;}
.ws13{word-spacing:2.100000px;}
.ws46{word-spacing:2.160000px;}
.ws31{word-spacing:2.220000px;}
.ws35{word-spacing:2.280000px;}
.ws7c{word-spacing:2.340000px;}
.ws1d{word-spacing:2.460000px;}
.ws54{word-spacing:2.520000px;}
.ws57{word-spacing:2.580000px;}
.ws44{word-spacing:2.640000px;}
.ws87{word-spacing:2.760000px;}
.ws18{word-spacing:2.820000px;}
.ws96{word-spacing:2.832000px;}
.wsb4{word-spacing:2.880000px;}
.ws1b{word-spacing:3.240000px;}
.ws4e{word-spacing:3.420000px;}
.ws76{word-spacing:3.480000px;}
.ws8e{word-spacing:3.720000px;}
.ws7f{word-spacing:3.900000px;}
.ws36{word-spacing:4.200000px;}
.ws43{word-spacing:4.320000px;}
.ws5d{word-spacing:4.380000px;}
.ws56{word-spacing:4.560000px;}
.ws85{word-spacing:4.620000px;}
.ws33{word-spacing:4.740000px;}
.ws4b{word-spacing:4.860000px;}
.ws1a{word-spacing:4.980000px;}
.ws7e{word-spacing:5.340000px;}
.wse{word-spacing:5.640000px;}
.ws16{word-spacing:6.600000px;}
.wsd{word-spacing:6.660000px;}
.wscc{word-spacing:7.059000px;}
.ws5{word-spacing:7.128000px;}
.ws1c{word-spacing:7.800000px;}
.ws10{word-spacing:8.940000px;}
.ws19{word-spacing:10.920000px;}
._5{margin-left:-15.005592px;}
._4{margin-left:-11.676000px;}
._c{margin-left:-6.150000px;}
._6{margin-left:-5.100000px;}
._9{margin-left:-3.498000px;}
._2{margin-left:-1.836000px;}
._7{width:1.302000px;}
._8{width:3.090000px;}
._1{width:8.658000px;}
._d{width:9.874800px;}
._3{width:50.576400px;}
._0{width:110.880000px;}
._b{width:282.606000px;}
._a{width:931.125000px;}
.fc7{color:transparent;}
.fc3{color:rgb(0,161,222);}
.fc6{color:rgb(87,87,86);}
.fc4{color:rgb(0,141,212);}
.fc2{color:rgb(157,157,156);}
.fc5{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(112,111,111);}
.fs9{font-size:25.200000px;}
.fs8{font-size:32.400000px;}
.fs3{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:60.290700px;}
.y5{bottom:61.496700px;}
.ya{bottom:62.692050px;}
.y84{bottom:116.834700px;}
.y114{bottom:119.048400px;}
.y113{bottom:131.050650px;}
.yba{bottom:136.334550px;}
.y83{bottom:136.334700px;}
.yd0{bottom:142.334550px;}
.y112{bottom:143.052900px;}
.y111{bottom:155.053650px;}
.yb9{bottom:155.834550px;}
.y82{bottom:155.834700px;}
.ycf{bottom:157.334550px;}
.yce{bottom:172.334550px;}
.yb8{bottom:175.334550px;}
.y81{bottom:175.334700px;}
.y110{bottom:176.055150px;}
.ycd{bottom:187.334550px;}
.yb7{bottom:194.834550px;}
.y80{bottom:194.834700px;}
.ycc{bottom:202.334550px;}
.y10f{bottom:211.535550px;}
.y85{bottom:214.331700px;}
.y7f{bottom:214.334700px;}
.ycb{bottom:217.334550px;}
.y10e{bottom:226.535550px;}
.yca{bottom:232.334550px;}
.y7e{bottom:233.834700px;}
.y4d{bottom:238.753350px;}
.y10d{bottom:241.535550px;}
.yc9{bottom:247.334550px;}
.y4c{bottom:250.750350px;}
.yb6{bottom:253.334550px;}
.y7d{bottom:253.334700px;}
.y10c{bottom:256.535550px;}
.yc8{bottom:262.334550px;}
.y4b{bottom:262.747350px;}
.y31{bottom:263.479350px;}
.y10b{bottom:271.535550px;}
.yb5{bottom:272.834550px;}
.y7c{bottom:272.834700px;}
.y4a{bottom:274.744350px;}
.yc7{bottom:277.334550px;}
.y30{bottom:283.729350px;}
.y10a{bottom:286.535550px;}
.y49{bottom:286.741350px;}
.yb4{bottom:292.334550px;}
.y7b{bottom:292.334700px;}
.y48{bottom:298.738350px;}
.y109{bottom:301.535550px;}
.yc6{bottom:307.334550px;}
.y47{bottom:310.735350px;}
.yb3{bottom:311.834550px;}
.y7a{bottom:311.834700px;}
.y108{bottom:316.535550px;}
.y2f{bottom:320.987250px;}
.yc5{bottom:322.334550px;}
.yb2{bottom:331.334550px;}
.y79{bottom:331.334700px;}
.y107{bottom:331.535550px;}
.yc4{bottom:337.334550px;}
.y46{bottom:340.662750px;}
.y2e{bottom:341.237250px;}
.y106{bottom:346.535550px;}
.yb1{bottom:350.834550px;}
.y78{bottom:350.834700px;}
.yc3{bottom:352.334550px;}
.y45{bottom:355.667250px;}
.y2d{bottom:361.487250px;}
.y105{bottom:361.535550px;}
.yc2{bottom:367.334550px;}
.yb0{bottom:370.334550px;}
.y77{bottom:370.334700px;}
.y44{bottom:374.924250px;}
.y104{bottom:376.535550px;}
.y2c{bottom:381.737250px;}
.yc1{bottom:382.334550px;}
.yaf{bottom:389.834550px;}
.y76{bottom:389.834700px;}
.y43{bottom:389.928750px;}
.y103{bottom:391.535550px;}
.yc0{bottom:397.334550px;}
.y2b{bottom:401.987250px;}
.y42{bottom:404.933250px;}
.y102{bottom:406.535550px;}
.yae{bottom:409.334550px;}
.y75{bottom:409.334700px;}
.ybf{bottom:412.334550px;}
.y41{bottom:419.937750px;}
.y101{bottom:421.535550px;}
.y2a{bottom:422.237250px;}
.ybe{bottom:427.334550px;}
.yad{bottom:428.834550px;}
.y74{bottom:428.834700px;}
.y100{bottom:436.535550px;}
.ybd{bottom:442.334550px;}
.y29{bottom:442.487250px;}
.yac{bottom:448.334550px;}
.y73{bottom:448.334700px;}
.y40{bottom:449.936250px;}
.yff{bottom:451.535550px;}
.ybc{bottom:457.334550px;}
.y28{bottom:462.737250px;}
.y3f{bottom:464.940750px;}
.yfe{bottom:466.535550px;}
.yab{bottom:467.834550px;}
.y72{bottom:467.834700px;}
.ybb{bottom:472.334550px;}
.y3e{bottom:479.945250px;}
.yfd{bottom:481.535550px;}
.y27{bottom:482.987250px;}
.yaa{bottom:487.334550px;}
.y71{bottom:487.334700px;}
.y3d{bottom:494.949750px;}
.yfc{bottom:496.535550px;}
.y26{bottom:503.237250px;}
.ya9{bottom:506.834550px;}
.y70{bottom:506.834700px;}
.y3c{bottom:509.954250px;}
.yfb{bottom:511.535550px;}
.y25{bottom:523.487250px;}
.y3b{bottom:524.958750px;}
.ya8{bottom:526.334550px;}
.y6f{bottom:526.334700px;}
.yfa{bottom:526.535550px;}
.y3a{bottom:539.963250px;}
.yf9{bottom:541.535550px;}
.y24{bottom:543.737250px;}
.ya7{bottom:545.834550px;}
.y6e{bottom:545.834700px;}
.y39{bottom:554.967750px;}
.yf8{bottom:556.535550px;}
.y23{bottom:563.987250px;}
.ya6{bottom:565.334550px;}
.y6d{bottom:565.334700px;}
.y38{bottom:569.972250px;}
.yf7{bottom:571.535550px;}
.y22{bottom:584.237250px;}
.ya5{bottom:584.834550px;}
.y6c{bottom:584.834700px;}
.yf6{bottom:586.535550px;}
.y37{bottom:599.970750px;}
.yf5{bottom:601.535550px;}
.ya4{bottom:604.334550px;}
.y6b{bottom:604.334700px;}
.y21{bottom:604.487250px;}
.yf4{bottom:616.535550px;}
.ya3{bottom:623.834550px;}
.y6a{bottom:623.834700px;}
.y20{bottom:624.737250px;}
.y36{bottom:629.969250px;}
.yf3{bottom:631.535550px;}
.ya2{bottom:643.334550px;}
.y69{bottom:643.334700px;}
.y35{bottom:644.973750px;}
.y1f{bottom:644.987250px;}
.yf2{bottom:646.535550px;}
.y34{bottom:659.978250px;}
.yf1{bottom:661.535550px;}
.ya1{bottom:662.834550px;}
.y68{bottom:662.834700px;}
.y1e{bottom:665.237250px;}
.y33{bottom:674.982750px;}
.yf0{bottom:676.535550px;}
.ya0{bottom:682.334550px;}
.y67{bottom:682.334700px;}
.y1d{bottom:685.487250px;}
.y32{bottom:689.987250px;}
.yef{bottom:691.535550px;}
.y9f{bottom:701.834550px;}
.y66{bottom:701.834700px;}
.yee{bottom:706.535550px;}
.y86{bottom:721.331700px;}
.y9e{bottom:721.334550px;}
.y65{bottom:721.334700px;}
.yed{bottom:721.535550px;}
.yec{bottom:736.535550px;}
.y88{bottom:740.831700px;}
.y9d{bottom:740.834550px;}
.y64{bottom:740.834700px;}
.y1b{bottom:742.637850px;}
.yeb{bottom:751.535550px;}
.y1a{bottom:757.637850px;}
.y9c{bottom:760.334550px;}
.y63{bottom:760.334700px;}
.yea{bottom:766.535550px;}
.y19{bottom:772.637850px;}
.y9b{bottom:779.834550px;}
.y62{bottom:779.834700px;}
.ye9{bottom:781.535550px;}
.y18{bottom:787.637850px;}
.ye8{bottom:796.535550px;}
.y9a{bottom:799.334550px;}
.y61{bottom:799.334700px;}
.ye7{bottom:811.535550px;}
.y99{bottom:818.834550px;}
.y60{bottom:818.834700px;}
.ye6{bottom:826.535550px;}
.y17{bottom:830.056500px;}
.y87{bottom:838.331700px;}
.y98{bottom:838.334550px;}
.y5f{bottom:838.334700px;}
.ye5{bottom:841.535550px;}
.y16{bottom:848.210850px;}
.ye4{bottom:856.535550px;}
.y1{bottom:857.690700px;}
.y97{bottom:857.834550px;}
.y5e{bottom:857.834700px;}
.y15{bottom:863.210850px;}
.ye3{bottom:871.535550px;}
.y96{bottom:877.334550px;}
.y5d{bottom:877.334700px;}
.y14{bottom:878.210850px;}
.ye2{bottom:886.535550px;}
.y13{bottom:890.056500px;}
.y95{bottom:896.834550px;}
.y5c{bottom:896.834700px;}
.ye1{bottom:901.535550px;}
.y12{bottom:908.210850px;}
.y7{bottom:914.257650px;}
.y94{bottom:916.334550px;}
.y5b{bottom:916.334700px;}
.ye0{bottom:916.535550px;}
.y11{bottom:920.056500px;}
.ydf{bottom:931.535550px;}
.y93{bottom:935.834550px;}
.y5a{bottom:935.834700px;}
.y10{bottom:938.210850px;}
.yde{bottom:946.535550px;}
.y92{bottom:955.334550px;}
.y59{bottom:955.334700px;}
.yf{bottom:958.569450px;}
.ydd{bottom:961.535550px;}
.y91{bottom:974.834550px;}
.y58{bottom:974.834700px;}
.ydc{bottom:976.535550px;}
.ye{bottom:976.564950px;}
.ydb{bottom:991.535550px;}
.y90{bottom:994.334550px;}
.y57{bottom:994.334700px;}
.y4f{bottom:1003.168800px;}
.yda{bottom:1006.535550px;}
.yd{bottom:1011.596700px;}
.y8f{bottom:1013.834550px;}
.y56{bottom:1013.834700px;}
.yd9{bottom:1021.535550px;}
.y8e{bottom:1033.334550px;}
.y55{bottom:1033.334700px;}
.yd8{bottom:1036.535550px;}
.yc{bottom:1041.584700px;}
.yd7{bottom:1051.535550px;}
.y8d{bottom:1052.834550px;}
.y54{bottom:1052.834700px;}
.yd6{bottom:1066.535550px;}
.yb{bottom:1071.572700px;}
.y8c{bottom:1072.334550px;}
.y53{bottom:1072.334700px;}
.yd5{bottom:1081.535550px;}
.y8b{bottom:1091.834550px;}
.y52{bottom:1091.834700px;}
.yd4{bottom:1096.535550px;}
.y8a{bottom:1111.334550px;}
.y51{bottom:1111.334700px;}
.yd3{bottom:1111.535550px;}
.y1c{bottom:1115.185050px;}
.yd2{bottom:1126.535550px;}
.y89{bottom:1130.834550px;}
.y50{bottom:1130.834700px;}
.y6{bottom:1134.660900px;}
.yd1{bottom:1141.535550px;}
.y4{bottom:1161.206850px;}
.y9{bottom:1161.879600px;}
.y8{bottom:1176.879600px;}
.y4e{bottom:1198.266750px;}
.y3{bottom:1204.575600px;}
.hb{height:26.124600px;}
.h11{height:33.156000px;}
.h12{height:33.192000px;}
.h17{height:33.600000px;}
.h5{height:34.628906px;}
.h6{height:35.958000px;}
.h18{height:35.964000px;}
.h10{height:38.682000px;}
.hc{height:38.724000px;}
.hd{height:41.445000px;}
.h8{height:41.490000px;}
.h14{height:42.000000px;}
.h16{height:42.720000px;}
.h3{height:44.208000px;}
.h4{height:48.060000px;}
.ha{height:49.788000px;}
.h13{height:53.400000px;}
.h2{height:55.260000px;}
.hf{height:55.320000px;}
.h15{height:60.786000px;}
.he{height:66.312000px;}
.h7{height:66.384000px;}
.h9{height:74.664000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:60.607500px;}
.x5{left:85.039350px;}
.x1{left:86.086350px;}
.x25{left:87.499650px;}
.x13{left:89.553450px;}
.x23{left:92.044650px;}
.x11{left:93.994950px;}
.x31{left:96.944850px;}
.x1e{left:104.295450px;}
.x28{left:106.299300px;}
.x24{left:107.821650px;}
.x22{left:111.952650px;}
.x12{left:117.766950px;}
.x16{left:124.770450px;}
.x1a{left:125.830950px;}
.x15{left:127.500450px;}
.x17{left:132.697950px;}
.x20{left:136.593450px;}
.x14{left:140.079450px;}
.x4{left:156.145500px;}
.x10{left:159.976950px;}
.x1f{left:168.345450px;}
.x1d{left:170.077950px;}
.x1c{left:173.994450px;}
.x19{left:178.047450px;}
.x1b{left:183.486450px;}
.x21{left:184.708650px;}
.x2d{left:201.473100px;}
.x27{left:203.822100px;}
.x18{left:215.374950px;}
.x6{left:230.091600px;}
.xb{left:250.653600px;}
.xc{left:257.075400px;}
.xd{left:263.784600px;}
.xf{left:272.125950px;}
.x29{left:461.338650px;}
.x30{left:473.244000px;}
.x2a{left:482.598600px;}
.x9{left:499.818150px;}
.x2c{left:534.932550px;}
.x2e{left:561.644400px;}
.x2b{left:580.805100px;}
.x2f{left:583.289250px;}
.xa{left:587.605200px;}
.x8{left:680.180400px;}
.x2{left:837.637800px;}
.x7{left:847.922550px;}
.x26{left:849.212700px;}
.x3{left:878.536350px;}
@media print{
.v4{vertical-align:-16.033067pt;}
.v2{vertical-align:-11.199467pt;}
.v3{vertical-align:-1.352000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.400000pt;}
.ls38{letter-spacing:-1.546667pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls37{letter-spacing:-1.386667pt;}
.ls41{letter-spacing:-1.333333pt;}
.ls36{letter-spacing:-1.280000pt;}
.ls42{letter-spacing:-1.226667pt;}
.ls19{letter-spacing:-1.173333pt;}
.ls22{letter-spacing:-1.120000pt;}
.ls57{letter-spacing:-1.109333pt;}
.ls29{letter-spacing:-1.066667pt;}
.ls18{letter-spacing:-1.013333pt;}
.lse{letter-spacing:-1.008000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls5f{letter-spacing:-0.938667pt;}
.ls1e{letter-spacing:-0.906667pt;}
.ls24{letter-spacing:-0.853333pt;}
.ls5e{letter-spacing:-0.810667pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls28{letter-spacing:-0.693333pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls4e{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.373333pt;}
.ls5d{letter-spacing:-0.341333pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls56{letter-spacing:-0.298667pt;}
.ls25{letter-spacing:-0.266667pt;}
.ls5b{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls20{letter-spacing:-0.213333pt;}
.ls58{letter-spacing:-0.170667pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls5a{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.112000pt;}
.ls3f{letter-spacing:-0.106667pt;}
.ls59{letter-spacing:-0.085333pt;}
.ls2a{letter-spacing:-0.053333pt;}
.ls4d{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.021333pt;}
.ls45{letter-spacing:0.042667pt;}
.ls14{letter-spacing:0.053333pt;}
.ls46{letter-spacing:0.085333pt;}
.ls0{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls51{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133333pt;}
.ls31{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.170667pt;}
.ls3a{letter-spacing:0.186667pt;}
.ls7{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.213333pt;}
.ls4a{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls53{letter-spacing:0.277333pt;}
.ls44{letter-spacing:0.298667pt;}
.ls34{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls49{letter-spacing:0.384000pt;}
.ls47{letter-spacing:0.405333pt;}
.lsc{letter-spacing:0.426667pt;}
.ls40{letter-spacing:0.453333pt;}
.ls39{letter-spacing:0.480000pt;}
.ls4f{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.522667pt;}
.ls17{letter-spacing:0.533333pt;}
.ls30{letter-spacing:0.586667pt;}
.ls54{letter-spacing:0.597333pt;}
.ls16{letter-spacing:0.640000pt;}
.ls50{letter-spacing:0.682667pt;}
.ls12{letter-spacing:0.693333pt;}
.ls13{letter-spacing:0.746667pt;}
.ls55{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.773333pt;}
.ls3d{letter-spacing:0.800000pt;}
.ls48{letter-spacing:0.810667pt;}
.ls11{letter-spacing:0.853333pt;}
.ls3c{letter-spacing:0.906667pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls3b{letter-spacing:1.173333pt;}
.ls33{letter-spacing:1.280000pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls43{letter-spacing:1.386667pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls4{letter-spacing:1.792000pt;}
.ls2{letter-spacing:44.970133pt;}
.ls1{letter-spacing:44.970667pt;}
.ws26{word-spacing:-53.333333pt;}
.wsa9{word-spacing:-42.666667pt;}
.ws2{word-spacing:-15.253333pt;}
.ws80{word-spacing:-14.720000pt;}
.ws62{word-spacing:-14.346667pt;}
.ws63{word-spacing:-14.080000pt;}
.ws65{word-spacing:-13.866667pt;}
.ws5e{word-spacing:-13.653333pt;}
.ws61{word-spacing:-13.600000pt;}
.ws5f{word-spacing:-13.546667pt;}
.ws48{word-spacing:-13.493333pt;}
.ws66{word-spacing:-13.440000pt;}
.ws2a{word-spacing:-13.386667pt;}
.ws49{word-spacing:-13.333333pt;}
.ws64{word-spacing:-13.120000pt;}
.ws60{word-spacing:-13.013333pt;}
.ws25{word-spacing:-12.960000pt;}
.ws21{word-spacing:-12.906667pt;}
.ws2b{word-spacing:-12.853333pt;}
.ws24{word-spacing:-12.800000pt;}
.ws23{word-spacing:-12.746667pt;}
.ws74{word-spacing:-12.693333pt;}
.ws81{word-spacing:-12.640000pt;}
.ws1f{word-spacing:-12.586667pt;}
.ws29{word-spacing:-12.533333pt;}
.ws20{word-spacing:-12.426667pt;}
.ws28{word-spacing:-12.373333pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws27{word-spacing:-12.266667pt;}
.ws22{word-spacing:-12.213333pt;}
.ws47{word-spacing:-12.053333pt;}
.ws73{word-spacing:-12.000000pt;}
.ws9e{word-spacing:-11.946667pt;}
.ws9d{word-spacing:-11.520000pt;}
.ws83{word-spacing:-11.477333pt;}
.ws9c{word-spacing:-11.349333pt;}
.wsaa{word-spacing:-11.306667pt;}
.wsa8{word-spacing:-11.264000pt;}
.ws82{word-spacing:-11.093333pt;}
.wsa1{word-spacing:-11.050667pt;}
.ws84{word-spacing:-11.008000pt;}
.wsa4{word-spacing:-10.944000pt;}
.wsab{word-spacing:-10.922667pt;}
.wsac{word-spacing:-10.880000pt;}
.wsae{word-spacing:-10.794667pt;}
.wsad{word-spacing:-10.752000pt;}
.wsa3{word-spacing:-10.709333pt;}
.wsa2{word-spacing:-10.688000pt;}
.ws9b{word-spacing:-10.666667pt;}
.wsa0{word-spacing:-10.624000pt;}
.wsa5{word-spacing:-10.538667pt;}
.wsc8{word-spacing:-10.453333pt;}
.ws9f{word-spacing:-10.410667pt;}
.wsa7{word-spacing:-10.240000pt;}
.wsa6{word-spacing:-9.856000pt;}
.ws0{word-spacing:-8.992000pt;}
.ws3{word-spacing:-8.160000pt;}
.ws1{word-spacing:-6.227200pt;}
.ws14{word-spacing:-5.386667pt;}
.wsc{word-spacing:-4.693333pt;}
.wsca{word-spacing:-3.968000pt;}
.ws11{word-spacing:-3.093333pt;}
.wsc4{word-spacing:-2.901333pt;}
.wsf{word-spacing:-2.293333pt;}
.ws2e{word-spacing:-2.080000pt;}
.ws2d{word-spacing:-2.026667pt;}
.ws30{word-spacing:-1.973333pt;}
.wscb{word-spacing:-1.941333pt;}
.ws75{word-spacing:-1.920000pt;}
.ws7b{word-spacing:-1.866667pt;}
.ws6e{word-spacing:-1.813333pt;}
.ws70{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.664000pt;}
.ws91{word-spacing:-1.621333pt;}
.ws86{word-spacing:-1.600000pt;}
.wsc0{word-spacing:-1.578667pt;}
.ws9{word-spacing:-1.568000pt;}
.ws5b{word-spacing:-1.546667pt;}
.wsc9{word-spacing:-1.536000pt;}
.ws7d{word-spacing:-1.493333pt;}
.ws5a{word-spacing:-1.440000pt;}
.ws34{word-spacing:-1.386667pt;}
.ws3b{word-spacing:-1.333333pt;}
.wsc5{word-spacing:-1.322667pt;}
.wsb0{word-spacing:-1.280000pt;}
.ws4d{word-spacing:-1.226667pt;}
.ws45{word-spacing:-1.173333pt;}
.ws68{word-spacing:-1.120000pt;}
.ws52{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.013333pt;}
.ws8d{word-spacing:-0.960000pt;}
.wsb3{word-spacing:-0.938667pt;}
.ws4f{word-spacing:-0.906667pt;}
.wsc2{word-spacing:-0.896000pt;}
.ws72{word-spacing:-0.853333pt;}
.ws79{word-spacing:-0.800000pt;}
.ws37{word-spacing:-0.746667pt;}
.ws50{word-spacing:-0.693333pt;}
.wsb2{word-spacing:-0.682667pt;}
.ws55{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.533333pt;}
.ws94{word-spacing:-0.512000pt;}
.wsb9{word-spacing:-0.469333pt;}
.ws39{word-spacing:-0.426667pt;}
.ws97{word-spacing:-0.384000pt;}
.ws89{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.320000pt;}
.ws3c{word-spacing:-0.266667pt;}
.wsb7{word-spacing:-0.256000pt;}
.ws7{word-spacing:-0.240000pt;}
.ws41{word-spacing:-0.213333pt;}
.ws98{word-spacing:-0.170667pt;}
.ws6a{word-spacing:-0.160000pt;}
.wscd{word-spacing:-0.138667pt;}
.wsb5{word-spacing:-0.128000pt;}
.ws8c{word-spacing:-0.106667pt;}
.ws93{word-spacing:-0.085333pt;}
.ws3f{word-spacing:-0.053333pt;}
.wsbe{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws92{word-spacing:0.042667pt;}
.ws71{word-spacing:0.106667pt;}
.ws8{word-spacing:0.112000pt;}
.wsc1{word-spacing:0.128000pt;}
.ws6{word-spacing:0.144000pt;}
.wsb{word-spacing:0.160000pt;}
.ws40{word-spacing:0.213333pt;}
.wsbc{word-spacing:0.256000pt;}
.ws15{word-spacing:0.266667pt;}
.wsb8{word-spacing:0.298667pt;}
.ws59{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.373333pt;}
.ws90{word-spacing:0.384000pt;}
.ws6d{word-spacing:0.426667pt;}
.wsc6{word-spacing:0.512000pt;}
.ws3e{word-spacing:0.533333pt;}
.ws32{word-spacing:0.586667pt;}
.ws51{word-spacing:0.640000pt;}
.ws4c{word-spacing:0.693333pt;}
.ws6f{word-spacing:0.746667pt;}
.wsbd{word-spacing:0.768000pt;}
.ws6c{word-spacing:0.800000pt;}
.ws9a{word-spacing:0.810667pt;}
.ws5c{word-spacing:0.853333pt;}
.ws99{word-spacing:0.938667pt;}
.ws8a{word-spacing:0.960000pt;}
.wsaf{word-spacing:0.981333pt;}
.ws2c{word-spacing:1.013333pt;}
.ws42{word-spacing:1.066667pt;}
.wsb6{word-spacing:1.109333pt;}
.ws69{word-spacing:1.120000pt;}
.ws78{word-spacing:1.173333pt;}
.ws58{word-spacing:1.226667pt;}
.ws8b{word-spacing:1.280000pt;}
.wsbb{word-spacing:1.322667pt;}
.ws38{word-spacing:1.333333pt;}
.wsc3{word-spacing:1.408000pt;}
.ws4a{word-spacing:1.440000pt;}
.ws95{word-spacing:1.536000pt;}
.ws67{word-spacing:1.546667pt;}
.wsa{word-spacing:1.568000pt;}
.ws8f{word-spacing:1.578667pt;}
.ws88{word-spacing:1.600000pt;}
.wsbf{word-spacing:1.621333pt;}
.ws12{word-spacing:1.653333pt;}
.ws53{word-spacing:1.706667pt;}
.ws77{word-spacing:1.760000pt;}
.wsc7{word-spacing:1.792000pt;}
.ws7a{word-spacing:1.813333pt;}
.wsba{word-spacing:1.834667pt;}
.ws13{word-spacing:1.866667pt;}
.ws46{word-spacing:1.920000pt;}
.ws31{word-spacing:1.973333pt;}
.ws35{word-spacing:2.026667pt;}
.ws7c{word-spacing:2.080000pt;}
.ws1d{word-spacing:2.186667pt;}
.ws54{word-spacing:2.240000pt;}
.ws57{word-spacing:2.293333pt;}
.ws44{word-spacing:2.346667pt;}
.ws87{word-spacing:2.453333pt;}
.ws18{word-spacing:2.506667pt;}
.ws96{word-spacing:2.517333pt;}
.wsb4{word-spacing:2.560000pt;}
.ws1b{word-spacing:2.880000pt;}
.ws4e{word-spacing:3.040000pt;}
.ws76{word-spacing:3.093333pt;}
.ws8e{word-spacing:3.306667pt;}
.ws7f{word-spacing:3.466667pt;}
.ws36{word-spacing:3.733333pt;}
.ws43{word-spacing:3.840000pt;}
.ws5d{word-spacing:3.893333pt;}
.ws56{word-spacing:4.053333pt;}
.ws85{word-spacing:4.106667pt;}
.ws33{word-spacing:4.213333pt;}
.ws4b{word-spacing:4.320000pt;}
.ws1a{word-spacing:4.426667pt;}
.ws7e{word-spacing:4.746667pt;}
.wse{word-spacing:5.013333pt;}
.ws16{word-spacing:5.866667pt;}
.wsd{word-spacing:5.920000pt;}
.wscc{word-spacing:6.274667pt;}
.ws5{word-spacing:6.336000pt;}
.ws1c{word-spacing:6.933333pt;}
.ws10{word-spacing:7.946667pt;}
.ws19{word-spacing:9.706667pt;}
._5{margin-left:-13.338304pt;}
._4{margin-left:-10.378667pt;}
._c{margin-left:-5.466667pt;}
._6{margin-left:-4.533333pt;}
._9{margin-left:-3.109333pt;}
._2{margin-left:-1.632000pt;}
._7{width:1.157333pt;}
._8{width:2.746667pt;}
._1{width:7.696000pt;}
._d{width:8.777600pt;}
._3{width:44.956800pt;}
._0{width:98.560000pt;}
._b{width:251.205333pt;}
._a{width:827.666667pt;}
.fs9{font-size:22.400000pt;}
.fs8{font-size:28.800000pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:53.591733pt;}
.y5{bottom:54.663733pt;}
.ya{bottom:55.726267pt;}
.y84{bottom:103.853067pt;}
.y114{bottom:105.820800pt;}
.y113{bottom:116.489467pt;}
.yba{bottom:121.186267pt;}
.y83{bottom:121.186400pt;}
.yd0{bottom:126.519600pt;}
.y112{bottom:127.158133pt;}
.y111{bottom:137.825467pt;}
.yb9{bottom:138.519600pt;}
.y82{bottom:138.519733pt;}
.ycf{bottom:139.852933pt;}
.yce{bottom:153.186267pt;}
.yb8{bottom:155.852933pt;}
.y81{bottom:155.853067pt;}
.y110{bottom:156.493467pt;}
.ycd{bottom:166.519600pt;}
.yb7{bottom:173.186267pt;}
.y80{bottom:173.186400pt;}
.ycc{bottom:179.852933pt;}
.y10f{bottom:188.031600pt;}
.y85{bottom:190.517067pt;}
.y7f{bottom:190.519733pt;}
.ycb{bottom:193.186267pt;}
.y10e{bottom:201.364933pt;}
.yca{bottom:206.519600pt;}
.y7e{bottom:207.853067pt;}
.y4d{bottom:212.225200pt;}
.y10d{bottom:214.698267pt;}
.yc9{bottom:219.852933pt;}
.y4c{bottom:222.889200pt;}
.yb6{bottom:225.186267pt;}
.y7d{bottom:225.186400pt;}
.y10c{bottom:228.031600pt;}
.yc8{bottom:233.186267pt;}
.y4b{bottom:233.553200pt;}
.y31{bottom:234.203867pt;}
.y10b{bottom:241.364933pt;}
.yb5{bottom:242.519600pt;}
.y7c{bottom:242.519733pt;}
.y4a{bottom:244.217200pt;}
.yc7{bottom:246.519600pt;}
.y30{bottom:252.203867pt;}
.y10a{bottom:254.698267pt;}
.y49{bottom:254.881200pt;}
.yb4{bottom:259.852933pt;}
.y7b{bottom:259.853067pt;}
.y48{bottom:265.545200pt;}
.y109{bottom:268.031600pt;}
.yc6{bottom:273.186267pt;}
.y47{bottom:276.209200pt;}
.yb3{bottom:277.186267pt;}
.y7a{bottom:277.186400pt;}
.y108{bottom:281.364933pt;}
.y2f{bottom:285.322000pt;}
.yc5{bottom:286.519600pt;}
.yb2{bottom:294.519600pt;}
.y79{bottom:294.519733pt;}
.y107{bottom:294.698267pt;}
.yc4{bottom:299.852933pt;}
.y46{bottom:302.811333pt;}
.y2e{bottom:303.322000pt;}
.y106{bottom:308.031600pt;}
.yb1{bottom:311.852933pt;}
.y78{bottom:311.853067pt;}
.yc3{bottom:313.186267pt;}
.y45{bottom:316.148667pt;}
.y2d{bottom:321.322000pt;}
.y105{bottom:321.364933pt;}
.yc2{bottom:326.519600pt;}
.yb0{bottom:329.186267pt;}
.y77{bottom:329.186400pt;}
.y44{bottom:333.266000pt;}
.y104{bottom:334.698267pt;}
.y2c{bottom:339.322000pt;}
.yc1{bottom:339.852933pt;}
.yaf{bottom:346.519600pt;}
.y76{bottom:346.519733pt;}
.y43{bottom:346.603333pt;}
.y103{bottom:348.031600pt;}
.yc0{bottom:353.186267pt;}
.y2b{bottom:357.322000pt;}
.y42{bottom:359.940667pt;}
.y102{bottom:361.364933pt;}
.yae{bottom:363.852933pt;}
.y75{bottom:363.853067pt;}
.ybf{bottom:366.519600pt;}
.y41{bottom:373.278000pt;}
.y101{bottom:374.698267pt;}
.y2a{bottom:375.322000pt;}
.ybe{bottom:379.852933pt;}
.yad{bottom:381.186267pt;}
.y74{bottom:381.186400pt;}
.y100{bottom:388.031600pt;}
.ybd{bottom:393.186267pt;}
.y29{bottom:393.322000pt;}
.yac{bottom:398.519600pt;}
.y73{bottom:398.519733pt;}
.y40{bottom:399.943333pt;}
.yff{bottom:401.364933pt;}
.ybc{bottom:406.519600pt;}
.y28{bottom:411.322000pt;}
.y3f{bottom:413.280667pt;}
.yfe{bottom:414.698267pt;}
.yab{bottom:415.852933pt;}
.y72{bottom:415.853067pt;}
.ybb{bottom:419.852933pt;}
.y3e{bottom:426.618000pt;}
.yfd{bottom:428.031600pt;}
.y27{bottom:429.322000pt;}
.yaa{bottom:433.186267pt;}
.y71{bottom:433.186400pt;}
.y3d{bottom:439.955333pt;}
.yfc{bottom:441.364933pt;}
.y26{bottom:447.322000pt;}
.ya9{bottom:450.519600pt;}
.y70{bottom:450.519733pt;}
.y3c{bottom:453.292667pt;}
.yfb{bottom:454.698267pt;}
.y25{bottom:465.322000pt;}
.y3b{bottom:466.630000pt;}
.ya8{bottom:467.852933pt;}
.y6f{bottom:467.853067pt;}
.yfa{bottom:468.031600pt;}
.y3a{bottom:479.967333pt;}
.yf9{bottom:481.364933pt;}
.y24{bottom:483.322000pt;}
.ya7{bottom:485.186267pt;}
.y6e{bottom:485.186400pt;}
.y39{bottom:493.304667pt;}
.yf8{bottom:494.698267pt;}
.y23{bottom:501.322000pt;}
.ya6{bottom:502.519600pt;}
.y6d{bottom:502.519733pt;}
.y38{bottom:506.642000pt;}
.yf7{bottom:508.031600pt;}
.y22{bottom:519.322000pt;}
.ya5{bottom:519.852933pt;}
.y6c{bottom:519.853067pt;}
.yf6{bottom:521.364933pt;}
.y37{bottom:533.307333pt;}
.yf5{bottom:534.698267pt;}
.ya4{bottom:537.186267pt;}
.y6b{bottom:537.186400pt;}
.y21{bottom:537.322000pt;}
.yf4{bottom:548.031600pt;}
.ya3{bottom:554.519600pt;}
.y6a{bottom:554.519733pt;}
.y20{bottom:555.322000pt;}
.y36{bottom:559.972667pt;}
.yf3{bottom:561.364933pt;}
.ya2{bottom:571.852933pt;}
.y69{bottom:571.853067pt;}
.y35{bottom:573.310000pt;}
.y1f{bottom:573.322000pt;}
.yf2{bottom:574.698267pt;}
.y34{bottom:586.647333pt;}
.yf1{bottom:588.031600pt;}
.ya1{bottom:589.186267pt;}
.y68{bottom:589.186400pt;}
.y1e{bottom:591.322000pt;}
.y33{bottom:599.984667pt;}
.yf0{bottom:601.364933pt;}
.ya0{bottom:606.519600pt;}
.y67{bottom:606.519733pt;}
.y1d{bottom:609.322000pt;}
.y32{bottom:613.322000pt;}
.yef{bottom:614.698267pt;}
.y9f{bottom:623.852933pt;}
.y66{bottom:623.853067pt;}
.yee{bottom:628.031600pt;}
.y86{bottom:641.183733pt;}
.y9e{bottom:641.186267pt;}
.y65{bottom:641.186400pt;}
.yed{bottom:641.364933pt;}
.yec{bottom:654.698267pt;}
.y88{bottom:658.517067pt;}
.y9d{bottom:658.519600pt;}
.y64{bottom:658.519733pt;}
.y1b{bottom:660.122533pt;}
.yeb{bottom:668.031600pt;}
.y1a{bottom:673.455867pt;}
.y9c{bottom:675.852933pt;}
.y63{bottom:675.853067pt;}
.yea{bottom:681.364933pt;}
.y19{bottom:686.789200pt;}
.y9b{bottom:693.186267pt;}
.y62{bottom:693.186400pt;}
.ye9{bottom:694.698267pt;}
.y18{bottom:700.122533pt;}
.ye8{bottom:708.031600pt;}
.y9a{bottom:710.519600pt;}
.y61{bottom:710.519733pt;}
.ye7{bottom:721.364933pt;}
.y99{bottom:727.852933pt;}
.y60{bottom:727.853067pt;}
.ye6{bottom:734.698267pt;}
.y17{bottom:737.828000pt;}
.y87{bottom:745.183733pt;}
.y98{bottom:745.186267pt;}
.y5f{bottom:745.186400pt;}
.ye5{bottom:748.031600pt;}
.y16{bottom:753.965200pt;}
.ye4{bottom:761.364933pt;}
.y1{bottom:762.391733pt;}
.y97{bottom:762.519600pt;}
.y5e{bottom:762.519733pt;}
.y15{bottom:767.298533pt;}
.ye3{bottom:774.698267pt;}
.y96{bottom:779.852933pt;}
.y5d{bottom:779.853067pt;}
.y14{bottom:780.631867pt;}
.ye2{bottom:788.031600pt;}
.y13{bottom:791.161333pt;}
.y95{bottom:797.186267pt;}
.y5c{bottom:797.186400pt;}
.ye1{bottom:801.364933pt;}
.y12{bottom:807.298533pt;}
.y7{bottom:812.673467pt;}
.y94{bottom:814.519600pt;}
.y5b{bottom:814.519733pt;}
.ye0{bottom:814.698267pt;}
.y11{bottom:817.828000pt;}
.ydf{bottom:828.031600pt;}
.y93{bottom:831.852933pt;}
.y5a{bottom:831.853067pt;}
.y10{bottom:833.965200pt;}
.yde{bottom:841.364933pt;}
.y92{bottom:849.186267pt;}
.y59{bottom:849.186400pt;}
.yf{bottom:852.061733pt;}
.ydd{bottom:854.698267pt;}
.y91{bottom:866.519600pt;}
.y58{bottom:866.519733pt;}
.ydc{bottom:868.031600pt;}
.ye{bottom:868.057733pt;}
.ydb{bottom:881.364933pt;}
.y90{bottom:883.852933pt;}
.y57{bottom:883.853067pt;}
.y4f{bottom:891.705600pt;}
.yda{bottom:894.698267pt;}
.yd{bottom:899.197067pt;}
.y8f{bottom:901.186267pt;}
.y56{bottom:901.186400pt;}
.yd9{bottom:908.031600pt;}
.y8e{bottom:918.519600pt;}
.y55{bottom:918.519733pt;}
.yd8{bottom:921.364933pt;}
.yc{bottom:925.853067pt;}
.yd7{bottom:934.698267pt;}
.y8d{bottom:935.852933pt;}
.y54{bottom:935.853067pt;}
.yd6{bottom:948.031600pt;}
.yb{bottom:952.509067pt;}
.y8c{bottom:953.186267pt;}
.y53{bottom:953.186400pt;}
.yd5{bottom:961.364933pt;}
.y8b{bottom:970.519600pt;}
.y52{bottom:970.519733pt;}
.yd4{bottom:974.698267pt;}
.y8a{bottom:987.852933pt;}
.y51{bottom:987.853067pt;}
.yd3{bottom:988.031600pt;}
.y1c{bottom:991.275600pt;}
.yd2{bottom:1001.364933pt;}
.y89{bottom:1005.186267pt;}
.y50{bottom:1005.186400pt;}
.y6{bottom:1008.587467pt;}
.yd1{bottom:1014.698267pt;}
.y4{bottom:1032.183867pt;}
.y9{bottom:1032.781867pt;}
.y8{bottom:1046.115200pt;}
.y4e{bottom:1065.126000pt;}
.y3{bottom:1070.733867pt;}
.hb{height:23.221867pt;}
.h11{height:29.472000pt;}
.h12{height:29.504000pt;}
.h17{height:29.866667pt;}
.h5{height:30.781250pt;}
.h6{height:31.962667pt;}
.h18{height:31.968000pt;}
.h10{height:34.384000pt;}
.hc{height:34.421333pt;}
.hd{height:36.840000pt;}
.h8{height:36.880000pt;}
.h14{height:37.333333pt;}
.h16{height:37.973333pt;}
.h3{height:39.296000pt;}
.h4{height:42.720000pt;}
.ha{height:44.256000pt;}
.h13{height:47.466667pt;}
.h2{height:49.120000pt;}
.hf{height:49.173333pt;}
.h15{height:54.032000pt;}
.he{height:58.944000pt;}
.h7{height:59.008000pt;}
.h9{height:66.368000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:53.873333pt;}
.x5{left:75.590533pt;}
.x1{left:76.521200pt;}
.x25{left:77.777467pt;}
.x13{left:79.603067pt;}
.x23{left:81.817467pt;}
.x11{left:83.551067pt;}
.x31{left:86.173200pt;}
.x1e{left:92.707067pt;}
.x28{left:94.488267pt;}
.x24{left:95.841467pt;}
.x22{left:99.513467pt;}
.x12{left:104.681733pt;}
.x16{left:110.907067pt;}
.x1a{left:111.849733pt;}
.x15{left:113.333733pt;}
.x17{left:117.953733pt;}
.x20{left:121.416400pt;}
.x14{left:124.515067pt;}
.x4{left:138.796000pt;}
.x10{left:142.201733pt;}
.x1f{left:149.640400pt;}
.x1d{left:151.180400pt;}
.x1c{left:154.661733pt;}
.x19{left:158.264400pt;}
.x1b{left:163.099067pt;}
.x21{left:164.185467pt;}
.x2d{left:179.087200pt;}
.x27{left:181.175200pt;}
.x18{left:191.444400pt;}
.x6{left:204.525867pt;}
.xb{left:222.803200pt;}
.xc{left:228.511467pt;}
.xd{left:234.475200pt;}
.xf{left:241.889733pt;}
.x29{left:410.078800pt;}
.x30{left:420.661333pt;}
.x2a{left:428.976533pt;}
.x9{left:444.282800pt;}
.x2c{left:475.495600pt;}
.x2e{left:499.239467pt;}
.x2b{left:516.271200pt;}
.x2f{left:518.479333pt;}
.xa{left:522.315733pt;}
.x8{left:604.604800pt;}
.x2{left:744.566933pt;}
.x7{left:753.708933pt;}
.x26{left:754.855733pt;}
.x3{left:780.921200pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  