
    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_9c250c8df0357f2dfac64cb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2842492656018bdf65da980a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_d0039b8aa3574dc93d26573e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49743b1a61d2b09d797d9880.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_b294bc2995faa07c48de8311.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_5621333f38c37b9f64a7720c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_ec1d97b0cf8cab25f7c5beed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053711;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_d394d06d01a19459ae025523.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3104455194a8d74186f4d3ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e400be435629ad50d6edac28.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5a1c42854ac68016b1f1dfa9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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:fff;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lse{letter-spacing:-1.800000px;}
.ls9{letter-spacing:-1.356000px;}
.lsf{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.127200px;}
.ls10{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.038160px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.468000px;}
.lsd{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.756000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.231200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws4{word-spacing:-8.136000px;}
.ws5{word-spacing:-7.884000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-8.606160px;}
._12{margin-left:-7.470000px;}
._3{margin-left:-5.400000px;}
._5{margin-left:-4.038480px;}
._2{margin-left:-2.274480px;}
._1{margin-left:-1.134000px;}
._0{width:1.128000px;}
._4{width:2.155440px;}
._9{width:3.306960px;}
._10{width:4.940640px;}
._c{width:5.946480px;}
._b{width:7.230960px;}
._a{width:8.259840px;}
._f{width:9.423600px;}
._6{width:10.425360px;}
._8{width:11.553360px;}
._7{width:12.589680px;}
._11{width:13.692480px;}
._e{width:16.859760px;}
._14{width:18.167040px;}
._13{width:19.362240px;}
._1a{width:22.127040px;}
._19{width:23.173440px;}
._16{width:24.441120px;}
._18{width:25.624080px;}
._17{width:26.951760px;}
._d{width:32.098560px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.yc8{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4c{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y4a{bottom:10.620000px;}
.y1d{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.320000px;}
.y1b{bottom:23.760000px;}
.y49{bottom:25.200000px;}
.yc5{bottom:27.795000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y45{bottom:37.800000px;}
.ya{bottom:46.620000px;}
.y1a{bottom:50.760000px;}
.y1{bottom:53.820000px;}
.y44{bottom:55.080000px;}
.y43{bottom:72.405000px;}
.yc4{bottom:73.050000px;}
.y9{bottom:73.470000px;}
.y42{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y19{bottom:98.100000px;}
.y104{bottom:101.016000px;}
.yc1{bottom:102.636000px;}
.y54{bottom:103.896000px;}
.y41{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.y18{bottom:114.480000px;}
.y103{bottom:118.296000px;}
.yc3{bottom:118.905000px;}
.yc0{bottom:119.916000px;}
.y53{bottom:121.176000px;}
.y40{bottom:124.065000px;}
.y17{bottom:131.085000px;}
.y102{bottom:135.576000px;}
.ybf{bottom:137.016000px;}
.y52{bottom:138.456000px;}
.y3f{bottom:141.345000px;}
.y16{bottom:143.685000px;}
.y101{bottom:152.850000px;}
.ybe{bottom:154.290000px;}
.y51{bottom:155.730000px;}
.y3e{bottom:158.625000px;}
.y15{bottom:160.245000px;}
.y100{bottom:170.130000px;}
.ybd{bottom:171.570000px;}
.y50{bottom:173.010000px;}
.y3d{bottom:175.725000px;}
.y14{bottom:176.985000px;}
.y2d{bottom:184.545000px;}
.yff{bottom:187.410000px;}
.ybc{bottom:188.850000px;}
.y4f{bottom:190.110000px;}
.y3c{bottom:193.005000px;}
.y13{bottom:196.065000px;}
.y2c{bottom:199.845000px;}
.yfe{bottom:204.510000px;}
.ybb{bottom:206.130000px;}
.y4e{bottom:207.390000px;}
.y3b{bottom:210.285000px;}
.y2b{bottom:218.025000px;}
.yba{bottom:220.890000px;}
.yfd{bottom:221.790000px;}
.y12{bottom:221.805000px;}
.y4d{bottom:225.390000px;}
.y3a{bottom:227.565000px;}
.y2a{bottom:235.305000px;}
.yb9{bottom:238.890000px;}
.yfc{bottom:239.070000px;}
.y48{bottom:239.790000px;}
.y8b{bottom:240.510000px;}
.y39{bottom:244.845000px;}
.y11{bottom:247.545000px;}
.y29{bottom:252.765000px;}
.y8a{bottom:255.270000px;}
.yfb{bottom:256.350000px;}
.yb8{bottom:256.890000px;}
.y38{bottom:262.125000px;}
.y28{bottom:270.225000px;}
.y10{bottom:271.845000px;}
.y89{bottom:273.270000px;}
.yfa{bottom:273.630000px;}
.yb7{bottom:274.890000px;}
.y1e{bottom:276.330000px;}
.y37{bottom:279.225000px;}
.y27{bottom:287.505000px;}
.y131{bottom:288.570000px;}
.yf9{bottom:290.910000px;}
.yb6{bottom:292.890000px;}
.y88{bottom:294.510000px;}
.y36{bottom:296.505000px;}
.y26{bottom:304.965000px;}
.y130{bottom:305.850000px;}
.yf8{bottom:308.010000px;}
.yb5{bottom:310.890000px;}
.y87{bottom:311.790000px;}
.y35{bottom:313.785000px;}
.y25{bottom:322.245000px;}
.y12f{bottom:323.130000px;}
.yf7{bottom:325.290000px;}
.yb4{bottom:328.890000px;}
.y86{bottom:329.070000px;}
.y34{bottom:331.095000px;}
.y24{bottom:339.735000px;}
.y12e{bottom:340.275000px;}
.yf6{bottom:342.615000px;}
.y85{bottom:346.395000px;}
.yb3{bottom:346.935000px;}
.y33{bottom:348.375000px;}
.y23{bottom:357.195000px;}
.y12d{bottom:357.555000px;}
.yf5{bottom:359.895000px;}
.y84{bottom:363.675000px;}
.yb2{bottom:364.935000px;}
.y32{bottom:365.655000px;}
.y22{bottom:374.475000px;}
.y12c{bottom:374.835000px;}
.yf4{bottom:377.175000px;}
.y83{bottom:380.775000px;}
.y31{bottom:382.755000px;}
.yb1{bottom:386.175000px;}
.y21{bottom:392.115000px;}
.yf3{bottom:394.275000px;}
.y82{bottom:398.055000px;}
.y30{bottom:400.035000px;}
.yb0{bottom:403.275000px;}
.y12b{bottom:409.395000px;}
.yf2{bottom:411.555000px;}
.y81{bottom:415.335000px;}
.y2f{bottom:417.315000px;}
.y20{bottom:419.475000px;}
.yaf{bottom:420.555000px;}
.y12a{bottom:426.675000px;}
.yf1{bottom:428.835000px;}
.y80{bottom:432.615000px;}
.y2e{bottom:434.595000px;}
.y1f{bottom:437.295000px;}
.yae{bottom:437.835000px;}
.y129{bottom:443.775000px;}
.yf0{bottom:446.115000px;}
.y7f{bottom:449.895000px;}
.yad{bottom:455.115000px;}
.y128{bottom:461.055000px;}
.yef{bottom:463.395000px;}
.y7e{bottom:467.175000px;}
.yac{bottom:472.395000px;}
.y127{bottom:478.335000px;}
.yee{bottom:480.675000px;}
.y7d{bottom:484.275000px;}
.yab{bottom:489.675000px;}
.y126{bottom:495.615000px;}
.yed{bottom:497.775000px;}
.y7c{bottom:501.555000px;}
.yaa{bottom:506.775000px;}
.y125{bottom:512.895000px;}
.yec{bottom:515.055000px;}
.y7b{bottom:518.835000px;}
.ya9{bottom:524.055000px;}
.y124{bottom:530.175000px;}
.yeb{bottom:532.335000px;}
.y7a{bottom:536.115000px;}
.ya8{bottom:538.815000px;}
.y123{bottom:547.275000px;}
.yea{bottom:549.615000px;}
.y79{bottom:553.395000px;}
.ya7{bottom:556.815000px;}
.y122{bottom:564.555000px;}
.ye9{bottom:566.895000px;}
.y78{bottom:570.675000px;}
.ya6{bottom:574.815000px;}
.y121{bottom:581.835000px;}
.ye8{bottom:584.175000px;}
.y77{bottom:587.775000px;}
.ya5{bottom:596.055000px;}
.y120{bottom:599.115000px;}
.ye7{bottom:601.275000px;}
.y76{bottom:605.085000px;}
.ya4{bottom:613.365000px;}
.y11f{bottom:616.425000px;}
.ye6{bottom:618.585000px;}
.y75{bottom:622.365000px;}
.ya3{bottom:630.645000px;}
.y11e{bottom:633.705000px;}
.ye5{bottom:635.865000px;}
.y74{bottom:639.645000px;}
.ya2{bottom:647.925000px;}
.y11d{bottom:650.805000px;}
.ye4{bottom:653.145000px;}
.y73{bottom:656.925000px;}
.ya1{bottom:665.025000px;}
.y11c{bottom:668.085000px;}
.ye3{bottom:670.425000px;}
.y72{bottom:674.025000px;}
.ya0{bottom:682.305000px;}
.y11b{bottom:685.365000px;}
.ye2{bottom:687.525000px;}
.y71{bottom:691.305000px;}
.y9f{bottom:699.585000px;}
.y11a{bottom:702.645000px;}
.ye1{bottom:704.805000px;}
.y70{bottom:708.585000px;}
.y9e{bottom:714.345000px;}
.y119{bottom:719.925000px;}
.ye0{bottom:722.085000px;}
.y1c{bottom:724.965000px;}
.y6f{bottom:725.865000px;}
.y9d{bottom:732.345000px;}
.y118{bottom:737.025000px;}
.ydf{bottom:739.365000px;}
.y6e{bottom:743.145000px;}
.y9c{bottom:750.345000px;}
.y117{bottom:754.305000px;}
.yf{bottom:754.485000px;}
.yde{bottom:756.645000px;}
.y6d{bottom:760.425000px;}
.y9b{bottom:768.345000px;}
.y116{bottom:771.585000px;}
.ydd{bottom:773.925000px;}
.y6c{bottom:777.525000px;}
.y9a{bottom:786.345000px;}
.y115{bottom:788.865000px;}
.ydc{bottom:791.025000px;}
.y6b{bottom:794.805000px;}
.y99{bottom:804.345000px;}
.y114{bottom:806.145000px;}
.ydb{bottom:808.305000px;}
.y6a{bottom:812.085000px;}
.y98{bottom:822.345000px;}
.y113{bottom:823.425000px;}
.yda{bottom:825.585000px;}
.y69{bottom:829.365000px;}
.y97{bottom:840.345000px;}
.y112{bottom:840.525000px;}
.yd9{bottom:842.865000px;}
.y68{bottom:846.645000px;}
.y111{bottom:857.805000px;}
.yd8{bottom:860.145000px;}
.y96{bottom:861.585000px;}
.y67{bottom:863.925000px;}
.y110{bottom:875.130000px;}
.yd7{bottom:877.470000px;}
.y95{bottom:878.910000px;}
.y66{bottom:881.070000px;}
.y10f{bottom:892.410000px;}
.yd6{bottom:894.570000px;}
.y94{bottom:896.190000px;}
.y65{bottom:898.350000px;}
.y10e{bottom:909.690000px;}
.yd5{bottom:911.850000px;}
.y93{bottom:913.290000px;}
.y64{bottom:915.630000px;}
.y10d{bottom:926.970000px;}
.yd4{bottom:929.130000px;}
.y92{bottom:930.570000px;}
.y63{bottom:932.910000px;}
.y10c{bottom:944.070000px;}
.yd3{bottom:946.410000px;}
.y91{bottom:947.850000px;}
.y62{bottom:950.190000px;}
.y10b{bottom:961.350000px;}
.yd2{bottom:963.690000px;}
.y90{bottom:965.130000px;}
.y61{bottom:967.470000px;}
.y10a{bottom:978.630000px;}
.yd1{bottom:980.970000px;}
.y8f{bottom:982.410000px;}
.y60{bottom:984.570000px;}
.y109{bottom:995.910000px;}
.yd0{bottom:998.070000px;}
.y8e{bottom:999.690000px;}
.y5f{bottom:1001.850000px;}
.y108{bottom:1013.190000px;}
.ycf{bottom:1015.350000px;}
.y8d{bottom:1016.790000px;}
.y5e{bottom:1019.130000px;}
.y107{bottom:1030.290000px;}
.y8c{bottom:1030.830000px;}
.yc2{bottom:1032.480000px;}
.yce{bottom:1032.630000px;}
.y5d{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y106{bottom:1047.570000px;}
.ycd{bottom:1049.910000px;}
.y5c{bottom:1053.690000px;}
.y105{bottom:1064.850000px;}
.y6{bottom:1066.830000px;}
.ycc{bottom:1067.190000px;}
.y5b{bottom:1070.790000px;}
.ycb{bottom:1084.290000px;}
.y5a{bottom:1088.070000px;}
.yca{bottom:1099.050000px;}
.y59{bottom:1105.350000px;}
.yc9{bottom:1117.050000px;}
.y58{bottom:1122.630000px;}
.yc7{bottom:1135.050000px;}
.y57{bottom:1139.940000px;}
.yc6{bottom:1153.080000px;}
.y56{bottom:1157.220000px;}
.y55{bottom:1174.320000px;}
.h20{height:17.100000px;}
.h21{height:17.136000px;}
.h1f{height:17.280000px;}
.h24{height:17.316000px;}
.hb{height:25.020000px;}
.h12{height:28.968750px;}
.h13{height:29.520000px;}
.h11{height:32.156367px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h1d{height:36.540000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h25{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h19{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.088125px;}
.h10{height:51.416016px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h17{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h23{height:110.583984px;}
.h7{height:121.536000px;}
.h22{height:155.880000px;}
.hc{height:286.950000px;}
.h15{height:448.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.wa{width:185.970000px;}
.wb{width:186.150000px;}
.w8{width:223.275000px;}
.we{width:248.250000px;}
.wd{width:248.430000px;}
.wc{width:248.475000px;}
.wf{width:362.160000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.xd{left:10.080000px;}
.x11{left:12.780000px;}
.xc{left:37.116000px;}
.x12{left:67.176000px;}
.x1{left:72.360000px;}
.xf{left:79.230000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x22{left:108.035987px;}
.xe{left:117.750000px;}
.x23{left:135.035987px;}
.x10{left:147.630000px;}
.x20{left:151.350000px;}
.x21{left:201.420000px;}
.x13{left:215.175000px;}
.x6{left:224.850000px;}
.x1e{left:242.669987px;}
.x16{left:260.130000px;}
.x1f{left:265.320000px;}
.x1b{left:273.089987px;}
.x9{left:288.435000px;}
.x1a{left:295.094987px;}
.x14{left:296.175000px;}
.x15{left:307.334987px;}
.x1c{left:322.455000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x17{left:446.835000px;}
.xa{left:455.700000px;}
.x1d{left:571.605000px;}
.x19{left:627.584987px;}
.x18{left:633.705000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lse{letter-spacing:-1.600000pt;}
.ls9{letter-spacing:-1.205333pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.033920pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.416000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.672000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws3{word-spacing:-19.761067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws5{word-spacing:-7.008000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-7.649920pt;}
._12{margin-left:-6.640000pt;}
._3{margin-left:-4.800000pt;}
._5{margin-left:-3.589760pt;}
._2{margin-left:-2.021760pt;}
._1{margin-left:-1.008000pt;}
._0{width:1.002667pt;}
._4{width:1.915947pt;}
._9{width:2.939520pt;}
._10{width:4.391680pt;}
._c{width:5.285760pt;}
._b{width:6.427520pt;}
._a{width:7.342080pt;}
._f{width:8.376533pt;}
._6{width:9.266987pt;}
._8{width:10.269653pt;}
._7{width:11.190827pt;}
._11{width:12.171093pt;}
._e{width:14.986453pt;}
._14{width:16.148480pt;}
._13{width:17.210880pt;}
._1a{width:19.668480pt;}
._19{width:20.598613pt;}
._16{width:21.725440pt;}
._18{width:22.776960pt;}
._17{width:23.957120pt;}
._d{width:28.532053pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.yc8{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4c{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y4a{bottom:9.440000pt;}
.y1d{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:19.840000pt;}
.y1b{bottom:21.120000pt;}
.y49{bottom:22.400000pt;}
.yc5{bottom:24.706667pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y45{bottom:33.600000pt;}
.ya{bottom:41.440000pt;}
.y1a{bottom:45.120000pt;}
.y1{bottom:47.840000pt;}
.y44{bottom:48.960000pt;}
.y43{bottom:64.360000pt;}
.yc4{bottom:64.933333pt;}
.y9{bottom:65.306667pt;}
.y42{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y19{bottom:87.200000pt;}
.y104{bottom:89.792000pt;}
.yc1{bottom:91.232000pt;}
.y54{bottom:92.352000pt;}
.y41{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.y18{bottom:101.760000pt;}
.y103{bottom:105.152000pt;}
.yc3{bottom:105.693333pt;}
.yc0{bottom:106.592000pt;}
.y53{bottom:107.712000pt;}
.y40{bottom:110.280000pt;}
.y17{bottom:116.520000pt;}
.y102{bottom:120.512000pt;}
.ybf{bottom:121.792000pt;}
.y52{bottom:123.072000pt;}
.y3f{bottom:125.640000pt;}
.y16{bottom:127.720000pt;}
.y101{bottom:135.866667pt;}
.ybe{bottom:137.146667pt;}
.y51{bottom:138.426667pt;}
.y3e{bottom:141.000000pt;}
.y15{bottom:142.440000pt;}
.y100{bottom:151.226667pt;}
.ybd{bottom:152.506667pt;}
.y50{bottom:153.786667pt;}
.y3d{bottom:156.200000pt;}
.y14{bottom:157.320000pt;}
.y2d{bottom:164.040000pt;}
.yff{bottom:166.586667pt;}
.ybc{bottom:167.866667pt;}
.y4f{bottom:168.986667pt;}
.y3c{bottom:171.560000pt;}
.y13{bottom:174.280000pt;}
.y2c{bottom:177.640000pt;}
.yfe{bottom:181.786667pt;}
.ybb{bottom:183.226667pt;}
.y4e{bottom:184.346667pt;}
.y3b{bottom:186.920000pt;}
.y2b{bottom:193.800000pt;}
.yba{bottom:196.346667pt;}
.yfd{bottom:197.146667pt;}
.y12{bottom:197.160000pt;}
.y4d{bottom:200.346667pt;}
.y3a{bottom:202.280000pt;}
.y2a{bottom:209.160000pt;}
.yb9{bottom:212.346667pt;}
.yfc{bottom:212.506667pt;}
.y48{bottom:213.146667pt;}
.y8b{bottom:213.786667pt;}
.y39{bottom:217.640000pt;}
.y11{bottom:220.040000pt;}
.y29{bottom:224.680000pt;}
.y8a{bottom:226.906667pt;}
.yfb{bottom:227.866667pt;}
.yb8{bottom:228.346667pt;}
.y38{bottom:233.000000pt;}
.y28{bottom:240.200000pt;}
.y10{bottom:241.640000pt;}
.y89{bottom:242.906667pt;}
.yfa{bottom:243.226667pt;}
.yb7{bottom:244.346667pt;}
.y1e{bottom:245.626667pt;}
.y37{bottom:248.200000pt;}
.y27{bottom:255.560000pt;}
.y131{bottom:256.506667pt;}
.yf9{bottom:258.586667pt;}
.yb6{bottom:260.346667pt;}
.y88{bottom:261.786667pt;}
.y36{bottom:263.560000pt;}
.y26{bottom:271.080000pt;}
.y130{bottom:271.866667pt;}
.yf8{bottom:273.786667pt;}
.yb5{bottom:276.346667pt;}
.y87{bottom:277.146667pt;}
.y35{bottom:278.920000pt;}
.y25{bottom:286.440000pt;}
.y12f{bottom:287.226667pt;}
.yf7{bottom:289.146667pt;}
.yb4{bottom:292.346667pt;}
.y86{bottom:292.506667pt;}
.y34{bottom:294.306667pt;}
.y24{bottom:301.986667pt;}
.y12e{bottom:302.466667pt;}
.yf6{bottom:304.546667pt;}
.y85{bottom:307.906667pt;}
.yb3{bottom:308.386667pt;}
.y33{bottom:309.666667pt;}
.y23{bottom:317.506667pt;}
.y12d{bottom:317.826667pt;}
.yf5{bottom:319.906667pt;}
.y84{bottom:323.266667pt;}
.yb2{bottom:324.386667pt;}
.y32{bottom:325.026667pt;}
.y22{bottom:332.866667pt;}
.y12c{bottom:333.186667pt;}
.yf4{bottom:335.266667pt;}
.y83{bottom:338.466667pt;}
.y31{bottom:340.226667pt;}
.yb1{bottom:343.266667pt;}
.y21{bottom:348.546667pt;}
.yf3{bottom:350.466667pt;}
.y82{bottom:353.826667pt;}
.y30{bottom:355.586667pt;}
.yb0{bottom:358.466667pt;}
.y12b{bottom:363.906667pt;}
.yf2{bottom:365.826667pt;}
.y81{bottom:369.186667pt;}
.y2f{bottom:370.946667pt;}
.y20{bottom:372.866667pt;}
.yaf{bottom:373.826667pt;}
.y12a{bottom:379.266667pt;}
.yf1{bottom:381.186667pt;}
.y80{bottom:384.546667pt;}
.y2e{bottom:386.306667pt;}
.y1f{bottom:388.706667pt;}
.yae{bottom:389.186667pt;}
.y129{bottom:394.466667pt;}
.yf0{bottom:396.546667pt;}
.y7f{bottom:399.906667pt;}
.yad{bottom:404.546667pt;}
.y128{bottom:409.826667pt;}
.yef{bottom:411.906667pt;}
.y7e{bottom:415.266667pt;}
.yac{bottom:419.906667pt;}
.y127{bottom:425.186667pt;}
.yee{bottom:427.266667pt;}
.y7d{bottom:430.466667pt;}
.yab{bottom:435.266667pt;}
.y126{bottom:440.546667pt;}
.yed{bottom:442.466667pt;}
.y7c{bottom:445.826667pt;}
.yaa{bottom:450.466667pt;}
.y125{bottom:455.906667pt;}
.yec{bottom:457.826667pt;}
.y7b{bottom:461.186667pt;}
.ya9{bottom:465.826667pt;}
.y124{bottom:471.266667pt;}
.yeb{bottom:473.186667pt;}
.y7a{bottom:476.546667pt;}
.ya8{bottom:478.946667pt;}
.y123{bottom:486.466667pt;}
.yea{bottom:488.546667pt;}
.y79{bottom:491.906667pt;}
.ya7{bottom:494.946667pt;}
.y122{bottom:501.826667pt;}
.ye9{bottom:503.906667pt;}
.y78{bottom:507.266667pt;}
.ya6{bottom:510.946667pt;}
.y121{bottom:517.186667pt;}
.ye8{bottom:519.266667pt;}
.y77{bottom:522.466667pt;}
.ya5{bottom:529.826667pt;}
.y120{bottom:532.546667pt;}
.ye7{bottom:534.466667pt;}
.y76{bottom:537.853333pt;}
.ya4{bottom:545.213333pt;}
.y11f{bottom:547.933333pt;}
.ye6{bottom:549.853333pt;}
.y75{bottom:553.213333pt;}
.ya3{bottom:560.573333pt;}
.y11e{bottom:563.293333pt;}
.ye5{bottom:565.213333pt;}
.y74{bottom:568.573333pt;}
.ya2{bottom:575.933333pt;}
.y11d{bottom:578.493333pt;}
.ye4{bottom:580.573333pt;}
.y73{bottom:583.933333pt;}
.ya1{bottom:591.133333pt;}
.y11c{bottom:593.853333pt;}
.ye3{bottom:595.933333pt;}
.y72{bottom:599.133333pt;}
.ya0{bottom:606.493333pt;}
.y11b{bottom:609.213333pt;}
.ye2{bottom:611.133333pt;}
.y71{bottom:614.493333pt;}
.y9f{bottom:621.853333pt;}
.y11a{bottom:624.573333pt;}
.ye1{bottom:626.493333pt;}
.y70{bottom:629.853333pt;}
.y9e{bottom:634.973333pt;}
.y119{bottom:639.933333pt;}
.ye0{bottom:641.853333pt;}
.y1c{bottom:644.413333pt;}
.y6f{bottom:645.213333pt;}
.y9d{bottom:650.973333pt;}
.y118{bottom:655.133333pt;}
.ydf{bottom:657.213333pt;}
.y6e{bottom:660.573333pt;}
.y9c{bottom:666.973333pt;}
.y117{bottom:670.493333pt;}
.yf{bottom:670.653333pt;}
.yde{bottom:672.573333pt;}
.y6d{bottom:675.933333pt;}
.y9b{bottom:682.973333pt;}
.y116{bottom:685.853333pt;}
.ydd{bottom:687.933333pt;}
.y6c{bottom:691.133333pt;}
.y9a{bottom:698.973333pt;}
.y115{bottom:701.213333pt;}
.ydc{bottom:703.133333pt;}
.y6b{bottom:706.493333pt;}
.y99{bottom:714.973333pt;}
.y114{bottom:716.573333pt;}
.ydb{bottom:718.493333pt;}
.y6a{bottom:721.853333pt;}
.y98{bottom:730.973333pt;}
.y113{bottom:731.933333pt;}
.yda{bottom:733.853333pt;}
.y69{bottom:737.213333pt;}
.y97{bottom:746.973333pt;}
.y112{bottom:747.133333pt;}
.yd9{bottom:749.213333pt;}
.y68{bottom:752.573333pt;}
.y111{bottom:762.493333pt;}
.yd8{bottom:764.573333pt;}
.y96{bottom:765.853333pt;}
.y67{bottom:767.933333pt;}
.y110{bottom:777.893333pt;}
.yd7{bottom:779.973333pt;}
.y95{bottom:781.253333pt;}
.y66{bottom:783.173333pt;}
.y10f{bottom:793.253333pt;}
.yd6{bottom:795.173333pt;}
.y94{bottom:796.613333pt;}
.y65{bottom:798.533333pt;}
.y10e{bottom:808.613333pt;}
.yd5{bottom:810.533333pt;}
.y93{bottom:811.813333pt;}
.y64{bottom:813.893333pt;}
.y10d{bottom:823.973333pt;}
.yd4{bottom:825.893333pt;}
.y92{bottom:827.173333pt;}
.y63{bottom:829.253333pt;}
.y10c{bottom:839.173333pt;}
.yd3{bottom:841.253333pt;}
.y91{bottom:842.533333pt;}
.y62{bottom:844.613333pt;}
.y10b{bottom:854.533333pt;}
.yd2{bottom:856.613333pt;}
.y90{bottom:857.893333pt;}
.y61{bottom:859.973333pt;}
.y10a{bottom:869.893333pt;}
.yd1{bottom:871.973333pt;}
.y8f{bottom:873.253333pt;}
.y60{bottom:875.173333pt;}
.y109{bottom:885.253333pt;}
.yd0{bottom:887.173333pt;}
.y8e{bottom:888.613333pt;}
.y5f{bottom:890.533333pt;}
.y108{bottom:900.613333pt;}
.ycf{bottom:902.533333pt;}
.y8d{bottom:903.813333pt;}
.y5e{bottom:905.893333pt;}
.y107{bottom:915.813333pt;}
.y8c{bottom:916.293333pt;}
.yc2{bottom:917.760000pt;}
.yce{bottom:917.893333pt;}
.y5d{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y106{bottom:931.173333pt;}
.ycd{bottom:933.253333pt;}
.y5c{bottom:936.613333pt;}
.y105{bottom:946.533333pt;}
.y6{bottom:948.293333pt;}
.ycc{bottom:948.613333pt;}
.y5b{bottom:951.813333pt;}
.ycb{bottom:963.813333pt;}
.y5a{bottom:967.173333pt;}
.yca{bottom:976.933333pt;}
.y59{bottom:982.533333pt;}
.yc9{bottom:992.933333pt;}
.y58{bottom:997.893333pt;}
.yc7{bottom:1008.933333pt;}
.y57{bottom:1013.280000pt;}
.yc6{bottom:1024.960000pt;}
.y56{bottom:1028.640000pt;}
.y55{bottom:1043.840000pt;}
.h20{height:15.200000pt;}
.h21{height:15.232000pt;}
.h1f{height:15.360000pt;}
.h24{height:15.392000pt;}
.hb{height:22.240000pt;}
.h12{height:25.750000pt;}
.h13{height:26.240000pt;}
.h11{height:28.583437pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h25{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h19{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h10{height:45.703125pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h17{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h23{height:98.296875pt;}
.h7{height:108.032000pt;}
.h22{height:138.560000pt;}
.hc{height:255.066667pt;}
.h15{height:398.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.wa{width:165.306667pt;}
.wb{width:165.466667pt;}
.w8{width:198.466667pt;}
.we{width:220.666667pt;}
.wd{width:220.826667pt;}
.wc{width:220.866667pt;}
.wf{width:321.920000pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.xd{left:8.960000pt;}
.x11{left:11.360000pt;}
.xc{left:32.992000pt;}
.x12{left:59.712000pt;}
.x1{left:64.320000pt;}
.xf{left:70.426667pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x22{left:96.031988pt;}
.xe{left:104.666667pt;}
.x23{left:120.031988pt;}
.x10{left:131.226667pt;}
.x20{left:134.533333pt;}
.x21{left:179.040000pt;}
.x13{left:191.266667pt;}
.x6{left:199.866667pt;}
.x1e{left:215.706655pt;}
.x16{left:231.226667pt;}
.x1f{left:235.840000pt;}
.x1b{left:242.746655pt;}
.x9{left:256.386667pt;}
.x1a{left:262.306655pt;}
.x14{left:263.266667pt;}
.x15{left:273.186655pt;}
.x1c{left:286.626667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x17{left:397.186667pt;}
.xa{left:405.066667pt;}
.x1d{left:508.093333pt;}
.x19{left:557.853322pt;}
.x18{left:563.293333pt;}
.x3{left:663.013333pt;}
}




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