
    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_28af2ae77e2257a7b0af2f97.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.099609;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_43411039ded8f6858d4eaedc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_1429d98187f7a784fe2b14bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.099609;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_1d15cf6a9d9c18c6c36e7052.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_6698ccd13a78af38fe608749.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_115a499cebaca0d1232ef7f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722656;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_4794031cf4b550e3c18da25f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_8a2bc0da1df29b0be5372e15.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_5420ecbac15c998d64e64876.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.840332;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_92798fabf89a0b8930feef80.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172363;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_e9938ee9728087d430b13141.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;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_fa193cd1dd06eefec0d3f831.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966797;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_61fcbe2406be95ad73647a58.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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;}
.mc{transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249997,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249997,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);}
.ma{transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250011,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249956,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.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);}
.m2{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.272799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272799,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272805,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272806,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.272809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272809,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-30.980645px;}
.v5{vertical-align:-23.062500px;}
.v6{vertical-align:-9.359941px;}
.v7{vertical-align:-7.935414px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:18.021494px;}
.v8{vertical-align:23.076091px;}
.v9{vertical-align:28.080586px;}
.v4{vertical-align:44.657858px;}
.v2{vertical-align:48.230987px;}
.v1{vertical-align:88.545072px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.064863px;}
.ls16{letter-spacing:0.064864px;}
.ls1a{letter-spacing:0.078610px;}
.ls19{letter-spacing:0.099750px;}
.lsb{letter-spacing:0.121018px;}
.ls10{letter-spacing:0.147601px;}
.ls12{letter-spacing:0.265701px;}
.ls13{letter-spacing:0.284520px;}
.ls11{letter-spacing:0.297972px;}
.lsd{letter-spacing:0.516916px;}
.ls1b{letter-spacing:10.352691px;}
.ls15{letter-spacing:22.844021px;}
.lsa{letter-spacing:25.927133px;}
.lsc{letter-spacing:35.182458px;}
.ls2{letter-spacing:36.131134px;}
.ls6{letter-spacing:39.799593px;}
.ls9{letter-spacing:39.799676px;}
.ls4{letter-spacing:39.871734px;}
.ls7{letter-spacing:39.871789px;}
.lsf{letter-spacing:40.346779px;}
.ls5{letter-spacing:43.328797px;}
.ls3{letter-spacing:43.400910px;}
.ls1{letter-spacing:50.953469px;}
.ls8{letter-spacing:50.953563px;}
.lse{letter-spacing:66.764809px;}
.ls18{letter-spacing:83.824619px;}
.ls14{letter-spacing:459.785552px;}
.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;}
}
.ws6{word-spacing:-69.983399px;}
.ws9{word-spacing:-69.885111px;}
.ws16{word-spacing:-63.524335px;}
.ws3a{word-spacing:-57.605708px;}
.ws2{word-spacing:-40.294938px;}
.wsc{word-spacing:-34.397911px;}
.wse{word-spacing:-29.205745px;}
.ws30{word-spacing:-27.331379px;}
.ws33{word-spacing:-27.230564px;}
.ws2e{word-spacing:-26.732059px;}
.ws23{word-spacing:-26.135949px;}
.ws22{word-spacing:-26.040909px;}
.ws3{word-spacing:-25.945869px;}
.ws1b{word-spacing:-23.166038px;}
.ws4{word-spacing:-22.997557px;}
.ws3d{word-spacing:-22.626804px;}
.ws27{word-spacing:-21.860868px;}
.ws25{word-spacing:-21.703028px;}
.ws3b{word-spacing:-21.539213px;}
.ws3c{word-spacing:-21.460603px;}
.ws39{word-spacing:-20.742847px;}
.ws36{word-spacing:-20.740835px;}
.ws18{word-spacing:-20.453698px;}
.ws15{word-spacing:-20.343007px;}
.ws3f{word-spacing:-18.731347px;}
.ws1f{word-spacing:-17.550822px;}
.ws29{word-spacing:-17.297380px;}
.ws1e{word-spacing:-15.331705px;}
.ws14{word-spacing:-13.366029px;}
.wsb{word-spacing:-3.611513px;}
.ws2d{word-spacing:-2.851217px;}
.wsd{word-spacing:-2.612057px;}
.ws2a{word-spacing:-2.375995px;}
.ws20{word-spacing:-2.113648px;}
.ws19{word-spacing:-2.106003px;}
.ws24{word-spacing:-2.021763px;}
.ws13{word-spacing:-1.615677px;}
.ws12{word-spacing:-1.520637px;}
.ws5{word-spacing:-1.425597px;}
.ws1d{word-spacing:-1.347842px;}
.ws2b{word-spacing:-0.384023px;}
.ws1a{word-spacing:-0.354150px;}
.ws1c{word-spacing:-0.353899px;}
.ws28{word-spacing:-0.244125px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:0.503999px;}
.ws21{word-spacing:0.615784px;}
.ws8{word-spacing:0.758161px;}
.ws2f{word-spacing:1.468794px;}
.ws11{word-spacing:1.637996px;}
.ws2c{word-spacing:17.796175px;}
.ws17{word-spacing:19.936818px;}
.ws1{word-spacing:37.047726px;}
.ws26{word-spacing:58.400874px;}
.ws3e{word-spacing:202.066479px;}
.ws31{word-spacing:202.292104px;}
.wsa{word-spacing:238.186895px;}
.ws37{word-spacing:301.463853px;}
.ws38{word-spacing:301.493108px;}
.ws35{word-spacing:304.960894px;}
.ws32{word-spacing:314.654090px;}
.ws7{word-spacing:381.979529px;}
.ws34{word-spacing:491.546585px;}
.wsf{word-spacing:644.852516px;}
._22{margin-left:-38.443726px;}
._15{margin-left:-21.097498px;}
._8{margin-left:-18.779092px;}
._23{margin-left:-17.107803px;}
._2b{margin-left:-15.202852px;}
._33{margin-left:-14.162438px;}
._36{margin-left:-12.983076px;}
._14{margin-left:-9.511956px;}
._9{margin-left:-8.323220px;}
._2{margin-left:-6.739211px;}
._e{margin-left:-5.222888px;}
._5{margin-left:-4.044969px;}
._3{margin-left:-2.234887px;}
._0{margin-left:-1.010882px;}
._1{width:1.179362px;}
._6{width:2.973611px;}
._b{width:3.986625px;}
._c{width:5.227190px;}
._d{width:6.562795px;}
._43{width:8.830072px;}
._34{width:15.203604px;}
._35{width:16.941703px;}
._16{width:21.077412px;}
._2d{width:22.532372px;}
._18{width:24.245240px;}
._17{width:26.287144px;}
._37{width:28.232539px;}
._38{width:29.371562px;}
._1e{width:31.839912px;}
._7{width:33.428068px;}
._31{width:35.657908px;}
._28{width:37.172788px;}
._1f{width:39.316390px;}
._3d{width:44.506058px;}
._11{width:50.525870px;}
._2c{width:60.710170px;}
._4{width:61.881292px;}
._32{width:65.212022px;}
._12{width:66.458730px;}
._44{width:70.987446px;}
._a{width:77.490264px;}
._21{width:95.442200px;}
._2f{width:102.587620px;}
._10{width:104.924622px;}
._f{width:117.053698px;}
._13{width:125.369676px;}
._20{width:135.115283px;}
._2e{width:170.862017px;}
._3a{width:175.758722px;}
._39{width:202.591353px;}
._30{width:211.462200px;}
._42{width:247.072256px;}
._1b{width:261.359488px;}
._41{width:270.443368px;}
._1a{width:273.482840px;}
._1c{width:290.916870px;}
._1d{width:301.716852px;}
._3e{width:344.056382px;}
._3f{width:357.676505px;}
._19{width:359.630655px;}
._3b{width:369.056429px;}
._27{width:384.759833px;}
._24{width:433.786778px;}
._2a{width:517.412286px;}
._25{width:545.242131px;}
._40{width:618.112110px;}
._26{width:805.096428px;}
._3c{width:1122.737177px;}
._29{width:1124.422080px;}
.fcd{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fce{color:rgb(0,102,255);}
.fc2{color:rgb(137,137,137);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,129,196);}
.fcc{color:rgb(208,32,17);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(40,128,194);}
.fc6{color:rgb(242,103,34);}
.fc7{color:transparent;}
.fc8{color:rgb(192,0,0);}
.fc9{color:rgb(0,112,192);}
.fca{color:rgb(192,79,21);}
.fcf{color:rgb(89,89,89);}
.fcb{color:rgb(39,134,201);}
.fs10{font-size:40.130150px;}
.fs5{font-size:48.959815px;}
.fs11{font-size:56.160091px;}
.fsf{font-size:60.195962px;}
.fs12{font-size:63.360367px;}
.fsd{font-size:69.839584px;}
.fs7{font-size:73.440459px;}
.fse{font-size:73.840065px;}
.fs18{font-size:75.973753px;}
.fs1a{font-size:75.981126px;}
.fs19{font-size:76.009143px;}
.fs1c{font-size:78.610266px;}
.fs1d{font-size:78.611741px;}
.fs14{font-size:78.919924px;}
.fs13{font-size:78.920100px;}
.fs1e{font-size:82.882067px;}
.fs0{font-size:84.240136px;}
.fs1f{font-size:91.707308px;}
.fs20{font-size:91.722054px;}
.fs4{font-size:95.039814px;}
.fs8{font-size:97.164655px;}
.fsc{font-size:97.919629px;}
.fs17{font-size:99.745135px;}
.fs16{font-size:99.745655px;}
.fs15{font-size:99.749558px;}
.fsb{font-size:105.119906px;}
.fs2{font-size:125.999675px;}
.fs9{font-size:129.228961px;}
.fsa{font-size:129.230436px;}
.fs3{font-size:147.600504px;}
.fs6{font-size:168.480273px;}
.fs1b{font-size:210.239811px;}
.fs1{font-size:231.840640px;}
.y0{bottom:0.000000px;}
.yeb{bottom:14.574936px;}
.y6f{bottom:98.466283px;}
.y1e{bottom:98.645535px;}
.y137{bottom:119.514789px;}
.yf2{bottom:127.432818px;}
.yef{bottom:128.512607px;}
.y5a{bottom:136.797354px;}
.y9c{bottom:138.776496px;}
.y136{bottom:144.721482px;}
.y6d{bottom:144.724158px;}
.y11a{bottom:146.885001px;}
.yaf{bottom:150.840011px;}
.yf1{bottom:152.813116px;}
.yee{bottom:153.719300px;}
.y8d{bottom:154.444162px;}
.y9b{bottom:163.983251px;}
.y135{bottom:169.915371px;}
.y59{bottom:174.603435px;}
.y119{bottom:175.320316px;}
.y8c{bottom:176.584013px;}
.y2{bottom:177.486442px;}
.yf0{bottom:178.019871px;}
.yed{bottom:179.099597px;}
.y155{bottom:180.002118px;}
.y102{bottom:183.964858px;}
.y138{bottom:186.666657px;}
.y64{bottom:187.379127px;}
.y6a{bottom:187.923231px;}
.yf{bottom:188.274084px;}
.y9a{bottom:189.177140px;}
.ye1{bottom:192.242660px;}
.y134{bottom:195.122127px;}
.y18{bottom:196.921020px;}
.y8b{bottom:198.537914px;}
.y7b{bottom:200.705376px;}
.y1{bottom:202.680331px;}
.ya6{bottom:203.040761px;}
.y101{bottom:209.158747px;}
.y154{bottom:210.240769px;}
.y58{bottom:212.394121px;}
.y27{bottom:214.201439px;}
.yba{bottom:215.279983px;}
.y31{bottom:215.642883px;}
.y42{bottom:217.805221px;}
.y45{bottom:218.164866px;}
.y39{bottom:218.886036px;}
.y7a{bottom:221.210327px;}
.y1c{bottom:221.407259px;}
.ye0{bottom:221.766782px;}
.ya5{bottom:221.932073px;}
.y62{bottom:224.813267px;}
.ydc{bottom:227.152806px;}
.yf3{bottom:229.493777px;}
.y99{bottom:232.557361px;}
.y100{bottom:234.359038px;}
.y132{bottom:238.678138px;}
.y17{bottom:238.864499px;}
.y126{bottom:240.297459px;}
.y153{bottom:240.486218px;}
.ya4{bottom:240.837877px;}
.y6b{bottom:241.925268px;}
.y142{bottom:245.338555px;}
.y80{bottom:245.516106px;}
.ydb{bottom:246.058610px;}
.y41{bottom:246.240536px;}
.yb8{bottom:246.420043px;}
.y44{bottom:246.600181px;}
.y90{bottom:250.206287px;}
.y57{bottom:250.384719px;}
.y6e{bottom:250.915991px;}
.ydf{bottom:251.278940px;}
.y8e{bottom:253.802071px;}
.y26{bottom:253.804231px;}
.ycd{bottom:253.804763px;}
.y123{bottom:255.597026px;}
.y8f{bottom:258.485102px;}
.ya3{bottom:259.738866px;}
.yff{bottom:259.739335px;}
.y30{bottom:262.981614px;}
.y85{bottom:263.522167px;}
.yda{bottom:264.954784px;}
.y131{bottom:264.959081px;}
.y125{bottom:266.584435px;}
.y5c{bottom:266.932590px;}
.y38{bottom:271.803836px;}
.yfb{bottom:273.779983px;}
.y79{bottom:274.146162px;}
.ye{bottom:275.389384px;}
.yb0{bottom:275.399986px;}
.y1d{bottom:279.177325px;}
.yde{bottom:280.623737px;}
.y140{bottom:282.230655px;}
.y63{bottom:283.496361px;}
.yd9{bottom:284.034641px;}
.y56{bottom:288.175405px;}
.yd1{bottom:289.618711px;}
.yd2{bottom:292.136226px;}
.yce{bottom:292.855515px;}
.y25{bottom:293.569176px;}
.y152{bottom:294.479759px;}
.y10c{bottom:295.568882px;}
.yf9{bottom:297.360008px;}
.y122{bottom:297.539846px;}
.ya2{bottom:297.714896px;}
.y7f{bottom:298.433906px;}
.y2f{bottom:299.880233px;}
.ye8{bottom:300.960510px;}
.y16{bottom:304.555969px;}
.y72{bottom:307.437545px;}
.y37{bottom:311.586816px;}
.y139{bottom:312.653742px;}
.yd{bottom:315.172309px;}
.ya1{bottom:316.620700px;}
.yd8{bottom:321.841434px;}
.y10d{bottom:324.716867px;}
.y10a{bottom:324.725648px;}
.y55{bottom:326.166049px;}
.y11b{bottom:326.519717px;}
.yad{bottom:327.242497px;}
.y5d{bottom:329.764473px;}
.y98{bottom:330.295066px;}
.yb1{bottom:330.660015px;}
.yf4{bottom:333.900021px;}
.y43{bottom:334.260565px;}
.ya0{bottom:335.512012px;}
.y2e{bottom:336.778805px;}
.ye2{bottom:337.319439px;}
.y87{bottom:338.764895px;}
.y24{bottom:340.018650px;}
.yfa{bottom:340.375743px;}
.yd7{bottom:340.732745px;}
.y15{bottom:346.499495px;}
.y151{bottom:348.484949px;}
.y8{bottom:349.560263px;}
.y36{bottom:351.351761px;}
.y103{bottom:352.622221px;}
.yc0{bottom:352.800006px;}
.y149{bottom:353.700204px;}
.y9f{bottom:354.417863px;}
.y130{bottom:354.779890px;}
.yd6{bottom:359.638596px;}
.y93{bottom:360.902491px;}
.y91{bottom:363.426310px;}
.yd3{bottom:365.585608px;}
.y116{bottom:366.120659px;}
.y94{bottom:366.476712px;}
.yac{bottom:366.664543px;}
.y1b{bottom:367.202065px;}
.y92{bottom:368.994344px;}
.y10b{bottom:369.723737px;}
.y13a{bottom:370.252383px;}
.y9e{bottom:373.497672px;}
.y2d{bottom:373.508211px;}
.yd0{bottom:375.841365px;}
.yd5{bottom:378.718406px;}
.y23{bottom:379.621387px;}
.yc4{bottom:379.798347px;}
.y78{bottom:379.981762px;}
.ya7{bottom:381.244761px;}
.y8a{bottom:382.679518px;}
.y141{bottom:384.119648px;}
.y11c{bottom:385.736531px;}
.yb2{bottom:386.100013px;}
.ye3{bottom:386.816742px;}
.y14{bottom:388.627536px;}
.y12f{bottom:389.517350px;}
.y7e{bottom:391.134686px;}
.y9d{bottom:392.398661px;}
.y148{bottom:392.753528px;}
.y5e{bottom:392.754117px;}
.y5b{bottom:393.836930px;}
.y115{bottom:394.743419px;}
.y104{bottom:395.283265px;}
.yf5{bottom:396.180004px;}
.y7{bottom:396.717863px;}
.y54{bottom:401.762770px;}
.y96{bottom:402.120791px;}
.yc{bottom:402.305645px;}
.y150{bottom:402.478491px;}
.yb9{bottom:403.200089px;}
.y35{bottom:404.269561px;}
.y89{bottom:404.826136px;}
.yab{bottom:405.900959px;}
.y2c{bottom:410.406783px;}
.y71{bottom:414.359665px;}
.y77{bottom:419.764687px;}
.y114{bottom:423.356923px;}
.y12e{bottom:424.082030px;}
.ycc{bottom:425.704797px;}
.y22{bottom:426.052881px;}
.y3e{bottom:426.238458px;}
.y3a{bottom:426.598102px;}
.y88{bottom:426.963732px;}
.y95{bottom:427.314680px;}
.y13b{bottom:428.033068px;}
.yc1{bottom:430.379997px;}
.y13{bottom:430.555667px;}
.y7d{bottom:430.917611px;}
.y147{bottom:431.816980px;}
.y124{bottom:433.975512px;}
.ye4{bottom:436.496684px;}
.y105{bottom:438.120548px;}
.yc9{bottom:438.845904px;}
.y53{bottom:439.738018px;}
.yb3{bottom:441.540012px;}
.y34{bottom:444.052486px;}
.y11d{bottom:444.780566px;}
.yaa{bottom:445.323005px;}
.y2b{bottom:448.556896px;}
.y113{bottom:451.979682px;}
.y3b{bottom:453.783678px;}
.y70{bottom:455.041906px;}
.y5f{bottom:455.586048px;}
.y6{bottom:455.929850px;}
.y14f{bottom:456.298052px;}
.y12d{bottom:458.637163px;}
.yf6{bottom:458.640025px;}
.y4e{bottom:462.597680px;}
.y21{bottom:465.835806px;}
.y146{bottom:471.052411px;}
.y76{bottom:472.682515px;}
.y69{bottom:476.635550px;}
.y52{bottom:477.544053px;}
.y112{bottom:480.602471px;}
.y106{bottom:480.781592px;}
.ybe{bottom:480.960022px;}
.y33{bottom:483.835438px;}
.ya9{bottom:484.745015px;}
.y13c{bottom:485.813753px;}
.ye5{bottom:485.994023px;}
.yb{bottom:489.240730px;}
.yc8{bottom:489.956386px;}
.y12c{bottom:493.201902px;}
.ycf{bottom:495.546046px;}
.y12{bottom:496.077969px;}
.y1a{bottom:496.262531px;}
.yb4{bottom:496.800006px;}
.y2a{bottom:496.970313px;}
.y40{bottom:499.676192px;}
.y3d{bottom:501.126384px;}
.y11e{bottom:503.997379px;}
.y4d{bottom:504.722869px;}
.y68{bottom:504.896885px;}
.ybd{bottom:507.060000px;}
.yc2{bottom:507.960022px;}
.y111{bottom:509.039718px;}
.y145{bottom:510.115832px;}
.y14e{bottom:510.305204px;}
.y75{bottom:512.465467px;}
.y20{bottom:513.364657px;}
.y51{bottom:515.519301px;}
.y5{bottom:518.389826px;}
.y60{bottom:518.575692px;}
.yf7{bottom:520.920009px;}
.y7c{bottom:523.438203px;}
.y107{bottom:523.442636px;}
.y12b{bottom:527.757006px;}
.y3f{bottom:528.123190px;}
.y3c{bottom:529.561770px;}
.y29{bottom:532.447023px;}
.y4c{bottom:533.158255px;}
.y67{bottom:533.343883px;}
.yd4{bottom:533.877544px;}
.ye6{bottom:535.503514px;}
.y32{bottom:536.573078px;}
.y110{bottom:537.662507px;}
.ybc{bottom:539.999999px;}
.y14d{bottom:540.722446px;}
.y13d{bottom:543.412331px;}
.y144{bottom:549.179284px;}
.yb5{bottom:552.240005px;}
.y50{bottom:553.325360px;}
.y4b{bottom:561.605218px;}
.y66{bottom:561.779234px;}
.y11{bottom:561.784811px;}
.y12a{bottom:562.321745px;}
.y11f{bottom:563.041443px;}
.y74{bottom:565.203107px;}
.y108{bottom:566.103680px;}
.y10f{bottom:566.276011px;}
.ybb{bottom:566.280017px;}
.y97{bottom:567.180186px;}
.y86{bottom:570.064924px;}
.y1f{bottom:571.855618px;}
.ya{bottom:576.356030px;}
.ycb{bottom:578.346232px;}
.y4{bottom:580.849823px;}
.y28{bottom:580.860440px;}
.y61{bottom:581.391809px;}
.yf8{bottom:583.200027px;}
.ye7{bottom:585.000817px;}
.y19{bottom:585.179048px;}
.yc3{bottom:585.360008px;}
.y143{bottom:588.232609px;}
.y4a{bottom:590.040604px;}
.y4f{bottom:591.116046px;}
.yc7{bottom:592.023508px;}
.y84{bottom:593.101134px;}
.y14c{bottom:594.542007px;}
.y10e{bottom:594.898770px;}
.y129{bottom:596.876849px;}
.y13e{bottom:601.193047px;}
.y10{bottom:603.728313px;}
.y73{bottom:604.986059px;}
.y65{bottom:607.136653px;}
.yb6{bottom:607.680004px;}
.y109{bottom:608.764724px;}
.yfc{bottom:612.360008px;}
.ye9{bottom:616.683952px;}
.y49{bottom:618.475972px;}
.y120{bottom:622.075901px;}
.yc5{bottom:630.180004px;}
.y128{bottom:631.441587px;}
.y83{bottom:632.701693px;}
.ybf{bottom:636.120003px;}
.yc6{bottom:643.133967px;}
.y3{bottom:643.507925px;}
.y48{bottom:646.737324px;}
.y13f{bottom:658.801737px;}
.y82{bottom:659.345101px;}
.yb7{bottom:662.940015px;}
.y127{bottom:666.179017px;}
.yfe{bottom:669.431523px;}
.y118{bottom:671.217031px;}
.y47{bottom:675.184305px;}
.y6c{bottom:676.987848px;}
.y9{bottom:677.157646px;}
.yec{bottom:678.063273px;}
.y121{bottom:681.302291px;}
.y14b{bottom:684.895970px;}
.y46{bottom:703.619673px;}
.y133{bottom:711.175292px;}
.y81{bottom:713.694067px;}
.ya8{bottom:714.769492px;}
.yae{bottom:714.967597px;}
.yca{bottom:723.967271px;}
.yea{bottom:726.118143px;}
.y117{bottom:727.908906px;}
.yfd{bottom:732.061319px;}
.ydd{bottom:733.872572px;}
.y14a{bottom:741.767491px;}
.h1a{height:29.333415px;}
.h1b{height:35.787521px;}
.h7{height:42.337808px;}
.h19{height:44.000661px;}
.h1e{height:46.313706px;}
.h1f{height:47.644026px;}
.h1d{height:48.564219px;}
.h11{height:53.681820px;}
.h18{height:53.973915px;}
.h28{height:54.790630px;}
.h17{height:55.524268px;}
.h16{height:60.393507px;}
.h30{height:65.698006px;}
.h32{height:65.704382px;}
.h31{height:65.728609px;}
.h34{height:67.977921px;}
.h35{height:67.979196px;}
.h21{height:68.284231px;}
.h20{height:68.284383px;}
.h15{height:71.575042px;}
.h36{height:71.671943px;}
.h2{height:72.846329px;}
.h1c{height:72.887462px;}
.h14{height:73.630971px;}
.h2b{height:75.591594px;}
.h37{height:79.303536px;}
.h38{height:79.316288px;}
.h6{height:82.185308px;}
.ha{height:82.231714px;}
.h39{height:82.436899px;}
.h24{height:82.823312px;}
.h26{height:82.842458px;}
.h23{height:82.871216px;}
.h25{height:82.877956px;}
.h27{height:82.886390px;}
.h29{height:84.675617px;}
.h2d{height:86.254665px;}
.h2a{height:86.258041px;}
.h2e{height:86.302919px;}
.h2f{height:86.303369px;}
.h13{height:90.902028px;}
.h2c{height:90.908956px;}
.hd{height:96.642774px;}
.h40{height:108.930723px;}
.h3e{height:108.952276px;}
.h4{height:108.957727px;}
.h3f{height:108.964890px;}
.h3a{height:108.973547px;}
.h3c{height:108.978095px;}
.h3b{height:108.981801px;}
.h3d{height:108.986443px;}
.h22{height:109.019250px;}
.hc{height:111.738337px;}
.h5{height:127.636959px;}
.h9{height:127.709030px;}
.h10{height:128.534860px;}
.he{height:132.320865px;}
.hf{height:132.322375px;}
.h12{height:135.559886px;}
.h8{height:145.692658px;}
.hb{height:161.391401px;}
.h33{height:181.804055px;}
.h3{height:200.483288px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w2{width:806.942403px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x32{left:59.215559px;}
.x47{left:64.443187px;}
.x2b{left:70.917626px;}
.xe{left:77.402166px;}
.x33{left:82.978279px;}
.x49{left:89.289211px;}
.x6a{left:90.903666px;}
.x31{left:93.958857px;}
.x8{left:96.307823px;}
.x4e{left:98.459997px;}
.x4d{left:109.799998px;}
.x6c{left:111.604487px;}
.x10{left:120.051530px;}
.x4c{left:121.140000px;}
.x25{left:122.762606px;}
.x5e{left:132.303963px;}
.x12{left:133.383653px;}
.x6b{left:136.079999px;}
.x23{left:137.528194px;}
.x9{left:143.636628px;}
.x4f{left:147.060001px;}
.x4a{left:150.297954px;}
.x2f{left:156.429150px;}
.x52{left:158.219999px;}
.x5f{left:161.644259px;}
.x73{left:165.054524px;}
.xf{left:167.401900px;}
.x22{left:170.277513px;}
.x65{left:178.742938px;}
.x71{left:181.440288px;}
.x70{left:191.702263px;}
.x14{left:201.959610px;}
.x24{left:208.627020px;}
.x83{left:210.964872px;}
.x66{left:212.944922px;}
.x72{left:216.540704px;}
.x6e{left:217.979994px;}
.x5c{left:224.280980px;}
.x59{left:225.905188px;}
.x13{left:231.114286px;}
.x2{left:241.547836px;}
.x5{left:257.028410px;}
.x2a{left:258.656331px;}
.x21{left:264.965112px;}
.x51{left:267.479994px;}
.x11{left:274.678055px;}
.x4{left:298.262762px;}
.x77{left:300.781537px;}
.x82{left:310.863730px;}
.x5a{left:330.121807px;}
.x79{left:344.885985px;}
.x1{left:362.884566px;}
.x78{left:376.745247px;}
.x7{left:383.397707px;}
.x27{left:391.682430px;}
.x6{left:423.895409px;}
.x7a{left:457.564108px;}
.x29{left:461.701444px;}
.x5b{left:467.994539px;}
.x7c{left:475.384184px;}
.x7b{left:482.226222px;}
.x17{left:486.893422px;}
.x3{left:494.104704px;}
.x50{left:507.959988px;}
.x7d{left:510.669225px;}
.x26{left:512.283829px;}
.x18{left:515.154792px;}
.x42{left:518.582772px;}
.x16{left:519.841789px;}
.x19{left:524.157563px;}
.x1a{left:525.782411px;}
.x81{left:543.776661px;}
.x37{left:547.378794px;}
.x4b{left:549.905483px;}
.x41{left:550.985208px;}
.x15{left:553.138223px;}
.x74{left:555.473549px;}
.x6d{left:564.300007px;}
.x75{left:592.204905px;}
.x35{left:609.482807px;}
.x36{left:611.823761px;}
.x6f{left:629.816345px;}
.x5d{left:633.780503px;}
.xd{left:641.878426px;}
.x44{left:645.661944px;}
.x43{left:657.359106px;}
.xc{left:671.034413px;}
.xb{left:672.664776px;}
.x55{left:682.740006px;}
.x58{left:689.045340px;}
.x54{left:694.080025px;}
.x67{left:698.404180px;}
.x53{left:705.419975px;}
.x62{left:709.561452px;}
.xa{left:716.038707px;}
.x45{left:727.923436px;}
.x2e{left:729.726062px;}
.x56{left:731.340019px;}
.x63{left:741.772771px;}
.x57{left:748.440033px;}
.x7f{left:751.685182px;}
.x1b{left:770.400250px;}
.x80{left:784.983869px;}
.x68{left:795.059983px;}
.x69{left:813.235625px;}
.x64{left:823.679625px;}
.x30{left:829.437681px;}
.x46{left:849.239699px;}
.x38{left:850.315284px;}
.x1e{left:854.096916px;}
.x3d{left:865.081471px;}
.x60{left:866.157501px;}
.x3e{left:876.231353px;}
.x84{left:880.376794px;}
.x1f{left:891.180050px;}
.x2c{left:892.449758px;}
.x61{left:895.681623px;}
.x39{left:896.944916px;}
.x3a{left:907.021467px;}
.x2d{left:911.159814px;}
.x3b{left:913.688443px;}
.x20{left:926.094531px;}
.x1d{left:932.763816px;}
.x3c{left:952.385931px;}
.x1c{left:960.295735px;}
.x3f{left:989.819355px;}
.x40{left:1000.972890px;}
.x76{left:1027.452016px;}
.x7e{left:1031.587200px;}
.x48{left:1037.695879px;}
.x28{left:1069.386466px;}
.x34{left:1128.413982px;}
@media print{
.v3{vertical-align:-27.538351pt;}
.v5{vertical-align:-20.500000pt;}
.v6{vertical-align:-8.319948pt;}
.v7{vertical-align:-7.053701pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:16.019106pt;}
.v8{vertical-align:20.512081pt;}
.v9{vertical-align:24.960521pt;}
.v4{vertical-align:39.695874pt;}
.v2{vertical-align:42.871988pt;}
.v1{vertical-align:78.706731pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.057656pt;}
.ls16{letter-spacing:0.057657pt;}
.ls1a{letter-spacing:0.069876pt;}
.ls19{letter-spacing:0.088666pt;}
.lsb{letter-spacing:0.107571pt;}
.ls10{letter-spacing:0.131200pt;}
.ls12{letter-spacing:0.236179pt;}
.ls13{letter-spacing:0.252907pt;}
.ls11{letter-spacing:0.264864pt;}
.lsd{letter-spacing:0.459481pt;}
.ls1b{letter-spacing:9.202392pt;}
.ls15{letter-spacing:20.305796pt;}
.lsa{letter-spacing:23.046341pt;}
.lsc{letter-spacing:31.273296pt;}
.ls2{letter-spacing:32.116564pt;}
.ls6{letter-spacing:35.377416pt;}
.ls9{letter-spacing:35.377490pt;}
.ls4{letter-spacing:35.441541pt;}
.ls7{letter-spacing:35.441590pt;}
.lsf{letter-spacing:35.863803pt;}
.ls5{letter-spacing:38.514486pt;}
.ls3{letter-spacing:38.578587pt;}
.ls1{letter-spacing:45.291972pt;}
.ls8{letter-spacing:45.292056pt;}
.lse{letter-spacing:59.346497pt;}
.ls18{letter-spacing:74.510772pt;}
.ls14{letter-spacing:408.698269pt;}
.ws6{word-spacing:-62.207466pt;}
.ws9{word-spacing:-62.120099pt;}
.ws16{word-spacing:-56.466076pt;}
.ws3a{word-spacing:-51.205074pt;}
.ws2{word-spacing:-35.817722pt;}
.wsc{word-spacing:-30.575921pt;}
.wse{word-spacing:-25.960662pt;}
.ws30{word-spacing:-24.294559pt;}
.ws33{word-spacing:-24.204945pt;}
.ws2e{word-spacing:-23.761830pt;}
.ws23{word-spacing:-23.231954pt;}
.ws22{word-spacing:-23.147475pt;}
.ws3{word-spacing:-23.062995pt;}
.ws1b{word-spacing:-20.592033pt;}
.ws4{word-spacing:-20.442273pt;}
.ws3d{word-spacing:-20.112715pt;}
.ws27{word-spacing:-19.431882pt;}
.ws25{word-spacing:-19.291580pt;}
.ws3b{word-spacing:-19.145967pt;}
.ws3c{word-spacing:-19.076091pt;}
.ws39{word-spacing:-18.438087pt;}
.ws36{word-spacing:-18.436297pt;}
.ws18{word-spacing:-18.181065pt;}
.ws15{word-spacing:-18.082673pt;}
.ws3f{word-spacing:-16.650086pt;}
.ws1f{word-spacing:-15.600730pt;}
.ws29{word-spacing:-15.375449pt;}
.ws1e{word-spacing:-13.628182pt;}
.ws14{word-spacing:-11.880915pt;}
.wsb{word-spacing:-3.210234pt;}
.ws2d{word-spacing:-2.534415pt;}
.wsd{word-spacing:-2.321828pt;}
.ws2a{word-spacing:-2.111996pt;}
.ws20{word-spacing:-1.878798pt;}
.ws19{word-spacing:-1.872003pt;}
.ws24{word-spacing:-1.797123pt;}
.ws13{word-spacing:-1.436157pt;}
.ws12{word-spacing:-1.351677pt;}
.ws5{word-spacing:-1.267198pt;}
.ws1d{word-spacing:-1.198082pt;}
.ws2b{word-spacing:-0.341354pt;}
.ws1a{word-spacing:-0.314800pt;}
.ws1c{word-spacing:-0.314577pt;}
.ws28{word-spacing:-0.217000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:0.447999pt;}
.ws21{word-spacing:0.547364pt;}
.ws8{word-spacing:0.673921pt;}
.ws2f{word-spacing:1.305595pt;}
.ws11{word-spacing:1.455996pt;}
.ws2c{word-spacing:15.818822pt;}
.ws17{word-spacing:17.721616pt;}
.ws1{word-spacing:32.931312pt;}
.ws26{word-spacing:51.911888pt;}
.ws3e{word-spacing:179.614648pt;}
.ws31{word-spacing:179.815204pt;}
.wsa{word-spacing:211.721684pt;}
.ws37{word-spacing:267.967869pt;}
.ws38{word-spacing:267.993874pt;}
.ws35{word-spacing:271.076350pt;}
.ws32{word-spacing:279.692525pt;}
.ws7{word-spacing:339.537359pt;}
.ws34{word-spacing:436.930298pt;}
.wsf{word-spacing:573.202236pt;}
._22{margin-left:-34.172201pt;}
._15{margin-left:-18.753332pt;}
._8{margin-left:-16.692526pt;}
._23{margin-left:-15.206936pt;}
._2b{margin-left:-13.513646pt;}
._33{margin-left:-12.588834pt;}
._36{margin-left:-11.540512pt;}
._14{margin-left:-8.455072pt;}
._9{margin-left:-7.398418pt;}
._2{margin-left:-5.990410pt;}
._e{margin-left:-4.642568pt;}
._5{margin-left:-3.595528pt;}
._3{margin-left:-1.986567pt;}
._0{margin-left:-0.898561pt;}
._1{width:1.048322pt;}
._6{width:2.643210pt;}
._b{width:3.543666pt;}
._c{width:4.646391pt;}
._d{width:5.833595pt;}
._43{width:7.848953pt;}
._34{width:13.514315pt;}
._35{width:15.059292pt;}
._16{width:18.735477pt;}
._2d{width:20.028775pt;}
._18{width:21.551324pt;}
._17{width:23.366350pt;}
._37{width:25.095590pt;}
._38{width:26.108055pt;}
._1e{width:28.302144pt;}
._7{width:29.713838pt;}
._31{width:31.695918pt;}
._28{width:33.042478pt;}
._1f{width:34.947902pt;}
._3d{width:39.560941pt;}
._11{width:44.911884pt;}
._2c{width:53.964596pt;}
._4{width:55.005593pt;}
._32{width:57.966242pt;}
._12{width:59.074427pt;}
._44{width:63.099952pt;}
._a{width:68.880235pt;}
._21{width:84.837511pt;}
._2f{width:91.188995pt;}
._10{width:93.266331pt;}
._f{width:104.047731pt;}
._13{width:111.439712pt;}
._20{width:120.102473pt;}
._2e{width:151.877348pt;}
._3a{width:156.229975pt;}
._39{width:180.081202pt;}
._30{width:187.966400pt;}
._42{width:219.619783pt;}
._1b{width:232.319544pt;}
._41{width:240.394105pt;}
._1a{width:243.095858pt;}
._1c{width:258.592773pt;}
._1d{width:268.192757pt;}
._3e{width:305.827895pt;}
._3f{width:317.934671pt;}
._19{width:319.671693pt;}
._3b{width:328.050160pt;}
._27{width:342.008741pt;}
._24{width:385.588247pt;}
._2a{width:459.922032pt;}
._25{width:484.659672pt;}
._40{width:549.432986pt;}
._26{width:715.641269pt;}
._3c{width:997.988602pt;}
._29{width:999.486293pt;}
.fs10{font-size:35.671244pt;}
.fs5{font-size:43.519835pt;}
.fs11{font-size:49.920081pt;}
.fsf{font-size:53.507521pt;}
.fs12{font-size:56.320326pt;}
.fsd{font-size:62.079630pt;}
.fs7{font-size:65.280408pt;}
.fse{font-size:65.635613pt;}
.fs18{font-size:67.532225pt;}
.fs1a{font-size:67.538779pt;}
.fs19{font-size:67.563682pt;}
.fs1c{font-size:69.875792pt;}
.fs1d{font-size:69.877103pt;}
.fs14{font-size:70.151044pt;}
.fs13{font-size:70.151200pt;}
.fs1e{font-size:73.672948pt;}
.fs0{font-size:74.880121pt;}
.fs1f{font-size:81.517607pt;}
.fs20{font-size:81.530714pt;}
.fs4{font-size:84.479834pt;}
.fs8{font-size:86.368582pt;}
.fsc{font-size:87.039670pt;}
.fs17{font-size:88.662342pt;}
.fs16{font-size:88.662804pt;}
.fs15{font-size:88.666274pt;}
.fsb{font-size:93.439916pt;}
.fs2{font-size:111.999711pt;}
.fs9{font-size:114.870188pt;}
.fsa{font-size:114.871498pt;}
.fs3{font-size:131.200448pt;}
.fs6{font-size:149.760243pt;}
.fs1b{font-size:186.879832pt;}
.fs1{font-size:206.080569pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:12.955499pt;}
.y6f{bottom:87.525585pt;}
.y1e{bottom:87.684920pt;}
.y137{bottom:106.235368pt;}
.yf2{bottom:113.273616pt;}
.yef{bottom:114.233428pt;}
.y5a{bottom:121.597648pt;}
.y9c{bottom:123.356885pt;}
.y136{bottom:128.641317pt;}
.y6d{bottom:128.643696pt;}
.y11a{bottom:130.564446pt;}
.yaf{bottom:134.080009pt;}
.yf1{bottom:135.833881pt;}
.yee{bottom:136.639377pt;}
.y8d{bottom:137.283699pt;}
.y9b{bottom:145.762890pt;}
.y135{bottom:151.035885pt;}
.y59{bottom:155.203054pt;}
.y119{bottom:155.840281pt;}
.y8c{bottom:156.963567pt;}
.y2{bottom:157.765726pt;}
.yf0{bottom:158.239886pt;}
.yed{bottom:159.199642pt;}
.y155{bottom:160.001883pt;}
.y102{bottom:163.524318pt;}
.y138{bottom:165.925917pt;}
.y64{bottom:166.559224pt;}
.y6a{bottom:167.042872pt;}
.yf{bottom:167.354741pt;}
.y9a{bottom:168.157458pt;}
.ye1{bottom:170.882365pt;}
.y134{bottom:173.441890pt;}
.y18{bottom:175.040907pt;}
.y8b{bottom:176.478145pt;}
.y7b{bottom:178.404779pt;}
.y1{bottom:180.160294pt;}
.ya6{bottom:180.480677pt;}
.y101{bottom:185.918886pt;}
.y154{bottom:186.880684pt;}
.y58{bottom:188.794775pt;}
.y27{bottom:190.401279pt;}
.yba{bottom:191.359985pt;}
.y31{bottom:191.682563pt;}
.y42{bottom:193.604641pt;}
.y45{bottom:193.924325pt;}
.y39{bottom:194.565366pt;}
.y7a{bottom:196.631402pt;}
.y1c{bottom:196.806453pt;}
.ye0{bottom:197.126029pt;}
.ya5{bottom:197.272954pt;}
.y62{bottom:199.834015pt;}
.ydc{bottom:201.913606pt;}
.yf3{bottom:203.994468pt;}
.y99{bottom:206.717655pt;}
.y100{bottom:208.319145pt;}
.y132{bottom:212.158345pt;}
.y17{bottom:212.324000pt;}
.y126{bottom:213.597742pt;}
.y153{bottom:213.765527pt;}
.ya4{bottom:214.078113pt;}
.y6b{bottom:215.044682pt;}
.y142{bottom:218.078716pt;}
.y80{bottom:218.236539pt;}
.ydb{bottom:218.718765pt;}
.y41{bottom:218.880477pt;}
.yb8{bottom:219.040038pt;}
.y44{bottom:219.200161pt;}
.y90{bottom:222.405588pt;}
.y57{bottom:222.564194pt;}
.y6e{bottom:223.036436pt;}
.ydf{bottom:223.359058pt;}
.y8e{bottom:225.601840pt;}
.y26{bottom:225.603761pt;}
.ycd{bottom:225.604234pt;}
.y123{bottom:227.197357pt;}
.y8f{bottom:229.764535pt;}
.ya3{bottom:230.878992pt;}
.yff{bottom:230.879409pt;}
.y30{bottom:233.761435pt;}
.y85{bottom:234.241927pt;}
.yda{bottom:235.515364pt;}
.y131{bottom:235.519183pt;}
.y125{bottom:236.963942pt;}
.y5c{bottom:237.273413pt;}
.y38{bottom:241.603410pt;}
.yfb{bottom:243.359985pt;}
.y79{bottom:243.685478pt;}
.ye{bottom:244.790564pt;}
.yb0{bottom:244.799987pt;}
.y1d{bottom:248.157622pt;}
.yde{bottom:249.443321pt;}
.y140{bottom:250.871693pt;}
.y63{bottom:251.996765pt;}
.yd9{bottom:252.475236pt;}
.y56{bottom:256.155915pt;}
.yd1{bottom:257.438854pt;}
.yd2{bottom:259.676645pt;}
.yce{bottom:260.316014pt;}
.y25{bottom:260.950379pt;}
.y152{bottom:261.759786pt;}
.y10c{bottom:262.727895pt;}
.yf9{bottom:264.320007pt;}
.y122{bottom:264.479863pt;}
.ya2{bottom:264.635463pt;}
.y7f{bottom:265.274583pt;}
.y2f{bottom:266.560207pt;}
.ye8{bottom:267.520454pt;}
.y16{bottom:270.716416pt;}
.y72{bottom:273.277818pt;}
.y37{bottom:276.966059pt;}
.y139{bottom:277.914438pt;}
.yd{bottom:280.153164pt;}
.ya1{bottom:281.440622pt;}
.yd8{bottom:286.081274pt;}
.y10d{bottom:288.637215pt;}
.y10a{bottom:288.645021pt;}
.y55{bottom:289.925377pt;}
.y11b{bottom:290.239749pt;}
.yad{bottom:290.882220pt;}
.y5d{bottom:293.123976pt;}
.y98{bottom:293.595614pt;}
.yb1{bottom:293.920013pt;}
.yf4{bottom:296.800018pt;}
.y43{bottom:297.120502pt;}
.ya0{bottom:298.232899pt;}
.y2e{bottom:299.358938pt;}
.ye2{bottom:299.839502pt;}
.y87{bottom:301.124351pt;}
.y24{bottom:302.238800pt;}
.yfa{bottom:302.556216pt;}
.yd7{bottom:302.873551pt;}
.y15{bottom:307.999551pt;}
.y151{bottom:309.764399pt;}
.y8{bottom:310.720234pt;}
.y36{bottom:312.312676pt;}
.y103{bottom:313.441974pt;}
.yc0{bottom:313.600005pt;}
.y149{bottom:314.400181pt;}
.y9f{bottom:315.038100pt;}
.y130{bottom:315.359902pt;}
.yd6{bottom:319.678752pt;}
.y93{bottom:320.802214pt;}
.y91{bottom:323.045609pt;}
.yd3{bottom:324.964985pt;}
.y116{bottom:325.440586pt;}
.y94{bottom:325.757077pt;}
.yac{bottom:325.924038pt;}
.y1b{bottom:326.401836pt;}
.y92{bottom:327.994972pt;}
.y10b{bottom:328.643322pt;}
.y13a{bottom:329.113229pt;}
.y9e{bottom:331.997931pt;}
.y2d{bottom:332.007299pt;}
.yd0{bottom:334.081213pt;}
.yd5{bottom:336.638583pt;}
.y23{bottom:337.441233pt;}
.yc4{bottom:337.598531pt;}
.y78{bottom:337.761566pt;}
.ya7{bottom:338.884232pt;}
.y8a{bottom:340.159571pt;}
.y141{bottom:341.439687pt;}
.y11c{bottom:342.876917pt;}
.yb2{bottom:343.200011pt;}
.ye3{bottom:343.837104pt;}
.y14{bottom:345.446699pt;}
.y12f{bottom:346.237644pt;}
.y7e{bottom:347.675276pt;}
.y9d{bottom:348.798810pt;}
.y148{bottom:349.114247pt;}
.y5e{bottom:349.114770pt;}
.y5b{bottom:350.077271pt;}
.y115{bottom:350.883039pt;}
.y104{bottom:351.362902pt;}
.yf5{bottom:352.160003pt;}
.y7{bottom:352.638100pt;}
.y54{bottom:357.122462pt;}
.y96{bottom:357.440703pt;}
.yc{bottom:357.605017pt;}
.y150{bottom:357.758659pt;}
.yb9{bottom:358.400079pt;}
.y35{bottom:359.350721pt;}
.y89{bottom:359.845454pt;}
.yab{bottom:360.800853pt;}
.y2c{bottom:364.806029pt;}
.y71{bottom:368.319702pt;}
.y77{bottom:373.124166pt;}
.y114{bottom:376.317265pt;}
.y12e{bottom:376.961804pt;}
.ycc{bottom:378.404264pt;}
.y22{bottom:378.713672pt;}
.y3e{bottom:378.878629pt;}
.y3a{bottom:379.198313pt;}
.y88{bottom:379.523317pt;}
.y95{bottom:379.835271pt;}
.y13b{bottom:380.473838pt;}
.yc1{bottom:382.559997pt;}
.y13{bottom:382.716148pt;}
.y7d{bottom:383.037876pt;}
.y147{bottom:383.837316pt;}
.y124{bottom:385.756011pt;}
.ye4{bottom:387.997052pt;}
.y105{bottom:389.440487pt;}
.yc9{bottom:390.085248pt;}
.y53{bottom:390.878238pt;}
.yb3{bottom:392.480010pt;}
.y34{bottom:394.713321pt;}
.y11d{bottom:395.360503pt;}
.yaa{bottom:395.842671pt;}
.y2b{bottom:398.717241pt;}
.y113{bottom:401.759718pt;}
.y3b{bottom:403.363269pt;}
.y70{bottom:404.481694pt;}
.y5f{bottom:404.965376pt;}
.y6{bottom:405.270978pt;}
.y14f{bottom:405.598268pt;}
.y12d{bottom:407.677478pt;}
.yf6{bottom:407.680022pt;}
.y4e{bottom:411.197937pt;}
.y21{bottom:414.076272pt;}
.y146{bottom:418.713255pt;}
.y76{bottom:420.162235pt;}
.y69{bottom:423.676045pt;}
.y52{bottom:424.483603pt;}
.y112{bottom:427.202196pt;}
.y106{bottom:427.361415pt;}
.ybe{bottom:427.520019pt;}
.y33{bottom:430.075945pt;}
.ya9{bottom:430.884458pt;}
.y13c{bottom:431.834447pt;}
.ye5{bottom:431.994687pt;}
.yb{bottom:434.880649pt;}
.yc8{bottom:435.516788pt;}
.y12c{bottom:438.401690pt;}
.ycf{bottom:440.485374pt;}
.y12{bottom:440.958195pt;}
.y1a{bottom:441.122250pt;}
.yb4{bottom:441.600005pt;}
.y2a{bottom:441.751389pt;}
.y40{bottom:444.156615pt;}
.y3d{bottom:445.445675pt;}
.y11e{bottom:447.997670pt;}
.y4d{bottom:448.642550pt;}
.y68{bottom:448.797231pt;}
.ybd{bottom:450.720000pt;}
.yc2{bottom:451.520019pt;}
.y111{bottom:452.479750pt;}
.y145{bottom:453.436295pt;}
.y14e{bottom:453.604626pt;}
.y75{bottom:455.524860pt;}
.y20{bottom:456.324140pt;}
.y51{bottom:458.239379pt;}
.y5{bottom:460.790956pt;}
.y60{bottom:460.956170pt;}
.yf7{bottom:463.040008pt;}
.y7c{bottom:465.278403pt;}
.y107{bottom:465.282343pt;}
.y12b{bottom:469.117339pt;}
.y3f{bottom:469.442836pt;}
.y3c{bottom:470.721573pt;}
.y29{bottom:473.286243pt;}
.y4c{bottom:473.918448pt;}
.y67{bottom:474.083452pt;}
.yd4{bottom:474.557817pt;}
.ye6{bottom:476.003124pt;}
.y32{bottom:476.953847pt;}
.y110{bottom:477.922228pt;}
.ybc{bottom:479.999999pt;}
.y14d{bottom:480.642174pt;}
.y13d{bottom:483.033183pt;}
.y144{bottom:488.159364pt;}
.yb5{bottom:490.880004pt;}
.y50{bottom:491.844764pt;}
.y4b{bottom:499.204638pt;}
.y66{bottom:499.359319pt;}
.y11{bottom:499.364276pt;}
.y12a{bottom:499.841551pt;}
.y11f{bottom:500.481283pt;}
.y74{bottom:502.402762pt;}
.y108{bottom:503.203271pt;}
.y10f{bottom:503.356454pt;}
.ybb{bottom:503.360015pt;}
.y97{bottom:504.160165pt;}
.y86{bottom:506.724377pt;}
.y1f{bottom:508.316105pt;}
.ya{bottom:512.316471pt;}
.ycb{bottom:514.085539pt;}
.y4{bottom:516.310954pt;}
.y28{bottom:516.320391pt;}
.y61{bottom:516.792719pt;}
.yf8{bottom:518.400024pt;}
.ye7{bottom:520.000726pt;}
.y19{bottom:520.159154pt;}
.yc3{bottom:520.320007pt;}
.y143{bottom:522.873430pt;}
.y4a{bottom:524.480537pt;}
.y4f{bottom:525.436485pt;}
.yc7{bottom:526.243119pt;}
.y84{bottom:527.201008pt;}
.y14c{bottom:528.481784pt;}
.y10e{bottom:528.798907pt;}
.y129{bottom:530.557199pt;}
.y13e{bottom:534.393820pt;}
.y10{bottom:536.647390pt;}
.y73{bottom:537.765386pt;}
.y65{bottom:539.677025pt;}
.yb6{bottom:540.160003pt;}
.y109{bottom:541.124199pt;}
.yfc{bottom:544.320007pt;}
.ye9{bottom:548.163513pt;}
.y49{bottom:549.756419pt;}
.y120{bottom:552.956357pt;}
.yc5{bottom:560.160003pt;}
.y128{bottom:561.281411pt;}
.y83{bottom:562.401505pt;}
.ybf{bottom:565.440002pt;}
.yc6{bottom:571.674637pt;}
.y3{bottom:572.007045pt;}
.y48{bottom:574.877621pt;}
.y13f{bottom:585.601544pt;}
.y82{bottom:586.084534pt;}
.yb7{bottom:589.280013pt;}
.y127{bottom:592.159127pt;}
.yfe{bottom:595.050243pt;}
.y118{bottom:596.637361pt;}
.y47{bottom:600.163827pt;}
.y6c{bottom:601.766976pt;}
.y9{bottom:601.917908pt;}
.yec{bottom:602.722909pt;}
.y121{bottom:605.602037pt;}
.y14b{bottom:608.796417pt;}
.y46{bottom:625.439709pt;}
.y133{bottom:632.155815pt;}
.y81{bottom:634.394726pt;}
.ya8{bottom:635.350659pt;}
.yae{bottom:635.526753pt;}
.yca{bottom:643.526463pt;}
.yea{bottom:645.438349pt;}
.y117{bottom:647.030139pt;}
.yfd{bottom:650.721172pt;}
.ydd{bottom:652.331175pt;}
.y14a{bottom:659.348881pt;}
.h1a{height:26.074147pt;}
.h1b{height:31.811130pt;}
.h7{height:37.633608pt;}
.h19{height:39.111699pt;}
.h1e{height:41.167739pt;}
.h1f{height:42.350245pt;}
.h1d{height:43.168195pt;}
.h11{height:47.717173pt;}
.h18{height:47.976813pt;}
.h28{height:48.702782pt;}
.h17{height:49.354905pt;}
.h16{height:53.683118pt;}
.h30{height:58.398228pt;}
.h32{height:58.403895pt;}
.h31{height:58.425430pt;}
.h34{height:60.424819pt;}
.h35{height:60.425952pt;}
.h21{height:60.697094pt;}
.h20{height:60.697230pt;}
.h15{height:63.622259pt;}
.h36{height:63.708394pt;}
.h2{height:64.752292pt;}
.h1c{height:64.788855pt;}
.h14{height:65.449752pt;}
.h2b{height:67.192528pt;}
.h37{height:70.492032pt;}
.h38{height:70.503367pt;}
.h6{height:73.053607pt;}
.ha{height:73.094857pt;}
.h39{height:73.277244pt;}
.h24{height:73.620722pt;}
.h26{height:73.637740pt;}
.h23{height:73.663303pt;}
.h25{height:73.669294pt;}
.h27{height:73.676791pt;}
.h29{height:75.267215pt;}
.h2d{height:76.670813pt;}
.h2a{height:76.673814pt;}
.h2e{height:76.713706pt;}
.h2f{height:76.714106pt;}
.h13{height:80.801802pt;}
.h2c{height:80.807960pt;}
.hd{height:85.904688pt;}
.h40{height:96.827309pt;}
.h3e{height:96.846468pt;}
.h4{height:96.851312pt;}
.h3f{height:96.857680pt;}
.h3a{height:96.865375pt;}
.h3c{height:96.869418pt;}
.h3b{height:96.872712pt;}
.h3d{height:96.876839pt;}
.h22{height:96.906000pt;}
.hc{height:99.322966pt;}
.h5{height:113.455075pt;}
.h9{height:113.519137pt;}
.h10{height:114.253209pt;}
.he{height:117.618547pt;}
.hf{height:117.619889pt;}
.h12{height:120.497677pt;}
.h8{height:129.504585pt;}
.hb{height:143.459023pt;}
.h33{height:161.603605pt;}
.h3{height:178.207367pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w2{width:717.282136pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x32{left:52.636053pt;}
.x47{left:57.282833pt;}
.x2b{left:63.037890pt;}
.xe{left:68.801926pt;}
.x33{left:73.758470pt;}
.x49{left:79.368188pt;}
.x6a{left:80.803259pt;}
.x31{left:83.518984pt;}
.x8{left:85.606954pt;}
.x4e{left:87.519997pt;}
.x4d{left:97.599998pt;}
.x6c{left:99.203989pt;}
.x10{left:106.712471pt;}
.x4c{left:107.680000pt;}
.x25{left:109.122316pt;}
.x5e{left:117.603523pt;}
.x12{left:118.563248pt;}
.x6b{left:120.959999pt;}
.x23{left:122.247284pt;}
.x9{left:127.677003pt;}
.x4f{left:130.720001pt;}
.x4a{left:133.598182pt;}
.x2f{left:139.048133pt;}
.x52{left:140.639999pt;}
.x5f{left:143.683786pt;}
.x73{left:146.715133pt;}
.xf{left:148.801689pt;}
.x22{left:151.357789pt;}
.x65{left:158.882611pt;}
.x71{left:161.280256pt;}
.x70{left:170.402011pt;}
.x14{left:179.519654pt;}
.x24{left:185.446240pt;}
.x83{left:187.524331pt;}
.x66{left:189.284375pt;}
.x72{left:192.480626pt;}
.x6e{left:193.759995pt;}
.x5c{left:199.360871pt;}
.x59{left:200.804612pt;}
.x13{left:205.434921pt;}
.x2{left:214.709187pt;}
.x5{left:228.469697pt;}
.x2a{left:229.916738pt;}
.x21{left:235.524544pt;}
.x51{left:237.759995pt;}
.x11{left:244.158271pt;}
.x4{left:265.122455pt;}
.x77{left:267.361367pt;}
.x82{left:276.323316pt;}
.x5a{left:293.441606pt;}
.x79{left:306.565320pt;}
.x1{left:322.564058pt;}
.x78{left:334.884664pt;}
.x7{left:340.797961pt;}
.x27{left:348.162160pt;}
.x6{left:376.795919pt;}
.x7a{left:406.723652pt;}
.x29{left:410.401283pt;}
.x5b{left:415.995146pt;}
.x7c{left:422.563719pt;}
.x7b{left:428.645530pt;}
.x17{left:432.794153pt;}
.x3{left:439.204182pt;}
.x50{left:451.519989pt;}
.x7d{left:453.928200pt;}
.x26{left:455.363404pt;}
.x18{left:457.915371pt;}
.x42{left:460.962464pt;}
.x16{left:462.081590pt;}
.x19{left:465.917834pt;}
.x1a{left:467.362143pt;}
.x81{left:483.357032pt;}
.x37{left:486.558928pt;}
.x4b{left:488.804874pt;}
.x41{left:489.764630pt;}
.x15{left:491.678420pt;}
.x74{left:493.754266pt;}
.x6d{left:501.600006pt;}
.x75{left:526.404360pt;}
.x35{left:541.762495pt;}
.x36{left:543.843343pt;}
.x6f{left:559.836751pt;}
.x5d{left:563.360447pt;}
.xd{left:570.558601pt;}
.x44{left:573.921728pt;}
.x43{left:584.319206pt;}
.xc{left:596.475034pt;}
.xb{left:597.924246pt;}
.x55{left:606.880005pt;}
.x58{left:612.484747pt;}
.x54{left:616.960022pt;}
.x67{left:620.803715pt;}
.x53{left:627.039978pt;}
.x62{left:630.721290pt;}
.xa{left:636.478851pt;}
.x45{left:647.043054pt;}
.x2e{left:648.645388pt;}
.x56{left:650.080017pt;}
.x63{left:659.353574pt;}
.x57{left:665.280029pt;}
.x7f{left:668.164606pt;}
.x1b{left:684.800222pt;}
.x80{left:697.763439pt;}
.x68{left:706.719985pt;}
.x69{left:722.876111pt;}
.x64{left:732.159667pt;}
.x30{left:737.277939pt;}
.x46{left:754.879732pt;}
.x38{left:755.835808pt;}
.x1e{left:759.197259pt;}
.x3d{left:768.961307pt;}
.x60{left:769.917779pt;}
.x3e{left:778.872314pt;}
.x84{left:782.557150pt;}
.x1f{left:792.160045pt;}
.x2c{left:793.288673pt;}
.x61{left:796.161443pt;}
.x39{left:797.284370pt;}
.x3a{left:806.241304pt;}
.x2d{left:809.919835pt;}
.x3b{left:812.167505pt;}
.x20{left:823.195138pt;}
.x1d{left:829.123392pt;}
.x3c{left:846.565272pt;}
.x1c{left:853.596209pt;}
.x3f{left:879.839427pt;}
.x40{left:889.753680pt;}
.x76{left:913.290681pt;}
.x7e{left:916.966400pt;}
.x48{left:922.396337pt;}
.x28{left:950.565747pt;}
.x34{left:1003.034650pt;}
}




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