
    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_27825225af9922a4718a6750.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_ad04f50959025f110978cafd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_1c14da33dd6f81cf609077e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_0cfc08b66d9c0456795d11e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022949;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_1c128675bb7debfc4615c629.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_27825225af9922a4718a6750.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_13aa1f9c2cb009be832b6af7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;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_74297644f79da862ee0c3a30.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_86ef3d72a8a468095bb99ec2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7889b46e8a78754959d2d8d8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27825225af9922a4718a6750.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v4{vertical-align:-17.988600px;}
.v5{vertical-align:-14.985000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.984000px;}
.v3{vertical-align:18.055800px;}
.v1{vertical-align:19.980000px;}
.ls49{letter-spacing:-1.620000px;}
.ls25{letter-spacing:-1.458000px;}
.ls20{letter-spacing:-1.080000px;}
.ls4e{letter-spacing:-0.966000px;}
.ls4f{letter-spacing:-0.924000px;}
.ls36{letter-spacing:-0.840000px;}
.ls28{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.600000px;}
.ls4c{letter-spacing:-0.546000px;}
.ls2b{letter-spacing:-0.378000px;}
.ls47{letter-spacing:-0.324000px;}
.ls43{letter-spacing:-0.252000px;}
.ls23{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.210000px;}
.ls24{letter-spacing:-0.162000px;}
.ls46{letter-spacing:-0.126000px;}
.ls39{letter-spacing:-0.108000px;}
.ls2a{letter-spacing:-0.054000px;}
.ls21{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.061182px;}
.ls2{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.126000px;}
.ls31{letter-spacing:0.162000px;}
.ls50{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.270000px;}
.ls30{letter-spacing:0.283182px;}
.ls3c{letter-spacing:0.294000px;}
.ls1f{letter-spacing:0.308982px;}
.lsc{letter-spacing:0.309582px;}
.lsb{letter-spacing:0.312582px;}
.ls27{letter-spacing:0.314820px;}
.ls17{letter-spacing:0.322182px;}
.ls18{letter-spacing:0.323382px;}
.ls33{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.362382px;}
.ls44{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.486000px;}
.ls2e{letter-spacing:0.525840px;}
.ls2d{letter-spacing:0.526440px;}
.ls8{letter-spacing:0.540000px;}
.ls4d{letter-spacing:0.546000px;}
.ls1c{letter-spacing:0.550182px;}
.ls16{letter-spacing:0.553800px;}
.ls1d{letter-spacing:0.594000px;}
.lse{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.756000px;}
.lsd{letter-spacing:0.810000px;}
.ls10{letter-spacing:0.864000px;}
.ls2c{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.918000px;}
.ls4a{letter-spacing:0.924000px;}
.ls15{letter-spacing:0.934182px;}
.ls9{letter-spacing:0.972000px;}
.ls3b{letter-spacing:1.008000px;}
.ls1e{letter-spacing:1.026000px;}
.ls4{letter-spacing:1.134000px;}
.ls37{letter-spacing:1.188000px;}
.ls3d{letter-spacing:1.218000px;}
.ls7{letter-spacing:1.242000px;}
.ls38{letter-spacing:1.296000px;}
.ls3e{letter-spacing:1.302000px;}
.ls35{letter-spacing:1.350000px;}
.ls3f{letter-spacing:1.404000px;}
.ls19{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.620000px;}
.ls34{letter-spacing:1.836000px;}
.ls13{letter-spacing:1.890000px;}
.ls1b{letter-spacing:1.998000px;}
.ls40{letter-spacing:2.052000px;}
.ls32{letter-spacing:2.106000px;}
.lsa{letter-spacing:2.268000px;}
.ls29{letter-spacing:2.484000px;}
.ls5{letter-spacing:2.538000px;}
.ls3a{letter-spacing:2.940000px;}
.ls41{letter-spacing:2.970000px;}
.ls42{letter-spacing:3.024000px;}
.ls48{letter-spacing:4.806000px;}
.ls0{letter-spacing:36.934980px;}
.ls1{letter-spacing:37.284780px;}
.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:-18.000000px;}
.ws27{word-spacing:-15.282000px;}
.ws2{word-spacing:-8.626068px;}
.ws0{word-spacing:-7.667616px;}
.ws3c{word-spacing:-4.620000px;}
.ws40{word-spacing:-4.578000px;}
.ws22{word-spacing:-4.482000px;}
.ws5{word-spacing:-3.726000px;}
.ws8{word-spacing:-3.672000px;}
.ws41{word-spacing:-3.564000px;}
.ws1c{word-spacing:-3.510000px;}
.ws16{word-spacing:-3.456000px;}
.ws3d{word-spacing:-3.444000px;}
.ws14{word-spacing:-3.186000px;}
.ws2e{word-spacing:-2.646000px;}
.ws3e{word-spacing:-2.310000px;}
.ws38{word-spacing:-2.268000px;}
.ws1f{word-spacing:-2.052000px;}
.ws20{word-spacing:-1.674000px;}
.ws28{word-spacing:-1.530000px;}
.ws39{word-spacing:-1.404000px;}
.ws1d{word-spacing:-1.026000px;}
.ws7{word-spacing:-0.918000px;}
.ws2b{word-spacing:-0.900000px;}
.wse{word-spacing:-0.432000px;}
.ws3f{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.314820px;}
.wsd{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.042000px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:0.108000px;}
.ws3b{word-spacing:0.360000px;}
.ws29{word-spacing:0.675000px;}
.ws24{word-spacing:0.702000px;}
.ws2a{word-spacing:0.720000px;}
.ws31{word-spacing:0.756000px;}
.wsc{word-spacing:1.134000px;}
.ws17{word-spacing:1.350000px;}
.ws9{word-spacing:1.458000px;}
.ws37{word-spacing:1.728000px;}
.ws3a{word-spacing:1.836000px;}
.ws32{word-spacing:1.890000px;}
.ws2d{word-spacing:1.998000px;}
.ws25{word-spacing:2.214000px;}
.ws2c{word-spacing:2.700000px;}
.ws33{word-spacing:2.970000px;}
.ws12{word-spacing:3.024000px;}
.ws36{word-spacing:3.078000px;}
.ws34{word-spacing:3.132000px;}
.wsa{word-spacing:3.186000px;}
.ws13{word-spacing:3.618000px;}
.wsb{word-spacing:4.212000px;}
.ws15{word-spacing:4.482000px;}
.ws2f{word-spacing:4.536000px;}
.ws18{word-spacing:4.590000px;}
.ws11{word-spacing:4.968000px;}
.ws10{word-spacing:5.130000px;}
.ws23{word-spacing:5.454000px;}
.ws43{word-spacing:5.562000px;}
.ws21{word-spacing:5.724000px;}
.ws30{word-spacing:6.264000px;}
.ws42{word-spacing:6.696000px;}
.ws35{word-spacing:6.750000px;}
.ws19{word-spacing:7.182000px;}
.wsf{word-spacing:7.344000px;}
.ws6{word-spacing:7.398000px;}
.ws1e{word-spacing:8.802000px;}
.ws1a{word-spacing:12.474000px;}
._11{margin-left:-12.079800px;}
._f{margin-left:-9.432600px;}
._12{margin-left:-8.052000px;}
._5{margin-left:-6.302400px;}
._4{margin-left:-5.000400px;}
._3{margin-left:-3.745200px;}
._1{margin-left:-2.524800px;}
._0{margin-left:-1.334400px;}
._2{width:1.686600px;}
._b{width:3.002400px;}
._7{width:5.569494px;}
._c{width:10.260000px;}
._a{width:11.596800px;}
._6{width:13.324800px;}
._13{width:17.252400px;}
._9{width:24.948000px;}
._8{width:26.406000px;}
._e{width:37.389600px;}
._10{width:40.236000px;}
._d{width:44.226000px;}
.fc1{color:rgb(0,98,139);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:26.235000px;}
.fs5{font-size:27.984000px;}
.fs9{font-size:31.482000px;}
.fs3{font-size:34.980000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y63{bottom:26.800350px;}
.y67{bottom:29.533350px;}
.y6c{bottom:85.039350px;}
.y62{bottom:85.075950px;}
.y12{bottom:91.226850px;}
.y6b{bottom:98.539350px;}
.y61{bottom:101.437950px;}
.y6a{bottom:112.039350px;}
.yd{bottom:116.291250px;}
.y60{bottom:117.799950px;}
.y69{bottom:125.539350px;}
.yc{bottom:128.891250px;}
.y5f{bottom:134.161950px;}
.y68{bottom:139.039350px;}
.yb{bottom:141.491250px;}
.y5e{bottom:150.523950px;}
.ya{bottom:154.091250px;}
.ya0{bottom:156.457800px;}
.ya8{bottom:156.468300px;}
.y9{bottom:166.691250px;}
.y5d{bottom:166.885950px;}
.y9f{bottom:170.254800px;}
.ya7{bottom:172.228800px;}
.y8{bottom:179.291250px;}
.y5c{bottom:183.284700px;}
.y9e{bottom:192.525300px;}
.ya6{bottom:196.473300px;}
.y5b{bottom:199.646700px;}
.y11{bottom:199.868850px;}
.y9d{bottom:206.322300px;}
.ya5{bottom:212.233800px;}
.y5a{bottom:216.008700px;}
.y10{bottom:216.068850px;}
.y9c{bottom:228.592800px;}
.yf{bottom:232.268850px;}
.y59{bottom:232.370700px;}
.ya4{bottom:236.478300px;}
.y9b{bottom:242.389800px;}
.y58{bottom:248.732700px;}
.ya3{bottom:252.238800px;}
.ye{bottom:252.743850px;}
.y9a{bottom:256.186800px;}
.y57{bottom:265.094700px;}
.ya2{bottom:276.483300px;}
.y99{bottom:278.457300px;}
.y56{bottom:281.456700px;}
.ya1{bottom:292.243800px;}
.y98{bottom:292.254300px;}
.y55{bottom:302.112000px;}
.y32{bottom:308.629050px;}
.y54{bottom:318.474000px;}
.ya9{bottom:320.325600px;}
.y31{bottom:325.193550px;}
.y53{bottom:334.836000px;}
.y30{bottom:341.737650px;}
.y52{bottom:355.548150px;}
.y2f{bottom:358.302150px;}
.y51{bottom:371.910150px;}
.y2e{bottom:374.866650px;}
.y50{bottom:388.272150px;}
.y2d{bottom:391.431150px;}
.yb9{bottom:396.684600px;}
.yc6{bottom:396.755700px;}
.y4f{bottom:404.634150px;}
.y2c{bottom:407.995650px;}
.yb8{bottom:413.775600px;}
.yc5{bottom:417.464700px;}
.y2b{bottom:424.560150px;}
.y4e{bottom:425.275650px;}
.yb7{bottom:430.866600px;}
.y2a{bottom:441.124650px;}
.y4d{bottom:441.637650px;}
.yb6{bottom:447.957600px;}
.y29{bottom:457.689150px;}
.y4c{bottom:457.999650px;}
.yc4{bottom:458.882700px;}
.yb5{bottom:465.048600px;}
.y4b{bottom:474.361650px;}
.y28{bottom:478.519650px;}
.yc3{bottom:479.591700px;}
.yb4{bottom:482.139600px;}
.y4a{bottom:495.003150px;}
.yb3{bottom:499.230600px;}
.y49{bottom:515.644650px;}
.y27{bottom:515.908950px;}
.yb2{bottom:516.321600px;}
.yc2{bottom:521.009700px;}
.y48{bottom:532.006650px;}
.y26{bottom:532.473450px;}
.yb1{bottom:533.412600px;}
.yc1{bottom:537.439200px;}
.y47{bottom:548.368650px;}
.y25{bottom:549.019500px;}
.yb0{bottom:554.775600px;}
.yc0{bottom:558.148200px;}
.y24{bottom:565.584000px;}
.y46{bottom:569.010150px;}
.y23{bottom:582.148500px;}
.y45{bottom:585.372150px;}
.yaf{bottom:598.620600px;}
.y22{bottom:598.713000px;}
.ybf{bottom:599.566200px;}
.y44{bottom:606.013650px;}
.y21{bottom:615.277500px;}
.yae{bottom:615.711600px;}
.ybe{bottom:615.995700px;}
.y43{bottom:622.381650px;}
.y20{bottom:631.842000px;}
.ybd{bottom:632.425200px;}
.yad{bottom:637.068600px;}
.y42{bottom:638.745300px;}
.ybc{bottom:648.854700px;}
.y1f{bottom:652.677900px;}
.yac{bottom:654.159600px;}
.y41{bottom:659.386800px;}
.ybb{bottom:665.284200px;}
.yab{bottom:671.250600px;}
.y40{bottom:680.074200px;}
.yba{bottom:685.995000px;}
.yaa{bottom:688.341600px;}
.y1e{bottom:695.473650px;}
.y3f{bottom:696.436200px;}
.y1d{bottom:712.038150px;}
.y3e{bottom:717.077700px;}
.y7e{bottom:727.040550px;}
.y91{bottom:727.081350px;}
.y1c{bottom:732.868650px;}
.y3d{bottom:733.439700px;}
.y97{bottom:741.431700px;}
.y90{bottom:743.753850px;}
.y7d{bottom:743.888550px;}
.y1b{bottom:749.433150px;}
.y3c{bottom:749.801700px;}
.y96{bottom:754.931700px;}
.y8f{bottom:760.426350px;}
.y7c{bottom:760.736550px;}
.y1a{bottom:765.997650px;}
.y3b{bottom:766.163700px;}
.y95{bottom:768.431700px;}
.y7b{bottom:777.584550px;}
.y8e{bottom:781.364850px;}
.y94{bottom:781.931700px;}
.y3a{bottom:782.525700px;}
.y19{bottom:786.828150px;}
.y7a{bottom:794.432550px;}
.y93{bottom:795.431700px;}
.y8d{bottom:798.037350px;}
.y39{bottom:798.887700px;}
.y18{bottom:803.392650px;}
.y79{bottom:811.280550px;}
.y8c{bottom:814.709850px;}
.y38{bottom:815.269650px;}
.y17{bottom:824.223150px;}
.y78{bottom:828.128550px;}
.y37{bottom:831.631650px;}
.y8b{bottom:835.648350px;}
.y77{bottom:844.976550px;}
.y16{bottom:845.053650px;}
.y36{bottom:847.993650px;}
.y8a{bottom:852.320850px;}
.y15{bottom:861.618150px;}
.y76{bottom:861.824550px;}
.y35{bottom:864.355650px;}
.y89{bottom:873.191550px;}
.y14{bottom:878.182650px;}
.y75{bottom:878.672550px;}
.y34{bottom:885.003300px;}
.y88{bottom:889.864050px;}
.y74{bottom:895.520550px;}
.y13{bottom:899.018550px;}
.y33{bottom:901.360050px;}
.y87{bottom:906.536550px;}
.y73{bottom:912.368550px;}
.y86{bottom:923.209050px;}
.y72{bottom:929.216550px;}
.y85{bottom:944.147550px;}
.y7{bottom:946.679550px;}
.y71{bottom:950.335650px;}
.y84{bottom:960.820050px;}
.y6{bottom:963.179550px;}
.yd2{bottom:964.747200px;}
.ycc{bottom:964.757700px;}
.y83{bottom:977.492550px;}
.yd1{bottom:979.405200px;}
.ycb{bottom:979.415700px;}
.y5{bottom:979.679550px;}
.y70{bottom:993.687300px;}
.yd0{bottom:994.063200px;}
.yca{bottom:994.073700px;}
.y82{bottom:994.165050px;}
.y4{bottom:996.179550px;}
.y6f{bottom:1010.535300px;}
.y81{bottom:1010.837550px;}
.y3{bottom:1012.679550px;}
.ycf{bottom:1017.194700px;}
.yc9{bottom:1017.205200px;}
.y6e{bottom:1027.383300px;}
.y80{bottom:1027.510050px;}
.yce{bottom:1031.842200px;}
.yc8{bottom:1031.852700px;}
.y2{bottom:1037.683500px;}
.y7f{bottom:1044.182550px;}
.y6d{bottom:1044.231300px;}
.ycd{bottom:1046.500200px;}
.yc7{bottom:1046.510700px;}
.y1{bottom:1102.761000px;}
.y64{bottom:1103.073600px;}
.y92{bottom:1103.309550px;}
.y66{bottom:1137.109350px;}
.y65{bottom:1147.909350px;}
.h16{height:27.000000px;}
.h17{height:27.216000px;}
.h6{height:31.500000px;}
.h18{height:32.761230px;}
.h5{height:36.972000px;}
.h8{height:40.500000px;}
.h10{height:41.316900px;}
.hf{height:41.416500px;}
.h12{height:41.446500px;}
.h13{height:41.447100px;}
.he{height:41.513700px;}
.h11{height:41.544300px;}
.hd{height:41.568900px;}
.h1b{height:41.593500px;}
.hc{height:41.614500px;}
.h1c{height:41.617500px;}
.ha{height:41.622900px;}
.h19{height:41.640300px;}
.h9{height:41.667300px;}
.hb{height:41.675100px;}
.h1a{height:41.886900px;}
.h14{height:45.000000px;}
.h4{height:46.215000px;}
.h7{height:54.000000px;}
.h15{height:61.154297px;}
.h3{height:72.000000px;}
.h2{height:78.626953px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:20.391600px;}
.x2{left:63.779550px;}
.x4{left:69.779550px;}
.x15{left:76.398000px;}
.x3{left:80.804550px;}
.x14{left:85.724400px;}
.x1{left:87.253950px;}
.x17{left:97.829250px;}
.xe{left:123.307050px;}
.xd{left:136.200450px;}
.xf{left:140.332050px;}
.x18{left:144.538050px;}
.x1a{left:214.225650px;}
.x5{left:429.458700px;}
.x6{left:446.470350px;}
.x16{left:450.715050px;}
.x7{left:463.502850px;}
.x10{left:488.983050px;}
.x11{left:506.006550px;}
.x19{left:510.221550px;}
.x12{left:523.024950px;}
.xb{left:627.447150px;}
.xc{left:669.702150px;}
.x9{left:705.411000px;}
.xa{left:768.360150px;}
.x13{left:847.824600px;}
@media print{
.v4{vertical-align:-15.989867pt;}
.v5{vertical-align:-13.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.208000pt;}
.v3{vertical-align:16.049600pt;}
.v1{vertical-align:17.760000pt;}
.ls49{letter-spacing:-1.440000pt;}
.ls25{letter-spacing:-1.296000pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls4e{letter-spacing:-0.858667pt;}
.ls4f{letter-spacing:-0.821333pt;}
.ls36{letter-spacing:-0.746667pt;}
.ls28{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.533333pt;}
.ls4c{letter-spacing:-0.485333pt;}
.ls2b{letter-spacing:-0.336000pt;}
.ls47{letter-spacing:-0.288000pt;}
.ls43{letter-spacing:-0.224000pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.186667pt;}
.ls24{letter-spacing:-0.144000pt;}
.ls46{letter-spacing:-0.112000pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls2a{letter-spacing:-0.048000pt;}
.ls21{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.054384pt;}
.ls2{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.112000pt;}
.ls31{letter-spacing:0.144000pt;}
.ls50{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls30{letter-spacing:0.251717pt;}
.ls3c{letter-spacing:0.261333pt;}
.ls1f{letter-spacing:0.274651pt;}
.lsc{letter-spacing:0.275184pt;}
.lsb{letter-spacing:0.277851pt;}
.ls27{letter-spacing:0.279840pt;}
.ls17{letter-spacing:0.286384pt;}
.ls18{letter-spacing:0.287451pt;}
.ls33{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.322117pt;}
.ls44{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.432000pt;}
.ls2e{letter-spacing:0.467413pt;}
.ls2d{letter-spacing:0.467947pt;}
.ls8{letter-spacing:0.480000pt;}
.ls4d{letter-spacing:0.485333pt;}
.ls1c{letter-spacing:0.489051pt;}
.ls16{letter-spacing:0.492267pt;}
.ls1d{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.672000pt;}
.lsd{letter-spacing:0.720000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.816000pt;}
.ls4a{letter-spacing:0.821333pt;}
.ls15{letter-spacing:0.830384pt;}
.ls9{letter-spacing:0.864000pt;}
.ls3b{letter-spacing:0.896000pt;}
.ls1e{letter-spacing:0.912000pt;}
.ls4{letter-spacing:1.008000pt;}
.ls37{letter-spacing:1.056000pt;}
.ls3d{letter-spacing:1.082667pt;}
.ls7{letter-spacing:1.104000pt;}
.ls38{letter-spacing:1.152000pt;}
.ls3e{letter-spacing:1.157333pt;}
.ls35{letter-spacing:1.200000pt;}
.ls3f{letter-spacing:1.248000pt;}
.ls19{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls34{letter-spacing:1.632000pt;}
.ls13{letter-spacing:1.680000pt;}
.ls1b{letter-spacing:1.776000pt;}
.ls40{letter-spacing:1.824000pt;}
.ls32{letter-spacing:1.872000pt;}
.lsa{letter-spacing:2.016000pt;}
.ls29{letter-spacing:2.208000pt;}
.ls5{letter-spacing:2.256000pt;}
.ls3a{letter-spacing:2.613333pt;}
.ls41{letter-spacing:2.640000pt;}
.ls42{letter-spacing:2.688000pt;}
.ls48{letter-spacing:4.272000pt;}
.ls0{letter-spacing:32.831093pt;}
.ls1{letter-spacing:33.142027pt;}
.ws1{word-spacing:-16.000000pt;}
.ws27{word-spacing:-13.584000pt;}
.ws2{word-spacing:-7.667616pt;}
.ws0{word-spacing:-6.815659pt;}
.ws3c{word-spacing:-4.106667pt;}
.ws40{word-spacing:-4.069333pt;}
.ws22{word-spacing:-3.984000pt;}
.ws5{word-spacing:-3.312000pt;}
.ws8{word-spacing:-3.264000pt;}
.ws41{word-spacing:-3.168000pt;}
.ws1c{word-spacing:-3.120000pt;}
.ws16{word-spacing:-3.072000pt;}
.ws3d{word-spacing:-3.061333pt;}
.ws14{word-spacing:-2.832000pt;}
.ws2e{word-spacing:-2.352000pt;}
.ws3e{word-spacing:-2.053333pt;}
.ws38{word-spacing:-2.016000pt;}
.ws1f{word-spacing:-1.824000pt;}
.ws20{word-spacing:-1.488000pt;}
.ws28{word-spacing:-1.360000pt;}
.ws39{word-spacing:-1.248000pt;}
.ws1d{word-spacing:-0.912000pt;}
.ws7{word-spacing:-0.816000pt;}
.ws2b{word-spacing:-0.800000pt;}
.wse{word-spacing:-0.384000pt;}
.ws3f{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.279840pt;}
.wsd{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.037333pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:0.096000pt;}
.ws3b{word-spacing:0.320000pt;}
.ws29{word-spacing:0.600000pt;}
.ws24{word-spacing:0.624000pt;}
.ws2a{word-spacing:0.640000pt;}
.ws31{word-spacing:0.672000pt;}
.wsc{word-spacing:1.008000pt;}
.ws17{word-spacing:1.200000pt;}
.ws9{word-spacing:1.296000pt;}
.ws37{word-spacing:1.536000pt;}
.ws3a{word-spacing:1.632000pt;}
.ws32{word-spacing:1.680000pt;}
.ws2d{word-spacing:1.776000pt;}
.ws25{word-spacing:1.968000pt;}
.ws2c{word-spacing:2.400000pt;}
.ws33{word-spacing:2.640000pt;}
.ws12{word-spacing:2.688000pt;}
.ws36{word-spacing:2.736000pt;}
.ws34{word-spacing:2.784000pt;}
.wsa{word-spacing:2.832000pt;}
.ws13{word-spacing:3.216000pt;}
.wsb{word-spacing:3.744000pt;}
.ws15{word-spacing:3.984000pt;}
.ws2f{word-spacing:4.032000pt;}
.ws18{word-spacing:4.080000pt;}
.ws11{word-spacing:4.416000pt;}
.ws10{word-spacing:4.560000pt;}
.ws23{word-spacing:4.848000pt;}
.ws43{word-spacing:4.944000pt;}
.ws21{word-spacing:5.088000pt;}
.ws30{word-spacing:5.568000pt;}
.ws42{word-spacing:5.952000pt;}
.ws35{word-spacing:6.000000pt;}
.ws19{word-spacing:6.384000pt;}
.wsf{word-spacing:6.528000pt;}
.ws6{word-spacing:6.576000pt;}
.ws1e{word-spacing:7.824000pt;}
.ws1a{word-spacing:11.088000pt;}
._11{margin-left:-10.737600pt;}
._f{margin-left:-8.384533pt;}
._12{margin-left:-7.157333pt;}
._5{margin-left:-5.602133pt;}
._4{margin-left:-4.444800pt;}
._3{margin-left:-3.329067pt;}
._1{margin-left:-2.244267pt;}
._0{margin-left:-1.186133pt;}
._2{width:1.499200pt;}
._b{width:2.668800pt;}
._7{width:4.950661pt;}
._c{width:9.120000pt;}
._a{width:10.308267pt;}
._6{width:11.844267pt;}
._13{width:15.335467pt;}
._9{width:22.176000pt;}
._8{width:23.472000pt;}
._e{width:33.235200pt;}
._10{width:35.765333pt;}
._d{width:39.312000pt;}
.fsd{font-size:23.320000pt;}
.fs5{font-size:24.874667pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:31.093333pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:23.822533pt;}
.y67{bottom:26.251867pt;}
.y6c{bottom:75.590533pt;}
.y62{bottom:75.623067pt;}
.y12{bottom:81.090533pt;}
.y6b{bottom:87.590533pt;}
.y61{bottom:90.167067pt;}
.y6a{bottom:99.590533pt;}
.yd{bottom:103.370000pt;}
.y60{bottom:104.711067pt;}
.y69{bottom:111.590533pt;}
.yc{bottom:114.570000pt;}
.y5f{bottom:119.255067pt;}
.y68{bottom:123.590533pt;}
.yb{bottom:125.770000pt;}
.y5e{bottom:133.799067pt;}
.ya{bottom:136.970000pt;}
.ya0{bottom:139.073600pt;}
.ya8{bottom:139.082933pt;}
.y9{bottom:148.170000pt;}
.y5d{bottom:148.343067pt;}
.y9f{bottom:151.337600pt;}
.ya7{bottom:153.092267pt;}
.y8{bottom:159.370000pt;}
.y5c{bottom:162.919733pt;}
.y9e{bottom:171.133600pt;}
.ya6{bottom:174.642933pt;}
.y5b{bottom:177.463733pt;}
.y11{bottom:177.661200pt;}
.y9d{bottom:183.397600pt;}
.ya5{bottom:188.652267pt;}
.y5a{bottom:192.007733pt;}
.y10{bottom:192.061200pt;}
.y9c{bottom:203.193600pt;}
.yf{bottom:206.461200pt;}
.y59{bottom:206.551733pt;}
.ya4{bottom:210.202933pt;}
.y9b{bottom:215.457600pt;}
.y58{bottom:221.095733pt;}
.ya3{bottom:224.212267pt;}
.ye{bottom:224.661200pt;}
.y9a{bottom:227.721600pt;}
.y57{bottom:235.639733pt;}
.ya2{bottom:245.762933pt;}
.y99{bottom:247.517600pt;}
.y56{bottom:250.183733pt;}
.ya1{bottom:259.772267pt;}
.y98{bottom:259.781600pt;}
.y55{bottom:268.544000pt;}
.y32{bottom:274.336933pt;}
.y54{bottom:283.088000pt;}
.ya9{bottom:284.733867pt;}
.y31{bottom:289.060933pt;}
.y53{bottom:297.632000pt;}
.y30{bottom:303.766800pt;}
.y52{bottom:316.042800pt;}
.y2f{bottom:318.490800pt;}
.y51{bottom:330.586800pt;}
.y2e{bottom:333.214800pt;}
.y50{bottom:345.130800pt;}
.y2d{bottom:347.938800pt;}
.yb9{bottom:352.608533pt;}
.yc6{bottom:352.671733pt;}
.y4f{bottom:359.674800pt;}
.y2c{bottom:362.662800pt;}
.yb8{bottom:367.800533pt;}
.yc5{bottom:371.079733pt;}
.y2b{bottom:377.386800pt;}
.y4e{bottom:378.022800pt;}
.yb7{bottom:382.992533pt;}
.y2a{bottom:392.110800pt;}
.y4d{bottom:392.566800pt;}
.yb6{bottom:398.184533pt;}
.y29{bottom:406.834800pt;}
.y4c{bottom:407.110800pt;}
.yc4{bottom:407.895733pt;}
.yb5{bottom:413.376533pt;}
.y4b{bottom:421.654800pt;}
.y28{bottom:425.350800pt;}
.yc3{bottom:426.303733pt;}
.yb4{bottom:428.568533pt;}
.y4a{bottom:440.002800pt;}
.yb3{bottom:443.760533pt;}
.y49{bottom:458.350800pt;}
.y27{bottom:458.585733pt;}
.yb2{bottom:458.952533pt;}
.yc2{bottom:463.119733pt;}
.y48{bottom:472.894800pt;}
.y26{bottom:473.309733pt;}
.yb1{bottom:474.144533pt;}
.yc1{bottom:477.723733pt;}
.y47{bottom:487.438800pt;}
.y25{bottom:488.017333pt;}
.yb0{bottom:493.133867pt;}
.yc0{bottom:496.131733pt;}
.y24{bottom:502.741333pt;}
.y46{bottom:505.786800pt;}
.y23{bottom:517.465333pt;}
.y45{bottom:520.330800pt;}
.yaf{bottom:532.107200pt;}
.y22{bottom:532.189333pt;}
.ybf{bottom:532.947733pt;}
.y44{bottom:538.678800pt;}
.y21{bottom:546.913333pt;}
.yae{bottom:547.299200pt;}
.ybe{bottom:547.551733pt;}
.y43{bottom:553.228133pt;}
.y20{bottom:561.637333pt;}
.ybd{bottom:562.155733pt;}
.yad{bottom:566.283200pt;}
.y42{bottom:567.773600pt;}
.ybc{bottom:576.759733pt;}
.y1f{bottom:580.158133pt;}
.yac{bottom:581.475200pt;}
.y41{bottom:586.121600pt;}
.ybb{bottom:591.363733pt;}
.yab{bottom:596.667200pt;}
.y40{bottom:604.510400pt;}
.yba{bottom:609.773333pt;}
.yaa{bottom:611.859200pt;}
.y1e{bottom:618.198800pt;}
.y3f{bottom:619.054400pt;}
.y1d{bottom:632.922800pt;}
.y3e{bottom:637.402400pt;}
.y7e{bottom:646.258267pt;}
.y91{bottom:646.294533pt;}
.y1c{bottom:651.438800pt;}
.y3d{bottom:651.946400pt;}
.y97{bottom:659.050400pt;}
.y90{bottom:661.114533pt;}
.y7d{bottom:661.234267pt;}
.y1b{bottom:666.162800pt;}
.y3c{bottom:666.490400pt;}
.y96{bottom:671.050400pt;}
.y8f{bottom:675.934533pt;}
.y7c{bottom:676.210267pt;}
.y1a{bottom:680.886800pt;}
.y3b{bottom:681.034400pt;}
.y95{bottom:683.050400pt;}
.y7b{bottom:691.186267pt;}
.y8e{bottom:694.546533pt;}
.y94{bottom:695.050400pt;}
.y3a{bottom:695.578400pt;}
.y19{bottom:699.402800pt;}
.y7a{bottom:706.162267pt;}
.y93{bottom:707.050400pt;}
.y8d{bottom:709.366533pt;}
.y39{bottom:710.122400pt;}
.y18{bottom:714.126800pt;}
.y79{bottom:721.138267pt;}
.y8c{bottom:724.186533pt;}
.y38{bottom:724.684133pt;}
.y17{bottom:732.642800pt;}
.y78{bottom:736.114267pt;}
.y37{bottom:739.228133pt;}
.y8b{bottom:742.798533pt;}
.y77{bottom:751.090267pt;}
.y16{bottom:751.158800pt;}
.y36{bottom:753.772133pt;}
.y8a{bottom:757.618533pt;}
.y15{bottom:765.882800pt;}
.y76{bottom:766.066267pt;}
.y35{bottom:768.316133pt;}
.y89{bottom:776.170267pt;}
.y14{bottom:780.606800pt;}
.y75{bottom:781.042267pt;}
.y34{bottom:786.669600pt;}
.y88{bottom:790.990267pt;}
.y74{bottom:796.018267pt;}
.y13{bottom:799.127600pt;}
.y33{bottom:801.208933pt;}
.y87{bottom:805.810267pt;}
.y73{bottom:810.994267pt;}
.y86{bottom:820.630267pt;}
.y72{bottom:825.970267pt;}
.y85{bottom:839.242267pt;}
.y7{bottom:841.492933pt;}
.y71{bottom:844.742800pt;}
.y84{bottom:854.062267pt;}
.y6{bottom:856.159600pt;}
.yd2{bottom:857.553067pt;}
.ycc{bottom:857.562400pt;}
.y83{bottom:868.882267pt;}
.yd1{bottom:870.582400pt;}
.ycb{bottom:870.591733pt;}
.y5{bottom:870.826267pt;}
.y70{bottom:883.277600pt;}
.yd0{bottom:883.611733pt;}
.yca{bottom:883.621067pt;}
.y82{bottom:883.702267pt;}
.y4{bottom:885.492933pt;}
.y6f{bottom:898.253600pt;}
.y81{bottom:898.522267pt;}
.y3{bottom:900.159600pt;}
.ycf{bottom:904.173067pt;}
.yc9{bottom:904.182400pt;}
.y6e{bottom:913.229600pt;}
.y80{bottom:913.342267pt;}
.yce{bottom:917.193067pt;}
.yc8{bottom:917.202400pt;}
.y2{bottom:922.385333pt;}
.y7f{bottom:928.162267pt;}
.y6d{bottom:928.205600pt;}
.ycd{bottom:930.222400pt;}
.yc7{bottom:930.231733pt;}
.y1{bottom:980.232000pt;}
.y64{bottom:980.509867pt;}
.y92{bottom:980.719600pt;}
.y66{bottom:1010.763867pt;}
.y65{bottom:1020.363867pt;}
.h16{height:24.000000pt;}
.h17{height:24.192000pt;}
.h6{height:28.000000pt;}
.h18{height:29.121094pt;}
.h5{height:32.864000pt;}
.h8{height:36.000000pt;}
.h10{height:36.726133pt;}
.hf{height:36.814667pt;}
.h12{height:36.841333pt;}
.h13{height:36.841867pt;}
.he{height:36.901067pt;}
.h11{height:36.928267pt;}
.hd{height:36.950133pt;}
.h1b{height:36.972000pt;}
.hc{height:36.990667pt;}
.h1c{height:36.993333pt;}
.ha{height:36.998133pt;}
.h19{height:37.013600pt;}
.h9{height:37.037600pt;}
.hb{height:37.044533pt;}
.h1a{height:37.232800pt;}
.h14{height:40.000000pt;}
.h4{height:41.080000pt;}
.h7{height:48.000000pt;}
.h15{height:54.359375pt;}
.h3{height:64.000000pt;}
.h2{height:69.890625pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:18.125867pt;}
.x2{left:56.692933pt;}
.x4{left:62.026267pt;}
.x15{left:67.909333pt;}
.x3{left:71.826267pt;}
.x14{left:76.199467pt;}
.x1{left:77.559067pt;}
.x17{left:86.959333pt;}
.xe{left:109.606267pt;}
.xd{left:121.067067pt;}
.xf{left:124.739600pt;}
.x18{left:128.478267pt;}
.x1a{left:190.422800pt;}
.x5{left:381.741067pt;}
.x6{left:396.862533pt;}
.x16{left:400.635600pt;}
.x7{left:412.002533pt;}
.x10{left:434.651600pt;}
.x11{left:449.783600pt;}
.x19{left:453.530267pt;}
.x12{left:464.911067pt;}
.xb{left:557.730800pt;}
.xc{left:595.290800pt;}
.x9{left:627.032000pt;}
.xa{left:682.986800pt;}
.x13{left:753.621867pt;}
}




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