
    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_84f3f4ae67fe36ccbd45ec42.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_b49ee734716447b6d04c56a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_ac07a8461f65555bfb4dce8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_8ad97c5097942466c041deb9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_e629970f077644076c883808.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:26.280000px;}
.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;}
}
.ws2f{word-spacing:-55.944000px;}
.wsa3{word-spacing:-45.363600px;}
.wsa4{word-spacing:-44.641800px;}
.ws86{word-spacing:-39.085200px;}
.ws93{word-spacing:-38.867400px;}
.wsa2{word-spacing:-38.863800px;}
.ws4e{word-spacing:-38.661000px;}
.ws47{word-spacing:-38.659200px;}
.ws8d{word-spacing:-38.658600px;}
.ws6{word-spacing:-38.657700px;}
.ws8c{word-spacing:-38.655900px;}
.ws6b{word-spacing:-38.649900px;}
.ws5{word-spacing:-38.647800px;}
.ws20{word-spacing:-38.640000px;}
.wsa8{word-spacing:-38.637000px;}
.ws69{word-spacing:-38.452200px;}
.ws97{word-spacing:-38.448600px;}
.ws89{word-spacing:-38.439900px;}
.wsa{word-spacing:-38.431800px;}
.ws59{word-spacing:-38.430900px;}
.ws3{word-spacing:-38.374200px;}
.ws56{word-spacing:-38.373900px;}
.wsb{word-spacing:-38.360700px;}
.ws8a{word-spacing:-38.160600px;}
.ws2b{word-spacing:-38.160000px;}
.ws66{word-spacing:-38.158200px;}
.ws14{word-spacing:-38.154600px;}
.ws44{word-spacing:-38.154000px;}
.ws8b{word-spacing:-38.151900px;}
.ws68{word-spacing:-38.143500px;}
.ws10{word-spacing:-38.140200px;}
.ws9{word-spacing:-38.093100px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.ws17{word-spacing:-37.936800px;}
.ws2a{word-spacing:-37.935000px;}
.ws6d{word-spacing:-37.934100px;}
.ws88{word-spacing:-37.933200px;}
.ws2{word-spacing:-37.931400px;}
.wsa9{word-spacing:-37.929600px;}
.ws58{word-spacing:-37.928100px;}
.ws2e{word-spacing:-37.921800px;}
.ws35{word-spacing:-37.918800px;}
.ws6e{word-spacing:-37.709100px;}
.ws21{word-spacing:-37.446000px;}
.ws48{word-spacing:-37.440000px;}
.ws46{word-spacing:-37.420200px;}
.ws22{word-spacing:-37.224000px;}
.wsad{word-spacing:-37.220400px;}
.ws19{word-spacing:-36.855900px;}
.ws28{word-spacing:-36.720000px;}
.ws9d{word-spacing:-36.705600px;}
.ws18{word-spacing:-36.504000px;}
.ws27{word-spacing:-36.495000px;}
.ws36{word-spacing:-36.493800px;}
.ws92{word-spacing:-36.284400px;}
.ws8f{word-spacing:-35.996400px;}
.ws7f{word-spacing:-35.784000px;}
.ws52{word-spacing:-35.776800px;}
.ws3b{word-spacing:-35.771400px;}
.wsa5{word-spacing:-35.769900px;}
.ws29{word-spacing:-35.704800px;}
.ws2d{word-spacing:-35.562600px;}
.ws95{word-spacing:-35.542500px;}
.wsaf{word-spacing:-35.280000px;}
.ws2c{word-spacing:-35.267400px;}
.ws80{word-spacing:-35.064000px;}
.ws3d{word-spacing:-35.061000px;}
.wsab{word-spacing:-34.833600px;}
.ws15{word-spacing:-34.551900px;}
.ws9a{word-spacing:-34.541400px;}
.ws7a{word-spacing:-34.537500px;}
.ws84{word-spacing:-34.344000px;}
.ws3e{word-spacing:-34.340400px;}
.ws16{word-spacing:-34.336800px;}
.ws25{word-spacing:-34.335000px;}
.ws4c{word-spacing:-34.332600px;}
.ws4d{word-spacing:-34.117200px;}
.wsa1{word-spacing:-33.840000px;}
.ws83{word-spacing:-33.626400px;}
.ws62{word-spacing:-33.615000px;}
.ws8{word-spacing:-33.547800px;}
.wsa0{word-spacing:-33.112800px;}
.ws63{word-spacing:-32.886000px;}
.ws42{word-spacing:-32.679000px;}
.ws67{word-spacing:-32.400000px;}
.ws5f{word-spacing:-32.175000px;}
.ws49{word-spacing:-32.173800px;}
.ws6f{word-spacing:-32.173200px;}
.ws61{word-spacing:-31.674600px;}
.ws1e{word-spacing:-31.665600px;}
.ws81{word-spacing:-31.470000px;}
.wsb0{word-spacing:-31.464000px;}
.ws7b{word-spacing:-31.459200px;}
.ws9f{word-spacing:-31.235400px;}
.ws4a{word-spacing:-30.738600px;}
.ws39{word-spacing:-30.736800px;}
.ws5a{word-spacing:-30.735000px;}
.ws51{word-spacing:-30.234600px;}
.ws74{word-spacing:-30.227400px;}
.ws4f{word-spacing:-30.020400px;}
.ws3c{word-spacing:-30.004200px;}
.ws65{word-spacing:-29.503800px;}
.ws9b{word-spacing:-29.295000px;}
.ws60{word-spacing:-29.077200px;}
.ws24{word-spacing:-28.796400px;}
.ws12{word-spacing:-28.355400px;}
.wsf{word-spacing:-27.856800px;}
.ws23{word-spacing:-27.847800px;}
.ws32{word-spacing:-27.356400px;}
.ws1c{word-spacing:-27.144000px;}
.ws54{word-spacing:-27.140400px;}
.ws43{word-spacing:-27.136800px;}
.ws98{word-spacing:-27.135000px;}
.ws99{word-spacing:-27.123600px;}
.ws38{word-spacing:-27.062100px;}
.ws5b{word-spacing:-26.640000px;}
.ws94{word-spacing:-26.417700px;}
.wsb2{word-spacing:-26.403600px;}
.ws73{word-spacing:-26.206200px;}
.ws4b{word-spacing:-25.695000px;}
.ws37{word-spacing:-25.693800px;}
.ws31{word-spacing:-25.693200px;}
.ws7d{word-spacing:-24.978600px;}
.ws8e{word-spacing:-24.969600px;}
.wsac{word-spacing:-24.759000px;}
.ws3f{word-spacing:-24.474600px;}
.ws96{word-spacing:-24.471900px;}
.wsae{word-spacing:-24.264000px;}
.ws91{word-spacing:-24.255000px;}
.wse{word-spacing:-23.518800px;}
.ws53{word-spacing:-22.597200px;}
.ws55{word-spacing:-22.100400px;}
.ws9e{word-spacing:-21.384000px;}
.wsaa{word-spacing:-21.381300px;}
.ws77{word-spacing:-21.378600px;}
.ws85{word-spacing:-21.370500px;}
.ws79{word-spacing:-20.655000px;}
.ws26{word-spacing:-20.160000px;}
.ws1f{word-spacing:-19.944000px;}
.ws87{word-spacing:-19.927200px;}
.ws90{word-spacing:-19.440000px;}
.ws30{word-spacing:-19.224000px;}
.wsb3{word-spacing:-18.714000px;}
.ws7{word-spacing:-18.472500px;}
.ws76{word-spacing:-17.989200px;}
.ws1d{word-spacing:-17.784000px;}
.ws40{word-spacing:-17.776800px;}
.wsa6{word-spacing:-17.057100px;}
.wsa7{word-spacing:-16.560000px;}
.ws75{word-spacing:-16.335000px;}
.ws33{word-spacing:-16.329600px;}
.ws64{word-spacing:-15.405000px;}
.ws1b{word-spacing:-14.910000px;}
.ws5d{word-spacing:-14.902200px;}
.ws72{word-spacing:-14.690400px;}
.wsb1{word-spacing:-14.406000px;}
.ws71{word-spacing:-13.953000px;}
.ws3a{word-spacing:-13.670400px;}
.ws34{word-spacing:-13.446000px;}
.ws45{word-spacing:-12.732300px;}
.ws78{word-spacing:-12.718200px;}
.ws7e{word-spacing:-12.240000px;}
.ws13{word-spacing:-12.013200px;}
.ws5e{word-spacing:-11.071800px;}
.ws9c{word-spacing:-10.569600px;}
.ws41{word-spacing:-8.399700px;}
.ws7c{word-spacing:-7.698600px;}
.wsd{word-spacing:-7.693200px;}
.wsc{word-spacing:-6.965100px;}
.ws50{word-spacing:-5.034600px;}
.ws82{word-spacing:-2.869800px;}
.ws57{word-spacing:0.000000px;}
.ws5c{word-spacing:0.946800px;}
.ws11{word-spacing:5.986800px;}
.ws70{word-spacing:13.896000px;}
.ws1a{word-spacing:38.676600px;}
.ws6c{word-spacing:96.912900px;}
.ws6a{word-spacing:96.921600px;}
.ws1{word-spacing:455.092800px;}
._20{margin-left:-2.332200px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._1a{width:2.089200px;}
._21{width:17.708400px;}
._4{width:18.775800px;}
._8{width:20.018400px;}
._a{width:21.102300px;}
._9{width:22.819800px;}
._16{width:24.363600px;}
._e{width:25.827600px;}
._14{width:26.962800px;}
._10{width:28.253400px;}
._7{width:29.656800px;}
._13{width:31.285800px;}
._15{width:33.126000px;}
._6{width:34.238400px;}
._1{width:36.000000px;}
._f{width:37.921200px;}
._d{width:39.183600px;}
._11{width:40.988400px;}
._c{width:42.120000px;}
._12{width:43.744800px;}
._17{width:44.982300px;}
._19{width:46.057800px;}
._1e{width:47.073600px;}
._5{width:50.027100px;}
._18{width:52.489200px;}
._1c{width:54.202200px;}
._1f{width:68.858400px;}
._1b{width:71.091600px;}
._1d{width:74.398800px;}
._b{width:95.747400px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:46.800000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.ya2{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y99{bottom:0.013500px;}
.y9f{bottom:0.030000px;}
.ya0{bottom:0.045000px;}
.ya1{bottom:0.075000px;}
.y9e{bottom:0.088500px;}
.ya3{bottom:0.105000px;}
.ya5{bottom:0.120000px;}
.y9d{bottom:0.135000px;}
.y5d{bottom:3.811500px;}
.y55{bottom:3.900000px;}
.y7{bottom:4.471500px;}
.ya4{bottom:4.545000px;}
.yc8{bottom:8.505000px;}
.y74{bottom:11.100000px;}
.y7b{bottom:11.400000px;}
.y59{bottom:11.520000px;}
.y7d{bottom:11.536500px;}
.y7f{bottom:12.661500px;}
.y57{bottom:12.780000px;}
.y5b{bottom:13.036500px;}
.y9b{bottom:13.425000px;}
.y5f{bottom:13.890000px;}
.ycc{bottom:14.775000px;}
.yce{bottom:14.850000px;}
.yca{bottom:14.880000px;}
.yd0{bottom:15.750000px;}
.y78{bottom:29.400000px;}
.y52{bottom:44.311500px;}
.y54{bottom:45.480000px;}
.y77{bottom:50.100000px;}
.y76{bottom:70.800000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y72{bottom:78.180000px;}
.y75{bottom:91.500000px;}
.yc6{bottom:104.655000px;}
.y9c{bottom:105.150000px;}
.y98{bottom:105.225000px;}
.y56{bottom:119.775000px;}
.y51{bottom:119.925000px;}
.y2c{bottom:121.396500px;}
.yc5{bottom:125.355000px;}
.y2b{bottom:142.096500px;}
.yc4{bottom:146.055000px;}
.y53{bottom:159.075000px;}
.y7e{bottom:160.575000px;}
.y2a{bottom:162.796500px;}
.yc3{bottom:166.755000px;}
.y29{bottom:183.496500px;}
.yc2{bottom:187.455000px;}
.y7c{bottom:198.600000px;}
.yc1{bottom:208.155000px;}
.y28{bottom:225.075000px;}
.yc0{bottom:228.855000px;}
.y7a{bottom:235.275000px;}
.y27{bottom:245.775000px;}
.y50{bottom:247.036500px;}
.ybf{bottom:249.555000px;}
.y4f{bottom:267.736500px;}
.ybe{bottom:270.255000px;}
.y79{bottom:271.575000px;}
.y26{bottom:287.536500px;}
.ybd{bottom:290.955000px;}
.y71{bottom:307.275000px;}
.y25{bottom:308.236500px;}
.y4e{bottom:309.496500px;}
.y24{bottom:328.936500px;}
.y4d{bottom:330.196500px;}
.ybc{bottom:332.715000px;}
.y23{bottom:349.636500px;}
.y4c{bottom:350.896500px;}
.y22{bottom:370.336500px;}
.y4b{bottom:371.596500px;}
.ybb{bottom:374.475000px;}
.y9a{bottom:383.550000px;}
.y21{bottom:391.036500px;}
.y4a{bottom:392.295000px;}
.yba{bottom:395.175000px;}
.y20{bottom:411.736500px;}
.y49{bottom:412.996500px;}
.yb9{bottom:415.875000px;}
.y1f{bottom:432.436500px;}
.y48{bottom:433.696500px;}
.yb8{bottom:436.575000px;}
.y73{bottom:441.675000px;}
.y97{bottom:454.575000px;}
.yb7{bottom:457.275000px;}
.y1e{bottom:474.196500px;}
.y47{bottom:475.275000px;}
.yb6{bottom:477.975000px;}
.y1d{bottom:494.896500px;}
.y46{bottom:495.975000px;}
.yb5{bottom:498.675000px;}
.y70{bottom:502.275000px;}
.y45{bottom:516.675000px;}
.y96{bottom:517.036500px;}
.yb4{bottom:519.375000px;}
.y1c{bottom:536.475000px;}
.y44{bottom:537.375000px;}
.y95{bottom:537.736500px;}
.yb3{bottom:540.075000px;}
.y6f{bottom:543.855000px;}
.y1b{bottom:557.175000px;}
.y43{bottom:558.075000px;}
.y94{bottom:558.436500px;}
.yb2{bottom:560.775000px;}
.y6e{bottom:564.555000px;}
.y1a{bottom:577.875000px;}
.y42{bottom:578.775000px;}
.y93{bottom:579.136500px;}
.y19{bottom:598.575000px;}
.y41{bottom:599.475000px;}
.y92{bottom:599.836500px;}
.yb1{bottom:602.355000px;}
.y6d{bottom:606.315000px;}
.y18{bottom:619.275000px;}
.yb0{bottom:623.055000px;}
.y6c{bottom:627.015000px;}
.y17{bottom:639.975000px;}
.y40{bottom:641.236500px;}
.y91{bottom:641.596500px;}
.yaf{bottom:643.755000px;}
.y6b{bottom:647.715000px;}
.y16{bottom:660.675000px;}
.y3f{bottom:661.936500px;}
.y90{bottom:662.295000px;}
.yae{bottom:664.455000px;}
.y6a{bottom:668.415000px;}
.y15{bottom:681.375000px;}
.y3e{bottom:682.636500px;}
.y8f{bottom:682.996500px;}
.yad{bottom:685.155000px;}
.y3d{bottom:703.336500px;}
.y8e{bottom:703.695000px;}
.yac{bottom:705.855000px;}
.y69{bottom:710.175000px;}
.y14{bottom:723.136500px;}
.y3c{bottom:724.036500px;}
.y8d{bottom:724.396500px;}
.y68{bottom:730.875000px;}
.y13{bottom:743.836500px;}
.y3b{bottom:744.736500px;}
.y8c{bottom:745.096500px;}
.yab{bottom:747.615000px;}
.y67{bottom:751.575000px;}
.y3a{bottom:765.436500px;}
.y8b{bottom:765.795000px;}
.yaa{bottom:768.315000px;}
.y66{bottom:772.275000px;}
.y12{bottom:785.596500px;}
.y39{bottom:786.136500px;}
.y8a{bottom:786.496500px;}
.ya9{bottom:789.015000px;}
.y65{bottom:792.975000px;}
.y11{bottom:806.295000px;}
.y38{bottom:806.836500px;}
.y89{bottom:807.195000px;}
.ya8{bottom:809.715000px;}
.y64{bottom:813.675000px;}
.y10{bottom:826.996500px;}
.y37{bottom:827.536500px;}
.y88{bottom:827.895000px;}
.ya7{bottom:830.415000px;}
.y63{bottom:834.375000px;}
.yf{bottom:847.695000px;}
.y36{bottom:848.236500px;}
.y87{bottom:848.596500px;}
.ya6{bottom:851.115000px;}
.y62{bottom:855.075000px;}
.ye{bottom:868.395000px;}
.y86{bottom:869.295000px;}
.y61{bottom:875.775000px;}
.yd{bottom:889.095000px;}
.y35{bottom:889.995000px;}
.yd3{bottom:890.175000px;}
.y60{bottom:896.475000px;}
.ycf{bottom:909.525000px;}
.yc{bottom:909.795000px;}
.y34{bottom:910.695000px;}
.yd2{bottom:910.875000px;}
.yb{bottom:930.495000px;}
.y33{bottom:931.395000px;}
.yd1{bottom:931.575000px;}
.y32{bottom:952.095000px;}
.y85{bottom:952.275000px;}
.ycd{bottom:953.625000px;}
.ya{bottom:972.075000px;}
.y31{bottom:972.795000px;}
.y84{bottom:972.975000px;}
.y5e{bottom:975.825000px;}
.y30{bottom:993.495000px;}
.y83{bottom:993.675000px;}
.ycb{bottom:996.900000px;}
.y2f{bottom:1014.195000px;}
.y82{bottom:1014.375000px;}
.y5c{bottom:1016.325000px;}
.y2e{bottom:1034.895000px;}
.y81{bottom:1035.075000px;}
.y5a{bottom:1037.700000px;}
.yc9{bottom:1040.175000px;}
.y9{bottom:1055.595000px;}
.y80{bottom:1055.775000px;}
.y2d{bottom:1076.475000px;}
.y58{bottom:1077.375000px;}
.yc7{bottom:1083.450000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.hc{height:21.375000px;}
.h19{height:30.525000px;}
.hf{height:35.625000px;}
.h11{height:35.700000px;}
.h12{height:36.300000px;}
.ha{height:36.600000px;}
.h13{height:36.675000px;}
.h14{height:38.025000px;}
.h9{height:39.225000px;}
.hb{height:39.675000px;}
.h16{height:40.350000px;}
.hd{height:40.500000px;}
.h1a{height:43.275000px;}
.h1b{height:44.100000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h2{height:49.289063px;}
.h6{height:50.027344px;}
.h18{height:56.277773px;}
.h8{height:63.075000px;}
.h7{height:102.225000px;}
.h10{height:134.400000px;}
.he{height:170.025000px;}
.h17{height:278.400000px;}
.h15{height:318.675000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w9{width:37.500000px;}
.w3{width:39.525000px;}
.wd{width:49.425000px;}
.w12{width:54.750000px;}
.w13{width:55.650000px;}
.w1e{width:55.875000px;}
.w19{width:56.250000px;}
.w1f{width:56.775000px;}
.w1a{width:57.000000px;}
.w1b{width:57.150000px;}
.w14{width:57.300000px;}
.w21{width:57.375000px;}
.w15{width:57.450000px;}
.w17{width:57.900000px;}
.w20{width:58.050000px;}
.w18{width:58.575000px;}
.w16{width:59.850000px;}
.w1c{width:62.850000px;}
.w6{width:107.775000px;}
.we{width:110.325000px;}
.w7{width:115.275000px;}
.w8{width:119.325000px;}
.wc{width:122.700000px;}
.w10{width:174.225000px;}
.wf{width:174.450000px;}
.w11{width:233.475000px;}
.wb{width:245.325000px;}
.w5{width:343.125000px;}
.w4{width:362.250000px;}
.wa{width:451.275000px;}
.w1d{width:741.600000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.145000px;}
.x1a{left:14.310000px;}
.x11{left:31.138500px;}
.x16{left:33.735000px;}
.x18{left:35.010000px;}
.x1d{left:36.285000px;}
.x23{left:37.785000px;}
.x1b{left:55.888500px;}
.x10{left:116.700000px;}
.x7{left:119.475000px;}
.x1{left:127.620000px;}
.xd{left:156.900000px;}
.x9{left:158.925000px;}
.x12{left:166.050000px;}
.xf{left:172.620000px;}
.x4{left:216.000000px;}
.x17{left:220.725000px;}
.x24{left:221.850000px;}
.x13{left:276.300000px;}
.x25{left:278.550000px;}
.x19{left:333.525000px;}
.x26{left:335.625000px;}
.x5{left:371.160000px;}
.x1c{left:390.900000px;}
.x27{left:392.700000px;}
.x14{left:450.675000px;}
.x3{left:461.625000px;}
.x1e{left:508.500000px;}
.x6{left:512.100000px;}
.xa{left:521.100000px;}
.x1f{left:566.325000px;}
.xe{left:608.100000px;}
.x28{left:622.875000px;}
.x15{left:624.825000px;}
.xb{left:628.800000px;}
.x29{left:679.950000px;}
.x20{left:681.000000px;}
.x2{left:731.160000px;}
.x21{left:737.925000px;}
.xc{left:744.000000px;}
.x22{left:795.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:23.360000pt;}
.ws2f{word-spacing:-49.728000pt;}
.wsa3{word-spacing:-40.323200pt;}
.wsa4{word-spacing:-39.681600pt;}
.ws86{word-spacing:-34.742400pt;}
.ws93{word-spacing:-34.548800pt;}
.wsa2{word-spacing:-34.545600pt;}
.ws4e{word-spacing:-34.365333pt;}
.ws47{word-spacing:-34.363733pt;}
.ws8d{word-spacing:-34.363200pt;}
.ws6{word-spacing:-34.362400pt;}
.ws8c{word-spacing:-34.360800pt;}
.ws6b{word-spacing:-34.355467pt;}
.ws5{word-spacing:-34.353600pt;}
.ws20{word-spacing:-34.346667pt;}
.wsa8{word-spacing:-34.344000pt;}
.ws69{word-spacing:-34.179733pt;}
.ws97{word-spacing:-34.176533pt;}
.ws89{word-spacing:-34.168800pt;}
.wsa{word-spacing:-34.161600pt;}
.ws59{word-spacing:-34.160800pt;}
.ws3{word-spacing:-34.110400pt;}
.ws56{word-spacing:-34.110133pt;}
.wsb{word-spacing:-34.098400pt;}
.ws8a{word-spacing:-33.920533pt;}
.ws2b{word-spacing:-33.920000pt;}
.ws66{word-spacing:-33.918400pt;}
.ws14{word-spacing:-33.915200pt;}
.ws44{word-spacing:-33.914667pt;}
.ws8b{word-spacing:-33.912800pt;}
.ws68{word-spacing:-33.905333pt;}
.ws10{word-spacing:-33.902400pt;}
.ws9{word-spacing:-33.860533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.ws17{word-spacing:-33.721600pt;}
.ws2a{word-spacing:-33.720000pt;}
.ws6d{word-spacing:-33.719200pt;}
.ws88{word-spacing:-33.718400pt;}
.ws2{word-spacing:-33.716800pt;}
.wsa9{word-spacing:-33.715200pt;}
.ws58{word-spacing:-33.713867pt;}
.ws2e{word-spacing:-33.708267pt;}
.ws35{word-spacing:-33.705600pt;}
.ws6e{word-spacing:-33.519200pt;}
.ws21{word-spacing:-33.285333pt;}
.ws48{word-spacing:-33.280000pt;}
.ws46{word-spacing:-33.262400pt;}
.ws22{word-spacing:-33.088000pt;}
.wsad{word-spacing:-33.084800pt;}
.ws19{word-spacing:-32.760800pt;}
.ws28{word-spacing:-32.640000pt;}
.ws9d{word-spacing:-32.627200pt;}
.ws18{word-spacing:-32.448000pt;}
.ws27{word-spacing:-32.440000pt;}
.ws36{word-spacing:-32.438933pt;}
.ws92{word-spacing:-32.252800pt;}
.ws8f{word-spacing:-31.996800pt;}
.ws7f{word-spacing:-31.808000pt;}
.ws52{word-spacing:-31.801600pt;}
.ws3b{word-spacing:-31.796800pt;}
.wsa5{word-spacing:-31.795467pt;}
.ws29{word-spacing:-31.737600pt;}
.ws2d{word-spacing:-31.611200pt;}
.ws95{word-spacing:-31.593333pt;}
.wsaf{word-spacing:-31.360000pt;}
.ws2c{word-spacing:-31.348800pt;}
.ws80{word-spacing:-31.168000pt;}
.ws3d{word-spacing:-31.165333pt;}
.wsab{word-spacing:-30.963200pt;}
.ws15{word-spacing:-30.712800pt;}
.ws9a{word-spacing:-30.703467pt;}
.ws7a{word-spacing:-30.700000pt;}
.ws84{word-spacing:-30.528000pt;}
.ws3e{word-spacing:-30.524800pt;}
.ws16{word-spacing:-30.521600pt;}
.ws25{word-spacing:-30.520000pt;}
.ws4c{word-spacing:-30.517867pt;}
.ws4d{word-spacing:-30.326400pt;}
.wsa1{word-spacing:-30.080000pt;}
.ws83{word-spacing:-29.890133pt;}
.ws62{word-spacing:-29.880000pt;}
.ws8{word-spacing:-29.820267pt;}
.wsa0{word-spacing:-29.433600pt;}
.ws63{word-spacing:-29.232000pt;}
.ws42{word-spacing:-29.048000pt;}
.ws67{word-spacing:-28.800000pt;}
.ws5f{word-spacing:-28.600000pt;}
.ws49{word-spacing:-28.598933pt;}
.ws6f{word-spacing:-28.598400pt;}
.ws61{word-spacing:-28.155200pt;}
.ws1e{word-spacing:-28.147200pt;}
.ws81{word-spacing:-27.973333pt;}
.wsb0{word-spacing:-27.968000pt;}
.ws7b{word-spacing:-27.963733pt;}
.ws9f{word-spacing:-27.764800pt;}
.ws4a{word-spacing:-27.323200pt;}
.ws39{word-spacing:-27.321600pt;}
.ws5a{word-spacing:-27.320000pt;}
.ws51{word-spacing:-26.875200pt;}
.ws74{word-spacing:-26.868800pt;}
.ws4f{word-spacing:-26.684800pt;}
.ws3c{word-spacing:-26.670400pt;}
.ws65{word-spacing:-26.225600pt;}
.ws9b{word-spacing:-26.040000pt;}
.ws60{word-spacing:-25.846400pt;}
.ws24{word-spacing:-25.596800pt;}
.ws12{word-spacing:-25.204800pt;}
.wsf{word-spacing:-24.761600pt;}
.ws23{word-spacing:-24.753600pt;}
.ws32{word-spacing:-24.316800pt;}
.ws1c{word-spacing:-24.128000pt;}
.ws54{word-spacing:-24.124800pt;}
.ws43{word-spacing:-24.121600pt;}
.ws98{word-spacing:-24.120000pt;}
.ws99{word-spacing:-24.109867pt;}
.ws38{word-spacing:-24.055200pt;}
.ws5b{word-spacing:-23.680000pt;}
.ws94{word-spacing:-23.482400pt;}
.wsb2{word-spacing:-23.469867pt;}
.ws73{word-spacing:-23.294400pt;}
.ws4b{word-spacing:-22.840000pt;}
.ws37{word-spacing:-22.838933pt;}
.ws31{word-spacing:-22.838400pt;}
.ws7d{word-spacing:-22.203200pt;}
.ws8e{word-spacing:-22.195200pt;}
.wsac{word-spacing:-22.008000pt;}
.ws3f{word-spacing:-21.755200pt;}
.ws96{word-spacing:-21.752800pt;}
.wsae{word-spacing:-21.568000pt;}
.ws91{word-spacing:-21.560000pt;}
.wse{word-spacing:-20.905600pt;}
.ws53{word-spacing:-20.086400pt;}
.ws55{word-spacing:-19.644800pt;}
.ws9e{word-spacing:-19.008000pt;}
.wsaa{word-spacing:-19.005600pt;}
.ws77{word-spacing:-19.003200pt;}
.ws85{word-spacing:-18.996000pt;}
.ws79{word-spacing:-18.360000pt;}
.ws26{word-spacing:-17.920000pt;}
.ws1f{word-spacing:-17.728000pt;}
.ws87{word-spacing:-17.713067pt;}
.ws90{word-spacing:-17.280000pt;}
.ws30{word-spacing:-17.088000pt;}
.wsb3{word-spacing:-16.634667pt;}
.ws7{word-spacing:-16.420000pt;}
.ws76{word-spacing:-15.990400pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws40{word-spacing:-15.801600pt;}
.wsa6{word-spacing:-15.161867pt;}
.wsa7{word-spacing:-14.720000pt;}
.ws75{word-spacing:-14.520000pt;}
.ws33{word-spacing:-14.515200pt;}
.ws64{word-spacing:-13.693333pt;}
.ws1b{word-spacing:-13.253333pt;}
.ws5d{word-spacing:-13.246400pt;}
.ws72{word-spacing:-13.058133pt;}
.wsb1{word-spacing:-12.805333pt;}
.ws71{word-spacing:-12.402667pt;}
.ws3a{word-spacing:-12.151467pt;}
.ws34{word-spacing:-11.952000pt;}
.ws45{word-spacing:-11.317600pt;}
.ws78{word-spacing:-11.305067pt;}
.ws7e{word-spacing:-10.880000pt;}
.ws13{word-spacing:-10.678400pt;}
.ws5e{word-spacing:-9.841600pt;}
.ws9c{word-spacing:-9.395200pt;}
.ws41{word-spacing:-7.466400pt;}
.ws7c{word-spacing:-6.843200pt;}
.wsd{word-spacing:-6.838400pt;}
.wsc{word-spacing:-6.191200pt;}
.ws50{word-spacing:-4.475200pt;}
.ws82{word-spacing:-2.550933pt;}
.ws57{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.841600pt;}
.ws11{word-spacing:5.321600pt;}
.ws70{word-spacing:12.352000pt;}
.ws1a{word-spacing:34.379200pt;}
.ws6c{word-spacing:86.144800pt;}
.ws6a{word-spacing:86.152533pt;}
.ws1{word-spacing:404.526933pt;}
._20{margin-left:-2.073067pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._1a{width:1.857067pt;}
._21{width:15.740800pt;}
._4{width:16.689600pt;}
._8{width:17.794133pt;}
._a{width:18.757600pt;}
._9{width:20.284267pt;}
._16{width:21.656533pt;}
._e{width:22.957867pt;}
._14{width:23.966933pt;}
._10{width:25.114133pt;}
._7{width:26.361600pt;}
._13{width:27.809600pt;}
._15{width:29.445333pt;}
._6{width:30.434133pt;}
._1{width:32.000000pt;}
._f{width:33.707733pt;}
._d{width:34.829867pt;}
._11{width:36.434133pt;}
._c{width:37.440000pt;}
._12{width:38.884267pt;}
._17{width:39.984267pt;}
._19{width:40.940267pt;}
._1e{width:41.843200pt;}
._5{width:44.468533pt;}
._18{width:46.657067pt;}
._1c{width:48.179733pt;}
._1f{width:61.207467pt;}
._1b{width:63.192533pt;}
._1d{width:66.132267pt;}
._b{width:85.108800pt;}
._0{width:544.128000pt;}
.fs2{font-size:41.600000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.ya2{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:0.012000pt;}
.y9f{bottom:0.026667pt;}
.ya0{bottom:0.040000pt;}
.ya1{bottom:0.066667pt;}
.y9e{bottom:0.078667pt;}
.ya3{bottom:0.093333pt;}
.ya5{bottom:0.106667pt;}
.y9d{bottom:0.120000pt;}
.y5d{bottom:3.388000pt;}
.y55{bottom:3.466667pt;}
.y7{bottom:3.974667pt;}
.ya4{bottom:4.040000pt;}
.yc8{bottom:7.560000pt;}
.y74{bottom:9.866667pt;}
.y7b{bottom:10.133333pt;}
.y59{bottom:10.240000pt;}
.y7d{bottom:10.254667pt;}
.y7f{bottom:11.254667pt;}
.y57{bottom:11.360000pt;}
.y5b{bottom:11.588000pt;}
.y9b{bottom:11.933333pt;}
.y5f{bottom:12.346667pt;}
.ycc{bottom:13.133333pt;}
.yce{bottom:13.200000pt;}
.yca{bottom:13.226667pt;}
.yd0{bottom:14.000000pt;}
.y78{bottom:26.133333pt;}
.y52{bottom:39.388000pt;}
.y54{bottom:40.426667pt;}
.y77{bottom:44.533333pt;}
.y76{bottom:62.933333pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y72{bottom:69.493333pt;}
.y75{bottom:81.333333pt;}
.yc6{bottom:93.026667pt;}
.y9c{bottom:93.466667pt;}
.y98{bottom:93.533333pt;}
.y56{bottom:106.466667pt;}
.y51{bottom:106.600000pt;}
.y2c{bottom:107.908000pt;}
.yc5{bottom:111.426667pt;}
.y2b{bottom:126.308000pt;}
.yc4{bottom:129.826667pt;}
.y53{bottom:141.400000pt;}
.y7e{bottom:142.733333pt;}
.y2a{bottom:144.708000pt;}
.yc3{bottom:148.226667pt;}
.y29{bottom:163.108000pt;}
.yc2{bottom:166.626667pt;}
.y7c{bottom:176.533333pt;}
.yc1{bottom:185.026667pt;}
.y28{bottom:200.066667pt;}
.yc0{bottom:203.426667pt;}
.y7a{bottom:209.133333pt;}
.y27{bottom:218.466667pt;}
.y50{bottom:219.588000pt;}
.ybf{bottom:221.826667pt;}
.y4f{bottom:237.988000pt;}
.ybe{bottom:240.226667pt;}
.y79{bottom:241.400000pt;}
.y26{bottom:255.588000pt;}
.ybd{bottom:258.626667pt;}
.y71{bottom:273.133333pt;}
.y25{bottom:273.988000pt;}
.y4e{bottom:275.108000pt;}
.y24{bottom:292.388000pt;}
.y4d{bottom:293.508000pt;}
.ybc{bottom:295.746667pt;}
.y23{bottom:310.788000pt;}
.y4c{bottom:311.908000pt;}
.y22{bottom:329.188000pt;}
.y4b{bottom:330.308000pt;}
.ybb{bottom:332.866667pt;}
.y9a{bottom:340.933333pt;}
.y21{bottom:347.588000pt;}
.y4a{bottom:348.706667pt;}
.yba{bottom:351.266667pt;}
.y20{bottom:365.988000pt;}
.y49{bottom:367.108000pt;}
.yb9{bottom:369.666667pt;}
.y1f{bottom:384.388000pt;}
.y48{bottom:385.508000pt;}
.yb8{bottom:388.066667pt;}
.y73{bottom:392.600000pt;}
.y97{bottom:404.066667pt;}
.yb7{bottom:406.466667pt;}
.y1e{bottom:421.508000pt;}
.y47{bottom:422.466667pt;}
.yb6{bottom:424.866667pt;}
.y1d{bottom:439.908000pt;}
.y46{bottom:440.866667pt;}
.yb5{bottom:443.266667pt;}
.y70{bottom:446.466667pt;}
.y45{bottom:459.266667pt;}
.y96{bottom:459.588000pt;}
.yb4{bottom:461.666667pt;}
.y1c{bottom:476.866667pt;}
.y44{bottom:477.666667pt;}
.y95{bottom:477.988000pt;}
.yb3{bottom:480.066667pt;}
.y6f{bottom:483.426667pt;}
.y1b{bottom:495.266667pt;}
.y43{bottom:496.066667pt;}
.y94{bottom:496.388000pt;}
.yb2{bottom:498.466667pt;}
.y6e{bottom:501.826667pt;}
.y1a{bottom:513.666667pt;}
.y42{bottom:514.466667pt;}
.y93{bottom:514.788000pt;}
.y19{bottom:532.066667pt;}
.y41{bottom:532.866667pt;}
.y92{bottom:533.188000pt;}
.yb1{bottom:535.426667pt;}
.y6d{bottom:538.946667pt;}
.y18{bottom:550.466667pt;}
.yb0{bottom:553.826667pt;}
.y6c{bottom:557.346667pt;}
.y17{bottom:568.866667pt;}
.y40{bottom:569.988000pt;}
.y91{bottom:570.308000pt;}
.yaf{bottom:572.226667pt;}
.y6b{bottom:575.746667pt;}
.y16{bottom:587.266667pt;}
.y3f{bottom:588.388000pt;}
.y90{bottom:588.706667pt;}
.yae{bottom:590.626667pt;}
.y6a{bottom:594.146667pt;}
.y15{bottom:605.666667pt;}
.y3e{bottom:606.788000pt;}
.y8f{bottom:607.108000pt;}
.yad{bottom:609.026667pt;}
.y3d{bottom:625.188000pt;}
.y8e{bottom:625.506667pt;}
.yac{bottom:627.426667pt;}
.y69{bottom:631.266667pt;}
.y14{bottom:642.788000pt;}
.y3c{bottom:643.588000pt;}
.y8d{bottom:643.908000pt;}
.y68{bottom:649.666667pt;}
.y13{bottom:661.188000pt;}
.y3b{bottom:661.988000pt;}
.y8c{bottom:662.308000pt;}
.yab{bottom:664.546667pt;}
.y67{bottom:668.066667pt;}
.y3a{bottom:680.388000pt;}
.y8b{bottom:680.706667pt;}
.yaa{bottom:682.946667pt;}
.y66{bottom:686.466667pt;}
.y12{bottom:698.308000pt;}
.y39{bottom:698.788000pt;}
.y8a{bottom:699.108000pt;}
.ya9{bottom:701.346667pt;}
.y65{bottom:704.866667pt;}
.y11{bottom:716.706667pt;}
.y38{bottom:717.188000pt;}
.y89{bottom:717.506667pt;}
.ya8{bottom:719.746667pt;}
.y64{bottom:723.266667pt;}
.y10{bottom:735.108000pt;}
.y37{bottom:735.588000pt;}
.y88{bottom:735.906667pt;}
.ya7{bottom:738.146667pt;}
.y63{bottom:741.666667pt;}
.yf{bottom:753.506667pt;}
.y36{bottom:753.988000pt;}
.y87{bottom:754.308000pt;}
.ya6{bottom:756.546667pt;}
.y62{bottom:760.066667pt;}
.ye{bottom:771.906667pt;}
.y86{bottom:772.706667pt;}
.y61{bottom:778.466667pt;}
.yd{bottom:790.306667pt;}
.y35{bottom:791.106667pt;}
.yd3{bottom:791.266667pt;}
.y60{bottom:796.866667pt;}
.ycf{bottom:808.466667pt;}
.yc{bottom:808.706667pt;}
.y34{bottom:809.506667pt;}
.yd2{bottom:809.666667pt;}
.yb{bottom:827.106667pt;}
.y33{bottom:827.906667pt;}
.yd1{bottom:828.066667pt;}
.y32{bottom:846.306667pt;}
.y85{bottom:846.466667pt;}
.ycd{bottom:847.666667pt;}
.ya{bottom:864.066667pt;}
.y31{bottom:864.706667pt;}
.y84{bottom:864.866667pt;}
.y5e{bottom:867.400000pt;}
.y30{bottom:883.106667pt;}
.y83{bottom:883.266667pt;}
.ycb{bottom:886.133333pt;}
.y2f{bottom:901.506667pt;}
.y82{bottom:901.666667pt;}
.y5c{bottom:903.400000pt;}
.y2e{bottom:919.906667pt;}
.y81{bottom:920.066667pt;}
.y5a{bottom:922.400000pt;}
.yc9{bottom:924.600000pt;}
.y9{bottom:938.306667pt;}
.y80{bottom:938.466667pt;}
.y2d{bottom:956.866667pt;}
.y58{bottom:957.666667pt;}
.yc7{bottom:963.066667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.hc{height:19.000000pt;}
.h19{height:27.133333pt;}
.hf{height:31.666667pt;}
.h11{height:31.733333pt;}
.h12{height:32.266667pt;}
.ha{height:32.533333pt;}
.h13{height:32.600000pt;}
.h14{height:33.800000pt;}
.h9{height:34.866667pt;}
.hb{height:35.266667pt;}
.h16{height:35.866667pt;}
.hd{height:36.000000pt;}
.h1a{height:38.466667pt;}
.h1b{height:39.200000pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h2{height:43.812500pt;}
.h6{height:44.468750pt;}
.h18{height:50.024688pt;}
.h8{height:56.066667pt;}
.h7{height:90.866667pt;}
.h10{height:119.466667pt;}
.he{height:151.133333pt;}
.h17{height:247.466667pt;}
.h15{height:283.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w9{width:33.333333pt;}
.w3{width:35.133333pt;}
.wd{width:43.933333pt;}
.w12{width:48.666667pt;}
.w13{width:49.466667pt;}
.w1e{width:49.666667pt;}
.w19{width:50.000000pt;}
.w1f{width:50.466667pt;}
.w1a{width:50.666667pt;}
.w1b{width:50.800000pt;}
.w14{width:50.933333pt;}
.w21{width:51.000000pt;}
.w15{width:51.066667pt;}
.w17{width:51.466667pt;}
.w20{width:51.600000pt;}
.w18{width:52.066667pt;}
.w16{width:53.200000pt;}
.w1c{width:55.866667pt;}
.w6{width:95.800000pt;}
.we{width:98.066667pt;}
.w7{width:102.466667pt;}
.w8{width:106.066667pt;}
.wc{width:109.066667pt;}
.w10{width:154.866667pt;}
.wf{width:155.066667pt;}
.w11{width:207.533333pt;}
.wb{width:218.066667pt;}
.w5{width:305.000000pt;}
.w4{width:322.000000pt;}
.wa{width:401.133333pt;}
.w1d{width:659.200000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.240000pt;}
.x1a{left:12.720000pt;}
.x11{left:27.678667pt;}
.x16{left:29.986667pt;}
.x18{left:31.120000pt;}
.x1d{left:32.253333pt;}
.x23{left:33.586667pt;}
.x1b{left:49.678667pt;}
.x10{left:103.733333pt;}
.x7{left:106.200000pt;}
.x1{left:113.440000pt;}
.xd{left:139.466667pt;}
.x9{left:141.266667pt;}
.x12{left:147.600000pt;}
.xf{left:153.440000pt;}
.x4{left:192.000000pt;}
.x17{left:196.200000pt;}
.x24{left:197.200000pt;}
.x13{left:245.600000pt;}
.x25{left:247.600000pt;}
.x19{left:296.466667pt;}
.x26{left:298.333333pt;}
.x5{left:329.920000pt;}
.x1c{left:347.466667pt;}
.x27{left:349.066667pt;}
.x14{left:400.600000pt;}
.x3{left:410.333333pt;}
.x1e{left:452.000000pt;}
.x6{left:455.200000pt;}
.xa{left:463.200000pt;}
.x1f{left:503.400000pt;}
.xe{left:540.533333pt;}
.x28{left:553.666667pt;}
.x15{left:555.400000pt;}
.xb{left:558.933333pt;}
.x29{left:604.400000pt;}
.x20{left:605.333333pt;}
.x2{left:649.920000pt;}
.x21{left:655.933333pt;}
.xc{left:661.333333pt;}
.x22{left:706.666667pt;}
}




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