
    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_146f76878ac3a904280a6d2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_a6c968063c613aa92cf993b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f58974de688d3b92060a6265.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.997559;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_053adf1cf50d943e9e7e9648.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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_f777e9f63d5b896161e280c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957000;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_bc00061321345704a3086fcc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_f95ce6a0b89a830c115d30cb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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_d7224ac46a5d1149a6b1cebe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_4914d91ef4d0ff8c1837681a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_0412f42d27da05dba335a2a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_3ce43881d7ec68cb17beeac2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.799000;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_0412f42d27da05dba335a2a1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_443f3481861f8af43b23d46a.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v3{vertical-align:-17.992200px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v5{vertical-align:15.965400px;}
.v1{vertical-align:17.982000px;}
.ls2d{letter-spacing:-6.816000px;}
.ls1a{letter-spacing:-5.952000px;}
.ls25{letter-spacing:-4.992000px;}
.ls23{letter-spacing:-4.896000px;}
.ls18{letter-spacing:-4.752000px;}
.ls1e{letter-spacing:-3.552000px;}
.ls2a{letter-spacing:-2.976000px;}
.ls11{letter-spacing:-2.064000px;}
.ls22{letter-spacing:-1.824000px;}
.ls20{letter-spacing:-1.632000px;}
.ls1c{letter-spacing:-1.584000px;}
.ls21{letter-spacing:-1.440000px;}
.ls28{letter-spacing:-1.152000px;}
.ls2c{letter-spacing:-1.056000px;}
.ls26{letter-spacing:-1.008000px;}
.ls2e{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.672000px;}
.ls19{letter-spacing:-0.624000px;}
.lsa{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.450000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.189000px;}
.ls27{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132000px;}
.ls14{letter-spacing:-0.096000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006000px;}
.ls1b{letter-spacing:0.096000px;}
.ls1f{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.528000px;}
.lsc{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.624000px;}
.ls17{letter-spacing:0.672000px;}
.ls5{letter-spacing:8.016000px;}
.ls0{letter-spacing:11.988000px;}
.lsd{letter-spacing:196.752000px;}
.ls3{letter-spacing:205.495200px;}
.ls8{letter-spacing:275.456400px;}
.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;}
}
.ws36{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.ws39{word-spacing:-13.968000px;}
.ws38{word-spacing:-13.920000px;}
.ws37{word-spacing:-13.536000px;}
.ws3a{word-spacing:-13.488000px;}
.ws2{word-spacing:-10.508400px;}
.ws10{word-spacing:-10.319400px;}
.ws11{word-spacing:-3.024000px;}
.ws40{word-spacing:-2.352000px;}
.ws21{word-spacing:-2.214000px;}
.ws23{word-spacing:-2.106000px;}
.ws5{word-spacing:-2.052000px;}
.ws58{word-spacing:-0.672000px;}
.ws3f{word-spacing:-0.624000px;}
.ws3c{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.528000px;}
.wsd{word-spacing:-0.480000px;}
.ws31{word-spacing:-0.324000px;}
.ws1d{word-spacing:-0.270000px;}
.ws48{word-spacing:-0.144000px;}
.ws44{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws3d{word-spacing:0.096000px;}
.ws50{word-spacing:0.144000px;}
.ws16{word-spacing:0.189000px;}
.wsf{word-spacing:0.270000px;}
.ws54{word-spacing:0.432000px;}
.ws33{word-spacing:0.450000px;}
.ws35{word-spacing:0.480000px;}
.ws19{word-spacing:0.540000px;}
.ws32{word-spacing:0.594000px;}
.ws42{word-spacing:0.624000px;}
.ws52{word-spacing:0.672000px;}
.ws46{word-spacing:0.720000px;}
.ws4d{word-spacing:0.864000px;}
.ws57{word-spacing:0.960000px;}
.ws4f{word-spacing:1.008000px;}
.ws55{word-spacing:1.056000px;}
.ws51{word-spacing:1.152000px;}
.ws1b{word-spacing:1.188000px;}
.ws6{word-spacing:1.350000px;}
.ws4a{word-spacing:1.440000px;}
.ws45{word-spacing:1.584000px;}
.ws49{word-spacing:1.632000px;}
.ws2e{word-spacing:1.728000px;}
.ws2d{word-spacing:1.782000px;}
.ws4b{word-spacing:1.824000px;}
.ws3b{word-spacing:2.064000px;}
.ws9{word-spacing:2.538000px;}
.ws53{word-spacing:2.976000px;}
.ws29{word-spacing:3.078000px;}
.wsa{word-spacing:3.240000px;}
.ws17{word-spacing:3.456000px;}
.ws47{word-spacing:3.552000px;}
.ws2c{word-spacing:3.564000px;}
.ws41{word-spacing:4.752000px;}
.ws22{word-spacing:4.806000px;}
.ws4c{word-spacing:4.896000px;}
.wse{word-spacing:4.944000px;}
.ws4e{word-spacing:4.992000px;}
.ws2b{word-spacing:5.022000px;}
.ws34{word-spacing:5.712000px;}
.ws18{word-spacing:5.832000px;}
.ws43{word-spacing:5.952000px;}
.ws20{word-spacing:6.480000px;}
.ws56{word-spacing:6.816000px;}
.ws15{word-spacing:7.182000px;}
.ws2f{word-spacing:7.236000px;}
.ws14{word-spacing:7.506000px;}
.wsc{word-spacing:7.536000px;}
.ws1a{word-spacing:7.614000px;}
.ws12{word-spacing:7.830000px;}
.ws2a{word-spacing:8.640000px;}
.ws13{word-spacing:9.990000px;}
.wsb{word-spacing:10.908000px;}
.ws7{word-spacing:10.962000px;}
.ws30{word-spacing:11.664000px;}
.ws1f{word-spacing:12.636000px;}
.ws8{word-spacing:13.338000px;}
.ws1c{word-spacing:14.580000px;}
.ws28{word-spacing:103.008000px;}
.ws3{word-spacing:105.456000px;}
.ws25{word-spacing:114.048000px;}
.ws27{word-spacing:156.768000px;}
.ws26{word-spacing:328.752000px;}
.ws24{word-spacing:374.112000px;}
.ws1{word-spacing:1242.054000px;}
._b{margin-left:-29.219400px;}
._d{margin-left:-18.777600px;}
._22{margin-left:-6.024600px;}
._c{margin-left:-4.869600px;}
._6{margin-left:-2.926800px;}
._1{margin-left:-1.598400px;}
._8{width:1.841400px;}
._2{width:3.040200px;}
._3{width:4.093200px;}
._0{width:5.351400px;}
._4{width:6.690600px;}
._9{width:7.900200px;}
._5{width:9.077400px;}
._a{width:10.821600px;}
._7{width:12.074400px;}
._13{width:13.186800px;}
._28{width:14.516400px;}
._14{width:16.189200px;}
._12{width:17.431200px;}
._11{width:18.549000px;}
._16{width:23.252400px;}
._29{width:26.094600px;}
._27{width:27.709200px;}
._25{width:29.149200px;}
._23{width:30.846600px;}
._24{width:33.710400px;}
._26{width:36.977400px;}
._e{width:38.054460px;}
._20{width:54.624000px;}
._1f{width:56.910600px;}
._21{width:60.034800px;}
._19{width:116.352000px;}
._1d{width:136.656000px;}
._17{width:140.736000px;}
._1b{width:164.736000px;}
._1c{width:191.424000px;}
._1e{width:196.752000px;}
._f{width:205.492140px;}
._1a{width:347.424000px;}
._18{width:680.784000px;}
._15{width:943.429800px;}
._10{width:1361.538600px;}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:17.301750px;}
.y3e{bottom:46.967550px;}
.y3f{bottom:47.167950px;}
.y9a{bottom:47.171700px;}
.y99{bottom:47.916000px;}
.y34{bottom:59.074650px;}
.y38{bottom:59.194650px;}
.y33{bottom:77.074650px;}
.y37{bottom:77.194650px;}
.yb8{bottom:90.315450px;}
.y147{bottom:90.801750px;}
.yde{bottom:92.250750px;}
.y12e{bottom:92.291250px;}
.y6e{bottom:92.292750px;}
.y110{bottom:92.298750px;}
.y32{bottom:95.074650px;}
.y36{bottom:95.194650px;}
.yb7{bottom:106.815450px;}
.y146{bottom:107.301750px;}
.yff{bottom:111.000750px;}
.ydd{bottom:111.002250px;}
.y98{bottom:111.039750px;}
.y12d{bottom:111.042750px;}
.y6d{bottom:111.044250px;}
.y10f{bottom:111.050250px;}
.y31{bottom:113.074650px;}
.y35{bottom:113.194650px;}
.yb6{bottom:123.315450px;}
.y145{bottom:123.801750px;}
.yfe{bottom:129.752250px;}
.ydc{bottom:129.753750px;}
.y10e{bottom:129.789750px;}
.y97{bottom:129.791250px;}
.y12c{bottom:129.794250px;}
.y6c{bottom:129.795750px;}
.yb5{bottom:139.815450px;}
.y144{bottom:140.301750px;}
.yfd{bottom:148.503750px;}
.ydb{bottom:148.505250px;}
.y10d{bottom:148.541250px;}
.y96{bottom:148.542750px;}
.y12b{bottom:148.545750px;}
.y6b{bottom:148.547250px;}
.y27{bottom:159.373050px;}
.yfc{bottom:167.255250px;}
.yda{bottom:167.256750px;}
.y10c{bottom:167.292750px;}
.y95{bottom:167.294250px;}
.y12a{bottom:167.297250px;}
.y6a{bottom:167.298750px;}
.yfb{bottom:186.006750px;}
.yd9{bottom:186.008250px;}
.y143{bottom:186.030750px;}
.y10b{bottom:186.044250px;}
.y94{bottom:186.045750px;}
.y129{bottom:186.048750px;}
.y69{bottom:186.050250px;}
.y2c{bottom:204.313050px;}
.y5{bottom:204.314400px;}
.yfa{bottom:204.758250px;}
.yd8{bottom:204.759750px;}
.y142{bottom:204.782250px;}
.y93{bottom:204.797250px;}
.y128{bottom:204.800250px;}
.y68{bottom:204.801750px;}
.y2b{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.yf9{bottom:223.509750px;}
.yd7{bottom:223.511250px;}
.y141{bottom:223.533750px;}
.y10a{bottom:223.547250px;}
.y92{bottom:223.548750px;}
.y2a{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.yf8{bottom:242.261250px;}
.yd6{bottom:242.262750px;}
.y140{bottom:242.285250px;}
.y67{bottom:242.292750px;}
.y109{bottom:242.298750px;}
.y91{bottom:242.300250px;}
.y29{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.yf7{bottom:261.012750px;}
.yd5{bottom:261.014250px;}
.y13f{bottom:261.036750px;}
.y66{bottom:261.044250px;}
.y108{bottom:261.050250px;}
.y90{bottom:261.051750px;}
.y28{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.yf6{bottom:279.764250px;}
.yd4{bottom:279.765750px;}
.y13e{bottom:279.788250px;}
.y65{bottom:279.795750px;}
.y127{bottom:279.801750px;}
.yf5{bottom:298.515750px;}
.yd3{bottom:298.517250px;}
.y13d{bottom:298.539750px;}
.y8f{bottom:298.541250px;}
.y64{bottom:298.547250px;}
.y30{bottom:313.771500px;}
.yf4{bottom:317.267250px;}
.yd2{bottom:317.268750px;}
.y13c{bottom:317.291250px;}
.y8e{bottom:317.292750px;}
.y63{bottom:317.298750px;}
.y2f{bottom:325.473450px;}
.yf3{bottom:336.018750px;}
.yd1{bottom:336.020250px;}
.y13b{bottom:336.042750px;}
.y8d{bottom:336.044250px;}
.y62{bottom:336.050250px;}
.yf2{bottom:354.770250px;}
.yd0{bottom:354.771750px;}
.y126{bottom:354.794250px;}
.y8c{bottom:354.795750px;}
.y61{bottom:354.801750px;}
.yf1{bottom:373.521750px;}
.ycf{bottom:373.523250px;}
.y125{bottom:373.545750px;}
.y8b{bottom:373.547250px;}
.yce{bottom:392.274750px;}
.y60{bottom:392.297250px;}
.y8a{bottom:392.298750px;}
.y107{bottom:392.301750px;}
.yb4{bottom:402.315450px;}
.yf0{bottom:411.024750px;}
.ycd{bottom:411.026250px;}
.y5f{bottom:411.048750px;}
.y89{bottom:411.050250px;}
.y3d{bottom:411.723900px;}
.y196{bottom:429.549900px;}
.yef{bottom:429.776250px;}
.ycc{bottom:429.777750px;}
.y5e{bottom:429.800250px;}
.y88{bottom:429.801750px;}
.y3c{bottom:431.217900px;}
.y3b{bottom:441.723900px;}
.y195{bottom:446.049900px;}
.yb3{bottom:448.503750px;}
.yee{bottom:448.527750px;}
.ycb{bottom:448.529250px;}
.y124{bottom:448.548750px;}
.y5d{bottom:448.551750px;}
.y106{bottom:460.809450px;}
.y3a{bottom:461.217900px;}
.y16d{bottom:461.829900px;}
.y194{bottom:462.549900px;}
.yb2{bottom:467.255250px;}
.yca{bottom:467.280750px;}
.y87{bottom:467.292750px;}
.y123{bottom:467.300250px;}
.y105{bottom:477.309450px;}
.y16c{bottom:478.329900px;}
.y193{bottom:479.049900px;}
.yb1{bottom:486.006750px;}
.yed{bottom:486.030750px;}
.yc9{bottom:486.032250px;}
.y5c{bottom:486.041250px;}
.y86{bottom:486.044250px;}
.y13a{bottom:486.051750px;}
.y16b{bottom:494.829900px;}
.y192{bottom:495.549900px;}
.yec{bottom:504.782250px;}
.yc8{bottom:504.783750px;}
.y5b{bottom:504.792750px;}
.y85{bottom:504.795750px;}
.y16a{bottom:511.329900px;}
.y191{bottom:512.049900px;}
.yb0{bottom:523.509750px;}
.yeb{bottom:523.533750px;}
.yc7{bottom:523.535250px;}
.y5a{bottom:523.544250px;}
.y84{bottom:523.547250px;}
.y169{bottom:527.829900px;}
.y190{bottom:528.549900px;}
.yaf{bottom:542.261250px;}
.yea{bottom:542.285250px;}
.y59{bottom:542.295750px;}
.y139{bottom:542.297250px;}
.y83{bottom:542.298750px;}
.y1e{bottom:543.759450px;}
.y168{bottom:544.329900px;}
.y18f{bottom:545.049900px;}
.y1d{bottom:558.757950px;}
.y167{bottom:560.829900px;}
.yae{bottom:561.012750px;}
.ye9{bottom:561.036750px;}
.yc6{bottom:561.038250px;}
.y58{bottom:561.047250px;}
.y138{bottom:561.048750px;}
.y82{bottom:561.050250px;}
.y18e{bottom:561.549900px;}
.y1c{bottom:573.756450px;}
.y166{bottom:577.329900px;}
.y18d{bottom:578.049900px;}
.yad{bottom:579.764250px;}
.ye8{bottom:579.788250px;}
.yc5{bottom:579.789750px;}
.y57{bottom:579.798750px;}
.y137{bottom:579.800250px;}
.y81{bottom:579.801750px;}
.y1b{bottom:588.754950px;}
.y165{bottom:593.829900px;}
.y18c{bottom:594.549900px;}
.yac{bottom:598.515750px;}
.ye7{bottom:598.539750px;}
.yc4{bottom:598.541250px;}
.y136{bottom:598.545750px;}
.y56{bottom:598.550250px;}
.y1a{bottom:603.753450px;}
.y164{bottom:610.329900px;}
.y18b{bottom:611.049900px;}
.yab{bottom:617.267250px;}
.ye6{bottom:617.291250px;}
.yc3{bottom:617.292750px;}
.y80{bottom:617.295750px;}
.y135{bottom:617.297250px;}
.y55{bottom:617.301750px;}
.y19{bottom:618.751950px;}
.y163{bottom:626.829900px;}
.y18a{bottom:627.549900px;}
.y18{bottom:633.750450px;}
.yaa{bottom:636.018750px;}
.ye5{bottom:636.042750px;}
.yc2{bottom:636.044250px;}
.y7f{bottom:636.047250px;}
.y134{bottom:636.048750px;}
.y162{bottom:643.329900px;}
.y189{bottom:644.049900px;}
.y17{bottom:648.748950px;}
.ya9{bottom:654.770250px;}
.y54{bottom:654.791250px;}
.ye4{bottom:654.794250px;}
.yc1{bottom:654.795750px;}
.y7e{bottom:654.798750px;}
.y133{bottom:654.800250px;}
.y161{bottom:659.829900px;}
.y188{bottom:660.549900px;}
.y16{bottom:663.747450px;}
.ya8{bottom:673.521750px;}
.y132{bottom:673.536750px;}
.y53{bottom:673.542750px;}
.ye3{bottom:673.545750px;}
.yc0{bottom:673.547250px;}
.y7d{bottom:673.550250px;}
.y160{bottom:676.329900px;}
.y187{bottom:677.049900px;}
.y15{bottom:678.745950px;}
.ya7{bottom:692.273250px;}
.y131{bottom:692.288250px;}
.y52{bottom:692.294250px;}
.ye2{bottom:692.297250px;}
.ybf{bottom:692.298750px;}
.y15f{bottom:692.829900px;}
.y186{bottom:693.549900px;}
.y14{bottom:693.744450px;}
.y13{bottom:708.742950px;}
.y15e{bottom:709.329900px;}
.y185{bottom:710.049900px;}
.ya6{bottom:711.024750px;}
.y130{bottom:711.039750px;}
.y51{bottom:711.045750px;}
.ye1{bottom:711.048750px;}
.ybe{bottom:711.050250px;}
.y12{bottom:723.741450px;}
.y15d{bottom:725.829900px;}
.y184{bottom:726.549900px;}
.ya5{bottom:729.776250px;}
.y122{bottom:729.791250px;}
.y50{bottom:729.797250px;}
.ye0{bottom:729.800250px;}
.ybd{bottom:729.801750px;}
.y11{bottom:738.739950px;}
.y104{bottom:739.809450px;}
.y15c{bottom:742.329900px;}
.y183{bottom:743.049900px;}
.ya4{bottom:748.527750px;}
.y121{bottom:748.542750px;}
.y4f{bottom:748.548750px;}
.ydf{bottom:748.551750px;}
.y10{bottom:753.738450px;}
.y15b{bottom:758.829900px;}
.y182{bottom:759.549900px;}
.ya3{bottom:767.279250px;}
.y120{bottom:767.294250px;}
.y4e{bottom:767.300250px;}
.yf{bottom:768.736950px;}
.y15a{bottom:775.329900px;}
.y181{bottom:776.049900px;}
.ye{bottom:783.735450px;}
.ya2{bottom:786.030750px;}
.y11f{bottom:786.045750px;}
.y4d{bottom:786.051750px;}
.y159{bottom:791.829900px;}
.y180{bottom:792.549900px;}
.ybc{bottom:798.320550px;}
.yd{bottom:798.733950px;}
.y103{bottom:800.565450px;}
.y11e{bottom:804.797250px;}
.y158{bottom:808.329900px;}
.y17f{bottom:809.049900px;}
.yc{bottom:813.732450px;}
.ybb{bottom:814.820550px;}
.y102{bottom:817.065450px;}
.ya1{bottom:823.533750px;}
.y7c{bottom:823.544250px;}
.y4c{bottom:823.547250px;}
.y12f{bottom:823.548750px;}
.y157{bottom:824.829900px;}
.y17e{bottom:825.549900px;}
.yb{bottom:828.730950px;}
.y101{bottom:833.565450px;}
.y156{bottom:841.329900px;}
.y17d{bottom:842.049900px;}
.ya0{bottom:842.285250px;}
.y7b{bottom:842.295750px;}
.y4b{bottom:842.298750px;}
.y11d{bottom:842.300250px;}
.ya{bottom:843.729450px;}
.y155{bottom:857.829900px;}
.y17c{bottom:858.549900px;}
.y9{bottom:858.727950px;}
.y9f{bottom:861.036750px;}
.y7a{bottom:861.047250px;}
.y4a{bottom:861.050250px;}
.y11c{bottom:861.051750px;}
.y8{bottom:873.726450px;}
.y154{bottom:874.329900px;}
.y17b{bottom:875.049900px;}
.y9e{bottom:879.788250px;}
.y49{bottom:879.795750px;}
.y79{bottom:879.798750px;}
.y7{bottom:888.724950px;}
.y153{bottom:890.829900px;}
.y17a{bottom:891.549900px;}
.y9d{bottom:898.539750px;}
.y48{bottom:898.547250px;}
.y78{bottom:898.550250px;}
.y6{bottom:903.723450px;}
.y152{bottom:907.329900px;}
.y179{bottom:908.049900px;}
.y11b{bottom:915.379650px;}
.y9c{bottom:917.291250px;}
.y47{bottom:917.298750px;}
.y77{bottom:917.301750px;}
.y1f{bottom:923.289300px;}
.y151{bottom:923.829900px;}
.y178{bottom:924.549900px;}
.y11a{bottom:931.879650px;}
.y9b{bottom:936.042750px;}
.y150{bottom:940.329900px;}
.y177{bottom:941.049900px;}
.y119{bottom:949.119900px;}
.y46{bottom:954.794250px;}
.y76{bottom:954.797250px;}
.y14f{bottom:956.829900px;}
.y176{bottom:957.549900px;}
.y118{bottom:965.619900px;}
.y26{bottom:965.976300px;}
.y14e{bottom:973.329900px;}
.y45{bottom:973.545750px;}
.y75{bottom:973.548750px;}
.y175{bottom:974.049900px;}
.y25{bottom:982.473300px;}
.y117{bottom:982.860150px;}
.y14d{bottom:989.829900px;}
.y174{bottom:990.549900px;}
.y44{bottom:992.297250px;}
.y74{bottom:992.300250px;}
.y116{bottom:1000.100400px;}
.y14c{bottom:1006.329900px;}
.y173{bottom:1007.049900px;}
.y73{bottom:1011.035250px;}
.y43{bottom:1011.048750px;}
.y115{bottom:1016.600400px;}
.y2e{bottom:1021.700700px;}
.y14b{bottom:1022.829900px;}
.y172{bottom:1023.549900px;}
.y72{bottom:1029.786750px;}
.y42{bottom:1029.800250px;}
.y114{bottom:1033.845300px;}
.y14a{bottom:1039.329900px;}
.y171{bottom:1040.049900px;}
.y2d{bottom:1043.300700px;}
.y71{bottom:1048.538250px;}
.y41{bottom:1048.551750px;}
.y113{bottom:1050.345300px;}
.y149{bottom:1055.829900px;}
.y170{bottom:1056.549900px;}
.y70{bottom:1067.289750px;}
.y112{bottom:1069.329300px;}
.y21{bottom:1072.903050px;}
.y16f{bottom:1073.049900px;}
.yba{bottom:1079.564550px;}
.y24{bottom:1082.937000px;}
.y6f{bottom:1086.041250px;}
.y40{bottom:1086.051750px;}
.y148{bottom:1088.829900px;}
.y16e{bottom:1089.549900px;}
.y111{bottom:1090.065300px;}
.yb9{bottom:1096.064550px;}
.y100{bottom:1096.065450px;}
.y23{bottom:1097.937000px;}
.y20{bottom:1105.303050px;}
.y22{bottom:1112.937000px;}
.hc{height:27.537891px;}
.hf{height:34.320000px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.he{height:35.616000px;}
.hd{height:36.336000px;}
.h4{height:39.339844px;}
.h10{height:39.385444px;}
.h1a{height:40.443525px;}
.h1b{height:40.462125px;}
.h19{height:42.317044px;}
.h7{height:44.520000px;}
.h9{height:45.507891px;}
.hb{height:45.519291px;}
.h8{height:45.519891px;}
.h1d{height:45.531891px;}
.h14{height:45.537891px;}
.h13{height:45.543891px;}
.h12{height:45.549891px;}
.h16{height:45.555891px;}
.h15{height:45.561891px;}
.h18{height:45.567891px;}
.h1e{height:45.579891px;}
.h17{height:45.585891px;}
.h1c{height:45.597891px;}
.h5{height:47.244141px;}
.h1f{height:51.942000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x13{left:88.365900px;}
.x14{left:89.559000px;}
.x1b{left:91.601850px;}
.x19{left:103.039350px;}
.x15{left:107.559000px;}
.x1d{left:116.291250px;}
.x11{left:139.339200px;}
.x5{left:270.660900px;}
.xf{left:303.066600px;}
.xd{left:322.290600px;}
.xe{left:325.626600px;}
.x7{left:334.704900px;}
.x9{left:340.692900px;}
.x8{left:351.372900px;}
.x6{left:356.676900px;}
.x10{left:369.330600px;}
.x1c{left:377.981850px;}
.xa{left:400.716900px;}
.x3{left:402.917250px;}
.x4{left:407.777250px;}
.x18{left:451.325100px;}
.x12{left:455.592300px;}
.x1{left:469.770150px;}
.x16{left:474.097500px;}
.x1a{left:487.837950px;}
.x17{left:492.094500px;}
.x1e{left:501.095250px;}
.xc{left:574.098150px;}
.xb{left:578.436150px;}
@media print{
.v3{vertical-align:-15.993067pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v5{vertical-align:14.191467pt;}
.v1{vertical-align:15.984000pt;}
.ls2d{letter-spacing:-6.058667pt;}
.ls1a{letter-spacing:-5.290667pt;}
.ls25{letter-spacing:-4.437333pt;}
.ls23{letter-spacing:-4.352000pt;}
.ls18{letter-spacing:-4.224000pt;}
.ls1e{letter-spacing:-3.157333pt;}
.ls2a{letter-spacing:-2.645333pt;}
.ls11{letter-spacing:-1.834667pt;}
.ls22{letter-spacing:-1.621333pt;}
.ls20{letter-spacing:-1.450667pt;}
.ls1c{letter-spacing:-1.408000pt;}
.ls21{letter-spacing:-1.280000pt;}
.ls28{letter-spacing:-1.024000pt;}
.ls2c{letter-spacing:-0.938667pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls2e{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.597333pt;}
.ls19{letter-spacing:-0.554667pt;}
.lsa{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.400000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.168000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls14{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005333pt;}
.ls1b{letter-spacing:0.085333pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.469333pt;}
.lsc{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.554667pt;}
.ls17{letter-spacing:0.597333pt;}
.ls5{letter-spacing:7.125333pt;}
.ls0{letter-spacing:10.656000pt;}
.lsd{letter-spacing:174.890667pt;}
.ls3{letter-spacing:182.662400pt;}
.ls8{letter-spacing:244.850133pt;}
.ws36{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws39{word-spacing:-12.416000pt;}
.ws38{word-spacing:-12.373333pt;}
.ws37{word-spacing:-12.032000pt;}
.ws3a{word-spacing:-11.989333pt;}
.ws2{word-spacing:-9.340800pt;}
.ws10{word-spacing:-9.172800pt;}
.ws11{word-spacing:-2.688000pt;}
.ws40{word-spacing:-2.090667pt;}
.ws21{word-spacing:-1.968000pt;}
.ws23{word-spacing:-1.872000pt;}
.ws5{word-spacing:-1.824000pt;}
.ws58{word-spacing:-0.597333pt;}
.ws3f{word-spacing:-0.554667pt;}
.ws3c{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.469333pt;}
.wsd{word-spacing:-0.426667pt;}
.ws31{word-spacing:-0.288000pt;}
.ws1d{word-spacing:-0.240000pt;}
.ws48{word-spacing:-0.128000pt;}
.ws44{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.085333pt;}
.ws50{word-spacing:0.128000pt;}
.ws16{word-spacing:0.168000pt;}
.wsf{word-spacing:0.240000pt;}
.ws54{word-spacing:0.384000pt;}
.ws33{word-spacing:0.400000pt;}
.ws35{word-spacing:0.426667pt;}
.ws19{word-spacing:0.480000pt;}
.ws32{word-spacing:0.528000pt;}
.ws42{word-spacing:0.554667pt;}
.ws52{word-spacing:0.597333pt;}
.ws46{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.768000pt;}
.ws57{word-spacing:0.853333pt;}
.ws4f{word-spacing:0.896000pt;}
.ws55{word-spacing:0.938667pt;}
.ws51{word-spacing:1.024000pt;}
.ws1b{word-spacing:1.056000pt;}
.ws6{word-spacing:1.200000pt;}
.ws4a{word-spacing:1.280000pt;}
.ws45{word-spacing:1.408000pt;}
.ws49{word-spacing:1.450667pt;}
.ws2e{word-spacing:1.536000pt;}
.ws2d{word-spacing:1.584000pt;}
.ws4b{word-spacing:1.621333pt;}
.ws3b{word-spacing:1.834667pt;}
.ws9{word-spacing:2.256000pt;}
.ws53{word-spacing:2.645333pt;}
.ws29{word-spacing:2.736000pt;}
.wsa{word-spacing:2.880000pt;}
.ws17{word-spacing:3.072000pt;}
.ws47{word-spacing:3.157333pt;}
.ws2c{word-spacing:3.168000pt;}
.ws41{word-spacing:4.224000pt;}
.ws22{word-spacing:4.272000pt;}
.ws4c{word-spacing:4.352000pt;}
.wse{word-spacing:4.394667pt;}
.ws4e{word-spacing:4.437333pt;}
.ws2b{word-spacing:4.464000pt;}
.ws34{word-spacing:5.077333pt;}
.ws18{word-spacing:5.184000pt;}
.ws43{word-spacing:5.290667pt;}
.ws20{word-spacing:5.760000pt;}
.ws56{word-spacing:6.058667pt;}
.ws15{word-spacing:6.384000pt;}
.ws2f{word-spacing:6.432000pt;}
.ws14{word-spacing:6.672000pt;}
.wsc{word-spacing:6.698667pt;}
.ws1a{word-spacing:6.768000pt;}
.ws12{word-spacing:6.960000pt;}
.ws2a{word-spacing:7.680000pt;}
.ws13{word-spacing:8.880000pt;}
.wsb{word-spacing:9.696000pt;}
.ws7{word-spacing:9.744000pt;}
.ws30{word-spacing:10.368000pt;}
.ws1f{word-spacing:11.232000pt;}
.ws8{word-spacing:11.856000pt;}
.ws1c{word-spacing:12.960000pt;}
.ws28{word-spacing:91.562667pt;}
.ws3{word-spacing:93.738667pt;}
.ws25{word-spacing:101.376000pt;}
.ws27{word-spacing:139.349333pt;}
.ws26{word-spacing:292.224000pt;}
.ws24{word-spacing:332.544000pt;}
.ws1{word-spacing:1104.048000pt;}
._b{margin-left:-25.972800pt;}
._d{margin-left:-16.691200pt;}
._22{margin-left:-5.355200pt;}
._c{margin-left:-4.328533pt;}
._6{margin-left:-2.601600pt;}
._1{margin-left:-1.420800pt;}
._8{width:1.636800pt;}
._2{width:2.702400pt;}
._3{width:3.638400pt;}
._0{width:4.756800pt;}
._4{width:5.947200pt;}
._9{width:7.022400pt;}
._5{width:8.068800pt;}
._a{width:9.619200pt;}
._7{width:10.732800pt;}
._13{width:11.721600pt;}
._28{width:12.903467pt;}
._14{width:14.390400pt;}
._12{width:15.494400pt;}
._11{width:16.488000pt;}
._16{width:20.668800pt;}
._29{width:23.195200pt;}
._27{width:24.630400pt;}
._25{width:25.910400pt;}
._23{width:27.419200pt;}
._24{width:29.964800pt;}
._26{width:32.868800pt;}
._e{width:33.826187pt;}
._20{width:48.554667pt;}
._1f{width:50.587200pt;}
._21{width:53.364267pt;}
._19{width:103.424000pt;}
._1d{width:121.472000pt;}
._17{width:125.098667pt;}
._1b{width:146.432000pt;}
._1c{width:170.154667pt;}
._1e{width:174.890667pt;}
._f{width:182.659680pt;}
._1a{width:308.821333pt;}
._18{width:605.141333pt;}
._15{width:838.604267pt;}
._10{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:15.379333pt;}
.y3e{bottom:41.748933pt;}
.y3f{bottom:41.927067pt;}
.y9a{bottom:41.930400pt;}
.y99{bottom:42.592000pt;}
.y34{bottom:52.510800pt;}
.y38{bottom:52.617467pt;}
.y33{bottom:68.510800pt;}
.y37{bottom:68.617467pt;}
.yb8{bottom:80.280400pt;}
.y147{bottom:80.712667pt;}
.yde{bottom:82.000667pt;}
.y12e{bottom:82.036667pt;}
.y6e{bottom:82.038000pt;}
.y110{bottom:82.043333pt;}
.y32{bottom:84.510800pt;}
.y36{bottom:84.617467pt;}
.yb7{bottom:94.947067pt;}
.y146{bottom:95.379333pt;}
.yff{bottom:98.667333pt;}
.ydd{bottom:98.668667pt;}
.y98{bottom:98.702000pt;}
.y12d{bottom:98.704667pt;}
.y6d{bottom:98.706000pt;}
.y10f{bottom:98.711333pt;}
.y31{bottom:100.510800pt;}
.y35{bottom:100.617467pt;}
.yb6{bottom:109.613733pt;}
.y145{bottom:110.046000pt;}
.yfe{bottom:115.335333pt;}
.ydc{bottom:115.336667pt;}
.y10e{bottom:115.368667pt;}
.y97{bottom:115.370000pt;}
.y12c{bottom:115.372667pt;}
.y6c{bottom:115.374000pt;}
.yb5{bottom:124.280400pt;}
.y144{bottom:124.712667pt;}
.yfd{bottom:132.003333pt;}
.ydb{bottom:132.004667pt;}
.y10d{bottom:132.036667pt;}
.y96{bottom:132.038000pt;}
.y12b{bottom:132.040667pt;}
.y6b{bottom:132.042000pt;}
.y27{bottom:141.664933pt;}
.yfc{bottom:148.671333pt;}
.yda{bottom:148.672667pt;}
.y10c{bottom:148.704667pt;}
.y95{bottom:148.706000pt;}
.y12a{bottom:148.708667pt;}
.y6a{bottom:148.710000pt;}
.yfb{bottom:165.339333pt;}
.yd9{bottom:165.340667pt;}
.y143{bottom:165.360667pt;}
.y10b{bottom:165.372667pt;}
.y94{bottom:165.374000pt;}
.y129{bottom:165.376667pt;}
.y69{bottom:165.378000pt;}
.y2c{bottom:181.611600pt;}
.y5{bottom:181.612800pt;}
.yfa{bottom:182.007333pt;}
.yd8{bottom:182.008667pt;}
.y142{bottom:182.028667pt;}
.y93{bottom:182.042000pt;}
.y128{bottom:182.044667pt;}
.y68{bottom:182.046000pt;}
.y2b{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.yf9{bottom:198.675333pt;}
.yd7{bottom:198.676667pt;}
.y141{bottom:198.696667pt;}
.y10a{bottom:198.708667pt;}
.y92{bottom:198.710000pt;}
.y2a{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.yf8{bottom:215.343333pt;}
.yd6{bottom:215.344667pt;}
.y140{bottom:215.364667pt;}
.y67{bottom:215.371333pt;}
.y109{bottom:215.376667pt;}
.y91{bottom:215.378000pt;}
.y29{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.yf7{bottom:232.011333pt;}
.yd5{bottom:232.012667pt;}
.y13f{bottom:232.032667pt;}
.y66{bottom:232.039333pt;}
.y108{bottom:232.044667pt;}
.y90{bottom:232.046000pt;}
.y28{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.yf6{bottom:248.679333pt;}
.yd4{bottom:248.680667pt;}
.y13e{bottom:248.700667pt;}
.y65{bottom:248.707333pt;}
.y127{bottom:248.712667pt;}
.yf5{bottom:265.347333pt;}
.yd3{bottom:265.348667pt;}
.y13d{bottom:265.368667pt;}
.y8f{bottom:265.370000pt;}
.y64{bottom:265.375333pt;}
.y30{bottom:278.908000pt;}
.yf4{bottom:282.015333pt;}
.yd2{bottom:282.016667pt;}
.y13c{bottom:282.036667pt;}
.y8e{bottom:282.038000pt;}
.y63{bottom:282.043333pt;}
.y2f{bottom:289.309733pt;}
.yf3{bottom:298.683333pt;}
.yd1{bottom:298.684667pt;}
.y13b{bottom:298.704667pt;}
.y8d{bottom:298.706000pt;}
.y62{bottom:298.711333pt;}
.yf2{bottom:315.351333pt;}
.yd0{bottom:315.352667pt;}
.y126{bottom:315.372667pt;}
.y8c{bottom:315.374000pt;}
.y61{bottom:315.379333pt;}
.yf1{bottom:332.019333pt;}
.ycf{bottom:332.020667pt;}
.y125{bottom:332.040667pt;}
.y8b{bottom:332.042000pt;}
.yce{bottom:348.688667pt;}
.y60{bottom:348.708667pt;}
.y8a{bottom:348.710000pt;}
.y107{bottom:348.712667pt;}
.yb4{bottom:357.613733pt;}
.yf0{bottom:365.355333pt;}
.ycd{bottom:365.356667pt;}
.y5f{bottom:365.376667pt;}
.y89{bottom:365.378000pt;}
.y3d{bottom:365.976800pt;}
.y196{bottom:381.822133pt;}
.yef{bottom:382.023333pt;}
.ycc{bottom:382.024667pt;}
.y5e{bottom:382.044667pt;}
.y88{bottom:382.046000pt;}
.y3c{bottom:383.304800pt;}
.y3b{bottom:392.643467pt;}
.y195{bottom:396.488800pt;}
.yb3{bottom:398.670000pt;}
.yee{bottom:398.691333pt;}
.ycb{bottom:398.692667pt;}
.y124{bottom:398.710000pt;}
.y5d{bottom:398.712667pt;}
.y106{bottom:409.608400pt;}
.y3a{bottom:409.971467pt;}
.y16d{bottom:410.515467pt;}
.y194{bottom:411.155467pt;}
.yb2{bottom:415.338000pt;}
.yca{bottom:415.360667pt;}
.y87{bottom:415.371333pt;}
.y123{bottom:415.378000pt;}
.y105{bottom:424.275067pt;}
.y16c{bottom:425.182133pt;}
.y193{bottom:425.822133pt;}
.yb1{bottom:432.006000pt;}
.yed{bottom:432.027333pt;}
.yc9{bottom:432.028667pt;}
.y5c{bottom:432.036667pt;}
.y86{bottom:432.039333pt;}
.y13a{bottom:432.046000pt;}
.y16b{bottom:439.848800pt;}
.y192{bottom:440.488800pt;}
.yec{bottom:448.695333pt;}
.yc8{bottom:448.696667pt;}
.y5b{bottom:448.704667pt;}
.y85{bottom:448.707333pt;}
.y16a{bottom:454.515467pt;}
.y191{bottom:455.155467pt;}
.yb0{bottom:465.342000pt;}
.yeb{bottom:465.363333pt;}
.yc7{bottom:465.364667pt;}
.y5a{bottom:465.372667pt;}
.y84{bottom:465.375333pt;}
.y169{bottom:469.182133pt;}
.y190{bottom:469.822133pt;}
.yaf{bottom:482.010000pt;}
.yea{bottom:482.031333pt;}
.y59{bottom:482.040667pt;}
.y139{bottom:482.042000pt;}
.y83{bottom:482.043333pt;}
.y1e{bottom:483.341733pt;}
.y168{bottom:483.848800pt;}
.y18f{bottom:484.488800pt;}
.y1d{bottom:496.673733pt;}
.y167{bottom:498.515467pt;}
.yae{bottom:498.678000pt;}
.ye9{bottom:498.699333pt;}
.yc6{bottom:498.700667pt;}
.y58{bottom:498.708667pt;}
.y138{bottom:498.710000pt;}
.y82{bottom:498.711333pt;}
.y18e{bottom:499.155467pt;}
.y1c{bottom:510.005733pt;}
.y166{bottom:513.182133pt;}
.y18d{bottom:513.822133pt;}
.yad{bottom:515.346000pt;}
.ye8{bottom:515.367333pt;}
.yc5{bottom:515.368667pt;}
.y57{bottom:515.376667pt;}
.y137{bottom:515.378000pt;}
.y81{bottom:515.379333pt;}
.y1b{bottom:523.337733pt;}
.y165{bottom:527.848800pt;}
.y18c{bottom:528.488800pt;}
.yac{bottom:532.014000pt;}
.ye7{bottom:532.035333pt;}
.yc4{bottom:532.036667pt;}
.y136{bottom:532.040667pt;}
.y56{bottom:532.044667pt;}
.y1a{bottom:536.669733pt;}
.y164{bottom:542.515467pt;}
.y18b{bottom:543.155467pt;}
.yab{bottom:548.682000pt;}
.ye6{bottom:548.703333pt;}
.yc3{bottom:548.704667pt;}
.y80{bottom:548.707333pt;}
.y135{bottom:548.708667pt;}
.y55{bottom:548.712667pt;}
.y19{bottom:550.001733pt;}
.y163{bottom:557.182133pt;}
.y18a{bottom:557.822133pt;}
.y18{bottom:563.333733pt;}
.yaa{bottom:565.350000pt;}
.ye5{bottom:565.371333pt;}
.yc2{bottom:565.372667pt;}
.y7f{bottom:565.375333pt;}
.y134{bottom:565.376667pt;}
.y162{bottom:571.848800pt;}
.y189{bottom:572.488800pt;}
.y17{bottom:576.665733pt;}
.ya9{bottom:582.018000pt;}
.y54{bottom:582.036667pt;}
.ye4{bottom:582.039333pt;}
.yc1{bottom:582.040667pt;}
.y7e{bottom:582.043333pt;}
.y133{bottom:582.044667pt;}
.y161{bottom:586.515467pt;}
.y188{bottom:587.155467pt;}
.y16{bottom:589.997733pt;}
.ya8{bottom:598.686000pt;}
.y132{bottom:598.699333pt;}
.y53{bottom:598.704667pt;}
.ye3{bottom:598.707333pt;}
.yc0{bottom:598.708667pt;}
.y7d{bottom:598.711333pt;}
.y160{bottom:601.182133pt;}
.y187{bottom:601.822133pt;}
.y15{bottom:603.329733pt;}
.ya7{bottom:615.354000pt;}
.y131{bottom:615.367333pt;}
.y52{bottom:615.372667pt;}
.ye2{bottom:615.375333pt;}
.ybf{bottom:615.376667pt;}
.y15f{bottom:615.848800pt;}
.y186{bottom:616.488800pt;}
.y14{bottom:616.661733pt;}
.y13{bottom:629.993733pt;}
.y15e{bottom:630.515467pt;}
.y185{bottom:631.155467pt;}
.ya6{bottom:632.022000pt;}
.y130{bottom:632.035333pt;}
.y51{bottom:632.040667pt;}
.ye1{bottom:632.043333pt;}
.ybe{bottom:632.044667pt;}
.y12{bottom:643.325733pt;}
.y15d{bottom:645.182133pt;}
.y184{bottom:645.822133pt;}
.ya5{bottom:648.690000pt;}
.y122{bottom:648.703333pt;}
.y50{bottom:648.708667pt;}
.ye0{bottom:648.711333pt;}
.ybd{bottom:648.712667pt;}
.y11{bottom:656.657733pt;}
.y104{bottom:657.608400pt;}
.y15c{bottom:659.848800pt;}
.y183{bottom:660.488800pt;}
.ya4{bottom:665.358000pt;}
.y121{bottom:665.371333pt;}
.y4f{bottom:665.376667pt;}
.ydf{bottom:665.379333pt;}
.y10{bottom:669.989733pt;}
.y15b{bottom:674.515467pt;}
.y182{bottom:675.155467pt;}
.ya3{bottom:682.026000pt;}
.y120{bottom:682.039333pt;}
.y4e{bottom:682.044667pt;}
.yf{bottom:683.321733pt;}
.y15a{bottom:689.182133pt;}
.y181{bottom:689.822133pt;}
.ye{bottom:696.653733pt;}
.ya2{bottom:698.694000pt;}
.y11f{bottom:698.707333pt;}
.y4d{bottom:698.712667pt;}
.y159{bottom:703.848800pt;}
.y180{bottom:704.488800pt;}
.ybc{bottom:709.618267pt;}
.yd{bottom:709.985733pt;}
.y103{bottom:711.613733pt;}
.y11e{bottom:715.375333pt;}
.y158{bottom:718.515467pt;}
.y17f{bottom:719.155467pt;}
.yc{bottom:723.317733pt;}
.ybb{bottom:724.284933pt;}
.y102{bottom:726.280400pt;}
.ya1{bottom:732.030000pt;}
.y7c{bottom:732.039333pt;}
.y4c{bottom:732.042000pt;}
.y12f{bottom:732.043333pt;}
.y157{bottom:733.182133pt;}
.y17e{bottom:733.822133pt;}
.yb{bottom:736.649733pt;}
.y101{bottom:740.947067pt;}
.y156{bottom:747.848800pt;}
.y17d{bottom:748.488800pt;}
.ya0{bottom:748.698000pt;}
.y7b{bottom:748.707333pt;}
.y4b{bottom:748.710000pt;}
.y11d{bottom:748.711333pt;}
.ya{bottom:749.981733pt;}
.y155{bottom:762.515467pt;}
.y17c{bottom:763.155467pt;}
.y9{bottom:763.313733pt;}
.y9f{bottom:765.366000pt;}
.y7a{bottom:765.375333pt;}
.y4a{bottom:765.378000pt;}
.y11c{bottom:765.379333pt;}
.y8{bottom:776.645733pt;}
.y154{bottom:777.182133pt;}
.y17b{bottom:777.822133pt;}
.y9e{bottom:782.034000pt;}
.y49{bottom:782.040667pt;}
.y79{bottom:782.043333pt;}
.y7{bottom:789.977733pt;}
.y153{bottom:791.848800pt;}
.y17a{bottom:792.488800pt;}
.y9d{bottom:798.702000pt;}
.y48{bottom:798.708667pt;}
.y78{bottom:798.711333pt;}
.y6{bottom:803.309733pt;}
.y152{bottom:806.515467pt;}
.y179{bottom:807.155467pt;}
.y11b{bottom:813.670800pt;}
.y9c{bottom:815.370000pt;}
.y47{bottom:815.376667pt;}
.y77{bottom:815.379333pt;}
.y1f{bottom:820.701600pt;}
.y151{bottom:821.182133pt;}
.y178{bottom:821.822133pt;}
.y11a{bottom:828.337467pt;}
.y9b{bottom:832.038000pt;}
.y150{bottom:835.848800pt;}
.y177{bottom:836.488800pt;}
.y119{bottom:843.662133pt;}
.y46{bottom:848.706000pt;}
.y76{bottom:848.708667pt;}
.y14f{bottom:850.515467pt;}
.y176{bottom:851.155467pt;}
.y118{bottom:858.328800pt;}
.y26{bottom:858.645600pt;}
.y14e{bottom:865.182133pt;}
.y45{bottom:865.374000pt;}
.y75{bottom:865.376667pt;}
.y175{bottom:865.822133pt;}
.y25{bottom:873.309600pt;}
.y117{bottom:873.653467pt;}
.y14d{bottom:879.848800pt;}
.y174{bottom:880.488800pt;}
.y44{bottom:882.042000pt;}
.y74{bottom:882.044667pt;}
.y116{bottom:888.978133pt;}
.y14c{bottom:894.515467pt;}
.y173{bottom:895.155467pt;}
.y73{bottom:898.698000pt;}
.y43{bottom:898.710000pt;}
.y115{bottom:903.644800pt;}
.y2e{bottom:908.178400pt;}
.y14b{bottom:909.182133pt;}
.y172{bottom:909.822133pt;}
.y72{bottom:915.366000pt;}
.y42{bottom:915.378000pt;}
.y114{bottom:918.973600pt;}
.y14a{bottom:923.848800pt;}
.y171{bottom:924.488800pt;}
.y2d{bottom:927.378400pt;}
.y71{bottom:932.034000pt;}
.y41{bottom:932.046000pt;}
.y113{bottom:933.640267pt;}
.y149{bottom:938.515467pt;}
.y170{bottom:939.155467pt;}
.y70{bottom:948.702000pt;}
.y112{bottom:950.514933pt;}
.y21{bottom:953.691600pt;}
.y16f{bottom:953.822133pt;}
.yba{bottom:959.612933pt;}
.y24{bottom:962.610667pt;}
.y6f{bottom:965.370000pt;}
.y40{bottom:965.379333pt;}
.y148{bottom:967.848800pt;}
.y16e{bottom:968.488800pt;}
.y111{bottom:968.946933pt;}
.yb9{bottom:974.279600pt;}
.y100{bottom:974.280400pt;}
.y23{bottom:975.944000pt;}
.y20{bottom:982.491600pt;}
.y22{bottom:989.277333pt;}
.hc{height:24.478125pt;}
.hf{height:30.506667pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.he{height:31.658667pt;}
.hd{height:32.298667pt;}
.h4{height:34.968750pt;}
.h10{height:35.009283pt;}
.h1a{height:35.949800pt;}
.h1b{height:35.966333pt;}
.h19{height:37.615150pt;}
.h7{height:39.573333pt;}
.h9{height:40.451458pt;}
.hb{height:40.461592pt;}
.h8{height:40.462125pt;}
.h1d{height:40.472792pt;}
.h14{height:40.478125pt;}
.h13{height:40.483458pt;}
.h12{height:40.488792pt;}
.h16{height:40.494125pt;}
.h15{height:40.499458pt;}
.h18{height:40.504792pt;}
.h1e{height:40.515458pt;}
.h17{height:40.520792pt;}
.h1c{height:40.531458pt;}
.h5{height:41.994792pt;}
.h1f{height:46.170667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x13{left:78.547467pt;}
.x14{left:79.608000pt;}
.x1b{left:81.423867pt;}
.x19{left:91.590533pt;}
.x15{left:95.608000pt;}
.x1d{left:103.370000pt;}
.x11{left:123.857067pt;}
.x5{left:240.587467pt;}
.xf{left:269.392533pt;}
.xd{left:286.480533pt;}
.xe{left:289.445867pt;}
.x7{left:297.515467pt;}
.x9{left:302.838133pt;}
.x8{left:312.331467pt;}
.x6{left:317.046133pt;}
.x10{left:328.293867pt;}
.x1c{left:335.983867pt;}
.xa{left:356.192800pt;}
.x3{left:358.148667pt;}
.x4{left:362.468667pt;}
.x18{left:401.177867pt;}
.x12{left:404.970933pt;}
.x1{left:417.573467pt;}
.x16{left:421.420000pt;}
.x1a{left:433.633733pt;}
.x17{left:437.417333pt;}
.x1e{left:445.418000pt;}
.xc{left:510.309467pt;}
.xb{left:514.165467pt;}
}




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