
    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_5d4e7707d49db9d92d2c5128.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_b46ee3cf4c4cabc190f6a3e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_94952cbd7cfc00470314f417.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5412f648f4bfb5b9ede5d245.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ba9899c521e4251c1b061a54.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_40b10202ef65029b3e640038.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_c43f255b5379cf6e4c45e19c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_356198474592e27572346f3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_1cd36436af88ceff015ed0f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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_cc6ef4415498512791263691.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_c5ca8e275290f23b8b375bdd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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_9a30b3f1db7f5be48e774212.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_8f88e337725e7e1d976c24c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_567ec829050e06e5a18feed2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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_db43ebe9c56f0e0ecceb9e77.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;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;}
.mb{transform:matrix(0.000000,-0.145853,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.145853,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.145853,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.168762,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.168762,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.168762,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.188322,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.188322,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.188322,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.192489,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.192489,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.192489,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.201110,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.201110,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.201110,0.250000,0.000000,0,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);}
.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);}
.m6{transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.324694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324694,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331879,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370345,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.428515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428515,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-84.240000px;}
.v4{vertical-align:-82.800000px;}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v6{vertical-align:18.000000px;}
.v7{vertical-align:21.600000px;}
.v1{vertical-align:33.120000px;}
.ls3c{letter-spacing:-3.049390px;}
.ls3b{letter-spacing:-2.467806px;}
.ls3f{letter-spacing:-1.890150px;}
.ls3a{letter-spacing:-1.461821px;}
.ls17{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.936000px;}
.ls3e{letter-spacing:-0.884166px;}
.ls43{letter-spacing:-0.792000px;}
.ls41{letter-spacing:-0.652318px;}
.ls1b{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls47{letter-spacing:-0.371267px;}
.ls37{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.304153px;}
.lsb{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.282000px;}
.lsd{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.112200px;}
.ls36{letter-spacing:-0.106800px;}
.ls39{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.058320px;}
.ls9{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.022320px;}
.ls48{letter-spacing:0.048772px;}
.ls15{letter-spacing:0.072000px;}
.ls4e{letter-spacing:0.112242px;}
.ls4c{letter-spacing:0.119663px;}
.ls18{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.144130px;}
.ls12{letter-spacing:0.152640px;}
.ls4a{letter-spacing:0.153660px;}
.ls4b{letter-spacing:0.156365px;}
.ls44{letter-spacing:0.194591px;}
.ls46{letter-spacing:0.195827px;}
.ls49{letter-spacing:0.200788px;}
.ls38{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.221185px;}
.ls1a{letter-spacing:0.272640px;}
.ls14{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.408000px;}
.ls33{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.504000px;}
.ls4f{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.869760px;}
.lse{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.736895px;}
.ls30{letter-spacing:5.040000px;}
.ls13{letter-spacing:6.480000px;}
.ls4{letter-spacing:7.920000px;}
.ls5{letter-spacing:8.460000px;}
.ls50{letter-spacing:8.789760px;}
.ls10{letter-spacing:9.360000px;}
.lsf{letter-spacing:12.960000px;}
.ls0{letter-spacing:19.620000px;}
.ls8{letter-spacing:33.960000px;}
.ls6{letter-spacing:80.640000px;}
.ls51{letter-spacing:90.000000px;}
.ls20{letter-spacing:120.834240px;}
.ls25{letter-spacing:123.594240px;}
.ls2f{letter-spacing:130.194240px;}
.ls1f{letter-spacing:135.954240px;}
.ls24{letter-spacing:138.834240px;}
.ls2e{letter-spacing:145.314240px;}
.ls1d{letter-spacing:151.074240px;}
.ls1e{letter-spacing:151.134240px;}
.ls21{letter-spacing:153.774240px;}
.ls22{letter-spacing:153.834240px;}
.ls23{letter-spacing:153.954240px;}
.ls2c{letter-spacing:160.434240px;}
.ls2d{letter-spacing:160.614240px;}
.ls2b{letter-spacing:179.574240px;}
.ls2a{letter-spacing:194.874240px;}
.ls3{letter-spacing:197.976000px;}
.ls29{letter-spacing:209.814240px;}
.ls27{letter-spacing:209.874240px;}
.ls28{letter-spacing:209.934240px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws16{word-spacing:-59.653200px;}
.ws1d{word-spacing:-20.348120px;}
.ws5{word-spacing:-19.440000px;}
.ws29{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.432000px;}
.ws7{word-spacing:-18.288000px;}
.ws18{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.928000px;}
.ws0{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.wse{word-spacing:-17.568000px;}
.wsd{word-spacing:-17.496000px;}
.ws26{word-spacing:-17.209876px;}
.ws1f{word-spacing:-17.208000px;}
.ws2{word-spacing:-17.064000px;}
.ws25{word-spacing:-15.655084px;}
.ws23{word-spacing:-15.588280px;}
.ws1b{word-spacing:-15.327973px;}
.ws13{word-spacing:-14.940000px;}
.ws21{word-spacing:-13.801121px;}
.ws12{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.447440px;}
.ws28{word-spacing:-13.402285px;}
.ws14{word-spacing:-13.393560px;}
.wsb{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.700000px;}
.ws15{word-spacing:-8.830320px;}
.ws1a{word-spacing:-8.014877px;}
.ws1c{word-spacing:-7.710724px;}
.ws6{word-spacing:0.000000px;}
.ws27{word-spacing:97.484338px;}
.ws1e{word-spacing:98.806965px;}
.ws20{word-spacing:104.141413px;}
.ws22{word-spacing:124.608702px;}
.ws24{word-spacing:125.179651px;}
._35{margin-left:-181.247221px;}
._3d{margin-left:-179.609186px;}
._34{margin-left:-178.535778px;}
._3e{margin-left:-170.597932px;}
._36{margin-left:-167.187452px;}
._38{margin-left:-157.442130px;}
._37{margin-left:-154.730688px;}
._4{margin-left:-6.792000px;}
._7{margin-left:-4.704000px;}
._19{margin-left:-3.288000px;}
._17{margin-left:-2.244000px;}
._1{margin-left:-1.152000px;}
._2{width:1.020000px;}
._12{width:2.736000px;}
._9{width:4.176000px;}
._13{width:5.520000px;}
._b{width:7.068000px;}
._a{width:8.280000px;}
._f{width:9.336000px;}
._c{width:10.512000px;}
._1a{width:11.808000px;}
._d{width:12.888000px;}
._14{width:13.968000px;}
._3{width:15.960000px;}
._e{width:16.992000px;}
._0{width:19.872000px;}
._3c{width:20.964000px;}
._5{width:22.044000px;}
._20{width:23.532000px;}
._15{width:25.128000px;}
._16{width:26.472000px;}
._44{width:27.528000px;}
._6{width:28.872000px;}
._1b{width:30.888000px;}
._18{width:41.616000px;}
._25{width:44.458080px;}
._24{width:66.835920px;}
._26{width:68.340240px;}
._11{width:79.908000px;}
._10{width:81.048000px;}
._21{width:84.000000px;}
._31{width:90.119280px;}
._30{width:96.264000px;}
._2d{width:102.132000px;}
._3a{width:105.138856px;}
._22{width:106.255920px;}
._23{width:107.508720px;}
._28{width:110.484000px;}
._47{width:112.030264px;}
._39{width:113.470373px;}
._3f{width:116.083575px;}
._2f{width:117.408000px;}
._1e{width:119.352000px;}
._45{width:121.843620px;}
._1f{width:123.960000px;}
._2b{width:125.424000px;}
._2c{width:126.684000px;}
._43{width:128.316000px;}
._32{width:134.388000px;}
._1d{width:139.512000px;}
._46{width:143.202165px;}
._2e{width:156.024000px;}
._33{width:158.184000px;}
._1c{width:159.672000px;}
._27{width:163.920000px;}
._29{width:192.024000px;}
._2a{width:198.120000px;}
._42{width:483.996000px;}
._3b{width:580.419166px;}
._41{width:589.063372px;}
._40{width:590.879832px;}
._8{width:930.540000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:28.830493px;}
.fsb{font-size:34.169677px;}
.fs21{font-size:39.887753px;}
.fs6{font-size:40.320000px;}
.fs12{font-size:41.444809px;}
.fs25{font-size:43.165223px;}
.fsd{font-size:45.155012px;}
.fs23{font-size:45.895416px;}
.fs19{font-size:46.811652px;}
.fs20{font-size:47.012264px;}
.fs1{font-size:48.240000px;}
.fsc{font-size:48.865215px;}
.fs13{font-size:51.002303px;}
.fs1a{font-size:51.219869px;}
.fsf{font-size:51.957051px;}
.fs9{font-size:55.136593px;}
.fs17{font-size:55.192954px;}
.fs1e{font-size:55.428469px;}
.fs14{font-size:58.685164px;}
.fs1c{font-size:58.934310px;}
.fs26{font-size:59.549476px;}
.fs3{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs16{font-size:68.610280px;}
.fs1d{font-size:71.989160px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.387918px;}
.fs15{font-size:72.951440px;}
.fsa{font-size:73.194676px;}
.fs24{font-size:73.987756px;}
.fs1f{font-size:76.467490px;}
.fs1b{font-size:76.542462px;}
.fse{font-size:76.968099px;}
.fs22{font-size:78.667469px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fs11{font-size:101.452988px;}
.fs18{font-size:104.117376px;}
.y0{bottom:0.000000px;}
.y7a{bottom:4.500000px;}
.y120{bottom:6.270000px;}
.y7f{bottom:7.740000px;}
.ya4{bottom:8.640000px;}
.yea{bottom:9.030000px;}
.yc8{bottom:9.075000px;}
.y11e{bottom:9.255000px;}
.yc9{bottom:9.615000px;}
.yfd{bottom:10.695000px;}
.y12d{bottom:10.800000px;}
.y12f{bottom:10.830000px;}
.yfe{bottom:12.525000px;}
.ya3{bottom:14.790000px;}
.y1de{bottom:16.149706px;}
.y19e{bottom:16.824406px;}
.y130{bottom:16.950000px;}
.y1c7{bottom:20.737839px;}
.y1b3{bottom:20.745677px;}
.yeb{bottom:22.785000px;}
.y79{bottom:25.200000px;}
.y7c{bottom:25.380000px;}
.y153{bottom:27.055480px;}
.ya1{bottom:28.830000px;}
.yc6{bottom:34.380000px;}
.yfb{bottom:38.235000px;}
.y12c{bottom:39.780000px;}
.y1d3{bottom:40.728408px;}
.y11c{bottom:41.145000px;}
.y192{bottom:45.538943px;}
.ye8{bottom:45.615000px;}
.y78{bottom:45.900000px;}
.y154{bottom:46.233041px;}
.y97{bottom:48.345000px;}
.y1be{bottom:52.299354px;}
.y1a8{bottom:52.311620px;}
.y1d4{bottom:53.624640px;}
.yae{bottom:53.895000px;}
.y193{bottom:56.965763px;}
.yf4{bottom:57.750000px;}
.y173{bottom:59.287262px;}
.y122{bottom:59.295000px;}
.y115{bottom:60.660000px;}
.ye0{bottom:65.130000px;}
.y77{bottom:66.600000px;}
.yaf{bottom:68.430000px;}
.y1bf{bottom:68.859408px;}
.y1a9{bottom:68.874321px;}
.y172{bottom:74.983173px;}
.yb0{bottom:83.010000px;}
.y102{bottom:83.370000px;}
.y104{bottom:83.445000px;}
.y106{bottom:83.490000px;}
.y100{bottom:83.520000px;}
.y98{bottom:85.290000px;}
.y123{bottom:86.370000px;}
.y1e3{bottom:87.295341px;}
.y171{bottom:90.680068px;}
.y1e4{bottom:91.773415px;}
.y1d5{bottom:93.402861px;}
.y138{bottom:94.140000px;}
.y132{bottom:94.170000px;}
.y134{bottom:94.215000px;}
.y136{bottom:94.290000px;}
.y194{bottom:95.714096px;}
.yb1{bottom:97.590000px;}
.yf5{bottom:97.845000px;}
.ye1{bottom:99.285000px;}
.y116{bottom:102.270000px;}
.y170{bottom:106.345525px;}
.y1a0{bottom:106.981846px;}
.yb2{bottom:112.140000px;}
.y1e2{bottom:112.818812px;}
.y124{bottom:113.430000px;}
.y1ec{bottom:117.396000px;}
.y181{bottom:118.296000px;}
.y211{bottom:118.476000px;}
.y1dd{bottom:118.659273px;}
.y1a4{bottom:119.026415px;}
.y1b5{bottom:119.267144px;}
.y1aa{bottom:119.964889px;}
.y70{bottom:120.636000px;}
.y2a{bottom:120.996000px;}
.y1cc{bottom:121.506662px;}
.yed{bottom:121.755000px;}
.yf1{bottom:121.860000px;}
.yef{bottom:121.890000px;}
.y99{bottom:122.220000px;}
.y16f{bottom:122.908902px;}
.y8d{bottom:125.136000px;}
.y1ce{bottom:126.566127px;}
.yb3{bottom:126.720000px;}
.yde{bottom:130.356000px;}
.y1e5{bottom:130.742718px;}
.y1a3{bottom:131.684101px;}
.y58{bottom:132.156000px;}
.y1d6{bottom:133.184951px;}
.y190{bottom:133.416000px;}
.ye2{bottom:133.485000px;}
.y1b7{bottom:133.563921px;}
.y195{bottom:134.615322px;}
.y19d{bottom:134.924197px;}
.yf6{bottom:137.955000px;}
.y1eb{bottom:138.096000px;}
.y16e{bottom:138.607761px;}
.y210{bottom:138.636000px;}
.y1ba{bottom:140.365182px;}
.y125{bottom:140.505000px;}
.yb4{bottom:141.270000px;}
.y6f{bottom:141.336000px;}
.y29{bottom:141.696000px;}
.y117{bottom:143.925000px;}
.y113{bottom:144.036000px;}
.y1c0{bottom:145.568938px;}
.y95{bottom:146.916000px;}
.y1e0{bottom:149.881934px;}
.y1c6{bottom:152.370388px;}
.y1b2{bottom:152.396035px;}
.y57{bottom:152.850000px;}
.y180{bottom:153.930000px;}
.y16d{bottom:154.277147px;}
.y18f{bottom:154.290000px;}
.yb5{bottom:155.850000px;}
.y8c{bottom:158.070000px;}
.y1ea{bottom:158.790000px;}
.y9a{bottom:159.150000px;}
.y20f{bottom:159.330000px;}
.y1b8{bottom:161.464964px;}
.y6e{bottom:161.670000px;}
.y28{bottom:162.390000px;}
.y1db{bottom:165.634535px;}
.ydd{bottom:166.530000px;}
.y126{bottom:167.580000px;}
.y94{bottom:167.610000px;}
.ye3{bottom:167.655000px;}
.y16c{bottom:169.966182px;}
.yb6{bottom:170.385000px;}
.y1ab{bottom:171.055456px;}
.y1d7{bottom:172.967042px;}
.yaa{bottom:173.055000px;}
.yac{bottom:173.130000px;}
.ya6{bottom:173.160000px;}
.ya8{bottom:173.190000px;}
.y196{bottom:173.363655px;}
.y56{bottom:173.550000px;}
.y17f{bottom:174.810000px;}
.y18e{bottom:174.990000px;}
.yf7{bottom:178.095000px;}
.y1cd{bottom:179.039431px;}
.y1e9{bottom:179.490000px;}
.y112{bottom:180.030000px;}
.y6d{bottom:182.730000px;}
.y27{bottom:183.090000px;}
.yb7{bottom:184.965000px;}
.y118{bottom:185.580000px;}
.y16b{bottom:185.665041px;}
.ydc{bottom:187.410000px;}
.yd0{bottom:188.205000px;}
.y93{bottom:188.310000px;}
.y19b{bottom:188.340990px;}
.y1bc{bottom:190.290000px;}
.y186{bottom:192.630000px;}
.y8b{bottom:193.530000px;}
.y55{bottom:194.250000px;}
.y127{bottom:194.655000px;}
.y17e{bottom:195.510000px;}
.y18d{bottom:195.690000px;}
.y9b{bottom:196.095000px;}
.yb8{bottom:199.545000px;}
.ycf{bottom:199.620000px;}
.ycd{bottom:199.695000px;}
.ycb{bottom:199.770000px;}
.y1e8{bottom:200.190000px;}
.y111{bottom:200.730000px;}
.y16a{bottom:201.363900px;}
.ye4{bottom:201.810000px;}
.y6c{bottom:203.430000px;}
.y26{bottom:203.790000px;}
.y1c9{bottom:204.319357px;}
.ydb{bottom:208.110000px;}
.y92{bottom:209.010000px;}
.y1cb{bottom:210.425007px;}
.y197{bottom:212.116621px;}
.y1c4{bottom:212.691329px;}
.y1b1{bottom:212.729968px;}
.y1d8{bottom:212.880727px;}
.yb9{bottom:214.095000px;}
.y54{bottom:214.950000px;}
.y17d{bottom:216.210000px;}
.y18c{bottom:216.390000px;}
.y169{bottom:217.023463px;}
.yf8{bottom:218.190000px;}
.y1b9{bottom:220.054536px;}
.y20e{bottom:221.430000px;}
.y128{bottom:221.730000px;}
.y1c1{bottom:222.107002px;}
.y1ac{bottom:222.146024px;}
.y110{bottom:222.870000px;}
.y6b{bottom:224.130000px;}
.y25{bottom:224.490000px;}
.y1bb{bottom:225.570000px;}
.y119{bottom:227.235000px;}
.yda{bottom:228.630000px;}
.yba{bottom:228.675000px;}
.y8a{bottom:229.350000px;}
.y1a2{bottom:229.870739px;}
.y1e1{bottom:232.161214px;}
.y168{bottom:232.722322px;}
.y9c{bottom:233.025000px;}
.y53{bottom:235.650000px;}
.y1e7{bottom:235.830000px;}
.ye5{bottom:235.980000px;}
.y17c{bottom:236.910000px;}
.y18b{bottom:237.090000px;}
.y20d{bottom:242.130000px;}
.y1a7{bottom:242.340000px;}
.ybb{bottom:243.210000px;}
.y6a{bottom:244.830000px;}
.y24{bottom:245.190000px;}
.y129{bottom:248.790000px;}
.y167{bottom:249.285699px;}
.yd9{bottom:249.330000px;}
.y198{bottom:250.864954px;}
.y1d9{bottom:252.662818px;}
.y52{bottom:256.350000px;}
.y18a{bottom:257.430000px;}
.y17b{bottom:257.610000px;}
.ybc{bottom:257.790000px;}
.yf9{bottom:258.330000px;}
.y10f{bottom:258.510000px;}
.y20c{bottom:262.830000px;}
.y166{bottom:264.955086px;}
.y89{bottom:264.990000px;}
.y69{bottom:265.530000px;}
.y23{bottom:265.890000px;}
.y155{bottom:268.472102px;}
.y11a{bottom:268.890000px;}
.y1ca{bottom:269.525812px;}
.y9d{bottom:269.970000px;}
.yd8{bottom:270.030000px;}
.ye6{bottom:270.180000px;}
.y1e6{bottom:271.110000px;}
.ybd{bottom:272.370000px;}
.y1ad{bottom:273.411028px;}
.y12a{bottom:275.865000px;}
.y1df{bottom:276.014984px;}
.y51{bottom:277.050000px;}
.y17a{bottom:278.310000px;}
.y10e{bottom:279.210000px;}
.y91{bottom:279.390000px;}
.yad{bottom:279.900000px;}
.y165{bottom:280.653945px;}
.y20b{bottom:283.530000px;}
.y68{bottom:286.230000px;}
.y22{bottom:286.590000px;}
.ybe{bottom:286.920000px;}
.y1d2{bottom:287.940000px;}
.y189{bottom:288.930000px;}
.y1a1{bottom:289.149974px;}
.y199{bottom:289.767724px;}
.y1da{bottom:292.441038px;}
.y1b6{bottom:294.509066px;}
.y164{bottom:296.342980px;}
.y50{bottom:297.750000px;}
.yfa{bottom:298.440000px;}
.y143{bottom:298.470000px;}
.y1c2{bottom:298.816531px;}
.y179{bottom:299.010000px;}
.ybf{bottom:301.500000px;}
.y12b{bottom:302.940000px;}
.y20a{bottom:304.230000px;}
.ye7{bottom:304.350000px;}
.y19f{bottom:305.515701px;}
.yd7{bottom:305.670000px;}
.y1dc{bottom:306.428729px;}
.y67{bottom:306.570000px;}
.y9e{bottom:306.900000px;}
.y21{bottom:307.290000px;}
.y11b{bottom:310.530000px;}
.y10d{bottom:311.970000px;}
.y163{bottom:312.041839px;}
.y121{bottom:312.120000px;}
.yc0{bottom:316.050000px;}
.y4f{bottom:318.450000px;}
.y88{bottom:318.630000px;}
.yce{bottom:322.020000px;}
.y66{bottom:323.130000px;}
.y1ae{bottom:324.501596px;}
.y209{bottom:324.930000px;}
.y162{bottom:327.711225px;}
.y20{bottom:327.990000px;}
.y19a{bottom:328.519145px;}
.yc1{bottom:330.630000px;}
.y142{bottom:334.470000px;}
.y87{bottom:335.910000px;}
.yd6{bottom:336.990000px;}
.yf3{bottom:337.140000px;}
.y4e{bottom:338.790000px;}
.y161{bottom:343.400260px;}
.y9f{bottom:343.830000px;}
.yc2{bottom:345.210000px;}
.y208{bottom:345.675000px;}
.y19c{bottom:348.433843px;}
.y1b4{bottom:349.435482px;}
.y1c8{bottom:354.256928px;}
.y141{bottom:355.395000px;}
.y152{bottom:356.495742px;}
.y86{bottom:357.375000px;}
.yc3{bottom:359.745000px;}
.y160{bottom:359.973461px;}
.y1f{bottom:360.255000px;}
.y207{bottom:366.375000px;}
.y151{bottom:368.677585px;}
.yc4{bottom:374.325000px;}
.y4d{bottom:374.655000px;}
.ycc{bottom:375.480000px;}
.y1c3{bottom:375.523576px;}
.y1af{bottom:375.592164px;}
.y15f{bottom:375.672320px;}
.y140{bottom:376.095000px;}
.y85{bottom:378.795000px;}
.ya0{bottom:380.775000px;}
.y150{bottom:380.888900px;}
.y206{bottom:387.075000px;}
.yc5{bottom:388.875000px;}
.y15e{bottom:391.331883px;}
.y14f{bottom:393.070743px;}
.y1c5{bottom:393.485171px;}
.y1b0{bottom:393.553841px;}
.y4c{bottom:395.535000px;}
.y1e{bottom:395.895000px;}
.y84{bottom:400.215000px;}
.y137{bottom:400.860000px;}
.y14e{bottom:405.291882px;}
.y15d{bottom:407.030742px;}
.y205{bottom:407.775000px;}
.y13f{bottom:411.735000px;}
.y4b{bottom:416.235000px;}
.y1d{bottom:416.775000px;}
.y14d{bottom:417.473725px;}
.y83{bottom:421.635000px;}
.y15c{bottom:422.729601px;}
.y135{bottom:427.860000px;}
.y204{bottom:428.475000px;}
.yca{bottom:428.940000px;}
.y14c{bottom:429.685040px;}
.y4a{bottom:436.935000px;}
.y15b{bottom:438.389164px;}
.y14b{bottom:441.906180px;}
.yfc{bottom:446.940000px;}
.y13e{bottom:447.375000px;}
.y203{bottom:449.175000px;}
.y105{bottom:452.700000px;}
.y1c{bottom:453.135000px;}
.yc7{bottom:453.420000px;}
.y14a{bottom:454.088023px;}
.y133{bottom:455.040000px;}
.y49{bottom:457.635000px;}
.y149{bottom:466.299338px;}
.y178{bottom:468.255000px;}
.y15a{bottom:469.786882px;}
.y202{bottom:469.875000px;}
.y148{bottom:478.481181px;}
.y103{bottom:478.620000px;}
.y131{bottom:482.220000px;}
.y13d{bottom:483.015000px;}
.y159{bottom:486.350259px;}
.y1b{bottom:489.495000px;}
.y201{bottom:490.575000px;}
.y147{bottom:490.702320px;}
.y48{bottom:493.095000px;}
.y158{bottom:502.009821px;}
.y146{bottom:502.884163px;}
.y177{bottom:503.715000px;}
.y101{bottom:504.540000px;}
.y82{bottom:509.295000px;}
.y1a{bottom:510.375000px;}
.y200{bottom:511.275000px;}
.y47{bottom:513.975000px;}
.y145{bottom:515.105303px;}
.y157{bottom:517.708680px;}
.y13c{bottom:518.475000px;}
.y81{bottom:529.995000px;}
.yff{bottom:530.280000px;}
.y19{bottom:531.075000px;}
.y1ff{bottom:531.975000px;}
.y156{bottom:533.407539px;}
.y46{bottom:534.675000px;}
.y176{bottom:538.995000px;}
.y13b{bottom:539.175000px;}
.y174{bottom:543.850523px;}
.y80{bottom:547.455000px;}
.y18{bottom:551.775000px;}
.y1fe{bottom:552.675000px;}
.y45{bottom:555.375000px;}
.y175{bottom:564.765961px;}
.y13a{bottom:570.855000px;}
.y144{bottom:570.930000px;}
.y17{bottom:572.475000px;}
.y1fd{bottom:573.375000px;}
.y44{bottom:576.075000px;}
.y12e{bottom:578.700000px;}
.y7e{bottom:589.575000px;}
.y16{bottom:593.175000px;}
.y1fc{bottom:594.075000px;}
.y43{bottom:596.775000px;}
.y15{bottom:613.905000px;}
.y7d{bottom:614.265000px;}
.y42{bottom:617.505000px;}
.y14{bottom:634.605000px;}
.y139{bottom:635.325000px;}
.y41{bottom:638.205000px;}
.y1d1{bottom:639.465000px;}
.y1fb{bottom:647.565000px;}
.y185{bottom:649.005000px;}
.y13{bottom:655.305000px;}
.y7b{bottom:656.385000px;}
.y40{bottom:658.905000px;}
.y1fa{bottom:668.265000px;}
.yd5{bottom:670.425000px;}
.y1d0{bottom:675.645000px;}
.y12{bottom:676.005000px;}
.y10c{bottom:676.185000px;}
.y3f{bottom:679.605000px;}
.y184{bottom:680.865000px;}
.y1a6{bottom:688.965000px;}
.y188{bottom:694.725000px;}
.y11{bottom:696.705000px;}
.y10b{bottom:696.885000px;}
.y76{bottom:698.685000px;}
.y3e{bottom:700.305000px;}
.yd4{bottom:701.745000px;}
.ydf{bottom:701.820000px;}
.y90{bottom:702.285000px;}
.y1f9{bottom:709.665000px;}
.y1cf{bottom:711.285000px;}
.y10{bottom:717.405000px;}
.y10a{bottom:717.585000px;}
.y1a5{bottom:724.605000px;}
.y8f{bottom:726.405000px;}
.y187{bottom:726.585000px;}
.y1bd{bottom:727.665000px;}
.y1f8{bottom:730.365000px;}
.y3d{bottom:735.945000px;}
.yf{bottom:738.105000px;}
.y191{bottom:740.940000px;}
.y1f7{bottom:751.065000px;}
.y3c{bottom:756.645000px;}
.ye{bottom:758.805000px;}
.y8e{bottom:760.425000px;}
.y96{bottom:760.500000px;}
.yf2{bottom:761.040000px;}
.y1f6{bottom:771.765000px;}
.y109{bottom:775.185000px;}
.y3b{bottom:777.345000px;}
.yd{bottom:779.505000px;}
.y75{bottom:786.345000px;}
.y1f5{bottom:792.465000px;}
.yf0{bottom:795.060000px;}
.y108{bottom:795.885000px;}
.yab{bottom:796.320000px;}
.y3a{bottom:798.045000px;}
.yc{bottom:800.205000px;}
.y74{bottom:807.045000px;}
.y1f4{bottom:813.165000px;}
.y39{bottom:818.745000px;}
.yb{bottom:820.905000px;}
.y73{bottom:827.745000px;}
.y107{bottom:828.645000px;}
.yee{bottom:829.080000px;}
.ye9{bottom:829.620000px;}
.y114{bottom:830.880000px;}
.y1f3{bottom:833.865000px;}
.y38{bottom:839.445000px;}
.ya9{bottom:843.840000px;}
.y72{bottom:848.445000px;}
.y65{bottom:848.805000px;}
.y1f2{bottom:854.565000px;}
.y37{bottom:860.145000px;}
.ya{bottom:861.945000px;}
.yec{bottom:863.280000px;}
.y64{bottom:869.550000px;}
.y1f1{bottom:875.310000px;}
.y36{bottom:880.890000px;}
.y63{bottom:890.250000px;}
.y11d{bottom:890.820000px;}
.ya7{bottom:891.180000px;}
.ya2{bottom:895.680000px;}
.y1f0{bottom:896.010000px;}
.y9{bottom:897.810000px;}
.y62{bottom:910.950000px;}
.y35{bottom:916.530000px;}
.y1ef{bottom:916.710000px;}
.y61{bottom:931.650000px;}
.y8{bottom:933.270000px;}
.y1ee{bottom:937.050000px;}
.y34{bottom:937.410000px;}
.ya5{bottom:938.700000px;}
.y60{bottom:952.350000px;}
.y33{bottom:958.110000px;}
.y7{bottom:968.910000px;}
.y1ed{bottom:972.870000px;}
.y5f{bottom:973.050000px;}
.y32{bottom:978.810000px;}
.y5e{bottom:993.750000px;}
.y6{bottom:998.070000px;}
.y31{bottom:999.510000px;}
.y5d{bottom:1014.450000px;}
.y30{bottom:1020.210000px;}
.y5{bottom:1025.250000px;}
.y5c{bottom:1035.150000px;}
.y2f{bottom:1040.910000px;}
.yd3{bottom:1045.950000px;}
.y4{bottom:1054.410000px;}
.y5b{bottom:1055.490000px;}
.y71{bottom:1055.850000px;}
.y2e{bottom:1061.610000px;}
.y5a{bottom:1076.550000px;}
.yd2{bottom:1081.770000px;}
.y11f{bottom:1087.920000px;}
.y3{bottom:1090.050000px;}
.y2d{bottom:1097.070000px;}
.y59{bottom:1097.250000px;}
.y183{bottom:1102.650000px;}
.y2{bottom:1117.410000px;}
.yd1{bottom:1117.770000px;}
.y2c{bottom:1117.950000px;}
.y182{bottom:1138.140000px;}
.y1{bottom:1138.320000px;}
.y2b{bottom:1138.680000px;}
.hf{height:20.700000px;}
.h10{height:20.736000px;}
.h2e{height:22.860000px;}
.he{height:23.976000px;}
.h1c{height:26.280000px;}
.h37{height:30.069303px;}
.h54{height:30.091103px;}
.h42{height:31.265737px;}
.h26{height:32.040000px;}
.h58{height:32.563608px;}
.h56{height:33.413118px;}
.h32{height:33.480000px;}
.h16{height:33.840000px;}
.h3d{height:34.064694px;}
.h4a{height:35.314454px;}
.h52{height:35.465795px;}
.h3a{height:35.637905px;}
.h3c{height:36.863651px;}
.h3f{height:37.826154px;}
.h44{height:38.475859px;}
.h4c{height:38.639989px;}
.h21{height:39.240000px;}
.hd{height:41.400000px;}
.hc{height:41.580000px;}
.h48{height:41.637263px;}
.h50{height:41.814934px;}
.h45{height:42.724404px;}
.h4e{height:42.905789px;}
.h59{height:44.923799px;}
.h13{height:45.316055px;}
.h1b{height:48.029766px;}
.h4{height:48.616875px;}
.h5b{height:50.229844px;}
.h2d{height:50.405625px;}
.h47{height:51.759220px;}
.h2c{height:52.020000px;}
.h46{height:53.110643px;}
.h35{height:53.237812px;}
.h4f{height:54.308229px;}
.h7{height:54.597656px;}
.h40{height:54.609049px;}
.h4d{height:55.725006px;}
.h57{height:55.815959px;}
.h3e{height:56.034881px;}
.h55{height:57.272068px;}
.h31{height:57.420000px;}
.h38{height:57.505744px;}
.h51{height:57.686657px;}
.h25{height:57.867188px;}
.h2b{height:60.226875px;}
.h30{height:60.371015px;}
.h34{height:60.660000px;}
.h28{height:63.879258px;}
.h5a{height:70.628906px;}
.h5{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:74.004654px;}
.h8{height:74.953125px;}
.h39{height:76.339760px;}
.h41{height:76.535580px;}
.h15{height:76.963359px;}
.h17{height:77.079094px;}
.h49{height:78.545579px;}
.h9{height:80.464922px;}
.h2{height:81.736875px;}
.h6{height:82.635820px;}
.h11{height:82.676953px;}
.hb{height:82.800000px;}
.h27{height:103.500000px;}
.h1a{height:104.400000px;}
.h33{height:108.540000px;}
.h20{height:122.580000px;}
.h22{height:136.080000px;}
.h24{height:145.260000px;}
.h14{height:167.220000px;}
.h18{height:189.900000px;}
.h2a{height:194.940000px;}
.h1e{height:202.500000px;}
.h1d{height:214.020000px;}
.h2f{height:263.880000px;}
.h23{height:313.920000px;}
.h29{height:324.000000px;}
.h1f{height:325.260000px;}
.h53{height:332.631458px;}
.h3b{height:378.227898px;}
.h12{height:394.380000px;}
.h19{height:402.300000px;}
.h4b{height:427.132099px;}
.h43{height:427.206040px;}
.h36{height:583.942540px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:21.096000px;}
.w13{width:50.040000px;}
.w7{width:52.920000px;}
.w22{width:53.640000px;}
.w2{width:56.700000px;}
.wf{width:59.220000px;}
.w1a{width:70.200000px;}
.w8{width:100.836000px;}
.w3{width:104.796000px;}
.w5{width:121.536000px;}
.w9{width:127.440000px;}
.w4{width:128.340000px;}
.w15{width:131.760000px;}
.wa{width:134.136000px;}
.w12{width:137.160000px;}
.w16{width:137.340000px;}
.w11{width:138.240000px;}
.w21{width:138.420000px;}
.w1d{width:138.780000px;}
.w18{width:138.960000px;}
.wd{width:140.580000px;}
.w1f{width:144.720000px;}
.wb{width:148.176000px;}
.w6{width:148.716000px;}
.w19{width:163.440000px;}
.we{width:217.980000px;}
.w1c{width:576.720000px;}
.w20{width:625.320000px;}
.w1b{width:636.840000px;}
.w14{width:659.340000px;}
.w26{width:690.450461px;}
.w10{width:691.020000px;}
.w17{width:694.440000px;}
.w24{width:701.977162px;}
.wc{width:702.360000px;}
.w1e{width:723.780000px;}
.w27{width:724.355183px;}
.w25{width:728.466222px;}
.w28{width:744.465061px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x41{left:-24.387792px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x20{left:9.150000px;}
.x1a{left:10.515000px;}
.x2f{left:13.035000px;}
.x18{left:15.045000px;}
.x1f{left:16.596000px;}
.x2c{left:19.440000px;}
.x1d{left:22.860000px;}
.x16{left:25.236000px;}
.x14{left:27.540000px;}
.x1c{left:30.456000px;}
.x29{left:32.076000px;}
.x13{left:35.136000px;}
.x1b{left:38.016000px;}
.x28{left:39.636000px;}
.x23{left:41.580000px;}
.x12{left:42.735000px;}
.x42{left:44.426210px;}
.x1e{left:48.210000px;}
.x2a{left:49.785000px;}
.x15{left:52.890000px;}
.x43{left:54.864707px;}
.x24{left:59.325000px;}
.x4d{left:60.702277px;}
.x33{left:62.535000px;}
.x44{left:64.433329px;}
.x58{left:68.610713px;}
.x3b{left:71.100000px;}
.x46{left:73.163376px;}
.x32{left:77.685000px;}
.x57{left:79.251109px;}
.x6d{left:85.447546px;}
.x4c{left:94.378738px;}
.x34{left:95.400000px;}
.x38{left:100.695000px;}
.x63{left:105.463739px;}
.x1{left:108.036000px;}
.x11{left:110.160000px;}
.x2b{left:111.240000px;}
.x5{left:115.236000px;}
.x25{left:124.560000px;}
.x56{left:125.934844px;}
.x36{left:129.780000px;}
.x4b{left:131.951327px;}
.x35{left:133.200000px;}
.x2{left:135.036000px;}
.x47{left:139.536000px;}
.x3{left:162.030000px;}
.x5d{left:163.496071px;}
.xb{left:168.870000px;}
.x72{left:169.966314px;}
.x7{left:172.650000px;}
.x68{left:174.027918px;}
.x5e{left:226.679249px;}
.x69{left:234.394347px;}
.x52{left:241.678935px;}
.x73{left:244.882185px;}
.xc{left:270.435000px;}
.x5b{left:274.880872px;}
.x8{left:278.175000px;}
.x45{left:279.572779px;}
.x3f{left:282.181099px;}
.x66{left:288.380085px;}
.x50{left:290.015637px;}
.x70{left:296.386224px;}
.x17{left:320.580000px;}
.x61{left:334.152236px;}
.x26{left:345.600000px;}
.x6a{left:348.055837px;}
.x53{left:350.720203px;}
.x2d{left:352.080000px;}
.x59{left:356.519403px;}
.x62{left:357.605777px;}
.x54{left:372.939346px;}
.x65{left:374.023987px;}
.x4f{left:376.149133px;}
.x6f{left:384.407810px;}
.x60{left:386.044496px;}
.x37{left:391.320000px;}
.xd{left:398.775000px;}
.x6b{left:402.958174px;}
.x9{left:407.415000px;}
.x55{left:410.740715px;}
.x74{left:416.483811px;}
.x3d{left:446.505000px;}
.x5f{left:450.314049px;}
.x3a{left:454.140000px;}
.x39{left:462.240000px;}
.x6c{left:466.961950px;}
.x75{left:479.925960px;}
.xa{left:529.665000px;}
.xe{left:533.805000px;}
.x5c{left:547.153145px;}
.x40{left:557.371901px;}
.x51{left:569.033806px;}
.x67{left:583.589477px;}
.x71{left:600.726765px;}
.x5a{left:623.147300px;}
.x3e{left:625.318637px;}
.x64{left:653.748022px;}
.x4e{left:657.457392px;}
.x6e{left:671.897671px;}
.x27{left:691.560000px;}
.x21{left:694.080000px;}
.x2e{left:727.560000px;}
.x19{left:739.080000px;}
.x30{left:749.340000px;}
.x22{left:767.340000px;}
.x4{left:780.840000px;}
.x48{left:797.220000px;}
.x10{left:803.340000px;}
.x3c{left:812.340000px;}
.xf{left:814.680000px;}
.x4a{left:816.840000px;}
.x49{left:831.240000px;}
.x31{left:837.180000px;}
@media print{
.v8{vertical-align:-74.880000pt;}
.v4{vertical-align:-73.600000pt;}
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v6{vertical-align:16.000000pt;}
.v7{vertical-align:19.200000pt;}
.v1{vertical-align:29.440000pt;}
.ls3c{letter-spacing:-2.710569pt;}
.ls3b{letter-spacing:-2.193605pt;}
.ls3f{letter-spacing:-1.680134pt;}
.ls3a{letter-spacing:-1.299397pt;}
.ls17{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls3e{letter-spacing:-0.785925pt;}
.ls43{letter-spacing:-0.704000pt;}
.ls41{letter-spacing:-0.579838pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls47{letter-spacing:-0.330015pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.270358pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.250667pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.099733pt;}
.ls36{letter-spacing:-0.094933pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.019840pt;}
.ls48{letter-spacing:0.043353pt;}
.ls15{letter-spacing:0.064000pt;}
.ls4e{letter-spacing:0.099771pt;}
.ls4c{letter-spacing:0.106367pt;}
.ls18{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.128116pt;}
.ls12{letter-spacing:0.135680pt;}
.ls4a{letter-spacing:0.136586pt;}
.ls4b{letter-spacing:0.138991pt;}
.ls44{letter-spacing:0.172970pt;}
.ls46{letter-spacing:0.174068pt;}
.ls49{letter-spacing:0.178478pt;}
.ls38{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.196609pt;}
.ls1a{letter-spacing:0.242347pt;}
.ls14{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.362667pt;}
.ls33{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.448000pt;}
.ls4f{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.773120pt;}
.lse{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.543907pt;}
.ls30{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.760000pt;}
.ls4{letter-spacing:7.040000pt;}
.ls5{letter-spacing:7.520000pt;}
.ls50{letter-spacing:7.813120pt;}
.ls10{letter-spacing:8.320000pt;}
.lsf{letter-spacing:11.520000pt;}
.ls0{letter-spacing:17.440000pt;}
.ls8{letter-spacing:30.186667pt;}
.ls6{letter-spacing:71.680000pt;}
.ls51{letter-spacing:80.000000pt;}
.ls20{letter-spacing:107.408213pt;}
.ls25{letter-spacing:109.861547pt;}
.ls2f{letter-spacing:115.728213pt;}
.ls1f{letter-spacing:120.848213pt;}
.ls24{letter-spacing:123.408213pt;}
.ls2e{letter-spacing:129.168213pt;}
.ls1d{letter-spacing:134.288213pt;}
.ls1e{letter-spacing:134.341547pt;}
.ls21{letter-spacing:136.688213pt;}
.ls22{letter-spacing:136.741547pt;}
.ls23{letter-spacing:136.848213pt;}
.ls2c{letter-spacing:142.608213pt;}
.ls2d{letter-spacing:142.768213pt;}
.ls2b{letter-spacing:159.621547pt;}
.ls2a{letter-spacing:173.221547pt;}
.ls3{letter-spacing:175.978667pt;}
.ls29{letter-spacing:186.501547pt;}
.ls27{letter-spacing:186.554880pt;}
.ls28{letter-spacing:186.608213pt;}
.ws11{word-spacing:-64.000000pt;}
.ws16{word-spacing:-53.025067pt;}
.ws1d{word-spacing:-18.087218pt;}
.ws5{word-spacing:-17.280000pt;}
.ws29{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.384000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws18{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.936000pt;}
.ws0{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.616000pt;}
.wsd{word-spacing:-15.552000pt;}
.ws26{word-spacing:-15.297668pt;}
.ws1f{word-spacing:-15.296000pt;}
.ws2{word-spacing:-15.168000pt;}
.ws25{word-spacing:-13.915630pt;}
.ws23{word-spacing:-13.856249pt;}
.ws1b{word-spacing:-13.624865pt;}
.ws13{word-spacing:-13.280000pt;}
.ws21{word-spacing:-12.267663pt;}
.ws12{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.953280pt;}
.ws28{word-spacing:-11.913142pt;}
.ws14{word-spacing:-11.905387pt;}
.wsb{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.400000pt;}
.ws15{word-spacing:-7.849173pt;}
.ws1a{word-spacing:-7.124335pt;}
.ws1c{word-spacing:-6.853977pt;}
.ws6{word-spacing:0.000000pt;}
.ws27{word-spacing:86.652745pt;}
.ws1e{word-spacing:87.828413pt;}
.ws20{word-spacing:92.570145pt;}
.ws22{word-spacing:110.763291pt;}
.ws24{word-spacing:111.270801pt;}
._35{margin-left:-161.108640pt;}
._3d{margin-left:-159.652609pt;}
._34{margin-left:-158.698469pt;}
._3e{margin-left:-151.642606pt;}
._36{margin-left:-148.611069pt;}
._38{margin-left:-139.948560pt;}
._37{margin-left:-137.538389pt;}
._4{margin-left:-6.037333pt;}
._7{margin-left:-4.181333pt;}
._19{margin-left:-2.922667pt;}
._17{margin-left:-1.994667pt;}
._1{margin-left:-1.024000pt;}
._2{width:0.906667pt;}
._12{width:2.432000pt;}
._9{width:3.712000pt;}
._13{width:4.906667pt;}
._b{width:6.282667pt;}
._a{width:7.360000pt;}
._f{width:8.298667pt;}
._c{width:9.344000pt;}
._1a{width:10.496000pt;}
._d{width:11.456000pt;}
._14{width:12.416000pt;}
._3{width:14.186667pt;}
._e{width:15.104000pt;}
._0{width:17.664000pt;}
._3c{width:18.634667pt;}
._5{width:19.594667pt;}
._20{width:20.917333pt;}
._15{width:22.336000pt;}
._16{width:23.530667pt;}
._44{width:24.469333pt;}
._6{width:25.664000pt;}
._1b{width:27.456000pt;}
._18{width:36.992000pt;}
._25{width:39.518293pt;}
._24{width:59.409707pt;}
._26{width:60.746880pt;}
._11{width:71.029333pt;}
._10{width:72.042667pt;}
._21{width:74.666667pt;}
._31{width:80.106027pt;}
._30{width:85.568000pt;}
._2d{width:90.784000pt;}
._3a{width:93.456761pt;}
._22{width:94.449707pt;}
._23{width:95.563307pt;}
._28{width:98.208000pt;}
._47{width:99.582457pt;}
._39{width:100.862554pt;}
._3f{width:103.185400pt;}
._2f{width:104.362667pt;}
._1e{width:106.090667pt;}
._45{width:108.305440pt;}
._1f{width:110.186667pt;}
._2b{width:111.488000pt;}
._2c{width:112.608000pt;}
._43{width:114.058667pt;}
._32{width:119.456000pt;}
._1d{width:124.010667pt;}
._46{width:127.290813pt;}
._2e{width:138.688000pt;}
._33{width:140.608000pt;}
._1c{width:141.930667pt;}
._27{width:145.706667pt;}
._29{width:170.688000pt;}
._2a{width:176.106667pt;}
._42{width:430.218667pt;}
._3b{width:515.928147pt;}
._41{width:523.611887pt;}
._40{width:525.226518pt;}
._8{width:827.146667pt;}
.fs8{font-size:25.627105pt;}
.fsb{font-size:30.373046pt;}
.fs21{font-size:35.455781pt;}
.fs6{font-size:35.840000pt;}
.fs12{font-size:36.839830pt;}
.fs25{font-size:38.369087pt;}
.fsd{font-size:40.137789pt;}
.fs23{font-size:40.795925pt;}
.fs19{font-size:41.610357pt;}
.fs20{font-size:41.788679pt;}
.fs1{font-size:42.880000pt;}
.fsc{font-size:43.435747pt;}
.fs13{font-size:45.335381pt;}
.fs1a{font-size:45.528773pt;}
.fsf{font-size:46.184045pt;}
.fs9{font-size:49.010305pt;}
.fs17{font-size:49.060404pt;}
.fs1e{font-size:49.269750pt;}
.fs14{font-size:52.164590pt;}
.fs1c{font-size:52.386053pt;}
.fs26{font-size:52.932868pt;}
.fs3{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs16{font-size:60.986915pt;}
.fs1d{font-size:63.990365pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.344816pt;}
.fs15{font-size:64.845724pt;}
.fsa{font-size:65.061934pt;}
.fs24{font-size:65.766894pt;}
.fs1f{font-size:67.971103pt;}
.fs1b{font-size:68.037744pt;}
.fse{font-size:68.416088pt;}
.fs22{font-size:69.926639pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fs11{font-size:90.180434pt;}
.fs18{font-size:92.548778pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:4.000000pt;}
.y120{bottom:5.573333pt;}
.y7f{bottom:6.880000pt;}
.ya4{bottom:7.680000pt;}
.yea{bottom:8.026667pt;}
.yc8{bottom:8.066667pt;}
.y11e{bottom:8.226667pt;}
.yc9{bottom:8.546667pt;}
.yfd{bottom:9.506667pt;}
.y12d{bottom:9.600000pt;}
.y12f{bottom:9.626667pt;}
.yfe{bottom:11.133333pt;}
.ya3{bottom:13.146667pt;}
.y1de{bottom:14.355294pt;}
.y19e{bottom:14.955027pt;}
.y130{bottom:15.066667pt;}
.y1c7{bottom:18.433635pt;}
.y1b3{bottom:18.440601pt;}
.yeb{bottom:20.253333pt;}
.y79{bottom:22.400000pt;}
.y7c{bottom:22.560000pt;}
.y153{bottom:24.049316pt;}
.ya1{bottom:25.626667pt;}
.yc6{bottom:30.560000pt;}
.yfb{bottom:33.986667pt;}
.y12c{bottom:35.360000pt;}
.y1d3{bottom:36.203029pt;}
.y11c{bottom:36.573333pt;}
.y192{bottom:40.479061pt;}
.ye8{bottom:40.546667pt;}
.y78{bottom:40.800000pt;}
.y154{bottom:41.096037pt;}
.y97{bottom:42.973333pt;}
.y1be{bottom:46.488315pt;}
.y1a8{bottom:46.499218pt;}
.y1d4{bottom:47.666347pt;}
.yae{bottom:47.906667pt;}
.y193{bottom:50.636234pt;}
.yf4{bottom:51.333333pt;}
.y173{bottom:52.699788pt;}
.y122{bottom:52.706667pt;}
.y115{bottom:53.920000pt;}
.ye0{bottom:57.893333pt;}
.y77{bottom:59.200000pt;}
.yaf{bottom:60.826667pt;}
.y1bf{bottom:61.208363pt;}
.y1a9{bottom:61.221618pt;}
.y172{bottom:66.651710pt;}
.yb0{bottom:73.786667pt;}
.y102{bottom:74.106667pt;}
.y104{bottom:74.173333pt;}
.y106{bottom:74.213333pt;}
.y100{bottom:74.240000pt;}
.y98{bottom:75.813333pt;}
.y123{bottom:76.773333pt;}
.y1e3{bottom:77.595859pt;}
.y171{bottom:80.604505pt;}
.y1e4{bottom:81.576369pt;}
.y1d5{bottom:83.024765pt;}
.y138{bottom:83.680000pt;}
.y132{bottom:83.706667pt;}
.y134{bottom:83.746667pt;}
.y136{bottom:83.813333pt;}
.y194{bottom:85.079197pt;}
.yb1{bottom:86.746667pt;}
.yf5{bottom:86.973333pt;}
.ye1{bottom:88.253333pt;}
.y116{bottom:90.906667pt;}
.y170{bottom:94.529355pt;}
.y1a0{bottom:95.094974pt;}
.yb2{bottom:99.680000pt;}
.y1e2{bottom:100.283389pt;}
.y124{bottom:100.826667pt;}
.y1ec{bottom:104.352000pt;}
.y181{bottom:105.152000pt;}
.y211{bottom:105.312000pt;}
.y1dd{bottom:105.474909pt;}
.y1a4{bottom:105.801258pt;}
.y1b5{bottom:106.015240pt;}
.y1aa{bottom:106.635457pt;}
.y70{bottom:107.232000pt;}
.y2a{bottom:107.552000pt;}
.y1cc{bottom:108.005922pt;}
.yed{bottom:108.226667pt;}
.yf1{bottom:108.320000pt;}
.yef{bottom:108.346667pt;}
.y99{bottom:108.640000pt;}
.y16f{bottom:109.252357pt;}
.y8d{bottom:111.232000pt;}
.y1ce{bottom:112.503224pt;}
.yb3{bottom:112.640000pt;}
.yde{bottom:115.872000pt;}
.y1e5{bottom:116.215749pt;}
.y1a3{bottom:117.052534pt;}
.y58{bottom:117.472000pt;}
.y1d6{bottom:118.386624pt;}
.y190{bottom:118.592000pt;}
.ye2{bottom:118.653333pt;}
.y1b7{bottom:118.723486pt;}
.y195{bottom:119.658064pt;}
.y19d{bottom:119.932619pt;}
.yf6{bottom:122.626667pt;}
.y1eb{bottom:122.752000pt;}
.y16e{bottom:123.206898pt;}
.y210{bottom:123.232000pt;}
.y1ba{bottom:124.769051pt;}
.y125{bottom:124.893333pt;}
.yb4{bottom:125.573333pt;}
.y6f{bottom:125.632000pt;}
.y29{bottom:125.952000pt;}
.y117{bottom:127.933333pt;}
.y113{bottom:128.032000pt;}
.y1c0{bottom:129.394611pt;}
.y95{bottom:130.592000pt;}
.y1e0{bottom:133.228386pt;}
.y1c6{bottom:135.440345pt;}
.y1b2{bottom:135.463142pt;}
.y57{bottom:135.866667pt;}
.y180{bottom:136.826667pt;}
.y16d{bottom:137.135242pt;}
.y18f{bottom:137.146667pt;}
.yb5{bottom:138.533333pt;}
.y8c{bottom:140.506667pt;}
.y1ea{bottom:141.146667pt;}
.y9a{bottom:141.466667pt;}
.y20f{bottom:141.626667pt;}
.y1b8{bottom:143.524412pt;}
.y6e{bottom:143.706667pt;}
.y28{bottom:144.346667pt;}
.y1db{bottom:147.230698pt;}
.ydd{bottom:148.026667pt;}
.y126{bottom:148.960000pt;}
.y94{bottom:148.986667pt;}
.ye3{bottom:149.026667pt;}
.y16c{bottom:151.081051pt;}
.yb6{bottom:151.453333pt;}
.y1ab{bottom:152.049295pt;}
.y1d7{bottom:153.748482pt;}
.yaa{bottom:153.826667pt;}
.yac{bottom:153.893333pt;}
.ya6{bottom:153.920000pt;}
.ya8{bottom:153.946667pt;}
.y196{bottom:154.101027pt;}
.y56{bottom:154.266667pt;}
.y17f{bottom:155.386667pt;}
.y18e{bottom:155.546667pt;}
.yf7{bottom:158.306667pt;}
.y1cd{bottom:159.146161pt;}
.y1e9{bottom:159.546667pt;}
.y112{bottom:160.026667pt;}
.y6d{bottom:162.426667pt;}
.y27{bottom:162.746667pt;}
.yb7{bottom:164.413333pt;}
.y118{bottom:164.960000pt;}
.y16b{bottom:165.035592pt;}
.ydc{bottom:166.586667pt;}
.yd0{bottom:167.293333pt;}
.y93{bottom:167.386667pt;}
.y19b{bottom:167.414213pt;}
.y1bc{bottom:169.146667pt;}
.y186{bottom:171.226667pt;}
.y8b{bottom:172.026667pt;}
.y55{bottom:172.666667pt;}
.y127{bottom:173.026667pt;}
.y17e{bottom:173.786667pt;}
.y18d{bottom:173.946667pt;}
.y9b{bottom:174.306667pt;}
.yb8{bottom:177.373333pt;}
.ycf{bottom:177.440000pt;}
.ycd{bottom:177.506667pt;}
.ycb{bottom:177.573333pt;}
.y1e8{bottom:177.946667pt;}
.y111{bottom:178.426667pt;}
.y16a{bottom:178.990134pt;}
.ye4{bottom:179.386667pt;}
.y6c{bottom:180.826667pt;}
.y26{bottom:181.146667pt;}
.y1c9{bottom:181.617206pt;}
.ydb{bottom:184.986667pt;}
.y92{bottom:185.786667pt;}
.y1cb{bottom:187.044451pt;}
.y197{bottom:188.548107pt;}
.y1c4{bottom:189.058959pt;}
.y1b1{bottom:189.093304pt;}
.y1d8{bottom:189.227313pt;}
.yb9{bottom:190.306667pt;}
.y54{bottom:191.066667pt;}
.y17d{bottom:192.186667pt;}
.y18c{bottom:192.346667pt;}
.y169{bottom:192.909745pt;}
.yf8{bottom:193.946667pt;}
.y1b9{bottom:195.604032pt;}
.y20e{bottom:196.826667pt;}
.y128{bottom:197.093333pt;}
.y1c1{bottom:197.428446pt;}
.y1ac{bottom:197.463133pt;}
.y110{bottom:198.106667pt;}
.y6b{bottom:199.226667pt;}
.y25{bottom:199.546667pt;}
.y1bb{bottom:200.506667pt;}
.y119{bottom:201.986667pt;}
.yda{bottom:203.226667pt;}
.yba{bottom:203.266667pt;}
.y8a{bottom:203.866667pt;}
.y1a2{bottom:204.329546pt;}
.y1e1{bottom:206.365524pt;}
.y168{bottom:206.864286pt;}
.y9c{bottom:207.133333pt;}
.y53{bottom:209.466667pt;}
.y1e7{bottom:209.626667pt;}
.ye5{bottom:209.760000pt;}
.y17c{bottom:210.586667pt;}
.y18b{bottom:210.746667pt;}
.y20d{bottom:215.226667pt;}
.y1a7{bottom:215.413333pt;}
.ybb{bottom:216.186667pt;}
.y6a{bottom:217.626667pt;}
.y24{bottom:217.946667pt;}
.y129{bottom:221.146667pt;}
.y167{bottom:221.587288pt;}
.yd9{bottom:221.626667pt;}
.y198{bottom:222.991070pt;}
.y1d9{bottom:224.589171pt;}
.y52{bottom:227.866667pt;}
.y18a{bottom:228.826667pt;}
.y17b{bottom:228.986667pt;}
.ybc{bottom:229.146667pt;}
.yf9{bottom:229.626667pt;}
.y10f{bottom:229.786667pt;}
.y20c{bottom:233.626667pt;}
.y166{bottom:235.515632pt;}
.y89{bottom:235.546667pt;}
.y69{bottom:236.026667pt;}
.y23{bottom:236.346667pt;}
.y155{bottom:238.641868pt;}
.y11a{bottom:239.013333pt;}
.y1ca{bottom:239.578499pt;}
.y9d{bottom:239.973333pt;}
.yd8{bottom:240.026667pt;}
.ye6{bottom:240.160000pt;}
.y1e6{bottom:240.986667pt;}
.ybd{bottom:242.106667pt;}
.y1ad{bottom:243.032025pt;}
.y12a{bottom:245.213333pt;}
.y1df{bottom:245.346653pt;}
.y51{bottom:246.266667pt;}
.y17a{bottom:247.386667pt;}
.y10e{bottom:248.186667pt;}
.y91{bottom:248.346667pt;}
.yad{bottom:248.800000pt;}
.y165{bottom:249.470173pt;}
.y20b{bottom:252.026667pt;}
.y68{bottom:254.426667pt;}
.y22{bottom:254.746667pt;}
.ybe{bottom:255.040000pt;}
.y1d2{bottom:255.946667pt;}
.y189{bottom:256.826667pt;}
.y1a1{bottom:257.022200pt;}
.y199{bottom:257.571310pt;}
.y1da{bottom:259.947589pt;}
.y1b6{bottom:261.785836pt;}
.y164{bottom:263.415982pt;}
.y50{bottom:264.666667pt;}
.yfa{bottom:265.280000pt;}
.y143{bottom:265.306667pt;}
.y1c2{bottom:265.614695pt;}
.y179{bottom:265.786667pt;}
.ybf{bottom:268.000000pt;}
.y12b{bottom:269.280000pt;}
.y20a{bottom:270.426667pt;}
.ye7{bottom:270.533333pt;}
.y19f{bottom:271.569512pt;}
.yd7{bottom:271.706667pt;}
.y1dc{bottom:272.381092pt;}
.y67{bottom:272.506667pt;}
.y9e{bottom:272.800000pt;}
.y21{bottom:273.146667pt;}
.y11b{bottom:276.026667pt;}
.y10d{bottom:277.306667pt;}
.y163{bottom:277.370523pt;}
.y121{bottom:277.440000pt;}
.yc0{bottom:280.933333pt;}
.y4f{bottom:283.066667pt;}
.y88{bottom:283.226667pt;}
.yce{bottom:286.240000pt;}
.y66{bottom:287.226667pt;}
.y1ae{bottom:288.445863pt;}
.y209{bottom:288.826667pt;}
.y162{bottom:291.298867pt;}
.y20{bottom:291.546667pt;}
.y19a{bottom:292.017018pt;}
.yc1{bottom:293.893333pt;}
.y142{bottom:297.306667pt;}
.y87{bottom:298.586667pt;}
.yd6{bottom:299.546667pt;}
.yf3{bottom:299.680000pt;}
.y4e{bottom:301.146667pt;}
.y161{bottom:305.244676pt;}
.y9f{bottom:305.626667pt;}
.yc2{bottom:306.853333pt;}
.y208{bottom:307.266667pt;}
.y19c{bottom:309.718971pt;}
.y1b4{bottom:310.609317pt;}
.y1c8{bottom:314.895047pt;}
.y141{bottom:315.906667pt;}
.y152{bottom:316.885104pt;}
.y86{bottom:317.666667pt;}
.yc3{bottom:319.773333pt;}
.y160{bottom:319.976410pt;}
.y1f{bottom:320.226667pt;}
.y207{bottom:325.666667pt;}
.y151{bottom:327.713409pt;}
.yc4{bottom:332.733333pt;}
.y4d{bottom:333.026667pt;}
.ycc{bottom:333.760000pt;}
.y1c3{bottom:333.798734pt;}
.y1af{bottom:333.859701pt;}
.y15f{bottom:333.930951pt;}
.y140{bottom:334.306667pt;}
.y85{bottom:336.706667pt;}
.ya0{bottom:338.466667pt;}
.y150{bottom:338.567911pt;}
.y206{bottom:344.066667pt;}
.yc5{bottom:345.666667pt;}
.y15e{bottom:347.850563pt;}
.y14f{bottom:349.396216pt;}
.y1c5{bottom:349.764597pt;}
.y1b0{bottom:349.825637pt;}
.y4c{bottom:351.586667pt;}
.y1e{bottom:351.906667pt;}
.y84{bottom:355.746667pt;}
.y137{bottom:356.320000pt;}
.y14e{bottom:360.259451pt;}
.y15d{bottom:361.805104pt;}
.y205{bottom:362.466667pt;}
.y13f{bottom:365.986667pt;}
.y4b{bottom:369.986667pt;}
.y1d{bottom:370.466667pt;}
.y14d{bottom:371.087756pt;}
.y83{bottom:374.786667pt;}
.y15c{bottom:375.759645pt;}
.y135{bottom:380.320000pt;}
.y204{bottom:380.866667pt;}
.yca{bottom:381.280000pt;}
.y14c{bottom:381.942258pt;}
.y4a{bottom:388.386667pt;}
.y15b{bottom:389.679257pt;}
.y14b{bottom:392.805493pt;}
.yfc{bottom:397.280000pt;}
.y13e{bottom:397.666667pt;}
.y203{bottom:399.266667pt;}
.y105{bottom:402.400000pt;}
.y1c{bottom:402.786667pt;}
.yc7{bottom:403.040000pt;}
.y14a{bottom:403.633798pt;}
.y133{bottom:404.480000pt;}
.y49{bottom:406.786667pt;}
.y149{bottom:414.488300pt;}
.y178{bottom:416.226667pt;}
.y15a{bottom:417.588339pt;}
.y202{bottom:417.666667pt;}
.y148{bottom:425.316605pt;}
.y103{bottom:425.440000pt;}
.y131{bottom:428.640000pt;}
.y13d{bottom:429.346667pt;}
.y159{bottom:432.311341pt;}
.y1b{bottom:435.106667pt;}
.y201{bottom:436.066667pt;}
.y147{bottom:436.179840pt;}
.y48{bottom:438.306667pt;}
.y158{bottom:446.230952pt;}
.y146{bottom:447.008145pt;}
.y177{bottom:447.746667pt;}
.y101{bottom:448.480000pt;}
.y82{bottom:452.706667pt;}
.y1a{bottom:453.666667pt;}
.y200{bottom:454.466667pt;}
.y47{bottom:456.866667pt;}
.y145{bottom:457.871380pt;}
.y157{bottom:460.185494pt;}
.y13c{bottom:460.866667pt;}
.y81{bottom:471.106667pt;}
.yff{bottom:471.360000pt;}
.y19{bottom:472.066667pt;}
.y1ff{bottom:472.866667pt;}
.y156{bottom:474.140035pt;}
.y46{bottom:475.266667pt;}
.y176{bottom:479.106667pt;}
.y13b{bottom:479.266667pt;}
.y174{bottom:483.422687pt;}
.y80{bottom:486.626667pt;}
.y18{bottom:490.466667pt;}
.y1fe{bottom:491.266667pt;}
.y45{bottom:493.666667pt;}
.y175{bottom:502.014188pt;}
.y13a{bottom:507.426667pt;}
.y144{bottom:507.493333pt;}
.y17{bottom:508.866667pt;}
.y1fd{bottom:509.666667pt;}
.y44{bottom:512.066667pt;}
.y12e{bottom:514.400000pt;}
.y7e{bottom:524.066667pt;}
.y16{bottom:527.266667pt;}
.y1fc{bottom:528.066667pt;}
.y43{bottom:530.466667pt;}
.y15{bottom:545.693333pt;}
.y7d{bottom:546.013333pt;}
.y42{bottom:548.893333pt;}
.y14{bottom:564.093333pt;}
.y139{bottom:564.733333pt;}
.y41{bottom:567.293333pt;}
.y1d1{bottom:568.413333pt;}
.y1fb{bottom:575.613333pt;}
.y185{bottom:576.893333pt;}
.y13{bottom:582.493333pt;}
.y7b{bottom:583.453333pt;}
.y40{bottom:585.693333pt;}
.y1fa{bottom:594.013333pt;}
.yd5{bottom:595.933333pt;}
.y1d0{bottom:600.573333pt;}
.y12{bottom:600.893333pt;}
.y10c{bottom:601.053333pt;}
.y3f{bottom:604.093333pt;}
.y184{bottom:605.213333pt;}
.y1a6{bottom:612.413333pt;}
.y188{bottom:617.533333pt;}
.y11{bottom:619.293333pt;}
.y10b{bottom:619.453333pt;}
.y76{bottom:621.053333pt;}
.y3e{bottom:622.493333pt;}
.yd4{bottom:623.773333pt;}
.ydf{bottom:623.840000pt;}
.y90{bottom:624.253333pt;}
.y1f9{bottom:630.813333pt;}
.y1cf{bottom:632.253333pt;}
.y10{bottom:637.693333pt;}
.y10a{bottom:637.853333pt;}
.y1a5{bottom:644.093333pt;}
.y8f{bottom:645.693333pt;}
.y187{bottom:645.853333pt;}
.y1bd{bottom:646.813333pt;}
.y1f8{bottom:649.213333pt;}
.y3d{bottom:654.173333pt;}
.yf{bottom:656.093333pt;}
.y191{bottom:658.613333pt;}
.y1f7{bottom:667.613333pt;}
.y3c{bottom:672.573333pt;}
.ye{bottom:674.493333pt;}
.y8e{bottom:675.933333pt;}
.y96{bottom:676.000000pt;}
.yf2{bottom:676.480000pt;}
.y1f6{bottom:686.013333pt;}
.y109{bottom:689.053333pt;}
.y3b{bottom:690.973333pt;}
.yd{bottom:692.893333pt;}
.y75{bottom:698.973333pt;}
.y1f5{bottom:704.413333pt;}
.yf0{bottom:706.720000pt;}
.y108{bottom:707.453333pt;}
.yab{bottom:707.840000pt;}
.y3a{bottom:709.373333pt;}
.yc{bottom:711.293333pt;}
.y74{bottom:717.373333pt;}
.y1f4{bottom:722.813333pt;}
.y39{bottom:727.773333pt;}
.yb{bottom:729.693333pt;}
.y73{bottom:735.773333pt;}
.y107{bottom:736.573333pt;}
.yee{bottom:736.960000pt;}
.ye9{bottom:737.440000pt;}
.y114{bottom:738.560000pt;}
.y1f3{bottom:741.213333pt;}
.y38{bottom:746.173333pt;}
.ya9{bottom:750.080000pt;}
.y72{bottom:754.173333pt;}
.y65{bottom:754.493333pt;}
.y1f2{bottom:759.613333pt;}
.y37{bottom:764.573333pt;}
.ya{bottom:766.173333pt;}
.yec{bottom:767.360000pt;}
.y64{bottom:772.933333pt;}
.y1f1{bottom:778.053333pt;}
.y36{bottom:783.013333pt;}
.y63{bottom:791.333333pt;}
.y11d{bottom:791.840000pt;}
.ya7{bottom:792.160000pt;}
.ya2{bottom:796.160000pt;}
.y1f0{bottom:796.453333pt;}
.y9{bottom:798.053333pt;}
.y62{bottom:809.733333pt;}
.y35{bottom:814.693333pt;}
.y1ef{bottom:814.853333pt;}
.y61{bottom:828.133333pt;}
.y8{bottom:829.573333pt;}
.y1ee{bottom:832.933333pt;}
.y34{bottom:833.253333pt;}
.ya5{bottom:834.400000pt;}
.y60{bottom:846.533333pt;}
.y33{bottom:851.653333pt;}
.y7{bottom:861.253333pt;}
.y1ed{bottom:864.773333pt;}
.y5f{bottom:864.933333pt;}
.y32{bottom:870.053333pt;}
.y5e{bottom:883.333333pt;}
.y6{bottom:887.173333pt;}
.y31{bottom:888.453333pt;}
.y5d{bottom:901.733333pt;}
.y30{bottom:906.853333pt;}
.y5{bottom:911.333333pt;}
.y5c{bottom:920.133333pt;}
.y2f{bottom:925.253333pt;}
.yd3{bottom:929.733333pt;}
.y4{bottom:937.253333pt;}
.y5b{bottom:938.213333pt;}
.y71{bottom:938.533333pt;}
.y2e{bottom:943.653333pt;}
.y5a{bottom:956.933333pt;}
.yd2{bottom:961.573333pt;}
.y11f{bottom:967.040000pt;}
.y3{bottom:968.933333pt;}
.y2d{bottom:975.173333pt;}
.y59{bottom:975.333333pt;}
.y183{bottom:980.133333pt;}
.y2{bottom:993.253333pt;}
.yd1{bottom:993.573333pt;}
.y2c{bottom:993.733333pt;}
.y182{bottom:1011.680000pt;}
.y1{bottom:1011.840000pt;}
.y2b{bottom:1012.160000pt;}
.hf{height:18.400000pt;}
.h10{height:18.432000pt;}
.h2e{height:20.320000pt;}
.he{height:21.312000pt;}
.h1c{height:23.360000pt;}
.h37{height:26.728269pt;}
.h54{height:26.747647pt;}
.h42{height:27.791767pt;}
.h26{height:28.480000pt;}
.h58{height:28.945430pt;}
.h56{height:29.700549pt;}
.h32{height:29.760000pt;}
.h16{height:30.080000pt;}
.h3d{height:30.279728pt;}
.h4a{height:31.390626pt;}
.h52{height:31.525151pt;}
.h3a{height:31.678138pt;}
.h3c{height:32.767690pt;}
.h3f{height:33.623248pt;}
.h44{height:34.200763pt;}
.h4c{height:34.346657pt;}
.h21{height:34.880000pt;}
.hd{height:36.800000pt;}
.hc{height:36.960000pt;}
.h48{height:37.010900pt;}
.h50{height:37.168830pt;}
.h45{height:37.977248pt;}
.h4e{height:38.138479pt;}
.h59{height:39.932266pt;}
.h13{height:40.280938pt;}
.h1b{height:42.693125pt;}
.h4{height:43.215000pt;}
.h5b{height:44.648750pt;}
.h2d{height:44.805000pt;}
.h47{height:46.008195pt;}
.h2c{height:46.240000pt;}
.h46{height:47.209460pt;}
.h35{height:47.322500pt;}
.h4f{height:48.273981pt;}
.h7{height:48.531250pt;}
.h40{height:48.541377pt;}
.h4d{height:49.533338pt;}
.h57{height:49.614185pt;}
.h3e{height:49.808783pt;}
.h55{height:50.908505pt;}
.h31{height:51.040000pt;}
.h38{height:51.116217pt;}
.h51{height:51.277028pt;}
.h25{height:51.437500pt;}
.h2b{height:53.535000pt;}
.h30{height:53.663125pt;}
.h34{height:53.920000pt;}
.h28{height:56.781562pt;}
.h5a{height:62.781250pt;}
.h5{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:65.781915pt;}
.h8{height:66.625000pt;}
.h39{height:67.857564pt;}
.h41{height:68.031626pt;}
.h15{height:68.411875pt;}
.h17{height:68.514750pt;}
.h49{height:69.818292pt;}
.h9{height:71.524375pt;}
.h2{height:72.655000pt;}
.h6{height:73.454062pt;}
.h11{height:73.490625pt;}
.hb{height:73.600000pt;}
.h27{height:92.000000pt;}
.h1a{height:92.800000pt;}
.h33{height:96.480000pt;}
.h20{height:108.960000pt;}
.h22{height:120.960000pt;}
.h24{height:129.120000pt;}
.h14{height:148.640000pt;}
.h18{height:168.800000pt;}
.h2a{height:173.280000pt;}
.h1e{height:180.000000pt;}
.h1d{height:190.240000pt;}
.h2f{height:234.560000pt;}
.h23{height:279.040000pt;}
.h29{height:288.000000pt;}
.h1f{height:289.120000pt;}
.h53{height:295.672407pt;}
.h3b{height:336.202576pt;}
.h12{height:350.560000pt;}
.h19{height:357.600000pt;}
.h4b{height:379.672977pt;}
.h43{height:379.738702pt;}
.h36{height:519.060035pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:18.752000pt;}
.w13{width:44.480000pt;}
.w7{width:47.040000pt;}
.w22{width:47.680000pt;}
.w2{width:50.400000pt;}
.wf{width:52.640000pt;}
.w1a{width:62.400000pt;}
.w8{width:89.632000pt;}
.w3{width:93.152000pt;}
.w5{width:108.032000pt;}
.w9{width:113.280000pt;}
.w4{width:114.080000pt;}
.w15{width:117.120000pt;}
.wa{width:119.232000pt;}
.w12{width:121.920000pt;}
.w16{width:122.080000pt;}
.w11{width:122.880000pt;}
.w21{width:123.040000pt;}
.w1d{width:123.360000pt;}
.w18{width:123.520000pt;}
.wd{width:124.960000pt;}
.w1f{width:128.640000pt;}
.wb{width:131.712000pt;}
.w6{width:132.192000pt;}
.w19{width:145.280000pt;}
.we{width:193.760000pt;}
.w1c{width:512.640000pt;}
.w20{width:555.840000pt;}
.w1b{width:566.080000pt;}
.w14{width:586.080000pt;}
.w26{width:613.733743pt;}
.w10{width:614.240000pt;}
.w17{width:617.280000pt;}
.w24{width:623.979699pt;}
.wc{width:624.320000pt;}
.w1e{width:643.360000pt;}
.w27{width:643.871274pt;}
.w25{width:647.525531pt;}
.w28{width:661.746720pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x41{left:-21.678037pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x20{left:8.133333pt;}
.x1a{left:9.346667pt;}
.x2f{left:11.586667pt;}
.x18{left:13.373333pt;}
.x1f{left:14.752000pt;}
.x2c{left:17.280000pt;}
.x1d{left:20.320000pt;}
.x16{left:22.432000pt;}
.x14{left:24.480000pt;}
.x1c{left:27.072000pt;}
.x29{left:28.512000pt;}
.x13{left:31.232000pt;}
.x1b{left:33.792000pt;}
.x28{left:35.232000pt;}
.x23{left:36.960000pt;}
.x12{left:37.986667pt;}
.x42{left:39.489965pt;}
.x1e{left:42.853333pt;}
.x2a{left:44.253333pt;}
.x15{left:47.013333pt;}
.x43{left:48.768628pt;}
.x24{left:52.733333pt;}
.x4d{left:53.957580pt;}
.x33{left:55.586667pt;}
.x44{left:57.274070pt;}
.x58{left:60.987301pt;}
.x3b{left:63.200000pt;}
.x46{left:65.034112pt;}
.x32{left:69.053333pt;}
.x57{left:70.445430pt;}
.x6d{left:75.953374pt;}
.x4c{left:83.892211pt;}
.x34{left:84.800000pt;}
.x38{left:89.506667pt;}
.x63{left:93.745546pt;}
.x1{left:96.032000pt;}
.x11{left:97.920000pt;}
.x2b{left:98.880000pt;}
.x5{left:102.432000pt;}
.x25{left:110.720000pt;}
.x56{left:111.942083pt;}
.x36{left:115.360000pt;}
.x4b{left:117.290068pt;}
.x35{left:118.400000pt;}
.x2{left:120.032000pt;}
.x47{left:124.032000pt;}
.x3{left:144.026667pt;}
.x5d{left:145.329841pt;}
.xb{left:150.106667pt;}
.x72{left:151.081168pt;}
.x7{left:153.466667pt;}
.x68{left:154.691483pt;}
.x5e{left:201.492666pt;}
.x69{left:208.350530pt;}
.x52{left:214.825720pt;}
.x73{left:217.673053pt;}
.xc{left:240.386667pt;}
.x5b{left:244.338553pt;}
.x8{left:247.266667pt;}
.x45{left:248.509137pt;}
.x3f{left:250.827644pt;}
.x66{left:256.337853pt;}
.x50{left:257.791678pt;}
.x70{left:263.454421pt;}
.x17{left:284.960000pt;}
.x61{left:297.024210pt;}
.x26{left:307.200000pt;}
.x6a{left:309.382966pt;}
.x53{left:311.751291pt;}
.x2d{left:312.960000pt;}
.x59{left:316.906136pt;}
.x62{left:317.871802pt;}
.x54{left:331.501641pt;}
.x65{left:332.465766pt;}
.x4f{left:334.354785pt;}
.x6f{left:341.695832pt;}
.x60{left:343.150663pt;}
.x37{left:347.840000pt;}
.xd{left:354.466667pt;}
.x6b{left:358.185043pt;}
.x9{left:362.146667pt;}
.x55{left:365.102858pt;}
.x74{left:370.207832pt;}
.x3d{left:396.893333pt;}
.x5f{left:400.279155pt;}
.x3a{left:403.680000pt;}
.x39{left:410.880000pt;}
.x6c{left:415.077289pt;}
.x75{left:426.600853pt;}
.xa{left:470.813333pt;}
.xe{left:474.493333pt;}
.x5c{left:486.358351pt;}
.x40{left:495.441690pt;}
.x51{left:505.807827pt;}
.x67{left:518.746202pt;}
.x71{left:533.979346pt;}
.x5a{left:553.908711pt;}
.x3e{left:555.838788pt;}
.x64{left:581.109353pt;}
.x4e{left:584.406571pt;}
.x6e{left:597.242374pt;}
.x27{left:614.720000pt;}
.x21{left:616.960000pt;}
.x2e{left:646.720000pt;}
.x19{left:656.960000pt;}
.x30{left:666.080000pt;}
.x22{left:682.080000pt;}
.x4{left:694.080000pt;}
.x48{left:708.640000pt;}
.x10{left:714.080000pt;}
.x3c{left:722.080000pt;}
.xf{left:724.160000pt;}
.x4a{left:726.080000pt;}
.x49{left:738.880000pt;}
.x31{left:744.160000pt;}
}




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