
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_48773b586c36d14f1b7d7851.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_48819cd96fcf2fa8bb183241.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_c83d738f02e0803dcbfeefe6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.963000;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_b4277f5d23508f96b3a0bf37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137667;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_c526fecdc722e5b5c910ec8d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.140667;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_35ab980338cc9deba2f7a40f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.987000;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_b0f847602cf69508ca88009d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_00f362f1f36c425e7813c201.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.968000;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_971adad8e1f66a307b9b9192.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.943000;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_514e07bd3839b90537013a1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_808400f7f45fc3bd0a2ba222.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-7.296000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.727000px;}
.ls1{letter-spacing:-8.316864px;}
.ls13{letter-spacing:-2.331000px;}
.lsb{letter-spacing:-0.693000px;}
.ls3{letter-spacing:-0.648000px;}
.ls15{letter-spacing:-0.567000px;}
.ls6{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.441000px;}
.lsa{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.315000px;}
.ls18{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.189000px;}
.lsf{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.126000px;}
.ls14{letter-spacing:0.189000px;}
.ls19{letter-spacing:0.252000px;}
.lse{letter-spacing:0.257103px;}
.ls4{letter-spacing:0.315000px;}
.lsc{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.567000px;}
.ls12{letter-spacing:0.756000px;}
.ls1a{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.071000px;}
.ls16{letter-spacing:1.134000px;}
.ls17{letter-spacing:2.205000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws32{word-spacing:-13.005000px;}
.ws8{word-spacing:-12.600000px;}
.ws28{word-spacing:-12.411000px;}
.ws7{word-spacing:-7.639632px;}
.wse{word-spacing:-2.640000px;}
.wsc{word-spacing:-2.520000px;}
.ws2e{word-spacing:-2.205000px;}
.ws11{word-spacing:-1.620000px;}
.ws2d{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.071000px;}
.ws36{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.756000px;}
.ws25{word-spacing:-0.567000px;}
.ws22{word-spacing:-0.504000px;}
.ws17{word-spacing:-0.315000px;}
.ws33{word-spacing:-0.252000px;}
.ws2b{word-spacing:-0.189000px;}
.ws1b{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws24{word-spacing:0.126000px;}
.ws26{word-spacing:0.189000px;}
.ws15{word-spacing:0.300000px;}
.ws1c{word-spacing:0.315000px;}
.ws1f{word-spacing:0.378000px;}
.ws23{word-spacing:0.441000px;}
.ws30{word-spacing:0.504000px;}
.ws2c{word-spacing:0.567000px;}
.ws20{word-spacing:0.693000px;}
.wsd{word-spacing:0.900000px;}
.wsf{word-spacing:1.020000px;}
.ws16{word-spacing:1.980000px;}
.ws2a{word-spacing:2.331000px;}
.ws12{word-spacing:3.000000px;}
.ws14{word-spacing:3.180000px;}
.ws10{word-spacing:4.320000px;}
.wsb{word-spacing:5.160000px;}
.ws13{word-spacing:5.460000px;}
.ws19{word-spacing:5.481000px;}
.wsa{word-spacing:7.320000px;}
.ws18{word-spacing:8.064000px;}
.ws34{word-spacing:9.009000px;}
.ws35{word-spacing:9.513000px;}
.ws21{word-spacing:12.663000px;}
.ws1a{word-spacing:15.624000px;}
.ws2f{word-spacing:18.711000px;}
.ws6{word-spacing:1201.714200px;}
.ws9{word-spacing:1201.714800px;}
.ws27{word-spacing:6172.560000px;}
.ws31{word-spacing:6175.584000px;}
.ws5{word-spacing:6178.752000px;}
._23{margin-left:-15.371707px;}
._28{margin-left:-12.816000px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._5{margin-left:-1.066195px;}
._4{width:1.296000px;}
._7{width:2.684702px;}
._6{width:4.356000px;}
._e{width:5.718295px;}
._9{width:7.706698px;}
._8{width:8.950502px;}
._19{width:10.257286px;}
._f{width:11.450717px;}
._18{width:13.670710px;}
._b{width:14.678995px;}
._a{width:16.031702px;}
._10{width:17.963107px;}
._13{width:19.398602px;}
._14{width:20.594700px;}
._22{width:21.908705px;}
._11{width:23.133600px;}
._21{width:24.375598px;}
._20{width:25.749598px;}
._12{width:27.729002px;}
._d{width:28.799100px;}
._c{width:29.889902px;}
._1d{width:31.110895px;}
._1e{width:32.468100px;}
._25{width:34.202700px;}
._1a{width:36.432000px;}
._24{width:37.926002px;}
._15{width:39.330900px;}
._16{width:40.874400px;}
._26{width:42.545702px;}
._1f{width:46.031095px;}
._17{width:48.914698px;}
._1c{width:55.114205px;}
._1b{width:56.450702px;}
._27{width:679.634702px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:36.729000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.ya5{bottom:47.834700px;}
.y77{bottom:95.866200px;}
.y124{bottom:95.876700px;}
.yc9{bottom:96.065700px;}
.y4c{bottom:96.070800px;}
.yf8{bottom:96.301950px;}
.y76{bottom:116.860950px;}
.y123{bottom:116.871450px;}
.y33{bottom:116.939550px;}
.yc8{bottom:117.060450px;}
.y4b{bottom:117.065550px;}
.ya3{bottom:117.065700px;}
.y152{bottom:117.107700px;}
.yf7{bottom:117.296700px;}
.y75{bottom:137.855700px;}
.y122{bottom:137.866200px;}
.y18b{bottom:137.866950px;}
.y32{bottom:137.934300px;}
.yc7{bottom:138.055200px;}
.y4a{bottom:138.060300px;}
.ya2{bottom:138.060450px;}
.y151{bottom:138.102450px;}
.yf6{bottom:138.291450px;}
.y74{bottom:158.850450px;}
.y121{bottom:158.860950px;}
.y18a{bottom:158.866200px;}
.y31{bottom:158.929050px;}
.yc6{bottom:159.049950px;}
.y49{bottom:159.055050px;}
.ya1{bottom:159.055200px;}
.y150{bottom:159.097200px;}
.yf5{bottom:159.286200px;}
.y73{bottom:179.845200px;}
.y120{bottom:179.855700px;}
.y189{bottom:179.865450px;}
.y30{bottom:179.923800px;}
.yc5{bottom:180.044700px;}
.y48{bottom:180.049800px;}
.ya0{bottom:180.049950px;}
.y14f{bottom:180.091950px;}
.yf4{bottom:180.280950px;}
.y72{bottom:200.839950px;}
.y11f{bottom:200.850450px;}
.y188{bottom:200.864700px;}
.y2f{bottom:200.918550px;}
.yc4{bottom:201.039450px;}
.y47{bottom:201.044550px;}
.y9f{bottom:201.044700px;}
.y14e{bottom:201.086700px;}
.yf3{bottom:201.275700px;}
.y71{bottom:221.834700px;}
.y11e{bottom:221.845200px;}
.y187{bottom:221.863950px;}
.y2e{bottom:221.913300px;}
.yc3{bottom:222.034200px;}
.y46{bottom:222.039300px;}
.y9e{bottom:222.039450px;}
.y14d{bottom:222.081450px;}
.yf2{bottom:222.270450px;}
.y11d{bottom:242.839950px;}
.y186{bottom:242.863200px;}
.y2d{bottom:242.908050px;}
.yc2{bottom:243.028950px;}
.y45{bottom:243.034050px;}
.y9d{bottom:243.034200px;}
.y14c{bottom:243.076200px;}
.yf1{bottom:243.265200px;}
.y70{bottom:263.834700px;}
.y2c{bottom:263.902800px;}
.yc1{bottom:264.023700px;}
.y44{bottom:264.028800px;}
.y9c{bottom:264.028950px;}
.y14b{bottom:264.070950px;}
.yf0{bottom:264.259950px;}
.y185{bottom:284.861700px;}
.y2b{bottom:284.897550px;}
.yc0{bottom:285.018450px;}
.y43{bottom:285.023550px;}
.y9b{bottom:285.023700px;}
.y14a{bottom:285.065700px;}
.yef{bottom:285.254700px;}
.y11c{bottom:305.834700px;}
.y184{bottom:305.860950px;}
.y2a{bottom:305.892300px;}
.ybf{bottom:306.013200px;}
.y42{bottom:306.018300px;}
.y149{bottom:306.060450px;}
.yee{bottom:306.249450px;}
.y183{bottom:326.860200px;}
.y29{bottom:326.887050px;}
.y6f{bottom:326.929200px;}
.ybe{bottom:327.007950px;}
.y41{bottom:327.013050px;}
.y9a{bottom:327.028950px;}
.y148{bottom:327.055200px;}
.yed{bottom:327.244200px;}
.y182{bottom:347.859450px;}
.y28{bottom:347.881800px;}
.y6e{bottom:347.923950px;}
.ybd{bottom:348.002700px;}
.y40{bottom:348.007800px;}
.y99{bottom:348.023700px;}
.y147{bottom:348.049950px;}
.yec{bottom:348.238950px;}
.y7{bottom:352.018200px;}
.y181{bottom:368.858700px;}
.y27{bottom:368.876550px;}
.y6d{bottom:368.918700px;}
.ybc{bottom:368.997450px;}
.y3f{bottom:369.002550px;}
.y98{bottom:369.018450px;}
.y146{bottom:369.044700px;}
.yeb{bottom:369.233700px;}
.y11b{bottom:369.485700px;}
.y9{bottom:381.914100px;}
.y26{bottom:389.871300px;}
.y6c{bottom:389.913450px;}
.ybb{bottom:389.992200px;}
.y3e{bottom:389.997300px;}
.y97{bottom:390.013200px;}
.y145{bottom:390.039450px;}
.yea{bottom:390.228450px;}
.y11a{bottom:390.480450px;}
.y180{bottom:410.857200px;}
.y25{bottom:410.866050px;}
.y6b{bottom:410.908200px;}
.yba{bottom:410.986950px;}
.y3d{bottom:410.992050px;}
.y96{bottom:411.007950px;}
.y144{bottom:411.034200px;}
.ye9{bottom:411.223200px;}
.y119{bottom:411.475200px;}
.y17f{bottom:431.856450px;}
.y24{bottom:431.860800px;}
.y6a{bottom:431.902950px;}
.yb9{bottom:431.981700px;}
.y3c{bottom:431.986800px;}
.y95{bottom:432.002700px;}
.y143{bottom:432.028950px;}
.ye8{bottom:432.217950px;}
.y118{bottom:432.469950px;}
.y6{bottom:445.018200px;}
.y23{bottom:452.855550px;}
.y17e{bottom:452.855700px;}
.y69{bottom:452.897700px;}
.yb8{bottom:452.976450px;}
.y3b{bottom:452.981550px;}
.y94{bottom:452.997450px;}
.y142{bottom:453.023700px;}
.ye7{bottom:453.212700px;}
.y117{bottom:453.464700px;}
.y22{bottom:473.850300px;}
.y17d{bottom:473.854950px;}
.y68{bottom:473.892450px;}
.yb7{bottom:473.971200px;}
.y3a{bottom:473.976300px;}
.y93{bottom:473.992200px;}
.y141{bottom:474.018450px;}
.ye6{bottom:474.207450px;}
.y116{bottom:474.459450px;}
.y21{bottom:494.845050px;}
.y17c{bottom:494.854200px;}
.y67{bottom:494.887200px;}
.yb6{bottom:494.965950px;}
.y39{bottom:494.971050px;}
.y163{bottom:494.981700px;}
.y92{bottom:494.986950px;}
.y140{bottom:495.013200px;}
.y166{bottom:495.202200px;}
.y115{bottom:495.454200px;}
.y20{bottom:515.839800px;}
.y66{bottom:515.881950px;}
.yb5{bottom:515.960700px;}
.y38{bottom:515.965800px;}
.y162{bottom:515.976450px;}
.y91{bottom:515.981700px;}
.y13f{bottom:516.007950px;}
.y165{bottom:516.196950px;}
.ye5{bottom:516.212700px;}
.y114{bottom:516.448950px;}
.y1f{bottom:536.834550px;}
.y17b{bottom:536.852700px;}
.y65{bottom:536.876700px;}
.yb4{bottom:536.955450px;}
.y37{bottom:536.960550px;}
.y161{bottom:536.971200px;}
.y90{bottom:536.976450px;}
.y13e{bottom:537.002700px;}
.y164{bottom:537.191700px;}
.ye4{bottom:537.207450px;}
.y113{bottom:537.443700px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y17a{bottom:557.851950px;}
.y64{bottom:557.871450px;}
.yb3{bottom:557.950200px;}
.y36{bottom:557.955300px;}
.y160{bottom:557.965950px;}
.y8f{bottom:557.971200px;}
.y13d{bottom:557.997450px;}
.ye3{bottom:558.202200px;}
.y112{bottom:558.438450px;}
.y1e{bottom:578.834700px;}
.y179{bottom:578.851200px;}
.yb2{bottom:578.944950px;}
.y35{bottom:578.950050px;}
.y15f{bottom:578.960700px;}
.y8e{bottom:578.965950px;}
.y13c{bottom:578.992200px;}
.ye2{bottom:579.196950px;}
.y111{bottom:579.433200px;}
.y1d{bottom:599.834700px;}
.y178{bottom:599.850450px;}
.y63{bottom:599.876700px;}
.yb1{bottom:599.939700px;}
.y34{bottom:599.944800px;}
.y15e{bottom:599.955450px;}
.y13b{bottom:599.986950px;}
.ye1{bottom:600.191700px;}
.y110{bottom:600.427950px;}
.y62{bottom:620.871450px;}
.yb0{bottom:620.934450px;}
.y15d{bottom:620.950200px;}
.y8d{bottom:620.971200px;}
.y13a{bottom:620.981700px;}
.ye0{bottom:621.186450px;}
.y10f{bottom:621.422700px;}
.y4{bottom:631.018200px;}
.y177{bottom:641.848950px;}
.y61{bottom:641.866200px;}
.y19c{bottom:641.887200px;}
.yaf{bottom:641.929200px;}
.y15c{bottom:641.944950px;}
.y8c{bottom:641.965950px;}
.y139{bottom:641.976450px;}
.ydf{bottom:642.181200px;}
.y10e{bottom:642.417450px;}
.y176{bottom:662.848200px;}
.y60{bottom:662.860950px;}
.y19b{bottom:662.886450px;}
.yae{bottom:662.923950px;}
.y15b{bottom:662.939700px;}
.y8b{bottom:662.960700px;}
.y138{bottom:662.971200px;}
.yde{bottom:663.175950px;}
.y10d{bottom:663.412200px;}
.y1c{bottom:683.834700px;}
.y175{bottom:683.847450px;}
.y5f{bottom:683.855700px;}
.y19a{bottom:683.885700px;}
.yad{bottom:683.918700px;}
.y15a{bottom:683.934450px;}
.y8a{bottom:683.955450px;}
.y137{bottom:683.965950px;}
.ydd{bottom:684.170700px;}
.y10c{bottom:684.406950px;}
.y1b{bottom:704.834700px;}
.y174{bottom:704.846700px;}
.y5e{bottom:704.850450px;}
.yac{bottom:704.913450px;}
.y159{bottom:704.929200px;}
.y89{bottom:704.950200px;}
.y136{bottom:704.960700px;}
.ydc{bottom:705.165450px;}
.y10b{bottom:705.401700px;}
.y1a{bottom:725.834700px;}
.y5d{bottom:725.845200px;}
.y173{bottom:725.845950px;}
.y199{bottom:725.884200px;}
.yab{bottom:725.908200px;}
.y158{bottom:725.923950px;}
.y88{bottom:725.944950px;}
.y135{bottom:725.955450px;}
.ydb{bottom:726.160200px;}
.y10a{bottom:726.396450px;}
.y19{bottom:746.834700px;}
.y5c{bottom:746.839950px;}
.y172{bottom:746.845200px;}
.y198{bottom:746.883450px;}
.yaa{bottom:746.902950px;}
.y157{bottom:746.918700px;}
.y87{bottom:746.939700px;}
.y134{bottom:746.950200px;}
.yda{bottom:747.154950px;}
.y109{bottom:747.391200px;}
.y3{bottom:751.738650px;}
.y18{bottom:767.834700px;}
.y197{bottom:767.882700px;}
.ya9{bottom:767.897700px;}
.y156{bottom:767.913450px;}
.y86{bottom:767.934450px;}
.y133{bottom:767.944950px;}
.yd9{bottom:768.149700px;}
.y108{bottom:768.385950px;}
.y5b{bottom:788.829450px;}
.y17{bottom:788.834700px;}
.y171{bottom:788.843700px;}
.y196{bottom:788.881950px;}
.ya8{bottom:788.892450px;}
.y155{bottom:788.908200px;}
.y85{bottom:788.929200px;}
.y132{bottom:788.939700px;}
.yd8{bottom:789.144450px;}
.y107{bottom:789.380700px;}
.y2{bottom:791.931000px;}
.y16{bottom:809.834700px;}
.y170{bottom:809.842950px;}
.y195{bottom:809.881200px;}
.ya7{bottom:809.887200px;}
.y154{bottom:809.902950px;}
.y84{bottom:809.923950px;}
.y131{bottom:809.934450px;}
.yd7{bottom:810.139200px;}
.y106{bottom:810.375450px;}
.y15{bottom:830.834700px;}
.y16f{bottom:830.842200px;}
.y194{bottom:830.880450px;}
.y5a{bottom:830.897700px;}
.y83{bottom:830.918700px;}
.y130{bottom:830.929200px;}
.yd6{bottom:831.133950px;}
.y105{bottom:831.370200px;}
.y14{bottom:851.834700px;}
.y16e{bottom:851.841450px;}
.y193{bottom:851.879700px;}
.y59{bottom:851.892450px;}
.y82{bottom:851.913450px;}
.y12f{bottom:851.923950px;}
.yd5{bottom:852.128700px;}
.y104{bottom:852.364950px;}
.y1{bottom:859.112850px;}
.y13{bottom:872.834700px;}
.y58{bottom:872.887200px;}
.y81{bottom:872.908200px;}
.y12e{bottom:872.918700px;}
.yd4{bottom:873.123450px;}
.y103{bottom:873.359700px;}
.y12{bottom:893.834700px;}
.y16d{bottom:893.839950px;}
.y192{bottom:893.878200px;}
.y57{bottom:893.881950px;}
.y80{bottom:893.902950px;}
.yd3{bottom:894.118200px;}
.y102{bottom:894.354450px;}
.y11{bottom:914.834700px;}
.y16c{bottom:914.839200px;}
.y56{bottom:914.876700px;}
.y191{bottom:914.877450px;}
.y7f{bottom:914.897700px;}
.y12d{bottom:914.923950px;}
.yd2{bottom:915.112950px;}
.y101{bottom:915.349200px;}
.y10{bottom:935.834700px;}
.y16b{bottom:935.838450px;}
.y55{bottom:935.871450px;}
.y190{bottom:935.876700px;}
.y7e{bottom:935.892450px;}
.y12c{bottom:935.918700px;}
.yd1{bottom:936.107700px;}
.y100{bottom:936.343950px;}
.yf{bottom:956.834700px;}
.y16a{bottom:956.837700px;}
.y54{bottom:956.866200px;}
.y7d{bottom:956.887200px;}
.y12b{bottom:956.913450px;}
.yd0{bottom:957.102450px;}
.yff{bottom:957.338700px;}
.ye{bottom:977.834700px;}
.y53{bottom:977.860950px;}
.y18f{bottom:977.875200px;}
.y12a{bottom:977.908200px;}
.ycf{bottom:978.097200px;}
.yfe{bottom:978.333450px;}
.y169{bottom:998.836200px;}
.y52{bottom:998.855700px;}
.y18e{bottom:998.874450px;}
.y7c{bottom:998.892450px;}
.y129{bottom:998.902950px;}
.yce{bottom:999.091950px;}
.yfd{bottom:999.328200px;}
.y168{bottom:1019.835450px;}
.y51{bottom:1019.850450px;}
.y7b{bottom:1019.887200px;}
.y128{bottom:1019.897700px;}
.ycd{bottom:1020.086700px;}
.yfc{bottom:1020.322950px;}
.yd{bottom:1034.834700px;}
.y167{bottom:1040.834700px;}
.y50{bottom:1040.845200px;}
.y18d{bottom:1040.872950px;}
.y7a{bottom:1040.881950px;}
.y127{bottom:1040.892450px;}
.ycc{bottom:1041.081450px;}
.yfb{bottom:1041.317700px;}
.yc{bottom:1061.834700px;}
.y4f{bottom:1061.839950px;}
.y18c{bottom:1061.872200px;}
.y79{bottom:1061.876700px;}
.y126{bottom:1061.887200px;}
.ycb{bottom:1062.076200px;}
.yfa{bottom:1062.312450px;}
.y4e{bottom:1082.834700px;}
.y78{bottom:1082.871450px;}
.y125{bottom:1082.881950px;}
.yca{bottom:1083.070950px;}
.yf9{bottom:1083.307200px;}
.yb{bottom:1092.696600px;}
.ya4{bottom:1186.312350px;}
.y4d{bottom:1188.136350px;}
.y153{bottom:1189.658700px;}
.h8{height:44.400000px;}
.he{height:44.667000px;}
.hf{height:44.793000px;}
.hc{height:45.840000px;}
.h10{height:46.614000px;}
.h11{height:46.767000px;}
.hd{height:50.526000px;}
.h7{height:51.768000px;}
.ha{height:54.840000px;}
.hb{height:55.020000px;}
.h9{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.xa{left:114.803100px;}
.x8{left:136.570950px;}
.x9{left:207.505950px;}
.x2{left:223.228350px;}
.x5{left:467.717100px;}
.xb{left:484.723350px;}
.x6{left:977.952750px;}
.x7{left:1360.630500px;}
@media print{
.v2{vertical-align:-6.485333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.424000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls13{letter-spacing:-2.072000pt;}
.lsb{letter-spacing:-0.616000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls15{letter-spacing:-0.504000pt;}
.ls6{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.392000pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.280000pt;}
.ls18{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.168000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.112000pt;}
.ls14{letter-spacing:0.168000pt;}
.ls19{letter-spacing:0.224000pt;}
.lse{letter-spacing:0.228536pt;}
.ls4{letter-spacing:0.280000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.504000pt;}
.ls12{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.896000pt;}
.ls8{letter-spacing:0.952000pt;}
.ls16{letter-spacing:1.008000pt;}
.ls17{letter-spacing:1.960000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws32{word-spacing:-11.560000pt;}
.ws8{word-spacing:-11.200000pt;}
.ws28{word-spacing:-11.032000pt;}
.ws7{word-spacing:-6.790784pt;}
.wse{word-spacing:-2.346667pt;}
.wsc{word-spacing:-2.240000pt;}
.ws2e{word-spacing:-1.960000pt;}
.ws11{word-spacing:-1.440000pt;}
.ws2d{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.952000pt;}
.ws36{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.672000pt;}
.ws25{word-spacing:-0.504000pt;}
.ws22{word-spacing:-0.448000pt;}
.ws17{word-spacing:-0.280000pt;}
.ws33{word-spacing:-0.224000pt;}
.ws2b{word-spacing:-0.168000pt;}
.ws1b{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws24{word-spacing:0.112000pt;}
.ws26{word-spacing:0.168000pt;}
.ws15{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.280000pt;}
.ws1f{word-spacing:0.336000pt;}
.ws23{word-spacing:0.392000pt;}
.ws30{word-spacing:0.448000pt;}
.ws2c{word-spacing:0.504000pt;}
.ws20{word-spacing:0.616000pt;}
.wsd{word-spacing:0.800000pt;}
.wsf{word-spacing:0.906667pt;}
.ws16{word-spacing:1.760000pt;}
.ws2a{word-spacing:2.072000pt;}
.ws12{word-spacing:2.666667pt;}
.ws14{word-spacing:2.826667pt;}
.ws10{word-spacing:3.840000pt;}
.wsb{word-spacing:4.586667pt;}
.ws13{word-spacing:4.853333pt;}
.ws19{word-spacing:4.872000pt;}
.wsa{word-spacing:6.506667pt;}
.ws18{word-spacing:7.168000pt;}
.ws34{word-spacing:8.008000pt;}
.ws35{word-spacing:8.456000pt;}
.ws21{word-spacing:11.256000pt;}
.ws1a{word-spacing:13.888000pt;}
.ws2f{word-spacing:16.632000pt;}
.ws6{word-spacing:1068.190400pt;}
.ws9{word-spacing:1068.190933pt;}
.ws27{word-spacing:5486.720000pt;}
.ws31{word-spacing:5489.408000pt;}
.ws5{word-spacing:5492.224000pt;}
._23{margin-left:-13.663740pt;}
._28{margin-left:-11.392000pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._5{margin-left:-0.947729pt;}
._4{width:1.152000pt;}
._7{width:2.386402pt;}
._6{width:3.872000pt;}
._e{width:5.082929pt;}
._9{width:6.850398pt;}
._8{width:7.956002pt;}
._19{width:9.117587pt;}
._f{width:10.178415pt;}
._18{width:12.151742pt;}
._b{width:13.047996pt;}
._a{width:14.250402pt;}
._10{width:15.967206pt;}
._13{width:17.243202pt;}
._14{width:18.306400pt;}
._22{width:19.474404pt;}
._11{width:20.563200pt;}
._21{width:21.667198pt;}
._20{width:22.888531pt;}
._12{width:24.648002pt;}
._d{width:25.599200pt;}
._c{width:26.568802pt;}
._1d{width:27.654129pt;}
._1e{width:28.860533pt;}
._25{width:30.402400pt;}
._1a{width:32.384000pt;}
._24{width:33.712002pt;}
._15{width:34.960800pt;}
._16{width:36.332800pt;}
._26{width:37.818402pt;}
._1f{width:40.916529pt;}
._17{width:43.479731pt;}
._1c{width:48.990404pt;}
._1b{width:50.178402pt;}
._27{width:604.119735pt;}
.fs8{font-size:32.648000pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.ya5{bottom:42.519733pt;}
.y77{bottom:85.214400pt;}
.y124{bottom:85.223733pt;}
.yc9{bottom:85.391733pt;}
.y4c{bottom:85.396267pt;}
.yf8{bottom:85.601733pt;}
.y76{bottom:103.876400pt;}
.y123{bottom:103.885733pt;}
.y33{bottom:103.946267pt;}
.yc8{bottom:104.053733pt;}
.y4b{bottom:104.058267pt;}
.ya3{bottom:104.058400pt;}
.y152{bottom:104.095733pt;}
.yf7{bottom:104.263733pt;}
.y75{bottom:122.538400pt;}
.y122{bottom:122.547733pt;}
.y18b{bottom:122.548400pt;}
.y32{bottom:122.608267pt;}
.yc7{bottom:122.715733pt;}
.y4a{bottom:122.720267pt;}
.ya2{bottom:122.720400pt;}
.y151{bottom:122.757733pt;}
.yf6{bottom:122.925733pt;}
.y74{bottom:141.200400pt;}
.y121{bottom:141.209733pt;}
.y18a{bottom:141.214400pt;}
.y31{bottom:141.270267pt;}
.yc6{bottom:141.377733pt;}
.y49{bottom:141.382267pt;}
.ya1{bottom:141.382400pt;}
.y150{bottom:141.419733pt;}
.yf5{bottom:141.587733pt;}
.y73{bottom:159.862400pt;}
.y120{bottom:159.871733pt;}
.y189{bottom:159.880400pt;}
.y30{bottom:159.932267pt;}
.yc5{bottom:160.039733pt;}
.y48{bottom:160.044267pt;}
.ya0{bottom:160.044400pt;}
.y14f{bottom:160.081733pt;}
.yf4{bottom:160.249733pt;}
.y72{bottom:178.524400pt;}
.y11f{bottom:178.533733pt;}
.y188{bottom:178.546400pt;}
.y2f{bottom:178.594267pt;}
.yc4{bottom:178.701733pt;}
.y47{bottom:178.706267pt;}
.y9f{bottom:178.706400pt;}
.y14e{bottom:178.743733pt;}
.yf3{bottom:178.911733pt;}
.y71{bottom:197.186400pt;}
.y11e{bottom:197.195733pt;}
.y187{bottom:197.212400pt;}
.y2e{bottom:197.256267pt;}
.yc3{bottom:197.363733pt;}
.y46{bottom:197.368267pt;}
.y9e{bottom:197.368400pt;}
.y14d{bottom:197.405733pt;}
.yf2{bottom:197.573733pt;}
.y11d{bottom:215.857733pt;}
.y186{bottom:215.878400pt;}
.y2d{bottom:215.918267pt;}
.yc2{bottom:216.025733pt;}
.y45{bottom:216.030267pt;}
.y9d{bottom:216.030400pt;}
.y14c{bottom:216.067733pt;}
.yf1{bottom:216.235733pt;}
.y70{bottom:234.519733pt;}
.y2c{bottom:234.580267pt;}
.yc1{bottom:234.687733pt;}
.y44{bottom:234.692267pt;}
.y9c{bottom:234.692400pt;}
.y14b{bottom:234.729733pt;}
.yf0{bottom:234.897733pt;}
.y185{bottom:253.210400pt;}
.y2b{bottom:253.242267pt;}
.yc0{bottom:253.349733pt;}
.y43{bottom:253.354267pt;}
.y9b{bottom:253.354400pt;}
.y14a{bottom:253.391733pt;}
.yef{bottom:253.559733pt;}
.y11c{bottom:271.853067pt;}
.y184{bottom:271.876400pt;}
.y2a{bottom:271.904267pt;}
.ybf{bottom:272.011733pt;}
.y42{bottom:272.016267pt;}
.y149{bottom:272.053733pt;}
.yee{bottom:272.221733pt;}
.y183{bottom:290.542400pt;}
.y29{bottom:290.566267pt;}
.y6f{bottom:290.603733pt;}
.ybe{bottom:290.673733pt;}
.y41{bottom:290.678267pt;}
.y9a{bottom:290.692400pt;}
.y148{bottom:290.715733pt;}
.yed{bottom:290.883733pt;}
.y182{bottom:309.208400pt;}
.y28{bottom:309.228267pt;}
.y6e{bottom:309.265733pt;}
.ybd{bottom:309.335733pt;}
.y40{bottom:309.340267pt;}
.y99{bottom:309.354400pt;}
.y147{bottom:309.377733pt;}
.yec{bottom:309.545733pt;}
.y7{bottom:312.905067pt;}
.y181{bottom:327.874400pt;}
.y27{bottom:327.890267pt;}
.y6d{bottom:327.927733pt;}
.ybc{bottom:327.997733pt;}
.y3f{bottom:328.002267pt;}
.y98{bottom:328.016400pt;}
.y146{bottom:328.039733pt;}
.yeb{bottom:328.207733pt;}
.y11b{bottom:328.431733pt;}
.y9{bottom:339.479200pt;}
.y26{bottom:346.552267pt;}
.y6c{bottom:346.589733pt;}
.ybb{bottom:346.659733pt;}
.y3e{bottom:346.664267pt;}
.y97{bottom:346.678400pt;}
.y145{bottom:346.701733pt;}
.yea{bottom:346.869733pt;}
.y11a{bottom:347.093733pt;}
.y180{bottom:365.206400pt;}
.y25{bottom:365.214267pt;}
.y6b{bottom:365.251733pt;}
.yba{bottom:365.321733pt;}
.y3d{bottom:365.326267pt;}
.y96{bottom:365.340400pt;}
.y144{bottom:365.363733pt;}
.ye9{bottom:365.531733pt;}
.y119{bottom:365.755733pt;}
.y17f{bottom:383.872400pt;}
.y24{bottom:383.876267pt;}
.y6a{bottom:383.913733pt;}
.yb9{bottom:383.983733pt;}
.y3c{bottom:383.988267pt;}
.y95{bottom:384.002400pt;}
.y143{bottom:384.025733pt;}
.ye8{bottom:384.193733pt;}
.y118{bottom:384.417733pt;}
.y6{bottom:395.571733pt;}
.y23{bottom:402.538267pt;}
.y17e{bottom:402.538400pt;}
.y69{bottom:402.575733pt;}
.yb8{bottom:402.645733pt;}
.y3b{bottom:402.650267pt;}
.y94{bottom:402.664400pt;}
.y142{bottom:402.687733pt;}
.ye7{bottom:402.855733pt;}
.y117{bottom:403.079733pt;}
.y22{bottom:421.200267pt;}
.y17d{bottom:421.204400pt;}
.y68{bottom:421.237733pt;}
.yb7{bottom:421.307733pt;}
.y3a{bottom:421.312267pt;}
.y93{bottom:421.326400pt;}
.y141{bottom:421.349733pt;}
.ye6{bottom:421.517733pt;}
.y116{bottom:421.741733pt;}
.y21{bottom:439.862267pt;}
.y17c{bottom:439.870400pt;}
.y67{bottom:439.899733pt;}
.yb6{bottom:439.969733pt;}
.y39{bottom:439.974267pt;}
.y163{bottom:439.983733pt;}
.y92{bottom:439.988400pt;}
.y140{bottom:440.011733pt;}
.y166{bottom:440.179733pt;}
.y115{bottom:440.403733pt;}
.y20{bottom:458.524267pt;}
.y66{bottom:458.561733pt;}
.yb5{bottom:458.631733pt;}
.y38{bottom:458.636267pt;}
.y162{bottom:458.645733pt;}
.y91{bottom:458.650400pt;}
.y13f{bottom:458.673733pt;}
.y165{bottom:458.841733pt;}
.ye5{bottom:458.855733pt;}
.y114{bottom:459.065733pt;}
.y1f{bottom:477.186267pt;}
.y17b{bottom:477.202400pt;}
.y65{bottom:477.223733pt;}
.yb4{bottom:477.293733pt;}
.y37{bottom:477.298267pt;}
.y161{bottom:477.307733pt;}
.y90{bottom:477.312400pt;}
.y13e{bottom:477.335733pt;}
.y164{bottom:477.503733pt;}
.ye4{bottom:477.517733pt;}
.y113{bottom:477.727733pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y17a{bottom:495.868400pt;}
.y64{bottom:495.885733pt;}
.yb3{bottom:495.955733pt;}
.y36{bottom:495.960267pt;}
.y160{bottom:495.969733pt;}
.y8f{bottom:495.974400pt;}
.y13d{bottom:495.997733pt;}
.ye3{bottom:496.179733pt;}
.y112{bottom:496.389733pt;}
.y1e{bottom:514.519733pt;}
.y179{bottom:514.534400pt;}
.yb2{bottom:514.617733pt;}
.y35{bottom:514.622267pt;}
.y15f{bottom:514.631733pt;}
.y8e{bottom:514.636400pt;}
.y13c{bottom:514.659733pt;}
.ye2{bottom:514.841733pt;}
.y111{bottom:515.051733pt;}
.y1d{bottom:533.186400pt;}
.y178{bottom:533.200400pt;}
.y63{bottom:533.223733pt;}
.yb1{bottom:533.279733pt;}
.y34{bottom:533.284267pt;}
.y15e{bottom:533.293733pt;}
.y13b{bottom:533.321733pt;}
.ye1{bottom:533.503733pt;}
.y110{bottom:533.713733pt;}
.y62{bottom:551.885733pt;}
.yb0{bottom:551.941733pt;}
.y15d{bottom:551.955733pt;}
.y8d{bottom:551.974400pt;}
.y13a{bottom:551.983733pt;}
.ye0{bottom:552.165733pt;}
.y10f{bottom:552.375733pt;}
.y4{bottom:560.905067pt;}
.y177{bottom:570.532400pt;}
.y61{bottom:570.547733pt;}
.y19c{bottom:570.566400pt;}
.yaf{bottom:570.603733pt;}
.y15c{bottom:570.617733pt;}
.y8c{bottom:570.636400pt;}
.y139{bottom:570.645733pt;}
.ydf{bottom:570.827733pt;}
.y10e{bottom:571.037733pt;}
.y176{bottom:589.198400pt;}
.y60{bottom:589.209733pt;}
.y19b{bottom:589.232400pt;}
.yae{bottom:589.265733pt;}
.y15b{bottom:589.279733pt;}
.y8b{bottom:589.298400pt;}
.y138{bottom:589.307733pt;}
.yde{bottom:589.489733pt;}
.y10d{bottom:589.699733pt;}
.y1c{bottom:607.853067pt;}
.y175{bottom:607.864400pt;}
.y5f{bottom:607.871733pt;}
.y19a{bottom:607.898400pt;}
.yad{bottom:607.927733pt;}
.y15a{bottom:607.941733pt;}
.y8a{bottom:607.960400pt;}
.y137{bottom:607.969733pt;}
.ydd{bottom:608.151733pt;}
.y10c{bottom:608.361733pt;}
.y1b{bottom:626.519733pt;}
.y174{bottom:626.530400pt;}
.y5e{bottom:626.533733pt;}
.yac{bottom:626.589733pt;}
.y159{bottom:626.603733pt;}
.y89{bottom:626.622400pt;}
.y136{bottom:626.631733pt;}
.ydc{bottom:626.813733pt;}
.y10b{bottom:627.023733pt;}
.y1a{bottom:645.186400pt;}
.y5d{bottom:645.195733pt;}
.y173{bottom:645.196400pt;}
.y199{bottom:645.230400pt;}
.yab{bottom:645.251733pt;}
.y158{bottom:645.265733pt;}
.y88{bottom:645.284400pt;}
.y135{bottom:645.293733pt;}
.ydb{bottom:645.475733pt;}
.y10a{bottom:645.685733pt;}
.y19{bottom:663.853067pt;}
.y5c{bottom:663.857733pt;}
.y172{bottom:663.862400pt;}
.y198{bottom:663.896400pt;}
.yaa{bottom:663.913733pt;}
.y157{bottom:663.927733pt;}
.y87{bottom:663.946400pt;}
.y134{bottom:663.955733pt;}
.yda{bottom:664.137733pt;}
.y109{bottom:664.347733pt;}
.y3{bottom:668.212133pt;}
.y18{bottom:682.519733pt;}
.y197{bottom:682.562400pt;}
.ya9{bottom:682.575733pt;}
.y156{bottom:682.589733pt;}
.y86{bottom:682.608400pt;}
.y133{bottom:682.617733pt;}
.yd9{bottom:682.799733pt;}
.y108{bottom:683.009733pt;}
.y5b{bottom:701.181733pt;}
.y17{bottom:701.186400pt;}
.y171{bottom:701.194400pt;}
.y196{bottom:701.228400pt;}
.ya8{bottom:701.237733pt;}
.y155{bottom:701.251733pt;}
.y85{bottom:701.270400pt;}
.y132{bottom:701.279733pt;}
.yd8{bottom:701.461733pt;}
.y107{bottom:701.671733pt;}
.y2{bottom:703.938667pt;}
.y16{bottom:719.853067pt;}
.y170{bottom:719.860400pt;}
.y195{bottom:719.894400pt;}
.ya7{bottom:719.899733pt;}
.y154{bottom:719.913733pt;}
.y84{bottom:719.932400pt;}
.y131{bottom:719.941733pt;}
.yd7{bottom:720.123733pt;}
.y106{bottom:720.333733pt;}
.y15{bottom:738.519733pt;}
.y16f{bottom:738.526400pt;}
.y194{bottom:738.560400pt;}
.y5a{bottom:738.575733pt;}
.y83{bottom:738.594400pt;}
.y130{bottom:738.603733pt;}
.yd6{bottom:738.785733pt;}
.y105{bottom:738.995733pt;}
.y14{bottom:757.186400pt;}
.y16e{bottom:757.192400pt;}
.y193{bottom:757.226400pt;}
.y59{bottom:757.237733pt;}
.y82{bottom:757.256400pt;}
.y12f{bottom:757.265733pt;}
.yd5{bottom:757.447733pt;}
.y104{bottom:757.657733pt;}
.y1{bottom:763.655867pt;}
.y13{bottom:775.853067pt;}
.y58{bottom:775.899733pt;}
.y81{bottom:775.918400pt;}
.y12e{bottom:775.927733pt;}
.yd4{bottom:776.109733pt;}
.y103{bottom:776.319733pt;}
.y12{bottom:794.519733pt;}
.y16d{bottom:794.524400pt;}
.y192{bottom:794.558400pt;}
.y57{bottom:794.561733pt;}
.y80{bottom:794.580400pt;}
.yd3{bottom:794.771733pt;}
.y102{bottom:794.981733pt;}
.y11{bottom:813.186400pt;}
.y16c{bottom:813.190400pt;}
.y56{bottom:813.223733pt;}
.y191{bottom:813.224400pt;}
.y7f{bottom:813.242400pt;}
.y12d{bottom:813.265733pt;}
.yd2{bottom:813.433733pt;}
.y101{bottom:813.643733pt;}
.y10{bottom:831.853067pt;}
.y16b{bottom:831.856400pt;}
.y55{bottom:831.885733pt;}
.y190{bottom:831.890400pt;}
.y7e{bottom:831.904400pt;}
.y12c{bottom:831.927733pt;}
.yd1{bottom:832.095733pt;}
.y100{bottom:832.305733pt;}
.yf{bottom:850.519733pt;}
.y16a{bottom:850.522400pt;}
.y54{bottom:850.547733pt;}
.y7d{bottom:850.566400pt;}
.y12b{bottom:850.589733pt;}
.yd0{bottom:850.757733pt;}
.yff{bottom:850.967733pt;}
.ye{bottom:869.186400pt;}
.y53{bottom:869.209733pt;}
.y18f{bottom:869.222400pt;}
.y12a{bottom:869.251733pt;}
.ycf{bottom:869.419733pt;}
.yfe{bottom:869.629733pt;}
.y169{bottom:887.854400pt;}
.y52{bottom:887.871733pt;}
.y18e{bottom:887.888400pt;}
.y7c{bottom:887.904400pt;}
.y129{bottom:887.913733pt;}
.yce{bottom:888.081733pt;}
.yfd{bottom:888.291733pt;}
.y168{bottom:906.520400pt;}
.y51{bottom:906.533733pt;}
.y7b{bottom:906.566400pt;}
.y128{bottom:906.575733pt;}
.ycd{bottom:906.743733pt;}
.yfc{bottom:906.953733pt;}
.yd{bottom:919.853067pt;}
.y167{bottom:925.186400pt;}
.y50{bottom:925.195733pt;}
.y18d{bottom:925.220400pt;}
.y7a{bottom:925.228400pt;}
.y127{bottom:925.237733pt;}
.ycc{bottom:925.405733pt;}
.yfb{bottom:925.615733pt;}
.yc{bottom:943.853067pt;}
.y4f{bottom:943.857733pt;}
.y18c{bottom:943.886400pt;}
.y79{bottom:943.890400pt;}
.y126{bottom:943.899733pt;}
.ycb{bottom:944.067733pt;}
.yfa{bottom:944.277733pt;}
.y4e{bottom:962.519733pt;}
.y78{bottom:962.552400pt;}
.y125{bottom:962.561733pt;}
.yca{bottom:962.729733pt;}
.yf9{bottom:962.939733pt;}
.yb{bottom:971.285867pt;}
.ya4{bottom:1054.499867pt;}
.y4d{bottom:1056.121200pt;}
.y153{bottom:1057.474400pt;}
.h8{height:39.466667pt;}
.he{height:39.704000pt;}
.hf{height:39.816000pt;}
.hc{height:40.746667pt;}
.h10{height:41.434667pt;}
.h11{height:41.570667pt;}
.hd{height:44.912000pt;}
.h7{height:46.016000pt;}
.ha{height:48.746667pt;}
.hb{height:48.906667pt;}
.h9{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.xa{left:102.047200pt;}
.x8{left:121.396400pt;}
.x9{left:184.449733pt;}
.x2{left:198.425200pt;}
.x5{left:415.748533pt;}
.xb{left:430.865200pt;}
.x6{left:869.291333pt;}
.x7{left:1209.449333pt;}
}




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