
    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_21af6b3112f6f6e0346995fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_f4a394a3b4a94bc76f1c973f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_6ad4cf74fd0024327d2bfefa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_7827ad5ec30d1bf8c8a61558.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8c8bf783f80c4416d355625.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_0e6bfc802f62d706b6b2d21e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.540000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.540000px;}
.lsc{letter-spacing:-0.648000px;}
.ls11{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.472200px;}
.ls5{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.501000px;}
.lsf{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.684000px;}
.ls4{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.160000px;}
.ls9{letter-spacing:3.600000px;}
.ls15{letter-spacing:8.100000px;}
.ls2{letter-spacing:10.800000px;}
.ls13{letter-spacing:31.836000px;}
.ls0{letter-spacing:33.264000px;}
.ls1{letter-spacing:33.276000px;}
.ls14{letter-spacing:63.516000px;}
.lse{letter-spacing:93.744000px;}
.lsd{letter-spacing:122.544000px;}
.lsb{letter-spacing:149.904000px;}
.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:-119.520000px;}
.wsc{word-spacing:-72.000000px;}
.ws2{word-spacing:-23.425920px;}
.wsa{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.496000px;}
.ws9{word-spacing:-17.352000px;}
.ws5{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.ws8{word-spacing:-12.381000px;}
.ws7{word-spacing:-11.880000px;}
.ws6{word-spacing:0.000000px;}
._18{margin-left:-4.576320px;}
._17{margin-left:-3.487680px;}
._8{margin-left:-2.386080px;}
._0{margin-left:-1.192320px;}
._1{width:1.260480px;}
._4{width:2.575200px;}
._f{width:3.681120px;}
._d{width:4.959840px;}
._13{width:6.264000px;}
._10{width:7.672320px;}
._11{width:8.808480px;}
._c{width:10.143360px;}
._2{width:11.712960px;}
._3{width:12.962400px;}
._12{width:14.112000px;}
._6{width:15.624000px;}
._7{width:16.652640px;}
._1b{width:19.038240px;}
._5{width:20.880000px;}
._1e{width:22.020000px;}
._1a{width:23.254080px;}
._b{width:24.271680px;}
._22{width:25.312320px;}
._9{width:26.392320px;}
._a{width:27.403200px;}
._16{width:30.779520px;}
._19{width:32.472000px;}
._24{width:34.744320px;}
._23{width:35.784000px;}
._15{width:37.152000px;}
._14{width:38.232000px;}
._e{width:42.192000px;}
._1f{width:50.832000px;}
._1d{width:66.600000px;}
._1c{width:78.448320px;}
._21{width:142.272000px;}
._20{width:143.856000px;}
.fc3{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc1{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.960000px;}
.y5e{bottom:4.320000px;}
.y77{bottom:4.365000px;}
.yda{bottom:4.680000px;}
.y10e{bottom:5.040000px;}
.y5b{bottom:5.400000px;}
.yd8{bottom:5.760000px;}
.y110{bottom:6.120000px;}
.ybf{bottom:6.480000px;}
.ya0{bottom:6.834000px;}
.y9a{bottom:6.840000px;}
.yd{bottom:7.200000px;}
.y9d{bottom:7.245000px;}
.yfe{bottom:7.560000px;}
.y101{bottom:7.920000px;}
.y11d{bottom:8.280000px;}
.ye5{bottom:9.360000px;}
.y8d{bottom:10.080000px;}
.y8f{bottom:10.440000px;}
.y6c{bottom:13.320000px;}
.yf0{bottom:14.040000px;}
.y58{bottom:14.400000px;}
.y5f{bottom:14.760000px;}
.yc0{bottom:16.920000px;}
.yc3{bottom:17.280000px;}
.yc6{bottom:17.640000px;}
.ycb{bottom:17.685000px;}
.y9b{bottom:18.720000px;}
.ya5{bottom:18.765000px;}
.y129{bottom:20.550000px;}
.ye6{bottom:21.240000px;}
.y61{bottom:24.480000px;}
.y56{bottom:24.840000px;}
.y64{bottom:24.870000px;}
.y5d{bottom:24.885000px;}
.y8b{bottom:25.200000px;}
.y76{bottom:25.245000px;}
.yf1{bottom:25.920000px;}
.y5a{bottom:26.280000px;}
.yc2{bottom:27.360000px;}
.ybe{bottom:27.390000px;}
.yc5{bottom:28.080000px;}
.y10b{bottom:29.205000px;}
.y99{bottom:30.600000px;}
.ya4{bottom:30.645000px;}
.ya2{bottom:30.960000px;}
.y128{bottom:30.990000px;}
.ye4{bottom:33.120000px;}
.y11b{bottom:35.640000px;}
.y8a{bottom:37.080000px;}
.yd6{bottom:37.440000px;}
.yef{bottom:37.794000px;}
.y10a{bottom:39.285000px;}
.yc{bottom:42.840000px;}
.y67{bottom:45.720000px;}
.y11a{bottom:46.125000px;}
.yfc{bottom:51.165000px;}
.yb{bottom:78.120000px;}
.y9{bottom:78.156000px;}
.yc8{bottom:110.916000px;}
.y32{bottom:111.276000px;}
.yee{bottom:113.076000px;}
.y54{bottom:114.876000px;}
.y7d{bottom:116.316000px;}
.y6a{bottom:116.676000px;}
.y138{bottom:129.276000px;}
.y118{bottom:131.796000px;}
.y69{bottom:134.316000px;}
.y31{bottom:142.236000px;}
.y9f{bottom:144.396000px;}
.y53{bottom:145.836000px;}
.y68{bottom:157.710000px;}
.yc7{bottom:158.430000px;}
.y137{bottom:160.590000px;}
.y117{bottom:162.750000px;}
.y9e{bottom:168.150000px;}
.y30{bottom:173.190000px;}
.y52{bottom:176.790000px;}
.yed{bottom:189.750000px;}
.y136{bottom:191.550000px;}
.y9c{bottom:191.910000px;}
.y116{bottom:194.070000px;}
.y66{bottom:199.155000px;}
.yc4{bottom:204.915000px;}
.y51{bottom:207.795000px;}
.y98{bottom:216.795000px;}
.yec{bottom:220.755000px;}
.y135{bottom:222.555000px;}
.y115{bottom:225.075000px;}
.y2f{bottom:228.315000px;}
.y50{bottom:239.115000px;}
.y7c{bottom:240.555000px;}
.y151{bottom:240.915000px;}
.yeb{bottom:251.715000px;}
.yc1{bottom:252.435000px;}
.y134{bottom:253.515000px;}
.y114{bottom:256.035000px;}
.y65{bottom:261.435000px;}
.y150{bottom:264.675000px;}
.y4f{bottom:270.075000px;}
.y2e{bottom:271.875000px;}
.y97{bottom:279.075000px;}
.y7b{bottom:281.955000px;}
.yea{bottom:283.035000px;}
.y133{bottom:284.835000px;}
.y113{bottom:286.995000px;}
.y14f{bottom:288.795000px;}
.y2d{bottom:295.635000px;}
.ybd{bottom:299.955000px;}
.ye9{bottom:300.675000px;}
.y4e{bottom:301.035000px;}
.y63{bottom:302.835000px;}
.y96{bottom:310.035000px;}
.y14e{bottom:312.555000px;}
.y132{bottom:315.795000px;}
.y112{bottom:318.315000px;}
.y2c{bottom:319.755000px;}
.y7a{bottom:323.385000px;}
.ye8{bottom:324.465000px;}
.y4d{bottom:332.025000px;}
.y14d{bottom:336.345000px;}
.y95{bottom:341.385000px;}
.y2b{bottom:343.545000px;}
.y62{bottom:344.265000px;}
.y131{bottom:346.785000px;}
.ye7{bottom:348.225000px;}
.y111{bottom:349.305000px;}
.y14c{bottom:360.105000px;}
.ybc{bottom:361.185000px;}
.y4c{bottom:363.345000px;}
.y79{bottom:364.785000px;}
.y10f{bottom:366.945000px;}
.y2a{bottom:367.305000px;}
.y94{bottom:372.345000px;}
.ye3{bottom:372.705000px;}
.y130{bottom:377.745000px;}
.y14b{bottom:383.865000px;}
.y60{bottom:385.665000px;}
.y29{bottom:391.065000px;}
.y10d{bottom:391.425000px;}
.ybb{bottom:392.145000px;}
.y4b{bottom:394.305000px;}
.y93{bottom:403.305000px;}
.y78{bottom:406.185000px;}
.y14a{bottom:407.625000px;}
.y12f{bottom:409.065000px;}
.y10c{bottom:414.105000px;}
.y28{bottom:414.825000px;}
.yba{bottom:423.465000px;}
.y4a{bottom:425.265000px;}
.y5c{bottom:426.705000px;}
.y149{bottom:431.385000px;}
.y92{bottom:434.265000px;}
.y109{bottom:437.505000px;}
.y27{bottom:438.585000px;}
.ye2{bottom:440.025000px;}
.y75{bottom:447.585000px;}
.yb9{bottom:454.470000px;}
.y148{bottom:455.190000px;}
.y49{bottom:456.270000px;}
.y26{bottom:462.390000px;}
.y91{bottom:465.630000px;}
.y59{bottom:469.230000px;}
.ye1{bottom:471.030000px;}
.y147{bottom:478.950000px;}
.y90{bottom:483.270000px;}
.yb8{bottom:485.430000px;}
.y25{bottom:486.150000px;}
.y48{bottom:487.230000px;}
.y55{bottom:493.350000px;}
.y12e{bottom:501.990000px;}
.ye0{bottom:502.350000px;}
.y146{bottom:503.070000px;}
.y74{bottom:504.870000px;}
.y24{bottom:509.910000px;}
.y8e{bottom:514.230000px;}
.yb7{bottom:516.390000px;}
.y47{bottom:518.550000px;}
.y108{bottom:522.870000px;}
.y145{bottom:526.830000px;}
.y12d{bottom:532.950000px;}
.ydf{bottom:533.310000px;}
.y23{bottom:534.030000px;}
.y73{bottom:535.830000px;}
.y8c{bottom:544.830000px;}
.yb6{bottom:547.710000px;}
.y46{bottom:549.510000px;}
.y144{bottom:550.590000px;}
.y107{bottom:553.830000px;}
.y22{bottom:557.790000px;}
.yde{bottom:564.270000px;}
.yb5{bottom:565.350000px;}
.y72{bottom:566.790000px;}
.y143{bottom:574.350000px;}
.y89{bottom:575.460000px;}
.y45{bottom:580.500000px;}
.y21{bottom:581.580000px;}
.y106{bottom:584.820000px;}
.yb4{bottom:589.140000px;}
.ydd{bottom:595.260000px;}
.y71{bottom:598.140000px;}
.y20{bottom:605.340000px;}
.y44{bottom:611.460000px;}
.y12c{bottom:612.900000px;}
.y105{bottom:615.780000px;}
.y142{bottom:621.900000px;}
.ydc{bottom:626.580000px;}
.y1f{bottom:629.100000px;}
.yb3{bottom:636.660000px;}
.y12b{bottom:637.380000px;}
.y43{bottom:642.780000px;}
.ydb{bottom:644.220000px;}
.y141{bottom:645.660000px;}
.y104{bottom:647.100000px;}
.y1e{bottom:650.340000px;}
.y88{bottom:650.700000px;}
.y12a{bottom:659.700000px;}
.y70{bottom:660.060000px;}
.yb2{bottom:660.420000px;}
.yd9{bottom:667.620000px;}
.y140{bottom:669.420000px;}
.y1d{bottom:670.860000px;}
.y42{bottom:673.740000px;}
.y6f{bottom:677.700000px;}
.y103{bottom:678.060000px;}
.y87{bottom:681.660000px;}
.y127{bottom:683.100000px;}
.yb1{bottom:684.180000px;}
.yd7{bottom:689.220000px;}
.y1c{bottom:691.740000px;}
.y13f{bottom:693.540000px;}
.y41{bottom:704.730000px;}
.yb0{bottom:707.970000px;}
.y102{bottom:709.050000px;}
.y1b{bottom:712.290000px;}
.y86{bottom:713.010000px;}
.yd5{bottom:713.730000px;}
.y6e{bottom:716.970000px;}
.y13e{bottom:717.330000px;}
.y100{bottom:726.690000px;}
.y1a{bottom:733.170000px;}
.y40{bottom:735.690000px;}
.y13d{bottom:741.090000px;}
.y85{bottom:743.970000px;}
.yff{bottom:751.170000px;}
.y126{bottom:751.530000px;}
.y19{bottom:753.690000px;}
.y6d{bottom:755.850000px;}
.y13c{bottom:764.850000px;}
.y3f{bottom:767.010000px;}
.yaf{bottom:770.610000px;}
.yfd{bottom:773.490000px;}
.y18{bottom:774.570000px;}
.y84{bottom:774.930000px;}
.y125{bottom:782.850000px;}
.y13b{bottom:788.610000px;}
.y83{bottom:792.570000px;}
.y17{bottom:795.090000px;}
.yd4{bottom:795.450000px;}
.yfb{bottom:797.610000px;}
.y3e{bottom:797.970000px;}
.yae{bottom:801.570000px;}
.y13a{bottom:812.370000px;}
.y124{bottom:813.810000px;}
.y16{bottom:815.970000px;}
.yd3{bottom:826.815000px;}
.y3d{bottom:828.975000px;}
.yad{bottom:832.575000px;}
.y82{bottom:834.015000px;}
.y6b{bottom:834.735000px;}
.y139{bottom:836.175000px;}
.y15{bottom:836.535000px;}
.y123{bottom:844.815000px;}
.y14{bottom:857.415000px;}
.yd2{bottom:857.775000px;}
.y3c{bottom:859.935000px;}
.yac{bottom:863.895000px;}
.y81{bottom:875.415000px;}
.y122{bottom:875.775000px;}
.y13{bottom:877.935000px;}
.yfa{bottom:880.455000px;}
.yd1{bottom:888.735000px;}
.y3b{bottom:891.255000px;}
.yab{bottom:894.855000px;}
.y12{bottom:898.815000px;}
.y121{bottom:907.095000px;}
.yf9{bottom:911.415000px;}
.y80{bottom:916.815000px;}
.yd0{bottom:919.695000px;}
.y3a{bottom:922.215000px;}
.yaa{bottom:925.815000px;}
.y11{bottom:929.415000px;}
.y120{bottom:938.055000px;}
.yf8{bottom:942.375000px;}
.ycf{bottom:951.015000px;}
.y39{bottom:953.205000px;}
.y11f{bottom:955.725000px;}
.ya9{bottom:956.805000px;}
.y7e{bottom:958.965000px;}
.y10{bottom:960.405000px;}
.yf7{bottom:973.365000px;}
.y7f{bottom:979.845000px;}
.yce{bottom:982.005000px;}
.y11e{bottom:983.085000px;}
.y38{bottom:984.165000px;}
.ya8{bottom:988.125000px;}
.yf{bottom:991.365000px;}
.yf6{bottom:1004.685000px;}
.y11c{bottom:1010.445000px;}
.ycd{bottom:1012.965000px;}
.y37{bottom:1015.485000px;}
.ya7{bottom:1019.085000px;}
.ye{bottom:1022.325000px;}
.yf5{bottom:1035.645000px;}
.ya6{bottom:1036.725000px;}
.y119{bottom:1040.685000px;}
.y8{bottom:1043.565000px;}
.ycc{bottom:1043.925000px;}
.y36{bottom:1046.445000px;}
.ya3{bottom:1060.485000px;}
.yca{bottom:1061.565000px;}
.y7{bottom:1063.725000px;}
.yf4{bottom:1066.605000px;}
.y35{bottom:1077.405000px;}
.y6{bottom:1083.930000px;}
.yf3{bottom:1084.290000px;}
.ya{bottom:1095.810000px;}
.y5{bottom:1104.450000px;}
.ya1{bottom:1108.050000px;}
.y34{bottom:1108.410000px;}
.yc9{bottom:1109.130000px;}
.y4{bottom:1126.410000px;}
.yf2{bottom:1131.810000px;}
.y33{bottom:1139.730000px;}
.y3{bottom:1148.370000px;}
.y2{bottom:1170.330000px;}
.y1{bottom:1192.650000px;}
.h16{height:20.520000px;}
.h18{height:20.880000px;}
.h17{height:20.916000px;}
.h27{height:21.600000px;}
.h2c{height:22.320000px;}
.h2f{height:22.680000px;}
.hd{height:23.400000px;}
.h1f{height:23.760000px;}
.h22{height:23.796000px;}
.h2a{height:24.120000px;}
.h1e{height:24.156000px;}
.h2d{height:24.480000px;}
.h32{height:27.360000px;}
.h31{height:29.160000px;}
.h1a{height:29.880000px;}
.h1b{height:30.600000px;}
.h1c{height:30.960000px;}
.h13{height:38.880000px;}
.h11{height:38.916000px;}
.h12{height:39.240000px;}
.h14{height:39.276000px;}
.hf{height:41.040000px;}
.hb{height:41.400000px;}
.he{height:41.436000px;}
.h15{height:42.156000px;}
.h24{height:46.440000px;}
.h23{height:46.476000px;}
.h25{height:46.800000px;}
.h1d{height:47.520000px;}
.h21{height:47.556000px;}
.h20{height:47.880000px;}
.h28{height:52.560000px;}
.h33{height:53.676000px;}
.h19{height:60.480000px;}
.h29{height:61.560000px;}
.h10{height:62.280000px;}
.h7{height:63.175781px;}
.h6{height:63.949219px;}
.hc{height:65.520000px;}
.h3{height:65.884219px;}
.h26{height:66.960000px;}
.h2b{height:67.716000px;}
.h8{height:67.824844px;}
.ha{height:69.056016px;}
.h9{height:69.236016px;}
.h2e{height:70.236000px;}
.h2{height:73.722656px;}
.h30{height:83.916000px;}
.h5{height:95.300859px;}
.h4{height:107.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:55.440000px;}
.w15{width:68.400000px;}
.w12{width:72.756000px;}
.w14{width:74.556000px;}
.w8{width:81.756000px;}
.w13{width:84.996000px;}
.w9{width:95.076000px;}
.wa{width:95.436000px;}
.w1e{width:99.756000px;}
.w1c{width:100.116000px;}
.w1b{width:102.636000px;}
.w7{width:104.796000px;}
.w1d{width:105.552000px;}
.w16{width:117.072000px;}
.w4{width:119.556000px;}
.wc{width:140.472000px;}
.w2e{width:140.796000px;}
.w26{width:142.956000px;}
.w23{width:143.316000px;}
.w32{width:147.996000px;}
.w33{width:148.392000px;}
.w2f{width:150.555000px;}
.w11{width:153.390000px;}
.wd{width:154.155000px;}
.w30{width:155.235000px;}
.w31{width:155.595000px;}
.w24{width:156.315000px;}
.w27{width:156.675000px;}
.wf{width:157.755000px;}
.w17{width:158.070000px;}
.w29{width:158.115000px;}
.w10{width:159.555000px;}
.w1f{width:168.915000px;}
.w20{width:169.275000px;}
.w2c{width:171.435000px;}
.w2a{width:175.395000px;}
.w2b{width:175.755000px;}
.w5{width:176.835000px;}
.w6{width:177.195000px;}
.wb{width:190.875000px;}
.w2d{width:190.905000px;}
.w19{width:199.875000px;}
.w22{width:204.585000px;}
.w18{width:205.665000px;}
.w21{width:208.155000px;}
.w25{width:215.025000px;}
.w28{width:240.585000px;}
.we{width:284.505000px;}
.w3{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:5.040000px;}
.x37{left:6.840000px;}
.x25{left:8.280000px;}
.x6{left:10.800000px;}
.x4c{left:15.840000px;}
.x3f{left:17.280000px;}
.x34{left:24.840000px;}
.x36{left:26.280000px;}
.x32{left:30.600000px;}
.x35{left:31.680000px;}
.x33{left:36.720000px;}
.x43{left:37.830000px;}
.x40{left:38.925000px;}
.x41{left:39.990000px;}
.x4e{left:41.085000px;}
.x2a{left:42.120000px;}
.x42{left:43.950000px;}
.x2c{left:52.200000px;}
.x2e{left:55.080000px;}
.x15{left:58.320000px;}
.x1c{left:61.950000px;}
.x21{left:63.030000px;}
.x1f{left:64.125000px;}
.x1e{left:65.205000px;}
.x14{left:69.156000px;}
.x23{left:70.950000px;}
.x22{left:74.565000px;}
.x3b{left:78.150000px;}
.x4b{left:90.396000px;}
.x18{left:104.070000px;}
.x3{left:106.235987px;}
.x27{left:114.180000px;}
.x7{left:116.315987px;}
.x50{left:117.765000px;}
.x52{left:118.845000px;}
.x4a{left:120.645000px;}
.x6a{left:122.085000px;}
.x49{left:123.180000px;}
.x56{left:125.715000px;}
.x48{left:127.125000px;}
.x63{left:130.035000px;}
.x46{left:131.100000px;}
.x60{left:132.180000px;}
.x11{left:133.271987px;}
.x5f{left:135.420000px;}
.x13{left:148.751987px;}
.x1{left:159.554987px;}
.xe{left:163.514987px;}
.xc{left:166.034987px;}
.x6d{left:167.114987px;}
.x12{left:169.994987px;}
.x57{left:176.475000px;}
.x5d{left:183.315000px;}
.x70{left:187.274987px;}
.x17{left:188.715000px;}
.x6f{left:191.234987px;}
.x44{left:193.035000px;}
.x24{left:203.835000px;}
.x64{left:205.635000px;}
.x5a{left:209.595000px;}
.x53{left:212.474987px;}
.x67{left:213.555000px;}
.x6b{left:221.505000px;}
.x38{left:223.305000px;}
.x10{left:225.464987px;}
.x5{left:249.225000px;}
.x1d{left:270.465000px;}
.xa{left:275.864987px;}
.x3c{left:278.745000px;}
.x4d{left:298.545000px;}
.xd{left:302.864987px;}
.x8{left:304.304987px;}
.x6e{left:315.149987px;}
.x29{left:353.670000px;}
.x5e{left:358.710000px;}
.x61{left:360.870000px;}
.x45{left:361.950000px;}
.x19{left:365.550000px;}
.x5b{left:367.710000px;}
.x68{left:368.790000px;}
.x39{left:381.390000px;}
.x26{left:394.710000px;}
.x65{left:396.540000px;}
.x54{left:404.460000px;}
.xf{left:414.179987px;}
.x58{left:417.060000px;}
.x2f{left:426.420000px;}
.xb{left:430.379987px;}
.x9{left:446.579987px;}
.x4{left:456.299987px;}
.x2{left:473.219987px;}
.x3d{left:481.500000px;}
.x4f{left:503.130000px;}
.x2b{left:511.410000px;}
.x6c{left:517.890000px;}
.x69{left:524.370000px;}
.x5c{left:525.810000px;}
.x47{left:531.210000px;}
.x62{left:532.290000px;}
.x28{left:535.170000px;}
.x66{left:537.330000px;}
.x1a{left:542.730000px;}
.x55{left:547.410000px;}
.x59{left:560.370000px;}
.x3a{left:587.055000px;}
.x30{left:596.415000px;}
.x20{left:624.495000px;}
.x51{left:646.455000px;}
.x2d{left:670.965000px;}
.x3e{left:687.165000px;}
.x1b{left:719.565000px;}
.x31{left:755.970000px;}
@media print{
.v2{vertical-align:-24.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.480000pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.419733pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.445333pt;}
.lsf{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.608000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls15{letter-spacing:7.200000pt;}
.ls2{letter-spacing:9.600000pt;}
.ls13{letter-spacing:28.298667pt;}
.ls0{letter-spacing:29.568000pt;}
.ls1{letter-spacing:29.578667pt;}
.ls14{letter-spacing:56.458667pt;}
.lse{letter-spacing:83.328000pt;}
.lsd{letter-spacing:108.928000pt;}
.lsb{letter-spacing:133.248000pt;}
.ws1{word-spacing:-106.240000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws2{word-spacing:-20.823040pt;}
.wsa{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws9{word-spacing:-15.424000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.ws8{word-spacing:-11.005333pt;}
.ws7{word-spacing:-10.560000pt;}
.ws6{word-spacing:0.000000pt;}
._18{margin-left:-4.067840pt;}
._17{margin-left:-3.100160pt;}
._8{margin-left:-2.120960pt;}
._0{margin-left:-1.059840pt;}
._1{width:1.120427pt;}
._4{width:2.289067pt;}
._f{width:3.272107pt;}
._d{width:4.408747pt;}
._13{width:5.568000pt;}
._10{width:6.819840pt;}
._11{width:7.829760pt;}
._c{width:9.016320pt;}
._2{width:10.411520pt;}
._3{width:11.522133pt;}
._12{width:12.544000pt;}
._6{width:13.888000pt;}
._7{width:14.802347pt;}
._1b{width:16.922880pt;}
._5{width:18.560000pt;}
._1e{width:19.573333pt;}
._1a{width:20.670293pt;}
._b{width:21.574827pt;}
._22{width:22.499840pt;}
._9{width:23.459840pt;}
._a{width:24.358400pt;}
._16{width:27.359573pt;}
._19{width:28.864000pt;}
._24{width:30.883840pt;}
._23{width:31.808000pt;}
._15{width:33.024000pt;}
._14{width:33.984000pt;}
._e{width:37.504000pt;}
._1f{width:45.184000pt;}
._1d{width:59.200000pt;}
._1c{width:69.731840pt;}
._21{width:126.464000pt;}
._20{width:127.872000pt;}
.fs3{font-size:42.240000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.520000pt;}
.y5e{bottom:3.840000pt;}
.y77{bottom:3.880000pt;}
.yda{bottom:4.160000pt;}
.y10e{bottom:4.480000pt;}
.y5b{bottom:4.800000pt;}
.yd8{bottom:5.120000pt;}
.y110{bottom:5.440000pt;}
.ybf{bottom:5.760000pt;}
.ya0{bottom:6.074667pt;}
.y9a{bottom:6.080000pt;}
.yd{bottom:6.400000pt;}
.y9d{bottom:6.440000pt;}
.yfe{bottom:6.720000pt;}
.y101{bottom:7.040000pt;}
.y11d{bottom:7.360000pt;}
.ye5{bottom:8.320000pt;}
.y8d{bottom:8.960000pt;}
.y8f{bottom:9.280000pt;}
.y6c{bottom:11.840000pt;}
.yf0{bottom:12.480000pt;}
.y58{bottom:12.800000pt;}
.y5f{bottom:13.120000pt;}
.yc0{bottom:15.040000pt;}
.yc3{bottom:15.360000pt;}
.yc6{bottom:15.680000pt;}
.ycb{bottom:15.720000pt;}
.y9b{bottom:16.640000pt;}
.ya5{bottom:16.680000pt;}
.y129{bottom:18.266667pt;}
.ye6{bottom:18.880000pt;}
.y61{bottom:21.760000pt;}
.y56{bottom:22.080000pt;}
.y64{bottom:22.106667pt;}
.y5d{bottom:22.120000pt;}
.y8b{bottom:22.400000pt;}
.y76{bottom:22.440000pt;}
.yf1{bottom:23.040000pt;}
.y5a{bottom:23.360000pt;}
.yc2{bottom:24.320000pt;}
.ybe{bottom:24.346667pt;}
.yc5{bottom:24.960000pt;}
.y10b{bottom:25.960000pt;}
.y99{bottom:27.200000pt;}
.ya4{bottom:27.240000pt;}
.ya2{bottom:27.520000pt;}
.y128{bottom:27.546667pt;}
.ye4{bottom:29.440000pt;}
.y11b{bottom:31.680000pt;}
.y8a{bottom:32.960000pt;}
.yd6{bottom:33.280000pt;}
.yef{bottom:33.594667pt;}
.y10a{bottom:34.920000pt;}
.yc{bottom:38.080000pt;}
.y67{bottom:40.640000pt;}
.y11a{bottom:41.000000pt;}
.yfc{bottom:45.480000pt;}
.yb{bottom:69.440000pt;}
.y9{bottom:69.472000pt;}
.yc8{bottom:98.592000pt;}
.y32{bottom:98.912000pt;}
.yee{bottom:100.512000pt;}
.y54{bottom:102.112000pt;}
.y7d{bottom:103.392000pt;}
.y6a{bottom:103.712000pt;}
.y138{bottom:114.912000pt;}
.y118{bottom:117.152000pt;}
.y69{bottom:119.392000pt;}
.y31{bottom:126.432000pt;}
.y9f{bottom:128.352000pt;}
.y53{bottom:129.632000pt;}
.y68{bottom:140.186667pt;}
.yc7{bottom:140.826667pt;}
.y137{bottom:142.746667pt;}
.y117{bottom:144.666667pt;}
.y9e{bottom:149.466667pt;}
.y30{bottom:153.946667pt;}
.y52{bottom:157.146667pt;}
.yed{bottom:168.666667pt;}
.y136{bottom:170.266667pt;}
.y9c{bottom:170.586667pt;}
.y116{bottom:172.506667pt;}
.y66{bottom:177.026667pt;}
.yc4{bottom:182.146667pt;}
.y51{bottom:184.706667pt;}
.y98{bottom:192.706667pt;}
.yec{bottom:196.226667pt;}
.y135{bottom:197.826667pt;}
.y115{bottom:200.066667pt;}
.y2f{bottom:202.946667pt;}
.y50{bottom:212.546667pt;}
.y7c{bottom:213.826667pt;}
.y151{bottom:214.146667pt;}
.yeb{bottom:223.746667pt;}
.yc1{bottom:224.386667pt;}
.y134{bottom:225.346667pt;}
.y114{bottom:227.586667pt;}
.y65{bottom:232.386667pt;}
.y150{bottom:235.266667pt;}
.y4f{bottom:240.066667pt;}
.y2e{bottom:241.666667pt;}
.y97{bottom:248.066667pt;}
.y7b{bottom:250.626667pt;}
.yea{bottom:251.586667pt;}
.y133{bottom:253.186667pt;}
.y113{bottom:255.106667pt;}
.y14f{bottom:256.706667pt;}
.y2d{bottom:262.786667pt;}
.ybd{bottom:266.626667pt;}
.ye9{bottom:267.266667pt;}
.y4e{bottom:267.586667pt;}
.y63{bottom:269.186667pt;}
.y96{bottom:275.586667pt;}
.y14e{bottom:277.826667pt;}
.y132{bottom:280.706667pt;}
.y112{bottom:282.946667pt;}
.y2c{bottom:284.226667pt;}
.y7a{bottom:287.453333pt;}
.ye8{bottom:288.413333pt;}
.y4d{bottom:295.133333pt;}
.y14d{bottom:298.973333pt;}
.y95{bottom:303.453333pt;}
.y2b{bottom:305.373333pt;}
.y62{bottom:306.013333pt;}
.y131{bottom:308.253333pt;}
.ye7{bottom:309.533333pt;}
.y111{bottom:310.493333pt;}
.y14c{bottom:320.093333pt;}
.ybc{bottom:321.053333pt;}
.y4c{bottom:322.973333pt;}
.y79{bottom:324.253333pt;}
.y10f{bottom:326.173333pt;}
.y2a{bottom:326.493333pt;}
.y94{bottom:330.973333pt;}
.ye3{bottom:331.293333pt;}
.y130{bottom:335.773333pt;}
.y14b{bottom:341.213333pt;}
.y60{bottom:342.813333pt;}
.y29{bottom:347.613333pt;}
.y10d{bottom:347.933333pt;}
.ybb{bottom:348.573333pt;}
.y4b{bottom:350.493333pt;}
.y93{bottom:358.493333pt;}
.y78{bottom:361.053333pt;}
.y14a{bottom:362.333333pt;}
.y12f{bottom:363.613333pt;}
.y10c{bottom:368.093333pt;}
.y28{bottom:368.733333pt;}
.yba{bottom:376.413333pt;}
.y4a{bottom:378.013333pt;}
.y5c{bottom:379.293333pt;}
.y149{bottom:383.453333pt;}
.y92{bottom:386.013333pt;}
.y109{bottom:388.893333pt;}
.y27{bottom:389.853333pt;}
.ye2{bottom:391.133333pt;}
.y75{bottom:397.853333pt;}
.yb9{bottom:403.973333pt;}
.y148{bottom:404.613333pt;}
.y49{bottom:405.573333pt;}
.y26{bottom:411.013333pt;}
.y91{bottom:413.893333pt;}
.y59{bottom:417.093333pt;}
.ye1{bottom:418.693333pt;}
.y147{bottom:425.733333pt;}
.y90{bottom:429.573333pt;}
.yb8{bottom:431.493333pt;}
.y25{bottom:432.133333pt;}
.y48{bottom:433.093333pt;}
.y55{bottom:438.533333pt;}
.y12e{bottom:446.213333pt;}
.ye0{bottom:446.533333pt;}
.y146{bottom:447.173333pt;}
.y74{bottom:448.773333pt;}
.y24{bottom:453.253333pt;}
.y8e{bottom:457.093333pt;}
.yb7{bottom:459.013333pt;}
.y47{bottom:460.933333pt;}
.y108{bottom:464.773333pt;}
.y145{bottom:468.293333pt;}
.y12d{bottom:473.733333pt;}
.ydf{bottom:474.053333pt;}
.y23{bottom:474.693333pt;}
.y73{bottom:476.293333pt;}
.y8c{bottom:484.293333pt;}
.yb6{bottom:486.853333pt;}
.y46{bottom:488.453333pt;}
.y144{bottom:489.413333pt;}
.y107{bottom:492.293333pt;}
.y22{bottom:495.813333pt;}
.yde{bottom:501.573333pt;}
.yb5{bottom:502.533333pt;}
.y72{bottom:503.813333pt;}
.y143{bottom:510.533333pt;}
.y89{bottom:511.520000pt;}
.y45{bottom:516.000000pt;}
.y21{bottom:516.960000pt;}
.y106{bottom:519.840000pt;}
.yb4{bottom:523.680000pt;}
.ydd{bottom:529.120000pt;}
.y71{bottom:531.680000pt;}
.y20{bottom:538.080000pt;}
.y44{bottom:543.520000pt;}
.y12c{bottom:544.800000pt;}
.y105{bottom:547.360000pt;}
.y142{bottom:552.800000pt;}
.ydc{bottom:556.960000pt;}
.y1f{bottom:559.200000pt;}
.yb3{bottom:565.920000pt;}
.y12b{bottom:566.560000pt;}
.y43{bottom:571.360000pt;}
.ydb{bottom:572.640000pt;}
.y141{bottom:573.920000pt;}
.y104{bottom:575.200000pt;}
.y1e{bottom:578.080000pt;}
.y88{bottom:578.400000pt;}
.y12a{bottom:586.400000pt;}
.y70{bottom:586.720000pt;}
.yb2{bottom:587.040000pt;}
.yd9{bottom:593.440000pt;}
.y140{bottom:595.040000pt;}
.y1d{bottom:596.320000pt;}
.y42{bottom:598.880000pt;}
.y6f{bottom:602.400000pt;}
.y103{bottom:602.720000pt;}
.y87{bottom:605.920000pt;}
.y127{bottom:607.200000pt;}
.yb1{bottom:608.160000pt;}
.yd7{bottom:612.640000pt;}
.y1c{bottom:614.880000pt;}
.y13f{bottom:616.480000pt;}
.y41{bottom:626.426667pt;}
.yb0{bottom:629.306667pt;}
.y102{bottom:630.266667pt;}
.y1b{bottom:633.146667pt;}
.y86{bottom:633.786667pt;}
.yd5{bottom:634.426667pt;}
.y6e{bottom:637.306667pt;}
.y13e{bottom:637.626667pt;}
.y100{bottom:645.946667pt;}
.y1a{bottom:651.706667pt;}
.y40{bottom:653.946667pt;}
.y13d{bottom:658.746667pt;}
.y85{bottom:661.306667pt;}
.yff{bottom:667.706667pt;}
.y126{bottom:668.026667pt;}
.y19{bottom:669.946667pt;}
.y6d{bottom:671.866667pt;}
.y13c{bottom:679.866667pt;}
.y3f{bottom:681.786667pt;}
.yaf{bottom:684.986667pt;}
.yfd{bottom:687.546667pt;}
.y18{bottom:688.506667pt;}
.y84{bottom:688.826667pt;}
.y125{bottom:695.866667pt;}
.y13b{bottom:700.986667pt;}
.y83{bottom:704.506667pt;}
.y17{bottom:706.746667pt;}
.yd4{bottom:707.066667pt;}
.yfb{bottom:708.986667pt;}
.y3e{bottom:709.306667pt;}
.yae{bottom:712.506667pt;}
.y13a{bottom:722.106667pt;}
.y124{bottom:723.386667pt;}
.y16{bottom:725.306667pt;}
.yd3{bottom:734.946667pt;}
.y3d{bottom:736.866667pt;}
.yad{bottom:740.066667pt;}
.y82{bottom:741.346667pt;}
.y6b{bottom:741.986667pt;}
.y139{bottom:743.266667pt;}
.y15{bottom:743.586667pt;}
.y123{bottom:750.946667pt;}
.y14{bottom:762.146667pt;}
.yd2{bottom:762.466667pt;}
.y3c{bottom:764.386667pt;}
.yac{bottom:767.906667pt;}
.y81{bottom:778.146667pt;}
.y122{bottom:778.466667pt;}
.y13{bottom:780.386667pt;}
.yfa{bottom:782.626667pt;}
.yd1{bottom:789.986667pt;}
.y3b{bottom:792.226667pt;}
.yab{bottom:795.426667pt;}
.y12{bottom:798.946667pt;}
.y121{bottom:806.306667pt;}
.yf9{bottom:810.146667pt;}
.y80{bottom:814.946667pt;}
.yd0{bottom:817.506667pt;}
.y3a{bottom:819.746667pt;}
.yaa{bottom:822.946667pt;}
.y11{bottom:826.146667pt;}
.y120{bottom:833.826667pt;}
.yf8{bottom:837.666667pt;}
.ycf{bottom:845.346667pt;}
.y39{bottom:847.293333pt;}
.y11f{bottom:849.533333pt;}
.ya9{bottom:850.493333pt;}
.y7e{bottom:852.413333pt;}
.y10{bottom:853.693333pt;}
.yf7{bottom:865.213333pt;}
.y7f{bottom:870.973333pt;}
.yce{bottom:872.893333pt;}
.y11e{bottom:873.853333pt;}
.y38{bottom:874.813333pt;}
.ya8{bottom:878.333333pt;}
.yf{bottom:881.213333pt;}
.yf6{bottom:893.053333pt;}
.y11c{bottom:898.173333pt;}
.ycd{bottom:900.413333pt;}
.y37{bottom:902.653333pt;}
.ya7{bottom:905.853333pt;}
.ye{bottom:908.733333pt;}
.yf5{bottom:920.573333pt;}
.ya6{bottom:921.533333pt;}
.y119{bottom:925.053333pt;}
.y8{bottom:927.613333pt;}
.ycc{bottom:927.933333pt;}
.y36{bottom:930.173333pt;}
.ya3{bottom:942.653333pt;}
.yca{bottom:943.613333pt;}
.y7{bottom:945.533333pt;}
.yf4{bottom:948.093333pt;}
.y35{bottom:957.693333pt;}
.y6{bottom:963.493333pt;}
.yf3{bottom:963.813333pt;}
.ya{bottom:974.053333pt;}
.y5{bottom:981.733333pt;}
.ya1{bottom:984.933333pt;}
.y34{bottom:985.253333pt;}
.yc9{bottom:985.893333pt;}
.y4{bottom:1001.253333pt;}
.yf2{bottom:1006.053333pt;}
.y33{bottom:1013.093333pt;}
.y3{bottom:1020.773333pt;}
.y2{bottom:1040.293333pt;}
.y1{bottom:1060.133333pt;}
.h16{height:18.240000pt;}
.h18{height:18.560000pt;}
.h17{height:18.592000pt;}
.h27{height:19.200000pt;}
.h2c{height:19.840000pt;}
.h2f{height:20.160000pt;}
.hd{height:20.800000pt;}
.h1f{height:21.120000pt;}
.h22{height:21.152000pt;}
.h2a{height:21.440000pt;}
.h1e{height:21.472000pt;}
.h2d{height:21.760000pt;}
.h32{height:24.320000pt;}
.h31{height:25.920000pt;}
.h1a{height:26.560000pt;}
.h1b{height:27.200000pt;}
.h1c{height:27.520000pt;}
.h13{height:34.560000pt;}
.h11{height:34.592000pt;}
.h12{height:34.880000pt;}
.h14{height:34.912000pt;}
.hf{height:36.480000pt;}
.hb{height:36.800000pt;}
.he{height:36.832000pt;}
.h15{height:37.472000pt;}
.h24{height:41.280000pt;}
.h23{height:41.312000pt;}
.h25{height:41.600000pt;}
.h1d{height:42.240000pt;}
.h21{height:42.272000pt;}
.h20{height:42.560000pt;}
.h28{height:46.720000pt;}
.h33{height:47.712000pt;}
.h19{height:53.760000pt;}
.h29{height:54.720000pt;}
.h10{height:55.360000pt;}
.h7{height:56.156250pt;}
.h6{height:56.843750pt;}
.hc{height:58.240000pt;}
.h3{height:58.563750pt;}
.h26{height:59.520000pt;}
.h2b{height:60.192000pt;}
.h8{height:60.288750pt;}
.ha{height:61.383125pt;}
.h9{height:61.543125pt;}
.h2e{height:62.432000pt;}
.h2{height:65.531250pt;}
.h30{height:74.592000pt;}
.h5{height:84.711875pt;}
.h4{height:95.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:49.280000pt;}
.w15{width:60.800000pt;}
.w12{width:64.672000pt;}
.w14{width:66.272000pt;}
.w8{width:72.672000pt;}
.w13{width:75.552000pt;}
.w9{width:84.512000pt;}
.wa{width:84.832000pt;}
.w1e{width:88.672000pt;}
.w1c{width:88.992000pt;}
.w1b{width:91.232000pt;}
.w7{width:93.152000pt;}
.w1d{width:93.824000pt;}
.w16{width:104.064000pt;}
.w4{width:106.272000pt;}
.wc{width:124.864000pt;}
.w2e{width:125.152000pt;}
.w26{width:127.072000pt;}
.w23{width:127.392000pt;}
.w32{width:131.552000pt;}
.w33{width:131.904000pt;}
.w2f{width:133.826667pt;}
.w11{width:136.346667pt;}
.wd{width:137.026667pt;}
.w30{width:137.986667pt;}
.w31{width:138.306667pt;}
.w24{width:138.946667pt;}
.w27{width:139.266667pt;}
.wf{width:140.226667pt;}
.w17{width:140.506667pt;}
.w29{width:140.546667pt;}
.w10{width:141.826667pt;}
.w1f{width:150.146667pt;}
.w20{width:150.466667pt;}
.w2c{width:152.386667pt;}
.w2a{width:155.906667pt;}
.w2b{width:156.226667pt;}
.w5{width:157.186667pt;}
.w6{width:157.506667pt;}
.wb{width:169.666667pt;}
.w2d{width:169.693333pt;}
.w19{width:177.666667pt;}
.w22{width:181.853333pt;}
.w18{width:182.813333pt;}
.w21{width:185.026667pt;}
.w25{width:191.133333pt;}
.w28{width:213.853333pt;}
.we{width:252.893333pt;}
.w3{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:4.480000pt;}
.x37{left:6.080000pt;}
.x25{left:7.360000pt;}
.x6{left:9.600000pt;}
.x4c{left:14.080000pt;}
.x3f{left:15.360000pt;}
.x34{left:22.080000pt;}
.x36{left:23.360000pt;}
.x32{left:27.200000pt;}
.x35{left:28.160000pt;}
.x33{left:32.640000pt;}
.x43{left:33.626667pt;}
.x40{left:34.600000pt;}
.x41{left:35.546667pt;}
.x4e{left:36.520000pt;}
.x2a{left:37.440000pt;}
.x42{left:39.066667pt;}
.x2c{left:46.400000pt;}
.x2e{left:48.960000pt;}
.x15{left:51.840000pt;}
.x1c{left:55.066667pt;}
.x21{left:56.026667pt;}
.x1f{left:57.000000pt;}
.x1e{left:57.960000pt;}
.x14{left:61.472000pt;}
.x23{left:63.066667pt;}
.x22{left:66.280000pt;}
.x3b{left:69.466667pt;}
.x4b{left:80.352000pt;}
.x18{left:92.506667pt;}
.x3{left:94.431988pt;}
.x27{left:101.493333pt;}
.x7{left:103.391988pt;}
.x50{left:104.680000pt;}
.x52{left:105.640000pt;}
.x4a{left:107.240000pt;}
.x6a{left:108.520000pt;}
.x49{left:109.493333pt;}
.x56{left:111.746667pt;}
.x48{left:113.000000pt;}
.x63{left:115.586667pt;}
.x46{left:116.533333pt;}
.x60{left:117.493333pt;}
.x11{left:118.463988pt;}
.x5f{left:120.373333pt;}
.x13{left:132.223988pt;}
.x1{left:141.826655pt;}
.xe{left:145.346655pt;}
.xc{left:147.586655pt;}
.x6d{left:148.546655pt;}
.x12{left:151.106655pt;}
.x57{left:156.866667pt;}
.x5d{left:162.946667pt;}
.x70{left:166.466655pt;}
.x17{left:167.746667pt;}
.x6f{left:169.986655pt;}
.x44{left:171.586667pt;}
.x24{left:181.186667pt;}
.x64{left:182.786667pt;}
.x5a{left:186.306667pt;}
.x53{left:188.866655pt;}
.x67{left:189.826667pt;}
.x6b{left:196.893333pt;}
.x38{left:198.493333pt;}
.x10{left:200.413322pt;}
.x5{left:221.533333pt;}
.x1d{left:240.413333pt;}
.xa{left:245.213322pt;}
.x3c{left:247.773333pt;}
.x4d{left:265.373333pt;}
.xd{left:269.213322pt;}
.x8{left:270.493322pt;}
.x6e{left:280.133322pt;}
.x29{left:314.373333pt;}
.x5e{left:318.853333pt;}
.x61{left:320.773333pt;}
.x45{left:321.733333pt;}
.x19{left:324.933333pt;}
.x5b{left:326.853333pt;}
.x68{left:327.813333pt;}
.x39{left:339.013333pt;}
.x26{left:350.853333pt;}
.x65{left:352.480000pt;}
.x54{left:359.520000pt;}
.xf{left:368.159988pt;}
.x58{left:370.720000pt;}
.x2f{left:379.040000pt;}
.xb{left:382.559988pt;}
.x9{left:396.959988pt;}
.x4{left:405.599988pt;}
.x2{left:420.639988pt;}
.x3d{left:428.000000pt;}
.x4f{left:447.226667pt;}
.x2b{left:454.586667pt;}
.x6c{left:460.346667pt;}
.x69{left:466.106667pt;}
.x5c{left:467.386667pt;}
.x47{left:472.186667pt;}
.x62{left:473.146667pt;}
.x28{left:475.706667pt;}
.x66{left:477.626667pt;}
.x1a{left:482.426667pt;}
.x55{left:486.586667pt;}
.x59{left:498.106667pt;}
.x3a{left:521.826667pt;}
.x30{left:530.146667pt;}
.x20{left:555.106667pt;}
.x51{left:574.626667pt;}
.x2d{left:596.413333pt;}
.x3e{left:610.813333pt;}
.x1b{left:639.613333pt;}
.x31{left:671.973333pt;}
}




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