
    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_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a7fac6184fe6ef30edca3c36.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_217703c69240acf73cc749eb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b446e7e570d2a64adc8f036c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_737da6db9cad777412433f72.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7fb8b63e8d02885d7dc8a313.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_2888b59d94324e75aff5c894.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_e117b86b2fda681b25855bf8.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_f3a7e23f2eb30414809f98fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-70.560000px;}
.v4{vertical-align:-60.480000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-2.880000px;}
.ls17{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.630000px;}
.lsb{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.507000px;}
.ls1b{letter-spacing:-0.486600px;}
.ls1a{letter-spacing:-0.466800px;}
.lsc{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.020160px;}
.lsa{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.423360px;}
.ls14{letter-spacing:0.466800px;}
.ls3{letter-spacing:0.493920px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.869760px;}
.ls13{letter-spacing:0.972000px;}
.ls4{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.460160px;}
.ls6{letter-spacing:13.680000px;}
.ls5{letter-spacing:16.560000px;}
.ls1d{letter-spacing:46.546560px;}
.ls7{letter-spacing:63.826560px;}
.ls10{letter-spacing:782.916000px;}
.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;}
}
.ws5{word-spacing:-60.480000px;}
.wse{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-15.099840px;}
.wsc{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.633400px;}
.wsa{word-spacing:-14.184000px;}
.ws4{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.wsf{word-spacing:-12.240000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-3.548160px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._5{width:5.317440px;}
._12{width:6.399840px;}
._c{width:7.761600px;}
._d{width:8.772480px;}
._10{width:10.756800px;}
._11{width:12.303360px;}
._13{width:13.400640px;}
._7{width:15.321600px;}
._8{width:17.470080px;}
._f{width:18.786240px;}
._14{width:20.321280px;}
._15{width:21.470400px;}
._16{width:22.746240px;}
._9{width:24.186240px;}
._20{width:25.211520px;}
._a{width:26.288640px;}
._b{width:27.388800px;}
._1c{width:28.823040px;}
._e{width:30.971520px;}
._18{width:33.687360px;}
._1e{width:36.253440px;}
._1f{width:38.067840px;}
._1a{width:46.327680px;}
._1b{width:47.543040px;}
._17{width:197.372160px;}
._19{width:200.759040px;}
._1d{width:275.788800px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:2.875500px;}
.y74{bottom:3.600000px;}
.y82{bottom:3.945000px;}
.y8c{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y100{bottom:4.005000px;}
.y57{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y49{bottom:10.795500px;}
.ybb{bottom:12.225000px;}
.yf9{bottom:12.240000px;}
.y86{bottom:12.585000px;}
.y8e{bottom:12.595500px;}
.y9a{bottom:12.600000px;}
.yfe{bottom:12.645000px;}
.y55{bottom:14.755500px;}
.yb6{bottom:20.865000px;}
.y71{bottom:20.880000px;}
.y80{bottom:21.225000px;}
.y8a{bottom:21.235500px;}
.y4{bottom:21.240000px;}
.ye2{bottom:21.285000px;}
.ya2{bottom:29.505000px;}
.y72{bottom:29.520000px;}
.y85{bottom:29.865000px;}
.y88{bottom:29.875500px;}
.y94{bottom:29.880000px;}
.y104{bottom:29.895000px;}
.yda{bottom:29.911500px;}
.yfd{bottom:29.925000px;}
.y54{bottom:32.035500px;}
.y9e{bottom:38.145000px;}
.y70{bottom:38.160000px;}
.yfa{bottom:38.190000px;}
.ye1{bottom:38.205000px;}
.y7e{bottom:38.505000px;}
.y89{bottom:38.515500px;}
.y97{bottom:38.520000px;}
.y105{bottom:38.535000px;}
.ydc{bottom:38.554500px;}
.yff{bottom:38.565000px;}
.y40{bottom:39.600000px;}
.y48{bottom:40.315500px;}
.y3{bottom:44.280000px;}
.ya0{bottom:46.785000px;}
.ybf{bottom:46.800000px;}
.yd9{bottom:46.834500px;}
.y7a{bottom:47.145000px;}
.y93{bottom:47.160000px;}
.yd1{bottom:47.175000px;}
.y8d{bottom:47.191500px;}
.y47{bottom:52.231500px;}
.y53{bottom:53.671500px;}
.y9c{bottom:55.425000px;}
.y73{bottom:55.440000px;}
.yd6{bottom:55.474500px;}
.yc9{bottom:55.485000px;}
.y7d{bottom:55.785000px;}
.y90{bottom:55.800000px;}
.yce{bottom:55.815000px;}
.y8b{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y3f{bottom:57.960000px;}
.y9f{bottom:64.065000px;}
.ybe{bottom:64.080000px;}
.yd8{bottom:64.114500px;}
.yca{bottom:64.125000px;}
.y79{bottom:64.425000px;}
.y92{bottom:64.440000px;}
.yd0{bottom:64.455000px;}
.yc4{bottom:64.470000px;}
.y46{bottom:65.194500px;}
.y9d{bottom:72.705000px;}
.ya9{bottom:72.720000px;}
.y52{bottom:72.754500px;}
.ycb{bottom:72.765000px;}
.y76{bottom:73.065000px;}
.y96{bottom:73.080000px;}
.ycf{bottom:73.095000px;}
.yc6{bottom:73.110000px;}
.y3e{bottom:76.320000px;}
.y45{bottom:78.154500px;}
.y78{bottom:81.345000px;}
.yab{bottom:81.360000px;}
.yd7{bottom:81.394500px;}
.ycc{bottom:81.405000px;}
.ya5{bottom:81.705000px;}
.y91{bottom:81.720000px;}
.yd4{bottom:81.735000px;}
.yc5{bottom:81.750000px;}
.y51{bottom:88.234500px;}
.y7c{bottom:89.985000px;}
.yaa{bottom:90.000000px;}
.yc2{bottom:90.030000px;}
.ydb{bottom:90.034500px;}
.yb3{bottom:90.045000px;}
.ya6{bottom:90.345000px;}
.y95{bottom:90.360000px;}
.yd2{bottom:90.375000px;}
.yc7{bottom:90.390000px;}
.y41{bottom:92.200500px;}
.y3d{bottom:94.680000px;}
.ydf{bottom:95.080500px;}
.y144{bottom:95.796000px;}
.yb7{bottom:95.800500px;}
.y50{bottom:97.594500px;}
.y77{bottom:98.625000px;}
.yad{bottom:98.640000px;}
.yc0{bottom:98.670000px;}
.ydd{bottom:98.674500px;}
.y99{bottom:99.000000px;}
.ya4{bottom:99.030000px;}
.y10b{bottom:99.036000px;}
.y87{bottom:99.040500px;}
.y44{bottom:99.754500px;}
.ya1{bottom:107.265000px;}
.yae{bottom:107.280000px;}
.y7b{bottom:107.295000px;}
.yc1{bottom:107.310000px;}
.yde{bottom:107.314500px;}
.yb4{bottom:107.325000px;}
.y98{bottom:107.640000px;}
.yd3{bottom:107.655000px;}
.ya7{bottom:107.670000px;}
.y143{bottom:113.076000px;}
.yd5{bottom:113.080500px;}
.y3c{bottom:113.085000px;}
.yac{bottom:115.920000px;}
.y84{bottom:115.935000px;}
.y10a{bottom:116.316000px;}
.y4f{bottom:116.674500px;}
.y7f{bottom:124.575000px;}
.yb0{bottom:124.590000px;}
.yb9{bottom:124.605000px;}
.ybc{bottom:124.950000px;}
.y142{bottom:130.356000px;}
.y3b{bottom:131.445000px;}
.y4e{bottom:132.154500px;}
.y83{bottom:133.215000px;}
.y109{bottom:133.596000px;}
.y81{bottom:141.855000px;}
.yaf{bottom:141.870000px;}
.y4d{bottom:147.634500px;}
.y141{bottom:147.672000px;}
.y3a{bottom:148.725000px;}
.y108{bottom:150.915000px;}
.y43{bottom:162.394500px;}
.y4c{bottom:163.114500px;}
.y140{bottom:164.955000px;}
.yb5{bottom:165.690000px;}
.y39{bottom:166.005000px;}
.y107{bottom:168.195000px;}
.y75{bottom:168.930000px;}
.y42{bottom:172.834500px;}
.y4b{bottom:178.234500px;}
.y13f{bottom:182.235000px;}
.y38{bottom:182.925000px;}
.y106{bottom:191.250000px;}
.y13e{bottom:199.515000px;}
.y37{bottom:200.205000px;}
.y13d{bottom:216.795000px;}
.y36{bottom:217.485000px;}
.y13c{bottom:234.075000px;}
.ycd{bottom:234.450000px;}
.y35{bottom:234.765000px;}
.y103{bottom:243.450000px;}
.y13b{bottom:251.355000px;}
.y34{bottom:252.075000px;}
.y13a{bottom:268.275000px;}
.y33{bottom:269.355000px;}
.y139{bottom:285.585000px;}
.y32{bottom:286.635000px;}
.y10{bottom:294.585000px;}
.y102{bottom:296.025000px;}
.y138{bottom:302.865000px;}
.y31{bottom:303.915000px;}
.y1e{bottom:313.275000px;}
.y137{bottom:320.145000px;}
.y30{bottom:321.195000px;}
.yb2{bottom:321.585000px;}
.y6f{bottom:324.825000px;}
.y1d{bottom:337.395000px;}
.y136{bottom:337.425000px;}
.y2f{bottom:338.475000px;}
.y101{bottom:348.585000px;}
.y135{bottom:354.705000px;}
.y2e{bottom:355.755000px;}
.yc8{bottom:356.145000px;}
.y1c{bottom:361.515000px;}
.y134{bottom:371.985000px;}
.y2d{bottom:373.035000px;}
.y1b{bottom:386.025000px;}
.y133{bottom:389.265000px;}
.y2c{bottom:389.985000px;}
.y6e{bottom:395.745000px;}
.yfc{bottom:401.145000px;}
.y132{bottom:406.590000px;}
.y2b{bottom:407.265000px;}
.y1a{bottom:410.145000px;}
.y6d{bottom:412.350000px;}
.y131{bottom:423.870000px;}
.y2a{bottom:424.545000px;}
.y19{bottom:434.265000px;}
.y6c{bottom:438.990000px;}
.y130{bottom:441.150000px;}
.y29{bottom:441.825000px;}
.yb1{bottom:442.950000px;}
.yfb{bottom:453.750000px;}
.y6b{bottom:456.270000px;}
.y18{bottom:458.385000px;}
.y12f{bottom:458.430000px;}
.y28{bottom:458.745000px;}
.y6a{bottom:473.190000px;}
.y12e{bottom:475.350000px;}
.yc3{bottom:477.510000px;}
.y17{bottom:482.505000px;}
.y27{bottom:484.665000px;}
.y12d{bottom:492.630000px;}
.y69{bottom:499.830000px;}
.y26{bottom:500.145000px;}
.yf8{bottom:506.310000px;}
.y16{bottom:506.670000px;}
.y12c{bottom:509.910000px;}
.y25{bottom:515.670000px;}
.y68{bottom:517.110000px;}
.y12b{bottom:527.190000px;}
.y15{bottom:530.790000px;}
.y24{bottom:531.510000px;}
.y67{bottom:534.390000px;}
.y12a{bottom:544.500000px;}
.y23{bottom:546.990000px;}
.ya8{bottom:547.380000px;}
.y66{bottom:551.700000px;}
.y14{bottom:554.910000px;}
.yf7{bottom:558.540000px;}
.y129{bottom:561.780000px;}
.y22{bottom:562.470000px;}
.y65{bottom:568.980000px;}
.y21{bottom:577.950000px;}
.yf6{bottom:577.980000px;}
.y13{bottom:579.030000px;}
.y128{bottom:579.060000px;}
.ybd{bottom:581.940000px;}
.yf5{bottom:585.540000px;}
.y64{bottom:585.900000px;}
.y20{bottom:593.430000px;}
.y127{bottom:596.340000px;}
.y63{bottom:602.820000px;}
.y12{bottom:603.150000px;}
.yf4{bottom:612.180000px;}
.y126{bottom:613.620000px;}
.y1f{bottom:624.030000px;}
.y11{bottom:627.270000px;}
.yf3{bottom:629.100000px;}
.y62{bottom:629.460000px;}
.y125{bottom:630.900000px;}
.yf2{bottom:646.380000px;}
.y61{bottom:646.740000px;}
.y124{bottom:648.180000px;}
.yf1{bottom:663.300000px;}
.y60{bottom:664.020000px;}
.y123{bottom:665.100000px;}
.y5f{bottom:680.970000px;}
.y122{bottom:682.410000px;}
.yf0{bottom:689.970000px;}
.y121{bottom:699.690000px;}
.ya3{bottom:703.305000px;}
.yef{bottom:707.250000px;}
.y5e{bottom:715.890000px;}
.y120{bottom:716.970000px;}
.yee{bottom:724.530000px;}
.y5d{bottom:729.570000px;}
.y11f{bottom:734.250000px;}
.yed{bottom:741.810000px;}
.y11e{bottom:751.170000px;}
.yec{bottom:759.090000px;}
.yeb{bottom:776.370000px;}
.y11d{bottom:777.810000px;}
.yea{bottom:793.650000px;}
.y11c{bottom:795.090000px;}
.ye9{bottom:810.975000px;}
.y11b{bottom:812.415000px;}
.y9b{bottom:825.030000px;}
.ye8{bottom:828.255000px;}
.y11a{bottom:829.695000px;}
.yba{bottom:842.310000px;}
.ye7{bottom:845.175000px;}
.y119{bottom:846.975000px;}
.ye6{bottom:862.455000px;}
.y118{bottom:864.255000px;}
.y117{bottom:881.175000px;}
.ye5{bottom:888.735000px;}
.y116{bottom:898.455000px;}
.ye4{bottom:906.015000px;}
.y115{bottom:915.375000px;}
.ye3{bottom:922.935000px;}
.y114{bottom:942.045000px;}
.yf{bottom:946.365000px;}
.y113{bottom:959.325000px;}
.ye{bottom:963.645000px;}
.yd{bottom:974.085000px;}
.y112{bottom:976.605000px;}
.y111{bottom:993.885000px;}
.yc{bottom:998.205000px;}
.y149{bottom:1002.525000px;}
.yb{bottom:1008.285000px;}
.y110{bottom:1011.165000px;}
.y148{bottom:1020.165000px;}
.y10f{bottom:1028.445000px;}
.y5c{bottom:1034.925000px;}
.ya{bottom:1035.645000px;}
.y147{bottom:1037.445000px;}
.y10e{bottom:1045.725000px;}
.ye0{bottom:1050.765000px;}
.y5b{bottom:1052.565000px;}
.y146{bottom:1054.725000px;}
.y9{bottom:1059.765000px;}
.y10d{bottom:1062.645000px;}
.y8f{bottom:1068.090000px;}
.y5a{bottom:1069.890000px;}
.y145{bottom:1072.050000px;}
.yb8{bottom:1085.370000px;}
.y59{bottom:1087.890000px;}
.y8{bottom:1088.250000px;}
.y10c{bottom:1088.970000px;}
.y56{bottom:1091.520000px;}
.y58{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h15{height:5.650313px;}
.h2b{height:17.275500px;}
.h2f{height:17.280000px;}
.h19{height:18.866250px;}
.h7{height:24.348516px;}
.h17{height:27.720000px;}
.h13{height:29.678906px;}
.h24{height:34.185000px;}
.hb{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h1d{height:51.465000px;}
.h30{height:51.510000px;}
.h32{height:51.825000px;}
.h33{height:51.840000px;}
.h31{height:51.870000px;}
.hf{height:53.677969px;}
.h14{height:55.147500px;}
.h8{height:58.050000px;}
.h16{height:59.328281px;}
.h5{height:59.357813px;}
.h6{height:60.155156px;}
.h10{height:60.952500px;}
.h11{height:62.163910px;}
.h2e{height:62.960625px;}
.h18{height:63.455625px;}
.h3{height:65.884219px;}
.ha{height:66.543750px;}
.h2c{height:68.790000px;}
.h1a{height:69.105000px;}
.h1c{height:69.151500px;}
.h2{height:81.390000px;}
.h9{height:84.172500px;}
.h26{height:103.320000px;}
.h2d{height:103.665000px;}
.h22{height:103.710000px;}
.h4{height:116.640000px;}
.h1f{height:120.600000px;}
.h23{height:120.630000px;}
.h2a{height:120.631500px;}
.h28{height:120.636000px;}
.h29{height:120.960000px;}
.h20{height:120.981000px;}
.h1e{height:120.990000px;}
.h25{height:137.910000px;}
.h27{height:138.261000px;}
.h1b{height:155.160000px;}
.h21{height:155.190000px;}
.h12{height:201.645000px;}
.hc{height:636.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:37.786500px;}
.w9{width:38.865000px;}
.w8{width:64.822500px;}
.wd{width:87.501000px;}
.wc{width:89.676000px;}
.we{width:90.720000px;}
.wa{width:91.125000px;}
.wf{width:91.830000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.wb{width:140.430000px;}
.w10{width:143.685000px;}
.w6{width:163.080000px;}
.w12{width:291.690000px;}
.w11{width:299.625000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x14{left:8.295000px;}
.x24{left:9.346500px;}
.x26{left:10.785000px;}
.x36{left:12.225000px;}
.x4{left:13.305000px;}
.x32{left:15.106500px;}
.x12{left:16.546500px;}
.x18{left:18.346500px;}
.x5{left:19.425000px;}
.x37{left:20.535000px;}
.x30{left:21.945000px;}
.x35{left:23.385000px;}
.x25{left:24.862500px;}
.x2e{left:25.905000px;}
.x33{left:27.382500px;}
.x11{left:29.146500px;}
.x28{left:30.975000px;}
.x3e{left:32.025000px;}
.x2a{left:33.120000px;}
.x3d{left:34.215000px;}
.x16{left:35.295000px;}
.x38{left:37.080000px;}
.x3c{left:38.175000px;}
.x39{left:39.255000px;}
.x3b{left:40.710000px;}
.x2c{left:42.150000px;}
.x6{left:43.575000px;}
.x34{left:44.640000px;}
.x19{left:47.542500px;}
.x3a{left:48.600000px;}
.xc{left:50.782500px;}
.xb{left:55.102500px;}
.x3f{left:56.160000px;}
.x1b{left:57.262500px;}
.x15{left:62.295000px;}
.x1a{left:66.265500px;}
.xf{left:73.105500px;}
.xe{left:76.705500px;}
.x1{left:78.529500px;}
.x10{left:80.305500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x1c{left:102.985500px;}
.x17{left:106.945500px;}
.x1e{left:113.436000px;}
.x23{left:117.049500px;}
.xd{left:124.585500px;}
.x20{left:140.472000px;}
.x3{left:182.250000px;}
.x13{left:218.970000px;}
.x27{left:221.490000px;}
.x41{left:222.945000px;}
.x40{left:261.105000px;}
.xa{left:269.745000px;}
.x29{left:312.990000px;}
.x21{left:363.750000px;}
.x22{left:446.580000px;}
.x2b{left:453.780000px;}
.x42{left:522.945000px;}
.x2d{left:543.825000px;}
.x1f{left:602.895000px;}
.x2f{left:631.710000px;}
.x31{left:722.805000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
@media print{
.v5{vertical-align:-62.720000pt;}
.v4{vertical-align:-53.760000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-2.560000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.560000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.450667pt;}
.ls1b{letter-spacing:-0.432533pt;}
.ls1a{letter-spacing:-0.414933pt;}
.lsc{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.017920pt;}
.lsa{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.376320pt;}
.ls14{letter-spacing:0.414933pt;}
.ls3{letter-spacing:0.439040pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.773120pt;}
.ls13{letter-spacing:0.864000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.297920pt;}
.ls6{letter-spacing:12.160000pt;}
.ls5{letter-spacing:14.720000pt;}
.ls1d{letter-spacing:41.374720pt;}
.ls7{letter-spacing:56.734720pt;}
.ls10{letter-spacing:695.925333pt;}
.ws5{word-spacing:-53.760000pt;}
.wse{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.422080pt;}
.wsc{word-spacing:-13.025067pt;}
.wsd{word-spacing:-13.007467pt;}
.wsa{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.wsf{word-spacing:-10.880000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-3.153920pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._5{width:4.726613pt;}
._12{width:5.688747pt;}
._c{width:6.899200pt;}
._d{width:7.797760pt;}
._10{width:9.561600pt;}
._11{width:10.936320pt;}
._13{width:11.911680pt;}
._7{width:13.619200pt;}
._8{width:15.528960pt;}
._f{width:16.698880pt;}
._14{width:18.063360pt;}
._15{width:19.084800pt;}
._16{width:20.218880pt;}
._9{width:21.498880pt;}
._20{width:22.410240pt;}
._a{width:23.367680pt;}
._b{width:24.345600pt;}
._1c{width:25.620480pt;}
._e{width:27.530240pt;}
._18{width:29.944320pt;}
._1e{width:32.225280pt;}
._1f{width:33.838080pt;}
._1a{width:41.180160pt;}
._1b{width:42.260480pt;}
._17{width:175.441920pt;}
._19{width:178.452480pt;}
._1d{width:245.145600pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.556000pt;}
.y74{bottom:3.200000pt;}
.y82{bottom:3.506667pt;}
.y8c{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y100{bottom:3.560000pt;}
.y57{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y49{bottom:9.596000pt;}
.ybb{bottom:10.866667pt;}
.yf9{bottom:10.880000pt;}
.y86{bottom:11.186667pt;}
.y8e{bottom:11.196000pt;}
.y9a{bottom:11.200000pt;}
.yfe{bottom:11.240000pt;}
.y55{bottom:13.116000pt;}
.yb6{bottom:18.546667pt;}
.y71{bottom:18.560000pt;}
.y80{bottom:18.866667pt;}
.y8a{bottom:18.876000pt;}
.y4{bottom:18.880000pt;}
.ye2{bottom:18.920000pt;}
.ya2{bottom:26.226667pt;}
.y72{bottom:26.240000pt;}
.y85{bottom:26.546667pt;}
.y88{bottom:26.556000pt;}
.y94{bottom:26.560000pt;}
.y104{bottom:26.573333pt;}
.yda{bottom:26.588000pt;}
.yfd{bottom:26.600000pt;}
.y54{bottom:28.476000pt;}
.y9e{bottom:33.906667pt;}
.y70{bottom:33.920000pt;}
.yfa{bottom:33.946667pt;}
.ye1{bottom:33.960000pt;}
.y7e{bottom:34.226667pt;}
.y89{bottom:34.236000pt;}
.y97{bottom:34.240000pt;}
.y105{bottom:34.253333pt;}
.ydc{bottom:34.270667pt;}
.yff{bottom:34.280000pt;}
.y40{bottom:35.200000pt;}
.y48{bottom:35.836000pt;}
.y3{bottom:39.360000pt;}
.ya0{bottom:41.586667pt;}
.ybf{bottom:41.600000pt;}
.yd9{bottom:41.630667pt;}
.y7a{bottom:41.906667pt;}
.y93{bottom:41.920000pt;}
.yd1{bottom:41.933333pt;}
.y8d{bottom:41.948000pt;}
.y47{bottom:46.428000pt;}
.y53{bottom:47.708000pt;}
.y9c{bottom:49.266667pt;}
.y73{bottom:49.280000pt;}
.yd6{bottom:49.310667pt;}
.yc9{bottom:49.320000pt;}
.y7d{bottom:49.586667pt;}
.y90{bottom:49.600000pt;}
.yce{bottom:49.613333pt;}
.y8b{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y3f{bottom:51.520000pt;}
.y9f{bottom:56.946667pt;}
.ybe{bottom:56.960000pt;}
.yd8{bottom:56.990667pt;}
.yca{bottom:57.000000pt;}
.y79{bottom:57.266667pt;}
.y92{bottom:57.280000pt;}
.yd0{bottom:57.293333pt;}
.yc4{bottom:57.306667pt;}
.y46{bottom:57.950667pt;}
.y9d{bottom:64.626667pt;}
.ya9{bottom:64.640000pt;}
.y52{bottom:64.670667pt;}
.ycb{bottom:64.680000pt;}
.y76{bottom:64.946667pt;}
.y96{bottom:64.960000pt;}
.ycf{bottom:64.973333pt;}
.yc6{bottom:64.986667pt;}
.y3e{bottom:67.840000pt;}
.y45{bottom:69.470667pt;}
.y78{bottom:72.306667pt;}
.yab{bottom:72.320000pt;}
.yd7{bottom:72.350667pt;}
.ycc{bottom:72.360000pt;}
.ya5{bottom:72.626667pt;}
.y91{bottom:72.640000pt;}
.yd4{bottom:72.653333pt;}
.yc5{bottom:72.666667pt;}
.y51{bottom:78.430667pt;}
.y7c{bottom:79.986667pt;}
.yaa{bottom:80.000000pt;}
.yc2{bottom:80.026667pt;}
.ydb{bottom:80.030667pt;}
.yb3{bottom:80.040000pt;}
.ya6{bottom:80.306667pt;}
.y95{bottom:80.320000pt;}
.yd2{bottom:80.333333pt;}
.yc7{bottom:80.346667pt;}
.y41{bottom:81.956000pt;}
.y3d{bottom:84.160000pt;}
.ydf{bottom:84.516000pt;}
.y144{bottom:85.152000pt;}
.yb7{bottom:85.156000pt;}
.y50{bottom:86.750667pt;}
.y77{bottom:87.666667pt;}
.yad{bottom:87.680000pt;}
.yc0{bottom:87.706667pt;}
.ydd{bottom:87.710667pt;}
.y99{bottom:88.000000pt;}
.ya4{bottom:88.026667pt;}
.y10b{bottom:88.032000pt;}
.y87{bottom:88.036000pt;}
.y44{bottom:88.670667pt;}
.ya1{bottom:95.346667pt;}
.yae{bottom:95.360000pt;}
.y7b{bottom:95.373333pt;}
.yc1{bottom:95.386667pt;}
.yde{bottom:95.390667pt;}
.yb4{bottom:95.400000pt;}
.y98{bottom:95.680000pt;}
.yd3{bottom:95.693333pt;}
.ya7{bottom:95.706667pt;}
.y143{bottom:100.512000pt;}
.yd5{bottom:100.516000pt;}
.y3c{bottom:100.520000pt;}
.yac{bottom:103.040000pt;}
.y84{bottom:103.053333pt;}
.y10a{bottom:103.392000pt;}
.y4f{bottom:103.710667pt;}
.y7f{bottom:110.733333pt;}
.yb0{bottom:110.746667pt;}
.yb9{bottom:110.760000pt;}
.ybc{bottom:111.066667pt;}
.y142{bottom:115.872000pt;}
.y3b{bottom:116.840000pt;}
.y4e{bottom:117.470667pt;}
.y83{bottom:118.413333pt;}
.y109{bottom:118.752000pt;}
.y81{bottom:126.093333pt;}
.yaf{bottom:126.106667pt;}
.y4d{bottom:131.230667pt;}
.y141{bottom:131.264000pt;}
.y3a{bottom:132.200000pt;}
.y108{bottom:134.146667pt;}
.y43{bottom:144.350667pt;}
.y4c{bottom:144.990667pt;}
.y140{bottom:146.626667pt;}
.yb5{bottom:147.280000pt;}
.y39{bottom:147.560000pt;}
.y107{bottom:149.506667pt;}
.y75{bottom:150.160000pt;}
.y42{bottom:153.630667pt;}
.y4b{bottom:158.430667pt;}
.y13f{bottom:161.986667pt;}
.y38{bottom:162.600000pt;}
.y106{bottom:170.000000pt;}
.y13e{bottom:177.346667pt;}
.y37{bottom:177.960000pt;}
.y13d{bottom:192.706667pt;}
.y36{bottom:193.320000pt;}
.y13c{bottom:208.066667pt;}
.ycd{bottom:208.400000pt;}
.y35{bottom:208.680000pt;}
.y103{bottom:216.400000pt;}
.y13b{bottom:223.426667pt;}
.y34{bottom:224.066667pt;}
.y13a{bottom:238.466667pt;}
.y33{bottom:239.426667pt;}
.y139{bottom:253.853333pt;}
.y32{bottom:254.786667pt;}
.y10{bottom:261.853333pt;}
.y102{bottom:263.133333pt;}
.y138{bottom:269.213333pt;}
.y31{bottom:270.146667pt;}
.y1e{bottom:278.466667pt;}
.y137{bottom:284.573333pt;}
.y30{bottom:285.506667pt;}
.yb2{bottom:285.853333pt;}
.y6f{bottom:288.733333pt;}
.y1d{bottom:299.906667pt;}
.y136{bottom:299.933333pt;}
.y2f{bottom:300.866667pt;}
.y101{bottom:309.853333pt;}
.y135{bottom:315.293333pt;}
.y2e{bottom:316.226667pt;}
.yc8{bottom:316.573333pt;}
.y1c{bottom:321.346667pt;}
.y134{bottom:330.653333pt;}
.y2d{bottom:331.586667pt;}
.y1b{bottom:343.133333pt;}
.y133{bottom:346.013333pt;}
.y2c{bottom:346.653333pt;}
.y6e{bottom:351.773333pt;}
.yfc{bottom:356.573333pt;}
.y132{bottom:361.413333pt;}
.y2b{bottom:362.013333pt;}
.y1a{bottom:364.573333pt;}
.y6d{bottom:366.533333pt;}
.y131{bottom:376.773333pt;}
.y2a{bottom:377.373333pt;}
.y19{bottom:386.013333pt;}
.y6c{bottom:390.213333pt;}
.y130{bottom:392.133333pt;}
.y29{bottom:392.733333pt;}
.yb1{bottom:393.733333pt;}
.yfb{bottom:403.333333pt;}
.y6b{bottom:405.573333pt;}
.y18{bottom:407.453333pt;}
.y12f{bottom:407.493333pt;}
.y28{bottom:407.773333pt;}
.y6a{bottom:420.613333pt;}
.y12e{bottom:422.533333pt;}
.yc3{bottom:424.453333pt;}
.y17{bottom:428.893333pt;}
.y27{bottom:430.813333pt;}
.y12d{bottom:437.893333pt;}
.y69{bottom:444.293333pt;}
.y26{bottom:444.573333pt;}
.yf8{bottom:450.053333pt;}
.y16{bottom:450.373333pt;}
.y12c{bottom:453.253333pt;}
.y25{bottom:458.373333pt;}
.y68{bottom:459.653333pt;}
.y12b{bottom:468.613333pt;}
.y15{bottom:471.813333pt;}
.y24{bottom:472.453333pt;}
.y67{bottom:475.013333pt;}
.y12a{bottom:484.000000pt;}
.y23{bottom:486.213333pt;}
.ya8{bottom:486.560000pt;}
.y66{bottom:490.400000pt;}
.y14{bottom:493.253333pt;}
.yf7{bottom:496.480000pt;}
.y129{bottom:499.360000pt;}
.y22{bottom:499.973333pt;}
.y65{bottom:505.760000pt;}
.y21{bottom:513.733333pt;}
.yf6{bottom:513.760000pt;}
.y13{bottom:514.693333pt;}
.y128{bottom:514.720000pt;}
.ybd{bottom:517.280000pt;}
.yf5{bottom:520.480000pt;}
.y64{bottom:520.800000pt;}
.y20{bottom:527.493333pt;}
.y127{bottom:530.080000pt;}
.y63{bottom:535.840000pt;}
.y12{bottom:536.133333pt;}
.yf4{bottom:544.160000pt;}
.y126{bottom:545.440000pt;}
.y1f{bottom:554.693333pt;}
.y11{bottom:557.573333pt;}
.yf3{bottom:559.200000pt;}
.y62{bottom:559.520000pt;}
.y125{bottom:560.800000pt;}
.yf2{bottom:574.560000pt;}
.y61{bottom:574.880000pt;}
.y124{bottom:576.160000pt;}
.yf1{bottom:589.600000pt;}
.y60{bottom:590.240000pt;}
.y123{bottom:591.200000pt;}
.y5f{bottom:605.306667pt;}
.y122{bottom:606.586667pt;}
.yf0{bottom:613.306667pt;}
.y121{bottom:621.946667pt;}
.ya3{bottom:625.160000pt;}
.yef{bottom:628.666667pt;}
.y5e{bottom:636.346667pt;}
.y120{bottom:637.306667pt;}
.yee{bottom:644.026667pt;}
.y5d{bottom:648.506667pt;}
.y11f{bottom:652.666667pt;}
.yed{bottom:659.386667pt;}
.y11e{bottom:667.706667pt;}
.yec{bottom:674.746667pt;}
.yeb{bottom:690.106667pt;}
.y11d{bottom:691.386667pt;}
.yea{bottom:705.466667pt;}
.y11c{bottom:706.746667pt;}
.ye9{bottom:720.866667pt;}
.y11b{bottom:722.146667pt;}
.y9b{bottom:733.360000pt;}
.ye8{bottom:736.226667pt;}
.y11a{bottom:737.506667pt;}
.yba{bottom:748.720000pt;}
.ye7{bottom:751.266667pt;}
.y119{bottom:752.866667pt;}
.ye6{bottom:766.626667pt;}
.y118{bottom:768.226667pt;}
.y117{bottom:783.266667pt;}
.ye5{bottom:789.986667pt;}
.y116{bottom:798.626667pt;}
.ye4{bottom:805.346667pt;}
.y115{bottom:813.666667pt;}
.ye3{bottom:820.386667pt;}
.y114{bottom:837.373333pt;}
.yf{bottom:841.213333pt;}
.y113{bottom:852.733333pt;}
.ye{bottom:856.573333pt;}
.yd{bottom:865.853333pt;}
.y112{bottom:868.093333pt;}
.y111{bottom:883.453333pt;}
.yc{bottom:887.293333pt;}
.y149{bottom:891.133333pt;}
.yb{bottom:896.253333pt;}
.y110{bottom:898.813333pt;}
.y148{bottom:906.813333pt;}
.y10f{bottom:914.173333pt;}
.y5c{bottom:919.933333pt;}
.ya{bottom:920.573333pt;}
.y147{bottom:922.173333pt;}
.y10e{bottom:929.533333pt;}
.ye0{bottom:934.013333pt;}
.y5b{bottom:935.613333pt;}
.y146{bottom:937.533333pt;}
.y9{bottom:942.013333pt;}
.y10d{bottom:944.573333pt;}
.y8f{bottom:949.413333pt;}
.y5a{bottom:951.013333pt;}
.y145{bottom:952.933333pt;}
.yb8{bottom:964.773333pt;}
.y59{bottom:967.013333pt;}
.y8{bottom:967.333333pt;}
.y10c{bottom:967.973333pt;}
.y56{bottom:970.240000pt;}
.y58{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h15{height:5.022500pt;}
.h2b{height:15.356000pt;}
.h2f{height:15.360000pt;}
.h19{height:16.770000pt;}
.h7{height:21.643125pt;}
.h17{height:24.640000pt;}
.h13{height:26.381250pt;}
.h24{height:30.386667pt;}
.hb{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h1d{height:45.746667pt;}
.h30{height:45.786667pt;}
.h32{height:46.066667pt;}
.h33{height:46.080000pt;}
.h31{height:46.106667pt;}
.hf{height:47.713750pt;}
.h14{height:49.020000pt;}
.h8{height:51.600000pt;}
.h16{height:52.736250pt;}
.h5{height:52.762500pt;}
.h6{height:53.471250pt;}
.h10{height:54.180000pt;}
.h11{height:55.256809pt;}
.h2e{height:55.965000pt;}
.h18{height:56.405000pt;}
.h3{height:58.563750pt;}
.ha{height:59.150000pt;}
.h2c{height:61.146667pt;}
.h1a{height:61.426667pt;}
.h1c{height:61.468000pt;}
.h2{height:72.346667pt;}
.h9{height:74.820000pt;}
.h26{height:91.840000pt;}
.h2d{height:92.146667pt;}
.h22{height:92.186667pt;}
.h4{height:103.680000pt;}
.h1f{height:107.200000pt;}
.h23{height:107.226667pt;}
.h2a{height:107.228000pt;}
.h28{height:107.232000pt;}
.h29{height:107.520000pt;}
.h20{height:107.538667pt;}
.h1e{height:107.546667pt;}
.h25{height:122.586667pt;}
.h27{height:122.898667pt;}
.h1b{height:137.920000pt;}
.h21{height:137.946667pt;}
.h12{height:179.240000pt;}
.hc{height:565.893333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:33.588000pt;}
.w9{width:34.546667pt;}
.w8{width:57.620000pt;}
.wd{width:77.778667pt;}
.wc{width:79.712000pt;}
.we{width:80.640000pt;}
.wa{width:81.000000pt;}
.wf{width:81.626667pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.wb{width:124.826667pt;}
.w10{width:127.720000pt;}
.w6{width:144.960000pt;}
.w12{width:259.280000pt;}
.w11{width:266.333333pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x14{left:7.373333pt;}
.x24{left:8.308000pt;}
.x26{left:9.586667pt;}
.x36{left:10.866667pt;}
.x4{left:11.826667pt;}
.x32{left:13.428000pt;}
.x12{left:14.708000pt;}
.x18{left:16.308000pt;}
.x5{left:17.266667pt;}
.x37{left:18.253333pt;}
.x30{left:19.506667pt;}
.x35{left:20.786667pt;}
.x25{left:22.100000pt;}
.x2e{left:23.026667pt;}
.x33{left:24.340000pt;}
.x11{left:25.908000pt;}
.x28{left:27.533333pt;}
.x3e{left:28.466667pt;}
.x2a{left:29.440000pt;}
.x3d{left:30.413333pt;}
.x16{left:31.373333pt;}
.x38{left:32.960000pt;}
.x3c{left:33.933333pt;}
.x39{left:34.893333pt;}
.x3b{left:36.186667pt;}
.x2c{left:37.466667pt;}
.x6{left:38.733333pt;}
.x34{left:39.680000pt;}
.x19{left:42.260000pt;}
.x3a{left:43.200000pt;}
.xc{left:45.140000pt;}
.xb{left:48.980000pt;}
.x3f{left:49.920000pt;}
.x1b{left:50.900000pt;}
.x15{left:55.373333pt;}
.x1a{left:58.902667pt;}
.xf{left:64.982667pt;}
.xe{left:68.182667pt;}
.x1{left:69.804000pt;}
.x10{left:71.382667pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x1c{left:91.542667pt;}
.x17{left:95.062667pt;}
.x1e{left:100.832000pt;}
.x23{left:104.044000pt;}
.xd{left:110.742667pt;}
.x20{left:124.864000pt;}
.x3{left:162.000000pt;}
.x13{left:194.640000pt;}
.x27{left:196.880000pt;}
.x41{left:198.173333pt;}
.x40{left:232.093333pt;}
.xa{left:239.773333pt;}
.x29{left:278.213333pt;}
.x21{left:323.333333pt;}
.x22{left:396.960000pt;}
.x2b{left:403.360000pt;}
.x42{left:464.840000pt;}
.x2d{left:483.400000pt;}
.x1f{left:535.906667pt;}
.x2f{left:561.520000pt;}
.x31{left:642.493333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
}




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