
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_5cdc38b6e6cbc3683ec49f17.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_f11eabc085f479f023bc0a1e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_f98cd82396296a1af8053eed.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3d5d58d628f54e33aa294132.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_aab8baa5bebcacff1d02289e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_4adf396038f0a42fde38f1a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8b4e4bc146e21023d759c767.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsb{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.089400px;}
.ls6{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.620000px;}
.ls9{letter-spacing:46.026720px;}
.lsf{letter-spacing:95.706720px;}
.lsc{letter-spacing:201.036000px;}
.ls0{letter-spacing:2010.689760px;}
.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:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.716000px;}
.ws6{word-spacing:-13.392000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.711360px;}
.wsa{word-spacing:-8.994000px;}
.ws5{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-2.151120px;}
._0{margin-left:-1.093680px;}
._1{width:1.357680px;}
._d{width:2.415840px;}
._a{width:3.440640px;}
._7{width:4.927680px;}
._5{width:5.940000px;}
._6{width:7.236000px;}
._c{width:8.964000px;}
._12{width:10.003680px;}
._8{width:11.406240px;}
._4{width:12.407040px;}
._e{width:13.884240px;}
._3{width:15.188400px;}
._2{width:16.470000px;}
._10{width:17.667360px;}
._11{width:21.915120px;}
._9{width:25.218000px;}
._b{width:30.456000px;}
._16{width:37.529280px;}
._14{width:49.984080px;}
._15{width:179.712000px;}
._13{width:201.204000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:0.360000px;}
.y51{bottom:2.340000px;}
.y99{bottom:2.880000px;}
.yb0{bottom:3.060000px;}
.ycf{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y5e{bottom:5.010000px;}
.y44{bottom:5.040000px;}
.y136{bottom:5.400000px;}
.y134{bottom:5.580000px;}
.y132{bottom:5.625000px;}
.y110{bottom:6.480000px;}
.y112{bottom:6.660000px;}
.y2{bottom:9.930000px;}
.y50{bottom:10.260000px;}
.ye4{bottom:10.614000px;}
.y9a{bottom:10.620000px;}
.yad{bottom:10.800000px;}
.y98{bottom:18.360000px;}
.ye3{bottom:18.534000px;}
.yac{bottom:18.540000px;}
.yce{bottom:20.340000px;}
.y11e{bottom:20.520000px;}
.y43{bottom:22.365000px;}
.y4{bottom:22.710000px;}
.y5c{bottom:31.140000px;}
.ycd{bottom:37.620000px;}
.y42{bottom:39.645000px;}
.y4f{bottom:40.140000px;}
.y3{bottom:47.910000px;}
.y5b{bottom:48.420000px;}
.y4e{bottom:51.300000px;}
.y41{bottom:56.745000px;}
.y7{bottom:57.060000px;}
.y4d{bottom:62.454000px;}
.y5a{bottom:67.674000px;}
.y40{bottom:74.025000px;}
.y4c{bottom:74.154000px;}
.y59{bottom:83.514000px;}
.y4b{bottom:87.114000px;}
.y3f{bottom:91.305000px;}
.ye7{bottom:93.996000px;}
.y46{bottom:96.156000px;}
.y58{bottom:98.274000px;}
.y4a{bottom:100.254000px;}
.yb7{bottom:102.996000px;}
.y10c{bottom:103.356000px;}
.y57{bottom:106.014000px;}
.y3e{bottom:108.585000px;}
.ye6{bottom:110.196000px;}
.yb6{bottom:120.096000px;}
.y10b{bottom:120.636000px;}
.y56{bottom:121.674000px;}
.y49{bottom:122.214000px;}
.y13f{bottom:122.616000px;}
.y96{bottom:123.696000px;}
.y3d{bottom:125.865000px;}
.ye5{bottom:126.576000px;}
.yb5{bottom:134.856000px;}
.y55{bottom:137.154000px;}
.y10a{bottom:137.916000px;}
.y13e{bottom:139.896000px;}
.y95{bottom:140.976000px;}
.ye2{bottom:142.776000px;}
.y3c{bottom:143.145000px;}
.yb4{bottom:151.230000px;}
.y54{bottom:152.634000px;}
.y109{bottom:155.190000px;}
.y13d{bottom:157.170000px;}
.y94{bottom:158.250000px;}
.y3b{bottom:160.245000px;}
.yb3{bottom:167.430000px;}
.y53{bottom:168.114000px;}
.y108{bottom:172.290000px;}
.y13c{bottom:174.450000px;}
.y93{bottom:175.530000px;}
.y3a{bottom:177.525000px;}
.ye1{bottom:177.870000px;}
.y52{bottom:183.594000px;}
.yb2{bottom:183.810000px;}
.y48{bottom:184.134000px;}
.y107{bottom:189.570000px;}
.y13b{bottom:191.730000px;}
.y92{bottom:192.810000px;}
.y47{bottom:194.754000px;}
.y39{bottom:194.805000px;}
.ye0{bottom:195.150000px;}
.yb1{bottom:200.010000px;}
.y106{bottom:206.850000px;}
.y13a{bottom:209.010000px;}
.y91{bottom:209.910000px;}
.y38{bottom:212.085000px;}
.ydf{bottom:212.250000px;}
.yaf{bottom:216.210000px;}
.y105{bottom:224.130000px;}
.y139{bottom:226.110000px;}
.y90{bottom:227.190000px;}
.y37{bottom:229.365000px;}
.yde{bottom:229.530000px;}
.yae{bottom:232.590000px;}
.y104{bottom:238.890000px;}
.y138{bottom:240.870000px;}
.y8f{bottom:244.470000px;}
.y36{bottom:246.465000px;}
.ydd{bottom:246.810000px;}
.yab{bottom:248.790000px;}
.y8e{bottom:261.750000px;}
.y137{bottom:262.470000px;}
.y35{bottom:263.745000px;}
.ydc{bottom:264.090000px;}
.y103{bottom:270.570000px;}
.y8d{bottom:279.030000px;}
.y34{bottom:281.055000px;}
.ydb{bottom:281.370000px;}
.yaa{bottom:283.890000px;}
.y135{bottom:284.070000px;}
.y8c{bottom:296.310000px;}
.y33{bottom:298.335000px;}
.yda{bottom:298.650000px;}
.ya9{bottom:301.170000px;}
.y102{bottom:302.430000px;}
.y133{bottom:305.490000px;}
.y8b{bottom:313.410000px;}
.y32{bottom:315.615000px;}
.yd9{bottom:315.750000px;}
.ya8{bottom:318.450000px;}
.ye{bottom:320.970000px;}
.y131{bottom:327.090000px;}
.y8a{bottom:330.735000px;}
.y31{bottom:332.895000px;}
.yd8{bottom:333.075000px;}
.y101{bottom:334.335000px;}
.ya7{bottom:335.595000px;}
.y1c{bottom:337.035000px;}
.y89{bottom:348.015000px;}
.y130{bottom:348.555000px;}
.y30{bottom:349.995000px;}
.yd7{bottom:350.355000px;}
.ya6{bottom:352.875000px;}
.y1b{bottom:361.335000px;}
.y88{bottom:365.295000px;}
.y100{bottom:366.015000px;}
.y2f{bottom:367.275000px;}
.yd6{bottom:367.635000px;}
.ya5{bottom:370.155000px;}
.y87{bottom:382.575000px;}
.y12f{bottom:383.655000px;}
.y2e{bottom:384.195000px;}
.yd5{bottom:384.915000px;}
.y1a{bottom:385.455000px;}
.ya4{bottom:387.435000px;}
.yff{bottom:397.875000px;}
.yd4{bottom:399.675000px;}
.y2d{bottom:399.855000px;}
.y12e{bottom:400.935000px;}
.ya3{bottom:404.715000px;}
.y19{bottom:409.575000px;}
.y2c{bottom:415.335000px;}
.y86{bottom:416.955000px;}
.yd3{bottom:417.675000px;}
.y12d{bottom:418.215000px;}
.ya2{bottom:421.815000px;}
.yfe{bottom:429.735000px;}
.y2b{bottom:430.815000px;}
.y18{bottom:433.695000px;}
.y85{bottom:434.235000px;}
.y12c{bottom:435.315000px;}
.yd2{bottom:435.675000px;}
.ya1{bottom:439.095000px;}
.y2a{bottom:446.295000px;}
.y84{bottom:451.515000px;}
.y12b{bottom:452.595000px;}
.yd1{bottom:453.675000px;}
.ya0{bottom:456.375000px;}
.y17{bottom:457.815000px;}
.yfd{bottom:461.415000px;}
.y29{bottom:461.955000px;}
.y83{bottom:468.795000px;}
.y12a{bottom:469.875000px;}
.yd0{bottom:471.675000px;}
.y9f{bottom:473.655000px;}
.y28{bottom:477.435000px;}
.y16{bottom:481.935000px;}
.y82{bottom:486.075000px;}
.y129{bottom:487.155000px;}
.ycc{bottom:489.675000px;}
.y9e{bottom:490.935000px;}
.y27{bottom:492.915000px;}
.yfc{bottom:493.275000px;}
.y81{bottom:503.355000px;}
.y128{bottom:504.435000px;}
.y9d{bottom:505.695000px;}
.y15{bottom:506.235000px;}
.y26{bottom:508.395000px;}
.y80{bottom:520.455000px;}
.y127{bottom:521.715000px;}
.y9c{bottom:521.895000px;}
.y25{bottom:523.875000px;}
.yfb{bottom:525.135000px;}
.y14{bottom:530.355000px;}
.y7f{bottom:537.735000px;}
.y9b{bottom:538.275000px;}
.y126{bottom:538.815000px;}
.y24{bottom:539.535000px;}
.ycb{bottom:545.295000px;}
.y97{bottom:554.475000px;}
.y13{bottom:554.520000px;}
.y7e{bottom:555.015000px;}
.y23{bottom:555.060000px;}
.y125{bottom:556.095000px;}
.yfa{bottom:560.055000px;}
.yca{bottom:562.575000px;}
.y22{bottom:570.540000px;}
.y7d{bottom:572.295000px;}
.y124{bottom:573.375000px;}
.yf9{bottom:577.335000px;}
.y12{bottom:578.640000px;}
.yc9{bottom:579.855000px;}
.y21{bottom:586.020000px;}
.y7c{bottom:589.575000px;}
.y123{bottom:590.655000px;}
.yf8{bottom:594.615000px;}
.yc8{bottom:597.165000px;}
.y20{bottom:601.680000px;}
.y11{bottom:602.760000px;}
.y122{bottom:605.445000px;}
.y7b{bottom:606.705000px;}
.yf7{bottom:611.925000px;}
.yc7{bottom:614.445000px;}
.y1f{bottom:617.160000px;}
.y7a{bottom:623.985000px;}
.y10{bottom:626.880000px;}
.y121{bottom:627.045000px;}
.yf6{bottom:629.205000px;}
.yc6{bottom:631.545000px;}
.y1e{bottom:632.640000px;}
.y79{bottom:641.265000px;}
.yf5{bottom:646.305000px;}
.y1d{bottom:648.120000px;}
.y120{bottom:648.645000px;}
.yc5{bottom:648.825000px;}
.yf{bottom:651.000000px;}
.y78{bottom:658.545000px;}
.yf4{bottom:663.585000px;}
.yc4{bottom:666.105000px;}
.y11f{bottom:670.245000px;}
.y77{bottom:675.825000px;}
.yf3{bottom:680.865000px;}
.yc3{bottom:683.385000px;}
.y11d{bottom:691.845000px;}
.y76{bottom:693.105000px;}
.yf2{bottom:698.145000px;}
.yc2{bottom:700.665000px;}
.y75{bottom:710.205000px;}
.yf1{bottom:715.425000px;}
.yc1{bottom:717.765000px;}
.y74{bottom:727.485000px;}
.y11c{bottom:730.365000px;}
.yf0{bottom:732.705000px;}
.yc0{bottom:735.045000px;}
.y73{bottom:744.765000px;}
.y11b{bottom:747.465000px;}
.yef{bottom:749.805000px;}
.ybf{bottom:752.325000px;}
.y72{bottom:762.045000px;}
.y11a{bottom:764.745000px;}
.yee{bottom:767.085000px;}
.ybe{bottom:769.605000px;}
.y71{bottom:779.325000px;}
.y119{bottom:782.025000px;}
.ybd{bottom:784.365000px;}
.y70{bottom:796.605000px;}
.yed{bottom:799.125000px;}
.y118{bottom:799.305000px;}
.ybc{bottom:799.845000px;}
.y6f{bottom:813.705000px;}
.yec{bottom:815.325000px;}
.ybb{bottom:816.225000px;}
.y117{bottom:816.585000px;}
.y6e{bottom:830.985000px;}
.yeb{bottom:831.705000px;}
.yba{bottom:832.425000px;}
.y116{bottom:833.865000px;}
.yea{bottom:847.905000px;}
.y6d{bottom:848.265000px;}
.yb9{bottom:848.625000px;}
.y115{bottom:850.965000px;}
.ye9{bottom:864.330000px;}
.yb8{bottom:865.050000px;}
.y6c{bottom:865.590000px;}
.y114{bottom:868.290000px;}
.ye8{bottom:880.530000px;}
.y6b{bottom:882.870000px;}
.y113{bottom:883.050000px;}
.y6a{bottom:899.970000px;}
.y111{bottom:906.630000px;}
.y69{bottom:917.250000px;}
.y10f{bottom:930.390000px;}
.y68{bottom:934.530000px;}
.y67{bottom:951.810000px;}
.y10e{bottom:953.970000px;}
.y66{bottom:969.090000px;}
.yd{bottom:984.390000px;}
.y10d{bottom:985.830000px;}
.y65{bottom:986.370000px;}
.yc{bottom:990.690000px;}
.y64{bottom:1003.470000px;}
.yb{bottom:1007.970000px;}
.y63{bottom:1020.750000px;}
.ya{bottom:1025.070000px;}
.y62{bottom:1038.030000px;}
.y9{bottom:1043.610000px;}
.y61{bottom:1055.310000px;}
.y8{bottom:1072.230000px;}
.y60{bottom:1072.590000px;}
.y5d{bottom:1075.500000px;}
.y5f{bottom:1089.870000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.h11{height:4.021875px;}
.ha{height:4.165313px;}
.h16{height:10.088437px;}
.h1c{height:15.480000px;}
.h1f{height:15.660000px;}
.h20{height:15.696000px;}
.h22{height:17.100000px;}
.h29{height:20.700000px;}
.h28{height:20.736000px;}
.h27{height:20.880000px;}
.h14{height:21.114844px;}
.h24{height:22.860000px;}
.h25{height:23.040000px;}
.h13{height:25.136719px;}
.h18{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h1b{height:30.960000px;}
.h1e{height:31.140000px;}
.h23{height:31.176000px;}
.h26{height:34.380000px;}
.h1d{height:37.705078px;}
.h15{height:38.100586px;}
.he{height:38.997070px;}
.h7{height:40.132617px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h1a{height:43.506914px;}
.hf{height:44.507812px;}
.h5{height:46.251562px;}
.h10{height:48.027656px;}
.h17{height:49.255313px;}
.h21{height:51.660000px;}
.h8{height:59.436914px;}
.h19{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:224.100000px;}
.hb{height:660.705000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w25{width:54.540000px;}
.w22{width:63.936000px;}
.w28{width:66.960000px;}
.w27{width:66.996000px;}
.w10{width:67.140000px;}
.w16{width:67.176000px;}
.w2b{width:68.580000px;}
.w2e{width:73.116000px;}
.wa{width:73.440000px;}
.w12{width:73.800000px;}
.w29{width:73.836000px;}
.w11{width:73.980000px;}
.w13{width:74.016000px;}
.w19{width:78.516000px;}
.w31{width:79.776000px;}
.w15{width:80.640000px;}
.w1f{width:80.676000px;}
.w23{width:82.440000px;}
.w21{width:82.620000px;}
.w36{width:82.980000px;}
.w1b{width:84.276000px;}
.wc{width:86.940000px;}
.w1d{width:86.976000px;}
.wf{width:87.300000px;}
.w38{width:87.336000px;}
.w17{width:87.516000px;}
.w33{width:87.840000px;}
.w2c{width:88.236000px;}
.w24{width:89.496000px;}
.w30{width:90.540000px;}
.w32{width:91.440000px;}
.w1a{width:92.700000px;}
.wd{width:93.636000px;}
.w37{width:93.960000px;}
.w1e{width:94.680000px;}
.w9{width:94.716000px;}
.w2a{width:95.940000px;}
.w2d{width:97.920000px;}
.wb{width:100.476000px;}
.w34{width:103.536000px;}
.w2{width:104.076000px;}
.w1c{width:109.296000px;}
.we{width:118.656000px;}
.w8{width:124.740000px;}
.w18{width:127.116000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w2f{width:174.090000px;}
.w14{width:174.810000px;}
.w20{width:178.590000px;}
.w35{width:179.850000px;}
.w26{width:188.670000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:7.056000px;}
.x17{left:8.136000px;}
.x4a{left:9.540000px;}
.x2d{left:10.980000px;}
.x4{left:12.780000px;}
.x33{left:13.860000px;}
.x5a{left:14.940000px;}
.x16{left:16.056000px;}
.x62{left:17.100000px;}
.x1a{left:18.216000px;}
.x14{left:19.656000px;}
.x35{left:20.700000px;}
.x2b{left:21.990000px;}
.x23{left:23.220000px;}
.x2e{left:24.660000px;}
.x15{left:26.136000px;}
.x44{left:27.900000px;}
.x1c{left:29.196000px;}
.x37{left:30.240000px;}
.x2a{left:31.365000px;}
.x53{left:32.760000px;}
.x6{left:33.840000px;}
.x28{left:35.310000px;}
.x41{left:37.080000px;}
.x25{left:38.745000px;}
.x36{left:40.140000px;}
.x49{left:41.400000px;}
.x38{left:43.740000px;}
.x4b{left:46.440000px;}
.x1b{left:47.736000px;}
.x48{left:49.680000px;}
.xf{left:50.796000px;}
.x3f{left:53.280000px;}
.xe{left:54.936000px;}
.x1e{left:57.096000px;}
.x59{left:58.500000px;}
.x58{left:60.660000px;}
.x5e{left:62.280000px;}
.x1d{left:66.270000px;}
.x57{left:70.200000px;}
.x40{left:72.000000px;}
.x5b{left:73.800000px;}
.x1{left:78.300000px;}
.x13{left:79.590000px;}
.x11{left:82.470000px;}
.x12{left:83.730000px;}
.x7{left:86.399987px;}
.x2{left:95.790000px;}
.x1f{left:102.810000px;}
.x19{left:106.770000px;}
.x21{left:113.435987px;}
.x10{left:124.590000px;}
.x73{left:126.935987px;}
.x67{left:131.976000px;}
.x5{left:141.345000px;}
.x5c{left:145.836000px;}
.x6d{left:149.616000px;}
.x51{left:155.730000px;}
.x22{left:157.530000px;}
.x39{left:166.710000px;}
.x42{left:173.730000px;}
.x63{left:179.130000px;}
.x3{left:182.370000px;}
.x2c{left:198.210000px;}
.x5d{left:200.730000px;}
.x18{left:219.090000px;}
.x64{left:275.430000px;}
.x24{left:282.990000px;}
.x4c{left:292.395000px;}
.xc{left:300.314987px;}
.x68{left:306.435000px;}
.x2f{left:317.235000px;}
.x6e{left:329.835000px;}
.x52{left:334.695000px;}
.x3a{left:341.895000px;}
.x26{left:378.435000px;}
.x4d{left:380.055000px;}
.x65{left:385.095000px;}
.x43{left:388.875000px;}
.x69{left:397.515000px;}
.x30{left:404.895000px;}
.x6f{left:413.175000px;}
.x54{left:417.675000px;}
.x3b{left:422.895000px;}
.x4e{left:447.555000px;}
.x27{left:452.775000px;}
.x66{left:454.035000px;}
.x45{left:463.215000px;}
.x31{left:472.425000px;}
.x6a{left:477.645000px;}
.x55{left:482.145000px;}
.x70{left:487.545000px;}
.x3c{left:490.425000px;}
.x5f{left:531.645000px;}
.x4f{left:534.885000px;}
.x46{left:542.085000px;}
.x32{left:546.765000px;}
.xb{left:553.784987px;}
.x3d{left:564.765000px;}
.x6b{left:569.445000px;}
.x71{left:582.045000px;}
.x60{left:599.145000px;}
.x34{left:620.925000px;}
.x50{left:629.925000px;}
.xa{left:631.544987px;}
.x47{left:635.145000px;}
.x3e{left:638.925000px;}
.x29{left:641.805000px;}
.x56{left:647.745000px;}
.x6c{left:657.645000px;}
.x72{left:669.750000px;}
.x61{left:673.350000px;}
.x9{left:766.049987px;}
.x8{left:791.789987px;}
.xd{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls6{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls9{letter-spacing:40.912640pt;}
.lsf{letter-spacing:85.072640pt;}
.lsc{letter-spacing:178.698667pt;}
.ls0{letter-spacing:1787.279787pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.192000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.632320pt;}
.wsa{word-spacing:-7.994667pt;}
.ws5{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-1.912107pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.206827pt;}
._d{width:2.147413pt;}
._a{width:3.058347pt;}
._7{width:4.380160pt;}
._5{width:5.280000pt;}
._6{width:6.432000pt;}
._c{width:7.968000pt;}
._12{width:8.892160pt;}
._8{width:10.138880pt;}
._4{width:11.028480pt;}
._e{width:12.341547pt;}
._3{width:13.500800pt;}
._2{width:14.640000pt;}
._10{width:15.704320pt;}
._11{width:19.480107pt;}
._9{width:22.416000pt;}
._b{width:27.072000pt;}
._16{width:33.359360pt;}
._14{width:44.430293pt;}
._15{width:159.744000pt;}
._13{width:178.848000pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:0.320000pt;}
.y51{bottom:2.080000pt;}
.y99{bottom:2.560000pt;}
.yb0{bottom:2.720000pt;}
.ycf{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y5e{bottom:4.453333pt;}
.y44{bottom:4.480000pt;}
.y136{bottom:4.800000pt;}
.y134{bottom:4.960000pt;}
.y132{bottom:5.000000pt;}
.y110{bottom:5.760000pt;}
.y112{bottom:5.920000pt;}
.y2{bottom:8.826667pt;}
.y50{bottom:9.120000pt;}
.ye4{bottom:9.434667pt;}
.y9a{bottom:9.440000pt;}
.yad{bottom:9.600000pt;}
.y98{bottom:16.320000pt;}
.ye3{bottom:16.474667pt;}
.yac{bottom:16.480000pt;}
.yce{bottom:18.080000pt;}
.y11e{bottom:18.240000pt;}
.y43{bottom:19.880000pt;}
.y4{bottom:20.186667pt;}
.y5c{bottom:27.680000pt;}
.ycd{bottom:33.440000pt;}
.y42{bottom:35.240000pt;}
.y4f{bottom:35.680000pt;}
.y3{bottom:42.586667pt;}
.y5b{bottom:43.040000pt;}
.y4e{bottom:45.600000pt;}
.y41{bottom:50.440000pt;}
.y7{bottom:50.720000pt;}
.y4d{bottom:55.514667pt;}
.y5a{bottom:60.154667pt;}
.y40{bottom:65.800000pt;}
.y4c{bottom:65.914667pt;}
.y59{bottom:74.234667pt;}
.y4b{bottom:77.434667pt;}
.y3f{bottom:81.160000pt;}
.ye7{bottom:83.552000pt;}
.y46{bottom:85.472000pt;}
.y58{bottom:87.354667pt;}
.y4a{bottom:89.114667pt;}
.yb7{bottom:91.552000pt;}
.y10c{bottom:91.872000pt;}
.y57{bottom:94.234667pt;}
.y3e{bottom:96.520000pt;}
.ye6{bottom:97.952000pt;}
.yb6{bottom:106.752000pt;}
.y10b{bottom:107.232000pt;}
.y56{bottom:108.154667pt;}
.y49{bottom:108.634667pt;}
.y13f{bottom:108.992000pt;}
.y96{bottom:109.952000pt;}
.y3d{bottom:111.880000pt;}
.ye5{bottom:112.512000pt;}
.yb5{bottom:119.872000pt;}
.y55{bottom:121.914667pt;}
.y10a{bottom:122.592000pt;}
.y13e{bottom:124.352000pt;}
.y95{bottom:125.312000pt;}
.ye2{bottom:126.912000pt;}
.y3c{bottom:127.240000pt;}
.yb4{bottom:134.426667pt;}
.y54{bottom:135.674667pt;}
.y109{bottom:137.946667pt;}
.y13d{bottom:139.706667pt;}
.y94{bottom:140.666667pt;}
.y3b{bottom:142.440000pt;}
.yb3{bottom:148.826667pt;}
.y53{bottom:149.434667pt;}
.y108{bottom:153.146667pt;}
.y13c{bottom:155.066667pt;}
.y93{bottom:156.026667pt;}
.y3a{bottom:157.800000pt;}
.ye1{bottom:158.106667pt;}
.y52{bottom:163.194667pt;}
.yb2{bottom:163.386667pt;}
.y48{bottom:163.674667pt;}
.y107{bottom:168.506667pt;}
.y13b{bottom:170.426667pt;}
.y92{bottom:171.386667pt;}
.y47{bottom:173.114667pt;}
.y39{bottom:173.160000pt;}
.ye0{bottom:173.466667pt;}
.yb1{bottom:177.786667pt;}
.y106{bottom:183.866667pt;}
.y13a{bottom:185.786667pt;}
.y91{bottom:186.586667pt;}
.y38{bottom:188.520000pt;}
.ydf{bottom:188.666667pt;}
.yaf{bottom:192.186667pt;}
.y105{bottom:199.226667pt;}
.y139{bottom:200.986667pt;}
.y90{bottom:201.946667pt;}
.y37{bottom:203.880000pt;}
.yde{bottom:204.026667pt;}
.yae{bottom:206.746667pt;}
.y104{bottom:212.346667pt;}
.y138{bottom:214.106667pt;}
.y8f{bottom:217.306667pt;}
.y36{bottom:219.080000pt;}
.ydd{bottom:219.386667pt;}
.yab{bottom:221.146667pt;}
.y8e{bottom:232.666667pt;}
.y137{bottom:233.306667pt;}
.y35{bottom:234.440000pt;}
.ydc{bottom:234.746667pt;}
.y103{bottom:240.506667pt;}
.y8d{bottom:248.026667pt;}
.y34{bottom:249.826667pt;}
.ydb{bottom:250.106667pt;}
.yaa{bottom:252.346667pt;}
.y135{bottom:252.506667pt;}
.y8c{bottom:263.386667pt;}
.y33{bottom:265.186667pt;}
.yda{bottom:265.466667pt;}
.ya9{bottom:267.706667pt;}
.y102{bottom:268.826667pt;}
.y133{bottom:271.546667pt;}
.y8b{bottom:278.586667pt;}
.y32{bottom:280.546667pt;}
.yd9{bottom:280.666667pt;}
.ya8{bottom:283.066667pt;}
.ye{bottom:285.306667pt;}
.y131{bottom:290.746667pt;}
.y8a{bottom:293.986667pt;}
.y31{bottom:295.906667pt;}
.yd8{bottom:296.066667pt;}
.y101{bottom:297.186667pt;}
.ya7{bottom:298.306667pt;}
.y1c{bottom:299.586667pt;}
.y89{bottom:309.346667pt;}
.y130{bottom:309.826667pt;}
.y30{bottom:311.106667pt;}
.yd7{bottom:311.426667pt;}
.ya6{bottom:313.666667pt;}
.y1b{bottom:321.186667pt;}
.y88{bottom:324.706667pt;}
.y100{bottom:325.346667pt;}
.y2f{bottom:326.466667pt;}
.yd6{bottom:326.786667pt;}
.ya5{bottom:329.026667pt;}
.y87{bottom:340.066667pt;}
.y12f{bottom:341.026667pt;}
.y2e{bottom:341.506667pt;}
.yd5{bottom:342.146667pt;}
.y1a{bottom:342.626667pt;}
.ya4{bottom:344.386667pt;}
.yff{bottom:353.666667pt;}
.yd4{bottom:355.266667pt;}
.y2d{bottom:355.426667pt;}
.y12e{bottom:356.386667pt;}
.ya3{bottom:359.746667pt;}
.y19{bottom:364.066667pt;}
.y2c{bottom:369.186667pt;}
.y86{bottom:370.626667pt;}
.yd3{bottom:371.266667pt;}
.y12d{bottom:371.746667pt;}
.ya2{bottom:374.946667pt;}
.yfe{bottom:381.986667pt;}
.y2b{bottom:382.946667pt;}
.y18{bottom:385.506667pt;}
.y85{bottom:385.986667pt;}
.y12c{bottom:386.946667pt;}
.yd2{bottom:387.266667pt;}
.ya1{bottom:390.306667pt;}
.y2a{bottom:396.706667pt;}
.y84{bottom:401.346667pt;}
.y12b{bottom:402.306667pt;}
.yd1{bottom:403.266667pt;}
.ya0{bottom:405.666667pt;}
.y17{bottom:406.946667pt;}
.yfd{bottom:410.146667pt;}
.y29{bottom:410.626667pt;}
.y83{bottom:416.706667pt;}
.y12a{bottom:417.666667pt;}
.yd0{bottom:419.266667pt;}
.y9f{bottom:421.026667pt;}
.y28{bottom:424.386667pt;}
.y16{bottom:428.386667pt;}
.y82{bottom:432.066667pt;}
.y129{bottom:433.026667pt;}
.ycc{bottom:435.266667pt;}
.y9e{bottom:436.386667pt;}
.y27{bottom:438.146667pt;}
.yfc{bottom:438.466667pt;}
.y81{bottom:447.426667pt;}
.y128{bottom:448.386667pt;}
.y9d{bottom:449.506667pt;}
.y15{bottom:449.986667pt;}
.y26{bottom:451.906667pt;}
.y80{bottom:462.626667pt;}
.y127{bottom:463.746667pt;}
.y9c{bottom:463.906667pt;}
.y25{bottom:465.666667pt;}
.yfb{bottom:466.786667pt;}
.y14{bottom:471.426667pt;}
.y7f{bottom:477.986667pt;}
.y9b{bottom:478.466667pt;}
.y126{bottom:478.946667pt;}
.y24{bottom:479.586667pt;}
.ycb{bottom:484.706667pt;}
.y97{bottom:492.866667pt;}
.y13{bottom:492.906667pt;}
.y7e{bottom:493.346667pt;}
.y23{bottom:493.386667pt;}
.y125{bottom:494.306667pt;}
.yfa{bottom:497.826667pt;}
.yca{bottom:500.066667pt;}
.y22{bottom:507.146667pt;}
.y7d{bottom:508.706667pt;}
.y124{bottom:509.666667pt;}
.yf9{bottom:513.186667pt;}
.y12{bottom:514.346667pt;}
.yc9{bottom:515.426667pt;}
.y21{bottom:520.906667pt;}
.y7c{bottom:524.066667pt;}
.y123{bottom:525.026667pt;}
.yf8{bottom:528.546667pt;}
.yc8{bottom:530.813333pt;}
.y20{bottom:534.826667pt;}
.y11{bottom:535.786667pt;}
.y122{bottom:538.173333pt;}
.y7b{bottom:539.293333pt;}
.yf7{bottom:543.933333pt;}
.yc7{bottom:546.173333pt;}
.y1f{bottom:548.586667pt;}
.y7a{bottom:554.653333pt;}
.y10{bottom:557.226667pt;}
.y121{bottom:557.373333pt;}
.yf6{bottom:559.293333pt;}
.yc6{bottom:561.373333pt;}
.y1e{bottom:562.346667pt;}
.y79{bottom:570.013333pt;}
.yf5{bottom:574.493333pt;}
.y1d{bottom:576.106667pt;}
.y120{bottom:576.573333pt;}
.yc5{bottom:576.733333pt;}
.yf{bottom:578.666667pt;}
.y78{bottom:585.373333pt;}
.yf4{bottom:589.853333pt;}
.yc4{bottom:592.093333pt;}
.y11f{bottom:595.773333pt;}
.y77{bottom:600.733333pt;}
.yf3{bottom:605.213333pt;}
.yc3{bottom:607.453333pt;}
.y11d{bottom:614.973333pt;}
.y76{bottom:616.093333pt;}
.yf2{bottom:620.573333pt;}
.yc2{bottom:622.813333pt;}
.y75{bottom:631.293333pt;}
.yf1{bottom:635.933333pt;}
.yc1{bottom:638.013333pt;}
.y74{bottom:646.653333pt;}
.y11c{bottom:649.213333pt;}
.yf0{bottom:651.293333pt;}
.yc0{bottom:653.373333pt;}
.y73{bottom:662.013333pt;}
.y11b{bottom:664.413333pt;}
.yef{bottom:666.493333pt;}
.ybf{bottom:668.733333pt;}
.y72{bottom:677.373333pt;}
.y11a{bottom:679.773333pt;}
.yee{bottom:681.853333pt;}
.ybe{bottom:684.093333pt;}
.y71{bottom:692.733333pt;}
.y119{bottom:695.133333pt;}
.ybd{bottom:697.213333pt;}
.y70{bottom:708.093333pt;}
.yed{bottom:710.333333pt;}
.y118{bottom:710.493333pt;}
.ybc{bottom:710.973333pt;}
.y6f{bottom:723.293333pt;}
.yec{bottom:724.733333pt;}
.ybb{bottom:725.533333pt;}
.y117{bottom:725.853333pt;}
.y6e{bottom:738.653333pt;}
.yeb{bottom:739.293333pt;}
.yba{bottom:739.933333pt;}
.y116{bottom:741.213333pt;}
.yea{bottom:753.693333pt;}
.y6d{bottom:754.013333pt;}
.yb9{bottom:754.333333pt;}
.y115{bottom:756.413333pt;}
.ye9{bottom:768.293333pt;}
.yb8{bottom:768.933333pt;}
.y6c{bottom:769.413333pt;}
.y114{bottom:771.813333pt;}
.ye8{bottom:782.693333pt;}
.y6b{bottom:784.773333pt;}
.y113{bottom:784.933333pt;}
.y6a{bottom:799.973333pt;}
.y111{bottom:805.893333pt;}
.y69{bottom:815.333333pt;}
.y10f{bottom:827.013333pt;}
.y68{bottom:830.693333pt;}
.y67{bottom:846.053333pt;}
.y10e{bottom:847.973333pt;}
.y66{bottom:861.413333pt;}
.yd{bottom:875.013333pt;}
.y10d{bottom:876.293333pt;}
.y65{bottom:876.773333pt;}
.yc{bottom:880.613333pt;}
.y64{bottom:891.973333pt;}
.yb{bottom:895.973333pt;}
.y63{bottom:907.333333pt;}
.ya{bottom:911.173333pt;}
.y62{bottom:922.693333pt;}
.y9{bottom:927.653333pt;}
.y61{bottom:938.053333pt;}
.y8{bottom:953.093333pt;}
.y60{bottom:953.413333pt;}
.y5d{bottom:956.000000pt;}
.y5f{bottom:968.773333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.h11{height:3.575000pt;}
.ha{height:3.702500pt;}
.h16{height:8.967500pt;}
.h1c{height:13.760000pt;}
.h1f{height:13.920000pt;}
.h20{height:13.952000pt;}
.h22{height:15.200000pt;}
.h29{height:18.400000pt;}
.h28{height:18.432000pt;}
.h27{height:18.560000pt;}
.h14{height:18.768750pt;}
.h24{height:20.320000pt;}
.h25{height:20.480000pt;}
.h13{height:22.343750pt;}
.h18{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h1b{height:27.520000pt;}
.h1e{height:27.680000pt;}
.h23{height:27.712000pt;}
.h26{height:30.560000pt;}
.h1d{height:33.515625pt;}
.h15{height:33.867188pt;}
.he{height:34.664062pt;}
.h7{height:35.673437pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h1a{height:38.672812pt;}
.hf{height:39.562500pt;}
.h5{height:41.112500pt;}
.h10{height:42.691250pt;}
.h17{height:43.782500pt;}
.h21{height:45.920000pt;}
.h8{height:52.832812pt;}
.h19{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:199.200000pt;}
.hb{height:587.293333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w25{width:48.480000pt;}
.w22{width:56.832000pt;}
.w28{width:59.520000pt;}
.w27{width:59.552000pt;}
.w10{width:59.680000pt;}
.w16{width:59.712000pt;}
.w2b{width:60.960000pt;}
.w2e{width:64.992000pt;}
.wa{width:65.280000pt;}
.w12{width:65.600000pt;}
.w29{width:65.632000pt;}
.w11{width:65.760000pt;}
.w13{width:65.792000pt;}
.w19{width:69.792000pt;}
.w31{width:70.912000pt;}
.w15{width:71.680000pt;}
.w1f{width:71.712000pt;}
.w23{width:73.280000pt;}
.w21{width:73.440000pt;}
.w36{width:73.760000pt;}
.w1b{width:74.912000pt;}
.wc{width:77.280000pt;}
.w1d{width:77.312000pt;}
.wf{width:77.600000pt;}
.w38{width:77.632000pt;}
.w17{width:77.792000pt;}
.w33{width:78.080000pt;}
.w2c{width:78.432000pt;}
.w24{width:79.552000pt;}
.w30{width:80.480000pt;}
.w32{width:81.280000pt;}
.w1a{width:82.400000pt;}
.wd{width:83.232000pt;}
.w37{width:83.520000pt;}
.w1e{width:84.160000pt;}
.w9{width:84.192000pt;}
.w2a{width:85.280000pt;}
.w2d{width:87.040000pt;}
.wb{width:89.312000pt;}
.w34{width:92.032000pt;}
.w2{width:92.512000pt;}
.w1c{width:97.152000pt;}
.we{width:105.472000pt;}
.w8{width:110.880000pt;}
.w18{width:112.992000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w2f{width:154.746667pt;}
.w14{width:155.386667pt;}
.w20{width:158.746667pt;}
.w35{width:159.866667pt;}
.w26{width:167.706667pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:6.272000pt;}
.x17{left:7.232000pt;}
.x4a{left:8.480000pt;}
.x2d{left:9.760000pt;}
.x4{left:11.360000pt;}
.x33{left:12.320000pt;}
.x5a{left:13.280000pt;}
.x16{left:14.272000pt;}
.x62{left:15.200000pt;}
.x1a{left:16.192000pt;}
.x14{left:17.472000pt;}
.x35{left:18.400000pt;}
.x2b{left:19.546667pt;}
.x23{left:20.640000pt;}
.x2e{left:21.920000pt;}
.x15{left:23.232000pt;}
.x44{left:24.800000pt;}
.x1c{left:25.952000pt;}
.x37{left:26.880000pt;}
.x2a{left:27.880000pt;}
.x53{left:29.120000pt;}
.x6{left:30.080000pt;}
.x28{left:31.386667pt;}
.x41{left:32.960000pt;}
.x25{left:34.440000pt;}
.x36{left:35.680000pt;}
.x49{left:36.800000pt;}
.x38{left:38.880000pt;}
.x4b{left:41.280000pt;}
.x1b{left:42.432000pt;}
.x48{left:44.160000pt;}
.xf{left:45.152000pt;}
.x3f{left:47.360000pt;}
.xe{left:48.832000pt;}
.x1e{left:50.752000pt;}
.x59{left:52.000000pt;}
.x58{left:53.920000pt;}
.x5e{left:55.360000pt;}
.x1d{left:58.906667pt;}
.x57{left:62.400000pt;}
.x40{left:64.000000pt;}
.x5b{left:65.600000pt;}
.x1{left:69.600000pt;}
.x13{left:70.746667pt;}
.x11{left:73.306667pt;}
.x12{left:74.426667pt;}
.x7{left:76.799988pt;}
.x2{left:85.146667pt;}
.x1f{left:91.386667pt;}
.x19{left:94.906667pt;}
.x21{left:100.831988pt;}
.x10{left:110.746667pt;}
.x73{left:112.831988pt;}
.x67{left:117.312000pt;}
.x5{left:125.640000pt;}
.x5c{left:129.632000pt;}
.x6d{left:132.992000pt;}
.x51{left:138.426667pt;}
.x22{left:140.026667pt;}
.x39{left:148.186667pt;}
.x42{left:154.426667pt;}
.x63{left:159.226667pt;}
.x3{left:162.106667pt;}
.x2c{left:176.186667pt;}
.x5d{left:178.426667pt;}
.x18{left:194.746667pt;}
.x64{left:244.826667pt;}
.x24{left:251.546667pt;}
.x4c{left:259.906667pt;}
.xc{left:266.946655pt;}
.x68{left:272.386667pt;}
.x2f{left:281.986667pt;}
.x6e{left:293.186667pt;}
.x52{left:297.506667pt;}
.x3a{left:303.906667pt;}
.x26{left:336.386667pt;}
.x4d{left:337.826667pt;}
.x65{left:342.306667pt;}
.x43{left:345.666667pt;}
.x69{left:353.346667pt;}
.x30{left:359.906667pt;}
.x6f{left:367.266667pt;}
.x54{left:371.266667pt;}
.x3b{left:375.906667pt;}
.x4e{left:397.826667pt;}
.x27{left:402.466667pt;}
.x66{left:403.586667pt;}
.x45{left:411.746667pt;}
.x31{left:419.933333pt;}
.x6a{left:424.573333pt;}
.x55{left:428.573333pt;}
.x70{left:433.373333pt;}
.x3c{left:435.933333pt;}
.x5f{left:472.573333pt;}
.x4f{left:475.453333pt;}
.x46{left:481.853333pt;}
.x32{left:486.013333pt;}
.xb{left:492.253322pt;}
.x3d{left:502.013333pt;}
.x6b{left:506.173333pt;}
.x71{left:517.373333pt;}
.x60{left:532.573333pt;}
.x34{left:551.933333pt;}
.x50{left:559.933333pt;}
.xa{left:561.373322pt;}
.x47{left:564.573333pt;}
.x3e{left:567.933333pt;}
.x29{left:570.493333pt;}
.x56{left:575.773333pt;}
.x6c{left:584.573333pt;}
.x72{left:595.333333pt;}
.x61{left:598.533333pt;}
.x9{left:680.933322pt;}
.x8{left:703.813322pt;}
.xd{left:717.093322pt;}
}




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