
    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_c1738eb7f418a558e00a46fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_564b86a8749a9f578ec7b29d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a6bbf61a4ede36dea1f14e7.woff2')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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ada7c0c6157f9f55ade86e22.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_31becb4398952cf12c957748.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cfa468dca53e2ce66239da0b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_50f30b1e281d83a5808800fb.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.lse{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-0.223800px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls3{letter-spacing:41.868000px;}
.ls7{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.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;}
}
.ws7{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.500000px;}
.ws9{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-1.267200px;}
._0{width:1.135440px;}
._4{width:2.495280px;}
._5{width:3.827040px;}
._7{width:5.736960px;}
._15{width:6.847920px;}
._b{width:7.948080px;}
._a{width:9.143280px;}
._1b{width:10.398240px;}
._d{width:11.533680px;}
._11{width:13.432800px;}
._13{width:15.822000px;}
._c{width:17.083920px;}
._9{width:18.585360px;}
._8{width:19.720800px;}
._1f{width:21.573360px;}
._1d{width:22.631040px;}
._12{width:23.922000px;}
._17{width:25.816320px;}
._1e{width:27.011520px;}
._16{width:28.206720px;}
._14{width:29.268000px;}
._24{width:30.544560px;}
._10{width:31.860480px;}
._f{width:33.405840px;}
._23{width:34.984080px;}
._20{width:36.274320px;}
._27{width:37.708560px;}
._28{width:39.010800px;}
._1a{width:41.294160px;}
._19{width:42.429600px;}
._21{width:44.820000px;}
._18{width:47.329920px;}
._e{width:48.823920px;}
._2c{width:55.688160px;}
._2b{width:56.712240px;}
._2a{width:61.851600px;}
._26{width:62.927280px;}
._2d{width:64.190880px;}
._1c{width:66.512880px;}
._25{width:73.265760px;}
._22{width:81.333360px;}
._29{width:90.775200px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._6{width:662.257680px;}
._2e{width:665.586480px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:2.520000px;}
.y3f{bottom:2.880000px;}
.y41{bottom:3.060000px;}
.y1a{bottom:3.270000px;}
.y10d{bottom:3.420000px;}
.y107{bottom:4.140000px;}
.y38{bottom:6.120000px;}
.y4{bottom:8.316000px;}
.y9{bottom:14.040000px;}
.y5{bottom:16.236000px;}
.yff{bottom:16.380000px;}
.y106{bottom:17.100000px;}
.y3e{bottom:18.405000px;}
.y36{bottom:19.260000px;}
.y10c{bottom:29.340000px;}
.y105{bottom:29.880000px;}
.yfe{bottom:30.105000px;}
.y3d{bottom:33.885000px;}
.y7{bottom:35.460000px;}
.y35{bottom:35.640000px;}
.y10b{bottom:42.294000px;}
.y104{bottom:42.840000px;}
.yfd{bottom:43.965000px;}
.y3c{bottom:49.545000px;}
.y2e{bottom:51.300000px;}
.y10a{bottom:55.074000px;}
.y103{bottom:55.800000px;}
.y3{bottom:58.140000px;}
.y3b{bottom:65.025000px;}
.y34{bottom:66.780000px;}
.y109{bottom:68.034000px;}
.y2d{bottom:68.580000px;}
.y102{bottom:68.760000px;}
.y3a{bottom:80.505000px;}
.y33{bottom:82.260000px;}
.y2c{bottom:85.860000px;}
.y32{bottom:97.740000px;}
.y2b{bottom:103.140000px;}
.y40{bottom:106.200000px;}
.y31{bottom:113.400000px;}
.y6c{bottom:116.316000px;}
.y76{bottom:118.836000px;}
.ya8{bottom:119.916000px;}
.y2a{bottom:120.240000px;}
.y108{bottom:120.456000px;}
.y9b{bottom:123.516000px;}
.y45{bottom:127.476000px;}
.ydd{bottom:128.196000px;}
.y30{bottom:128.880000px;}
.yea{bottom:132.516000px;}
.y75{bottom:132.696000px;}
.ya7{bottom:137.196000px;}
.y29{bottom:137.565000px;}
.y9a{bottom:140.616000px;}
.y44{bottom:143.136000px;}
.ydc{bottom:145.476000px;}
.y74{bottom:146.556000px;}
.ye9{bottom:149.796000px;}
.ya6{bottom:154.470000px;}
.y28{bottom:154.845000px;}
.y73{bottom:157.710000px;}
.y99{bottom:157.890000px;}
.y43{bottom:158.970000px;}
.ydb{bottom:162.750000px;}
.ye8{bottom:166.890000px;}
.ya5{bottom:171.750000px;}
.y27{bottom:172.125000px;}
.y98{bottom:175.170000px;}
.y42{bottom:176.070000px;}
.yda{bottom:179.850000px;}
.ye7{bottom:184.170000px;}
.ya4{bottom:189.030000px;}
.y26{bottom:189.405000px;}
.y1b{bottom:190.830000px;}
.y97{bottom:192.450000px;}
.yd9{bottom:197.130000px;}
.y101{bottom:199.650000px;}
.ye6{bottom:201.450000px;}
.ya3{bottom:206.310000px;}
.y25{bottom:206.685000px;}
.y96{bottom:209.730000px;}
.yd8{bottom:214.410000px;}
.ye5{bottom:218.730000px;}
.ya2{bottom:223.410000px;}
.y24{bottom:223.785000px;}
.y95{bottom:227.010000px;}
.yd7{bottom:231.690000px;}
.ye4{bottom:236.010000px;}
.ya1{bottom:240.690000px;}
.y23{bottom:241.065000px;}
.y94{bottom:244.110000px;}
.yd6{bottom:248.970000px;}
.ye3{bottom:253.290000px;}
.ya0{bottom:257.970000px;}
.y22{bottom:258.345000px;}
.y93{bottom:261.390000px;}
.yd5{bottom:266.070000px;}
.ye2{bottom:270.390000px;}
.y9f{bottom:275.250000px;}
.y21{bottom:275.625000px;}
.y92{bottom:278.670000px;}
.y100{bottom:279.570000px;}
.yd4{bottom:284.430000px;}
.ye1{bottom:287.670000px;}
.y9e{bottom:292.530000px;}
.y20{bottom:292.905000px;}
.yfc{bottom:294.150000px;}
.y91{bottom:295.950000px;}
.yd3{bottom:301.710000px;}
.ye0{bottom:304.950000px;}
.y9d{bottom:309.810000px;}
.y1f{bottom:310.185000px;}
.y39{bottom:310.530000px;}
.y90{bottom:313.230000px;}
.yd2{bottom:320.115000px;}
.ydf{bottom:322.275000px;}
.y9c{bottom:326.955000px;}
.y1e{bottom:327.285000px;}
.y8f{bottom:329.835000px;}
.yd1{bottom:338.475000px;}
.yde{bottom:339.555000px;}
.y8e{bottom:341.715000px;}
.y1d{bottom:344.565000px;}
.yfb{bottom:350.175000px;}
.y8d{bottom:356.295000px;}
.yd0{bottom:356.835000px;}
.y1c{bottom:361.845000px;}
.y8c{bottom:370.875000px;}
.ycf{bottom:373.935000px;}
.yfa{bottom:382.755000px;}
.y8b{bottom:385.455000px;}
.yce{bottom:391.215000px;}
.yf9{bottom:399.855000px;}
.y8a{bottom:400.035000px;}
.y37{bottom:404.355000px;}
.ycd{bottom:408.495000px;}
.y89{bottom:414.435000px;}
.yf8{bottom:417.135000px;}
.y2f{bottom:425.235000px;}
.ycc{bottom:425.775000px;}
.y72{bottom:428.115000px;}
.y88{bottom:431.175000px;}
.yf7{bottom:434.415000px;}
.y71{bottom:441.795000px;}
.y87{bottom:441.975000px;}
.ycb{bottom:443.055000px;}
.yf6{bottom:451.695000px;}
.y70{bottom:453.315000px;}
.y85{bottom:456.375000px;}
.yca{bottom:460.155000px;}
.yf5{bottom:468.975000px;}
.y84{bottom:473.655000px;}
.y86{bottom:476.355000px;}
.yc9{bottom:477.435000px;}
.y6b{bottom:479.055000px;}
.yf4{bottom:486.255000px;}
.y6a{bottom:489.855000px;}
.y83{bottom:490.935000px;}
.yc8{bottom:494.715000px;}
.yf3{bottom:503.355000px;}
.y69{bottom:503.535000px;}
.y82{bottom:508.215000px;}
.yc7{bottom:511.995000px;}
.y68{bottom:515.595000px;}
.yf2{bottom:520.635000px;}
.y81{bottom:525.495000px;}
.yc6{bottom:529.275000px;}
.y67{bottom:530.175000px;}
.yf1{bottom:537.915000px;}
.y80{bottom:542.775000px;}
.y66{bottom:544.755000px;}
.yc5{bottom:546.555000px;}
.yf0{bottom:555.195000px;}
.y65{bottom:559.335000px;}
.y7f{bottom:559.875000px;}
.yc4{bottom:563.655000px;}
.y19{bottom:567.435000px;}
.yef{bottom:572.505000px;}
.y64{bottom:573.945000px;}
.y7e{bottom:577.185000px;}
.yc3{bottom:580.965000px;}
.y63{bottom:588.345000px;}
.yee{bottom:589.785000px;}
.y7d{bottom:594.465000px;}
.yc2{bottom:598.245000px;}
.y18{bottom:602.025000px;}
.y62{bottom:602.925000px;}
.yed{bottom:606.885000px;}
.y7c{bottom:611.745000px;}
.yc1{bottom:615.525000px;}
.y61{bottom:619.665000px;}
.y17{bottom:622.005000px;}
.yec{bottom:624.165000px;}
.y7b{bottom:629.025000px;}
.y60{bottom:630.465000px;}
.yc0{bottom:632.805000px;}
.yeb{bottom:641.445000px;}
.y5f{bottom:644.145000px;}
.y7a{bottom:646.305000px;}
.ybf{bottom:650.085000px;}
.y16{bottom:650.445000px;}
.y6f{bottom:650.625000px;}
.y5e{bottom:658.725000px;}
.y6e{bottom:661.425000px;}
.y79{bottom:662.685000px;}
.ybe{bottom:667.185000px;}
.y15{bottom:667.545000px;}
.y5d{bottom:676.005000px;}
.y78{bottom:676.545000px;}
.y6d{bottom:678.705000px;}
.ybd{bottom:684.465000px;}
.y77{bottom:687.885000px;}
.y14{bottom:690.045000px;}
.y5c{bottom:693.285000px;}
.ybc{bottom:701.745000px;}
.y13{bottom:702.105000px;}
.y5b{bottom:710.385000px;}
.ybb{bottom:719.025000px;}
.y12{bottom:724.605000px;}
.y5a{bottom:727.665000px;}
.yba{bottom:736.305000px;}
.y11{bottom:742.965000px;}
.y59{bottom:744.945000px;}
.yb9{bottom:753.405000px;}
.y10{bottom:756.105000px;}
.y58{bottom:762.225000px;}
.yb8{bottom:770.685000px;}
.yf{bottom:777.165000px;}
.y57{bottom:779.505000px;}
.yb7{bottom:787.965000px;}
.y56{bottom:796.605000px;}
.yb6{bottom:805.245000px;}
.ye{bottom:808.125000px;}
.y55{bottom:813.885000px;}
.yb5{bottom:822.570000px;}
.y54{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.yb4{bottom:839.850000px;}
.y53{bottom:848.490000px;}
.yb3{bottom:856.950000px;}
.y52{bottom:865.770000px;}
.yc{bottom:870.270000px;}
.yb2{bottom:874.230000px;}
.y51{bottom:883.050000px;}
.yb1{bottom:891.510000px;}
.y50{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.yb0{bottom:906.270000px;}
.y4f{bottom:917.430000px;}
.yaf{bottom:920.850000px;}
.ya{bottom:930.210000px;}
.y4e{bottom:934.710000px;}
.yae{bottom:935.430000px;}
.y8{bottom:945.510000px;}
.yad{bottom:950.010000px;}
.y4d{bottom:951.990000px;}
.yac{bottom:964.410000px;}
.y4c{bottom:969.270000px;}
.yab{bottom:978.990000px;}
.y4b{bottom:986.550000px;}
.yaa{bottom:995.730000px;}
.y4a{bottom:1003.650000px;}
.ya9{bottom:1006.530000px;}
.y49{bottom:1020.930000px;}
.y48{bottom:1038.210000px;}
.y47{bottom:1055.490000px;}
.y46{bottom:1072.800000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.680000px;}
.h1f{height:13.716000px;}
.h1d{height:13.860000px;}
.h23{height:13.860150px;}
.h10{height:17.316000px;}
.h15{height:19.980000px;}
.h1c{height:25.136719px;}
.h20{height:25.400391px;}
.hd{height:27.147656px;}
.h3{height:27.576000px;}
.hc{height:29.158594px;}
.h26{height:31.672266px;}
.h25{height:32.004492px;}
.h5{height:33.683203px;}
.h1b{height:34.036523px;}
.h17{height:37.705078px;}
.h18{height:38.100586px;}
.h6{height:39.336328px;}
.h13{height:39.999023px;}
.h4{height:41.726953px;}
.hf{height:42.164648px;}
.h1a{height:43.506914px;}
.h14{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h21{height:49.255313px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h22{height:55.296000px;}
.he{height:75.410156px;}
.ha{height:76.201172px;}
.h27{height:78.480000px;}
.h24{height:79.200000px;}
.h16{height:93.096000px;}
.h19{height:118.800000px;}
.h12{height:141.480000px;}
.h7{height:153.930000px;}
.h11{height:375.870000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w10{width:64.836000px;}
.w7{width:113.796000px;}
.wa{width:163.470000px;}
.w9{width:180.030000px;}
.wb{width:183.450000px;}
.wd{width:198.750000px;}
.w8{width:201.270000px;}
.w6{width:220.170000px;}
.wc{width:222.510000px;}
.we{width:318.315000px;}
.w11{width:324.570000px;}
.wf{width:390.135000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:6.480000px;}
.x3{left:8.460000px;}
.x39{left:10.980000px;}
.x22{left:14.940000px;}
.x3d{left:16.920000px;}
.x16{left:19.980000px;}
.x26{left:24.300000px;}
.x29{left:25.380000px;}
.x1a{left:27.360000px;}
.x27{left:28.620000px;}
.x2b{left:30.420000px;}
.x20{left:32.580000px;}
.x18{left:34.065000px;}
.x19{left:35.865000px;}
.x3b{left:37.260000px;}
.x24{left:38.340000px;}
.x40{left:41.040000px;}
.x3e{left:42.480000px;}
.x25{left:43.560000px;}
.x6{left:45.540000px;}
.x49{left:46.800000px;}
.x3a{left:48.780000px;}
.x38{left:50.760000px;}
.x47{left:52.740000px;}
.x2{left:53.999986px;}
.x3f{left:55.260000px;}
.x3c{left:56.880000px;}
.x28{left:59.040000px;}
.x1{left:60.659986px;}
.x9{left:61.739986px;}
.x51{left:63.756000px;}
.x1b{left:65.519986px;}
.x2a{left:79.200000px;}
.x44{left:85.365000px;}
.x4c{left:88.199986px;}
.x48{left:91.650000px;}
.x31{left:96.155986px;}
.x4{left:100.836000px;}
.x4b{left:103.350000px;}
.x4a{left:105.150000px;}
.x5{left:108.035986px;}
.x4f{left:110.550000px;}
.xa{left:124.415986px;}
.x46{left:127.110000px;}
.x12{left:133.955986px;}
.x33{left:135.035986px;}
.xf{left:148.535986px;}
.x50{left:150.690000px;}
.x36{left:173.550000px;}
.x43{left:200.190000px;}
.x1f{left:210.810000px;}
.x11{left:241.589986px;}
.x41{left:252.569986px;}
.xd{left:259.409986px;}
.x1e{left:290.414986px;}
.x35{left:298.154986px;}
.x42{left:307.154986px;}
.x34{left:317.954986px;}
.x2e{left:321.374986px;}
.xe{left:322.994986px;}
.x21{left:325.335000px;}
.x2c{left:334.694986px;}
.x13{left:338.474986px;}
.x10{left:340.274986px;}
.xb{left:377.174986px;}
.x45{left:399.675000px;}
.x8{left:459.074986px;}
.x1d{left:461.954986px;}
.xc{left:464.294986px;}
.x14{left:465.374986px;}
.x1c{left:478.334986px;}
.x4d{left:479.804986px;}
.x4e{left:506.804986px;}
.x37{left:521.925000px;}
.x23{left:527.325000px;}
.x2d{left:625.784986px;}
.x15{left:642.345000px;}
.x30{left:660.164986px;}
.x2f{left:664.124986px;}
.x32{left:667.364986px;}
.x7{left:812.490000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls3{letter-spacing:37.216000pt;}
.ls7{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.ws7{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-1.126400pt;}
._0{width:1.009280pt;}
._4{width:2.218027pt;}
._5{width:3.401813pt;}
._7{width:5.099520pt;}
._15{width:6.087040pt;}
._b{width:7.064960pt;}
._a{width:8.127360pt;}
._1b{width:9.242880pt;}
._d{width:10.252160pt;}
._11{width:11.940267pt;}
._13{width:14.064000pt;}
._c{width:15.185707pt;}
._9{width:16.520320pt;}
._8{width:17.529600pt;}
._1f{width:19.176320pt;}
._1d{width:20.116480pt;}
._12{width:21.264000pt;}
._17{width:22.947840pt;}
._1e{width:24.010240pt;}
._16{width:25.072640pt;}
._14{width:26.016000pt;}
._24{width:27.150720pt;}
._10{width:28.320427pt;}
._f{width:29.694080pt;}
._23{width:31.096960pt;}
._20{width:32.243840pt;}
._27{width:33.518720pt;}
._28{width:34.676267pt;}
._1a{width:36.705920pt;}
._19{width:37.715200pt;}
._21{width:39.840000pt;}
._18{width:42.071040pt;}
._e{width:43.399040pt;}
._2c{width:49.500587pt;}
._2b{width:50.410880pt;}
._2a{width:54.979200pt;}
._26{width:55.935360pt;}
._2d{width:57.058560pt;}
._1c{width:59.122560pt;}
._25{width:65.125120pt;}
._22{width:72.296320pt;}
._29{width:80.689067pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._6{width:588.673493pt;}
._2e{width:591.632427pt;}
.fs3{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:2.240000pt;}
.y3f{bottom:2.560000pt;}
.y41{bottom:2.720000pt;}
.y1a{bottom:2.906667pt;}
.y10d{bottom:3.040000pt;}
.y107{bottom:3.680000pt;}
.y38{bottom:5.440000pt;}
.y4{bottom:7.392000pt;}
.y9{bottom:12.480000pt;}
.y5{bottom:14.432000pt;}
.yff{bottom:14.560000pt;}
.y106{bottom:15.200000pt;}
.y3e{bottom:16.360000pt;}
.y36{bottom:17.120000pt;}
.y10c{bottom:26.080000pt;}
.y105{bottom:26.560000pt;}
.yfe{bottom:26.760000pt;}
.y3d{bottom:30.120000pt;}
.y7{bottom:31.520000pt;}
.y35{bottom:31.680000pt;}
.y10b{bottom:37.594667pt;}
.y104{bottom:38.080000pt;}
.yfd{bottom:39.080000pt;}
.y3c{bottom:44.040000pt;}
.y2e{bottom:45.600000pt;}
.y10a{bottom:48.954667pt;}
.y103{bottom:49.600000pt;}
.y3{bottom:51.680000pt;}
.y3b{bottom:57.800000pt;}
.y34{bottom:59.360000pt;}
.y109{bottom:60.474667pt;}
.y2d{bottom:60.960000pt;}
.y102{bottom:61.120000pt;}
.y3a{bottom:71.560000pt;}
.y33{bottom:73.120000pt;}
.y2c{bottom:76.320000pt;}
.y32{bottom:86.880000pt;}
.y2b{bottom:91.680000pt;}
.y40{bottom:94.400000pt;}
.y31{bottom:100.800000pt;}
.y6c{bottom:103.392000pt;}
.y76{bottom:105.632000pt;}
.ya8{bottom:106.592000pt;}
.y2a{bottom:106.880000pt;}
.y108{bottom:107.072000pt;}
.y9b{bottom:109.792000pt;}
.y45{bottom:113.312000pt;}
.ydd{bottom:113.952000pt;}
.y30{bottom:114.560000pt;}
.yea{bottom:117.792000pt;}
.y75{bottom:117.952000pt;}
.ya7{bottom:121.952000pt;}
.y29{bottom:122.280000pt;}
.y9a{bottom:124.992000pt;}
.y44{bottom:127.232000pt;}
.ydc{bottom:129.312000pt;}
.y74{bottom:130.272000pt;}
.ye9{bottom:133.152000pt;}
.ya6{bottom:137.306667pt;}
.y28{bottom:137.640000pt;}
.y73{bottom:140.186667pt;}
.y99{bottom:140.346667pt;}
.y43{bottom:141.306667pt;}
.ydb{bottom:144.666667pt;}
.ye8{bottom:148.346667pt;}
.ya5{bottom:152.666667pt;}
.y27{bottom:153.000000pt;}
.y98{bottom:155.706667pt;}
.y42{bottom:156.506667pt;}
.yda{bottom:159.866667pt;}
.ye7{bottom:163.706667pt;}
.ya4{bottom:168.026667pt;}
.y26{bottom:168.360000pt;}
.y1b{bottom:169.626667pt;}
.y97{bottom:171.066667pt;}
.yd9{bottom:175.226667pt;}
.y101{bottom:177.466667pt;}
.ye6{bottom:179.066667pt;}
.ya3{bottom:183.386667pt;}
.y25{bottom:183.720000pt;}
.y96{bottom:186.426667pt;}
.yd8{bottom:190.586667pt;}
.ye5{bottom:194.426667pt;}
.ya2{bottom:198.586667pt;}
.y24{bottom:198.920000pt;}
.y95{bottom:201.786667pt;}
.yd7{bottom:205.946667pt;}
.ye4{bottom:209.786667pt;}
.ya1{bottom:213.946667pt;}
.y23{bottom:214.280000pt;}
.y94{bottom:216.986667pt;}
.yd6{bottom:221.306667pt;}
.ye3{bottom:225.146667pt;}
.ya0{bottom:229.306667pt;}
.y22{bottom:229.640000pt;}
.y93{bottom:232.346667pt;}
.yd5{bottom:236.506667pt;}
.ye2{bottom:240.346667pt;}
.y9f{bottom:244.666667pt;}
.y21{bottom:245.000000pt;}
.y92{bottom:247.706667pt;}
.y100{bottom:248.506667pt;}
.yd4{bottom:252.826667pt;}
.ye1{bottom:255.706667pt;}
.y9e{bottom:260.026667pt;}
.y20{bottom:260.360000pt;}
.yfc{bottom:261.466667pt;}
.y91{bottom:263.066667pt;}
.yd3{bottom:268.186667pt;}
.ye0{bottom:271.066667pt;}
.y9d{bottom:275.386667pt;}
.y1f{bottom:275.720000pt;}
.y39{bottom:276.026667pt;}
.y90{bottom:278.426667pt;}
.yd2{bottom:284.546667pt;}
.ydf{bottom:286.466667pt;}
.y9c{bottom:290.626667pt;}
.y1e{bottom:290.920000pt;}
.y8f{bottom:293.186667pt;}
.yd1{bottom:300.866667pt;}
.yde{bottom:301.826667pt;}
.y8e{bottom:303.746667pt;}
.y1d{bottom:306.280000pt;}
.yfb{bottom:311.266667pt;}
.y8d{bottom:316.706667pt;}
.yd0{bottom:317.186667pt;}
.y1c{bottom:321.640000pt;}
.y8c{bottom:329.666667pt;}
.ycf{bottom:332.386667pt;}
.yfa{bottom:340.226667pt;}
.y8b{bottom:342.626667pt;}
.yce{bottom:347.746667pt;}
.yf9{bottom:355.426667pt;}
.y8a{bottom:355.586667pt;}
.y37{bottom:359.426667pt;}
.ycd{bottom:363.106667pt;}
.y89{bottom:368.386667pt;}
.yf8{bottom:370.786667pt;}
.y2f{bottom:377.986667pt;}
.ycc{bottom:378.466667pt;}
.y72{bottom:380.546667pt;}
.y88{bottom:383.266667pt;}
.yf7{bottom:386.146667pt;}
.y71{bottom:392.706667pt;}
.y87{bottom:392.866667pt;}
.ycb{bottom:393.826667pt;}
.yf6{bottom:401.506667pt;}
.y70{bottom:402.946667pt;}
.y85{bottom:405.666667pt;}
.yca{bottom:409.026667pt;}
.yf5{bottom:416.866667pt;}
.y84{bottom:421.026667pt;}
.y86{bottom:423.426667pt;}
.yc9{bottom:424.386667pt;}
.y6b{bottom:425.826667pt;}
.yf4{bottom:432.226667pt;}
.y6a{bottom:435.426667pt;}
.y83{bottom:436.386667pt;}
.yc8{bottom:439.746667pt;}
.yf3{bottom:447.426667pt;}
.y69{bottom:447.586667pt;}
.y82{bottom:451.746667pt;}
.yc7{bottom:455.106667pt;}
.y68{bottom:458.306667pt;}
.yf2{bottom:462.786667pt;}
.y81{bottom:467.106667pt;}
.yc6{bottom:470.466667pt;}
.y67{bottom:471.266667pt;}
.yf1{bottom:478.146667pt;}
.y80{bottom:482.466667pt;}
.y66{bottom:484.226667pt;}
.yc5{bottom:485.826667pt;}
.yf0{bottom:493.506667pt;}
.y65{bottom:497.186667pt;}
.y7f{bottom:497.666667pt;}
.yc4{bottom:501.026667pt;}
.y19{bottom:504.386667pt;}
.yef{bottom:508.893333pt;}
.y64{bottom:510.173333pt;}
.y7e{bottom:513.053333pt;}
.yc3{bottom:516.413333pt;}
.y63{bottom:522.973333pt;}
.yee{bottom:524.253333pt;}
.y7d{bottom:528.413333pt;}
.yc2{bottom:531.773333pt;}
.y18{bottom:535.133333pt;}
.y62{bottom:535.933333pt;}
.yed{bottom:539.453333pt;}
.y7c{bottom:543.773333pt;}
.yc1{bottom:547.133333pt;}
.y61{bottom:550.813333pt;}
.y17{bottom:552.893333pt;}
.yec{bottom:554.813333pt;}
.y7b{bottom:559.133333pt;}
.y60{bottom:560.413333pt;}
.yc0{bottom:562.493333pt;}
.yeb{bottom:570.173333pt;}
.y5f{bottom:572.573333pt;}
.y7a{bottom:574.493333pt;}
.ybf{bottom:577.853333pt;}
.y16{bottom:578.173333pt;}
.y6f{bottom:578.333333pt;}
.y5e{bottom:585.533333pt;}
.y6e{bottom:587.933333pt;}
.y79{bottom:589.053333pt;}
.ybe{bottom:593.053333pt;}
.y15{bottom:593.373333pt;}
.y5d{bottom:600.893333pt;}
.y78{bottom:601.373333pt;}
.y6d{bottom:603.293333pt;}
.ybd{bottom:608.413333pt;}
.y77{bottom:611.453333pt;}
.y14{bottom:613.373333pt;}
.y5c{bottom:616.253333pt;}
.ybc{bottom:623.773333pt;}
.y13{bottom:624.093333pt;}
.y5b{bottom:631.453333pt;}
.ybb{bottom:639.133333pt;}
.y12{bottom:644.093333pt;}
.y5a{bottom:646.813333pt;}
.yba{bottom:654.493333pt;}
.y11{bottom:660.413333pt;}
.y59{bottom:662.173333pt;}
.yb9{bottom:669.693333pt;}
.y10{bottom:672.093333pt;}
.y58{bottom:677.533333pt;}
.yb8{bottom:685.053333pt;}
.yf{bottom:690.813333pt;}
.y57{bottom:692.893333pt;}
.yb7{bottom:700.413333pt;}
.y56{bottom:708.093333pt;}
.yb6{bottom:715.773333pt;}
.ye{bottom:718.333333pt;}
.y55{bottom:723.453333pt;}
.yb5{bottom:731.173333pt;}
.y54{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.yb4{bottom:746.533333pt;}
.y53{bottom:754.213333pt;}
.yb3{bottom:761.733333pt;}
.y52{bottom:769.573333pt;}
.yc{bottom:773.573333pt;}
.yb2{bottom:777.093333pt;}
.y51{bottom:784.933333pt;}
.yb1{bottom:792.453333pt;}
.y50{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.yb0{bottom:805.573333pt;}
.y4f{bottom:815.493333pt;}
.yaf{bottom:818.533333pt;}
.ya{bottom:826.853333pt;}
.y4e{bottom:830.853333pt;}
.yae{bottom:831.493333pt;}
.y8{bottom:840.453333pt;}
.yad{bottom:844.453333pt;}
.y4d{bottom:846.213333pt;}
.yac{bottom:857.253333pt;}
.y4c{bottom:861.573333pt;}
.yab{bottom:870.213333pt;}
.y4b{bottom:876.933333pt;}
.yaa{bottom:885.093333pt;}
.y4a{bottom:892.133333pt;}
.ya9{bottom:894.693333pt;}
.y49{bottom:907.493333pt;}
.y48{bottom:922.853333pt;}
.y47{bottom:938.213333pt;}
.y46{bottom:953.600000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.160000pt;}
.h1f{height:12.192000pt;}
.h1d{height:12.320000pt;}
.h23{height:12.320133pt;}
.h10{height:15.392000pt;}
.h15{height:17.760000pt;}
.h1c{height:22.343750pt;}
.h20{height:22.578125pt;}
.hd{height:24.131250pt;}
.h3{height:24.512000pt;}
.hc{height:25.918750pt;}
.h26{height:28.153125pt;}
.h25{height:28.448437pt;}
.h5{height:29.940625pt;}
.h1b{height:30.254687pt;}
.h17{height:33.515625pt;}
.h18{height:33.867188pt;}
.h6{height:34.965625pt;}
.h13{height:35.554688pt;}
.h4{height:37.090625pt;}
.hf{height:37.479688pt;}
.h1a{height:38.672812pt;}
.h14{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h21{height:43.782500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h22{height:49.152000pt;}
.he{height:67.031250pt;}
.ha{height:67.734375pt;}
.h27{height:69.760000pt;}
.h24{height:70.400000pt;}
.h16{height:82.752000pt;}
.h19{height:105.600000pt;}
.h12{height:125.760000pt;}
.h7{height:136.826667pt;}
.h11{height:334.106667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w10{width:57.632000pt;}
.w7{width:101.152000pt;}
.wa{width:145.306667pt;}
.w9{width:160.026667pt;}
.wb{width:163.066667pt;}
.wd{width:176.666667pt;}
.w8{width:178.906667pt;}
.w6{width:195.706667pt;}
.wc{width:197.786667pt;}
.we{width:282.946667pt;}
.w11{width:288.506667pt;}
.wf{width:346.786667pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:5.760000pt;}
.x3{left:7.520000pt;}
.x39{left:9.760000pt;}
.x22{left:13.280000pt;}
.x3d{left:15.040000pt;}
.x16{left:17.760000pt;}
.x26{left:21.600000pt;}
.x29{left:22.560000pt;}
.x1a{left:24.320000pt;}
.x27{left:25.440000pt;}
.x2b{left:27.040000pt;}
.x20{left:28.960000pt;}
.x18{left:30.280000pt;}
.x19{left:31.880000pt;}
.x3b{left:33.120000pt;}
.x24{left:34.080000pt;}
.x40{left:36.480000pt;}
.x3e{left:37.760000pt;}
.x25{left:38.720000pt;}
.x6{left:40.480000pt;}
.x49{left:41.600000pt;}
.x3a{left:43.360000pt;}
.x38{left:45.120000pt;}
.x47{left:46.880000pt;}
.x2{left:47.999988pt;}
.x3f{left:49.120000pt;}
.x3c{left:50.560000pt;}
.x28{left:52.480000pt;}
.x1{left:53.919988pt;}
.x9{left:54.879988pt;}
.x51{left:56.672000pt;}
.x1b{left:58.239988pt;}
.x2a{left:70.400000pt;}
.x44{left:75.880000pt;}
.x4c{left:78.399988pt;}
.x48{left:81.466667pt;}
.x31{left:85.471988pt;}
.x4{left:89.632000pt;}
.x4b{left:91.866667pt;}
.x4a{left:93.466667pt;}
.x5{left:96.031988pt;}
.x4f{left:98.266667pt;}
.xa{left:110.591988pt;}
.x46{left:112.986667pt;}
.x12{left:119.071988pt;}
.x33{left:120.031988pt;}
.xf{left:132.031988pt;}
.x50{left:133.946667pt;}
.x36{left:154.266667pt;}
.x43{left:177.946667pt;}
.x1f{left:187.386667pt;}
.x11{left:214.746655pt;}
.x41{left:224.506655pt;}
.xd{left:230.586655pt;}
.x1e{left:258.146655pt;}
.x35{left:265.026655pt;}
.x42{left:273.026655pt;}
.x34{left:282.626655pt;}
.x2e{left:285.666655pt;}
.xe{left:287.106655pt;}
.x21{left:289.186667pt;}
.x2c{left:297.506655pt;}
.x13{left:300.866655pt;}
.x10{left:302.466655pt;}
.xb{left:335.266655pt;}
.x45{left:355.266667pt;}
.x8{left:408.066655pt;}
.x1d{left:410.626655pt;}
.xc{left:412.706655pt;}
.x14{left:413.666655pt;}
.x1c{left:425.186655pt;}
.x4d{left:426.493321pt;}
.x4e{left:450.493321pt;}
.x37{left:463.933333pt;}
.x23{left:468.733333pt;}
.x2d{left:556.253321pt;}
.x15{left:570.973333pt;}
.x30{left:586.813321pt;}
.x2f{left:590.333321pt;}
.x32{left:593.213321pt;}
.x7{left:722.213333pt;}
}




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