
    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_a6d4d786f45e928de1869199.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0d7af6d9c02ff5ee947c8462.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_620f0c1385c763beead016ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_fc2762a5857b29df7aee4ba0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_06bd9a7ff450e421786f19a2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ec3866f2ef91651319b1a99f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8804c9050c6093ee55f23b4a.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_e9d6e9192a95c2a327f8f23b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_349178bac3793205d5526c71.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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_c55d48aa7731aad189945729.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_50e38ce752a2074ff6d92540.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:27.360000px;}
.ls13{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.254000px;}
.lsc{letter-spacing:-0.942000px;}
.ls14{letter-spacing:-0.810000px;}
.ls2{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.120960px;}
.ls3{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.180000px;}
.lse{letter-spacing:0.184200px;}
.lsd{letter-spacing:0.234600px;}
.ls11{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.732000px;}
.ls12{letter-spacing:0.840000px;}
.ls10{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.584000px;}
.lsa{letter-spacing:2.160000px;}
.lsf{letter-spacing:6.480000px;}
.ls7{letter-spacing:12.240000px;}
.ls4{letter-spacing:33.264000px;}
.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:-21.960000px;}
.ws8{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-14.310000px;}
.ws7{word-spacing:-13.864200px;}
.ws2{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.870000px;}
.ws5{word-spacing:-12.738000px;}
.ws9{word-spacing:-12.426000px;}
.wsb{word-spacing:-12.240000px;}
.ws6{word-spacing:-12.114600px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-5.248800px;}
._14{margin-left:-3.952800px;}
._8{margin-left:-2.560320px;}
._0{margin-left:-1.451520px;}
._1{width:1.360800px;}
._5{width:2.403360px;}
._d{width:4.148640px;}
._3{width:5.567040px;}
._4{width:6.984000px;}
._2{width:8.136000px;}
._7{width:10.123680px;}
._a{width:11.144640px;}
._6{width:12.179520px;}
._9{width:13.188000px;}
._e{width:14.315520px;}
._f{width:15.559200px;}
._10{width:16.715520px;}
._13{width:19.512000px;}
._1a{width:21.323520px;}
._b{width:23.472000px;}
._c{width:24.491520px;}
._17{width:25.535520px;}
._1b{width:26.568000px;}
._18{width:31.057920px;}
._15{width:32.400000px;}
._19{width:33.419040px;}
._11{width:39.259200px;}
._12{width:40.496640px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y27{bottom:87.516000px;}
.y26{bottom:92.196000px;}
.y77{bottom:102.996000px;}
.y25{bottom:104.436000px;}
.y7e{bottom:107.676000px;}
.y122{bottom:109.836000px;}
.y76{bottom:118.476000px;}
.yf7{bottom:119.556000px;}
.ya7{bottom:119.916000px;}
.y9f{bottom:123.156000px;}
.y121{bottom:133.596000px;}
.y75{bottom:133.956000px;}
.yf6{bottom:136.836000px;}
.y74{bottom:138.636000px;}
.yf1{bottom:139.716000px;}
.yf5{bottom:141.516000px;}
.y4f{bottom:141.876000px;}
.y24{bottom:148.716000px;}
.y73{bottom:149.796000px;}
.ye7{bottom:150.870000px;}
.yf4{bottom:153.750000px;}
.y72{bottom:154.470000px;}
.y120{bottom:157.350000px;}
.ya6{bottom:159.870000px;}
.yf0{bottom:163.470000px;}
.y71{bottom:165.270000px;}
.y4e{bottom:165.990000px;}
.y7d{bottom:166.350000px;}
.y70{bottom:169.950000px;}
.y23{bottom:172.515000px;}
.ye6{bottom:177.915000px;}
.y9e{bottom:180.795000px;}
.y11f{bottom:181.155000px;}
.y6f{bottom:181.875000px;}
.ya5{bottom:184.035000px;}
.yd9{bottom:185.475000px;}
.yef{bottom:187.275000px;}
.y4d{bottom:189.795000px;}
.y22{bottom:196.275000px;}
.yd8{bottom:197.355000px;}
.y9d{bottom:200.955000px;}
.y7c{bottom:202.035000px;}
.y11e{bottom:204.915000px;}
.ya4{bottom:207.795000px;}
.yee{bottom:211.035000px;}
.yaf{bottom:211.755000px;}
.y9c{bottom:212.835000px;}
.y4c{bottom:213.555000px;}
.yec{bottom:216.435000px;}
.yde{bottom:216.795000px;}
.y21{bottom:220.035000px;}
.y6d{bottom:225.795000px;}
.yae{bottom:227.235000px;}
.y11d{bottom:229.035000px;}
.ya3{bottom:231.555000px;}
.yad{bottom:231.915000px;}
.y6e{bottom:232.635000px;}
.yed{bottom:234.795000px;}
.y4b{bottom:237.315000px;}
.ydd{bottom:240.555000px;}
.ybc{bottom:242.715000px;}
.y20{bottom:243.795000px;}
.yac{bottom:244.155000px;}
.ybb{bottom:247.395000px;}
.y6c{bottom:249.555000px;}
.y11c{bottom:252.795000px;}
.ye5{bottom:256.395000px;}
.yba{bottom:258.195000px;}
.y9b{bottom:258.555000px;}
.y4a{bottom:261.075000px;}
.ya2{bottom:261.435000px;}
.yd7{bottom:264.315000px;}
.y1f{bottom:267.555000px;}
.y6b{bottom:273.315000px;}
.yb9{bottom:273.675000px;}
.y11b{bottom:276.555000px;}
.yb8{bottom:278.355000px;}
.y9a{bottom:282.315000px;}
.y49{bottom:284.835000px;}
.yd6{bottom:288.435000px;}
.yab{bottom:289.155000px;}
.yb7{bottom:289.515000px;}
.y1e{bottom:291.315000px;}
.ydc{bottom:295.275000px;}
.y69{bottom:297.075000px;}
.y11a{bottom:300.345000px;}
.y6a{bottom:303.945000px;}
.yeb{bottom:305.025000px;}
.yb6{bottom:306.105000px;}
.y99{bottom:306.465000px;}
.y48{bottom:308.625000px;}
.yea{bottom:309.705000px;}
.yd5{bottom:312.225000px;}
.y1d{bottom:315.105000px;}
.y68{bottom:320.865000px;}
.ye9{bottom:321.585000px;}
.y119{bottom:324.105000px;}
.y98{bottom:330.225000px;}
.y47{bottom:332.385000px;}
.yd4{bottom:335.985000px;}
.y1c{bottom:338.865000px;}
.y67{bottom:344.625000px;}
.y118{bottom:347.865000px;}
.y7b{bottom:351.465000px;}
.y97{bottom:353.985000px;}
.y46{bottom:356.505000px;}
.yd3{bottom:359.745000px;}
.ye1{bottom:360.825000px;}
.y1b{bottom:362.985000px;}
.y66{bottom:368.385000px;}
.y117{bottom:371.625000px;}
.y96{bottom:377.745000px;}
.y45{bottom:380.265000px;}
.yd2{bottom:383.505000px;}
.yb5{bottom:384.585000px;}
.y1a{bottom:386.745000px;}
.y65{bottom:392.505000px;}
.y116{bottom:395.385000px;}
.y95{bottom:401.505000px;}
.y44{bottom:404.025000px;}
.yd1{bottom:407.265000px;}
.yb4{bottom:408.345000px;}
.y19{bottom:410.505000px;}
.y64{bottom:416.265000px;}
.y115{bottom:419.505000px;}
.y93{bottom:425.265000px;}
.y43{bottom:427.785000px;}
.yd0{bottom:431.070000px;}
.y94{bottom:432.150000px;}
.y18{bottom:434.310000px;}
.y63{bottom:440.070000px;}
.y114{bottom:443.310000px;}
.y92{bottom:449.070000px;}
.y42{bottom:451.590000px;}
.ycf{bottom:454.830000px;}
.y17{bottom:458.070000px;}
.ydb{bottom:460.950000px;}
.y62{bottom:463.830000px;}
.y113{bottom:467.070000px;}
.y91{bottom:472.830000px;}
.y41{bottom:475.350000px;}
.yce{bottom:478.950000px;}
.ye8{bottom:479.670000px;}
.y16{bottom:481.830000px;}
.y61{bottom:487.590000px;}
.y112{bottom:490.830000px;}
.y7a{bottom:494.430000px;}
.y90{bottom:496.950000px;}
.y40{bottom:499.110000px;}
.ycd{bottom:502.710000px;}
.yf3{bottom:503.790000px;}
.y15{bottom:505.590000px;}
.y60{bottom:511.350000px;}
.y111{bottom:514.590000px;}
.y8f{bottom:520.710000px;}
.y3f{bottom:522.870000px;}
.ycc{bottom:526.470000px;}
.y14{bottom:529.350000px;}
.y5f{bottom:535.110000px;}
.y110{bottom:538.350000px;}
.y8e{bottom:544.470000px;}
.y3e{bottom:546.630000px;}
.ycb{bottom:550.230000px;}
.yaa{bottom:551.310000px;}
.y13{bottom:553.470000px;}
.y5e{bottom:558.900000px;}
.y10f{bottom:562.140000px;}
.y8d{bottom:568.260000px;}
.y3d{bottom:570.780000px;}
.yca{bottom:574.020000px;}
.y12{bottom:577.260000px;}
.y5d{bottom:582.660000px;}
.y10e{bottom:585.900000px;}
.y8c{bottom:592.020000px;}
.y3c{bottom:594.540000px;}
.yc9{bottom:597.780000px;}
.yb3{bottom:598.860000px;}
.y11{bottom:601.020000px;}
.y5c{bottom:606.780000px;}
.y10d{bottom:609.660000px;}
.y8b{bottom:615.780000px;}
.y3b{bottom:618.300000px;}
.yc8{bottom:621.540000px;}
.yf2{bottom:622.620000px;}
.y10{bottom:624.780000px;}
.y5b{bottom:630.540000px;}
.y10c{bottom:633.780000px;}
.y79{bottom:637.380000px;}
.y8a{bottom:639.540000px;}
.y39{bottom:642.060000px;}
.yc7{bottom:645.300000px;}
.ya9{bottom:646.380000px;}
.yf{bottom:648.540000px;}
.y3a{bottom:648.900000px;}
.y5a{bottom:654.300000px;}
.y10b{bottom:657.540000px;}
.y89{bottom:663.300000px;}
.y38{bottom:665.820000px;}
.yc6{bottom:669.420000px;}
.ye0{bottom:670.140000px;}
.yd{bottom:672.300000px;}
.y58{bottom:678.060000px;}
.ye{bottom:679.140000px;}
.y10a{bottom:681.300000px;}
.ya1{bottom:684.180000px;}
.y59{bottom:684.900000px;}
.y88{bottom:687.450000px;}
.y37{bottom:689.610000px;}
.yc4{bottom:693.210000px;}
.yc{bottom:696.090000px;}
.yc5{bottom:700.050000px;}
.y57{bottom:701.850000px;}
.y109{bottom:705.090000px;}
.ye4{bottom:707.970000px;}
.y86{bottom:711.210000px;}
.yc3{bottom:716.970000px;}
.y87{bottom:718.050000px;}
.y36{bottom:719.490000px;}
.yb{bottom:719.850000px;}
.y55{bottom:725.610000px;}
.y108{bottom:728.850000px;}
.y56{bottom:732.450000px;}
.y85{bottom:734.970000px;}
.yc2{bottom:740.730000px;}
.y54{bottom:749.370000px;}
.y107{bottom:752.610000px;}
.y78{bottom:755.490000px;}
.ya{bottom:755.850000px;}
.y84{bottom:758.730000px;}
.yc1{bottom:764.490000px;}
.yb2{bottom:765.570000px;}
.y35{bottom:770.250000px;}
.y53{bottom:773.130000px;}
.y106{bottom:776.370000px;}
.y82{bottom:782.490000px;}
.ybf{bottom:788.250000px;}
.y83{bottom:789.330000px;}
.y9{bottom:791.850000px;}
.yc0{bottom:795.090000px;}
.y105{bottom:800.130000px;}
.y52{bottom:803.010000px;}
.y34{bottom:806.250000px;}
.y81{bottom:813.090000px;}
.ybe{bottom:818.175000px;}
.y104{bottom:824.295000px;}
.y8{bottom:827.895000px;}
.y33{bottom:830.055000px;}
.yb1{bottom:836.895000px;}
.y103{bottom:848.055000px;}
.y51{bottom:853.815000px;}
.yb0{bottom:860.655000px;}
.y7{bottom:863.895000px;}
.y32{bottom:865.695000px;}
.y102{bottom:871.815000px;}
.y50{bottom:877.575000px;}
.yda{bottom:884.415000px;}
.y101{bottom:895.575000px;}
.y6{bottom:901.695000px;}
.y80{bottom:908.535000px;}
.y100{bottom:919.335000px;}
.y31{bottom:925.455000px;}
.y5{bottom:931.575000px;}
.ye3{bottom:932.295000px;}
.yff{bottom:943.095000px;}
.y30{bottom:949.245000px;}
.ydf{bottom:956.085000px;}
.yfe{bottom:966.885000px;}
.y2f{bottom:973.005000px;}
.y4{bottom:973.725000px;}
.ya0{bottom:979.845000px;}
.yfd{bottom:990.645000px;}
.y2e{bottom:996.765000px;}
.yfc{bottom:1014.765000px;}
.y3{bottom:1015.845000px;}
.y2d{bottom:1020.525000px;}
.yfb{bottom:1038.525000px;}
.y2c{bottom:1044.285000px;}
.ya8{bottom:1051.125000px;}
.y2{bottom:1057.605000px;}
.yfa{bottom:1062.285000px;}
.y2b{bottom:1068.045000px;}
.y7f{bottom:1074.930000px;}
.yf9{bottom:1086.090000px;}
.y2a{bottom:1092.210000px;}
.y1{bottom:1094.730000px;}
.ye2{bottom:1099.050000px;}
.yf8{bottom:1109.850000px;}
.y29{bottom:1115.970000px;}
.y28{bottom:1139.730000px;}
.ybd{bottom:1146.570000px;}
.h8{height:26.033203px;}
.h6{height:34.363828px;}
.hd{height:39.166875px;}
.hc{height:39.570469px;}
.h9{height:45.101250px;}
.ha{height:50.414062px;}
.h5{height:50.800781px;}
.h4{height:52.066406px;}
.hb{height:52.417969px;}
.h10{height:54.597656px;}
.h7{height:59.343750px;}
.hf{height:60.155156px;}
.he{height:61.723828px;}
.h2{height:64.008984px;}
.h3{height:65.603672px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:84.995987px;}
.xc{left:89.675987px;}
.x26{left:94.355987px;}
.x4{left:99.395987px;}
.x2b{left:111.995987px;}
.x17{left:119.555973px;}
.x18{left:125.675987px;}
.x19{left:137.951973px;}
.x1a{left:144.071987px;}
.x62{left:146.591973px;}
.x63{left:158.834987px;}
.x5e{left:180.434973px;}
.x5f{left:192.674987px;}
.x49{left:197.354973px;}
.x2e{left:199.874973px;}
.x4a{left:209.594987px;}
.x60{left:211.034973px;}
.x2f{left:212.114987px;}
.x41{left:221.504973px;}
.x61{left:223.304987px;}
.x7{left:226.184987px;}
.x54{left:232.304973px;}
.x42{left:233.744987px;}
.x4d{left:239.144973px;}
.x55{left:244.544987px;}
.x4e{left:251.384987px;}
.x68{left:264.344987px;}
.x1d{left:265.424973px;}
.x4b{left:270.104973px;}
.x1e{left:277.664987px;}
.x4c{left:282.344987px;}
.x3{left:288.104987px;}
.x6{left:296.384987px;}
.xb{left:301.064987px;}
.x5{left:313.709987px;}
.x6b{left:345.389973px;}
.x66{left:352.229973px;}
.x5c{left:355.109973px;}
.x6c{left:357.629987px;}
.x30{left:359.069973px;}
.x67{left:364.469987px;}
.x5d{left:367.349987px;}
.x31{left:371.309987px;}
.xf{left:374.189973px;}
.x10{left:380.309987px;}
.x6d{left:400.499973px;}
.x6e{left:412.739987px;}
.x11{left:419.939973px;}
.x12{left:426.059987px;}
.x2{left:446.219987px;}
.x3a{left:456.659973px;}
.x1f{left:468.539973px;}
.x13{left:472.139973px;}
.x6f{left:474.659973px;}
.x14{left:478.259987px;}
.x20{left:480.779987px;}
.x47{left:483.299973px;}
.x70{left:486.899987px;}
.x48{left:495.569987px;}
.x34{left:498.449973px;}
.x35{left:510.689987px;}
.x15{left:511.769973px;}
.x16{left:517.889987px;}
.x27{left:520.769973px;}
.x50{left:525.449973px;}
.x69{left:527.609973px;}
.x28{left:533.009987px;}
.x51{left:537.689987px;}
.x6a{left:539.849987px;}
.x32{left:547.049973px;}
.x33{left:559.289987px;}
.x21{left:565.049973px;}
.x3b{left:569.369973px;}
.x1{left:576.929987px;}
.x43{left:578.774973px;}
.x3c{left:581.654987px;}
.x56{left:583.454973px;}
.x3d{left:588.854973px;}
.x44{left:591.014987px;}
.x57{left:595.694987px;}
.x52{left:597.854973px;}
.x3e{left:601.094987px;}
.x45{left:607.214973px;}
.x53{left:610.094987px;}
.x24{left:615.854973px;}
.x46{left:619.454987px;}
.x25{left:628.094987px;}
.x36{left:632.774973px;}
.x37{left:645.014987px;}
.x9{left:651.494973px;}
.xa{left:657.614987px;}
.x1b{left:668.084973px;}
.x1c{left:680.324987px;}
.x64{left:686.444973px;}
.x65{left:698.684987px;}
.x29{left:704.084973px;}
.x38{left:707.684973px;}
.x2c{left:710.924973px;}
.x2a{left:716.324987px;}
.x58{left:717.404973px;}
.x39{left:719.924987px;}
.x2d{left:723.164987px;}
.x59{left:729.644987px;}
.x5a{left:740.084973px;}
.x3f{left:745.844973px;}
.x5b{left:752.324987px;}
.x40{left:758.129987px;}
.x22{left:762.809973px;}
.x23{left:775.049987px;}
.x4f{left:795.569973px;}
.xd{left:801.689973px;}
.xe{left:807.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.114667pt;}
.lsc{letter-spacing:-0.837333pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.107520pt;}
.ls3{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.163733pt;}
.lsd{letter-spacing:0.208533pt;}
.ls11{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.650667pt;}
.ls12{letter-spacing:0.746667pt;}
.ls10{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.408000pt;}
.lsa{letter-spacing:1.920000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls7{letter-spacing:10.880000pt;}
.ls4{letter-spacing:29.568000pt;}
.ws0{word-spacing:-19.520000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-12.720000pt;}
.ws7{word-spacing:-12.323733pt;}
.ws2{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.440000pt;}
.ws5{word-spacing:-11.322667pt;}
.ws9{word-spacing:-11.045333pt;}
.wsb{word-spacing:-10.880000pt;}
.ws6{word-spacing:-10.768533pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-4.665600pt;}
._14{margin-left:-3.513600pt;}
._8{margin-left:-2.275840pt;}
._0{margin-left:-1.290240pt;}
._1{width:1.209600pt;}
._5{width:2.136320pt;}
._d{width:3.687680pt;}
._3{width:4.948480pt;}
._4{width:6.208000pt;}
._2{width:7.232000pt;}
._7{width:8.998827pt;}
._a{width:9.906347pt;}
._6{width:10.826240pt;}
._9{width:11.722667pt;}
._e{width:12.724907pt;}
._f{width:13.830400pt;}
._10{width:14.858240pt;}
._13{width:17.344000pt;}
._1a{width:18.954240pt;}
._b{width:20.864000pt;}
._c{width:21.770240pt;}
._17{width:22.698240pt;}
._1b{width:23.616000pt;}
._18{width:27.607040pt;}
._15{width:28.800000pt;}
._19{width:29.705813pt;}
._11{width:34.897067pt;}
._12{width:35.997013pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:77.792000pt;}
.y26{bottom:81.952000pt;}
.y77{bottom:91.552000pt;}
.y25{bottom:92.832000pt;}
.y7e{bottom:95.712000pt;}
.y122{bottom:97.632000pt;}
.y76{bottom:105.312000pt;}
.yf7{bottom:106.272000pt;}
.ya7{bottom:106.592000pt;}
.y9f{bottom:109.472000pt;}
.y121{bottom:118.752000pt;}
.y75{bottom:119.072000pt;}
.yf6{bottom:121.632000pt;}
.y74{bottom:123.232000pt;}
.yf1{bottom:124.192000pt;}
.yf5{bottom:125.792000pt;}
.y4f{bottom:126.112000pt;}
.y24{bottom:132.192000pt;}
.y73{bottom:133.152000pt;}
.ye7{bottom:134.106667pt;}
.yf4{bottom:136.666667pt;}
.y72{bottom:137.306667pt;}
.y120{bottom:139.866667pt;}
.ya6{bottom:142.106667pt;}
.yf0{bottom:145.306667pt;}
.y71{bottom:146.906667pt;}
.y4e{bottom:147.546667pt;}
.y7d{bottom:147.866667pt;}
.y70{bottom:151.066667pt;}
.y23{bottom:153.346667pt;}
.ye6{bottom:158.146667pt;}
.y9e{bottom:160.706667pt;}
.y11f{bottom:161.026667pt;}
.y6f{bottom:161.666667pt;}
.ya5{bottom:163.586667pt;}
.yd9{bottom:164.866667pt;}
.yef{bottom:166.466667pt;}
.y4d{bottom:168.706667pt;}
.y22{bottom:174.466667pt;}
.yd8{bottom:175.426667pt;}
.y9d{bottom:178.626667pt;}
.y7c{bottom:179.586667pt;}
.y11e{bottom:182.146667pt;}
.ya4{bottom:184.706667pt;}
.yee{bottom:187.586667pt;}
.yaf{bottom:188.226667pt;}
.y9c{bottom:189.186667pt;}
.y4c{bottom:189.826667pt;}
.yec{bottom:192.386667pt;}
.yde{bottom:192.706667pt;}
.y21{bottom:195.586667pt;}
.y6d{bottom:200.706667pt;}
.yae{bottom:201.986667pt;}
.y11d{bottom:203.586667pt;}
.ya3{bottom:205.826667pt;}
.yad{bottom:206.146667pt;}
.y6e{bottom:206.786667pt;}
.yed{bottom:208.706667pt;}
.y4b{bottom:210.946667pt;}
.ydd{bottom:213.826667pt;}
.ybc{bottom:215.746667pt;}
.y20{bottom:216.706667pt;}
.yac{bottom:217.026667pt;}
.ybb{bottom:219.906667pt;}
.y6c{bottom:221.826667pt;}
.y11c{bottom:224.706667pt;}
.ye5{bottom:227.906667pt;}
.yba{bottom:229.506667pt;}
.y9b{bottom:229.826667pt;}
.y4a{bottom:232.066667pt;}
.ya2{bottom:232.386667pt;}
.yd7{bottom:234.946667pt;}
.y1f{bottom:237.826667pt;}
.y6b{bottom:242.946667pt;}
.yb9{bottom:243.266667pt;}
.y11b{bottom:245.826667pt;}
.yb8{bottom:247.426667pt;}
.y9a{bottom:250.946667pt;}
.y49{bottom:253.186667pt;}
.yd6{bottom:256.386667pt;}
.yab{bottom:257.026667pt;}
.yb7{bottom:257.346667pt;}
.y1e{bottom:258.946667pt;}
.ydc{bottom:262.466667pt;}
.y69{bottom:264.066667pt;}
.y11a{bottom:266.973333pt;}
.y6a{bottom:270.173333pt;}
.yeb{bottom:271.133333pt;}
.yb6{bottom:272.093333pt;}
.y99{bottom:272.413333pt;}
.y48{bottom:274.333333pt;}
.yea{bottom:275.293333pt;}
.yd5{bottom:277.533333pt;}
.y1d{bottom:280.093333pt;}
.y68{bottom:285.213333pt;}
.ye9{bottom:285.853333pt;}
.y119{bottom:288.093333pt;}
.y98{bottom:293.533333pt;}
.y47{bottom:295.453333pt;}
.yd4{bottom:298.653333pt;}
.y1c{bottom:301.213333pt;}
.y67{bottom:306.333333pt;}
.y118{bottom:309.213333pt;}
.y7b{bottom:312.413333pt;}
.y97{bottom:314.653333pt;}
.y46{bottom:316.893333pt;}
.yd3{bottom:319.773333pt;}
.ye1{bottom:320.733333pt;}
.y1b{bottom:322.653333pt;}
.y66{bottom:327.453333pt;}
.y117{bottom:330.333333pt;}
.y96{bottom:335.773333pt;}
.y45{bottom:338.013333pt;}
.yd2{bottom:340.893333pt;}
.yb5{bottom:341.853333pt;}
.y1a{bottom:343.773333pt;}
.y65{bottom:348.893333pt;}
.y116{bottom:351.453333pt;}
.y95{bottom:356.893333pt;}
.y44{bottom:359.133333pt;}
.yd1{bottom:362.013333pt;}
.yb4{bottom:362.973333pt;}
.y19{bottom:364.893333pt;}
.y64{bottom:370.013333pt;}
.y115{bottom:372.893333pt;}
.y93{bottom:378.013333pt;}
.y43{bottom:380.253333pt;}
.yd0{bottom:383.173333pt;}
.y94{bottom:384.133333pt;}
.y18{bottom:386.053333pt;}
.y63{bottom:391.173333pt;}
.y114{bottom:394.053333pt;}
.y92{bottom:399.173333pt;}
.y42{bottom:401.413333pt;}
.ycf{bottom:404.293333pt;}
.y17{bottom:407.173333pt;}
.ydb{bottom:409.733333pt;}
.y62{bottom:412.293333pt;}
.y113{bottom:415.173333pt;}
.y91{bottom:420.293333pt;}
.y41{bottom:422.533333pt;}
.yce{bottom:425.733333pt;}
.ye8{bottom:426.373333pt;}
.y16{bottom:428.293333pt;}
.y61{bottom:433.413333pt;}
.y112{bottom:436.293333pt;}
.y7a{bottom:439.493333pt;}
.y90{bottom:441.733333pt;}
.y40{bottom:443.653333pt;}
.ycd{bottom:446.853333pt;}
.yf3{bottom:447.813333pt;}
.y15{bottom:449.413333pt;}
.y60{bottom:454.533333pt;}
.y111{bottom:457.413333pt;}
.y8f{bottom:462.853333pt;}
.y3f{bottom:464.773333pt;}
.ycc{bottom:467.973333pt;}
.y14{bottom:470.533333pt;}
.y5f{bottom:475.653333pt;}
.y110{bottom:478.533333pt;}
.y8e{bottom:483.973333pt;}
.y3e{bottom:485.893333pt;}
.ycb{bottom:489.093333pt;}
.yaa{bottom:490.053333pt;}
.y13{bottom:491.973333pt;}
.y5e{bottom:496.800000pt;}
.y10f{bottom:499.680000pt;}
.y8d{bottom:505.120000pt;}
.y3d{bottom:507.360000pt;}
.yca{bottom:510.240000pt;}
.y12{bottom:513.120000pt;}
.y5d{bottom:517.920000pt;}
.y10e{bottom:520.800000pt;}
.y8c{bottom:526.240000pt;}
.y3c{bottom:528.480000pt;}
.yc9{bottom:531.360000pt;}
.yb3{bottom:532.320000pt;}
.y11{bottom:534.240000pt;}
.y5c{bottom:539.360000pt;}
.y10d{bottom:541.920000pt;}
.y8b{bottom:547.360000pt;}
.y3b{bottom:549.600000pt;}
.yc8{bottom:552.480000pt;}
.yf2{bottom:553.440000pt;}
.y10{bottom:555.360000pt;}
.y5b{bottom:560.480000pt;}
.y10c{bottom:563.360000pt;}
.y79{bottom:566.560000pt;}
.y8a{bottom:568.480000pt;}
.y39{bottom:570.720000pt;}
.yc7{bottom:573.600000pt;}
.ya9{bottom:574.560000pt;}
.yf{bottom:576.480000pt;}
.y3a{bottom:576.800000pt;}
.y5a{bottom:581.600000pt;}
.y10b{bottom:584.480000pt;}
.y89{bottom:589.600000pt;}
.y38{bottom:591.840000pt;}
.yc6{bottom:595.040000pt;}
.ye0{bottom:595.680000pt;}
.yd{bottom:597.600000pt;}
.y58{bottom:602.720000pt;}
.ye{bottom:603.680000pt;}
.y10a{bottom:605.600000pt;}
.ya1{bottom:608.160000pt;}
.y59{bottom:608.800000pt;}
.y88{bottom:611.066667pt;}
.y37{bottom:612.986667pt;}
.yc4{bottom:616.186667pt;}
.yc{bottom:618.746667pt;}
.yc5{bottom:622.266667pt;}
.y57{bottom:623.866667pt;}
.y109{bottom:626.746667pt;}
.ye4{bottom:629.306667pt;}
.y86{bottom:632.186667pt;}
.yc3{bottom:637.306667pt;}
.y87{bottom:638.266667pt;}
.y36{bottom:639.546667pt;}
.yb{bottom:639.866667pt;}
.y55{bottom:644.986667pt;}
.y108{bottom:647.866667pt;}
.y56{bottom:651.066667pt;}
.y85{bottom:653.306667pt;}
.yc2{bottom:658.426667pt;}
.y54{bottom:666.106667pt;}
.y107{bottom:668.986667pt;}
.y78{bottom:671.546667pt;}
.ya{bottom:671.866667pt;}
.y84{bottom:674.426667pt;}
.yc1{bottom:679.546667pt;}
.yb2{bottom:680.506667pt;}
.y35{bottom:684.666667pt;}
.y53{bottom:687.226667pt;}
.y106{bottom:690.106667pt;}
.y82{bottom:695.546667pt;}
.ybf{bottom:700.666667pt;}
.y83{bottom:701.626667pt;}
.y9{bottom:703.866667pt;}
.yc0{bottom:706.746667pt;}
.y105{bottom:711.226667pt;}
.y52{bottom:713.786667pt;}
.y34{bottom:716.666667pt;}
.y81{bottom:722.746667pt;}
.ybe{bottom:727.266667pt;}
.y104{bottom:732.706667pt;}
.y8{bottom:735.906667pt;}
.y33{bottom:737.826667pt;}
.yb1{bottom:743.906667pt;}
.y103{bottom:753.826667pt;}
.y51{bottom:758.946667pt;}
.yb0{bottom:765.026667pt;}
.y7{bottom:767.906667pt;}
.y32{bottom:769.506667pt;}
.y102{bottom:774.946667pt;}
.y50{bottom:780.066667pt;}
.yda{bottom:786.146667pt;}
.y101{bottom:796.066667pt;}
.y6{bottom:801.506667pt;}
.y80{bottom:807.586667pt;}
.y100{bottom:817.186667pt;}
.y31{bottom:822.626667pt;}
.y5{bottom:828.066667pt;}
.ye3{bottom:828.706667pt;}
.yff{bottom:838.306667pt;}
.y30{bottom:843.773333pt;}
.ydf{bottom:849.853333pt;}
.yfe{bottom:859.453333pt;}
.y2f{bottom:864.893333pt;}
.y4{bottom:865.533333pt;}
.ya0{bottom:870.973333pt;}
.yfd{bottom:880.573333pt;}
.y2e{bottom:886.013333pt;}
.yfc{bottom:902.013333pt;}
.y3{bottom:902.973333pt;}
.y2d{bottom:907.133333pt;}
.yfb{bottom:923.133333pt;}
.y2c{bottom:928.253333pt;}
.ya8{bottom:934.333333pt;}
.y2{bottom:940.093333pt;}
.yfa{bottom:944.253333pt;}
.y2b{bottom:949.373333pt;}
.y7f{bottom:955.493333pt;}
.yf9{bottom:965.413333pt;}
.y2a{bottom:970.853333pt;}
.y1{bottom:973.093333pt;}
.ye2{bottom:976.933333pt;}
.yf8{bottom:986.533333pt;}
.y29{bottom:991.973333pt;}
.y28{bottom:1013.093333pt;}
.ybd{bottom:1019.173333pt;}
.h8{height:23.140625pt;}
.h6{height:30.545625pt;}
.hd{height:34.815000pt;}
.hc{height:35.173750pt;}
.h9{height:40.090000pt;}
.ha{height:44.812500pt;}
.h5{height:45.156250pt;}
.h4{height:46.281250pt;}
.hb{height:46.593750pt;}
.h10{height:48.531250pt;}
.h7{height:52.750000pt;}
.hf{height:53.471250pt;}
.he{height:54.865625pt;}
.h2{height:56.896875pt;}
.h3{height:58.314375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:75.551988pt;}
.xc{left:79.711988pt;}
.x26{left:83.871988pt;}
.x4{left:88.351988pt;}
.x2b{left:99.551988pt;}
.x17{left:106.271976pt;}
.x18{left:111.711988pt;}
.x19{left:122.623976pt;}
.x1a{left:128.063988pt;}
.x62{left:130.303976pt;}
.x63{left:141.186655pt;}
.x5e{left:160.386643pt;}
.x5f{left:171.266655pt;}
.x49{left:175.426643pt;}
.x2e{left:177.666643pt;}
.x4a{left:186.306655pt;}
.x60{left:187.586643pt;}
.x2f{left:188.546655pt;}
.x41{left:196.893310pt;}
.x61{left:198.493322pt;}
.x7{left:201.053322pt;}
.x54{left:206.493310pt;}
.x42{left:207.773322pt;}
.x4d{left:212.573310pt;}
.x55{left:217.373322pt;}
.x4e{left:223.453322pt;}
.x68{left:234.973322pt;}
.x1d{left:235.933310pt;}
.x4b{left:240.093310pt;}
.x1e{left:246.813322pt;}
.x4c{left:250.973322pt;}
.x3{left:256.093322pt;}
.x6{left:263.453322pt;}
.xb{left:267.613322pt;}
.x5{left:278.853322pt;}
.x6b{left:307.013310pt;}
.x66{left:313.093310pt;}
.x5c{left:315.653310pt;}
.x6c{left:317.893322pt;}
.x30{left:319.173310pt;}
.x67{left:323.973322pt;}
.x5d{left:326.533322pt;}
.x31{left:330.053322pt;}
.xf{left:332.613310pt;}
.x10{left:338.053322pt;}
.x6d{left:355.999976pt;}
.x6e{left:366.879988pt;}
.x11{left:373.279976pt;}
.x12{left:378.719988pt;}
.x2{left:396.639988pt;}
.x3a{left:405.919976pt;}
.x1f{left:416.479976pt;}
.x13{left:419.679976pt;}
.x6f{left:421.919976pt;}
.x14{left:425.119988pt;}
.x20{left:427.359988pt;}
.x47{left:429.599976pt;}
.x70{left:432.799988pt;}
.x48{left:440.506655pt;}
.x34{left:443.066643pt;}
.x35{left:453.946655pt;}
.x15{left:454.906643pt;}
.x16{left:460.346655pt;}
.x27{left:462.906643pt;}
.x50{left:467.066643pt;}
.x69{left:468.986643pt;}
.x28{left:473.786655pt;}
.x51{left:477.946655pt;}
.x6a{left:479.866655pt;}
.x32{left:486.266643pt;}
.x33{left:497.146655pt;}
.x21{left:502.266643pt;}
.x3b{left:506.106643pt;}
.x1{left:512.826655pt;}
.x43{left:514.466643pt;}
.x3c{left:517.026655pt;}
.x56{left:518.626643pt;}
.x3d{left:523.426643pt;}
.x44{left:525.346655pt;}
.x57{left:529.506655pt;}
.x52{left:531.426643pt;}
.x3e{left:534.306655pt;}
.x45{left:539.746643pt;}
.x53{left:542.306655pt;}
.x24{left:547.426643pt;}
.x46{left:550.626655pt;}
.x25{left:558.306655pt;}
.x36{left:562.466643pt;}
.x37{left:573.346655pt;}
.x9{left:579.106643pt;}
.xa{left:584.546655pt;}
.x1b{left:593.853310pt;}
.x1c{left:604.733322pt;}
.x64{left:610.173310pt;}
.x65{left:621.053322pt;}
.x29{left:625.853310pt;}
.x38{left:629.053310pt;}
.x2c{left:631.933310pt;}
.x2a{left:636.733322pt;}
.x58{left:637.693310pt;}
.x39{left:639.933322pt;}
.x2d{left:642.813322pt;}
.x59{left:648.573322pt;}
.x5a{left:657.853310pt;}
.x3f{left:662.973310pt;}
.x5b{left:668.733322pt;}
.x40{left:673.893322pt;}
.x22{left:678.053310pt;}
.x23{left:688.933322pt;}
.x4f{left:707.173310pt;}
.xd{left:712.613310pt;}
.xe{left:718.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; }
  