
    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_6412022861c365ea3cb065d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_2287121120a4ac27245086cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_3a4afa32ccd5a9f52864133b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_51270b1c7fe948416c4f6317.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_62e3c1006800855f0545ca96.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_af78ac040a9712d582280038.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.979980;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_425277ccbbca14f56e31cdb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.129883;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_8c2c161ca064df1f0b5b64ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_15062e8f6241077231ae259a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_df8500d22a2120ff1041956d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977087;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_63f2db02fba0dd809336dc78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.ls6{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.918000px;}
.ls5{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.600000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.ls10{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.594000px;}
.lse{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.200000px;}
.ls0{letter-spacing:43.181364px;}
.ls8{letter-spacing:126.094800px;}
.lsb{letter-spacing:585.307200px;}
.ls9{letter-spacing:585.307800px;}
.lsc{letter-spacing:585.319200px;}
.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;}
}
.ws4{word-spacing:-17.928000px;}
.ws2d{word-spacing:-16.434000px;}
.ws2f{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws29{word-spacing:-14.880000px;}
.ws2a{word-spacing:-14.700000px;}
.ws2b{word-spacing:-14.100000px;}
.ws37{word-spacing:-13.986000px;}
.ws31{word-spacing:-13.392000px;}
.ws32{word-spacing:-13.230000px;}
.ws8{word-spacing:-12.150000px;}
.ws12{word-spacing:-11.952000px;}
.ws5{word-spacing:-11.772000px;}
.ws7{word-spacing:-11.232000px;}
.ws1{word-spacing:-10.896000px;}
.ws6{word-spacing:-10.854000px;}
.ws11{word-spacing:-10.800000px;}
.ws9{word-spacing:-10.464000px;}
.ws2{word-spacing:-9.417600px;}
.ws34{word-spacing:-7.807536px;}
.ws2e{word-spacing:-7.260000px;}
.ws38{word-spacing:-2.160000px;}
.wsb{word-spacing:-1.254000px;}
.ws24{word-spacing:-1.200000px;}
.ws39{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.026000px;}
.ws2c{word-spacing:-0.720000px;}
.ws28{word-spacing:-0.600000px;}
.wse{word-spacing:-0.540000px;}
.ws3a{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.216000px;}
.wsa{word-spacing:0.000000px;}
.ws1b{word-spacing:0.600000px;}
.wsd{word-spacing:0.691200px;}
.ws10{word-spacing:0.918000px;}
.wsf{word-spacing:1.200000px;}
.ws35{word-spacing:1.458000px;}
.ws36{word-spacing:2.430000px;}
.ws30{word-spacing:6.660000px;}
.ws27{word-spacing:7.680000px;}
.ws25{word-spacing:8.460000px;}
.ws26{word-spacing:8.580000px;}
.ws1c{word-spacing:9.360000px;}
.ws0{word-spacing:33.651135px;}
.ws17{word-spacing:87.214800px;}
.ws1a{word-spacing:87.262800px;}
.ws15{word-spacing:114.190800px;}
.ws16{word-spacing:114.238800px;}
.ws23{word-spacing:503.893200px;}
.ws1f{word-spacing:559.903800px;}
.ws14{word-spacing:559.904400px;}
.ws19{word-spacing:559.940400px;}
.ws1e{word-spacing:573.403200px;}
.ws20{word-spacing:669.273000px;}
.ws18{word-spacing:684.352800px;}
.ws13{word-spacing:684.383400px;}
.ws1d{word-spacing:711.924000px;}
.ws21{word-spacing:768.191400px;}
.ws22{word-spacing:820.836000px;}
._f{margin-left:-10.454400px;}
._3c{margin-left:-8.608200px;}
._e{margin-left:-6.103800px;}
._b{margin-left:-4.600800px;}
._2{margin-left:-3.052839px;}
._0{margin-left:-1.244400px;}
._4{width:1.067040px;}
._1{width:2.152200px;}
._a{width:3.277200px;}
._c{width:4.352400px;}
._9{width:5.988600px;}
._d{width:7.454400px;}
._7{width:9.109800px;}
._8{width:11.021400px;}
._5{width:12.187800px;}
._3b{width:13.581000px;}
._42{width:14.855400px;}
._3d{width:15.910800px;}
._6{width:17.150400px;}
._3f{width:18.505800px;}
._43{width:19.507200px;}
._44{width:22.885200px;}
._3a{width:26.112000px;}
._40{width:27.985200px;}
._41{width:29.425200px;}
._3{width:36.624000px;}
._3e{width:42.783600px;}
._45{width:47.709000px;}
._12{width:55.250400px;}
._11{width:296.038800px;}
._10{width:337.562400px;}
._24{width:544.831800px;}
._19{width:558.309000px;}
._14{width:571.831200px;}
._16{width:585.307800px;}
._31{width:610.315800px;}
._1a{width:632.399400px;}
._27{width:641.556000px;}
._1e{width:643.775400px;}
._30{width:648.454200px;}
._25{width:652.404000px;}
._29{width:656.543400px;}
._2f{width:658.548000px;}
._35{width:664.788000px;}
._37{width:667.812000px;}
._28{width:681.204000px;}
._15{width:683.844000px;}
._26{width:687.636000px;}
._32{width:690.852000px;}
._13{width:695.988000px;}
._18{width:700.474800px;}
._36{width:702.479400px;}
._2a{width:705.071400px;}
._1d{width:712.104960px;}
._33{width:721.424400px;}
._38{width:725.268000px;}
._1b{width:732.468000px;}
._2d{width:738.220239px;}
._20{width:739.595400px;}
._34{width:741.178800px;}
._2c{width:744.807639px;}
._1c{width:746.831400px;}
._1f{width:751.247400px;}
._23{width:754.522800px;}
._2e{width:765.684000px;}
._21{width:768.911400px;}
._22{width:772.788000px;}
._2b{width:780.623400px;}
._17{width:806.831400px;}
._39{width:841.483200px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.yb9{bottom:113.078550px;}
.y6f{bottom:113.078700px;}
.yea{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.yc{bottom:117.875550px;}
.y68{bottom:124.596300px;}
.yb{bottom:132.275550px;}
.yb8{bottom:134.078550px;}
.y6e{bottom:134.078700px;}
.ye9{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y67{bottom:145.501800px;}
.ya{bottom:146.675550px;}
.yb7{bottom:155.078550px;}
.y6d{bottom:155.078700px;}
.ye8{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y9{bottom:161.075550px;}
.y66{bottom:166.407300px;}
.yb6{bottom:176.078550px;}
.y6c{bottom:176.078700px;}
.ye7{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.y65{bottom:187.312800px;}
.yb5{bottom:197.078550px;}
.y101{bottom:197.078700px;}
.ye6{bottom:197.078850px;}
.y37{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y64{bottom:208.218300px;}
.y111{bottom:211.440900px;}
.y36{bottom:217.392600px;}
.yb4{bottom:218.078550px;}
.y100{bottom:218.078700px;}
.ye5{bottom:218.078850px;}
.y6b{bottom:221.143500px;}
.y26{bottom:222.212700px;}
.y63{bottom:229.123800px;}
.y116{bottom:232.441050px;}
.y35{bottom:235.392600px;}
.yb3{bottom:239.078550px;}
.yff{bottom:239.078700px;}
.ye4{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y62{bottom:250.029300px;}
.y34{bottom:253.392600px;}
.y6a{bottom:253.440900px;}
.yb2{bottom:260.078550px;}
.yfe{bottom:260.078700px;}
.ye3{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y61{bottom:270.934800px;}
.y33{bottom:271.392600px;}
.y10a{bottom:274.441050px;}
.yb1{bottom:281.078550px;}
.yfd{bottom:281.078700px;}
.ye2{bottom:281.078850px;}
.y23{bottom:285.212700px;}
.y60{bottom:291.840450px;}
.y109{bottom:295.441050px;}
.yb0{bottom:302.078550px;}
.y69{bottom:302.078700px;}
.ye1{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y32{bottom:306.400500px;}
.y5f{bottom:312.745950px;}
.y124{bottom:316.440900px;}
.y122{bottom:316.441050px;}
.yaf{bottom:323.078550px;}
.yfc{bottom:323.078700px;}
.ye0{bottom:323.078850px;}
.y31{bottom:324.400500px;}
.y21{bottom:327.212700px;}
.y5e{bottom:333.651450px;}
.y10d{bottom:337.441050px;}
.y30{bottom:342.400500px;}
.yae{bottom:344.078550px;}
.yfb{bottom:344.078700px;}
.ydf{bottom:344.078850px;}
.y20{bottom:348.212700px;}
.y95{bottom:354.422850px;}
.y5d{bottom:354.556950px;}
.y110{bottom:358.440900px;}
.y112{bottom:358.441050px;}
.yad{bottom:365.078550px;}
.yfa{bottom:365.078700px;}
.yde{bottom:365.078850px;}
.y1f{bottom:369.212700px;}
.y94{bottom:375.328350px;}
.y5c{bottom:375.462450px;}
.y2f{bottom:377.408400px;}
.yac{bottom:386.078550px;}
.yf9{bottom:386.078700px;}
.ydd{bottom:386.078850px;}
.y1e{bottom:390.212700px;}
.y12c{bottom:391.529400px;}
.y2e{bottom:395.408400px;}
.y93{bottom:396.233850px;}
.y5b{bottom:396.367950px;}
.y105{bottom:400.441050px;}
.yab{bottom:407.078550px;}
.yf8{bottom:407.078700px;}
.ydc{bottom:407.078850px;}
.y1d{bottom:411.212700px;}
.y2d{bottom:413.408400px;}
.y92{bottom:417.139500px;}
.y5a{bottom:417.273450px;}
.yaa{bottom:428.078550px;}
.yf7{bottom:428.078700px;}
.ydb{bottom:428.078850px;}
.y2c{bottom:431.408400px;}
.y91{bottom:438.045000px;}
.y59{bottom:438.178950px;}
.y1c{bottom:447.196500px;}
.ya9{bottom:449.078550px;}
.yf6{bottom:449.078700px;}
.yda{bottom:449.078850px;}
.y90{bottom:458.950500px;}
.y58{bottom:459.084450px;}
.ya8{bottom:470.078550px;}
.yf5{bottom:470.078700px;}
.yd9{bottom:470.078850px;}
.y8f{bottom:479.856000px;}
.y57{bottom:479.989950px;}
.y107{bottom:484.440900px;}
.y121{bottom:484.441050px;}
.ya7{bottom:491.078550px;}
.yf4{bottom:491.078700px;}
.yd8{bottom:491.078850px;}
.y8e{bottom:500.761500px;}
.y56{bottom:500.895450px;}
.y11f{bottom:505.441050px;}
.ya6{bottom:512.078550px;}
.yf3{bottom:512.078700px;}
.yd7{bottom:512.078850px;}
.y12b{bottom:517.529400px;}
.y8d{bottom:521.667000px;}
.y55{bottom:521.800950px;}
.y12e{bottom:525.513600px;}
.y115{bottom:526.441050px;}
.ya5{bottom:533.078550px;}
.yf2{bottom:533.078700px;}
.yd6{bottom:533.078850px;}
.y1b{bottom:536.228100px;}
.y8c{bottom:542.572500px;}
.y11a{bottom:547.440900px;}
.y114{bottom:547.441050px;}
.y54{bottom:552.282900px;}
.ya4{bottom:554.078550px;}
.yf1{bottom:554.078700px;}
.yd5{bottom:554.078850px;}
.y12d{bottom:557.811150px;}
.y8b{bottom:563.478000px;}
.ya3{bottom:575.078550px;}
.yf0{bottom:575.078700px;}
.yd4{bottom:575.078850px;}
.y1a{bottom:577.287900px;}
.y8a{bottom:584.383500px;}
.ya2{bottom:596.078550px;}
.y53{bottom:596.078700px;}
.yd3{bottom:596.078850px;}
.y19{bottom:597.087900px;}
.y89{bottom:605.289000px;}
.y106{bottom:610.440900px;}
.y18{bottom:616.887900px;}
.ya1{bottom:617.078550px;}
.y52{bottom:617.078700px;}
.yd2{bottom:617.078850px;}
.y88{bottom:626.194500px;}
.y120{bottom:631.441050px;}
.y17{bottom:636.687900px;}
.ya0{bottom:638.078550px;}
.yef{bottom:638.078700px;}
.yd1{bottom:638.078850px;}
.y12a{bottom:643.529400px;}
.y87{bottom:647.100000px;}
.y51{bottom:652.440900px;}
.y16{bottom:656.487900px;}
.yee{bottom:659.078700px;}
.yd0{bottom:659.078850px;}
.y86{bottom:668.005500px;}
.y119{bottom:673.440900px;}
.y103{bottom:673.441050px;}
.y15{bottom:676.287900px;}
.y9f{bottom:680.078550px;}
.yed{bottom:680.078700px;}
.ycf{bottom:680.078850px;}
.y85{bottom:688.911000px;}
.y11c{bottom:694.441050px;}
.y14{bottom:696.087900px;}
.y9e{bottom:701.078550px;}
.y50{bottom:701.078700px;}
.yce{bottom:701.078850px;}
.y84{bottom:709.816650px;}
.y13{bottom:715.887900px;}
.y9d{bottom:722.078550px;}
.y4f{bottom:722.078700px;}
.ycd{bottom:722.078850px;}
.y83{bottom:730.722150px;}
.y12{bottom:735.687900px;}
.y11e{bottom:736.441050px;}
.y9c{bottom:743.078550px;}
.y4e{bottom:743.078700px;}
.ycc{bottom:743.078850px;}
.y82{bottom:751.627650px;}
.y11{bottom:755.487900px;}
.y9b{bottom:764.078550px;}
.y4d{bottom:764.078700px;}
.ycb{bottom:764.078850px;}
.y81{bottom:772.533150px;}
.y10{bottom:775.287900px;}
.y9a{bottom:785.078550px;}
.y4c{bottom:785.078700px;}
.yca{bottom:785.078850px;}
.y80{bottom:793.438650px;}
.yf{bottom:795.087900px;}
.y10f{bottom:799.440900px;}
.y99{bottom:806.078550px;}
.y4b{bottom:806.078700px;}
.yc9{bottom:806.078850px;}
.y129{bottom:811.529250px;}
.y7f{bottom:814.344150px;}
.y108{bottom:820.441050px;}
.ye{bottom:826.185300px;}
.y4a{bottom:827.078700px;}
.yc8{bottom:827.078850px;}
.y7e{bottom:835.249650px;}
.y98{bottom:841.440900px;}
.y11b{bottom:841.441050px;}
.y49{bottom:848.078700px;}
.yc7{bottom:848.078850px;}
.y7d{bottom:856.155150px;}
.y10c{bottom:862.440900px;}
.y48{bottom:869.078700px;}
.yc6{bottom:869.078850px;}
.y128{bottom:874.529250px;}
.y7c{bottom:877.060800px;}
.y118{bottom:883.440900px;}
.y123{bottom:883.441050px;}
.y47{bottom:890.078700px;}
.yc5{bottom:890.078850px;}
.y7b{bottom:897.966300px;}
.y8{bottom:905.466750px;}
.y46{bottom:911.078700px;}
.yc4{bottom:911.078850px;}
.y7a{bottom:918.871800px;}
.y7{bottom:923.466750px;}
.y104{bottom:925.441050px;}
.y45{bottom:932.078700px;}
.yc3{bottom:932.078850px;}
.y127{bottom:937.529250px;}
.y79{bottom:939.777150px;}
.y6{bottom:941.466750px;}
.y10e{bottom:946.440900px;}
.y44{bottom:953.078700px;}
.yc2{bottom:953.078850px;}
.y5{bottom:959.466750px;}
.y78{bottom:960.682650px;}
.yec{bottom:967.440900px;}
.y11d{bottom:967.441050px;}
.y43{bottom:974.078700px;}
.yc1{bottom:974.078850px;}
.y4{bottom:977.466750px;}
.y77{bottom:981.588300px;}
.y10b{bottom:988.440900px;}
.y42{bottom:995.078700px;}
.yc0{bottom:995.078850px;}
.y126{bottom:1000.937100px;}
.y76{bottom:1002.493800px;}
.y102{bottom:1009.441050px;}
.y3{bottom:1012.474800px;}
.y41{bottom:1016.078700px;}
.ybf{bottom:1016.078850px;}
.y75{bottom:1023.399300px;}
.y117{bottom:1030.440900px;}
.y125{bottom:1030.441050px;}
.y40{bottom:1037.078700px;}
.ybe{bottom:1037.078850px;}
.y74{bottom:1044.304800px;}
.y2{bottom:1049.282550px;}
.y113{bottom:1051.441050px;}
.y3f{bottom:1058.078700px;}
.ybd{bottom:1058.078850px;}
.y73{bottom:1065.210300px;}
.y3e{bottom:1079.078700px;}
.ybc{bottom:1079.078850px;}
.y72{bottom:1086.115800px;}
.y130{bottom:1089.903300px;}
.y97{bottom:1100.078700px;}
.ybb{bottom:1100.078850px;}
.y71{bottom:1107.021300px;}
.yd{bottom:1109.815500px;}
.y3d{bottom:1111.570800px;}
.yeb{bottom:1112.695800px;}
.y96{bottom:1121.078700px;}
.yba{bottom:1121.078850px;}
.y12f{bottom:1122.200850px;}
.y70{bottom:1128.226800px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h6{height:34.446094px;}
.hf{height:36.492188px;}
.h10{height:36.796875px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.h7{height:41.053711px;}
.hd{height:42.793945px;}
.hc{height:43.057617px;}
.h11{height:43.218750px;}
.h8{height:45.996094px;}
.h9{height:48.621094px;}
.h13{height:50.176758px;}
.h12{height:50.595703px;}
.h4{height:52.948242px;}
.hb{height:54.023438px;}
.ha{height:55.195312px;}
.h3{height:77.545898px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xe{left:108.286950px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x4{left:300.189000px;}
.xd{left:304.440900px;}
.xc{left:315.063000px;}
.x5{left:317.196900px;}
.xf{left:342.708750px;}
.x3{left:417.783900px;}
.xa{left:652.459950px;}
.x9{left:672.129900px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.816000pt;}
.ls5{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.ls10{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.066667pt;}
.ls0{letter-spacing:38.383435pt;}
.ls8{letter-spacing:112.084267pt;}
.lsb{letter-spacing:520.273067pt;}
.ls9{letter-spacing:520.273600pt;}
.lsc{letter-spacing:520.283733pt;}
.ws4{word-spacing:-15.936000pt;}
.ws2d{word-spacing:-14.608000pt;}
.ws2f{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws29{word-spacing:-13.226667pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws2b{word-spacing:-12.533333pt;}
.ws37{word-spacing:-12.432000pt;}
.ws31{word-spacing:-11.904000pt;}
.ws32{word-spacing:-11.760000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws12{word-spacing:-10.624000pt;}
.ws5{word-spacing:-10.464000pt;}
.ws7{word-spacing:-9.984000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws6{word-spacing:-9.648000pt;}
.ws11{word-spacing:-9.600000pt;}
.ws9{word-spacing:-9.301333pt;}
.ws2{word-spacing:-8.371200pt;}
.ws34{word-spacing:-6.940032pt;}
.ws2e{word-spacing:-6.453333pt;}
.ws38{word-spacing:-1.920000pt;}
.wsb{word-spacing:-1.114667pt;}
.ws24{word-spacing:-1.066667pt;}
.ws39{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.912000pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws28{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.480000pt;}
.ws3a{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.192000pt;}
.wsa{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.533333pt;}
.wsd{word-spacing:0.614400pt;}
.ws10{word-spacing:0.816000pt;}
.wsf{word-spacing:1.066667pt;}
.ws35{word-spacing:1.296000pt;}
.ws36{word-spacing:2.160000pt;}
.ws30{word-spacing:5.920000pt;}
.ws27{word-spacing:6.826667pt;}
.ws25{word-spacing:7.520000pt;}
.ws26{word-spacing:7.626667pt;}
.ws1c{word-spacing:8.320000pt;}
.ws0{word-spacing:29.912120pt;}
.ws17{word-spacing:77.524267pt;}
.ws1a{word-spacing:77.566933pt;}
.ws15{word-spacing:101.502933pt;}
.ws16{word-spacing:101.545600pt;}
.ws23{word-spacing:447.905067pt;}
.ws1f{word-spacing:497.692267pt;}
.ws14{word-spacing:497.692800pt;}
.ws19{word-spacing:497.724800pt;}
.ws1e{word-spacing:509.691733pt;}
.ws20{word-spacing:594.909333pt;}
.ws18{word-spacing:608.313600pt;}
.ws13{word-spacing:608.340800pt;}
.ws1d{word-spacing:632.821333pt;}
.ws21{word-spacing:682.836800pt;}
.ws22{word-spacing:729.632000pt;}
._f{margin-left:-9.292800pt;}
._3c{margin-left:-7.651733pt;}
._e{margin-left:-5.425600pt;}
._b{margin-left:-4.089600pt;}
._2{margin-left:-2.713635pt;}
._0{margin-left:-1.106133pt;}
._4{width:0.948480pt;}
._1{width:1.913067pt;}
._a{width:2.913067pt;}
._c{width:3.868800pt;}
._9{width:5.323200pt;}
._d{width:6.626133pt;}
._7{width:8.097600pt;}
._8{width:9.796800pt;}
._5{width:10.833600pt;}
._3b{width:12.072000pt;}
._42{width:13.204800pt;}
._3d{width:14.142933pt;}
._6{width:15.244800pt;}
._3f{width:16.449600pt;}
._43{width:17.339733pt;}
._44{width:20.342400pt;}
._3a{width:23.210667pt;}
._40{width:24.875733pt;}
._41{width:26.155733pt;}
._3{width:32.554667pt;}
._3e{width:38.029867pt;}
._45{width:42.408000pt;}
._12{width:49.111467pt;}
._11{width:263.145600pt;}
._10{width:300.055467pt;}
._24{width:484.294933pt;}
._19{width:496.274667pt;}
._14{width:508.294400pt;}
._16{width:520.273600pt;}
._31{width:542.502933pt;}
._1a{width:562.132800pt;}
._27{width:570.272000pt;}
._1e{width:572.244800pt;}
._30{width:576.403733pt;}
._25{width:579.914667pt;}
._29{width:583.594133pt;}
._2f{width:585.376000pt;}
._35{width:590.922667pt;}
._37{width:593.610667pt;}
._28{width:605.514667pt;}
._15{width:607.861333pt;}
._26{width:611.232000pt;}
._32{width:614.090667pt;}
._13{width:618.656000pt;}
._18{width:622.644267pt;}
._36{width:624.426133pt;}
._2a{width:626.730133pt;}
._1d{width:632.982187pt;}
._33{width:641.266133pt;}
._38{width:644.682667pt;}
._1b{width:651.082667pt;}
._2d{width:656.195768pt;}
._20{width:657.418133pt;}
._34{width:658.825600pt;}
._2c{width:662.051235pt;}
._1c{width:663.850133pt;}
._1f{width:667.775467pt;}
._23{width:670.686933pt;}
._2e{width:680.608000pt;}
._21{width:683.476800pt;}
._22{width:686.922667pt;}
._2b{width:693.887467pt;}
._17{width:717.183467pt;}
._39{width:747.985067pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.yb9{bottom:100.514267pt;}
.y6f{bottom:100.514400pt;}
.yea{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.yc{bottom:104.778267pt;}
.y68{bottom:110.752267pt;}
.yb{bottom:117.578267pt;}
.yb8{bottom:119.180933pt;}
.y6e{bottom:119.181067pt;}
.ye9{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y67{bottom:129.334933pt;}
.ya{bottom:130.378267pt;}
.yb7{bottom:137.847600pt;}
.y6d{bottom:137.847733pt;}
.ye8{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y9{bottom:143.178267pt;}
.y66{bottom:147.917600pt;}
.yb6{bottom:156.514267pt;}
.y6c{bottom:156.514400pt;}
.ye7{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.y65{bottom:166.500267pt;}
.yb5{bottom:175.180933pt;}
.y101{bottom:175.181067pt;}
.ye6{bottom:175.181200pt;}
.y37{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y64{bottom:185.082933pt;}
.y111{bottom:187.947467pt;}
.y36{bottom:193.237867pt;}
.yb4{bottom:193.847600pt;}
.y100{bottom:193.847733pt;}
.ye5{bottom:193.847867pt;}
.y6b{bottom:196.572000pt;}
.y26{bottom:197.522400pt;}
.y63{bottom:203.665600pt;}
.y116{bottom:206.614267pt;}
.y35{bottom:209.237867pt;}
.yb3{bottom:212.514267pt;}
.yff{bottom:212.514400pt;}
.ye4{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y62{bottom:222.248267pt;}
.y34{bottom:225.237867pt;}
.y6a{bottom:225.280800pt;}
.yb2{bottom:231.180933pt;}
.yfe{bottom:231.181067pt;}
.ye3{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y61{bottom:240.830933pt;}
.y33{bottom:241.237867pt;}
.y10a{bottom:243.947600pt;}
.yb1{bottom:249.847600pt;}
.yfd{bottom:249.847733pt;}
.ye2{bottom:249.847867pt;}
.y23{bottom:253.522400pt;}
.y60{bottom:259.413733pt;}
.y109{bottom:262.614267pt;}
.yb0{bottom:268.514267pt;}
.y69{bottom:268.514400pt;}
.ye1{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y32{bottom:272.356000pt;}
.y5f{bottom:277.996400pt;}
.y124{bottom:281.280800pt;}
.y122{bottom:281.280933pt;}
.yaf{bottom:287.180933pt;}
.yfc{bottom:287.181067pt;}
.ye0{bottom:287.181200pt;}
.y31{bottom:288.356000pt;}
.y21{bottom:290.855733pt;}
.y5e{bottom:296.579067pt;}
.y10d{bottom:299.947600pt;}
.y30{bottom:304.356000pt;}
.yae{bottom:305.847600pt;}
.yfb{bottom:305.847733pt;}
.ydf{bottom:305.847867pt;}
.y20{bottom:309.522400pt;}
.y95{bottom:315.042533pt;}
.y5d{bottom:315.161733pt;}
.y110{bottom:318.614133pt;}
.y112{bottom:318.614267pt;}
.yad{bottom:324.514267pt;}
.yfa{bottom:324.514400pt;}
.yde{bottom:324.514533pt;}
.y1f{bottom:328.189067pt;}
.y94{bottom:333.625200pt;}
.y5c{bottom:333.744400pt;}
.y2f{bottom:335.474133pt;}
.yac{bottom:343.180933pt;}
.yf9{bottom:343.181067pt;}
.ydd{bottom:343.181200pt;}
.y1e{bottom:346.855733pt;}
.y12c{bottom:348.026133pt;}
.y2e{bottom:351.474133pt;}
.y93{bottom:352.207867pt;}
.y5b{bottom:352.327067pt;}
.y105{bottom:355.947600pt;}
.yab{bottom:361.847600pt;}
.yf8{bottom:361.847733pt;}
.ydc{bottom:361.847867pt;}
.y1d{bottom:365.522400pt;}
.y2d{bottom:367.474133pt;}
.y92{bottom:370.790667pt;}
.y5a{bottom:370.909733pt;}
.yaa{bottom:380.514267pt;}
.yf7{bottom:380.514400pt;}
.ydb{bottom:380.514533pt;}
.y2c{bottom:383.474133pt;}
.y91{bottom:389.373333pt;}
.y59{bottom:389.492400pt;}
.y1c{bottom:397.508000pt;}
.ya9{bottom:399.180933pt;}
.yf6{bottom:399.181067pt;}
.yda{bottom:399.181200pt;}
.y90{bottom:407.956000pt;}
.y58{bottom:408.075067pt;}
.ya8{bottom:417.847600pt;}
.yf5{bottom:417.847733pt;}
.yd9{bottom:417.847867pt;}
.y8f{bottom:426.538667pt;}
.y57{bottom:426.657733pt;}
.y107{bottom:430.614133pt;}
.y121{bottom:430.614267pt;}
.ya7{bottom:436.514267pt;}
.yf4{bottom:436.514400pt;}
.yd8{bottom:436.514533pt;}
.y8e{bottom:445.121333pt;}
.y56{bottom:445.240400pt;}
.y11f{bottom:449.280933pt;}
.ya6{bottom:455.180933pt;}
.yf3{bottom:455.181067pt;}
.yd7{bottom:455.181200pt;}
.y12b{bottom:460.026133pt;}
.y8d{bottom:463.704000pt;}
.y55{bottom:463.823067pt;}
.y12e{bottom:467.123200pt;}
.y115{bottom:467.947600pt;}
.ya5{bottom:473.847600pt;}
.yf2{bottom:473.847733pt;}
.yd6{bottom:473.847867pt;}
.y1b{bottom:476.647200pt;}
.y8c{bottom:482.286667pt;}
.y11a{bottom:486.614133pt;}
.y114{bottom:486.614267pt;}
.y54{bottom:490.918133pt;}
.ya4{bottom:492.514267pt;}
.yf1{bottom:492.514400pt;}
.yd5{bottom:492.514533pt;}
.y12d{bottom:495.832133pt;}
.y8b{bottom:500.869333pt;}
.ya3{bottom:511.180933pt;}
.yf0{bottom:511.181067pt;}
.yd4{bottom:511.181200pt;}
.y1a{bottom:513.144800pt;}
.y8a{bottom:519.452000pt;}
.ya2{bottom:529.847600pt;}
.y53{bottom:529.847733pt;}
.yd3{bottom:529.847867pt;}
.y19{bottom:530.744800pt;}
.y89{bottom:538.034667pt;}
.y106{bottom:542.614133pt;}
.y18{bottom:548.344800pt;}
.ya1{bottom:548.514267pt;}
.y52{bottom:548.514400pt;}
.yd2{bottom:548.514533pt;}
.y88{bottom:556.617333pt;}
.y120{bottom:561.280933pt;}
.y17{bottom:565.944800pt;}
.ya0{bottom:567.180933pt;}
.yef{bottom:567.181067pt;}
.yd1{bottom:567.181200pt;}
.y12a{bottom:572.026133pt;}
.y87{bottom:575.200000pt;}
.y51{bottom:579.947467pt;}
.y16{bottom:583.544800pt;}
.yee{bottom:585.847733pt;}
.yd0{bottom:585.847867pt;}
.y86{bottom:593.782667pt;}
.y119{bottom:598.614133pt;}
.y103{bottom:598.614267pt;}
.y15{bottom:601.144800pt;}
.y9f{bottom:604.514267pt;}
.yed{bottom:604.514400pt;}
.ycf{bottom:604.514533pt;}
.y85{bottom:612.365333pt;}
.y11c{bottom:617.280933pt;}
.y14{bottom:618.744800pt;}
.y9e{bottom:623.180933pt;}
.y50{bottom:623.181067pt;}
.yce{bottom:623.181200pt;}
.y84{bottom:630.948133pt;}
.y13{bottom:636.344800pt;}
.y9d{bottom:641.847600pt;}
.y4f{bottom:641.847733pt;}
.ycd{bottom:641.847867pt;}
.y83{bottom:649.530800pt;}
.y12{bottom:653.944800pt;}
.y11e{bottom:654.614267pt;}
.y9c{bottom:660.514267pt;}
.y4e{bottom:660.514400pt;}
.ycc{bottom:660.514533pt;}
.y82{bottom:668.113467pt;}
.y11{bottom:671.544800pt;}
.y9b{bottom:679.180933pt;}
.y4d{bottom:679.181067pt;}
.ycb{bottom:679.181200pt;}
.y81{bottom:686.696133pt;}
.y10{bottom:689.144800pt;}
.y9a{bottom:697.847600pt;}
.y4c{bottom:697.847733pt;}
.yca{bottom:697.847867pt;}
.y80{bottom:705.278800pt;}
.yf{bottom:706.744800pt;}
.y10f{bottom:710.614133pt;}
.y99{bottom:716.514267pt;}
.y4b{bottom:716.514400pt;}
.yc9{bottom:716.514533pt;}
.y129{bottom:721.359333pt;}
.y7f{bottom:723.861467pt;}
.y108{bottom:729.280933pt;}
.ye{bottom:734.386933pt;}
.y4a{bottom:735.181067pt;}
.yc8{bottom:735.181200pt;}
.y7e{bottom:742.444133pt;}
.y98{bottom:747.947467pt;}
.y11b{bottom:747.947600pt;}
.y49{bottom:753.847733pt;}
.yc7{bottom:753.847867pt;}
.y7d{bottom:761.026800pt;}
.y10c{bottom:766.614133pt;}
.y48{bottom:772.514400pt;}
.yc6{bottom:772.514533pt;}
.y128{bottom:777.359333pt;}
.y7c{bottom:779.609600pt;}
.y118{bottom:785.280800pt;}
.y123{bottom:785.280933pt;}
.y47{bottom:791.181067pt;}
.yc5{bottom:791.181200pt;}
.y7b{bottom:798.192267pt;}
.y8{bottom:804.859333pt;}
.y46{bottom:809.847733pt;}
.yc4{bottom:809.847867pt;}
.y7a{bottom:816.774933pt;}
.y7{bottom:820.859333pt;}
.y104{bottom:822.614267pt;}
.y45{bottom:828.514400pt;}
.yc3{bottom:828.514533pt;}
.y127{bottom:833.359333pt;}
.y79{bottom:835.357467pt;}
.y6{bottom:836.859333pt;}
.y10e{bottom:841.280800pt;}
.y44{bottom:847.181067pt;}
.yc2{bottom:847.181200pt;}
.y5{bottom:852.859333pt;}
.y78{bottom:853.940133pt;}
.yec{bottom:859.947467pt;}
.y11d{bottom:859.947600pt;}
.y43{bottom:865.847733pt;}
.yc1{bottom:865.847867pt;}
.y4{bottom:868.859333pt;}
.y77{bottom:872.522933pt;}
.y10b{bottom:878.614133pt;}
.y42{bottom:884.514400pt;}
.yc0{bottom:884.514533pt;}
.y126{bottom:889.721867pt;}
.y76{bottom:891.105600pt;}
.y102{bottom:897.280933pt;}
.y3{bottom:899.977600pt;}
.y41{bottom:903.181067pt;}
.ybf{bottom:903.181200pt;}
.y75{bottom:909.688267pt;}
.y117{bottom:915.947467pt;}
.y125{bottom:915.947600pt;}
.y40{bottom:921.847733pt;}
.ybe{bottom:921.847867pt;}
.y74{bottom:928.270933pt;}
.y2{bottom:932.695600pt;}
.y113{bottom:934.614267pt;}
.y3f{bottom:940.514400pt;}
.ybd{bottom:940.514533pt;}
.y73{bottom:946.853600pt;}
.y3e{bottom:959.181067pt;}
.ybc{bottom:959.181200pt;}
.y72{bottom:965.436267pt;}
.y130{bottom:968.802933pt;}
.y97{bottom:977.847733pt;}
.ybb{bottom:977.847867pt;}
.y71{bottom:984.018933pt;}
.yd{bottom:986.502667pt;}
.y3d{bottom:988.062933pt;}
.yeb{bottom:989.062933pt;}
.y96{bottom:996.514400pt;}
.yba{bottom:996.514533pt;}
.y12f{bottom:997.511867pt;}
.y70{bottom:1002.868267pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.hf{height:32.437500pt;}
.h10{height:32.708333pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.h7{height:36.492188pt;}
.hd{height:38.039062pt;}
.hc{height:38.273438pt;}
.h11{height:38.416667pt;}
.h8{height:40.885417pt;}
.h9{height:43.218750pt;}
.h13{height:44.601562pt;}
.h12{height:44.973958pt;}
.h4{height:47.065104pt;}
.hb{height:48.020833pt;}
.ha{height:49.062500pt;}
.h3{height:68.929688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xe{left:96.255067pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x4{left:266.834667pt;}
.xd{left:270.614133pt;}
.xc{left:280.056000pt;}
.x5{left:281.952800pt;}
.xf{left:304.630000pt;}
.x3{left:371.363467pt;}
.xa{left:579.964400pt;}
.x9{left:597.448800pt;}
.x1{left:712.311867pt;}
}




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