
    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_f978f85498e6c020345846d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_a5d50428cf28232e836aaa9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_6b91b42b917da924fc3c0d47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_e12d934c125e233e0013556d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc049c29cd4f3c251418de0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_fa55675f36903376324d1c58.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b4e5b423f6d0c66ef458a644.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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:ffd;src:url('chunks/assets/font_7d1a1a4957c21f063ad4f0d9.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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);}
.v5{vertical-align:-21.000000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.v4{vertical-align:21.060000px;}
.v3{vertical-align:24.000000px;}
.ls9{letter-spacing:-0.984000px;}
.ls7{letter-spacing:-0.294000px;}
.lsf{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.135000px;}
.ls6{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.063000px;}
.ls1{letter-spacing:0.372000px;}
.ls2{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.456000px;}
.ls16{letter-spacing:0.492000px;}
.ls0{letter-spacing:0.516000px;}
.ls15{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.792000px;}
.lsb{letter-spacing:1.320000px;}
.lsc{letter-spacing:5.820000px;}
.lsd{letter-spacing:13.470000px;}
.ls12{letter-spacing:17.970000px;}
.ls11{letter-spacing:20.970000px;}
.ls13{letter-spacing:25.470000px;}
.ls14{letter-spacing:32.970000px;}
.lse{letter-spacing:52.656000px;}
.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;}
}
.wsd{word-spacing:-48.000000px;}
.ws2{word-spacing:-44.688000px;}
.wsf{word-spacing:-33.120000px;}
.ws1{word-spacing:-31.464000px;}
.wsa{word-spacing:-18.780000px;}
.ws9{word-spacing:-17.580000px;}
.wsb{word-spacing:-17.340000px;}
.ws6{word-spacing:-16.902000px;}
.ws5{word-spacing:-15.918000px;}
.wsc{word-spacing:-15.816000px;}
.wse{word-spacing:-14.556000px;}
.ws4{word-spacing:-14.064000px;}
.ws7{word-spacing:-12.270000px;}
.ws0{word-spacing:-12.207000px;}
.ws3{word-spacing:-11.913000px;}
.ws8{word-spacing:0.000000px;}
._27{margin-left:-8.670000px;}
._26{margin-left:-7.560000px;}
._14{margin-left:-3.897000px;}
._2{margin-left:-2.631000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._9{width:2.511000px;}
._15{width:4.176000px;}
._3{width:5.970000px;}
._19{width:7.110000px;}
._1a{width:8.676000px;}
._11{width:10.176000px;}
._17{width:11.181000px;}
._16{width:12.240000px;}
._21{width:13.413000px;}
._23{width:14.790000px;}
._1b{width:16.050000px;}
._b{width:17.280000px;}
._a{width:18.288000px;}
._1e{width:21.171000px;}
._8{width:22.446000px;}
._4{width:23.757000px;}
._c{width:25.452000px;}
._28{width:26.559000px;}
._12{width:28.197000px;}
._13{width:29.343000px;}
._d{width:31.845000px;}
._10{width:33.582000px;}
._1d{width:36.057000px;}
._22{width:40.089000px;}
._18{width:45.552000px;}
._7{width:47.874000px;}
._20{width:52.920000px;}
._1f{width:54.057000px;}
._e{width:58.029000px;}
._f{width:59.118000px;}
._1c{width:77.517000px;}
._6{width:98.841000px;}
._5{width:119.769000px;}
._25{width:186.888000px;}
._24{width:188.538000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.000000px;}
.fs5{font-size:12.000000px;}
.fse{font-size:18.000000px;}
.fsd{font-size:24.000000px;}
.fs11{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs10{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.fs12{font-size:120.000000px;}
.fsa{font-size:132.000000px;}
.fs6{font-size:144.000000px;}
.fs9{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:0.015000px;}
.y40{bottom:1.125000px;}
.y3f{bottom:1.500000px;}
.y5a{bottom:1.875000px;}
.y2d{bottom:2.250000px;}
.ya{bottom:2.287500px;}
.y3d{bottom:2.625000px;}
.yf6{bottom:3.000000px;}
.y89{bottom:3.375000px;}
.y76{bottom:4.125000px;}
.y1e{bottom:4.500000px;}
.y4{bottom:4.875000px;}
.y1c{bottom:5.625000px;}
.yb{bottom:8.625000px;}
.y5{bottom:10.125000px;}
.y8d{bottom:12.375000px;}
.y2c{bottom:13.875000px;}
.y7{bottom:15.000000px;}
.y7f{bottom:16.875000px;}
.y3c{bottom:16.905000px;}
.yc8{bottom:17.250000px;}
.y75{bottom:18.375000px;}
.y81{bottom:18.750000px;}
.y58{bottom:19.500000px;}
.y88{bottom:19.875000px;}
.y66{bottom:20.655000px;}
.y8{bottom:21.000000px;}
.yd{bottom:25.125000px;}
.y2b{bottom:25.500000px;}
.y65{bottom:27.780000px;}
.y8c{bottom:30.742500px;}
.y1b{bottom:31.500000px;}
.y3b{bottom:31.530000px;}
.yc7{bottom:31.882500px;}
.y74{bottom:33.000000px;}
.y57{bottom:33.750000px;}
.y64{bottom:34.905000px;}
.y87{bottom:36.007500px;}
.y2a{bottom:37.500000px;}
.yf5{bottom:39.375000px;}
.y82{bottom:40.125000px;}
.yc{bottom:42.375000px;}
.y4a{bottom:42.750000px;}
.y63{bottom:43.155000px;}
.y3{bottom:43.500000px;}
.y3a{bottom:45.780000px;}
.y7e{bottom:45.795000px;}
.yc6{bottom:46.117500px;}
.y73{bottom:47.655000px;}
.y56{bottom:48.375000px;}
.y8b{bottom:48.757500px;}
.y29{bottom:49.125000px;}
.y49{bottom:51.000000px;}
.y86{bottom:52.507500px;}
.y62{bottom:54.780000px;}
.y1a{bottom:57.795000px;}
.yf4{bottom:60.000000px;}
.y39{bottom:60.405000px;}
.y7d{bottom:60.420000px;}
.yc5{bottom:60.757500px;}
.y28{bottom:61.125000px;}
.y72{bottom:61.905000px;}
.y48{bottom:62.625000px;}
.y55{bottom:63.000000px;}
.y61{bottom:66.405000px;}
.y8a{bottom:66.757500px;}
.y85{bottom:69.007500px;}
.y27{bottom:72.750000px;}
.y47{bottom:74.250000px;}
.yc4{bottom:75.007500px;}
.y38{bottom:75.030000px;}
.y71{bottom:76.545000px;}
.y54{bottom:77.250000px;}
.y60{bottom:78.405000px;}
.y9{bottom:82.125000px;}
.y19{bottom:84.045000px;}
.y26{bottom:84.375000px;}
.yf3{bottom:85.920000px;}
.y46{bottom:86.250000px;}
.y37{bottom:89.280000px;}
.y7c{bottom:89.295000px;}
.yc3{bottom:89.662500px;}
.y5f{bottom:90.030000px;}
.y70{bottom:91.170000px;}
.y6{bottom:91.912500px;}
.y53{bottom:91.920000px;}
.y25{bottom:96.405000px;}
.y45{bottom:97.875000px;}
.y5e{bottom:101.655000px;}
.y36{bottom:103.905000px;}
.y7b{bottom:103.920000px;}
.yc2{bottom:104.287500px;}
.y6f{bottom:105.405000px;}
.y52{bottom:106.545000px;}
.y24{bottom:108.030000px;}
.y44{bottom:109.530000px;}
.yf2{bottom:109.545000px;}
.y18{bottom:109.920000px;}
.y5d{bottom:114.405000px;}
.y35{bottom:118.530000px;}
.yc1{bottom:118.537500px;}
.y7a{bottom:118.545000px;}
.y23{bottom:119.655000px;}
.y6e{bottom:120.045000px;}
.y51{bottom:120.795000px;}
.y43{bottom:122.280000px;}
.y84{bottom:126.412500px;}
.yf1{bottom:127.920000px;}
.y5c{bottom:129.075000px;}
.y42{bottom:130.155000px;}
.y91{bottom:130.537500px;}
.y22{bottom:131.655000px;}
.y79{bottom:132.795000px;}
.y34{bottom:132.810000px;}
.yc0{bottom:133.162500px;}
.y6d{bottom:134.295000px;}
.y50{bottom:135.420000px;}
.y17{bottom:136.170000px;}
.y20{bottom:140.655000px;}
.y21{bottom:144.030000px;}
.yf0{bottom:145.920000px;}
.y33{bottom:147.450000px;}
.ybf{bottom:147.787500px;}
.y78{bottom:148.170000px;}
.y6c{bottom:148.920000px;}
.y4f{bottom:149.670000px;}
.y32{bottom:161.685000px;}
.ybe{bottom:162.037500px;}
.y16{bottom:162.450000px;}
.y6b{bottom:163.545000px;}
.yef{bottom:163.920000px;}
.y4e{bottom:164.295000px;}
.y31{bottom:176.310000px;}
.ybd{bottom:176.662500px;}
.yff{bottom:177.795000px;}
.y6a{bottom:177.825000px;}
.y4d{bottom:178.920000px;}
.yfe{bottom:179.670000px;}
.yfc{bottom:181.155000px;}
.yee{bottom:181.920000px;}
.y15{bottom:188.325000px;}
.y30{bottom:190.935000px;}
.y69{bottom:192.450000px;}
.ybc{bottom:195.787500px;}
.yed{bottom:200.325000px;}
.y83{bottom:210.825000px;}
.y14{bottom:214.575000px;}
.yfb{bottom:217.950000px;}
.yec{bottom:218.325000px;}
.y80{bottom:222.825000px;}
.ybb{bottom:224.332500px;}
.yfa{bottom:232.575000px;}
.yf9{bottom:234.450000px;}
.yeb{bottom:236.325000px;}
.yf8{bottom:238.950000px;}
.y13{bottom:240.825000px;}
.yba{bottom:242.317500px;}
.yf7{bottom:247.200000px;}
.yea{bottom:254.700000px;}
.yc9{bottom:257.700000px;}
.y11{bottom:258.825000px;}
.yb9{bottom:260.332500px;}
.y12{bottom:266.700000px;}
.ye{bottom:272.700000px;}
.yb8{bottom:278.707500px;}
.y68{bottom:288.075000px;}
.ye9{bottom:290.700000px;}
.yb7{bottom:296.707500px;}
.ye8{bottom:308.700000px;}
.yb6{bottom:317.332500px;}
.ye7{bottom:327.120000px;}
.ye6{bottom:345.120000px;}
.yb5{bottom:358.237500px;}
.ye5{bottom:363.120000px;}
.yb4{bottom:379.237500px;}
.ye4{bottom:381.495000px;}
.ye3{bottom:399.495000px;}
.yb3{bottom:399.862500px;}
.ye2{bottom:417.495000px;}
.yb2{bottom:420.862500px;}
.ye1{bottom:438.120000px;}
.yb1{bottom:441.487500px;}
.y77{bottom:448.995000px;}
.y5b{bottom:456.495000px;}
.yb0{bottom:462.532500px;}
.ye0{bottom:464.400000px;}
.yaf{bottom:483.157500px;}
.ydf{bottom:488.025000px;}
.y67{bottom:492.525000px;}
.y4c{bottom:498.150000px;}
.yae{bottom:504.157500px;}
.yde{bottom:506.025000px;}
.ydd{bottom:524.025000px;}
.yad{bottom:524.782500px;}
.ydc{bottom:542.400000px;}
.yac{bottom:545.782500px;}
.ydb{bottom:565.650000px;}
.yab{bottom:566.407500px;}
.yda{bottom:578.430000px;}
.yaa{bottom:587.437500px;}
.y59{bottom:591.570000px;}
.yd9{bottom:596.430000px;}
.y41{bottom:599.070000px;}
.ya9{bottom:608.062500px;}
.yd8{bottom:614.805000px;}
.y2e{bottom:615.180000px;}
.ya8{bottom:629.062500px;}
.yd7{bottom:635.430000px;}
.ya7{bottom:649.687500px;}
.yd6{bottom:661.305000px;}
.ya6{bottom:670.687500px;}
.yd5{bottom:684.930000px;}
.y4b{bottom:688.695000px;}
.ya5{bottom:691.687500px;}
.y2f{bottom:696.945000px;}
.yd4{bottom:703.350000px;}
.ya4{bottom:712.342500px;}
.yd3{bottom:721.350000px;}
.y3e{bottom:734.850000px;}
.ya3{bottom:737.092500px;}
.yd2{bottom:739.350000px;}
.y1f{bottom:741.975000px;}
.yf{bottom:743.100000px;}
.yd1{bottom:757.350000px;}
.ya2{bottom:760.717500px;}
.yd0{bottom:775.725000px;}
.ya1{bottom:779.092500px;}
.ycf{bottom:793.725000px;}
.ya0{bottom:797.092500px;}
.yce{bottom:811.725000px;}
.y9f{bottom:815.092500px;}
.ycd{bottom:830.130000px;}
.y9e{bottom:833.512500px;}
.ycc{bottom:848.130000px;}
.y9d{bottom:851.512500px;}
.y9c{bottom:869.512500px;}
.ycb{bottom:870.255000px;}
.y9b{bottom:887.512500px;}
.y1d{bottom:899.505000px;}
.yca{bottom:902.880000px;}
.y9a{bottom:905.887500px;}
.y10{bottom:919.380000px;}
.y99{bottom:923.887500px;}
.y98{bottom:941.887500px;}
.y97{bottom:962.542500px;}
.y96{bottom:986.167500px;}
.y95{bottom:1004.542500px;}
.y94{bottom:1022.542500px;}
.y93{bottom:1040.542500px;}
.y92{bottom:1042.792500px;}
.y90{bottom:1189.830000px;}
.y8f{bottom:1208.625000px;}
.y2{bottom:1210.125000px;}
.y1{bottom:1226.625000px;}
.y8e{bottom:1227.375000px;}
.hd{height:3.999023px;}
.h37{height:4.166016px;}
.h3f{height:4.910156px;}
.h9{height:5.287500px;}
.h26{height:5.625000px;}
.h1d{height:7.125000px;}
.h24{height:7.500000px;}
.h22{height:8.235000px;}
.ha{height:9.820312px;}
.h40{height:14.250000px;}
.h27{height:14.730469px;}
.h2c{height:15.375000px;}
.h1e{height:16.253906px;}
.h21{height:19.640625px;}
.h13{height:19.875000px;}
.h1f{height:24.011719px;}
.h6{height:31.875000px;}
.h19{height:31.916016px;}
.h3e{height:34.371094px;}
.h30{height:36.000000px;}
.h41{height:36.787500px;}
.hb{height:38.625000px;}
.h1a{height:39.019043px;}
.h8{height:39.281250px;}
.h31{height:40.500000px;}
.h2a{height:41.736328px;}
.h7{height:43.912500px;}
.h2f{height:44.191406px;}
.h2b{height:48.023438px;}
.h17{height:48.761719px;}
.h34{height:49.101562px;}
.h33{height:49.189453px;}
.h2{height:49.804688px;}
.h2d{height:49.875000px;}
.h5{height:49.992188px;}
.h39{height:52.916016px;}
.h35{height:52.976016px;}
.h18{height:54.026367px;}
.h4{height:58.921875px;}
.h14{height:59.027344px;}
.h15{height:59.765625px;}
.h3a{height:60.029297px;}
.h2e{height:63.000000px;}
.h3b{height:78.703125px;}
.h12{height:79.687500px;}
.h3{height:80.287500px;}
.h32{height:81.787500px;}
.h36{height:84.041016px;}
.h3c{height:98.378906px;}
.hc{height:108.000000px;}
.h11{height:109.570312px;}
.h25{height:135.075000px;}
.h20{height:135.787500px;}
.hf{height:139.453125px;}
.h16{height:157.545000px;}
.h29{height:160.920000px;}
.h23{height:190.530000px;}
.h1c{height:202.575000px;}
.h28{height:204.450000px;}
.h10{height:287.370000px;}
.h1b{height:626.820000px;}
.h3d{height:928.380000px;}
.he{height:934.050000px;}
.h38{height:1055.550000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.wb{width:21.000000px;}
.w14{width:21.375000px;}
.w7{width:23.662500px;}
.w6{width:61.125000px;}
.w5{width:61.500000px;}
.w11{width:95.662500px;}
.wf{width:96.037500px;}
.w2{width:97.162500px;}
.w9{width:108.825000px;}
.we{width:116.662500px;}
.w13{width:125.287500px;}
.w10{width:127.537500px;}
.w12{width:127.950000px;}
.w3{width:183.075000px;}
.wa{width:244.950000px;}
.wc{width:348.900000px;}
.wd{width:353.775000px;}
.w4{width:443.070000px;}
.w8{width:700.020000px;}
.w15{width:763.425000px;}
.w16{width:784.800000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:8.250000px;}
.x12{left:13.125000px;}
.x14{left:14.250000px;}
.x9{left:21.735000px;}
.x1f{left:31.875000px;}
.x1d{left:34.875000px;}
.x7{left:36.000000px;}
.xa{left:44.250000px;}
.x1{left:54.037487px;}
.x1a{left:55.912487px;}
.x1c{left:62.287500px;}
.x20{left:63.787500px;}
.x19{left:75.412500px;}
.x2{left:89.287500px;}
.x1b{left:95.287487px;}
.x10{left:104.662500px;}
.x21{left:107.287487px;}
.x18{left:113.280000px;}
.xb{left:115.162500px;}
.xc{left:138.825000px;}
.x3{left:151.200000px;}
.x11{left:170.700000px;}
.x4{left:175.200000px;}
.xd{left:223.995000px;}
.x13{left:266.745000px;}
.x5{left:334.275000px;}
.x22{left:342.112500px;}
.x15{left:394.275000px;}
.x23{left:443.062500px;}
.x1e{left:456.944987px;}
.xe{left:468.945000px;}
.xf{left:489.945000px;}
.x16{left:617.895000px;}
.x17{left:713.550000px;}
.x8{left:777.345000px;}
@media print{
.v5{vertical-align:-18.666667pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.v4{vertical-align:18.720000pt;}
.v3{vertical-align:21.333333pt;}
.ls9{letter-spacing:-0.874667pt;}
.ls7{letter-spacing:-0.261333pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.120000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.056000pt;}
.ls1{letter-spacing:0.330667pt;}
.ls2{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.405333pt;}
.ls16{letter-spacing:0.437333pt;}
.ls0{letter-spacing:0.458667pt;}
.ls15{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.704000pt;}
.lsb{letter-spacing:1.173333pt;}
.lsc{letter-spacing:5.173333pt;}
.lsd{letter-spacing:11.973333pt;}
.ls12{letter-spacing:15.973333pt;}
.ls11{letter-spacing:18.640000pt;}
.ls13{letter-spacing:22.640000pt;}
.ls14{letter-spacing:29.306667pt;}
.lse{letter-spacing:46.805333pt;}
.wsd{word-spacing:-42.666667pt;}
.ws2{word-spacing:-39.722667pt;}
.wsf{word-spacing:-29.440000pt;}
.ws1{word-spacing:-27.968000pt;}
.wsa{word-spacing:-16.693333pt;}
.ws9{word-spacing:-15.626667pt;}
.wsb{word-spacing:-15.413333pt;}
.ws6{word-spacing:-15.024000pt;}
.ws5{word-spacing:-14.149333pt;}
.wsc{word-spacing:-14.058667pt;}
.wse{word-spacing:-12.938667pt;}
.ws4{word-spacing:-12.501333pt;}
.ws7{word-spacing:-10.906667pt;}
.ws0{word-spacing:-10.850667pt;}
.ws3{word-spacing:-10.589333pt;}
.ws8{word-spacing:0.000000pt;}
._27{margin-left:-7.706667pt;}
._26{margin-left:-6.720000pt;}
._14{margin-left:-3.464000pt;}
._2{margin-left:-2.338667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._9{width:2.232000pt;}
._15{width:3.712000pt;}
._3{width:5.306667pt;}
._19{width:6.320000pt;}
._1a{width:7.712000pt;}
._11{width:9.045333pt;}
._17{width:9.938667pt;}
._16{width:10.880000pt;}
._21{width:11.922667pt;}
._23{width:13.146667pt;}
._1b{width:14.266667pt;}
._b{width:15.360000pt;}
._a{width:16.256000pt;}
._1e{width:18.818667pt;}
._8{width:19.952000pt;}
._4{width:21.117333pt;}
._c{width:22.624000pt;}
._28{width:23.608000pt;}
._12{width:25.064000pt;}
._13{width:26.082667pt;}
._d{width:28.306667pt;}
._10{width:29.850667pt;}
._1d{width:32.050667pt;}
._22{width:35.634667pt;}
._18{width:40.490667pt;}
._7{width:42.554667pt;}
._20{width:47.040000pt;}
._1f{width:48.050667pt;}
._e{width:51.581333pt;}
._f{width:52.549333pt;}
._1c{width:68.904000pt;}
._6{width:87.858667pt;}
._5{width:106.461333pt;}
._25{width:166.122667pt;}
._24{width:167.589333pt;}
.fs8{font-size:5.333333pt;}
.fs5{font-size:10.666667pt;}
.fse{font-size:16.000000pt;}
.fsd{font-size:21.333333pt;}
.fs11{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs10{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.fs12{font-size:106.666667pt;}
.fsa{font-size:117.333333pt;}
.fs6{font-size:128.000000pt;}
.fs9{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:0.013333pt;}
.y40{bottom:1.000000pt;}
.y3f{bottom:1.333333pt;}
.y5a{bottom:1.666667pt;}
.y2d{bottom:2.000000pt;}
.ya{bottom:2.033333pt;}
.y3d{bottom:2.333333pt;}
.yf6{bottom:2.666667pt;}
.y89{bottom:3.000000pt;}
.y76{bottom:3.666667pt;}
.y1e{bottom:4.000000pt;}
.y4{bottom:4.333333pt;}
.y1c{bottom:5.000000pt;}
.yb{bottom:7.666667pt;}
.y5{bottom:9.000000pt;}
.y8d{bottom:11.000000pt;}
.y2c{bottom:12.333333pt;}
.y7{bottom:13.333333pt;}
.y7f{bottom:15.000000pt;}
.y3c{bottom:15.026667pt;}
.yc8{bottom:15.333333pt;}
.y75{bottom:16.333333pt;}
.y81{bottom:16.666667pt;}
.y58{bottom:17.333333pt;}
.y88{bottom:17.666667pt;}
.y66{bottom:18.360000pt;}
.y8{bottom:18.666667pt;}
.yd{bottom:22.333333pt;}
.y2b{bottom:22.666667pt;}
.y65{bottom:24.693333pt;}
.y8c{bottom:27.326667pt;}
.y1b{bottom:28.000000pt;}
.y3b{bottom:28.026667pt;}
.yc7{bottom:28.340000pt;}
.y74{bottom:29.333333pt;}
.y57{bottom:30.000000pt;}
.y64{bottom:31.026667pt;}
.y87{bottom:32.006667pt;}
.y2a{bottom:33.333333pt;}
.yf5{bottom:35.000000pt;}
.y82{bottom:35.666667pt;}
.yc{bottom:37.666667pt;}
.y4a{bottom:38.000000pt;}
.y63{bottom:38.360000pt;}
.y3{bottom:38.666667pt;}
.y3a{bottom:40.693333pt;}
.y7e{bottom:40.706667pt;}
.yc6{bottom:40.993333pt;}
.y73{bottom:42.360000pt;}
.y56{bottom:43.000000pt;}
.y8b{bottom:43.340000pt;}
.y29{bottom:43.666667pt;}
.y49{bottom:45.333333pt;}
.y86{bottom:46.673333pt;}
.y62{bottom:48.693333pt;}
.y1a{bottom:51.373333pt;}
.yf4{bottom:53.333333pt;}
.y39{bottom:53.693333pt;}
.y7d{bottom:53.706667pt;}
.yc5{bottom:54.006667pt;}
.y28{bottom:54.333333pt;}
.y72{bottom:55.026667pt;}
.y48{bottom:55.666667pt;}
.y55{bottom:56.000000pt;}
.y61{bottom:59.026667pt;}
.y8a{bottom:59.340000pt;}
.y85{bottom:61.340000pt;}
.y27{bottom:64.666667pt;}
.y47{bottom:66.000000pt;}
.yc4{bottom:66.673333pt;}
.y38{bottom:66.693333pt;}
.y71{bottom:68.040000pt;}
.y54{bottom:68.666667pt;}
.y60{bottom:69.693333pt;}
.y9{bottom:73.000000pt;}
.y19{bottom:74.706667pt;}
.y26{bottom:75.000000pt;}
.yf3{bottom:76.373333pt;}
.y46{bottom:76.666667pt;}
.y37{bottom:79.360000pt;}
.y7c{bottom:79.373333pt;}
.yc3{bottom:79.700000pt;}
.y5f{bottom:80.026667pt;}
.y70{bottom:81.040000pt;}
.y6{bottom:81.700000pt;}
.y53{bottom:81.706667pt;}
.y25{bottom:85.693333pt;}
.y45{bottom:87.000000pt;}
.y5e{bottom:90.360000pt;}
.y36{bottom:92.360000pt;}
.y7b{bottom:92.373333pt;}
.yc2{bottom:92.700000pt;}
.y6f{bottom:93.693333pt;}
.y52{bottom:94.706667pt;}
.y24{bottom:96.026667pt;}
.y44{bottom:97.360000pt;}
.yf2{bottom:97.373333pt;}
.y18{bottom:97.706667pt;}
.y5d{bottom:101.693333pt;}
.y35{bottom:105.360000pt;}
.yc1{bottom:105.366667pt;}
.y7a{bottom:105.373333pt;}
.y23{bottom:106.360000pt;}
.y6e{bottom:106.706667pt;}
.y51{bottom:107.373333pt;}
.y43{bottom:108.693333pt;}
.y84{bottom:112.366667pt;}
.yf1{bottom:113.706667pt;}
.y5c{bottom:114.733333pt;}
.y42{bottom:115.693333pt;}
.y91{bottom:116.033333pt;}
.y22{bottom:117.026667pt;}
.y79{bottom:118.040000pt;}
.y34{bottom:118.053333pt;}
.yc0{bottom:118.366667pt;}
.y6d{bottom:119.373333pt;}
.y50{bottom:120.373333pt;}
.y17{bottom:121.040000pt;}
.y20{bottom:125.026667pt;}
.y21{bottom:128.026667pt;}
.yf0{bottom:129.706667pt;}
.y33{bottom:131.066667pt;}
.ybf{bottom:131.366667pt;}
.y78{bottom:131.706667pt;}
.y6c{bottom:132.373333pt;}
.y4f{bottom:133.040000pt;}
.y32{bottom:143.720000pt;}
.ybe{bottom:144.033333pt;}
.y16{bottom:144.400000pt;}
.y6b{bottom:145.373333pt;}
.yef{bottom:145.706667pt;}
.y4e{bottom:146.040000pt;}
.y31{bottom:156.720000pt;}
.ybd{bottom:157.033333pt;}
.yff{bottom:158.040000pt;}
.y6a{bottom:158.066667pt;}
.y4d{bottom:159.040000pt;}
.yfe{bottom:159.706667pt;}
.yfc{bottom:161.026667pt;}
.yee{bottom:161.706667pt;}
.y15{bottom:167.400000pt;}
.y30{bottom:169.720000pt;}
.y69{bottom:171.066667pt;}
.ybc{bottom:174.033333pt;}
.yed{bottom:178.066667pt;}
.y83{bottom:187.400000pt;}
.y14{bottom:190.733333pt;}
.yfb{bottom:193.733333pt;}
.yec{bottom:194.066667pt;}
.y80{bottom:198.066667pt;}
.ybb{bottom:199.406667pt;}
.yfa{bottom:206.733333pt;}
.yf9{bottom:208.400000pt;}
.yeb{bottom:210.066667pt;}
.yf8{bottom:212.400000pt;}
.y13{bottom:214.066667pt;}
.yba{bottom:215.393333pt;}
.yf7{bottom:219.733333pt;}
.yea{bottom:226.400000pt;}
.yc9{bottom:229.066667pt;}
.y11{bottom:230.066667pt;}
.yb9{bottom:231.406667pt;}
.y12{bottom:237.066667pt;}
.ye{bottom:242.400000pt;}
.yb8{bottom:247.740000pt;}
.y68{bottom:256.066667pt;}
.ye9{bottom:258.400000pt;}
.yb7{bottom:263.740000pt;}
.ye8{bottom:274.400000pt;}
.yb6{bottom:282.073333pt;}
.ye7{bottom:290.773333pt;}
.ye6{bottom:306.773333pt;}
.yb5{bottom:318.433333pt;}
.ye5{bottom:322.773333pt;}
.yb4{bottom:337.100000pt;}
.ye4{bottom:339.106667pt;}
.ye3{bottom:355.106667pt;}
.yb3{bottom:355.433333pt;}
.ye2{bottom:371.106667pt;}
.yb2{bottom:374.100000pt;}
.ye1{bottom:389.440000pt;}
.yb1{bottom:392.433333pt;}
.y77{bottom:399.106667pt;}
.y5b{bottom:405.773333pt;}
.yb0{bottom:411.140000pt;}
.ye0{bottom:412.800000pt;}
.yaf{bottom:429.473333pt;}
.ydf{bottom:433.800000pt;}
.y67{bottom:437.800000pt;}
.y4c{bottom:442.800000pt;}
.yae{bottom:448.140000pt;}
.yde{bottom:449.800000pt;}
.ydd{bottom:465.800000pt;}
.yad{bottom:466.473333pt;}
.ydc{bottom:482.133333pt;}
.yac{bottom:485.140000pt;}
.ydb{bottom:502.800000pt;}
.yab{bottom:503.473333pt;}
.yda{bottom:514.160000pt;}
.yaa{bottom:522.166667pt;}
.y59{bottom:525.840000pt;}
.yd9{bottom:530.160000pt;}
.y41{bottom:532.506667pt;}
.ya9{bottom:540.500000pt;}
.yd8{bottom:546.493333pt;}
.y2e{bottom:546.826667pt;}
.ya8{bottom:559.166667pt;}
.yd7{bottom:564.826667pt;}
.ya7{bottom:577.500000pt;}
.yd6{bottom:587.826667pt;}
.ya6{bottom:596.166667pt;}
.yd5{bottom:608.826667pt;}
.y4b{bottom:612.173333pt;}
.ya5{bottom:614.833333pt;}
.y2f{bottom:619.506667pt;}
.yd4{bottom:625.200000pt;}
.ya4{bottom:633.193333pt;}
.yd3{bottom:641.200000pt;}
.y3e{bottom:653.200000pt;}
.ya3{bottom:655.193333pt;}
.yd2{bottom:657.200000pt;}
.y1f{bottom:659.533333pt;}
.yf{bottom:660.533333pt;}
.yd1{bottom:673.200000pt;}
.ya2{bottom:676.193333pt;}
.yd0{bottom:689.533333pt;}
.ya1{bottom:692.526667pt;}
.ycf{bottom:705.533333pt;}
.ya0{bottom:708.526667pt;}
.yce{bottom:721.533333pt;}
.y9f{bottom:724.526667pt;}
.ycd{bottom:737.893333pt;}
.y9e{bottom:740.900000pt;}
.ycc{bottom:753.893333pt;}
.y9d{bottom:756.900000pt;}
.y9c{bottom:772.900000pt;}
.ycb{bottom:773.560000pt;}
.y9b{bottom:788.900000pt;}
.y1d{bottom:799.560000pt;}
.yca{bottom:802.560000pt;}
.y9a{bottom:805.233333pt;}
.y10{bottom:817.226667pt;}
.y99{bottom:821.233333pt;}
.y98{bottom:837.233333pt;}
.y97{bottom:855.593333pt;}
.y96{bottom:876.593333pt;}
.y95{bottom:892.926667pt;}
.y94{bottom:908.926667pt;}
.y93{bottom:924.926667pt;}
.y92{bottom:926.926667pt;}
.y90{bottom:1057.626667pt;}
.y8f{bottom:1074.333333pt;}
.y2{bottom:1075.666667pt;}
.y1{bottom:1090.333333pt;}
.y8e{bottom:1091.000000pt;}
.hd{height:3.554688pt;}
.h37{height:3.703125pt;}
.h3f{height:4.364583pt;}
.h9{height:4.700000pt;}
.h26{height:5.000000pt;}
.h1d{height:6.333333pt;}
.h24{height:6.666667pt;}
.h22{height:7.320000pt;}
.ha{height:8.729167pt;}
.h40{height:12.666667pt;}
.h27{height:13.093750pt;}
.h2c{height:13.666667pt;}
.h1e{height:14.447917pt;}
.h21{height:17.458333pt;}
.h13{height:17.666667pt;}
.h1f{height:21.343750pt;}
.h6{height:28.333333pt;}
.h19{height:28.369792pt;}
.h3e{height:30.552083pt;}
.h30{height:32.000000pt;}
.h41{height:32.700000pt;}
.hb{height:34.333333pt;}
.h1a{height:34.683594pt;}
.h8{height:34.916667pt;}
.h31{height:36.000000pt;}
.h2a{height:37.098958pt;}
.h7{height:39.033333pt;}
.h2f{height:39.281250pt;}
.h2b{height:42.687500pt;}
.h17{height:43.343750pt;}
.h34{height:43.645833pt;}
.h33{height:43.723958pt;}
.h2{height:44.270833pt;}
.h2d{height:44.333333pt;}
.h5{height:44.437500pt;}
.h39{height:47.036458pt;}
.h35{height:47.089792pt;}
.h18{height:48.023438pt;}
.h4{height:52.375000pt;}
.h14{height:52.468750pt;}
.h15{height:53.125000pt;}
.h3a{height:53.359375pt;}
.h2e{height:56.000000pt;}
.h3b{height:69.958333pt;}
.h12{height:70.833333pt;}
.h3{height:71.366667pt;}
.h32{height:72.700000pt;}
.h36{height:74.703125pt;}
.h3c{height:87.447917pt;}
.hc{height:96.000000pt;}
.h11{height:97.395833pt;}
.h25{height:120.066667pt;}
.h20{height:120.700000pt;}
.hf{height:123.958333pt;}
.h16{height:140.040000pt;}
.h29{height:143.040000pt;}
.h23{height:169.360000pt;}
.h1c{height:180.066667pt;}
.h28{height:181.733333pt;}
.h10{height:255.440000pt;}
.h1b{height:557.173333pt;}
.h3d{height:825.226667pt;}
.he{height:830.266667pt;}
.h38{height:938.266667pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.wb{width:18.666667pt;}
.w14{width:19.000000pt;}
.w7{width:21.033333pt;}
.w6{width:54.333333pt;}
.w5{width:54.666667pt;}
.w11{width:85.033333pt;}
.wf{width:85.366667pt;}
.w2{width:86.366667pt;}
.w9{width:96.733333pt;}
.we{width:103.700000pt;}
.w13{width:111.366667pt;}
.w10{width:113.366667pt;}
.w12{width:113.733333pt;}
.w3{width:162.733333pt;}
.wa{width:217.733333pt;}
.wc{width:310.133333pt;}
.wd{width:314.466667pt;}
.w4{width:393.840000pt;}
.w8{width:622.240000pt;}
.w15{width:678.600000pt;}
.w16{width:697.600000pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:7.333333pt;}
.x12{left:11.666667pt;}
.x14{left:12.666667pt;}
.x9{left:19.320000pt;}
.x1f{left:28.333333pt;}
.x1d{left:31.000000pt;}
.x7{left:32.000000pt;}
.xa{left:39.333333pt;}
.x1{left:48.033322pt;}
.x1a{left:49.699988pt;}
.x1c{left:55.366667pt;}
.x20{left:56.700000pt;}
.x19{left:67.033333pt;}
.x2{left:79.366667pt;}
.x1b{left:84.699988pt;}
.x10{left:93.033333pt;}
.x21{left:95.366655pt;}
.x18{left:100.693333pt;}
.xb{left:102.366667pt;}
.xc{left:123.400000pt;}
.x3{left:134.400000pt;}
.x11{left:151.733333pt;}
.x4{left:155.733333pt;}
.xd{left:199.106667pt;}
.x13{left:237.106667pt;}
.x5{left:297.133333pt;}
.x22{left:304.100000pt;}
.x15{left:350.466667pt;}
.x23{left:393.833333pt;}
.x1e{left:406.173322pt;}
.xe{left:416.840000pt;}
.xf{left:435.506667pt;}
.x16{left:549.240000pt;}
.x17{left:634.266667pt;}
.x8{left:690.973333pt;}
}




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