
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_49936eb1a9655d15aefa9fce.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_420ff82cbbe899208cf6664b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c75b5663553ebba85ab2eeb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5739be11090efb1edda57ba6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_c7294daf6c9b6c0792c5dd4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934082;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_aaed0ec9bd7e1b29e3effa9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7ba4b1bf5f340302b22a6ca2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_ebe831b17f69247af568753e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_3881cc10846600d325716d45.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_76f79ed14cb32683fefc3979.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b990a7cb6a2d5176beaa5e60.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3bc43abd6f9db5c58e283241.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.360000px;}
.ls36{letter-spacing:-0.337800px;}
.lsd{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.226200px;}
.ls1c{letter-spacing:-0.214800px;}
.lsf{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.001440px;}
.ls7{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.023760px;}
.ls13{letter-spacing:0.060600px;}
.ls29{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.150000px;}
.ls22{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.174240px;}
.ls34{letter-spacing:0.179280px;}
.ls2a{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.186600px;}
.ls1f{letter-spacing:0.218400px;}
.ls24{letter-spacing:0.220200px;}
.lsa{letter-spacing:0.256200px;}
.ls35{letter-spacing:0.274800px;}
.ls14{letter-spacing:0.288600px;}
.ls20{letter-spacing:0.309000px;}
.ls25{letter-spacing:0.314400px;}
.ls3{letter-spacing:0.427680px;}
.ls2d{letter-spacing:0.433440px;}
.ls1d{letter-spacing:0.479400px;}
.ls4{letter-spacing:0.479520px;}
.ls2c{letter-spacing:0.612000px;}
.ls30{letter-spacing:0.617760px;}
.ls2f{letter-spacing:0.637200px;}
.ls15{letter-spacing:0.642000px;}
.ls33{letter-spacing:0.659520px;}
.lse{letter-spacing:0.858000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls27{letter-spacing:2.106720px;}
.ls17{letter-spacing:5.706720px;}
.ls32{letter-spacing:12.186720px;}
.ls18{letter-spacing:17.226720px;}
.ls23{letter-spacing:20.106720px;}
.ls12{letter-spacing:21.546720px;}
.ls6{letter-spacing:38.106720px;}
.ls31{letter-spacing:42.570720px;}
.ls28{letter-spacing:45.306720px;}
.ls19{letter-spacing:45.450720px;}
.ls1a{letter-spacing:93.690720px;}
.ls1b{letter-spacing:105.210720px;}
.ls26{letter-spacing:110.250720px;}
.ls21{letter-spacing:112.410720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws4{word-spacing:-21.641760px;}
.ws2{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.820160px;}
.ws10{word-spacing:-13.814760px;}
.ws15{word-spacing:-13.780560px;}
.ws11{word-spacing:-13.725960px;}
.wsf{word-spacing:-13.724160px;}
.ws14{word-spacing:-13.692360px;}
.ws13{word-spacing:-13.529520px;}
.ws8{word-spacing:-13.505760px;}
.wse{word-spacing:-13.504320px;}
.wsa{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.wsd{word-spacing:-13.290960px;}
.ws16{word-spacing:-13.167960px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws7{word-spacing:-8.426880px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1359.798240px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-582.617760px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._d{margin-left:-2.296320px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.773680px;}
._9{width:3.936240px;}
._10{width:4.938480px;}
._c{width:6.035760px;}
._b{width:7.290720px;}
._11{width:8.371200px;}
._e{width:9.474720px;}
._f{width:11.294640px;}
._14{width:12.310560px;}
._12{width:15.059520px;}
._13{width:16.635120px;}
._15{width:18.005280px;}
._8{width:19.535040px;}
._17{width:33.675600px;}
._16{width:34.701120px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:3.960000px;}
.yad{bottom:4.140000px;}
.y5f{bottom:6.840000px;}
.yb7{bottom:6.885000px;}
.y90{bottom:10.800000px;}
.y88{bottom:11.340000px;}
.y61{bottom:17.280000px;}
.y93{bottom:20.160000px;}
.y62{bottom:27.900000px;}
.y86{bottom:32.400000px;}
.ye9{bottom:40.860000px;}
.y6e{bottom:45.180000px;}
.yeb{bottom:48.960000px;}
.y87{bottom:53.460000px;}
.y6{bottom:61.596000px;}
.yea{bottom:70.014000px;}
.ye8{bottom:94.716000px;}
.y5b{bottom:94.896000px;}
.y82{bottom:95.616000px;}
.yb3{bottom:99.936000px;}
.yd9{bottom:105.336000px;}
.ye7{bottom:107.316000px;}
.y30{bottom:115.596000px;}
.y5a{bottom:115.956000px;}
.y81{bottom:116.676000px;}
.yb2{bottom:118.296000px;}
.yd8{bottom:126.396000px;}
.ye6{bottom:128.376000px;}
.y2f{bottom:136.656000px;}
.y59{bottom:137.016000px;}
.y80{bottom:137.736000px;}
.yb0{bottom:141.156000px;}
.yd7{bottom:147.456000px;}
.ye5{bottom:149.436000px;}
.y2e{bottom:157.710000px;}
.y58{bottom:158.070000px;}
.y7f{bottom:158.790000px;}
.yaf{bottom:163.830000px;}
.yd6{bottom:168.510000px;}
.ye4{bottom:170.490000px;}
.y57{bottom:174.810000px;}
.y2d{bottom:178.770000px;}
.y7e{bottom:179.850000px;}
.yae{bottom:186.690000px;}
.yd5{bottom:189.390000px;}
.ye3{bottom:191.550000px;}
.y2c{bottom:199.830000px;}
.y7d{bottom:200.910000px;}
.yac{bottom:210.270000px;}
.yd4{bottom:210.450000px;}
.ye2{bottom:212.610000px;}
.y2b{bottom:220.890000px;}
.y7c{bottom:221.970000px;}
.yd3{bottom:231.510000px;}
.ye1{bottom:233.670000px;}
.y79{bottom:240.330000px;}
.y2a{bottom:241.950000px;}
.yd2{bottom:252.570000px;}
.ye0{bottom:254.730000px;}
.yab{bottom:261.390000px;}
.y29{bottom:263.010000px;}
.y7b{bottom:265.890000px;}
.yd1{bottom:273.630000px;}
.ydf{bottom:275.790000px;}
.yaa{bottom:282.450000px;}
.y28{bottom:284.070000px;}
.y7a{bottom:291.450000px;}
.yd0{bottom:294.690000px;}
.yde{bottom:296.850000px;}
.ya9{bottom:303.510000px;}
.y27{bottom:305.130000px;}
.ycf{bottom:315.750000px;}
.y78{bottom:317.010000px;}
.ydd{bottom:317.910000px;}
.ya8{bottom:324.570000px;}
.y26{bottom:326.190000px;}
.yce{bottom:336.855000px;}
.ydc{bottom:339.015000px;}
.y77{bottom:344.055000px;}
.ya7{bottom:345.675000px;}
.y25{bottom:347.295000px;}
.ycd{bottom:357.915000px;}
.ydb{bottom:360.075000px;}
.ya6{bottom:366.735000px;}
.y24{bottom:368.355000px;}
.y76{bottom:376.095000px;}
.ycc{bottom:378.975000px;}
.yda{bottom:381.135000px;}
.ya5{bottom:387.795000px;}
.y23{bottom:389.235000px;}
.y75{bottom:397.155000px;}
.ycb{bottom:400.035000px;}
.y56{bottom:402.195000px;}
.ya4{bottom:408.855000px;}
.y22{bottom:410.295000px;}
.y74{bottom:418.215000px;}
.yca{bottom:421.095000px;}
.y55{bottom:423.255000px;}
.ya3{bottom:429.915000px;}
.y21{bottom:431.355000px;}
.y73{bottom:439.275000px;}
.yc9{bottom:442.155000px;}
.y54{bottom:444.315000px;}
.ya2{bottom:450.975000px;}
.y20{bottom:452.415000px;}
.y72{bottom:460.335000px;}
.yc8{bottom:463.215000px;}
.y53{bottom:465.375000px;}
.ya1{bottom:469.335000px;}
.y1f{bottom:475.635000px;}
.y71{bottom:481.395000px;}
.yc7{bottom:484.275000px;}
.y52{bottom:486.435000px;}
.ya0{bottom:494.895000px;}
.y6d{bottom:499.755000px;}
.yc6{bottom:505.335000px;}
.y1e{bottom:505.875000px;}
.y51{bottom:507.495000px;}
.y9f{bottom:520.455000px;}
.y70{bottom:525.315000px;}
.yc5{bottom:526.395000px;}
.y1d{bottom:526.935000px;}
.y50{bottom:528.555000px;}
.y9e{bottom:546.015000px;}
.yc4{bottom:547.455000px;}
.y1c{bottom:547.995000px;}
.y4f{bottom:549.615000px;}
.y6f{bottom:550.875000px;}
.yc3{bottom:568.515000px;}
.y1b{bottom:569.055000px;}
.y4e{bottom:570.675000px;}
.y9d{bottom:572.295000px;}
.y6c{bottom:576.435000px;}
.yc2{bottom:589.575000px;}
.y1a{bottom:590.115000px;}
.y4d{bottom:591.735000px;}
.y6b{bottom:602.745000px;}
.y9c{bottom:604.365000px;}
.yc1{bottom:610.665000px;}
.y19{bottom:611.205000px;}
.y4c{bottom:612.825000px;}
.y9b{bottom:625.425000px;}
.yc0{bottom:631.725000px;}
.y18{bottom:632.265000px;}
.y4b{bottom:633.885000px;}
.y6a{bottom:634.785000px;}
.y9a{bottom:646.485000px;}
.ybf{bottom:652.785000px;}
.y17{bottom:653.325000px;}
.y4a{bottom:654.945000px;}
.y69{bottom:655.845000px;}
.y99{bottom:667.545000px;}
.ybe{bottom:673.845000px;}
.y16{bottom:674.385000px;}
.y49{bottom:676.005000px;}
.y68{bottom:676.905000px;}
.y98{bottom:688.605000px;}
.y67{bottom:694.905000px;}
.y15{bottom:695.445000px;}
.y48{bottom:697.065000px;}
.y97{bottom:709.665000px;}
.y66{bottom:715.245000px;}
.ybd{bottom:715.965000px;}
.y14{bottom:716.505000px;}
.y47{bottom:718.125000px;}
.y96{bottom:730.725000px;}
.y65{bottom:733.605000px;}
.ybc{bottom:737.025000px;}
.y13{bottom:737.565000px;}
.y46{bottom:739.185000px;}
.y95{bottom:751.785000px;}
.ybb{bottom:755.385000px;}
.y12{bottom:758.625000px;}
.y45{bottom:760.245000px;}
.y94{bottom:772.845000px;}
.y11{bottom:779.685000px;}
.y64{bottom:780.225000px;}
.yba{bottom:780.945000px;}
.y44{bottom:781.305000px;}
.y92{bottom:791.025000px;}
.y10{bottom:800.745000px;}
.y43{bottom:802.365000px;}
.yb9{bottom:806.505000px;}
.y91{bottom:817.485000px;}
.yf{bottom:821.805000px;}
.y42{bottom:823.425000px;}
.y63{bottom:826.845000px;}
.yb8{bottom:832.065000px;}
.ye{bottom:842.685000px;}
.y41{bottom:844.485000px;}
.yb6{bottom:858.345000px;}
.y40{bottom:865.590000px;}
.yd{bottom:866.130000px;}
.y60{bottom:873.510000px;}
.y8f{bottom:884.490000px;}
.y3f{bottom:886.650000px;}
.yb5{bottom:890.430000px;}
.yc{bottom:892.410000px;}
.y8e{bottom:905.550000px;}
.y3e{bottom:907.710000px;}
.yb4{bottom:908.430000px;}
.yb{bottom:913.470000px;}
.y5e{bottom:921.570000px;}
.y8d{bottom:926.610000px;}
.y3d{bottom:928.770000px;}
.ya{bottom:930.210000px;}
.y8c{bottom:947.670000px;}
.y3c{bottom:949.830000px;}
.y9{bottom:952.530000px;}
.y5d{bottom:953.610000px;}
.y8b{bottom:968.730000px;}
.y3b{bottom:970.890000px;}
.y5c{bottom:971.610000px;}
.y8{bottom:977.550000px;}
.y8a{bottom:989.790000px;}
.y3a{bottom:991.950000px;}
.y85{bottom:1007.970000px;}
.y7{bottom:1011.210000px;}
.y39{bottom:1013.010000px;}
.y89{bottom:1033.530000px;}
.y38{bottom:1034.070000px;}
.y5{bottom:1051.530000px;}
.y37{bottom:1055.130000px;}
.y84{bottom:1059.090000px;}
.y36{bottom:1076.190000px;}
.y4{bottom:1083.750000px;}
.y83{bottom:1086.270000px;}
.y35{bottom:1097.250000px;}
.y3{bottom:1115.790000px;}
.y34{bottom:1118.310000px;}
.y33{bottom:1139.400000px;}
.y2{bottom:1148.040000px;}
.y32{bottom:1170.180000px;}
.y1{bottom:1182.600000px;}
.y31{bottom:1193.400000px;}
.h19{height:2.864531px;}
.h17{height:18.180000px;}
.h16{height:18.360000px;}
.hd{height:21.060000px;}
.h10{height:21.096000px;}
.h13{height:29.016000px;}
.h7{height:38.671172px;}
.he{height:42.120000px;}
.hf{height:42.156000px;}
.h14{height:45.170156px;}
.h8{height:45.637031px;}
.h15{height:47.520000px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.hb{height:60.226875px;}
.h5{height:61.189805px;}
.hc{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h12{height:72.180000px;}
.h18{height:84.240000px;}
.h11{height:97.776000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.340000px;}
.w14{width:58.500000px;}
.w8{width:61.560000px;}
.w10{width:63.720000px;}
.w9{width:72.180000px;}
.w17{width:72.936000px;}
.w3{width:75.636000px;}
.w13{width:85.536000px;}
.w18{width:94.320000px;}
.w1e{width:98.316000px;}
.w1b{width:104.040000px;}
.w1a{width:105.336000px;}
.w1f{width:112.680000px;}
.w11{width:113.400000px;}
.wc{width:113.580000px;}
.w25{width:113.616000px;}
.wa{width:114.696000px;}
.wd{width:114.876000px;}
.w24{width:125.280000px;}
.w22{width:125.316000px;}
.w23{width:125.496000px;}
.w21{width:134.820000px;}
.w16{width:136.260000px;}
.w19{width:147.996000px;}
.w12{width:149.256000px;}
.wb{width:157.170000px;}
.we{width:157.350000px;}
.w15{width:163.650000px;}
.w20{width:169.050000px;}
.w1d{width:170.310000px;}
.w26{width:182.730000px;}
.w1c{width:183.450000px;}
.wf{width:202.035000px;}
.w7{width:208.515000px;}
.w5{width:258.330000px;}
.w4{width:419.115000px;}
.w27{width:586.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.260000px;}
.x14{left:3.600000px;}
.x15{left:5.934000px;}
.x19{left:7.920000px;}
.xb{left:9.714000px;}
.x12{left:11.160000px;}
.xa{left:13.860000px;}
.xd{left:15.660000px;}
.x3e{left:16.740000px;}
.x20{left:18.900000px;}
.x2e{left:20.340000px;}
.xf{left:21.600000px;}
.x4f{left:23.574000px;}
.x1b{left:25.020000px;}
.x4d{left:26.274000px;}
.x4a{left:28.440000px;}
.x24{left:29.736000px;}
.x33{left:31.320000px;}
.x23{left:32.400000px;}
.x1f{left:34.416000px;}
.x4e{left:35.865000px;}
.x3a{left:39.420000px;}
.x3b{left:41.214000px;}
.x21{left:42.330000px;}
.x39{left:44.094000px;}
.x41{left:45.360000px;}
.x2c{left:46.656000px;}
.x2b{left:48.276000px;}
.x43{left:50.616000px;}
.x2a{left:51.696000px;}
.x45{left:52.776000px;}
.x1{left:53.999987px;}
.xe{left:56.160000px;}
.x11{left:57.420000px;}
.x50{left:59.039987px;}
.x22{left:61.380000px;}
.x46{left:64.799987px;}
.x31{left:66.600000px;}
.x44{left:67.905000px;}
.x5{left:69.479987px;}
.x3c{left:71.100000px;}
.x10{left:72.714000px;}
.x2{left:75.599987px;}
.x51{left:80.999987px;}
.x17{left:92.700000px;}
.x13{left:101.514000px;}
.x52{left:108.035987px;}
.x32{left:110.556000px;}
.x47{left:129.816000px;}
.xc{left:145.299000px;}
.x7{left:147.996000px;}
.x8{left:152.139000px;}
.x16{left:156.819000px;}
.x53{left:168.870000px;}
.x4{left:210.089987px;}
.x54{left:236.730000px;}
.x2d{left:244.110000px;}
.x34{left:248.970000px;}
.x3d{left:256.710000px;}
.x48{left:266.970000px;}
.x25{left:296.895000px;}
.x18{left:303.555000px;}
.x35{left:324.255000px;}
.x2f{left:331.995000px;}
.x26{left:362.775000px;}
.x1a{left:367.275000px;}
.x30{left:392.655000px;}
.x49{left:394.455000px;}
.x36{left:420.915000px;}
.x3f{left:429.195000px;}
.x27{left:437.295000px;}
.x1c{left:441.615000px;}
.x4b{left:522.105000px;}
.x40{left:529.845000px;}
.x28{left:554.325000px;}
.x1d{left:558.645000px;}
.x9{left:569.265000px;}
.x37{left:571.065000px;}
.x42{left:644.865000px;}
.x4c{left:649.725000px;}
.x38{left:678.570000px;}
.x29{left:713.850000px;}
.x1e{left:718.170000px;}
.x3{left:744.269987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls36{letter-spacing:-0.300267pt;}
.lsd{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls1c{letter-spacing:-0.190933pt;}
.lsf{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.001280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.021120pt;}
.ls13{letter-spacing:0.053867pt;}
.ls29{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.133333pt;}
.ls22{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.154880pt;}
.ls34{letter-spacing:0.159360pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.165867pt;}
.ls1f{letter-spacing:0.194133pt;}
.ls24{letter-spacing:0.195733pt;}
.lsa{letter-spacing:0.227733pt;}
.ls35{letter-spacing:0.244267pt;}
.ls14{letter-spacing:0.256533pt;}
.ls20{letter-spacing:0.274667pt;}
.ls25{letter-spacing:0.279467pt;}
.ls3{letter-spacing:0.380160pt;}
.ls2d{letter-spacing:0.385280pt;}
.ls1d{letter-spacing:0.426133pt;}
.ls4{letter-spacing:0.426240pt;}
.ls2c{letter-spacing:0.544000pt;}
.ls30{letter-spacing:0.549120pt;}
.ls2f{letter-spacing:0.566400pt;}
.ls15{letter-spacing:0.570667pt;}
.ls33{letter-spacing:0.586240pt;}
.lse{letter-spacing:0.762667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls27{letter-spacing:1.872640pt;}
.ls17{letter-spacing:5.072640pt;}
.ls32{letter-spacing:10.832640pt;}
.ls18{letter-spacing:15.312640pt;}
.ls23{letter-spacing:17.872640pt;}
.ls12{letter-spacing:19.152640pt;}
.ls6{letter-spacing:33.872640pt;}
.ls31{letter-spacing:37.840640pt;}
.ls28{letter-spacing:40.272640pt;}
.ls19{letter-spacing:40.400640pt;}
.ls1a{letter-spacing:83.280640pt;}
.ls1b{letter-spacing:93.520640pt;}
.ls26{letter-spacing:98.000640pt;}
.ls21{letter-spacing:99.920640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws2{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.284587pt;}
.ws10{word-spacing:-12.279787pt;}
.ws15{word-spacing:-12.249387pt;}
.ws11{word-spacing:-12.200853pt;}
.wsf{word-spacing:-12.199253pt;}
.ws14{word-spacing:-12.170987pt;}
.ws13{word-spacing:-12.026240pt;}
.ws8{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.003840pt;}
.wsa{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.814187pt;}
.ws16{word-spacing:-11.704853pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws7{word-spacing:-7.490560pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1208.709547pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.882453pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._d{margin-left:-2.041173pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.465493pt;}
._9{width:3.498880pt;}
._10{width:4.389760pt;}
._c{width:5.365120pt;}
._b{width:6.480640pt;}
._11{width:7.441067pt;}
._e{width:8.421973pt;}
._f{width:10.039680pt;}
._14{width:10.942720pt;}
._12{width:13.386240pt;}
._13{width:14.786773pt;}
._15{width:16.004693pt;}
._8{width:17.364480pt;}
._17{width:29.933867pt;}
._16{width:30.845440pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:3.520000pt;}
.yad{bottom:3.680000pt;}
.y5f{bottom:6.080000pt;}
.yb7{bottom:6.120000pt;}
.y90{bottom:9.600000pt;}
.y88{bottom:10.080000pt;}
.y61{bottom:15.360000pt;}
.y93{bottom:17.920000pt;}
.y62{bottom:24.800000pt;}
.y86{bottom:28.800000pt;}
.ye9{bottom:36.320000pt;}
.y6e{bottom:40.160000pt;}
.yeb{bottom:43.520000pt;}
.y87{bottom:47.520000pt;}
.y6{bottom:54.752000pt;}
.yea{bottom:62.234667pt;}
.ye8{bottom:84.192000pt;}
.y5b{bottom:84.352000pt;}
.y82{bottom:84.992000pt;}
.yb3{bottom:88.832000pt;}
.yd9{bottom:93.632000pt;}
.ye7{bottom:95.392000pt;}
.y30{bottom:102.752000pt;}
.y5a{bottom:103.072000pt;}
.y81{bottom:103.712000pt;}
.yb2{bottom:105.152000pt;}
.yd8{bottom:112.352000pt;}
.ye6{bottom:114.112000pt;}
.y2f{bottom:121.472000pt;}
.y59{bottom:121.792000pt;}
.y80{bottom:122.432000pt;}
.yb0{bottom:125.472000pt;}
.yd7{bottom:131.072000pt;}
.ye5{bottom:132.832000pt;}
.y2e{bottom:140.186667pt;}
.y58{bottom:140.506667pt;}
.y7f{bottom:141.146667pt;}
.yaf{bottom:145.626667pt;}
.yd6{bottom:149.786667pt;}
.ye4{bottom:151.546667pt;}
.y57{bottom:155.386667pt;}
.y2d{bottom:158.906667pt;}
.y7e{bottom:159.866667pt;}
.yae{bottom:165.946667pt;}
.yd5{bottom:168.346667pt;}
.ye3{bottom:170.266667pt;}
.y2c{bottom:177.626667pt;}
.y7d{bottom:178.586667pt;}
.yac{bottom:186.906667pt;}
.yd4{bottom:187.066667pt;}
.ye2{bottom:188.986667pt;}
.y2b{bottom:196.346667pt;}
.y7c{bottom:197.306667pt;}
.yd3{bottom:205.786667pt;}
.ye1{bottom:207.706667pt;}
.y79{bottom:213.626667pt;}
.y2a{bottom:215.066667pt;}
.yd2{bottom:224.506667pt;}
.ye0{bottom:226.426667pt;}
.yab{bottom:232.346667pt;}
.y29{bottom:233.786667pt;}
.y7b{bottom:236.346667pt;}
.yd1{bottom:243.226667pt;}
.ydf{bottom:245.146667pt;}
.yaa{bottom:251.066667pt;}
.y28{bottom:252.506667pt;}
.y7a{bottom:259.066667pt;}
.yd0{bottom:261.946667pt;}
.yde{bottom:263.866667pt;}
.ya9{bottom:269.786667pt;}
.y27{bottom:271.226667pt;}
.ycf{bottom:280.666667pt;}
.y78{bottom:281.786667pt;}
.ydd{bottom:282.586667pt;}
.ya8{bottom:288.506667pt;}
.y26{bottom:289.946667pt;}
.yce{bottom:299.426667pt;}
.ydc{bottom:301.346667pt;}
.y77{bottom:305.826667pt;}
.ya7{bottom:307.266667pt;}
.y25{bottom:308.706667pt;}
.ycd{bottom:318.146667pt;}
.ydb{bottom:320.066667pt;}
.ya6{bottom:325.986667pt;}
.y24{bottom:327.426667pt;}
.y76{bottom:334.306667pt;}
.ycc{bottom:336.866667pt;}
.yda{bottom:338.786667pt;}
.ya5{bottom:344.706667pt;}
.y23{bottom:345.986667pt;}
.y75{bottom:353.026667pt;}
.ycb{bottom:355.586667pt;}
.y56{bottom:357.506667pt;}
.ya4{bottom:363.426667pt;}
.y22{bottom:364.706667pt;}
.y74{bottom:371.746667pt;}
.yca{bottom:374.306667pt;}
.y55{bottom:376.226667pt;}
.ya3{bottom:382.146667pt;}
.y21{bottom:383.426667pt;}
.y73{bottom:390.466667pt;}
.yc9{bottom:393.026667pt;}
.y54{bottom:394.946667pt;}
.ya2{bottom:400.866667pt;}
.y20{bottom:402.146667pt;}
.y72{bottom:409.186667pt;}
.yc8{bottom:411.746667pt;}
.y53{bottom:413.666667pt;}
.ya1{bottom:417.186667pt;}
.y1f{bottom:422.786667pt;}
.y71{bottom:427.906667pt;}
.yc7{bottom:430.466667pt;}
.y52{bottom:432.386667pt;}
.ya0{bottom:439.906667pt;}
.y6d{bottom:444.226667pt;}
.yc6{bottom:449.186667pt;}
.y1e{bottom:449.666667pt;}
.y51{bottom:451.106667pt;}
.y9f{bottom:462.626667pt;}
.y70{bottom:466.946667pt;}
.yc5{bottom:467.906667pt;}
.y1d{bottom:468.386667pt;}
.y50{bottom:469.826667pt;}
.y9e{bottom:485.346667pt;}
.yc4{bottom:486.626667pt;}
.y1c{bottom:487.106667pt;}
.y4f{bottom:488.546667pt;}
.y6f{bottom:489.666667pt;}
.yc3{bottom:505.346667pt;}
.y1b{bottom:505.826667pt;}
.y4e{bottom:507.266667pt;}
.y9d{bottom:508.706667pt;}
.y6c{bottom:512.386667pt;}
.yc2{bottom:524.066667pt;}
.y1a{bottom:524.546667pt;}
.y4d{bottom:525.986667pt;}
.y6b{bottom:535.773333pt;}
.y9c{bottom:537.213333pt;}
.yc1{bottom:542.813333pt;}
.y19{bottom:543.293333pt;}
.y4c{bottom:544.733333pt;}
.y9b{bottom:555.933333pt;}
.yc0{bottom:561.533333pt;}
.y18{bottom:562.013333pt;}
.y4b{bottom:563.453333pt;}
.y6a{bottom:564.253333pt;}
.y9a{bottom:574.653333pt;}
.ybf{bottom:580.253333pt;}
.y17{bottom:580.733333pt;}
.y4a{bottom:582.173333pt;}
.y69{bottom:582.973333pt;}
.y99{bottom:593.373333pt;}
.ybe{bottom:598.973333pt;}
.y16{bottom:599.453333pt;}
.y49{bottom:600.893333pt;}
.y68{bottom:601.693333pt;}
.y98{bottom:612.093333pt;}
.y67{bottom:617.693333pt;}
.y15{bottom:618.173333pt;}
.y48{bottom:619.613333pt;}
.y97{bottom:630.813333pt;}
.y66{bottom:635.773333pt;}
.ybd{bottom:636.413333pt;}
.y14{bottom:636.893333pt;}
.y47{bottom:638.333333pt;}
.y96{bottom:649.533333pt;}
.y65{bottom:652.093333pt;}
.ybc{bottom:655.133333pt;}
.y13{bottom:655.613333pt;}
.y46{bottom:657.053333pt;}
.y95{bottom:668.253333pt;}
.ybb{bottom:671.453333pt;}
.y12{bottom:674.333333pt;}
.y45{bottom:675.773333pt;}
.y94{bottom:686.973333pt;}
.y11{bottom:693.053333pt;}
.y64{bottom:693.533333pt;}
.yba{bottom:694.173333pt;}
.y44{bottom:694.493333pt;}
.y92{bottom:703.133333pt;}
.y10{bottom:711.773333pt;}
.y43{bottom:713.213333pt;}
.yb9{bottom:716.893333pt;}
.y91{bottom:726.653333pt;}
.yf{bottom:730.493333pt;}
.y42{bottom:731.933333pt;}
.y63{bottom:734.973333pt;}
.yb8{bottom:739.613333pt;}
.ye{bottom:749.053333pt;}
.y41{bottom:750.653333pt;}
.yb6{bottom:762.973333pt;}
.y40{bottom:769.413333pt;}
.yd{bottom:769.893333pt;}
.y60{bottom:776.453333pt;}
.y8f{bottom:786.213333pt;}
.y3f{bottom:788.133333pt;}
.yb5{bottom:791.493333pt;}
.yc{bottom:793.253333pt;}
.y8e{bottom:804.933333pt;}
.y3e{bottom:806.853333pt;}
.yb4{bottom:807.493333pt;}
.yb{bottom:811.973333pt;}
.y5e{bottom:819.173333pt;}
.y8d{bottom:823.653333pt;}
.y3d{bottom:825.573333pt;}
.ya{bottom:826.853333pt;}
.y8c{bottom:842.373333pt;}
.y3c{bottom:844.293333pt;}
.y9{bottom:846.693333pt;}
.y5d{bottom:847.653333pt;}
.y8b{bottom:861.093333pt;}
.y3b{bottom:863.013333pt;}
.y5c{bottom:863.653333pt;}
.y8{bottom:868.933333pt;}
.y8a{bottom:879.813333pt;}
.y3a{bottom:881.733333pt;}
.y85{bottom:895.973333pt;}
.y7{bottom:898.853333pt;}
.y39{bottom:900.453333pt;}
.y89{bottom:918.693333pt;}
.y38{bottom:919.173333pt;}
.y5{bottom:934.693333pt;}
.y37{bottom:937.893333pt;}
.y84{bottom:941.413333pt;}
.y36{bottom:956.613333pt;}
.y4{bottom:963.333333pt;}
.y83{bottom:965.573333pt;}
.y35{bottom:975.333333pt;}
.y3{bottom:991.813333pt;}
.y34{bottom:994.053333pt;}
.y33{bottom:1012.800000pt;}
.y2{bottom:1020.480000pt;}
.y32{bottom:1040.160000pt;}
.y1{bottom:1051.200000pt;}
.y31{bottom:1060.800000pt;}
.h19{height:2.546250pt;}
.h17{height:16.160000pt;}
.h16{height:16.320000pt;}
.hd{height:18.720000pt;}
.h10{height:18.752000pt;}
.h13{height:25.792000pt;}
.h7{height:34.374375pt;}
.he{height:37.440000pt;}
.hf{height:37.472000pt;}
.h14{height:40.151250pt;}
.h8{height:40.566250pt;}
.h15{height:42.240000pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.hb{height:53.535000pt;}
.h5{height:54.390938pt;}
.hc{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h12{height:64.160000pt;}
.h18{height:74.880000pt;}
.h11{height:86.912000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.080000pt;}
.w14{width:52.000000pt;}
.w8{width:54.720000pt;}
.w10{width:56.640000pt;}
.w9{width:64.160000pt;}
.w17{width:64.832000pt;}
.w3{width:67.232000pt;}
.w13{width:76.032000pt;}
.w18{width:83.840000pt;}
.w1e{width:87.392000pt;}
.w1b{width:92.480000pt;}
.w1a{width:93.632000pt;}
.w1f{width:100.160000pt;}
.w11{width:100.800000pt;}
.wc{width:100.960000pt;}
.w25{width:100.992000pt;}
.wa{width:101.952000pt;}
.wd{width:102.112000pt;}
.w24{width:111.360000pt;}
.w22{width:111.392000pt;}
.w23{width:111.552000pt;}
.w21{width:119.840000pt;}
.w16{width:121.120000pt;}
.w19{width:131.552000pt;}
.w12{width:132.672000pt;}
.wb{width:139.706667pt;}
.we{width:139.866667pt;}
.w15{width:145.466667pt;}
.w20{width:150.266667pt;}
.w1d{width:151.386667pt;}
.w26{width:162.426667pt;}
.w1c{width:163.066667pt;}
.wf{width:179.586667pt;}
.w7{width:185.346667pt;}
.w5{width:229.626667pt;}
.w4{width:372.546667pt;}
.w27{width:521.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.120000pt;}
.x14{left:3.200000pt;}
.x15{left:5.274667pt;}
.x19{left:7.040000pt;}
.xb{left:8.634667pt;}
.x12{left:9.920000pt;}
.xa{left:12.320000pt;}
.xd{left:13.920000pt;}
.x3e{left:14.880000pt;}
.x20{left:16.800000pt;}
.x2e{left:18.080000pt;}
.xf{left:19.200000pt;}
.x4f{left:20.954667pt;}
.x1b{left:22.240000pt;}
.x4d{left:23.354667pt;}
.x4a{left:25.280000pt;}
.x24{left:26.432000pt;}
.x33{left:27.840000pt;}
.x23{left:28.800000pt;}
.x1f{left:30.592000pt;}
.x4e{left:31.880000pt;}
.x3a{left:35.040000pt;}
.x3b{left:36.634667pt;}
.x21{left:37.626667pt;}
.x39{left:39.194667pt;}
.x41{left:40.320000pt;}
.x2c{left:41.472000pt;}
.x2b{left:42.912000pt;}
.x43{left:44.992000pt;}
.x2a{left:45.952000pt;}
.x45{left:46.912000pt;}
.x1{left:47.999988pt;}
.xe{left:49.920000pt;}
.x11{left:51.040000pt;}
.x50{left:52.479988pt;}
.x22{left:54.560000pt;}
.x46{left:57.599988pt;}
.x31{left:59.200000pt;}
.x44{left:60.360000pt;}
.x5{left:61.759988pt;}
.x3c{left:63.200000pt;}
.x10{left:64.634667pt;}
.x2{left:67.199988pt;}
.x51{left:71.999988pt;}
.x17{left:82.400000pt;}
.x13{left:90.234667pt;}
.x52{left:96.031988pt;}
.x32{left:98.272000pt;}
.x47{left:115.392000pt;}
.xc{left:129.154667pt;}
.x7{left:131.552000pt;}
.x8{left:135.234667pt;}
.x16{left:139.394667pt;}
.x53{left:150.106667pt;}
.x4{left:186.746655pt;}
.x54{left:210.426667pt;}
.x2d{left:216.986667pt;}
.x34{left:221.306667pt;}
.x3d{left:228.186667pt;}
.x48{left:237.306667pt;}
.x25{left:263.906667pt;}
.x18{left:269.826667pt;}
.x35{left:288.226667pt;}
.x2f{left:295.106667pt;}
.x26{left:322.466667pt;}
.x1a{left:326.466667pt;}
.x30{left:349.026667pt;}
.x49{left:350.626667pt;}
.x36{left:374.146667pt;}
.x3f{left:381.506667pt;}
.x27{left:388.706667pt;}
.x1c{left:392.546667pt;}
.x4b{left:464.093333pt;}
.x40{left:470.973333pt;}
.x28{left:492.733333pt;}
.x1d{left:496.573333pt;}
.x9{left:506.013333pt;}
.x37{left:507.613333pt;}
.x42{left:573.213333pt;}
.x4c{left:577.533333pt;}
.x38{left:603.173333pt;}
.x29{left:634.533333pt;}
.x1e{left:638.373333pt;}
.x3{left:661.573322pt;}
}




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