
    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_8ac452f4e05f1e9d0b280f1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_d727eba9556611f88d01c4d6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_cd0e05b432736300d0f3aca3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_08351e1800606899ad0fd7e4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_97cc83eab89602078be177cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_00061d609c90ef83e0061e97.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_f181147029160c9e95707e88.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_e1d5db39e96474730f6e660f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-97.920000px;}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-79.320000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.008000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.618000px;}
.ls7{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.512400px;}
.ls27{letter-spacing:-0.457800px;}
.ls26{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.152400px;}
.ls17{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls25{letter-spacing:0.034560px;}
.ls3{letter-spacing:0.051840px;}
.ls10{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.109200px;}
.ls1f{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.152400px;}
.ls20{letter-spacing:0.180000px;}
.lse{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.792000px;}
.ls23{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.080000px;}
.ls6{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls12{letter-spacing:4.320000px;}
.ls1c{letter-spacing:5.760000px;}
.ls15{letter-spacing:6.480000px;}
.ls5{letter-spacing:7.920000px;}
.ls1e{letter-spacing:11.520000px;}
.ls22{letter-spacing:67.961280px;}
.ls11{letter-spacing:76.440000px;}
.ls1{letter-spacing:87.804000px;}
.ls21{letter-spacing:859.836000px;}
.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:-65.340000px;}
.ws0{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.080000px;}
.ws4{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.407600px;}
.wsa{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-7.920000px;}
._14{margin-left:-2.132160px;}
._6{margin-left:-1.008000px;}
._0{width:1.244160px;}
._5{width:2.670960px;}
._d{width:4.305600px;}
._c{width:5.328000px;}
._a{width:6.359040px;}
._7{width:7.963200px;}
._8{width:8.979840px;}
._b{width:10.730880px;}
._11{width:12.024000px;}
._10{width:13.176000px;}
._12{width:14.616000px;}
._13{width:15.984000px;}
._15{width:16.992000px;}
._1f{width:17.997120px;}
._17{width:20.304000px;}
._18{width:21.746880px;}
._9{width:31.397760px;}
._1a{width:36.829440px;}
._1b{width:38.617920px;}
._1c{width:40.050720px;}
._e{width:47.111040px;}
._16{width:50.112000px;}
._1e{width:52.172040px;}
._1d{width:53.337600px;}
._19{width:79.704000px;}
._1{width:480.335520px;}
._2{width:736.680000px;}
._4{width:756.300000px;}
._3{width:831.888480px;}
._20{width:846.300000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:261.360000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.ybf{bottom:4.485000px;}
.yc9{bottom:4.492500px;}
.ycf{bottom:4.500000px;}
.ycb{bottom:4.530000px;}
.yc5{bottom:14.745000px;}
.yc7{bottom:14.746500px;}
.yd2{bottom:14.760000px;}
.yc2{bottom:14.925000px;}
.ycd{bottom:14.940000px;}
.y65{bottom:16.380000px;}
.yc{bottom:21.240000px;}
.ybd{bottom:25.185000px;}
.yc8{bottom:25.186500px;}
.yce{bottom:25.200000px;}
.yd8{bottom:25.245000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.ybe{bottom:45.885000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.yac{bottom:140.436000px;}
.yc6{bottom:142.783500px;}
.y32{bottom:145.656000px;}
.yf7{bottom:155.550000px;}
.y93{bottom:157.710000px;}
.yab{bottom:161.130000px;}
.y31{bottom:164.730000px;}
.y63{bottom:171.930000px;}
.yf6{bottom:176.250000px;}
.y92{bottom:178.410000px;}
.yaa{bottom:181.830000px;}
.y30{bottom:183.630000px;}
.yc4{bottom:184.905000px;}
.y62{bottom:192.630000px;}
.yf5{bottom:196.950000px;}
.y91{bottom:199.110000px;}
.y2f{bottom:202.530000px;}
.y61{bottom:213.330000px;}
.yf4{bottom:217.650000px;}
.y90{bottom:219.630000px;}
.y2e{bottom:221.610000px;}
.ya9{bottom:223.230000px;}
.yc3{bottom:227.025000px;}
.y60{bottom:234.030000px;}
.yf3{bottom:238.350000px;}
.y2d{bottom:240.510000px;}
.y8f{bottom:241.770000px;}
.ya8{bottom:243.930000px;}
.yc1{bottom:248.445000px;}
.y5f{bottom:254.730000px;}
.yf2{bottom:259.050000px;}
.y2c{bottom:260.310000px;}
.y8e{bottom:262.290000px;}
.ya7{bottom:264.630000px;}
.y5e{bottom:275.430000px;}
.yf1{bottom:279.750000px;}
.y2b{bottom:282.630000px;}
.y8d{bottom:284.430000px;}
.ya6{bottom:285.330000px;}
.yc0{bottom:290.565000px;}
.y5d{bottom:296.130000px;}
.yf0{bottom:300.450000px;}
.y2a{bottom:305.130000px;}
.ya5{bottom:306.030000px;}
.ybc{bottom:312.165000px;}
.y5c{bottom:316.830000px;}
.yef{bottom:320.970000px;}
.y8c{bottom:325.830000px;}
.ya4{bottom:326.730000px;}
.y29{bottom:326.910000px;}
.y5b{bottom:337.530000px;}
.yee{bottom:341.670000px;}
.y8b{bottom:346.350000px;}
.ya3{bottom:347.430000px;}
.y28{bottom:349.950000px;}
.y112{bottom:351.210000px;}
.y5a{bottom:358.230000px;}
.yed{bottom:362.370000px;}
.ya2{bottom:368.130000px;}
.y8a{bottom:368.490000px;}
.y111{bottom:371.910000px;}
.y27{bottom:372.450000px;}
.y59{bottom:378.930000px;}
.ybb{bottom:379.515000px;}
.yec{bottom:383.115000px;}
.y110{bottom:388.155000px;}
.ya1{bottom:388.875000px;}
.y89{bottom:389.055000px;}
.y26{bottom:394.815000px;}
.y58{bottom:399.675000px;}
.yba{bottom:400.215000px;}
.yeb{bottom:403.815000px;}
.y10f{bottom:408.855000px;}
.ya0{bottom:409.575000px;}
.y88{bottom:411.195000px;}
.y25{bottom:416.775000px;}
.y57{bottom:420.375000px;}
.yb9{bottom:420.915000px;}
.yea{bottom:424.515000px;}
.y9f{bottom:430.275000px;}
.y87{bottom:431.895000px;}
.y10e{bottom:434.055000px;}
.y24{bottom:439.635000px;}
.y56{bottom:441.075000px;}
.yb8{bottom:441.615000px;}
.ye9{bottom:445.215000px;}
.y9e{bottom:450.975000px;}
.y86{bottom:452.595000px;}
.y10d{bottom:454.395000px;}
.y55{bottom:461.775000px;}
.y23{bottom:462.135000px;}
.yb7{bottom:462.315000px;}
.ye8{bottom:465.915000px;}
.y9d{bottom:471.495000px;}
.y85{bottom:473.295000px;}
.y54{bottom:482.475000px;}
.yb6{bottom:483.015000px;}
.y22{bottom:483.915000px;}
.ye7{bottom:486.615000px;}
.y9c{bottom:492.195000px;}
.y10c{bottom:492.375000px;}
.y84{bottom:493.995000px;}
.y53{bottom:503.175000px;}
.yb5{bottom:503.535000px;}
.y21{bottom:506.415000px;}
.ye6{bottom:507.315000px;}
.y10b{bottom:511.275000px;}
.y9b{bottom:512.895000px;}
.y83{bottom:514.695000px;}
.y52{bottom:523.875000px;}
.yb4{bottom:525.495000px;}
.ye5{bottom:528.015000px;}
.y20{bottom:529.455000px;}
.y10a{bottom:530.175000px;}
.y9a{bottom:533.595000px;}
.y82{bottom:535.395000px;}
.y51{bottom:544.575000px;}
.yb3{bottom:547.635000px;}
.ye4{bottom:548.715000px;}
.y109{bottom:549.255000px;}
.y1f{bottom:551.775000px;}
.y99{bottom:554.295000px;}
.y81{bottom:556.095000px;}
.y50{bottom:565.275000px;}
.y108{bottom:568.155000px;}
.yb2{bottom:568.335000px;}
.ye3{bottom:569.415000px;}
.y1e{bottom:574.275000px;}
.y98{bottom:574.995000px;}
.y80{bottom:576.795000px;}
.y64{bottom:581.475000px;}
.y4f{bottom:585.975000px;}
.y107{bottom:587.235000px;}
.yb1{bottom:589.035000px;}
.ye2{bottom:590.115000px;}
.y97{bottom:595.695000px;}
.y1d{bottom:596.055000px;}
.y7f{bottom:597.495000px;}
.y106{bottom:606.135000px;}
.y4e{bottom:606.675000px;}
.yb0{bottom:609.735000px;}
.ye1{bottom:610.815000px;}
.y96{bottom:616.395000px;}
.y7e{bottom:618.195000px;}
.y1c{bottom:619.095000px;}
.y105{bottom:625.035000px;}
.yaf{bottom:630.435000px;}
.ye0{bottom:631.515000px;}
.y95{bottom:637.125000px;}
.y7d{bottom:638.925000px;}
.y1b{bottom:641.445000px;}
.y104{bottom:644.145000px;}
.y4d{bottom:647.205000px;}
.yae{bottom:651.165000px;}
.ydf{bottom:652.245000px;}
.y94{bottom:653.505000px;}
.y7c{bottom:659.625000px;}
.y103{bottom:663.045000px;}
.y1a{bottom:663.945000px;}
.y4c{bottom:666.465000px;}
.yad{bottom:667.545000px;}
.yde{bottom:672.945000px;}
.y7b{bottom:680.325000px;}
.y102{bottom:682.125000px;}
.y4b{bottom:685.545000px;}
.y19{bottom:685.905000px;}
.ydd{bottom:689.865000px;}
.y7a{bottom:701.025000px;}
.y4a{bottom:704.445000px;}
.y18{bottom:708.765000px;}
.ydc{bottom:711.465000px;}
.y101{bottom:719.925000px;}
.y79{bottom:721.725000px;}
.y49{bottom:723.525000px;}
.y17{bottom:731.265000px;}
.y100{bottom:739.005000px;}
.y48{bottom:742.425000px;}
.y16{bottom:753.045000px;}
.ydb{bottom:753.585000px;}
.yff{bottom:757.905000px;}
.y47{bottom:761.325000px;}
.y78{bottom:762.945000px;}
.y15{bottom:775.725000px;}
.yfe{bottom:776.985000px;}
.y46{bottom:780.045000px;}
.y77{bottom:785.085000px;}
.yda{bottom:795.705000px;}
.yfd{bottom:795.885000px;}
.y14{bottom:796.605000px;}
.y45{bottom:799.305000px;}
.y76{bottom:805.785000px;}
.yfc{bottom:814.965000px;}
.y44{bottom:818.385000px;}
.y75{bottom:826.485000px;}
.yfb{bottom:833.865000px;}
.y43{bottom:837.285000px;}
.yd9{bottom:837.825000px;}
.y13{bottom:845.385000px;}
.y74{bottom:848.625000px;}
.yfa{bottom:852.765000px;}
.y42{bottom:856.185000px;}
.yd7{bottom:859.245000px;}
.y12{bottom:869.145000px;}
.y73{bottom:869.325000px;}
.yf9{bottom:871.845000px;}
.y41{bottom:875.265000px;}
.y72{bottom:889.890000px;}
.yf8{bottom:891.330000px;}
.y11{bottom:893.310000px;}
.y40{bottom:894.210000px;}
.yd6{bottom:901.410000px;}
.y71{bottom:912.030000px;}
.y3f{bottom:913.290000px;}
.y10{bottom:917.430000px;}
.yd5{bottom:923.010000px;}
.y3e{bottom:932.190000px;}
.y70{bottom:932.730000px;}
.yf{bottom:941.550000px;}
.y3d{bottom:951.270000px;}
.y6f{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.yd4{bottom:965.130000px;}
.y3c{bottom:970.170000px;}
.y6e{bottom:974.130000px;}
.yd3{bottom:986.550000px;}
.y3b{bottom:989.070000px;}
.y6d{bottom:994.830000px;}
.y3a{bottom:1007.790000px;}
.y6c{bottom:1015.530000px;}
.y39{bottom:1027.050000px;}
.yd1{bottom:1028.670000px;}
.y6b{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y38{bottom:1046.130000px;}
.y6a{bottom:1056.930000px;}
.y37{bottom:1065.030000px;}
.yd0{bottom:1070.790000px;}
.y69{bottom:1077.630000px;}
.y36{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.ycc{bottom:1092.210000px;}
.y68{bottom:1098.330000px;}
.y35{bottom:1103.010000px;}
.y67{bottom:1119.030000px;}
.y34{bottom:1121.910000px;}
.yca{bottom:1134.330000px;}
.y6{bottom:1139.580000px;}
.y66{bottom:1139.760000px;}
.y33{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h17{height:20.685000px;}
.h1c{height:20.700000px;}
.h1a{height:20.730000px;}
.h18{height:41.385000px;}
.h19{height:41.392500px;}
.h1d{height:41.400000px;}
.h1b{height:41.422500px;}
.h3{height:45.184219px;}
.hf{height:56.278125px;}
.h1f{height:59.383125px;}
.h15{height:61.171875px;}
.h16{height:62.085000px;}
.h11{height:62.130000px;}
.h10{height:64.546875px;}
.he{height:64.978594px;}
.h4{height:65.010937px;}
.hd{height:66.065625px;}
.h1e{height:68.084282px;}
.h14{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:72.846211px;}
.h13{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:78.825000px;}
.hb{height:82.676953px;}
.h9{height:84.898125px;}
.h7{height:132.789375px;}
.h12{height:256.510547px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:44.674500px;}
.w6{width:56.734500px;}
.w4{width:82.470000px;}
.w8{width:91.065000px;}
.w9{width:91.101000px;}
.wa{width:91.110000px;}
.w3{width:180.735000px;}
.wb{width:337.753500px;}
.w7{width:381.844500px;}
.wc{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:3.763500px;}
.x24{left:5.434500px;}
.x2a{left:6.510000px;}
.x4{left:7.918500px;}
.x28{left:15.285000px;}
.x27{left:18.705000px;}
.x2e{left:20.685000px;}
.x30{left:25.200000px;}
.x2c{left:28.294500px;}
.x2f{left:31.845000px;}
.x31{left:36.345000px;}
.x32{left:40.845000px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.x23{left:89.101500px;}
.xd{left:101.556000px;}
.x25{left:103.123500px;}
.x20{left:113.256000px;}
.xa{left:118.476000px;}
.xe{left:127.476000px;}
.x1c{left:129.636000px;}
.x33{left:142.050000px;}
.xb{left:144.576000px;}
.x1a{left:146.736000px;}
.x10{left:156.990000px;}
.x13{left:165.990000px;}
.x6{left:172.650000px;}
.x2{left:216.030000px;}
.x34{left:246.495000px;}
.x1e{left:269.175000px;}
.x11{left:271.515000px;}
.xc{left:300.495000px;}
.x18{left:311.295000px;}
.x22{left:363.855000px;}
.x21{left:367.095000px;}
.xf{left:403.995000px;}
.x12{left:405.075000px;}
.x19{left:415.155000px;}
.x17{left:428.115000px;}
.x9{left:446.505000px;}
.x15{left:475.665000px;}
.x1b{left:488.985000px;}
.x26{left:529.140000px;}
.x5{left:552.900000px;}
.x29{left:620.940000px;}
.x14{left:683.430000px;}
.x2b{left:712.950000px;}
.x7{left:733.650000px;}
.x1f{left:746.610000px;}
.x1d{left:776.670000px;}
.x16{left:808.020000px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-70.506667pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.896000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.549333pt;}
.ls7{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.455467pt;}
.ls27{letter-spacing:-0.406933pt;}
.ls26{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.135467pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls25{letter-spacing:0.030720pt;}
.ls3{letter-spacing:0.046080pt;}
.ls10{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls1f{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.135467pt;}
.ls20{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.960000pt;}
.ls6{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls12{letter-spacing:3.840000pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls1e{letter-spacing:10.240000pt;}
.ls22{letter-spacing:60.410027pt;}
.ls11{letter-spacing:67.946667pt;}
.ls1{letter-spacing:78.048000pt;}
.ls21{letter-spacing:764.298667pt;}
.ws3{word-spacing:-58.080000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws5{word-spacing:-16.960000pt;}
.ws4{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.584533pt;}
.wsa{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-7.040000pt;}
._14{margin-left:-1.895253pt;}
._6{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._5{width:2.374187pt;}
._d{width:3.827200pt;}
._c{width:4.736000pt;}
._a{width:5.652480pt;}
._7{width:7.078400pt;}
._8{width:7.982080pt;}
._b{width:9.538560pt;}
._11{width:10.688000pt;}
._10{width:11.712000pt;}
._12{width:12.992000pt;}
._13{width:14.208000pt;}
._15{width:15.104000pt;}
._1f{width:15.997440pt;}
._17{width:18.048000pt;}
._18{width:19.330560pt;}
._9{width:27.909120pt;}
._1a{width:32.737280pt;}
._1b{width:34.327040pt;}
._1c{width:35.600640pt;}
._e{width:41.876480pt;}
._16{width:44.544000pt;}
._1e{width:46.375147pt;}
._1d{width:47.411200pt;}
._19{width:70.848000pt;}
._1{width:426.964907pt;}
._2{width:654.826667pt;}
._4{width:672.266667pt;}
._3{width:739.456427pt;}
._20{width:752.266667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:232.320000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.ybf{bottom:3.986667pt;}
.yc9{bottom:3.993333pt;}
.ycf{bottom:4.000000pt;}
.ycb{bottom:4.026667pt;}
.yc5{bottom:13.106667pt;}
.yc7{bottom:13.108000pt;}
.yd2{bottom:13.120000pt;}
.yc2{bottom:13.266667pt;}
.ycd{bottom:13.280000pt;}
.y65{bottom:14.560000pt;}
.yc{bottom:18.880000pt;}
.ybd{bottom:22.386667pt;}
.yc8{bottom:22.388000pt;}
.yce{bottom:22.400000pt;}
.yd8{bottom:22.440000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.ybe{bottom:40.786667pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.yac{bottom:124.832000pt;}
.yc6{bottom:126.918667pt;}
.y32{bottom:129.472000pt;}
.yf7{bottom:138.266667pt;}
.y93{bottom:140.186667pt;}
.yab{bottom:143.226667pt;}
.y31{bottom:146.426667pt;}
.y63{bottom:152.826667pt;}
.yf6{bottom:156.666667pt;}
.y92{bottom:158.586667pt;}
.yaa{bottom:161.626667pt;}
.y30{bottom:163.226667pt;}
.yc4{bottom:164.360000pt;}
.y62{bottom:171.226667pt;}
.yf5{bottom:175.066667pt;}
.y91{bottom:176.986667pt;}
.y2f{bottom:180.026667pt;}
.y61{bottom:189.626667pt;}
.yf4{bottom:193.466667pt;}
.y90{bottom:195.226667pt;}
.y2e{bottom:196.986667pt;}
.ya9{bottom:198.426667pt;}
.yc3{bottom:201.800000pt;}
.y60{bottom:208.026667pt;}
.yf3{bottom:211.866667pt;}
.y2d{bottom:213.786667pt;}
.y8f{bottom:214.906667pt;}
.ya8{bottom:216.826667pt;}
.yc1{bottom:220.840000pt;}
.y5f{bottom:226.426667pt;}
.yf2{bottom:230.266667pt;}
.y2c{bottom:231.386667pt;}
.y8e{bottom:233.146667pt;}
.ya7{bottom:235.226667pt;}
.y5e{bottom:244.826667pt;}
.yf1{bottom:248.666667pt;}
.y2b{bottom:251.226667pt;}
.y8d{bottom:252.826667pt;}
.ya6{bottom:253.626667pt;}
.yc0{bottom:258.280000pt;}
.y5d{bottom:263.226667pt;}
.yf0{bottom:267.066667pt;}
.y2a{bottom:271.226667pt;}
.ya5{bottom:272.026667pt;}
.ybc{bottom:277.480000pt;}
.y5c{bottom:281.626667pt;}
.yef{bottom:285.306667pt;}
.y8c{bottom:289.626667pt;}
.ya4{bottom:290.426667pt;}
.y29{bottom:290.586667pt;}
.y5b{bottom:300.026667pt;}
.yee{bottom:303.706667pt;}
.y8b{bottom:307.866667pt;}
.ya3{bottom:308.826667pt;}
.y28{bottom:311.066667pt;}
.y112{bottom:312.186667pt;}
.y5a{bottom:318.426667pt;}
.yed{bottom:322.106667pt;}
.ya2{bottom:327.226667pt;}
.y8a{bottom:327.546667pt;}
.y111{bottom:330.586667pt;}
.y27{bottom:331.066667pt;}
.y59{bottom:336.826667pt;}
.ybb{bottom:337.346667pt;}
.yec{bottom:340.546667pt;}
.y110{bottom:345.026667pt;}
.ya1{bottom:345.666667pt;}
.y89{bottom:345.826667pt;}
.y26{bottom:350.946667pt;}
.y58{bottom:355.266667pt;}
.yba{bottom:355.746667pt;}
.yeb{bottom:358.946667pt;}
.y10f{bottom:363.426667pt;}
.ya0{bottom:364.066667pt;}
.y88{bottom:365.506667pt;}
.y25{bottom:370.466667pt;}
.y57{bottom:373.666667pt;}
.yb9{bottom:374.146667pt;}
.yea{bottom:377.346667pt;}
.y9f{bottom:382.466667pt;}
.y87{bottom:383.906667pt;}
.y10e{bottom:385.826667pt;}
.y24{bottom:390.786667pt;}
.y56{bottom:392.066667pt;}
.yb8{bottom:392.546667pt;}
.ye9{bottom:395.746667pt;}
.y9e{bottom:400.866667pt;}
.y86{bottom:402.306667pt;}
.y10d{bottom:403.906667pt;}
.y55{bottom:410.466667pt;}
.y23{bottom:410.786667pt;}
.yb7{bottom:410.946667pt;}
.ye8{bottom:414.146667pt;}
.y9d{bottom:419.106667pt;}
.y85{bottom:420.706667pt;}
.y54{bottom:428.866667pt;}
.yb6{bottom:429.346667pt;}
.y22{bottom:430.146667pt;}
.ye7{bottom:432.546667pt;}
.y9c{bottom:437.506667pt;}
.y10c{bottom:437.666667pt;}
.y84{bottom:439.106667pt;}
.y53{bottom:447.266667pt;}
.yb5{bottom:447.586667pt;}
.y21{bottom:450.146667pt;}
.ye6{bottom:450.946667pt;}
.y10b{bottom:454.466667pt;}
.y9b{bottom:455.906667pt;}
.y83{bottom:457.506667pt;}
.y52{bottom:465.666667pt;}
.yb4{bottom:467.106667pt;}
.ye5{bottom:469.346667pt;}
.y20{bottom:470.626667pt;}
.y10a{bottom:471.266667pt;}
.y9a{bottom:474.306667pt;}
.y82{bottom:475.906667pt;}
.y51{bottom:484.066667pt;}
.yb3{bottom:486.786667pt;}
.ye4{bottom:487.746667pt;}
.y109{bottom:488.226667pt;}
.y1f{bottom:490.466667pt;}
.y99{bottom:492.706667pt;}
.y81{bottom:494.306667pt;}
.y50{bottom:502.466667pt;}
.y108{bottom:505.026667pt;}
.yb2{bottom:505.186667pt;}
.ye3{bottom:506.146667pt;}
.y1e{bottom:510.466667pt;}
.y98{bottom:511.106667pt;}
.y80{bottom:512.706667pt;}
.y64{bottom:516.866667pt;}
.y4f{bottom:520.866667pt;}
.y107{bottom:521.986667pt;}
.yb1{bottom:523.586667pt;}
.ye2{bottom:524.546667pt;}
.y97{bottom:529.506667pt;}
.y1d{bottom:529.826667pt;}
.y7f{bottom:531.106667pt;}
.y106{bottom:538.786667pt;}
.y4e{bottom:539.266667pt;}
.yb0{bottom:541.986667pt;}
.ye1{bottom:542.946667pt;}
.y96{bottom:547.906667pt;}
.y7e{bottom:549.506667pt;}
.y1c{bottom:550.306667pt;}
.y105{bottom:555.586667pt;}
.yaf{bottom:560.386667pt;}
.ye0{bottom:561.346667pt;}
.y95{bottom:566.333333pt;}
.y7d{bottom:567.933333pt;}
.y1b{bottom:570.173333pt;}
.y104{bottom:572.573333pt;}
.y4d{bottom:575.293333pt;}
.yae{bottom:578.813333pt;}
.ydf{bottom:579.773333pt;}
.y94{bottom:580.893333pt;}
.y7c{bottom:586.333333pt;}
.y103{bottom:589.373333pt;}
.y1a{bottom:590.173333pt;}
.y4c{bottom:592.413333pt;}
.yad{bottom:593.373333pt;}
.yde{bottom:598.173333pt;}
.y7b{bottom:604.733333pt;}
.y102{bottom:606.333333pt;}
.y4b{bottom:609.373333pt;}
.y19{bottom:609.693333pt;}
.ydd{bottom:613.213333pt;}
.y7a{bottom:623.133333pt;}
.y4a{bottom:626.173333pt;}
.y18{bottom:630.013333pt;}
.ydc{bottom:632.413333pt;}
.y101{bottom:639.933333pt;}
.y79{bottom:641.533333pt;}
.y49{bottom:643.133333pt;}
.y17{bottom:650.013333pt;}
.y100{bottom:656.893333pt;}
.y48{bottom:659.933333pt;}
.y16{bottom:669.373333pt;}
.ydb{bottom:669.853333pt;}
.yff{bottom:673.693333pt;}
.y47{bottom:676.733333pt;}
.y78{bottom:678.173333pt;}
.y15{bottom:689.533333pt;}
.yfe{bottom:690.653333pt;}
.y46{bottom:693.373333pt;}
.y77{bottom:697.853333pt;}
.yda{bottom:707.293333pt;}
.yfd{bottom:707.453333pt;}
.y14{bottom:708.093333pt;}
.y45{bottom:710.493333pt;}
.y76{bottom:716.253333pt;}
.yfc{bottom:724.413333pt;}
.y44{bottom:727.453333pt;}
.y75{bottom:734.653333pt;}
.yfb{bottom:741.213333pt;}
.y43{bottom:744.253333pt;}
.yd9{bottom:744.733333pt;}
.y13{bottom:751.453333pt;}
.y74{bottom:754.333333pt;}
.yfa{bottom:758.013333pt;}
.y42{bottom:761.053333pt;}
.yd7{bottom:763.773333pt;}
.y12{bottom:772.573333pt;}
.y73{bottom:772.733333pt;}
.yf9{bottom:774.973333pt;}
.y41{bottom:778.013333pt;}
.y72{bottom:791.013333pt;}
.yf8{bottom:792.293333pt;}
.y11{bottom:794.053333pt;}
.y40{bottom:794.853333pt;}
.yd6{bottom:801.253333pt;}
.y71{bottom:810.693333pt;}
.y3f{bottom:811.813333pt;}
.y10{bottom:815.493333pt;}
.yd5{bottom:820.453333pt;}
.y3e{bottom:828.613333pt;}
.y70{bottom:829.093333pt;}
.yf{bottom:836.933333pt;}
.y3d{bottom:845.573333pt;}
.y6f{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.yd4{bottom:857.893333pt;}
.y3c{bottom:862.373333pt;}
.y6e{bottom:865.893333pt;}
.yd3{bottom:876.933333pt;}
.y3b{bottom:879.173333pt;}
.y6d{bottom:884.293333pt;}
.y3a{bottom:895.813333pt;}
.y6c{bottom:902.693333pt;}
.y39{bottom:912.933333pt;}
.yd1{bottom:914.373333pt;}
.y6b{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y38{bottom:929.893333pt;}
.y6a{bottom:939.493333pt;}
.y37{bottom:946.693333pt;}
.yd0{bottom:951.813333pt;}
.y69{bottom:957.893333pt;}
.y36{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.ycc{bottom:970.853333pt;}
.y68{bottom:976.293333pt;}
.y35{bottom:980.453333pt;}
.y67{bottom:994.693333pt;}
.y34{bottom:997.253333pt;}
.yca{bottom:1008.293333pt;}
.y6{bottom:1012.960000pt;}
.y66{bottom:1013.120000pt;}
.y33{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h17{height:18.386667pt;}
.h1c{height:18.400000pt;}
.h1a{height:18.426667pt;}
.h18{height:36.786667pt;}
.h19{height:36.793333pt;}
.h1d{height:36.800000pt;}
.h1b{height:36.820000pt;}
.h3{height:40.163750pt;}
.hf{height:50.025000pt;}
.h1f{height:52.785000pt;}
.h15{height:54.375000pt;}
.h16{height:55.186667pt;}
.h11{height:55.226667pt;}
.h10{height:57.375000pt;}
.he{height:57.758750pt;}
.h4{height:57.787500pt;}
.hd{height:58.725000pt;}
.h1e{height:60.519362pt;}
.h14{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:64.752187pt;}
.h13{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:70.066667pt;}
.hb{height:73.490625pt;}
.h9{height:75.465000pt;}
.h7{height:118.035000pt;}
.h12{height:228.009375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:39.710667pt;}
.w6{width:50.430667pt;}
.w4{width:73.306667pt;}
.w8{width:80.946667pt;}
.w9{width:80.978667pt;}
.wa{width:80.986667pt;}
.w3{width:160.653333pt;}
.wb{width:300.225333pt;}
.w7{width:339.417333pt;}
.wc{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:3.345333pt;}
.x24{left:4.830667pt;}
.x2a{left:5.786667pt;}
.x4{left:7.038667pt;}
.x28{left:13.586667pt;}
.x27{left:16.626667pt;}
.x2e{left:18.386667pt;}
.x30{left:22.400000pt;}
.x2c{left:25.150667pt;}
.x2f{left:28.306667pt;}
.x31{left:32.306667pt;}
.x32{left:36.306667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.x23{left:79.201333pt;}
.xd{left:90.272000pt;}
.x25{left:91.665333pt;}
.x20{left:100.672000pt;}
.xa{left:105.312000pt;}
.xe{left:113.312000pt;}
.x1c{left:115.232000pt;}
.x33{left:126.266667pt;}
.xb{left:128.512000pt;}
.x1a{left:130.432000pt;}
.x10{left:139.546667pt;}
.x13{left:147.546667pt;}
.x6{left:153.466667pt;}
.x2{left:192.026667pt;}
.x34{left:219.106667pt;}
.x1e{left:239.266667pt;}
.x11{left:241.346667pt;}
.xc{left:267.106667pt;}
.x18{left:276.706667pt;}
.x22{left:323.426667pt;}
.x21{left:326.306667pt;}
.xf{left:359.106667pt;}
.x12{left:360.066667pt;}
.x19{left:369.026667pt;}
.x17{left:380.546667pt;}
.x9{left:396.893333pt;}
.x15{left:422.813333pt;}
.x1b{left:434.653333pt;}
.x26{left:470.346667pt;}
.x5{left:491.466667pt;}
.x29{left:551.946667pt;}
.x14{left:607.493333pt;}
.x2b{left:633.733333pt;}
.x7{left:652.133333pt;}
.x1f{left:663.653333pt;}
.x1d{left:690.373333pt;}
.x16{left:718.240000pt;}
}




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