
    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_ec5da49806b0dfb646c9a7d5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_33d703499760b3564d36485d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_359962195d5b2bc57c78ecd4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5e90ba866e8e6e510a46f56f.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87c8b8ee0b8032971d2d2339.woff')format("woff");}.ff6{font-family:ff6;line-height:0.940430;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_5b1cf299ad92c1dd8ceeab0c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_7cf974545e41ffe4e7644e99.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_4934b480bdfef39cddd2669f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_cf9f6d16430008c58f469fb1.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;}
.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;}
.ls5{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:16.506720px;}
.ls9{letter-spacing:46.026720px;}
.ls3{letter-spacing:636.840000px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-7.888320px;}
._4{margin-left:-6.760080px;}
._7{margin-left:-4.783920px;}
._9{margin-left:-3.507600px;}
._8{margin-left:-2.304000px;}
._2{margin-left:-1.303920px;}
._1{width:1.290720px;}
._f{width:2.354640px;}
._3{width:3.480240px;}
._6{width:4.500000px;}
._18{width:5.514480px;}
._d{width:6.537840px;}
._c{width:7.818240px;}
._b{width:9.501840px;}
._a{width:11.328000px;}
._10{width:12.803280px;}
._12{width:13.804560px;}
._16{width:16.228080px;}
._1a{width:18.250800px;}
._19{width:19.422000px;}
._1b{width:20.880240px;}
._e{width:21.991680px;}
._15{width:23.425920px;}
._31{width:24.534240px;}
._27{width:25.962960px;}
._1d{width:27.155040px;}
._1c{width:28.266480px;}
._25{width:29.879520px;}
._71{width:32.509440px;}
._30{width:33.650640px;}
._6a{width:35.046480px;}
._38{width:36.095040px;}
._4e{width:39.166800px;}
._54{width:40.517280px;}
._3b{width:41.557200px;}
._20{width:43.051200px;}
._73{width:44.179920px;}
._22{width:45.238320px;}
._5f{width:48.405600px;}
._23{width:49.720320px;}
._50{width:51.725520px;}
._61{width:53.090880px;}
._5a{width:54.740160px;}
._72{width:56.198400px;}
._42{width:57.274080px;}
._47{width:58.708320px;}
._59{width:60.238080px;}
._44{width:61.696320px;}
._67{width:63.405360px;}
._26{width:67.170240px;}
._55{width:68.425200px;}
._24{width:69.704160px;}
._6f{width:70.839600px;}
._70{width:71.857200px;}
._2b{width:73.528800px;}
._64{width:77.413200px;}
._46{width:78.787680px;}
._29{width:80.649360px;}
._3e{width:81.775680px;}
._3f{width:82.858080px;}
._1f{width:86.472720px;}
._68{width:87.930960px;}
._2a{width:89.341200px;}
._4c{width:90.381120px;}
._34{width:92.807280px;}
._2c{width:93.906960px;}
._2d{width:94.958640px;}
._2f{width:98.484480px;}
._36{width:101.317200px;}
._65{width:104.424720px;}
._40{width:105.443760px;}
._5d{width:106.611840px;}
._4d{width:108.763200px;}
._6c{width:110.639760px;}
._6e{width:111.966240px;}
._6d{width:113.118480px;}
._2e{width:114.739200px;}
._57{width:117.010080px;}
._3a{width:118.985280px;}
._5c{width:120.057840px;}
._49{width:121.133520px;}
._51{width:125.077680px;}
._60{width:129.440160px;}
._39{width:130.814640px;}
._58{width:132.009840px;}
._66{width:133.547280px;}
._5{width:136.122000px;}
._35{width:137.687040px;}
._4a{width:148.025520px;}
._4b{width:150.176880px;}
._5b{width:153.129120px;}
._53{width:159.642960px;}
._21{width:160.694640px;}
._33{width:164.579040px;}
._14{width:168.381120px;}
._13{width:169.778160px;}
._56{width:170.973360px;}
._69{width:176.435520px;}
._5e{width:177.726240px;}
._3c{width:179.483280px;}
._3d{width:181.862160px;}
._4f{width:187.228080px;}
._43{width:190.398480px;}
._62{width:203.841360px;}
._45{width:212.267520px;}
._28{width:215.056800px;}
._48{width:216.092160px;}
._52{width:220.215600px;}
._32{width:221.351040px;}
._41{width:223.203600px;}
._63{width:234.498240px;}
._6b{width:238.884720px;}
._1e{width:241.609680px;}
._37{width:249.258960px;}
._17{width:994.107600px;}
._11{width:1071.915120px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.240000px;}
.y99{bottom:11.880000px;}
.yd6{bottom:11.910000px;}
.yc9{bottom:11.925000px;}
.y9a{bottom:20.340000px;}
.ya1{bottom:20.520000px;}
.yd4{bottom:20.550000px;}
.yca{bottom:20.565000px;}
.y9e{bottom:28.980000px;}
.yac{bottom:29.160000px;}
.yd0{bottom:29.190000px;}
.yc8{bottom:29.205000px;}
.yc{bottom:37.080000px;}
.ya5{bottom:37.614000px;}
.ya0{bottom:37.620000px;}
.yab{bottom:37.800000px;}
.yd3{bottom:37.830000px;}
.yc4{bottom:37.845000px;}
.ya7{bottom:46.254000px;}
.y9d{bottom:46.260000px;}
.yc7{bottom:46.305000px;}
.yae{bottom:46.440000px;}
.ycf{bottom:46.470000px;}
.ya6{bottom:54.894000px;}
.y9f{bottom:54.900000px;}
.yc3{bottom:54.945000px;}
.yb1{bottom:55.080000px;}
.yd2{bottom:55.110000px;}
.yb{bottom:57.060000px;}
.ya2{bottom:63.540000px;}
.yc6{bottom:63.585000px;}
.yb2{bottom:63.720000px;}
.yd5{bottom:63.750000px;}
.ya3{bottom:72.180000px;}
.yaf{bottom:72.225000px;}
.yb4{bottom:72.360000px;}
.yd1{bottom:72.390000px;}
.ya{bottom:72.576000px;}
.yd9{bottom:80.820000px;}
.yc5{bottom:80.865000px;}
.yda{bottom:89.460000px;}
.yb6{bottom:89.490000px;}
.ycb{bottom:89.505000px;}
.y41{bottom:111.456000px;}
.yed{bottom:114.156000px;}
.y10b{bottom:114.336000px;}
.ya4{bottom:119.736000px;}
.yea{bottom:124.776000px;}
.y97{bottom:125.136000px;}
.y40{bottom:128.736000px;}
.yc0{bottom:131.436000px;}
.y76{bottom:131.616000px;}
.ye9{bottom:142.056000px;}
.y96{bottom:142.416000px;}
.y10a{bottom:144.216000px;}
.y3f{bottom:146.016000px;}
.y75{bottom:148.716000px;}
.ye8{bottom:159.330000px;}
.y95{bottom:159.690000px;}
.y109{bottom:161.490000px;}
.y3e{bottom:163.290000px;}
.y74{bottom:165.990000px;}
.ye7{bottom:176.610000px;}
.y94{bottom:176.790000px;}
.yb9{bottom:176.970000px;}
.y108{bottom:178.770000px;}
.y3d{bottom:180.570000px;}
.y73{bottom:183.270000px;}
.y9c{bottom:192.090000px;}
.ye6{bottom:193.710000px;}
.y93{bottom:194.070000px;}
.y107{bottom:196.050000px;}
.y3c{bottom:197.670000px;}
.y72{bottom:200.550000px;}
.ye5{bottom:210.990000px;}
.y92{bottom:211.350000px;}
.y106{bottom:213.330000px;}
.y3b{bottom:214.950000px;}
.yec{bottom:217.650000px;}
.y71{bottom:217.830000px;}
.ye4{bottom:228.270000px;}
.y91{bottom:228.630000px;}
.y105{bottom:230.430000px;}
.y3a{bottom:232.230000px;}
.ybf{bottom:234.930000px;}
.y70{bottom:235.110000px;}
.ye3{bottom:245.550000px;}
.y90{bottom:245.910000px;}
.y104{bottom:247.710000px;}
.y39{bottom:249.510000px;}
.y6f{bottom:252.210000px;}
.ye2{bottom:262.830000px;}
.y8f{bottom:263.190000px;}
.y103{bottom:264.990000px;}
.y38{bottom:266.790000px;}
.y6e{bottom:269.490000px;}
.ye1{bottom:280.110000px;}
.y8e{bottom:280.290000px;}
.yb8{bottom:280.470000px;}
.y98{bottom:281.730000px;}
.y102{bottom:282.270000px;}
.y37{bottom:284.070000px;}
.y6d{bottom:286.770000px;}
.ye0{bottom:297.210000px;}
.y8d{bottom:297.570000px;}
.y101{bottom:299.550000px;}
.y36{bottom:301.170000px;}
.y6c{bottom:304.050000px;}
.ydf{bottom:314.490000px;}
.y8c{bottom:314.850000px;}
.y100{bottom:316.650000px;}
.y35{bottom:318.450000px;}
.ybe{bottom:321.150000px;}
.y6b{bottom:321.330000px;}
.yde{bottom:331.770000px;}
.y8b{bottom:332.130000px;}
.yff{bottom:333.930000px;}
.y34{bottom:335.730000px;}
.y6a{bottom:338.475000px;}
.ydd{bottom:349.095000px;}
.y8a{bottom:349.455000px;}
.yfe{bottom:351.255000px;}
.y33{bottom:353.055000px;}
.y69{bottom:355.755000px;}
.ydc{bottom:366.375000px;}
.y89{bottom:366.735000px;}
.yfd{bottom:368.535000px;}
.y32{bottom:370.335000px;}
.y68{bottom:373.035000px;}
.ydb{bottom:383.475000px;}
.y88{bottom:383.835000px;}
.yb7{bottom:384.015000px;}
.yfc{bottom:385.815000px;}
.y31{bottom:387.615000px;}
.y67{bottom:390.315000px;}
.yd8{bottom:399.495000px;}
.y87{bottom:401.115000px;}
.yfb{bottom:403.095000px;}
.y30{bottom:404.715000px;}
.y66{bottom:407.595000px;}
.y86{bottom:418.395000px;}
.yfa{bottom:420.195000px;}
.y2f{bottom:421.995000px;}
.ybd{bottom:424.695000px;}
.y65{bottom:424.875000px;}
.y85{bottom:435.675000px;}
.yf9{bottom:437.475000px;}
.y2e{bottom:441.435000px;}
.y64{bottom:441.975000px;}
.y84{bottom:452.955000px;}
.yf8{bottom:454.755000px;}
.y2d{bottom:458.715000px;}
.y63{bottom:459.255000px;}
.y83{bottom:470.235000px;}
.yf7{bottom:472.035000px;}
.yeb{bottom:473.295000px;}
.y2c{bottom:475.995000px;}
.y62{bottom:476.535000px;}
.y82{bottom:487.335000px;}
.yf6{bottom:489.315000px;}
.y2b{bottom:493.275000px;}
.y61{bottom:493.815000px;}
.y81{bottom:504.615000px;}
.yd7{bottom:506.235000px;}
.yf5{bottom:506.595000px;}
.y2a{bottom:510.555000px;}
.y60{bottom:511.095000px;}
.yb5{bottom:520.635000px;}
.y80{bottom:521.895000px;}
.yf4{bottom:523.695000px;}
.y29{bottom:527.835000px;}
.ybc{bottom:528.195000px;}
.y5f{bottom:528.375000px;}
.y7f{bottom:539.175000px;}
.yf3{bottom:540.975000px;}
.y28{bottom:544.935000px;}
.y5e{bottom:545.475000px;}
.y7e{bottom:556.455000px;}
.yf2{bottom:558.255000px;}
.y27{bottom:562.215000px;}
.y5d{bottom:562.755000px;}
.y7d{bottom:573.555000px;}
.yf1{bottom:575.535000px;}
.y26{bottom:579.495000px;}
.y5c{bottom:580.035000px;}
.y7c{bottom:590.835000px;}
.yf0{bottom:592.815000px;}
.yce{bottom:595.875000px;}
.y25{bottom:596.775000px;}
.y5b{bottom:597.315000px;}
.y7b{bottom:608.145000px;}
.yef{bottom:609.945000px;}
.y24{bottom:614.085000px;}
.ybb{bottom:614.445000px;}
.y5a{bottom:614.625000px;}
.yee{bottom:623.985000px;}
.y7a{bottom:625.425000px;}
.yb3{bottom:627.405000px;}
.yba{bottom:628.485000px;}
.y23{bottom:631.365000px;}
.y59{bottom:631.905000px;}
.y79{bottom:642.705000px;}
.y22{bottom:648.465000px;}
.y58{bottom:649.005000px;}
.y78{bottom:659.985000px;}
.y21{bottom:665.745000px;}
.y57{bottom:666.285000px;}
.y77{bottom:674.025000px;}
.y20{bottom:683.025000px;}
.y56{bottom:683.565000px;}
.ycd{bottom:685.545000px;}
.y1f{bottom:700.305000px;}
.y55{bottom:700.845000px;}
.yb0{bottom:717.045000px;}
.y1e{bottom:717.585000px;}
.y54{bottom:718.125000px;}
.y1d{bottom:734.865000px;}
.y53{bottom:735.225000px;}
.y1c{bottom:751.965000px;}
.y52{bottom:752.505000px;}
.y1b{bottom:769.245000px;}
.y51{bottom:769.785000px;}
.ycc{bottom:775.185000px;}
.y1a{bottom:786.525000px;}
.y50{bottom:787.065000px;}
.y19{bottom:803.805000px;}
.y4f{bottom:804.345000px;}
.yad{bottom:806.685000px;}
.y18{bottom:821.085000px;}
.y4e{bottom:821.625000px;}
.y17{bottom:838.365000px;}
.y4d{bottom:838.725000px;}
.y16{bottom:855.465000px;}
.y4c{bottom:856.005000px;}
.yc2{bottom:864.825000px;}
.y15{bottom:872.790000px;}
.y4b{bottom:873.330000px;}
.y4a{bottom:890.610000px;}
.y14{bottom:892.230000px;}
.yaa{bottom:896.370000px;}
.y49{bottom:907.890000px;}
.y13{bottom:910.050000px;}
.y48{bottom:925.170000px;}
.y12{bottom:928.950000px;}
.y47{bottom:942.270000px;}
.y11{bottom:948.030000px;}
.y46{bottom:959.550000px;}
.y10{bottom:966.570000px;}
.ya9{bottom:968.730000px;}
.yc1{bottom:971.790000px;}
.y45{bottom:976.830000px;}
.yf{bottom:984.390000px;}
.y44{bottom:994.110000px;}
.ye{bottom:1005.090000px;}
.ya8{bottom:1006.170000px;}
.y43{bottom:1011.390000px;}
.yd{bottom:1025.790000px;}
.y42{bottom:1028.490000px;}
.y9{bottom:1047.390000px;}
.y8{bottom:1067.730000px;}
.y7{bottom:1085.010000px;}
.y6{bottom:1103.010000px;}
.y5{bottom:1119.750000px;}
.y4{bottom:1162.080000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:34.380000px;}
.hf{height:34.560000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.302656px;}
.h14{height:43.506914px;}
.hb{height:45.461953px;}
.h9{height:46.251562px;}
.h8{height:46.736719px;}
.h3{height:50.273438px;}
.h4{height:50.800781px;}
.he{height:68.940000px;}
.h6{height:71.613281px;}
.hd{height:86.220000px;}
.h10{height:86.256000px;}
.h12{height:86.400000px;}
.h13{height:103.500000px;}
.h11{height:103.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:110.340000px;}
.w8{width:111.780000px;}
.w4{width:124.776000px;}
.w7{width:129.816000px;}
.wb{width:135.936000px;}
.wa{width:136.656000px;}
.w6{width:142.740000px;}
.w9{width:144.396000px;}
.w5{width:163.650000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:108.035987px;}
.x23{left:110.015987px;}
.x9{left:114.875987px;}
.x20{left:121.715987px;}
.x18{left:124.235987px;}
.x8{left:125.495987px;}
.x1{left:129.275987px;}
.x11{left:135.575987px;}
.x5{left:168.149987px;}
.xb{left:194.069987px;}
.x12{left:220.170000px;}
.x1a{left:221.430000px;}
.x1e{left:231.149987px;}
.x10{left:233.849987px;}
.x21{left:237.449987px;}
.xe{left:255.269987px;}
.x16{left:294.914987px;}
.x13{left:346.035000px;}
.x1b{left:366.915000px;}
.xc{left:369.074987px;}
.xd{left:378.974987px;}
.xa{left:384.014987px;}
.x7{left:386.354987px;}
.x25{left:388.154987px;}
.x26{left:400.214987px;}
.x19{left:406.874987px;}
.x6{left:412.274987px;}
.x24{left:426.314987px;}
.x3{left:446.474987px;}
.x1c{left:504.645000px;}
.x14{left:510.765000px;}
.x4{left:518.504987px;}
.x1f{left:635.864987px;}
.x1d{left:648.465000px;}
.x15{left:654.585000px;}
.x22{left:683.969987px;}
.xf{left:717.629987px;}
.x17{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:14.672640pt;}
.ls9{letter-spacing:40.912640pt;}
.ls3{letter-spacing:566.080000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-7.011840pt;}
._4{margin-left:-6.008960pt;}
._7{margin-left:-4.252373pt;}
._9{margin-left:-3.117867pt;}
._8{margin-left:-2.048000pt;}
._2{margin-left:-1.159040pt;}
._1{width:1.147307pt;}
._f{width:2.093013pt;}
._3{width:3.093547pt;}
._6{width:4.000000pt;}
._18{width:4.901760pt;}
._d{width:5.811413pt;}
._c{width:6.949547pt;}
._b{width:8.446080pt;}
._a{width:10.069333pt;}
._10{width:11.380693pt;}
._12{width:12.270720pt;}
._16{width:14.424960pt;}
._1a{width:16.222933pt;}
._19{width:17.264000pt;}
._1b{width:18.560213pt;}
._e{width:19.548160pt;}
._15{width:20.823040pt;}
._31{width:21.808213pt;}
._27{width:23.078187pt;}
._1d{width:24.137813pt;}
._1c{width:25.125760pt;}
._25{width:26.559573pt;}
._71{width:28.897280pt;}
._30{width:29.911680pt;}
._6a{width:31.152427pt;}
._38{width:32.084480pt;}
._4e{width:34.814933pt;}
._54{width:36.015360pt;}
._3b{width:36.939733pt;}
._20{width:38.267733pt;}
._73{width:39.271040pt;}
._22{width:40.211840pt;}
._5f{width:43.027200pt;}
._23{width:44.195840pt;}
._50{width:45.978240pt;}
._61{width:47.191893pt;}
._5a{width:48.657920pt;}
._72{width:49.954133pt;}
._42{width:50.910293pt;}
._47{width:52.185173pt;}
._59{width:53.544960pt;}
._44{width:54.841173pt;}
._67{width:56.360320pt;}
._26{width:59.706880pt;}
._55{width:60.822400pt;}
._24{width:61.959253pt;}
._6f{width:62.968533pt;}
._70{width:63.873067pt;}
._2b{width:65.358933pt;}
._64{width:68.811733pt;}
._46{width:70.033493pt;}
._29{width:71.688320pt;}
._3e{width:72.689493pt;}
._3f{width:73.651627pt;}
._1f{width:76.864640pt;}
._68{width:78.160853pt;}
._2a{width:79.414400pt;}
._4c{width:80.338773pt;}
._34{width:82.495360pt;}
._2c{width:83.472853pt;}
._2d{width:84.407680pt;}
._2f{width:87.541760pt;}
._36{width:90.059733pt;}
._65{width:92.821973pt;}
._40{width:93.727787pt;}
._5d{width:94.766080pt;}
._4d{width:96.678400pt;}
._6c{width:98.346453pt;}
._6e{width:99.525547pt;}
._6d{width:100.549760pt;}
._2e{width:101.990400pt;}
._57{width:104.008960pt;}
._3a{width:105.764693pt;}
._5c{width:106.718080pt;}
._49{width:107.674240pt;}
._51{width:111.180160pt;}
._60{width:115.057920pt;}
._39{width:116.279680pt;}
._58{width:117.342080pt;}
._66{width:118.708693pt;}
._5{width:120.997333pt;}
._35{width:122.388480pt;}
._4a{width:131.578240pt;}
._4b{width:133.490560pt;}
._5b{width:136.114773pt;}
._53{width:141.904853pt;}
._21{width:142.839680pt;}
._33{width:146.292480pt;}
._14{width:149.672107pt;}
._13{width:150.913920pt;}
._56{width:151.976320pt;}
._69{width:156.831573pt;}
._5e{width:157.978880pt;}
._3c{width:159.540693pt;}
._3d{width:161.655253pt;}
._4f{width:166.424960pt;}
._43{width:169.243093pt;}
._62{width:181.192320pt;}
._45{width:188.682240pt;}
._28{width:191.161600pt;}
._48{width:192.081920pt;}
._52{width:195.747200pt;}
._32{width:196.756480pt;}
._41{width:198.403200pt;}
._63{width:208.442880pt;}
._6b{width:212.341973pt;}
._1e{width:214.764160pt;}
._37{width:221.563520pt;}
._17{width:883.651200pt;}
._11{width:952.813440pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.880000pt;}
.y99{bottom:10.560000pt;}
.yd6{bottom:10.586667pt;}
.yc9{bottom:10.600000pt;}
.y9a{bottom:18.080000pt;}
.ya1{bottom:18.240000pt;}
.yd4{bottom:18.266667pt;}
.yca{bottom:18.280000pt;}
.y9e{bottom:25.760000pt;}
.yac{bottom:25.920000pt;}
.yd0{bottom:25.946667pt;}
.yc8{bottom:25.960000pt;}
.yc{bottom:32.960000pt;}
.ya5{bottom:33.434667pt;}
.ya0{bottom:33.440000pt;}
.yab{bottom:33.600000pt;}
.yd3{bottom:33.626667pt;}
.yc4{bottom:33.640000pt;}
.ya7{bottom:41.114667pt;}
.y9d{bottom:41.120000pt;}
.yc7{bottom:41.160000pt;}
.yae{bottom:41.280000pt;}
.ycf{bottom:41.306667pt;}
.ya6{bottom:48.794667pt;}
.y9f{bottom:48.800000pt;}
.yc3{bottom:48.840000pt;}
.yb1{bottom:48.960000pt;}
.yd2{bottom:48.986667pt;}
.yb{bottom:50.720000pt;}
.ya2{bottom:56.480000pt;}
.yc6{bottom:56.520000pt;}
.yb2{bottom:56.640000pt;}
.yd5{bottom:56.666667pt;}
.ya3{bottom:64.160000pt;}
.yaf{bottom:64.200000pt;}
.yb4{bottom:64.320000pt;}
.yd1{bottom:64.346667pt;}
.ya{bottom:64.512000pt;}
.yd9{bottom:71.840000pt;}
.yc5{bottom:71.880000pt;}
.yda{bottom:79.520000pt;}
.yb6{bottom:79.546667pt;}
.ycb{bottom:79.560000pt;}
.y41{bottom:99.072000pt;}
.yed{bottom:101.472000pt;}
.y10b{bottom:101.632000pt;}
.ya4{bottom:106.432000pt;}
.yea{bottom:110.912000pt;}
.y97{bottom:111.232000pt;}
.y40{bottom:114.432000pt;}
.yc0{bottom:116.832000pt;}
.y76{bottom:116.992000pt;}
.ye9{bottom:126.272000pt;}
.y96{bottom:126.592000pt;}
.y10a{bottom:128.192000pt;}
.y3f{bottom:129.792000pt;}
.y75{bottom:132.192000pt;}
.ye8{bottom:141.626667pt;}
.y95{bottom:141.946667pt;}
.y109{bottom:143.546667pt;}
.y3e{bottom:145.146667pt;}
.y74{bottom:147.546667pt;}
.ye7{bottom:156.986667pt;}
.y94{bottom:157.146667pt;}
.yb9{bottom:157.306667pt;}
.y108{bottom:158.906667pt;}
.y3d{bottom:160.506667pt;}
.y73{bottom:162.906667pt;}
.y9c{bottom:170.746667pt;}
.ye6{bottom:172.186667pt;}
.y93{bottom:172.506667pt;}
.y107{bottom:174.266667pt;}
.y3c{bottom:175.706667pt;}
.y72{bottom:178.266667pt;}
.ye5{bottom:187.546667pt;}
.y92{bottom:187.866667pt;}
.y106{bottom:189.626667pt;}
.y3b{bottom:191.066667pt;}
.yec{bottom:193.466667pt;}
.y71{bottom:193.626667pt;}
.ye4{bottom:202.906667pt;}
.y91{bottom:203.226667pt;}
.y105{bottom:204.826667pt;}
.y3a{bottom:206.426667pt;}
.ybf{bottom:208.826667pt;}
.y70{bottom:208.986667pt;}
.ye3{bottom:218.266667pt;}
.y90{bottom:218.586667pt;}
.y104{bottom:220.186667pt;}
.y39{bottom:221.786667pt;}
.y6f{bottom:224.186667pt;}
.ye2{bottom:233.626667pt;}
.y8f{bottom:233.946667pt;}
.y103{bottom:235.546667pt;}
.y38{bottom:237.146667pt;}
.y6e{bottom:239.546667pt;}
.ye1{bottom:248.986667pt;}
.y8e{bottom:249.146667pt;}
.yb8{bottom:249.306667pt;}
.y98{bottom:250.426667pt;}
.y102{bottom:250.906667pt;}
.y37{bottom:252.506667pt;}
.y6d{bottom:254.906667pt;}
.ye0{bottom:264.186667pt;}
.y8d{bottom:264.506667pt;}
.y101{bottom:266.266667pt;}
.y36{bottom:267.706667pt;}
.y6c{bottom:270.266667pt;}
.ydf{bottom:279.546667pt;}
.y8c{bottom:279.866667pt;}
.y100{bottom:281.466667pt;}
.y35{bottom:283.066667pt;}
.ybe{bottom:285.466667pt;}
.y6b{bottom:285.626667pt;}
.yde{bottom:294.906667pt;}
.y8b{bottom:295.226667pt;}
.yff{bottom:296.826667pt;}
.y34{bottom:298.426667pt;}
.y6a{bottom:300.866667pt;}
.ydd{bottom:310.306667pt;}
.y8a{bottom:310.626667pt;}
.yfe{bottom:312.226667pt;}
.y33{bottom:313.826667pt;}
.y69{bottom:316.226667pt;}
.ydc{bottom:325.666667pt;}
.y89{bottom:325.986667pt;}
.yfd{bottom:327.586667pt;}
.y32{bottom:329.186667pt;}
.y68{bottom:331.586667pt;}
.ydb{bottom:340.866667pt;}
.y88{bottom:341.186667pt;}
.yb7{bottom:341.346667pt;}
.yfc{bottom:342.946667pt;}
.y31{bottom:344.546667pt;}
.y67{bottom:346.946667pt;}
.yd8{bottom:355.106667pt;}
.y87{bottom:356.546667pt;}
.yfb{bottom:358.306667pt;}
.y30{bottom:359.746667pt;}
.y66{bottom:362.306667pt;}
.y86{bottom:371.906667pt;}
.yfa{bottom:373.506667pt;}
.y2f{bottom:375.106667pt;}
.ybd{bottom:377.506667pt;}
.y65{bottom:377.666667pt;}
.y85{bottom:387.266667pt;}
.yf9{bottom:388.866667pt;}
.y2e{bottom:392.386667pt;}
.y64{bottom:392.866667pt;}
.y84{bottom:402.626667pt;}
.yf8{bottom:404.226667pt;}
.y2d{bottom:407.746667pt;}
.y63{bottom:408.226667pt;}
.y83{bottom:417.986667pt;}
.yf7{bottom:419.586667pt;}
.yeb{bottom:420.706667pt;}
.y2c{bottom:423.106667pt;}
.y62{bottom:423.586667pt;}
.y82{bottom:433.186667pt;}
.yf6{bottom:434.946667pt;}
.y2b{bottom:438.466667pt;}
.y61{bottom:438.946667pt;}
.y81{bottom:448.546667pt;}
.yd7{bottom:449.986667pt;}
.yf5{bottom:450.306667pt;}
.y2a{bottom:453.826667pt;}
.y60{bottom:454.306667pt;}
.yb5{bottom:462.786667pt;}
.y80{bottom:463.906667pt;}
.yf4{bottom:465.506667pt;}
.y29{bottom:469.186667pt;}
.ybc{bottom:469.506667pt;}
.y5f{bottom:469.666667pt;}
.y7f{bottom:479.266667pt;}
.yf3{bottom:480.866667pt;}
.y28{bottom:484.386667pt;}
.y5e{bottom:484.866667pt;}
.y7e{bottom:494.626667pt;}
.yf2{bottom:496.226667pt;}
.y27{bottom:499.746667pt;}
.y5d{bottom:500.226667pt;}
.y7d{bottom:509.826667pt;}
.yf1{bottom:511.586667pt;}
.y26{bottom:515.106667pt;}
.y5c{bottom:515.586667pt;}
.y7c{bottom:525.186667pt;}
.yf0{bottom:526.946667pt;}
.yce{bottom:529.666667pt;}
.y25{bottom:530.466667pt;}
.y5b{bottom:530.946667pt;}
.y7b{bottom:540.573333pt;}
.yef{bottom:542.173333pt;}
.y24{bottom:545.853333pt;}
.ybb{bottom:546.173333pt;}
.y5a{bottom:546.333333pt;}
.yee{bottom:554.653333pt;}
.y7a{bottom:555.933333pt;}
.yb3{bottom:557.693333pt;}
.yba{bottom:558.653333pt;}
.y23{bottom:561.213333pt;}
.y59{bottom:561.693333pt;}
.y79{bottom:571.293333pt;}
.y22{bottom:576.413333pt;}
.y58{bottom:576.893333pt;}
.y78{bottom:586.653333pt;}
.y21{bottom:591.773333pt;}
.y57{bottom:592.253333pt;}
.y77{bottom:599.133333pt;}
.y20{bottom:607.133333pt;}
.y56{bottom:607.613333pt;}
.ycd{bottom:609.373333pt;}
.y1f{bottom:622.493333pt;}
.y55{bottom:622.973333pt;}
.yb0{bottom:637.373333pt;}
.y1e{bottom:637.853333pt;}
.y54{bottom:638.333333pt;}
.y1d{bottom:653.213333pt;}
.y53{bottom:653.533333pt;}
.y1c{bottom:668.413333pt;}
.y52{bottom:668.893333pt;}
.y1b{bottom:683.773333pt;}
.y51{bottom:684.253333pt;}
.ycc{bottom:689.053333pt;}
.y1a{bottom:699.133333pt;}
.y50{bottom:699.613333pt;}
.y19{bottom:714.493333pt;}
.y4f{bottom:714.973333pt;}
.yad{bottom:717.053333pt;}
.y18{bottom:729.853333pt;}
.y4e{bottom:730.333333pt;}
.y17{bottom:745.213333pt;}
.y4d{bottom:745.533333pt;}
.y16{bottom:760.413333pt;}
.y4c{bottom:760.893333pt;}
.yc2{bottom:768.733333pt;}
.y15{bottom:775.813333pt;}
.y4b{bottom:776.293333pt;}
.y4a{bottom:791.653333pt;}
.y14{bottom:793.093333pt;}
.yaa{bottom:796.773333pt;}
.y49{bottom:807.013333pt;}
.y13{bottom:808.933333pt;}
.y48{bottom:822.373333pt;}
.y12{bottom:825.733333pt;}
.y47{bottom:837.573333pt;}
.y11{bottom:842.693333pt;}
.y46{bottom:852.933333pt;}
.y10{bottom:859.173333pt;}
.ya9{bottom:861.093333pt;}
.yc1{bottom:863.813333pt;}
.y45{bottom:868.293333pt;}
.yf{bottom:875.013333pt;}
.y44{bottom:883.653333pt;}
.ye{bottom:893.413333pt;}
.ya8{bottom:894.373333pt;}
.y43{bottom:899.013333pt;}
.yd{bottom:911.813333pt;}
.y42{bottom:914.213333pt;}
.y9{bottom:931.013333pt;}
.y8{bottom:949.093333pt;}
.y7{bottom:964.453333pt;}
.y6{bottom:980.453333pt;}
.y5{bottom:995.333333pt;}
.y4{bottom:1032.960000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:30.560000pt;}
.hf{height:30.720000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.491250pt;}
.h14{height:38.672812pt;}
.hb{height:40.410625pt;}
.h9{height:41.112500pt;}
.h8{height:41.543750pt;}
.h3{height:44.687500pt;}
.h4{height:45.156250pt;}
.he{height:61.280000pt;}
.h6{height:63.656250pt;}
.hd{height:76.640000pt;}
.h10{height:76.672000pt;}
.h12{height:76.800000pt;}
.h13{height:92.000000pt;}
.h11{height:92.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:98.080000pt;}
.w8{width:99.360000pt;}
.w4{width:110.912000pt;}
.w7{width:115.392000pt;}
.wb{width:120.832000pt;}
.wa{width:121.472000pt;}
.w6{width:126.880000pt;}
.w9{width:128.352000pt;}
.w5{width:145.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x23{left:97.791988pt;}
.x9{left:102.111988pt;}
.x20{left:108.191988pt;}
.x18{left:110.431988pt;}
.x8{left:111.551988pt;}
.x1{left:114.911988pt;}
.x11{left:120.511988pt;}
.x5{left:149.466655pt;}
.xb{left:172.506655pt;}
.x12{left:195.706667pt;}
.x1a{left:196.826667pt;}
.x1e{left:205.466655pt;}
.x10{left:207.866655pt;}
.x21{left:211.066655pt;}
.xe{left:226.906655pt;}
.x16{left:262.146655pt;}
.x13{left:307.586667pt;}
.x1b{left:326.146667pt;}
.xc{left:328.066655pt;}
.xd{left:336.866655pt;}
.xa{left:341.346655pt;}
.x7{left:343.426655pt;}
.x25{left:345.026655pt;}
.x26{left:355.746655pt;}
.x19{left:361.666655pt;}
.x6{left:366.466655pt;}
.x24{left:378.946655pt;}
.x3{left:396.866655pt;}
.x1c{left:448.573333pt;}
.x14{left:454.013333pt;}
.x4{left:460.893322pt;}
.x1f{left:565.213322pt;}
.x1d{left:576.413333pt;}
.x15{left:581.853333pt;}
.x22{left:607.973322pt;}
.xf{left:637.893322pt;}
.x17{left:698.053322pt;}
}




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