
    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_c174868938d68237d1275650.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731000;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_25cef57baf2aabd1cad6f181.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.726000;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_1a105d5151bbc9283547d02e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.022000;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_145a4a351dcea2622ba70a27.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026000;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_4020e8ef0075d3215b7267f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968750;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_4e7be3522d06a8628e8f1a4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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_eed6b3fd17586b4b667c68ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_da9bfa6fa8ff6afb472bd847.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_ebceeb8b297d6db7a1b48551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_dd8d9c325f1057156be9f271.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964000;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_97f430dd04e91ddd9a35130c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.965032;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_d417421eaefdab5e4fcea775.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_949180b1e1c167ac8b708203.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_49a2a0989ded5c757ecc0a9d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.223000;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_61fbfa74588a6d93afa46170.woff2')format("woff");}.fff{font-family:fff;line-height:0.522000;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_35e71b957fd876fcb72ba134.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m57{transform:matrix(-0.045420,0.245839,-0.245839,-0.045420,0,0);-ms-transform:matrix(-0.045420,0.245839,-0.245839,-0.045420,0,0);-webkit-transform:matrix(-0.045420,0.245839,-0.245839,-0.045420,0,0);}
.m56{transform:matrix(-0.033609,0.247731,-0.247731,-0.033609,0,0);-ms-transform:matrix(-0.033609,0.247731,-0.247731,-0.033609,0,0);-webkit-transform:matrix(-0.033609,0.247731,-0.247731,-0.033609,0,0);}
.m68{transform:matrix(-0.026406,0.248602,-0.248602,-0.026406,0,0);-ms-transform:matrix(-0.026406,0.248602,-0.248602,-0.026406,0,0);-webkit-transform:matrix(-0.026406,0.248602,-0.248602,-0.026406,0,0);}
.m55{transform:matrix(-0.024964,0.248750,-0.248750,-0.024964,0,0);-ms-transform:matrix(-0.024964,0.248750,-0.248750,-0.024964,0,0);-webkit-transform:matrix(-0.024964,0.248750,-0.248750,-0.024964,0,0);}
.m54{transform:matrix(-0.019014,0.249276,-0.249276,-0.019014,0,0);-ms-transform:matrix(-0.019014,0.249276,-0.249276,-0.019014,0,0);-webkit-transform:matrix(-0.019014,0.249276,-0.249276,-0.019014,0,0);}
.ma{transform:matrix(-0.014591,0.249574,-0.249574,-0.014591,0,0);-ms-transform:matrix(-0.014591,0.249574,-0.249574,-0.014591,0,0);-webkit-transform:matrix(-0.014591,0.249574,-0.249574,-0.014591,0,0);}
.m69{transform:matrix(-0.014278,0.249592,-0.249592,-0.014278,0,0);-ms-transform:matrix(-0.014278,0.249592,-0.249592,-0.014278,0,0);-webkit-transform:matrix(-0.014278,0.249592,-0.249592,-0.014278,0,0);}
.m2f{transform:matrix(-0.013730,0.249623,-0.249623,-0.013730,0,0);-ms-transform:matrix(-0.013730,0.249623,-0.249623,-0.013730,0,0);-webkit-transform:matrix(-0.013730,0.249623,-0.249623,-0.013730,0,0);}
.m53{transform:matrix(-0.010331,0.249786,-0.249786,-0.010331,0,0);-ms-transform:matrix(-0.010331,0.249786,-0.249786,-0.010331,0,0);-webkit-transform:matrix(-0.010331,0.249786,-0.249786,-0.010331,0,0);}
.m2e{transform:matrix(-0.006530,0.249915,-0.249915,-0.006530,0,0);-ms-transform:matrix(-0.006530,0.249915,-0.249915,-0.006530,0,0);-webkit-transform:matrix(-0.006530,0.249915,-0.249915,-0.006530,0,0);}
.m6a{transform:matrix(-0.003705,0.249973,-0.249973,-0.003705,0,0);-ms-transform:matrix(-0.003705,0.249973,-0.249973,-0.003705,0,0);-webkit-transform:matrix(-0.003705,0.249973,-0.249973,-0.003705,0,0);}
.m77{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);}
.m2d{transform:matrix(0.000333,0.250000,-0.250000,0.000333,0,0);-ms-transform:matrix(0.000333,0.250000,-0.250000,0.000333,0,0);-webkit-transform:matrix(0.000333,0.250000,-0.250000,0.000333,0,0);}
.m9{transform:matrix(0.000718,0.249999,-0.249999,0.000718,0,0);-ms-transform:matrix(0.000718,0.249999,-0.249999,0.000718,0,0);-webkit-transform:matrix(0.000718,0.249999,-0.249999,0.000718,0,0);}
.m52{transform:matrix(0.001073,0.249998,-0.249998,0.001073,0,0);-ms-transform:matrix(0.001073,0.249998,-0.249998,0.001073,0,0);-webkit-transform:matrix(0.001073,0.249998,-0.249998,0.001073,0,0);}
.m6b{transform:matrix(0.006870,0.249906,-0.249906,0.006870,0,0);-ms-transform:matrix(0.006870,0.249906,-0.249906,0.006870,0,0);-webkit-transform:matrix(0.006870,0.249906,-0.249906,0.006870,0,0);}
.m2c{transform:matrix(0.007200,0.249896,-0.249896,0.007200,0,0);-ms-transform:matrix(0.007200,0.249896,-0.249896,0.007200,0,0);-webkit-transform:matrix(0.007200,0.249896,-0.249896,0.007200,0,0);}
.m51{transform:matrix(0.013025,0.249660,-0.249660,0.013025,0,0);-ms-transform:matrix(0.013025,0.249660,-0.249660,0.013025,0,0);-webkit-transform:matrix(0.013025,0.249660,-0.249660,0.013025,0,0);}
.m2b{transform:matrix(0.014061,0.249604,-0.249604,0.014061,0,0);-ms-transform:matrix(0.014061,0.249604,-0.249604,0.014061,0,0);-webkit-transform:matrix(0.014061,0.249604,-0.249604,0.014061,0,0);}
.m8{transform:matrix(0.015316,0.249530,-0.249530,0.015316,0,0);-ms-transform:matrix(0.015316,0.249530,-0.249530,0.015316,0,0);-webkit-transform:matrix(0.015316,0.249530,-0.249530,0.015316,0,0);}
.m6c{transform:matrix(0.017445,0.249391,-0.249391,0.017445,0,0);-ms-transform:matrix(0.017445,0.249391,-0.249391,0.017445,0,0);-webkit-transform:matrix(0.017445,0.249391,-0.249391,0.017445,0,0);}
.m50{transform:matrix(0.024941,0.248753,-0.248753,0.024941,0,0);-ms-transform:matrix(0.024941,0.248753,-0.248753,0.024941,0,0);-webkit-transform:matrix(0.024941,0.248753,-0.248753,0.024941,0,0);}
.m6d{transform:matrix(0.027986,0.248429,-0.248429,0.027986,0,0);-ms-transform:matrix(0.027986,0.248429,-0.248429,0.027986,0,0);-webkit-transform:matrix(0.027986,0.248429,-0.248429,0.027986,0,0);}
.m4f{transform:matrix(0.034658,0.247586,-0.247586,0.034658,0,0);-ms-transform:matrix(0.034658,0.247586,-0.247586,0.034658,0,0);-webkit-transform:matrix(0.034658,0.247586,-0.247586,0.034658,0,0);}
.m4e{transform:matrix(0.044862,0.245942,-0.245942,0.044862,0,0);-ms-transform:matrix(0.044862,0.245942,-0.245942,0.044862,0,0);-webkit-transform:matrix(0.044862,0.245942,-0.245942,0.044862,0,0);}
.m15{transform:matrix(0.053648,0.244176,-0.244176,0.053648,0,0);-ms-transform:matrix(0.053648,0.244176,-0.244176,0.053648,0,0);-webkit-transform:matrix(0.053648,0.244176,-0.244176,0.053648,0,0);}
.m14{transform:matrix(0.064734,0.241474,-0.241474,0.064734,0,0);-ms-transform:matrix(0.064734,0.241474,-0.241474,0.064734,0,0);-webkit-transform:matrix(0.064734,0.241474,-0.241474,0.064734,0,0);}
.m13{transform:matrix(0.072701,0.239196,-0.239196,0.072701,0,0);-ms-transform:matrix(0.072701,0.239196,-0.239196,0.072701,0,0);-webkit-transform:matrix(0.072701,0.239196,-0.239196,0.072701,0,0);}
.m12{transform:matrix(0.078133,0.237477,-0.237477,0.078133,0,0);-ms-transform:matrix(0.078133,0.237477,-0.237477,0.078133,0,0);-webkit-transform:matrix(0.078133,0.237477,-0.237477,0.078133,0,0);}
.m1f{transform:matrix(0.106951,-0.225968,0.225968,0.106951,0,0);-ms-transform:matrix(0.106951,-0.225968,0.225968,0.106951,0,0);-webkit-transform:matrix(0.106951,-0.225968,0.225968,0.106951,0,0);}
.m1e{transform:matrix(0.113049,-0.222980,0.222980,0.113049,0,0);-ms-transform:matrix(0.113049,-0.222980,0.222980,0.113049,0,0);-webkit-transform:matrix(0.113049,-0.222980,0.222980,0.113049,0,0);}
.m19{transform:matrix(0.113651,-0.222674,0.222674,0.113651,0,0);-ms-transform:matrix(0.113651,-0.222674,0.222674,0.113651,0,0);-webkit-transform:matrix(0.113651,-0.222674,0.222674,0.113651,0,0);}
.m23{transform:matrix(0.115356,-0.221795,0.221795,0.115356,0,0);-ms-transform:matrix(0.115356,-0.221795,0.221795,0.115356,0,0);-webkit-transform:matrix(0.115356,-0.221795,0.221795,0.115356,0,0);}
.m1d{transform:matrix(0.117183,-0.220835,0.220835,0.117183,0,0);-ms-transform:matrix(0.117183,-0.220835,0.220835,0.117183,0,0);-webkit-transform:matrix(0.117183,-0.220835,0.220835,0.117183,0,0);}
.m26{transform:matrix(0.117296,-0.220775,0.220775,0.117296,0,0);-ms-transform:matrix(0.117296,-0.220775,0.220775,0.117296,0,0);-webkit-transform:matrix(0.117296,-0.220775,0.220775,0.117296,0,0);}
.m18{transform:matrix(0.118564,-0.220097,0.220097,0.118564,0,0);-ms-transform:matrix(0.118564,-0.220097,0.220097,0.118564,0,0);-webkit-transform:matrix(0.118564,-0.220097,0.220097,0.118564,0,0);}
.m22{transform:matrix(0.122628,-0.217859,0.217859,0.122628,0,0);-ms-transform:matrix(0.122628,-0.217859,0.217859,0.122628,0,0);-webkit-transform:matrix(0.122628,-0.217859,0.217859,0.122628,0,0);}
.m1c{transform:matrix(0.123135,-0.217573,0.217573,0.123135,0,0);-ms-transform:matrix(0.123135,-0.217573,0.217573,0.123135,0,0);-webkit-transform:matrix(0.123135,-0.217573,0.217573,0.123135,0,0);}
.m25{transform:matrix(0.124976,-0.216520,0.216520,0.124976,0,0);-ms-transform:matrix(0.124976,-0.216520,0.216520,0.124976,0,0);-webkit-transform:matrix(0.124976,-0.216520,0.216520,0.124976,0,0);}
.m17{transform:matrix(0.125405,-0.216272,0.216272,0.125405,0,0);-ms-transform:matrix(0.125405,-0.216272,0.216272,0.125405,0,0);-webkit-transform:matrix(0.125405,-0.216272,0.216272,0.125405,0,0);}
.m21{transform:matrix(0.128406,-0.214504,0.214504,0.128406,0,0);-ms-transform:matrix(0.128406,-0.214504,0.214504,0.128406,0,0);-webkit-transform:matrix(0.128406,-0.214504,0.214504,0.128406,0,0);}
.m1b{transform:matrix(0.132251,-0.212155,0.212155,0.132251,0,0);-ms-transform:matrix(0.132251,-0.212155,0.212155,0.132251,0,0);-webkit-transform:matrix(0.132251,-0.212155,0.212155,0.132251,0,0);}
.m24{transform:matrix(0.132522,-0.211986,0.211986,0.132522,0,0);-ms-transform:matrix(0.132522,-0.211986,0.211986,0.132522,0,0);-webkit-transform:matrix(0.132522,-0.211986,0.211986,0.132522,0,0);}
.m16{transform:matrix(0.133676,-0.211260,0.211260,0.133676,0,0);-ms-transform:matrix(0.133676,-0.211260,0.211260,0.133676,0,0);-webkit-transform:matrix(0.133676,-0.211260,0.211260,0.133676,0,0);}
.m20{transform:matrix(0.134417,-0.210789,0.210789,0.134417,0,0);-ms-transform:matrix(0.134417,-0.210789,0.210789,0.134417,0,0);-webkit-transform:matrix(0.134417,-0.210789,0.210789,0.134417,0,0);}
.m1a{transform:matrix(0.141488,-0.206109,0.206109,0.141488,0,0);-ms-transform:matrix(0.141488,-0.206109,0.206109,0.141488,0,0);-webkit-transform:matrix(0.141488,-0.206109,0.206109,0.141488,0,0);}
.m5f{transform:matrix(0.195670,0.155607,-0.155607,0.195670,0,0);-ms-transform:matrix(0.195670,0.155607,-0.155607,0.195670,0,0);-webkit-transform:matrix(0.195670,0.155607,-0.155607,0.195670,0,0);}
.m4d{transform:matrix(0.196731,0.154262,-0.154262,0.196731,0,0);-ms-transform:matrix(0.196731,0.154262,-0.154262,0.196731,0,0);-webkit-transform:matrix(0.196731,0.154262,-0.154262,0.196731,0,0);}
.m5e{transform:matrix(0.197626,-0.153114,0.153114,0.197626,0,0);-ms-transform:matrix(0.197626,-0.153114,0.153114,0.197626,0,0);-webkit-transform:matrix(0.197626,-0.153114,0.153114,0.197626,0,0);}
.m3{transform:matrix(0.198088,0.152516,-0.152516,0.198088,0,0);-ms-transform:matrix(0.198088,0.152516,-0.152516,0.198088,0,0);-webkit-transform:matrix(0.198088,0.152516,-0.152516,0.198088,0,0);}
.m60{transform:matrix(0.202085,0.147179,-0.147179,0.202085,0,0);-ms-transform:matrix(0.202085,0.147179,-0.147179,0.202085,0,0);-webkit-transform:matrix(0.202085,0.147179,-0.147179,0.202085,0,0);}
.m5d{transform:matrix(0.202394,-0.146753,0.146753,0.202394,0,0);-ms-transform:matrix(0.202394,-0.146753,0.146753,0.202394,0,0);-webkit-transform:matrix(0.202394,-0.146753,0.146753,0.202394,0,0);}
.m6e{transform:matrix(0.202627,-0.146432,0.146432,0.202627,0,0);-ms-transform:matrix(0.202627,-0.146432,0.146432,0.202627,0,0);-webkit-transform:matrix(0.202627,-0.146432,0.146432,0.202627,0,0);}
.m4c{transform:matrix(0.203878,0.144684,-0.144684,0.203878,0,0);-ms-transform:matrix(0.203878,0.144684,-0.144684,0.203878,0,0);-webkit-transform:matrix(0.203878,0.144684,-0.144684,0.203878,0,0);}
.m4{transform:matrix(0.206169,0.141401,-0.141401,0.206169,0,0);-ms-transform:matrix(0.206169,0.141401,-0.141401,0.206169,0,0);-webkit-transform:matrix(0.206169,0.141401,-0.141401,0.206169,0,0);}
.m5c{transform:matrix(0.206955,-0.140248,0.140248,0.206955,0,0);-ms-transform:matrix(0.206955,-0.140248,0.140248,0.206955,0,0);-webkit-transform:matrix(0.206955,-0.140248,0.140248,0.206955,0,0);}
.m61{transform:matrix(0.207253,0.139807,-0.139807,0.207253,0,0);-ms-transform:matrix(0.207253,0.139807,-0.139807,0.207253,0,0);-webkit-transform:matrix(0.207253,0.139807,-0.139807,0.207253,0,0);}
.m4b{transform:matrix(0.208782,0.137513,-0.137513,0.208782,0,0);-ms-transform:matrix(0.208782,0.137513,-0.137513,0.208782,0,0);-webkit-transform:matrix(0.208782,0.137513,-0.137513,0.208782,0,0);}
.m6f{transform:matrix(0.209695,-0.136118,0.136118,0.209695,0,0);-ms-transform:matrix(0.209695,-0.136118,0.136118,0.209695,0,0);-webkit-transform:matrix(0.209695,-0.136118,0.136118,0.209695,0,0);}
.m11{transform:matrix(0.210124,-0.135454,0.135454,0.210124,0,0);-ms-transform:matrix(0.210124,-0.135454,0.135454,0.210124,0,0);-webkit-transform:matrix(0.210124,-0.135454,0.135454,0.210124,0,0);}
.mb{transform:matrix(0.211025,0.134046,-0.134046,0.211025,0,0);-ms-transform:matrix(0.211025,0.134046,-0.134046,0.211025,0,0);-webkit-transform:matrix(0.211025,0.134046,-0.134046,0.211025,0,0);}
.m34{transform:matrix(0.212067,0.132393,-0.132393,0.212067,0,0);-ms-transform:matrix(0.212067,0.132393,-0.132393,0.212067,0,0);-webkit-transform:matrix(0.212067,0.132393,-0.132393,0.212067,0,0);}
.m33{transform:matrix(0.212140,-0.132275,0.132275,0.212140,0,0);-ms-transform:matrix(0.212140,-0.132275,0.132275,0.212140,0,0);-webkit-transform:matrix(0.212140,-0.132275,0.132275,0.212140,0,0);}
.m27{transform:matrix(0.212381,-0.131888,0.131888,0.212381,0,0);-ms-transform:matrix(0.212381,-0.131888,0.131888,0.212381,0,0);-webkit-transform:matrix(0.212381,-0.131888,0.131888,0.212381,0,0);}
.m5b{transform:matrix(0.212703,-0.131367,0.131367,0.212703,0,0);-ms-transform:matrix(0.212703,-0.131367,0.131367,0.212703,0,0);-webkit-transform:matrix(0.212703,-0.131367,0.131367,0.212703,0,0);}
.m62{transform:matrix(0.213257,0.130467,-0.130467,0.213257,0,0);-ms-transform:matrix(0.213257,0.130467,-0.130467,0.213257,0,0);-webkit-transform:matrix(0.213257,0.130467,-0.130467,0.213257,0,0);}
.m4a{transform:matrix(0.213438,0.130169,-0.130169,0.213438,0,0);-ms-transform:matrix(0.213438,0.130169,-0.130169,0.213438,0,0);-webkit-transform:matrix(0.213438,0.130169,-0.130169,0.213438,0,0);}
.m10{transform:matrix(0.213662,-0.129802,0.129802,0.213662,0,0);-ms-transform:matrix(0.213662,-0.129802,0.129802,0.213662,0,0);-webkit-transform:matrix(0.213662,-0.129802,0.129802,0.213662,0,0);}
.m70{transform:matrix(0.214302,-0.128743,0.128743,0.214302,0,0);-ms-transform:matrix(0.214302,-0.128743,0.128743,0.214302,0,0);-webkit-transform:matrix(0.214302,-0.128743,0.128743,0.214302,0,0);}
.m5{transform:matrix(0.214871,0.127791,-0.127791,0.214871,0,0);-ms-transform:matrix(0.214871,0.127791,-0.127791,0.214871,0,0);-webkit-transform:matrix(0.214871,0.127791,-0.127791,0.214871,0,0);}
.m32{transform:matrix(0.215596,-0.126564,0.126564,0.215596,0,0);-ms-transform:matrix(0.215596,-0.126564,0.126564,0.215596,0,0);-webkit-transform:matrix(0.215596,-0.126564,0.126564,0.215596,0,0);}
.m35{transform:matrix(0.215938,0.125979,-0.125979,0.215938,0,0);-ms-transform:matrix(0.215938,0.125979,-0.125979,0.215938,0,0);-webkit-transform:matrix(0.215938,0.125979,-0.125979,0.215938,0,0);}
.m28{transform:matrix(0.216152,-0.125612,0.125612,0.216152,0,0);-ms-transform:matrix(0.216152,-0.125612,0.125612,0.216152,0,0);-webkit-transform:matrix(0.216152,-0.125612,0.125612,0.216152,0,0);}
.mc{transform:matrix(0.216176,0.125570,-0.125570,0.216176,0,0);-ms-transform:matrix(0.216176,0.125570,-0.125570,0.216176,0,0);-webkit-transform:matrix(0.216176,0.125570,-0.125570,0.216176,0,0);}
.mf{transform:matrix(0.216770,-0.124542,0.124542,0.216770,0,0);-ms-transform:matrix(0.216770,-0.124542,0.124542,0.216770,0,0);-webkit-transform:matrix(0.216770,-0.124542,0.124542,0.216770,0,0);}
.m63{transform:matrix(0.217552,0.123172,-0.123172,0.217552,0,0);-ms-transform:matrix(0.217552,0.123172,-0.123172,0.217552,0,0);-webkit-transform:matrix(0.217552,0.123172,-0.123172,0.217552,0,0);}
.m31{transform:matrix(0.218314,-0.121816,0.121816,0.218314,0,0);-ms-transform:matrix(0.218314,-0.121816,0.121816,0.218314,0,0);-webkit-transform:matrix(0.218314,-0.121816,0.121816,0.218314,0,0);}
.m36{transform:matrix(0.218781,0.120976,-0.120976,0.218781,0,0);-ms-transform:matrix(0.218781,0.120976,-0.120976,0.218781,0,0);-webkit-transform:matrix(0.218781,0.120976,-0.120976,0.218781,0,0);}
.m71{transform:matrix(0.218907,-0.120746,0.120746,0.218907,0,0);-ms-transform:matrix(0.218907,-0.120746,0.120746,0.218907,0,0);-webkit-transform:matrix(0.218907,-0.120746,0.120746,0.218907,0,0);}
.m29{transform:matrix(0.219235,-0.120150,0.120150,0.219235,0,0);-ms-transform:matrix(0.219235,-0.120150,0.120150,0.219235,0,0);-webkit-transform:matrix(0.219235,-0.120150,0.120150,0.219235,0,0);}
.m49{transform:matrix(0.219415,0.119822,-0.119822,0.219415,0,0);-ms-transform:matrix(0.219415,0.119822,-0.119822,0.219415,0,0);-webkit-transform:matrix(0.219415,0.119822,-0.119822,0.219415,0,0);}
.m5a{transform:matrix(0.220618,-0.117591,0.117591,0.220618,0,0);-ms-transform:matrix(0.220618,-0.117591,0.117591,0.220618,0,0);-webkit-transform:matrix(0.220618,-0.117591,0.117591,0.220618,0,0);}
.m30{transform:matrix(0.220793,-0.117263,0.117263,0.220793,0,0);-ms-transform:matrix(0.220793,-0.117263,0.117263,0.220793,0,0);-webkit-transform:matrix(0.220793,-0.117263,0.117263,0.220793,0,0);}
.me{transform:matrix(0.221062,-0.116754,0.116754,0.221062,0,0);-ms-transform:matrix(0.221062,-0.116754,0.116754,0.221062,0,0);-webkit-transform:matrix(0.221062,-0.116754,0.116754,0.221062,0,0);}
.m2a{transform:matrix(0.221220,-0.116454,0.116454,0.221220,0,0);-ms-transform:matrix(0.221220,-0.116454,0.116454,0.221220,0,0);-webkit-transform:matrix(0.221220,-0.116454,0.116454,0.221220,0,0);}
.md{transform:matrix(0.221293,0.116316,-0.116316,0.221293,0,0);-ms-transform:matrix(0.221293,0.116316,-0.116316,0.221293,0,0);-webkit-transform:matrix(0.221293,0.116316,-0.116316,0.221293,0,0);}
.m64{transform:matrix(0.221357,0.116194,-0.116194,0.221357,0,0);-ms-transform:matrix(0.221357,0.116194,-0.116194,0.221357,0,0);-webkit-transform:matrix(0.221357,0.116194,-0.116194,0.221357,0,0);}
.m37{transform:matrix(0.221505,0.115913,-0.115913,0.221505,0,0);-ms-transform:matrix(0.221505,0.115913,-0.115913,0.221505,0,0);-webkit-transform:matrix(0.221505,0.115913,-0.115913,0.221505,0,0);}
.m6{transform:matrix(0.223040,0.112930,-0.112930,0.223040,0,0);-ms-transform:matrix(0.223040,0.112930,-0.112930,0.223040,0,0);-webkit-transform:matrix(0.223040,0.112930,-0.112930,0.223040,0,0);}
.m72{transform:matrix(0.224191,-0.110627,0.110627,0.224191,0,0);-ms-transform:matrix(0.224191,-0.110627,0.110627,0.224191,0,0);-webkit-transform:matrix(0.224191,-0.110627,0.110627,0.224191,0,0);}
.m48{transform:matrix(0.224657,0.109678,-0.109678,0.224657,0,0);-ms-transform:matrix(0.224657,0.109678,-0.109678,0.224657,0,0);-webkit-transform:matrix(0.224657,0.109678,-0.109678,0.224657,0,0);}
.m65{transform:matrix(0.224936,0.109105,-0.109105,0.224936,0,0);-ms-transform:matrix(0.224936,0.109105,-0.109105,0.224936,0,0);-webkit-transform:matrix(0.224936,0.109105,-0.109105,0.224936,0,0);}
.m59{transform:matrix(0.225625,-0.107672,0.107672,0.225625,0,0);-ms-transform:matrix(0.225625,-0.107672,0.107672,0.225625,0,0);-webkit-transform:matrix(0.225625,-0.107672,0.107672,0.225625,0,0);}
.m47{transform:matrix(0.228115,0.102291,-0.102291,0.228115,0,0);-ms-transform:matrix(0.228115,0.102291,-0.102291,0.228115,0,0);-webkit-transform:matrix(0.228115,0.102291,-0.102291,0.228115,0,0);}
.m66{transform:matrix(0.228504,0.101420,-0.101420,0.228504,0,0);-ms-transform:matrix(0.228504,0.101420,-0.101420,0.228504,0,0);-webkit-transform:matrix(0.228504,0.101420,-0.101420,0.228504,0,0);}
.m73{transform:matrix(0.228791,-0.100770,0.100770,0.228791,0,0);-ms-transform:matrix(0.228791,-0.100770,0.100770,0.228791,0,0);-webkit-transform:matrix(0.228791,-0.100770,0.100770,0.228791,0,0);}
.m7{transform:matrix(0.230185,0.097545,-0.097545,0.230185,0,0);-ms-transform:matrix(0.230185,0.097545,-0.097545,0.230185,0,0);-webkit-transform:matrix(0.230185,0.097545,-0.097545,0.230185,0,0);}
.m58{transform:matrix(0.230804,-0.096070,0.096070,0.230804,0,0);-ms-transform:matrix(0.230804,-0.096070,0.096070,0.230804,0,0);-webkit-transform:matrix(0.230804,-0.096070,0.096070,0.230804,0,0);}
.m46{transform:matrix(0.231747,0.093772,-0.093772,0.231747,0,0);-ms-transform:matrix(0.231747,0.093772,-0.093772,0.231747,0,0);-webkit-transform:matrix(0.231747,0.093772,-0.093772,0.231747,0,0);}
.m67{transform:matrix(0.232982,0.090662,-0.090662,0.232982,0,0);-ms-transform:matrix(0.232982,0.090662,-0.090662,0.232982,0,0);-webkit-transform:matrix(0.232982,0.090662,-0.090662,0.232982,0,0);}
.m45{transform:matrix(0.246906,-0.039208,0.039208,0.246906,0,0);-ms-transform:matrix(0.246906,-0.039208,0.039208,0.246906,0,0);-webkit-transform:matrix(0.246906,-0.039208,0.039208,0.246906,0,0);}
.m38{transform:matrix(0.246911,0.039181,-0.039181,0.246911,0,0);-ms-transform:matrix(0.246911,0.039181,-0.039181,0.246911,0,0);-webkit-transform:matrix(0.246911,0.039181,-0.039181,0.246911,0,0);}
.m7b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247742,-0.033527,0.033527,0.247742,0,0);-ms-transform:matrix(0.247742,-0.033527,0.033527,0.247742,0,0);-webkit-transform:matrix(0.247742,-0.033527,0.033527,0.247742,0,0);}
.m81{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247925,0.032142,-0.032142,0.247925,0,0);-ms-transform:matrix(0.247925,0.032142,-0.032142,0.247925,0,0);-webkit-transform:matrix(0.247925,0.032142,-0.032142,0.247925,0,0);}
.m7c{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248477,-0.027552,0.027552,0.248477,0,0);-ms-transform:matrix(0.248477,-0.027552,0.027552,0.248477,0,0);-webkit-transform:matrix(0.248477,-0.027552,0.027552,0.248477,0,0);}
.m79{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248739,0.025079,-0.025079,0.248739,0,0);-ms-transform:matrix(0.248739,0.025079,-0.025079,0.248739,0,0);-webkit-transform:matrix(0.248739,0.025079,-0.025079,0.248739,0,0);}
.m76{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249182,-0.020211,0.020211,0.249182,0,0);-ms-transform:matrix(0.249182,-0.020211,0.020211,0.249182,0,0);-webkit-transform:matrix(0.249182,-0.020211,0.020211,0.249182,0,0);}
.m3b{transform:matrix(0.249228,0.019631,-0.019631,0.249228,0,0);-ms-transform:matrix(0.249228,0.019631,-0.019631,0.249228,0,0);-webkit-transform:matrix(0.249228,0.019631,-0.019631,0.249228,0,0);}
.m41{transform:matrix(0.249596,-0.014213,0.014213,0.249596,0,0);-ms-transform:matrix(0.249596,-0.014213,0.014213,0.249596,0,0);-webkit-transform:matrix(0.249596,-0.014213,0.014213,0.249596,0,0);}
.m3c{transform:matrix(0.249598,0.014176,-0.014176,0.249598,0,0);-ms-transform:matrix(0.249598,0.014176,-0.014176,0.249598,0,0);-webkit-transform:matrix(0.249598,0.014176,-0.014176,0.249598,0,0);}
.m7d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249817,-0.009575,0.009575,0.249817,0,0);-ms-transform:matrix(0.249817,-0.009575,0.009575,0.249817,0,0);-webkit-transform:matrix(0.249817,-0.009575,0.009575,0.249817,0,0);}
.m3d{transform:matrix(0.249892,0.007348,-0.007348,0.249892,0,0);-ms-transform:matrix(0.249892,0.007348,-0.007348,0.249892,0,0);-webkit-transform:matrix(0.249892,0.007348,-0.007348,0.249892,0,0);}
.m3f{transform:matrix(0.249956,-0.004665,0.004665,0.249956,0,0);-ms-transform:matrix(0.249956,-0.004665,0.004665,0.249956,0,0);-webkit-transform:matrix(0.249956,-0.004665,0.004665,0.249956,0,0);}
.m3e{transform:matrix(0.250000,0.000245,-0.000245,0.250000,0,0);-ms-transform:matrix(0.250000,0.000245,-0.000245,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000245,-0.000245,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);}
.m80{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m83{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);}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.003796px;}
.ls1{letter-spacing:14.346204px;}
.ls0{letter-spacing:21.519960px;}
.ls6{letter-spacing:26.205709px;}
.ls5{letter-spacing:55.673849px;}
.ls3{letter-spacing:66.489796px;}
.ls4{letter-spacing:66.495796px;}
.ls7{letter-spacing:67.785354px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-308.455457px;}
.ws1{word-spacing:-226.837932px;}
.ws50{word-spacing:-196.900314px;}
.ws12{word-spacing:-129.114960px;}
.ws62{word-spacing:-110.739321px;}
.ws4d{word-spacing:-107.552762px;}
.ws5a{word-spacing:-107.036302px;}
.ws5f{word-spacing:-106.648957px;}
.ws5e{word-spacing:-106.390727px;}
.ws49{word-spacing:-104.324888px;}
.ws48{word-spacing:-104.278401px;}
.ws5c{word-spacing:-103.421083px;}
.ws4e{word-spacing:-103.162853px;}
.ws6d{word-spacing:-101.613474px;}
.ws63{word-spacing:-100.451439px;}
.ws4{word-spacing:-100.322324px;}
.ws37{word-spacing:-99.676749px;}
.ws3c{word-spacing:-99.031174px;}
.ws68{word-spacing:-98.902059px;}
.ws22{word-spacing:-98.772944px;}
.ws5d{word-spacing:-98.514714px;}
.ws47{word-spacing:-98.256485px;}
.ws4c{word-spacing:-98.127370px;}
.ws21{word-spacing:-97.998255px;}
.ws15{word-spacing:-97.883642px;}
.wsa{word-spacing:-97.869140px;}
.ws9{word-spacing:-97.741463px;}
.ws2c{word-spacing:-97.740379px;}
.ws6{word-spacing:-97.740025px;}
.ws2b{word-spacing:-97.739869px;}
.ws2a{word-spacing:-97.738389px;}
.ws1d{word-spacing:-97.654495px;}
.wsd{word-spacing:-97.610910px;}
.ws1c{word-spacing:-97.481795px;}
.ws5{word-spacing:-96.965335px;}
.ws39{word-spacing:-96.836220px;}
.ws16{word-spacing:-96.707105px;}
.ws3d{word-spacing:-96.448875px;}
.ws28{word-spacing:-96.319760px;}
.ws1e{word-spacing:-96.190645px;}
.ws20{word-spacing:-96.061530px;}
.ws14{word-spacing:-95.545070px;}
.ws61{word-spacing:-95.415955px;}
.ws60{word-spacing:-95.361280px;}
.ws1f{word-spacing:-95.286840px;}
.ws3a{word-spacing:-94.770381px;}
.ws18{word-spacing:-94.383036px;}
.ws19{word-spacing:-94.253921px;}
.ws4b{word-spacing:-93.995691px;}
.wse{word-spacing:-93.866576px;}
.wsf{word-spacing:-93.350116px;}
.ws67{word-spacing:-93.221001px;}
.ws3e{word-spacing:-92.833656px;}
.wsc{word-spacing:-92.446311px;}
.ws30{word-spacing:-92.317196px;}
.ws5b{word-spacing:-91.413392px;}
.ws45{word-spacing:-91.301970px;}
.ws46{word-spacing:-91.284277px;}
.ws54{word-spacing:-90.509587px;}
.ws29{word-spacing:-89.993127px;}
.ws6a{word-spacing:-89.605782px;}
.ws35{word-spacing:-88.491569px;}
.ws26{word-spacing:-88.443748px;}
.ws38{word-spacing:-88.429767px;}
.ws36{word-spacing:-88.375517px;}
.ws1a{word-spacing:-87.539943px;}
.ws7{word-spacing:-87.281713px;}
.ws1b{word-spacing:-87.023483px;}
.ws56{word-spacing:-86.765253px;}
.ws55{word-spacing:-86.682261px;}
.ws3f{word-spacing:-86.636138px;}
.ws66{word-spacing:-86.377908px;}
.ws24{word-spacing:-85.215874px;}
.ws69{word-spacing:-85.086759px;}
.ws52{word-spacing:-84.842710px;}
.ws51{word-spacing:-84.828529px;}
.ws53{word-spacing:-84.441184px;}
.ws25{word-spacing:-83.795609px;}
.ws17{word-spacing:-83.666494px;}
.ws27{word-spacing:-82.246230px;}
.ws59{word-spacing:-81.600655px;}
.wsb{word-spacing:-81.471540px;}
.ws58{word-spacing:-80.955080px;}
.ws32{word-spacing:-80.309505px;}
.ws31{word-spacing:-80.215110px;}
.ws65{word-spacing:-79.018356px;}
.ws43{word-spacing:-75.661367px;}
.ws10{word-spacing:-75.015792px;}
.ws44{word-spacing:-74.370217px;}
.ws23{word-spacing:-73.882951px;}
.ws11{word-spacing:-73.724642px;}
.ws42{word-spacing:-73.466412px;}
.ws41{word-spacing:-73.421729px;}
.ws13{word-spacing:-70.754998px;}
.ws64{word-spacing:-68.144469px;}
.ws2e{word-spacing:-66.494204px;}
.ws4f{word-spacing:-61.329606px;}
.ws8{word-spacing:-14.489666px;}
.ws6b{word-spacing:-0.258230px;}
.ws57{word-spacing:-0.071731px;}
.ws2f{word-spacing:-0.004409px;}
.ws33{word-spacing:-0.002818px;}
.ws4a{word-spacing:0.000000px;}
.ws3b{word-spacing:0.000365px;}
.ws2d{word-spacing:0.000978px;}
.ws40{word-spacing:0.001591px;}
.ws34{word-spacing:0.002686px;}
.ws6c{word-spacing:1.420265px;}
.ws3{word-spacing:81.526837px;}
.ws0{word-spacing:383.005247px;}
._13{margin-left:-3088.946303px;}
._23{margin-left:-2052.153174px;}
._2e{margin-left:-1741.640701px;}
._28{margin-left:-1690.889516px;}
._1b{margin-left:-1342.020894px;}
._2c{margin-left:-1122.912807px;}
._20{margin-left:-1091.537872px;}
._1e{margin-left:-608.002347px;}
._2f{margin-left:-510.133207px;}
._21{margin-left:-458.874568px;}
._2a{margin-left:-67.785354px;}
._1{margin-left:-25.754525px;}
._d{margin-left:-14.346204px;}
._1d{margin-left:-12.136806px;}
._0{margin-left:-8.584842px;}
._9{margin-left:-6.197518px;}
._b{margin-left:-4.777254px;}
._2{margin-left:-3.696537px;}
._5{margin-left:-1.807609px;}
._4{width:1.032920px;}
._3{width:3.098759px;}
._29{width:23.111578px;}
._27{width:26.830903px;}
._a{width:28.792636px;}
._25{width:30.342016px;}
._6{width:31.374935px;}
._18{width:34.291239px;}
._12{width:37.314223px;}
._10{width:38.476258px;}
._8{width:39.767408px;}
._1c{width:40.800327px;}
._7{width:41.833247px;}
._26{width:42.866167px;}
._14{width:45.190236px;}
._1a{width:46.997845px;}
._16{width:48.428584px;}
._19{width:51.258639px;}
._15{width:52.291559px;}
._11{width:53.453593px;}
._31{width:55.132088px;}
._22{width:57.068812px;}
._30{width:61.200491px;}
._e{width:62.749871px;}
._2d{width:73.729281px;}
._17{width:75.038145px;}
._1f{width:77.081631px;}
._32{width:80.309505px;}
._f{width:90.380472px;}
._24{width:109.360371px;}
._2b{width:132.981796px;}
._33{width:180.342172px;}
._c{width:914.127848px;}
.fc9{color:transparent;}
.fc7{color:rgb(5,41,125);}
.fc6{color:rgb(186,97,214);}
.fc5{color:rgb(64,112,161);}
.fc8{color:rgb(97,161,176);}
.fc3{color:rgb(0,84,159);}
.fc2{color:rgb(166,206,57);}
.fc4{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:24.118803px;}
.fs78{font-size:71.731020px;}
.fs7{font-size:72.926395px;}
.fs40{font-size:107.012544px;}
.fs3c{font-size:107.013253px;}
.fs27{font-size:107.013526px;}
.fsd{font-size:107.013677px;}
.fs3e{font-size:107.013731px;}
.fs47{font-size:107.013961px;}
.fs33{font-size:107.013990px;}
.fs21{font-size:107.014062px;}
.fs42{font-size:107.014076px;}
.fs9{font-size:107.014079px;}
.fs1f{font-size:107.014092px;}
.fs2f{font-size:107.014100px;}
.fs46{font-size:107.014193px;}
.fs24{font-size:107.014200px;}
.fs3f{font-size:107.014295px;}
.fs15{font-size:107.014345px;}
.fs28{font-size:107.014375px;}
.fs31{font-size:107.014378px;}
.fs1a{font-size:107.014386px;}
.fs25{font-size:107.014463px;}
.fs8{font-size:107.014489px;}
.fs1d{font-size:107.014536px;}
.fs41{font-size:107.014806px;}
.fs36{font-size:107.014852px;}
.fs37{font-size:107.014883px;}
.fs3a{font-size:107.014937px;}
.fsa{font-size:107.014996px;}
.fs12{font-size:107.015112px;}
.fs10{font-size:107.015190px;}
.fs48{font-size:107.015213px;}
.fs30{font-size:107.015231px;}
.fs44{font-size:107.015333px;}
.fs1b{font-size:107.015344px;}
.fsf{font-size:107.015411px;}
.fs18{font-size:107.015480px;}
.fs2e{font-size:107.015507px;}
.fsb{font-size:107.015519px;}
.fs1c{font-size:107.015684px;}
.fs45{font-size:107.015717px;}
.fs11{font-size:107.015965px;}
.fs2c{font-size:107.016064px;}
.fs17{font-size:107.016096px;}
.fs38{font-size:107.016473px;}
.fs14{font-size:107.016490px;}
.fs13{font-size:107.016751px;}
.fs2d{font-size:107.016777px;}
.fs23{font-size:107.016779px;}
.fs16{font-size:107.016915px;}
.fs34{font-size:107.016996px;}
.fs26{font-size:107.017183px;}
.fs1e{font-size:107.017346px;}
.fse{font-size:107.017513px;}
.fs3b{font-size:107.017583px;}
.fs20{font-size:107.017734px;}
.fs35{font-size:107.017738px;}
.fs22{font-size:107.017750px;}
.fsc{font-size:107.018032px;}
.fs43{font-size:107.018194px;}
.fs32{font-size:107.018237px;}
.fs39{font-size:107.018242px;}
.fs19{font-size:107.018620px;}
.fs49{font-size:107.018632px;}
.fs29{font-size:107.018682px;}
.fs3d{font-size:107.018901px;}
.fs2a{font-size:107.019066px;}
.fs2b{font-size:107.019096px;}
.fs4{font-size:129.114960px;}
.fs5{font-size:143.462040px;}
.fs64{font-size:243.209763px;}
.fs5d{font-size:243.211595px;}
.fs57{font-size:243.211862px;}
.fs50{font-size:243.211925px;}
.fs58{font-size:243.212370px;}
.fs6f{font-size:243.212733px;}
.fs4f{font-size:243.213373px;}
.fs5b{font-size:243.213649px;}
.fs4d{font-size:243.214449px;}
.fs69{font-size:243.214552px;}
.fs67{font-size:243.214742px;}
.fs68{font-size:243.214795px;}
.fs59{font-size:243.215187px;}
.fs60{font-size:243.215340px;}
.fs4e{font-size:243.215389px;}
.fs54{font-size:243.215422px;}
.fs5c{font-size:243.215561px;}
.fs6c{font-size:243.215835px;}
.fs77{font-size:243.215972px;}
.fs6e{font-size:243.216263px;}
.fs6a{font-size:243.216345px;}
.fs72{font-size:243.216474px;}
.fs71{font-size:243.217024px;}
.fs63{font-size:243.217352px;}
.fs5a{font-size:243.217507px;}
.fs56{font-size:243.217970px;}
.fs76{font-size:243.218418px;}
.fs52{font-size:243.218580px;}
.fs61{font-size:243.218605px;}
.fs6d{font-size:243.219049px;}
.fs5f{font-size:243.219273px;}
.fs4b{font-size:243.219651px;}
.fs75{font-size:243.220034px;}
.fs51{font-size:243.220308px;}
.fs4c{font-size:243.220553px;}
.fs6b{font-size:243.221310px;}
.fs5e{font-size:243.221463px;}
.fs65{font-size:243.221680px;}
.fs73{font-size:243.222424px;}
.fs70{font-size:243.222457px;}
.fs62{font-size:243.222590px;}
.fs4a{font-size:243.222832px;}
.fs66{font-size:243.224002px;}
.fs53{font-size:243.224462px;}
.fs55{font-size:243.225009px;}
.fs74{font-size:243.226183px;}
.fs2{font-size:330.186218px;}
.fs3{font-size:410.726308px;}
.fs1{font-size:922.904209px;}
.fs0{font-size:1153.630262px;}
.y0{bottom:0.000000px;}
.yf{bottom:23.881359px;}
.yd{bottom:29.763000px;}
.yc{bottom:35.316000px;}
.ye{bottom:55.603957px;}
.yb{bottom:78.967500px;}
.ya{bottom:121.554000px;}
.y66{bottom:123.056326px;}
.y76{bottom:131.243561px;}
.y67{bottom:140.078987px;}
.y75{bottom:146.377799px;}
.y74{bottom:153.959567px;}
.y68{bottom:156.181241px;}
.y9{bottom:164.793000px;}
.y73{bottom:169.601617px;}
.y69{bottom:172.254198px;}
.y72{bottom:178.100130px;}
.y6a{bottom:180.615993px;}
.y4c{bottom:188.017097px;}
.y4d{bottom:188.030525px;}
.y4e{bottom:188.197760px;}
.y4b{bottom:188.413824px;}
.y4f{bottom:188.861821px;}
.y50{bottom:189.285404px;}
.y4a{bottom:189.530765px;}
.y49{bottom:190.703858px;}
.y51{bottom:191.272704px;}
.y48{bottom:192.202877px;}
.y52{bottom:193.084223px;}
.y47{bottom:195.209461px;}
.y53{bottom:195.296131px;}
.y71{bottom:197.400618px;}
.y46{bottom:197.617902px;}
.y6b{bottom:198.456523px;}
.y70{bottom:216.421565px;}
.y6c{bottom:217.593437px;}
.y6d{bottom:227.475004px;}
.y6f{bottom:230.496236px;}
.y6e{bottom:257.739819px;}
.y127{bottom:261.993000px;}
.y45{bottom:299.951625px;}
.y126{bottom:305.032500px;}
.y44{bottom:307.184272px;}
.y43{bottom:314.717212px;}
.y3e{bottom:325.454489px;}
.y42{bottom:327.305070px;}
.y3f{bottom:332.484500px;}
.y40{bottom:337.561392px;}
.y41{bottom:345.880462px;}
.y125{bottom:348.070500px;}
.y124{bottom:391.108500px;}
.y123{bottom:447.597000px;}
.y122{bottom:490.635000px;}
.yc8{bottom:504.463500px;}
.yd3{bottom:531.903000px;}
.y121{bottom:533.674500px;}
.y1c{bottom:569.170906px;}
.yd2{bottom:576.627000px;}
.y120{bottom:576.712500px;}
.y1d{bottom:576.928455px;}
.y1e{bottom:580.665017px;}
.y1f{bottom:585.335416px;}
.y32{bottom:594.280705px;}
.y1b{bottom:605.743078px;}
.y33{bottom:606.963778px;}
.y2e{bottom:608.476226px;}
.y1a{bottom:613.239397px;}
.y28{bottom:614.093887px;}
.y19{bottom:618.134404px;}
.y2f{bottom:622.358026px;}
.y34{bottom:625.115587px;}
.y29{bottom:628.907081px;}
.y30{bottom:631.344819px;}
.y11f{bottom:633.201000px;}
.yd1{bottom:642.066000px;}
.y31{bottom:644.395323px;}
.y2a{bottom:646.710991px;}
.y24{bottom:646.861137px;}
.y15{bottom:659.195090px;}
.y25{bottom:660.788103px;}
.y2b{bottom:661.040788px;}
.y14{bottom:666.649905px;}
.y2c{bottom:667.659424px;}
.y26{bottom:673.760482px;}
.y13{bottom:674.381819px;}
.y2d{bottom:675.665995px;}
.y11e{bottom:676.239000px;}
.y12{bottom:682.908408px;}
.y27{bottom:682.992636px;}
.y11{bottom:689.411077px;}
.yd0{bottom:698.340000px;}
.y11d{bottom:719.277000px;}
.ycf{bottom:741.378000px;}
.y65{bottom:748.617468px;}
.y11c{bottom:762.316500px;}
.yce{bottom:784.416000px;}
.y64{bottom:785.299503px;}
.y7c{bottom:797.976473px;}
.y63{bottom:802.037742px;}
.y11b{bottom:818.803500px;}
.y62{bottom:822.162202px;}
.ycd{bottom:827.455500px;}
.y7b{bottom:831.844794px;}
.y3d{bottom:848.825952px;}
.y61{bottom:855.833991px;}
.y11a{bottom:861.843000px;}
.y3c{bottom:863.604967px;}
.y18{bottom:864.419174px;}
.y7a{bottom:865.781475px;}
.ycc{bottom:870.493500px;}
.y17{bottom:879.104195px;}
.y3b{bottom:879.863470px;}
.y60{bottom:892.846835px;}
.y16{bottom:893.769685px;}
.y3a{bottom:894.644927px;}
.y79{bottom:899.731583px;}
.y119{bottom:904.881000px;}
.y39{bottom:910.877795px;}
.ycb{bottom:913.531500px;}
.y5f{bottom:929.809631px;}
.y78{bottom:933.629202px;}
.y118{bottom:947.919000px;}
.y23{bottom:955.087887px;}
.yca{bottom:956.571000px;}
.y5e{bottom:966.639371px;}
.y22{bottom:970.738482px;}
.y77{bottom:977.463318px;}
.y21{bottom:977.734313px;}
.y20{bottom:986.130288px;}
.y5d{bottom:989.937651px;}
.yc9{bottom:999.609000px;}
.y117{bottom:1004.407500px;}
.y5c{bottom:1029.744678px;}
.y116{bottom:1047.445500px;}
.yc7{bottom:1051.000500px;}
.y115{bottom:1090.485000px;}
.ybf{bottom:1120.401000px;}
.y114{bottom:1133.523000px;}
.yc6{bottom:1147.840500px;}
.y113{bottom:1190.011500px;}
.yc5{bottom:1192.564500px;}
.y112{bottom:1233.049500px;}
.yc4{bottom:1258.003500px;}
.y111{bottom:1276.087500px;}
.yc3{bottom:1314.502500px;}
.y35{bottom:1315.626515px;}
.y110{bottom:1319.127000px;}
.y36{bottom:1323.435333px;}
.y37{bottom:1331.576181px;}
.y38{bottom:1336.541989px;}
.yc2{bottom:1357.542000px;}
.yc1{bottom:1400.580000px;}
.yc0{bottom:1443.618000px;}
.y7d{bottom:1484.922956px;}
.y5b{bottom:1490.995939px;}
.ybe{bottom:1494.687000px;}
.y7e{bottom:1510.447793px;}
.y5a{bottom:1512.411900px;}
.y59{bottom:1521.506115px;}
.y7f{bottom:1528.698479px;}
.y80{bottom:1539.205044px;}
.y58{bottom:1540.943321px;}
.y81{bottom:1557.054119px;}
.y57{bottom:1558.680092px;}
.yb2{bottom:1564.087500px;}
.y106{bottom:1567.033500px;}
.y82{bottom:1571.960087px;}
.y56{bottom:1573.417603px;}
.ybd{bottom:1579.168500px;}
.y55{bottom:1580.166853px;}
.y10f{bottom:1594.473000px;}
.y54{bottom:1595.537908px;}
.ybc{bottom:1622.206500px;}
.y10e{bottom:1639.197000px;}
.ybb{bottom:1665.244500px;}
.y10d{bottom:1704.636000px;}
.yba{bottom:1708.284000px;}
.yb9{bottom:1751.322000px;}
.y10c{bottom:1761.232500px;}
.y10b{bottom:1804.270500px;}
.yb8{bottom:1822.203000px;}
.y10a{bottom:1847.308500px;}
.yb7{bottom:1866.925500px;}
.y109{bottom:1890.348000px;}
.yb6{bottom:1932.366000px;}
.y108{bottom:1933.386000px;}
.yb5{bottom:1975.404000px;}
.y107{bottom:1976.424000px;}
.yb4{bottom:2018.442000px;}
.y105{bottom:2027.817000px;}
.yb3{bottom:2061.481500px;}
.yfa{bottom:2097.217500px;}
.yb1{bottom:2112.873000px;}
.y104{bottom:2124.657000px;}
.y103{bottom:2163.391500px;}
.ya8{bottom:2182.273500px;}
.y102{bottom:2208.114000px;}
.yb0{bottom:2209.713000px;}
.yaf{bottom:2254.435500px;}
.y101{bottom:2273.553000px;}
.yae{bottom:2319.876000px;}
.y100{bottom:2330.149500px;}
.yad{bottom:2369.919000px;}
.yff{bottom:2373.189000px;}
.yac{bottom:2412.957000px;}
.yfe{bottom:2416.227000px;}
.yab{bottom:2455.996500px;}
.yfd{bottom:2459.265000px;}
.yaa{bottom:2499.034500px;}
.yfc{bottom:2502.303000px;}
.ya9{bottom:2542.072500px;}
.yfb{bottom:2545.342500px;}
.ya7{bottom:2593.465500px;}
.yf9{bottom:2596.411500px;}
.y10{bottom:2652.544500px;}
.y8f{bottom:2662.864500px;}
.ye9{bottom:2665.812000px;}
.ya6{bottom:2671.393500px;}
.yf8{bottom:2693.625000px;}
.ya5{bottom:2714.431500px;}
.yf7{bottom:2731.986000px;}
.yf6{bottom:2770.347000px;}
.ya4{bottom:2771.350500px;}
.yf5{bottom:2808.706500px;}
.ya3{bottom:2814.388500px;}
.yf4{bottom:2847.067500px;}
.ya2{bottom:2870.823000px;}
.yf3{bottom:2885.428500px;}
.ya1{bottom:2913.862500px;}
.yf2{bottom:2923.416000px;}
.ya0{bottom:2956.900500px;}
.yf1{bottom:2968.138500px;}
.y9f{bottom:3006.837000px;}
.yf0{bottom:3033.579000px;}
.y9e{bottom:3049.875000px;}
.yef{bottom:3090.400500px;}
.y9d{bottom:3092.913000px;}
.yee{bottom:3133.438500px;}
.y9c{bottom:3142.957500px;}
.yed{bottom:3176.478000px;}
.y9b{bottom:3185.995500px;}
.yec{bottom:3219.516000px;}
.y9a{bottom:3242.592000px;}
.yeb{bottom:3262.554000px;}
.y99{bottom:3285.630000px;}
.yea{bottom:3305.593500px;}
.y98{bottom:3335.997000px;}
.ye8{bottom:3356.662500px;}
.y97{bottom:3379.035000px;}
.y96{bottom:3422.073000px;}
.yd5{bottom:3426.063000px;}
.ye7{bottom:3453.876000px;}
.y95{bottom:3465.112500px;}
.ye6{bottom:3492.237000px;}
.y94{bottom:3508.150500px;}
.y93{bottom:3560.155500px;}
.ye5{bottom:3568.957500px;}
.y92{bottom:3603.193500px;}
.ye4{bottom:3645.679500px;}
.y91{bottom:3646.233000px;}
.y90{bottom:3689.271000px;}
.ye3{bottom:3722.028000px;}
.y8e{bottom:3740.662500px;}
.ye2{bottom:3766.750500px;}
.ye1{bottom:3832.189500px;}
.ye0{bottom:3875.229000px;}
.ydf{bottom:3918.267000px;}
.y8d{bottom:3938.299500px;}
.yde{bottom:3961.305000px;}
.y8c{bottom:3981.337500px;}
.ydd{bottom:4004.344500px;}
.y8b{bottom:4024.375500px;}
.ydc{bottom:4047.382500px;}
.y8a{bottom:4067.415000px;}
.ydb{bottom:4090.420500px;}
.y89{bottom:4110.453000px;}
.yda{bottom:4133.460000px;}
.y88{bottom:4153.491000px;}
.yd9{bottom:4190.379000px;}
.y87{bottom:4196.530500px;}
.yd8{bottom:4233.417000px;}
.y86{bottom:4239.568500px;}
.yd7{bottom:4276.455000px;}
.y85{bottom:4282.606500px;}
.yd6{bottom:4319.494500px;}
.y84{bottom:4325.646000px;}
.y83{bottom:4368.684000px;}
.yd4{bottom:4372.080000px;}
.y5{bottom:4444.063500px;}
.y8{bottom:4456.464000px;}
.y4{bottom:4487.101500px;}
.y7{bottom:4499.502000px;}
.y6{bottom:4542.541500px;}
.y3{bottom:4666.713821px;}
.y1{bottom:4791.378801px;}
.y2{bottom:4830.785497px;}
.h9{height:25.324743px;}
.ha{height:76.572715px;}
.h44{height:79.724345px;}
.h40{height:79.724873px;}
.h2b{height:79.725077px;}
.h11{height:79.725189px;}
.h42{height:79.725229px;}
.h4b{height:79.725401px;}
.h37{height:79.725423px;}
.h25{height:79.725476px;}
.h46{height:79.725487px;}
.hd{height:79.725489px;}
.h23{height:79.725499px;}
.h33{height:79.725504px;}
.h4a{height:79.725574px;}
.h28{height:79.725579px;}
.h43{height:79.725650px;}
.h19{height:79.725687px;}
.h2c{height:79.725709px;}
.h35{height:79.725712px;}
.h1e{height:79.725717px;}
.h29{height:79.725775px;}
.hc{height:79.725795px;}
.h21{height:79.725829px;}
.h45{height:79.726030px;}
.h3a{height:79.726065px;}
.h3b{height:79.726088px;}
.h3e{height:79.726128px;}
.he{height:79.726172px;}
.h16{height:79.726259px;}
.h14{height:79.726317px;}
.h4c{height:79.726334px;}
.h34{height:79.726347px;}
.h48{height:79.726423px;}
.h1f{height:79.726431px;}
.h13{height:79.726481px;}
.h1c{height:79.726533px;}
.h32{height:79.726552px;}
.hf{height:79.726562px;}
.h20{height:79.726685px;}
.h49{height:79.726709px;}
.h15{height:79.726894px;}
.h30{height:79.726968px;}
.h1b{height:79.726992px;}
.h3c{height:79.727272px;}
.h18{height:79.727285px;}
.h17{height:79.727480px;}
.h31{height:79.727499px;}
.h27{height:79.727500px;}
.h1a{height:79.727601px;}
.h38{height:79.727662px;}
.h2a{height:79.727801px;}
.h22{height:79.727923px;}
.h12{height:79.728047px;}
.h3f{height:79.728099px;}
.h24{height:79.728212px;}
.h39{height:79.728215px;}
.h26{height:79.728223px;}
.h10{height:79.728434px;}
.h47{height:79.728554px;}
.h36{height:79.728587px;}
.h3d{height:79.728590px;}
.h1d{height:79.728872px;}
.h4d{height:79.728881px;}
.h2d{height:79.728918px;}
.h41{height:79.729081px;}
.h2e{height:79.729204px;}
.h2f{height:79.729226px;}
.h7e{height:89.605782px;}
.h7f{height:99.275732px;}
.h7d{height:99.562656px;}
.h7c{height:102.775508px;}
.h7{height:102.904623px;}
.h6{height:117.311691px;}
.h8{height:161.585625px;}
.h68{height:181.191274px;}
.h61{height:181.192638px;}
.h5b{height:181.192837px;}
.h54{height:181.192884px;}
.h5c{height:181.193216px;}
.h73{height:181.193486px;}
.h53{height:181.193963px;}
.h5f{height:181.194168px;}
.h51{height:181.194765px;}
.h6d{height:181.194842px;}
.h6b{height:181.194983px;}
.h6c{height:181.195022px;}
.h5d{height:181.195314px;}
.h64{height:181.195429px;}
.h52{height:181.195465px;}
.h58{height:181.195490px;}
.h60{height:181.195593px;}
.h70{height:181.195797px;}
.h7b{height:181.195899px;}
.h72{height:181.196116px;}
.h6e{height:181.196177px;}
.h76{height:181.196273px;}
.h75{height:181.196683px;}
.h67{height:181.196927px;}
.h5e{height:181.197043px;}
.h5a{height:181.197388px;}
.h7a{height:181.197722px;}
.h56{height:181.197842px;}
.h65{height:181.197860px;}
.h71{height:181.198192px;}
.h63{height:181.198359px;}
.h4f{height:181.198640px;}
.h79{height:181.198926px;}
.h55{height:181.199129px;}
.h50{height:181.199312px;}
.h6f{height:181.199876px;}
.h62{height:181.199990px;}
.h69{height:181.200152px;}
.h77{height:181.200706px;}
.h74{height:181.200730px;}
.h66{height:181.200829px;}
.h4e{height:181.201010px;}
.h6a{height:181.201882px;}
.h57{height:181.202224px;}
.h59{height:181.202632px;}
.h78{height:181.203506px;}
.h4{height:234.432215px;}
.h5{height:326.938141px;}
.h3{height:651.570372px;}
.h2{height:814.462965px;}
.hb{height:1741.876644px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w2{width:108.585540px;}
.w3{width:1713.584480px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xb{left:4.652959px;}
.xc{left:15.020564px;}
.x7{left:38.268000px;}
.x6e{left:45.768000px;}
.x67{left:56.224221px;}
.x66{left:58.160252px;}
.x65{left:62.689049px;}
.x70{left:70.831500px;}
.x6f{left:72.283500px;}
.x6{left:74.060147px;}
.x1{left:75.638242px;}
.x78{left:84.007500px;}
.x77{left:93.076500px;}
.x79{left:137.017500px;}
.x82{left:141.955500px;}
.x71{left:147.732000px;}
.x81{left:153.997500px;}
.x74{left:156.433500px;}
.x75{left:164.491500px;}
.x83{left:197.367000px;}
.x2{left:206.221927px;}
.x9{left:221.103000px;}
.x84{left:225.624000px;}
.x73{left:228.234000px;}
.x7a{left:245.125500px;}
.x76{left:246.654000px;}
.x7b{left:271.965000px;}
.x85{left:310.222500px;}
.x72{left:326.025000px;}
.x3{left:335.732090px;}
.x5d{left:341.096539px;}
.x5e{left:375.703384px;}
.x68{left:385.937733px;}
.x6d{left:393.217500px;}
.x5f{left:394.874477px;}
.x69{left:421.468648px;}
.x60{left:423.012833px;}
.x6a{left:449.797433px;}
.x61{left:454.891414px;}
.x6b{left:466.980006px;}
.x62{left:469.635028px;}
.x63{left:499.725283px;}
.x39{left:503.314141px;}
.x64{left:514.966943px;}
.x3a{left:523.607058px;}
.x6c{left:529.611681px;}
.x3b{left:536.519623px;}
.x3c{left:549.600644px;}
.x2f{left:571.849122px;}
.x30{left:584.400359px;}
.x31{left:598.482355px;}
.x32{left:607.566804px;}
.x7c{left:679.284000px;}
.x14{left:690.947938px;}
.x15{left:698.546796px;}
.x7d{left:700.672500px;}
.xe{left:710.441297px;}
.x16{left:711.550913px;}
.x80{left:714.520500px;}
.xf{left:718.794547px;}
.x10{left:731.239583px;}
.x3d{left:742.344291px;}
.x11{left:744.205859px;}
.x3e{left:757.125747px;}
.x12{left:759.001963px;}
.x7e{left:770.257500px;}
.x3f{left:780.815872px;}
.x40{left:795.692543px;}
.x41{left:810.596069px;}
.x42{left:832.973942px;}
.x43{left:847.940945px;}
.x7f{left:852.106500px;}
.x44{left:864.356918px;}
.x45{left:874.829303px;}
.x46{left:891.224525px;}
.x47{left:900.207656px;}
.x48{left:924.007644px;}
.xd{left:931.180500px;}
.x49{left:940.338169px;}
.x4a{left:956.612541px;}
.x17{left:1006.867540px;}
.x18{left:1021.382883px;}
.x19{left:1027.903863px;}
.x1a{left:1035.589390px;}
.x13{left:1107.166355px;}
.x4b{left:1128.028118px;}
.x35{left:1138.131852px;}
.x57{left:1144.253663px;}
.x36{left:1151.316633px;}
.x37{left:1160.480428px;}
.x4c{left:1165.437690px;}
.x38{left:1174.649093px;}
.x4d{left:1180.829497px;}
.x58{left:1184.911517px;}
.x1b{left:1192.713011px;}
.x1c{left:1195.466910px;}
.x1d{left:1197.672715px;}
.x1e{left:1201.871923px;}
.x1f{left:1204.395110px;}
.x20{left:1211.875560px;}
.x22{left:1215.062807px;}
.x21{left:1216.829160px;}
.x59{left:1218.558892px;}
.x23{left:1225.267859px;}
.x24{left:1236.306649px;}
.x25{left:1244.346180px;}
.x26{left:1247.865458px;}
.x27{left:1251.968231px;}
.x28{left:1253.160854px;}
.x29{left:1261.962101px;}
.x5a{left:1263.242616px;}
.x2a{left:1267.375906px;}
.x2b{left:1274.734286px;}
.x2c{left:1285.205450px;}
.x4e{left:1289.263057px;}
.x5b{left:1292.125598px;}
.x2d{left:1293.193711px;}
.x2e{left:1303.608723px;}
.x4f{left:1319.447306px;}
.x5c{left:1333.974857px;}
.x33{left:1418.145784px;}
.x34{left:1419.488554px;}
.x4{left:1551.803210px;}
.x50{left:1614.015644px;}
.x51{left:1621.101807px;}
.x52{left:1624.499015px;}
.x56{left:1625.685536px;}
.x55{left:1627.188217px;}
.x53{left:1628.195295px;}
.x54{left:1630.127663px;}
.xa{left:1643.226000px;}
.x5{left:1681.325435px;}
.x8{left:2717.008500px;}
.x87{left:2724.508500px;}
.x88{left:2750.023500px;}
.x89{left:2751.024000px;}
.x97{left:2761.621500px;}
.x8d{left:2762.748000px;}
.x8c{left:2771.817000px;}
.x94{left:2795.995500px;}
.x8e{left:2829.241500px;}
.x98{left:2931.345000px;}
.x96{left:2951.142000px;}
.x99{left:2969.971500px;}
.x92{left:3207.453000px;}
.x90{left:3226.909500px;}
.x93{left:3289.185000px;}
.x91{left:3309.705000px;}
.x86{left:3363.984000px;}
.x8f{left:3379.897500px;}
.x95{left:3386.547000px;}
.x8a{left:3403.896000px;}
.x8b{left:3486.561000px;}
@media print{
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003374pt;}
.ls1{letter-spacing:12.752181pt;}
.ls0{letter-spacing:19.128853pt;}
.ls6{letter-spacing:23.293964pt;}
.ls5{letter-spacing:49.487866pt;}
.ls3{letter-spacing:59.102041pt;}
.ls4{letter-spacing:59.107374pt;}
.ls7{letter-spacing:60.253648pt;}
.ws2{word-spacing:-274.182629pt;}
.ws1{word-spacing:-201.633717pt;}
.ws50{word-spacing:-175.022501pt;}
.ws12{word-spacing:-114.768853pt;}
.ws62{word-spacing:-98.434952pt;}
.ws4d{word-spacing:-95.602455pt;}
.ws5a{word-spacing:-95.143379pt;}
.ws5f{word-spacing:-94.799073pt;}
.ws5e{word-spacing:-94.569535pt;}
.ws49{word-spacing:-92.733233pt;}
.ws48{word-spacing:-92.691912pt;}
.ws5c{word-spacing:-91.929852pt;}
.ws4e{word-spacing:-91.700314pt;}
.ws6d{word-spacing:-90.323088pt;}
.ws63{word-spacing:-89.290168pt;}
.ws4{word-spacing:-89.175399pt;}
.ws37{word-spacing:-88.601555pt;}
.ws3c{word-spacing:-88.027711pt;}
.ws68{word-spacing:-87.912942pt;}
.ws22{word-spacing:-87.798173pt;}
.ws5d{word-spacing:-87.568635pt;}
.ws47{word-spacing:-87.339097pt;}
.ws4c{word-spacing:-87.224329pt;}
.ws21{word-spacing:-87.109560pt;}
.ws15{word-spacing:-87.007682pt;}
.wsa{word-spacing:-86.994791pt;}
.ws9{word-spacing:-86.881300pt;}
.ws2c{word-spacing:-86.880337pt;}
.ws6{word-spacing:-86.880022pt;}
.ws2b{word-spacing:-86.879884pt;}
.ws2a{word-spacing:-86.878568pt;}
.ws1d{word-spacing:-86.803995pt;}
.wsd{word-spacing:-86.765253pt;}
.ws1c{word-spacing:-86.650484pt;}
.ws5{word-spacing:-86.191409pt;}
.ws39{word-spacing:-86.076640pt;}
.ws16{word-spacing:-85.961871pt;}
.ws3d{word-spacing:-85.732333pt;}
.ws28{word-spacing:-85.617565pt;}
.ws1e{word-spacing:-85.502796pt;}
.ws20{word-spacing:-85.388027pt;}
.ws14{word-spacing:-84.928951pt;}
.ws61{word-spacing:-84.814183pt;}
.ws60{word-spacing:-84.765582pt;}
.ws1f{word-spacing:-84.699414pt;}
.ws3a{word-spacing:-84.240338pt;}
.ws18{word-spacing:-83.896032pt;}
.ws19{word-spacing:-83.781263pt;}
.ws4b{word-spacing:-83.551725pt;}
.wse{word-spacing:-83.436956pt;}
.wsf{word-spacing:-82.977881pt;}
.ws67{word-spacing:-82.863112pt;}
.ws3e{word-spacing:-82.518806pt;}
.wsc{word-spacing:-82.174499pt;}
.ws30{word-spacing:-82.059730pt;}
.ws5b{word-spacing:-81.256348pt;}
.ws45{word-spacing:-81.157307pt;}
.ws46{word-spacing:-81.141579pt;}
.ws54{word-spacing:-80.452966pt;}
.ws29{word-spacing:-79.993891pt;}
.ws6a{word-spacing:-79.649584pt;}
.ws35{word-spacing:-78.659173pt;}
.ws26{word-spacing:-78.616665pt;}
.ws38{word-spacing:-78.604237pt;}
.ws36{word-spacing:-78.556015pt;}
.ws1a{word-spacing:-77.813283pt;}
.ws7{word-spacing:-77.583745pt;}
.ws1b{word-spacing:-77.354207pt;}
.ws56{word-spacing:-77.124669pt;}
.ws55{word-spacing:-77.050899pt;}
.ws3f{word-spacing:-77.009901pt;}
.ws66{word-spacing:-76.780363pt;}
.ws24{word-spacing:-75.747443pt;}
.ws69{word-spacing:-75.632674pt;}
.ws52{word-spacing:-75.415743pt;}
.ws51{word-spacing:-75.403137pt;}
.ws53{word-spacing:-75.058830pt;}
.ws25{word-spacing:-74.484986pt;}
.ws17{word-spacing:-74.370217pt;}
.ws27{word-spacing:-73.107760pt;}
.ws59{word-spacing:-72.533915pt;}
.wsb{word-spacing:-72.419146pt;}
.ws58{word-spacing:-71.960071pt;}
.ws32{word-spacing:-71.386227pt;}
.ws31{word-spacing:-71.302320pt;}
.ws65{word-spacing:-70.238538pt;}
.ws43{word-spacing:-67.254548pt;}
.ws10{word-spacing:-66.680704pt;}
.ws44{word-spacing:-66.106860pt;}
.ws23{word-spacing:-65.673734pt;}
.ws11{word-spacing:-65.533015pt;}
.ws42{word-spacing:-65.303478pt;}
.ws41{word-spacing:-65.263759pt;}
.ws13{word-spacing:-62.893332pt;}
.ws64{word-spacing:-60.572861pt;}
.ws2e{word-spacing:-59.105959pt;}
.ws4f{word-spacing:-54.515205pt;}
.ws8{word-spacing:-12.879703pt;}
.ws6b{word-spacing:-0.229538pt;}
.ws57{word-spacing:-0.063761pt;}
.ws2f{word-spacing:-0.003919pt;}
.ws33{word-spacing:-0.002505pt;}
.ws4a{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.000324pt;}
.ws2d{word-spacing:0.000869pt;}
.ws40{word-spacing:0.001414pt;}
.ws34{word-spacing:0.002387pt;}
.ws6c{word-spacing:1.262457pt;}
.ws3{word-spacing:72.468299pt;}
.ws0{word-spacing:340.449108pt;}
._13{margin-left:-2745.730047pt;}
._23{margin-left:-1824.136155pt;}
._2e{margin-left:-1548.125068pt;}
._28{margin-left:-1503.012903pt;}
._1b{margin-left:-1192.907462pt;}
._2c{margin-left:-998.144717pt;}
._20{margin-left:-970.255886pt;}
._1e{margin-left:-540.446530pt;}
._2f{margin-left:-453.451740pt;}
._21{margin-left:-407.888505pt;}
._2a{margin-left:-60.253648pt;}
._1{margin-left:-22.892911pt;}
._d{margin-left:-12.752181pt;}
._1d{margin-left:-10.788272pt;}
._0{margin-left:-7.630970pt;}
._9{margin-left:-5.508905pt;}
._b{margin-left:-4.246448pt;}
._2{margin-left:-3.285810pt;}
._5{margin-left:-1.606764pt;}
._4{width:0.918151pt;}
._3{width:2.754452pt;}
._29{width:20.543625pt;}
._27{width:23.849692pt;}
._a{width:25.593454pt;}
._25{width:26.970681pt;}
._6{width:27.888831pt;}
._18{width:30.481101pt;}
._12{width:33.168199pt;}
._10{width:34.201118pt;}
._8{width:35.348807pt;}
._1c{width:36.266958pt;}
._7{width:37.185108pt;}
._26{width:38.103259pt;}
._14{width:40.169099pt;}
._1a{width:41.775863pt;}
._16{width:43.047630pt;}
._19{width:45.563235pt;}
._15{width:46.481386pt;}
._11{width:47.514305pt;}
._31{width:49.006300pt;}
._22{width:50.727833pt;}
._30{width:54.400436pt;}
._e{width:55.777663pt;}
._2d{width:65.537138pt;}
._17{width:66.700573pt;}
._1f{width:68.517005pt;}
._32{width:71.386227pt;}
._f{width:80.338197pt;}
._24{width:97.209219pt;}
._2b{width:118.206041pt;}
._33{width:160.304153pt;}
._c{width:812.558087pt;}
.fs6{font-size:21.438936pt;}
.fs78{font-size:63.760907pt;}
.fs7{font-size:64.823462pt;}
.fs40{font-size:95.122261pt;}
.fs3c{font-size:95.122891pt;}
.fs27{font-size:95.123134pt;}
.fsd{font-size:95.123268pt;}
.fs3e{font-size:95.123316pt;}
.fs47{font-size:95.123521pt;}
.fs33{font-size:95.123547pt;}
.fs21{font-size:95.123611pt;}
.fs42{font-size:95.123623pt;}
.fs9{font-size:95.123625pt;}
.fs1f{font-size:95.123638pt;}
.fs2f{font-size:95.123644pt;}
.fs46{font-size:95.123727pt;}
.fs24{font-size:95.123733pt;}
.fs3f{font-size:95.123818pt;}
.fs15{font-size:95.123862pt;}
.fs28{font-size:95.123889pt;}
.fs31{font-size:95.123892pt;}
.fs1a{font-size:95.123898pt;}
.fs25{font-size:95.123967pt;}
.fs8{font-size:95.123991pt;}
.fs1d{font-size:95.124032pt;}
.fs41{font-size:95.124272pt;}
.fs36{font-size:95.124313pt;}
.fs37{font-size:95.124340pt;}
.fs3a{font-size:95.124388pt;}
.fsa{font-size:95.124441pt;}
.fs12{font-size:95.124544pt;}
.fs10{font-size:95.124613pt;}
.fs48{font-size:95.124634pt;}
.fs30{font-size:95.124650pt;}
.fs44{font-size:95.124740pt;}
.fs1b{font-size:95.124750pt;}
.fsf{font-size:95.124809pt;}
.fs18{font-size:95.124871pt;}
.fs2e{font-size:95.124895pt;}
.fsb{font-size:95.124906pt;}
.fs1c{font-size:95.125052pt;}
.fs45{font-size:95.125082pt;}
.fs11{font-size:95.125302pt;}
.fs2c{font-size:95.125390pt;}
.fs17{font-size:95.125419pt;}
.fs38{font-size:95.125754pt;}
.fs14{font-size:95.125769pt;}
.fs13{font-size:95.126001pt;}
.fs2d{font-size:95.126024pt;}
.fs23{font-size:95.126026pt;}
.fs16{font-size:95.126146pt;}
.fs34{font-size:95.126219pt;}
.fs26{font-size:95.126385pt;}
.fs1e{font-size:95.126530pt;}
.fse{font-size:95.126678pt;}
.fs3b{font-size:95.126740pt;}
.fs20{font-size:95.126875pt;}
.fs35{font-size:95.126878pt;}
.fs22{font-size:95.126888pt;}
.fsc{font-size:95.127140pt;}
.fs43{font-size:95.127283pt;}
.fs32{font-size:95.127322pt;}
.fs39{font-size:95.127326pt;}
.fs19{font-size:95.127662pt;}
.fs49{font-size:95.127673pt;}
.fs29{font-size:95.127718pt;}
.fs3d{font-size:95.127912pt;}
.fs2a{font-size:95.128058pt;}
.fs2b{font-size:95.128085pt;}
.fs4{font-size:114.768853pt;}
.fs5{font-size:127.521813pt;}
.fs64{font-size:216.186456pt;}
.fs5d{font-size:216.188084pt;}
.fs57{font-size:216.188322pt;}
.fs50{font-size:216.188378pt;}
.fs58{font-size:216.188773pt;}
.fs6f{font-size:216.189096pt;}
.fs4f{font-size:216.189665pt;}
.fs5b{font-size:216.189910pt;}
.fs4d{font-size:216.190622pt;}
.fs69{font-size:216.190713pt;}
.fs67{font-size:216.190882pt;}
.fs68{font-size:216.190929pt;}
.fs59{font-size:216.191277pt;}
.fs60{font-size:216.191414pt;}
.fs4e{font-size:216.191457pt;}
.fs54{font-size:216.191486pt;}
.fs5c{font-size:216.191609pt;}
.fs6c{font-size:216.191853pt;}
.fs77{font-size:216.191975pt;}
.fs6e{font-size:216.192234pt;}
.fs6a{font-size:216.192307pt;}
.fs72{font-size:216.192422pt;}
.fs71{font-size:216.192911pt;}
.fs63{font-size:216.193202pt;}
.fs5a{font-size:216.193339pt;}
.fs56{font-size:216.193751pt;}
.fs76{font-size:216.194150pt;}
.fs52{font-size:216.194294pt;}
.fs61{font-size:216.194315pt;}
.fs6d{font-size:216.194710pt;}
.fs5f{font-size:216.194910pt;}
.fs4b{font-size:216.195245pt;}
.fs75{font-size:216.195586pt;}
.fs51{font-size:216.195829pt;}
.fs4c{font-size:216.196048pt;}
.fs6b{font-size:216.196720pt;}
.fs5e{font-size:216.196856pt;}
.fs65{font-size:216.197049pt;}
.fs73{font-size:216.197710pt;}
.fs70{font-size:216.197739pt;}
.fs62{font-size:216.197858pt;}
.fs4a{font-size:216.198073pt;}
.fs66{font-size:216.199113pt;}
.fs53{font-size:216.199522pt;}
.fs55{font-size:216.200008pt;}
.fs74{font-size:216.201052pt;}
.fs2{font-size:293.498861pt;}
.fs3{font-size:365.090052pt;}
.fs1{font-size:820.359297pt;}
.fs0{font-size:1025.449122pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:21.227874pt;}
.yd{bottom:26.456000pt;}
.yc{bottom:31.392000pt;}
.ye{bottom:49.425740pt;}
.yb{bottom:70.193333pt;}
.ya{bottom:108.048000pt;}
.y66{bottom:109.383401pt;}
.y76{bottom:116.660943pt;}
.y67{bottom:124.514655pt;}
.y75{bottom:130.113599pt;}
.y74{bottom:136.852948pt;}
.y68{bottom:138.827770pt;}
.y9{bottom:146.482667pt;}
.y73{bottom:150.756993pt;}
.y69{bottom:153.114842pt;}
.y72{bottom:158.311227pt;}
.y6a{bottom:160.547549pt;}
.y4c{bottom:167.126308pt;}
.y4d{bottom:167.138244pt;}
.y4e{bottom:167.286898pt;}
.y4b{bottom:167.478955pt;}
.y4f{bottom:167.877174pt;}
.y50{bottom:168.253693pt;}
.y4a{bottom:168.471791pt;}
.y49{bottom:169.514540pt;}
.y51{bottom:170.020181pt;}
.y48{bottom:170.847002pt;}
.y52{bottom:171.630420pt;}
.y47{bottom:173.519521pt;}
.y53{bottom:173.596561pt;}
.y71{bottom:175.467216pt;}
.y46{bottom:175.660358pt;}
.y6b{bottom:176.405798pt;}
.y70{bottom:192.374725pt;}
.y6c{bottom:193.416389pt;}
.y6d{bottom:202.200003pt;}
.y6f{bottom:204.885543pt;}
.y6e{bottom:229.102061pt;}
.y127{bottom:232.882667pt;}
.y45{bottom:266.623666pt;}
.y126{bottom:271.140000pt;}
.y44{bottom:273.052686pt;}
.y43{bottom:279.748633pt;}
.y3e{bottom:289.292879pt;}
.y42{bottom:290.937840pt;}
.y3f{bottom:295.541778pt;}
.y40{bottom:300.054570pt;}
.y41{bottom:307.449300pt;}
.y125{bottom:309.396000pt;}
.y124{bottom:347.652000pt;}
.y123{bottom:397.864000pt;}
.y122{bottom:436.120000pt;}
.yc8{bottom:448.412000pt;}
.yd3{bottom:472.802667pt;}
.y121{bottom:474.377333pt;}
.y1c{bottom:505.929694pt;}
.yd2{bottom:512.557333pt;}
.y120{bottom:512.633333pt;}
.y1d{bottom:512.825293pt;}
.y1e{bottom:516.146682pt;}
.y1f{bottom:520.298147pt;}
.y32{bottom:528.249516pt;}
.y1b{bottom:538.438292pt;}
.y33{bottom:539.523358pt;}
.y2e{bottom:540.867756pt;}
.y1a{bottom:545.101686pt;}
.y28{bottom:545.861233pt;}
.y19{bottom:549.452803pt;}
.y2f{bottom:553.207134pt;}
.y34{bottom:555.658300pt;}
.y29{bottom:559.028517pt;}
.y30{bottom:561.195395pt;}
.y11f{bottom:562.845333pt;}
.yd1{bottom:570.725333pt;}
.y31{bottom:572.795843pt;}
.y2a{bottom:574.854214pt;}
.y24{bottom:574.987677pt;}
.y15{bottom:585.951191pt;}
.y25{bottom:587.367203pt;}
.y2b{bottom:587.591812pt;}
.y14{bottom:592.577693pt;}
.y2c{bottom:593.475043pt;}
.y26{bottom:598.898206pt;}
.y13{bottom:599.450505pt;}
.y2d{bottom:600.591995pt;}
.y11e{bottom:601.101333pt;}
.y12{bottom:607.029696pt;}
.y27{bottom:607.104566pt;}
.y11{bottom:612.809846pt;}
.yd0{bottom:620.746667pt;}
.y11d{bottom:639.357333pt;}
.ycf{bottom:659.002667pt;}
.y65{bottom:665.437750pt;}
.y11c{bottom:677.614667pt;}
.yce{bottom:697.258667pt;}
.y64{bottom:698.044003pt;}
.y7c{bottom:709.312420pt;}
.y63{bottom:712.922437pt;}
.y11b{bottom:727.825333pt;}
.y62{bottom:730.810846pt;}
.ycd{bottom:735.516000pt;}
.y7b{bottom:739.417595pt;}
.y3d{bottom:754.511957pt;}
.y61{bottom:760.741325pt;}
.y11a{bottom:766.082667pt;}
.y3c{bottom:767.648859pt;}
.y18{bottom:768.372599pt;}
.y7a{bottom:769.583533pt;}
.ycc{bottom:773.772000pt;}
.y17{bottom:781.425951pt;}
.y3b{bottom:782.100862pt;}
.y60{bottom:793.641631pt;}
.y16{bottom:794.461942pt;}
.y3a{bottom:795.239935pt;}
.y79{bottom:799.761407pt;}
.y119{bottom:804.338667pt;}
.y39{bottom:809.669151pt;}
.ycb{bottom:812.028000pt;}
.y5f{bottom:826.497450pt;}
.y78{bottom:829.892624pt;}
.y118{bottom:842.594667pt;}
.y23{bottom:848.967011pt;}
.yca{bottom:850.285333pt;}
.y5e{bottom:859.234997pt;}
.y22{bottom:862.878650pt;}
.y77{bottom:868.856283pt;}
.y21{bottom:869.097167pt;}
.y20{bottom:876.560256pt;}
.y5d{bottom:879.944579pt;}
.yc9{bottom:888.541333pt;}
.y117{bottom:892.806667pt;}
.y5c{bottom:915.328603pt;}
.y116{bottom:931.062667pt;}
.yc7{bottom:934.222667pt;}
.y115{bottom:969.320000pt;}
.ybf{bottom:995.912000pt;}
.y114{bottom:1007.576000pt;}
.yc6{bottom:1020.302667pt;}
.y113{bottom:1057.788000pt;}
.yc5{bottom:1060.057333pt;}
.y112{bottom:1096.044000pt;}
.yc4{bottom:1118.225333pt;}
.y111{bottom:1134.300000pt;}
.yc3{bottom:1168.446667pt;}
.y35{bottom:1169.445791pt;}
.y110{bottom:1172.557333pt;}
.y36{bottom:1176.386962pt;}
.y37{bottom:1183.623272pt;}
.y38{bottom:1188.037323pt;}
.yc2{bottom:1206.704000pt;}
.yc1{bottom:1244.960000pt;}
.yc0{bottom:1283.216000pt;}
.y7d{bottom:1319.931517pt;}
.y5b{bottom:1325.329723pt;}
.ybe{bottom:1328.610667pt;}
.y7e{bottom:1342.620261pt;}
.y5a{bottom:1344.366133pt;}
.y59{bottom:1352.449880pt;}
.y7f{bottom:1358.843093pt;}
.y80{bottom:1368.182261pt;}
.y58{bottom:1369.727396pt;}
.y81{bottom:1384.048106pt;}
.y57{bottom:1385.493415pt;}
.yb2{bottom:1390.300000pt;}
.y106{bottom:1392.918667pt;}
.y82{bottom:1397.297855pt;}
.y56{bottom:1398.593425pt;}
.ybd{bottom:1403.705333pt;}
.y55{bottom:1404.592758pt;}
.y10f{bottom:1417.309333pt;}
.y54{bottom:1418.255918pt;}
.ybc{bottom:1441.961333pt;}
.y10e{bottom:1457.064000pt;}
.ybb{bottom:1480.217333pt;}
.y10d{bottom:1515.232000pt;}
.yba{bottom:1518.474667pt;}
.yb9{bottom:1556.730667pt;}
.y10c{bottom:1565.540000pt;}
.y10b{bottom:1603.796000pt;}
.yb8{bottom:1619.736000pt;}
.y10a{bottom:1642.052000pt;}
.yb7{bottom:1659.489333pt;}
.y109{bottom:1680.309333pt;}
.yb6{bottom:1717.658667pt;}
.y108{bottom:1718.565333pt;}
.yb5{bottom:1755.914667pt;}
.y107{bottom:1756.821333pt;}
.yb4{bottom:1794.170667pt;}
.y105{bottom:1802.504000pt;}
.yb3{bottom:1832.428000pt;}
.yfa{bottom:1864.193333pt;}
.yb1{bottom:1878.109333pt;}
.y104{bottom:1888.584000pt;}
.y103{bottom:1923.014667pt;}
.ya8{bottom:1939.798667pt;}
.y102{bottom:1962.768000pt;}
.yb0{bottom:1964.189333pt;}
.yaf{bottom:2003.942667pt;}
.y101{bottom:2020.936000pt;}
.yae{bottom:2062.112000pt;}
.y100{bottom:2071.244000pt;}
.yad{bottom:2106.594667pt;}
.yff{bottom:2109.501333pt;}
.yac{bottom:2144.850667pt;}
.yfe{bottom:2147.757333pt;}
.yab{bottom:2183.108000pt;}
.yfd{bottom:2186.013333pt;}
.yaa{bottom:2221.364000pt;}
.yfc{bottom:2224.269333pt;}
.ya9{bottom:2259.620000pt;}
.yfb{bottom:2262.526667pt;}
.ya7{bottom:2305.302667pt;}
.yf9{bottom:2307.921333pt;}
.y10{bottom:2357.817333pt;}
.y8f{bottom:2366.990667pt;}
.ye9{bottom:2369.610667pt;}
.ya6{bottom:2374.572000pt;}
.yf8{bottom:2394.333333pt;}
.ya5{bottom:2412.828000pt;}
.yf7{bottom:2428.432000pt;}
.yf6{bottom:2462.530667pt;}
.ya4{bottom:2463.422667pt;}
.yf5{bottom:2496.628000pt;}
.ya3{bottom:2501.678667pt;}
.yf4{bottom:2530.726667pt;}
.ya2{bottom:2551.842667pt;}
.yf3{bottom:2564.825333pt;}
.ya1{bottom:2590.100000pt;}
.yf2{bottom:2598.592000pt;}
.ya0{bottom:2628.356000pt;}
.yf1{bottom:2638.345333pt;}
.y9f{bottom:2672.744000pt;}
.yf0{bottom:2696.514667pt;}
.y9e{bottom:2711.000000pt;}
.yef{bottom:2747.022667pt;}
.y9d{bottom:2749.256000pt;}
.yee{bottom:2785.278667pt;}
.y9c{bottom:2793.740000pt;}
.yed{bottom:2823.536000pt;}
.y9b{bottom:2831.996000pt;}
.yec{bottom:2861.792000pt;}
.y9a{bottom:2882.304000pt;}
.yeb{bottom:2900.048000pt;}
.y99{bottom:2920.560000pt;}
.yea{bottom:2938.305333pt;}
.y98{bottom:2965.330667pt;}
.ye8{bottom:2983.700000pt;}
.y97{bottom:3003.586667pt;}
.y96{bottom:3041.842667pt;}
.yd5{bottom:3045.389333pt;}
.ye7{bottom:3070.112000pt;}
.y95{bottom:3080.100000pt;}
.ye6{bottom:3104.210667pt;}
.y94{bottom:3118.356000pt;}
.y93{bottom:3164.582667pt;}
.ye5{bottom:3172.406667pt;}
.y92{bottom:3202.838667pt;}
.ye4{bottom:3240.604000pt;}
.y91{bottom:3241.096000pt;}
.y90{bottom:3279.352000pt;}
.ye3{bottom:3308.469333pt;}
.y8e{bottom:3325.033333pt;}
.ye2{bottom:3348.222667pt;}
.ye1{bottom:3406.390667pt;}
.ye0{bottom:3444.648000pt;}
.ydf{bottom:3482.904000pt;}
.y8d{bottom:3500.710667pt;}
.yde{bottom:3521.160000pt;}
.y8c{bottom:3538.966667pt;}
.ydd{bottom:3559.417333pt;}
.y8b{bottom:3577.222667pt;}
.ydc{bottom:3597.673333pt;}
.y8a{bottom:3615.480000pt;}
.ydb{bottom:3635.929333pt;}
.y89{bottom:3653.736000pt;}
.yda{bottom:3674.186667pt;}
.y88{bottom:3691.992000pt;}
.yd9{bottom:3724.781333pt;}
.y87{bottom:3730.249333pt;}
.yd8{bottom:3763.037333pt;}
.y86{bottom:3768.505333pt;}
.yd7{bottom:3801.293333pt;}
.y85{bottom:3806.761333pt;}
.yd6{bottom:3839.550667pt;}
.y84{bottom:3845.018667pt;}
.y83{bottom:3883.274667pt;}
.yd4{bottom:3886.293333pt;}
.y5{bottom:3950.278667pt;}
.y8{bottom:3961.301333pt;}
.y4{bottom:3988.534667pt;}
.y7{bottom:3999.557333pt;}
.y6{bottom:4037.814667pt;}
.y3{bottom:4148.190063pt;}
.y1{bottom:4259.003378pt;}
.y2{bottom:4294.031553pt;}
.h9{height:22.510883pt;}
.ha{height:68.064635pt;}
.h44{height:70.866084pt;}
.h40{height:70.866554pt;}
.h2b{height:70.866735pt;}
.h11{height:70.866835pt;}
.h42{height:70.866871pt;}
.h4b{height:70.867023pt;}
.h37{height:70.867043pt;}
.h25{height:70.867090pt;}
.h46{height:70.867099pt;}
.hd{height:70.867101pt;}
.h23{height:70.867110pt;}
.h33{height:70.867115pt;}
.h4a{height:70.867177pt;}
.h28{height:70.867181pt;}
.h43{height:70.867244pt;}
.h19{height:70.867277pt;}
.h2c{height:70.867297pt;}
.h35{height:70.867299pt;}
.h1e{height:70.867304pt;}
.h29{height:70.867355pt;}
.hc{height:70.867373pt;}
.h21{height:70.867404pt;}
.h45{height:70.867582pt;}
.h3a{height:70.867613pt;}
.h3b{height:70.867633pt;}
.h3e{height:70.867669pt;}
.he{height:70.867709pt;}
.h16{height:70.867785pt;}
.h14{height:70.867837pt;}
.h4c{height:70.867852pt;}
.h34{height:70.867864pt;}
.h48{height:70.867931pt;}
.h1f{height:70.867939pt;}
.h13{height:70.867983pt;}
.h1c{height:70.868029pt;}
.h32{height:70.868047pt;}
.hf{height:70.868055pt;}
.h20{height:70.868164pt;}
.h49{height:70.868186pt;}
.h15{height:70.868350pt;}
.h30{height:70.868416pt;}
.h1b{height:70.868437pt;}
.h3c{height:70.868687pt;}
.h18{height:70.868698pt;}
.h17{height:70.868871pt;}
.h31{height:70.868888pt;}
.h27{height:70.868889pt;}
.h1a{height:70.868979pt;}
.h38{height:70.869033pt;}
.h2a{height:70.869157pt;}
.h22{height:70.869265pt;}
.h12{height:70.869375pt;}
.h3f{height:70.869421pt;}
.h24{height:70.869522pt;}
.h39{height:70.869524pt;}
.h26{height:70.869532pt;}
.h10{height:70.869719pt;}
.h47{height:70.869826pt;}
.h36{height:70.869855pt;}
.h3d{height:70.869858pt;}
.h1d{height:70.870108pt;}
.h4d{height:70.870117pt;}
.h2d{height:70.870150pt;}
.h41{height:70.870294pt;}
.h2e{height:70.870403pt;}
.h2f{height:70.870423pt;}
.h7e{height:79.649584pt;}
.h7f{height:88.245095pt;}
.h7d{height:88.500138pt;}
.h7c{height:91.356007pt;}
.h7{height:91.470776pt;}
.h6{height:104.277058pt;}
.h8{height:143.631667pt;}
.h68{height:161.058910pt;}
.h61{height:161.060123pt;}
.h5b{height:161.060300pt;}
.h54{height:161.060341pt;}
.h5c{height:161.060636pt;}
.h73{height:161.060876pt;}
.h53{height:161.061300pt;}
.h5f{height:161.061483pt;}
.h51{height:161.062013pt;}
.h6d{height:161.062081pt;}
.h6b{height:161.062207pt;}
.h6c{height:161.062242pt;}
.h5d{height:161.062502pt;}
.h64{height:161.062603pt;}
.h52{height:161.062635pt;}
.h58{height:161.062657pt;}
.h60{height:161.062749pt;}
.h70{height:161.062931pt;}
.h7b{height:161.063021pt;}
.h72{height:161.063214pt;}
.h6e{height:161.063269pt;}
.h76{height:161.063354pt;}
.h75{height:161.063718pt;}
.h67{height:161.063935pt;}
.h5e{height:161.064038pt;}
.h5a{height:161.064344pt;}
.h7a{height:161.064641pt;}
.h56{height:161.064749pt;}
.h65{height:161.064765pt;}
.h71{height:161.065059pt;}
.h63{height:161.065208pt;}
.h4f{height:161.065458pt;}
.h79{height:161.065712pt;}
.h55{height:161.065893pt;}
.h50{height:161.066055pt;}
.h6f{height:161.066556pt;}
.h62{height:161.066657pt;}
.h69{height:161.066801pt;}
.h77{height:161.067294pt;}
.h74{height:161.067316pt;}
.h66{height:161.067404pt;}
.h4e{height:161.067564pt;}
.h6a{height:161.068339pt;}
.h57{height:161.068644pt;}
.h59{height:161.069006pt;}
.h78{height:161.069784pt;}
.h4{height:208.384191pt;}
.h5{height:290.611681pt;}
.h3{height:579.173664pt;}
.h2{height:723.967080pt;}
.hb{height:1548.334795pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w2{width:96.520480pt;}
.w3{width:1523.186205pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xb{left:4.135963pt;}
.xc{left:13.351613pt;}
.x7{left:34.016000pt;}
.x6e{left:40.682667pt;}
.x67{left:49.977086pt;}
.x66{left:51.698001pt;}
.x65{left:55.723599pt;}
.x70{left:62.961333pt;}
.x6f{left:64.252000pt;}
.x6{left:65.831242pt;}
.x1{left:67.233993pt;}
.x78{left:74.673333pt;}
.x77{left:82.734667pt;}
.x79{left:121.793333pt;}
.x82{left:126.182667pt;}
.x71{left:131.317333pt;}
.x81{left:136.886667pt;}
.x74{left:139.052000pt;}
.x75{left:146.214667pt;}
.x83{left:175.437333pt;}
.x2{left:183.308380pt;}
.x9{left:196.536000pt;}
.x84{left:200.554667pt;}
.x73{left:202.874667pt;}
.x7a{left:217.889333pt;}
.x76{left:219.248000pt;}
.x7b{left:241.746667pt;}
.x85{left:275.753333pt;}
.x72{left:289.800000pt;}
.x3{left:298.428524pt;}
.x5d{left:303.196923pt;}
.x5e{left:333.958563pt;}
.x68{left:343.055762pt;}
.x6d{left:349.526667pt;}
.x5f{left:350.999535pt;}
.x69{left:374.638798pt;}
.x60{left:376.011407pt;}
.x6a{left:399.819940pt;}
.x61{left:404.347923pt;}
.x6b{left:415.093338pt;}
.x62{left:417.453358pt;}
.x63{left:444.200252pt;}
.x39{left:447.390348pt;}
.x64{left:457.748394pt;}
.x3a{left:465.428496pt;}
.x6c{left:470.765939pt;}
.x3b{left:476.906331pt;}
.x3c{left:488.533906pt;}
.x2f{left:508.310331pt;}
.x30{left:519.466986pt;}
.x31{left:531.984315pt;}
.x32{left:540.059381pt;}
.x7c{left:603.808000pt;}
.x14{left:614.175945pt;}
.x15{left:620.930485pt;}
.x7d{left:622.820000pt;}
.xe{left:631.503375pt;}
.x16{left:632.489700pt;}
.x80{left:635.129333pt;}
.xf{left:638.928486pt;}
.x10{left:649.990741pt;}
.x3d{left:659.861592pt;}
.x11{left:661.516319pt;}
.x3e{left:673.000664pt;}
.x12{left:674.668412pt;}
.x7e{left:684.673333pt;}
.x3f{left:694.058553pt;}
.x40{left:707.282261pt;}
.x41{left:720.529839pt;}
.x42{left:740.421282pt;}
.x43{left:753.725284pt;}
.x7f{left:757.428000pt;}
.x44{left:768.317261pt;}
.x45{left:777.626047pt;}
.x46{left:792.199578pt;}
.x47{left:800.184583pt;}
.x48{left:821.340128pt;}
.xd{left:827.716000pt;}
.x49{left:835.856150pt;}
.x4a{left:850.322259pt;}
.x17{left:894.993369pt;}
.x18{left:907.895896pt;}
.x19{left:913.692322pt;}
.x1a{left:920.523902pt;}
.x13{left:984.147871pt;}
.x4b{left:1002.691661pt;}
.x35{left:1011.672757pt;}
.x57{left:1017.114367pt;}
.x36{left:1023.392562pt;}
.x37{left:1031.538158pt;}
.x4c{left:1035.944614pt;}
.x38{left:1044.132527pt;}
.x4d{left:1049.626219pt;}
.x58{left:1053.254682pt;}
.x1b{left:1060.189343pt;}
.x1c{left:1062.637254pt;}
.x1d{left:1064.597969pt;}
.x1e{left:1068.330598pt;}
.x1f{left:1070.573431pt;}
.x20{left:1077.222720pt;}
.x22{left:1080.055829pt;}
.x21{left:1081.625920pt;}
.x59{left:1083.163460pt;}
.x23{left:1089.126986pt;}
.x24{left:1098.939244pt;}
.x25{left:1106.085493pt;}
.x26{left:1109.213740pt;}
.x27{left:1112.860649pt;}
.x28{left:1113.920759pt;}
.x29{left:1121.744090pt;}
.x5a{left:1122.882325pt;}
.x2a{left:1126.556361pt;}
.x2b{left:1133.097143pt;}
.x2c{left:1142.404845pt;}
.x4e{left:1146.011606pt;}
.x5b{left:1148.556087pt;}
.x2d{left:1149.505521pt;}
.x2e{left:1158.763310pt;}
.x4f{left:1172.842050pt;}
.x5c{left:1185.755428pt;}
.x33{left:1260.574030pt;}
.x34{left:1261.767603pt;}
.x4{left:1379.380631pt;}
.x50{left:1434.680572pt;}
.x51{left:1440.979384pt;}
.x52{left:1443.999125pt;}
.x56{left:1445.053809pt;}
.x55{left:1446.389526pt;}
.x53{left:1447.284706pt;}
.x54{left:1449.002367pt;}
.xa{left:1460.645333pt;}
.x5{left:1494.511497pt;}
.x8{left:2415.118667pt;}
.x87{left:2421.785333pt;}
.x88{left:2444.465333pt;}
.x89{left:2445.354667pt;}
.x97{left:2454.774667pt;}
.x8d{left:2455.776000pt;}
.x8c{left:2463.837333pt;}
.x94{left:2485.329333pt;}
.x8e{left:2514.881333pt;}
.x98{left:2605.640000pt;}
.x96{left:2623.237333pt;}
.x99{left:2639.974667pt;}
.x92{left:2851.069333pt;}
.x90{left:2868.364000pt;}
.x93{left:2923.720000pt;}
.x91{left:2941.960000pt;}
.x86{left:2990.208000pt;}
.x8f{left:3004.353333pt;}
.x95{left:3010.264000pt;}
.x8a{left:3025.685333pt;}
.x8b{left:3099.165333pt;}
}




    .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; }
  