
    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_fb23428a44104128f8aca27c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.713000;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_bb3d56a3c3cdf55fb689547c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_cbe222ca09c5edb598f1f607.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925000;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_e7e7f3f82fbf0e904f0578b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_8dab8a0634b5227dc32157be.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.171000;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_91b0cc09eacddd88c79a1870.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942933;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_4f70ff446f1d569d19f62571.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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_5d1a65736281a5578256ddf5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_817eb05e8edd260b1ca22faf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.915000;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_9bcb62bd6f9657707a85fc99.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_c06db91a5924d60fe9e8f9f2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010000;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.234923,0.000000,-0.085504,0.234923,0,0);-ms-transform:matrix(0.234923,0.000000,-0.085504,0.234923,0,0);-webkit-transform:matrix(0.234923,0.000000,-0.085504,0.234923,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.718000px;}
.ls4{letter-spacing:-0.225000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000018px;}
.ls3{letter-spacing:0.510000px;}
.ls1{letter-spacing:1.350000px;}
.ls0{letter-spacing:2.100000px;}
.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;}
}
.ws1e{word-spacing:-39.528000px;}
.ws14{word-spacing:-27.999000px;}
.ws4{word-spacing:-24.705000px;}
.ws9{word-spacing:-15.606000px;}
.ws13{word-spacing:-14.076000px;}
.wsc{word-spacing:-14.040000px;}
.ws0{word-spacing:-13.608000px;}
.ws3{word-spacing:-11.700000px;}
.ws1b{word-spacing:-10.180800px;}
.ws8{word-spacing:-8.185320px;}
.ws1d{word-spacing:-7.653600px;}
.ws20{word-spacing:-3.132000px;}
.wse{word-spacing:-2.430000px;}
.wsf{word-spacing:-2.106000px;}
.ws16{word-spacing:-0.162000px;}
.ws1{word-spacing:-0.045000px;}
.ws5{word-spacing:0.000000px;}
.ws17{word-spacing:0.225000px;}
.ws10{word-spacing:0.486000px;}
.ws1c{word-spacing:2.642400px;}
.ws1f{word-spacing:3.294000px;}
.ws11{word-spacing:4.590000px;}
.ws6{word-spacing:5.184000px;}
.ws12{word-spacing:6.210000px;}
.wsd{word-spacing:10.800000px;}
.wsb{word-spacing:17.834400px;}
.ws19{word-spacing:18.482400px;}
.ws7{word-spacing:19.274400px;}
.ws1a{word-spacing:19.778400px;}
.ws15{word-spacing:20.282400px;}
.wsa{word-spacing:22.082400px;}
.ws18{word-spacing:28.058400px;}
.ws2{word-spacing:29.563200px;}
._e{margin-left:-614.193000px;}
._12{margin-left:-611.796000px;}
._19{margin-left:-604.605000px;}
._1a{margin-left:-602.208000px;}
._1b{margin-left:-14.974200px;}
._11{margin-left:-13.629600px;}
._f{margin-left:-12.453000px;}
._1{margin-left:-9.882000px;}
._0{margin-left:-6.000000px;}
._b{margin-left:-4.968000px;}
._a{margin-left:-3.385800px;}
._2{margin-left:-2.214000px;}
._3{margin-left:-1.026000px;}
._9{width:1.166400px;}
._8{width:2.878200px;}
._7{width:3.990600px;}
._4{width:5.040000px;}
._5{width:6.912000px;}
._6{width:8.499600px;}
._14{width:9.693000px;}
._13{width:10.767600px;}
._15{width:12.074400px;}
._18{width:20.714400px;}
._16{width:21.780000px;}
._c{width:25.335000px;}
._17{width:28.131300px;}
._d{width:30.825000px;}
._10{width:50.101800px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fs5{font-size:45.000000px;}
.fs0{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:57.465534px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:41.743950px;}
.y21{bottom:55.243950px;}
.y1{bottom:55.275600px;}
.y20{bottom:68.743950px;}
.yc7{bottom:97.575600px;}
.y113{bottom:97.582950px;}
.y37{bottom:97.788000px;}
.y1f{bottom:97.791450px;}
.y15f{bottom:97.818000px;}
.ya3{bottom:97.895850px;}
.y76{bottom:97.944000px;}
.y8e{bottom:98.022000px;}
.yc6{bottom:114.079350px;}
.y1e{bottom:114.295200px;}
.y36{bottom:117.282000px;}
.y15e{bottom:117.312000px;}
.ya2{bottom:117.389850px;}
.y10b{bottom:117.408000px;}
.y75{bottom:117.438000px;}
.y8d{bottom:117.516000px;}
.yc5{bottom:130.583100px;}
.y35{bottom:136.782000px;}
.y165{bottom:136.791000px;}
.y122{bottom:136.800000px;}
.y15d{bottom:136.806000px;}
.y112{bottom:136.848000px;}
.y58{bottom:136.872000px;}
.ya1{bottom:136.883850px;}
.y13e{bottom:136.890000px;}
.y10a{bottom:136.902000px;}
.y74{bottom:136.932000px;}
.y156{bottom:136.968000px;}
.ye7{bottom:136.998000px;}
.y8c{bottom:137.010000px;}
.yc4{bottom:147.083100px;}
.y1d{bottom:149.895900px;}
.y164{bottom:156.285000px;}
.y121{bottom:156.294000px;}
.y15c{bottom:156.300000px;}
.y34{bottom:156.342000px;}
.y57{bottom:156.366000px;}
.ya0{bottom:156.377850px;}
.y13d{bottom:156.384000px;}
.y109{bottom:156.396000px;}
.y73{bottom:156.426000px;}
.y155{bottom:156.462000px;}
.ye6{bottom:156.492000px;}
.y8b{bottom:156.504000px;}
.y1c{bottom:169.389900px;}
.y120{bottom:175.788000px;}
.y15b{bottom:175.794000px;}
.y33{bottom:175.836000px;}
.y56{bottom:175.860000px;}
.y9f{bottom:175.871850px;}
.y13c{bottom:175.878000px;}
.y108{bottom:175.890000px;}
.y72{bottom:175.920000px;}
.y154{bottom:175.956000px;}
.ye5{bottom:175.986000px;}
.y8a{bottom:175.998000px;}
.y1b{bottom:188.883900px;}
.y11f{bottom:195.282000px;}
.y163{bottom:195.286500px;}
.y15a{bottom:195.288000px;}
.y32{bottom:195.330000px;}
.y55{bottom:195.354000px;}
.y9e{bottom:195.365850px;}
.y13b{bottom:195.372000px;}
.y107{bottom:195.384000px;}
.y71{bottom:195.414000px;}
.y153{bottom:195.450000px;}
.ye4{bottom:195.480000px;}
.y89{bottom:195.492000px;}
.yf1{bottom:208.323900px;}
.y1a{bottom:208.377900px;}
.y11e{bottom:214.776000px;}
.y159{bottom:214.782000px;}
.y31{bottom:214.824000px;}
.y54{bottom:214.848000px;}
.y9d{bottom:214.859850px;}
.y13a{bottom:214.866000px;}
.y106{bottom:214.878000px;}
.y70{bottom:214.908000px;}
.y152{bottom:214.944000px;}
.ye3{bottom:214.974000px;}
.y88{bottom:214.986000px;}
.yf0{bottom:227.817900px;}
.y19{bottom:227.871900px;}
.y158{bottom:234.276000px;}
.y162{bottom:234.288000px;}
.y30{bottom:234.318000px;}
.y53{bottom:234.342000px;}
.y9c{bottom:234.353850px;}
.y139{bottom:234.360000px;}
.y105{bottom:234.372000px;}
.y6f{bottom:234.402000px;}
.y151{bottom:234.438000px;}
.ye2{bottom:234.468000px;}
.y87{bottom:234.480000px;}
.yef{bottom:247.311900px;}
.y18{bottom:247.365900px;}
.y11d{bottom:253.776000px;}
.y161{bottom:253.782000px;}
.y111{bottom:253.812000px;}
.y52{bottom:253.836000px;}
.y9b{bottom:253.847850px;}
.y138{bottom:253.854000px;}
.y104{bottom:253.866000px;}
.y6e{bottom:253.896000px;}
.y150{bottom:253.932000px;}
.ye1{bottom:253.962000px;}
.y86{bottom:253.974000px;}
.yee{bottom:266.805900px;}
.y17{bottom:266.859900px;}
.y157{bottom:273.276000px;}
.y110{bottom:273.306000px;}
.y51{bottom:273.330000px;}
.y9a{bottom:273.341850px;}
.y137{bottom:273.348000px;}
.y103{bottom:273.360000px;}
.y6d{bottom:273.390000px;}
.y14f{bottom:273.426000px;}
.ye0{bottom:273.456000px;}
.y85{bottom:273.468000px;}
.yed{bottom:286.299900px;}
.y16{bottom:286.353900px;}
.y10f{bottom:292.800000px;}
.y50{bottom:292.824000px;}
.y99{bottom:292.835850px;}
.y136{bottom:292.842000px;}
.y102{bottom:292.854000px;}
.y6c{bottom:292.884000px;}
.y14e{bottom:292.920000px;}
.ydf{bottom:292.950000px;}
.y84{bottom:292.962000px;}
.y38{bottom:299.083950px;}
.yec{bottom:305.793900px;}
.y15{bottom:305.847900px;}
.y160{bottom:312.276000px;}
.y10e{bottom:312.294000px;}
.y4f{bottom:312.318000px;}
.y98{bottom:312.329850px;}
.y135{bottom:312.336000px;}
.y101{bottom:312.348000px;}
.yc3{bottom:312.366000px;}
.y6b{bottom:312.378000px;}
.y14d{bottom:312.414000px;}
.yde{bottom:312.444000px;}
.y83{bottom:312.456000px;}
.yeb{bottom:325.287900px;}
.y14{bottom:325.341900px;}
.y10d{bottom:331.788000px;}
.y4e{bottom:331.812000px;}
.y97{bottom:331.823850px;}
.y11c{bottom:331.824000px;}
.y134{bottom:331.830000px;}
.y100{bottom:331.842000px;}
.yc2{bottom:331.860000px;}
.y6a{bottom:331.872000px;}
.y14c{bottom:331.908000px;}
.ydd{bottom:331.938000px;}
.y82{bottom:331.950000px;}
.yea{bottom:344.781900px;}
.y13{bottom:344.835900px;}
.y10c{bottom:351.282000px;}
.y4d{bottom:351.306000px;}
.y96{bottom:351.317850px;}
.y11b{bottom:351.318000px;}
.y133{bottom:351.324000px;}
.yff{bottom:351.336000px;}
.yc1{bottom:351.354000px;}
.y69{bottom:351.366000px;}
.y14b{bottom:351.402000px;}
.ydc{bottom:351.432000px;}
.y81{bottom:351.444000px;}
.ye9{bottom:364.275900px;}
.y12{bottom:364.329900px;}
.y4c{bottom:370.800000px;}
.y95{bottom:370.811850px;}
.y11a{bottom:370.812000px;}
.y132{bottom:370.818000px;}
.yfe{bottom:370.830000px;}
.yc0{bottom:370.848000px;}
.y68{bottom:370.860000px;}
.y14a{bottom:370.896000px;}
.ydb{bottom:370.926000px;}
.y80{bottom:370.938000px;}
.y11{bottom:383.823900px;}
.y4b{bottom:390.294000px;}
.y94{bottom:390.305850px;}
.y119{bottom:390.306000px;}
.y131{bottom:390.312000px;}
.yfd{bottom:390.324000px;}
.ybf{bottom:390.342000px;}
.y67{bottom:390.354000px;}
.y149{bottom:390.390000px;}
.yda{bottom:390.420000px;}
.y7f{bottom:390.432000px;}
.ye8{bottom:403.275900px;}
.y10{bottom:403.317900px;}
.y4a{bottom:409.788000px;}
.y93{bottom:409.799850px;}
.y118{bottom:409.800000px;}
.y130{bottom:409.806000px;}
.yfc{bottom:409.818000px;}
.ybe{bottom:409.836000px;}
.y66{bottom:409.848000px;}
.y148{bottom:409.884000px;}
.yd9{bottom:409.914000px;}
.y7e{bottom:409.926000px;}
.yf{bottom:422.811900px;}
.y49{bottom:429.282000px;}
.y92{bottom:429.293850px;}
.y117{bottom:429.294000px;}
.y12f{bottom:429.300000px;}
.yfb{bottom:429.312000px;}
.ybd{bottom:429.330000px;}
.y65{bottom:429.342000px;}
.y147{bottom:429.378000px;}
.yd8{bottom:429.408000px;}
.y7d{bottom:429.420000px;}
.ye{bottom:442.305900px;}
.y48{bottom:448.776000px;}
.y91{bottom:448.787850px;}
.y116{bottom:448.788000px;}
.y12e{bottom:448.794000px;}
.yfa{bottom:448.806000px;}
.ybc{bottom:448.824000px;}
.y64{bottom:448.836000px;}
.y146{bottom:448.872000px;}
.yd7{bottom:448.902000px;}
.y7c{bottom:448.914000px;}
.yf3{bottom:459.471150px;}
.yd{bottom:461.799900px;}
.y90{bottom:468.281850px;}
.y115{bottom:468.282000px;}
.y12d{bottom:468.288000px;}
.yf9{bottom:468.300000px;}
.ybb{bottom:468.318000px;}
.y63{bottom:468.330000px;}
.y145{bottom:468.366000px;}
.yd6{bottom:468.396000px;}
.y7b{bottom:468.408000px;}
.yf2{bottom:476.721900px;}
.yc{bottom:481.293900px;}
.y8f{bottom:487.775850px;}
.y47{bottom:487.776000px;}
.y12c{bottom:487.782000px;}
.yf8{bottom:487.794000px;}
.yba{bottom:487.812000px;}
.y62{bottom:487.824000px;}
.y144{bottom:487.860000px;}
.yd5{bottom:487.890000px;}
.y7a{bottom:487.902000px;}
.yb{bottom:500.787900px;}
.y12b{bottom:507.276000px;}
.yf7{bottom:507.288000px;}
.yb9{bottom:507.306000px;}
.y61{bottom:507.318000px;}
.y143{bottom:507.354000px;}
.yd4{bottom:507.384000px;}
.y79{bottom:507.396000px;}
.ya{bottom:520.281900px;}
.y114{bottom:526.776000px;}
.yf6{bottom:526.782000px;}
.yb8{bottom:526.800000px;}
.y60{bottom:526.812000px;}
.y142{bottom:526.848000px;}
.yd3{bottom:526.878000px;}
.y78{bottom:526.890000px;}
.y9{bottom:539.775900px;}
.yf5{bottom:546.276000px;}
.yb7{bottom:546.294000px;}
.y5f{bottom:546.306000px;}
.y141{bottom:546.342000px;}
.yd2{bottom:546.372000px;}
.y77{bottom:546.384000px;}
.ya6{bottom:549.464400px;}
.yb6{bottom:565.788000px;}
.y5e{bottom:565.800000px;}
.y140{bottom:565.836000px;}
.yd1{bottom:565.866000px;}
.y46{bottom:565.878000px;}
.ya5{bottom:566.715150px;}
.y8{bottom:578.775900px;}
.ya4{bottom:583.965900px;}
.yf4{bottom:585.276000px;}
.yb5{bottom:585.282000px;}
.y5d{bottom:585.294000px;}
.y2f{bottom:585.318000px;}
.y13f{bottom:585.330000px;}
.yd0{bottom:585.360000px;}
.y45{bottom:585.372000px;}
.y5c{bottom:604.788000px;}
.y2e{bottom:604.812000px;}
.yb4{bottom:604.824000px;}
.ycf{bottom:604.854000px;}
.y44{bottom:604.866000px;}
.y5b{bottom:624.282000px;}
.y2d{bottom:624.306000px;}
.y12a{bottom:624.312000px;}
.yb3{bottom:624.318000px;}
.yce{bottom:624.348000px;}
.y43{bottom:624.360000px;}
.y5a{bottom:643.776000px;}
.y2c{bottom:643.800000px;}
.y129{bottom:643.806000px;}
.yb2{bottom:643.812000px;}
.ycd{bottom:643.842000px;}
.y42{bottom:643.854000px;}
.y7{bottom:656.772150px;}
.y2b{bottom:663.294000px;}
.y128{bottom:663.300000px;}
.yb1{bottom:663.306000px;}
.ycc{bottom:663.336000px;}
.y41{bottom:663.348000px;}
.y6{bottom:679.272150px;}
.y59{bottom:682.776000px;}
.y2a{bottom:682.788000px;}
.y127{bottom:682.794000px;}
.yb0{bottom:682.800000px;}
.ycb{bottom:682.830000px;}
.y40{bottom:682.842000px;}
.y5{bottom:695.775900px;}
.y29{bottom:702.282000px;}
.y126{bottom:702.288000px;}
.yaf{bottom:702.294000px;}
.yca{bottom:702.324000px;}
.y3f{bottom:702.336000px;}
.y28{bottom:721.776000px;}
.y125{bottom:721.782000px;}
.yae{bottom:721.788000px;}
.yc9{bottom:721.818000px;}
.y3e{bottom:721.830000px;}
.y124{bottom:741.276000px;}
.yad{bottom:741.282000px;}
.yc8{bottom:741.312000px;}
.y3d{bottom:741.324000px;}
.y27{bottom:760.776000px;}
.yac{bottom:760.806000px;}
.y3c{bottom:760.818000px;}
.y123{bottom:780.276000px;}
.yab{bottom:780.300000px;}
.y3b{bottom:780.312000px;}
.yaa{bottom:799.794000px;}
.y3a{bottom:799.806000px;}
.y4{bottom:806.275950px;}
.ya9{bottom:819.288000px;}
.y39{bottom:819.300000px;}
.y3{bottom:838.776000px;}
.ya8{bottom:838.782000px;}
.y26{bottom:838.794000px;}
.ya7{bottom:858.276000px;}
.y25{bottom:858.288000px;}
.y24{bottom:877.782000px;}
.y2{bottom:897.276000px;}
.y23{bottom:947.196900px;}
.ha{height:32.310000px;}
.h2{height:35.802000px;}
.hb{height:36.618000px;}
.h6{height:37.908000px;}
.h5{height:40.340805px;}
.hc{height:41.580000px;}
.h7{height:41.895000px;}
.h9{height:50.274000px;}
.h8{height:51.696000px;}
.h4{height:58.968000px;}
.h3{height:84.240000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:714.000000px;}
.w0{width:714.330000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x3{left:97.795350px;}
.x4{left:100.859700px;}
.x6{left:110.554350px;}
.x5{left:116.926350px;}
.x7{left:534.484200px;}
.x1{left:642.047250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.749333pt;}
.ls4{letter-spacing:-0.200000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000016pt;}
.ls3{letter-spacing:0.453333pt;}
.ls1{letter-spacing:1.200000pt;}
.ls0{letter-spacing:1.866667pt;}
.ws1e{word-spacing:-35.136000pt;}
.ws14{word-spacing:-24.888000pt;}
.ws4{word-spacing:-21.960000pt;}
.ws9{word-spacing:-13.872000pt;}
.ws13{word-spacing:-12.512000pt;}
.wsc{word-spacing:-12.480000pt;}
.ws0{word-spacing:-12.096000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws1b{word-spacing:-9.049600pt;}
.ws8{word-spacing:-7.275840pt;}
.ws1d{word-spacing:-6.803200pt;}
.ws20{word-spacing:-2.784000pt;}
.wse{word-spacing:-2.160000pt;}
.wsf{word-spacing:-1.872000pt;}
.ws16{word-spacing:-0.144000pt;}
.ws1{word-spacing:-0.040000pt;}
.ws5{word-spacing:0.000000pt;}
.ws17{word-spacing:0.200000pt;}
.ws10{word-spacing:0.432000pt;}
.ws1c{word-spacing:2.348800pt;}
.ws1f{word-spacing:2.928000pt;}
.ws11{word-spacing:4.080000pt;}
.ws6{word-spacing:4.608000pt;}
.ws12{word-spacing:5.520000pt;}
.wsd{word-spacing:9.600000pt;}
.wsb{word-spacing:15.852800pt;}
.ws19{word-spacing:16.428800pt;}
.ws7{word-spacing:17.132800pt;}
.ws1a{word-spacing:17.580800pt;}
.ws15{word-spacing:18.028800pt;}
.wsa{word-spacing:19.628800pt;}
.ws18{word-spacing:24.940800pt;}
.ws2{word-spacing:26.278400pt;}
._e{margin-left:-545.949333pt;}
._12{margin-left:-543.818667pt;}
._19{margin-left:-537.426667pt;}
._1a{margin-left:-535.296000pt;}
._1b{margin-left:-13.310400pt;}
._11{margin-left:-12.115200pt;}
._f{margin-left:-11.069333pt;}
._1{margin-left:-8.784000pt;}
._0{margin-left:-5.333333pt;}
._b{margin-left:-4.416000pt;}
._a{margin-left:-3.009600pt;}
._2{margin-left:-1.968000pt;}
._3{margin-left:-0.912000pt;}
._9{width:1.036800pt;}
._8{width:2.558400pt;}
._7{width:3.547200pt;}
._4{width:4.480000pt;}
._5{width:6.144000pt;}
._6{width:7.555200pt;}
._14{width:8.616000pt;}
._13{width:9.571200pt;}
._15{width:10.732800pt;}
._18{width:18.412800pt;}
._16{width:19.360000pt;}
._c{width:22.520000pt;}
._17{width:25.005600pt;}
._d{width:27.400000pt;}
._10{width:44.534933pt;}
.fs7{font-size:27.984000pt;}
.fs5{font-size:40.000000pt;}
.fs0{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:51.080475pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:37.105733pt;}
.y21{bottom:49.105733pt;}
.y1{bottom:49.133867pt;}
.y20{bottom:61.105733pt;}
.yc7{bottom:86.733867pt;}
.y113{bottom:86.740400pt;}
.y37{bottom:86.922667pt;}
.y1f{bottom:86.925733pt;}
.y15f{bottom:86.949333pt;}
.ya3{bottom:87.018533pt;}
.y76{bottom:87.061333pt;}
.y8e{bottom:87.130667pt;}
.yc6{bottom:101.403867pt;}
.y1e{bottom:101.595733pt;}
.y36{bottom:104.250667pt;}
.y15e{bottom:104.277333pt;}
.ya2{bottom:104.346533pt;}
.y10b{bottom:104.362667pt;}
.y75{bottom:104.389333pt;}
.y8d{bottom:104.458667pt;}
.yc5{bottom:116.073867pt;}
.y35{bottom:121.584000pt;}
.y165{bottom:121.592000pt;}
.y122{bottom:121.600000pt;}
.y15d{bottom:121.605333pt;}
.y112{bottom:121.642667pt;}
.y58{bottom:121.664000pt;}
.ya1{bottom:121.674533pt;}
.y13e{bottom:121.680000pt;}
.y10a{bottom:121.690667pt;}
.y74{bottom:121.717333pt;}
.y156{bottom:121.749333pt;}
.ye7{bottom:121.776000pt;}
.y8c{bottom:121.786667pt;}
.yc4{bottom:130.740533pt;}
.y1d{bottom:133.240800pt;}
.y164{bottom:138.920000pt;}
.y121{bottom:138.928000pt;}
.y15c{bottom:138.933333pt;}
.y34{bottom:138.970667pt;}
.y57{bottom:138.992000pt;}
.ya0{bottom:139.002533pt;}
.y13d{bottom:139.008000pt;}
.y109{bottom:139.018667pt;}
.y73{bottom:139.045333pt;}
.y155{bottom:139.077333pt;}
.ye6{bottom:139.104000pt;}
.y8b{bottom:139.114667pt;}
.y1c{bottom:150.568800pt;}
.y120{bottom:156.256000pt;}
.y15b{bottom:156.261333pt;}
.y33{bottom:156.298667pt;}
.y56{bottom:156.320000pt;}
.y9f{bottom:156.330533pt;}
.y13c{bottom:156.336000pt;}
.y108{bottom:156.346667pt;}
.y72{bottom:156.373333pt;}
.y154{bottom:156.405333pt;}
.ye5{bottom:156.432000pt;}
.y8a{bottom:156.442667pt;}
.y1b{bottom:167.896800pt;}
.y11f{bottom:173.584000pt;}
.y163{bottom:173.588000pt;}
.y15a{bottom:173.589333pt;}
.y32{bottom:173.626667pt;}
.y55{bottom:173.648000pt;}
.y9e{bottom:173.658533pt;}
.y13b{bottom:173.664000pt;}
.y107{bottom:173.674667pt;}
.y71{bottom:173.701333pt;}
.y153{bottom:173.733333pt;}
.ye4{bottom:173.760000pt;}
.y89{bottom:173.770667pt;}
.yf1{bottom:185.176800pt;}
.y1a{bottom:185.224800pt;}
.y11e{bottom:190.912000pt;}
.y159{bottom:190.917333pt;}
.y31{bottom:190.954667pt;}
.y54{bottom:190.976000pt;}
.y9d{bottom:190.986533pt;}
.y13a{bottom:190.992000pt;}
.y106{bottom:191.002667pt;}
.y70{bottom:191.029333pt;}
.y152{bottom:191.061333pt;}
.ye3{bottom:191.088000pt;}
.y88{bottom:191.098667pt;}
.yf0{bottom:202.504800pt;}
.y19{bottom:202.552800pt;}
.y158{bottom:208.245333pt;}
.y162{bottom:208.256000pt;}
.y30{bottom:208.282667pt;}
.y53{bottom:208.304000pt;}
.y9c{bottom:208.314533pt;}
.y139{bottom:208.320000pt;}
.y105{bottom:208.330667pt;}
.y6f{bottom:208.357333pt;}
.y151{bottom:208.389333pt;}
.ye2{bottom:208.416000pt;}
.y87{bottom:208.426667pt;}
.yef{bottom:219.832800pt;}
.y18{bottom:219.880800pt;}
.y11d{bottom:225.578667pt;}
.y161{bottom:225.584000pt;}
.y111{bottom:225.610667pt;}
.y52{bottom:225.632000pt;}
.y9b{bottom:225.642533pt;}
.y138{bottom:225.648000pt;}
.y104{bottom:225.658667pt;}
.y6e{bottom:225.685333pt;}
.y150{bottom:225.717333pt;}
.ye1{bottom:225.744000pt;}
.y86{bottom:225.754667pt;}
.yee{bottom:237.160800pt;}
.y17{bottom:237.208800pt;}
.y157{bottom:242.912000pt;}
.y110{bottom:242.938667pt;}
.y51{bottom:242.960000pt;}
.y9a{bottom:242.970533pt;}
.y137{bottom:242.976000pt;}
.y103{bottom:242.986667pt;}
.y6d{bottom:243.013333pt;}
.y14f{bottom:243.045333pt;}
.ye0{bottom:243.072000pt;}
.y85{bottom:243.082667pt;}
.yed{bottom:254.488800pt;}
.y16{bottom:254.536800pt;}
.y10f{bottom:260.266667pt;}
.y50{bottom:260.288000pt;}
.y99{bottom:260.298533pt;}
.y136{bottom:260.304000pt;}
.y102{bottom:260.314667pt;}
.y6c{bottom:260.341333pt;}
.y14e{bottom:260.373333pt;}
.ydf{bottom:260.400000pt;}
.y84{bottom:260.410667pt;}
.y38{bottom:265.852400pt;}
.yec{bottom:271.816800pt;}
.y15{bottom:271.864800pt;}
.y160{bottom:277.578667pt;}
.y10e{bottom:277.594667pt;}
.y4f{bottom:277.616000pt;}
.y98{bottom:277.626533pt;}
.y135{bottom:277.632000pt;}
.y101{bottom:277.642667pt;}
.yc3{bottom:277.658667pt;}
.y6b{bottom:277.669333pt;}
.y14d{bottom:277.701333pt;}
.yde{bottom:277.728000pt;}
.y83{bottom:277.738667pt;}
.yeb{bottom:289.144800pt;}
.y14{bottom:289.192800pt;}
.y10d{bottom:294.922667pt;}
.y4e{bottom:294.944000pt;}
.y97{bottom:294.954533pt;}
.y11c{bottom:294.954667pt;}
.y134{bottom:294.960000pt;}
.y100{bottom:294.970667pt;}
.yc2{bottom:294.986667pt;}
.y6a{bottom:294.997333pt;}
.y14c{bottom:295.029333pt;}
.ydd{bottom:295.056000pt;}
.y82{bottom:295.066667pt;}
.yea{bottom:306.472800pt;}
.y13{bottom:306.520800pt;}
.y10c{bottom:312.250667pt;}
.y4d{bottom:312.272000pt;}
.y96{bottom:312.282533pt;}
.y11b{bottom:312.282667pt;}
.y133{bottom:312.288000pt;}
.yff{bottom:312.298667pt;}
.yc1{bottom:312.314667pt;}
.y69{bottom:312.325333pt;}
.y14b{bottom:312.357333pt;}
.ydc{bottom:312.384000pt;}
.y81{bottom:312.394667pt;}
.ye9{bottom:323.800800pt;}
.y12{bottom:323.848800pt;}
.y4c{bottom:329.600000pt;}
.y95{bottom:329.610533pt;}
.y11a{bottom:329.610667pt;}
.y132{bottom:329.616000pt;}
.yfe{bottom:329.626667pt;}
.yc0{bottom:329.642667pt;}
.y68{bottom:329.653333pt;}
.y14a{bottom:329.685333pt;}
.ydb{bottom:329.712000pt;}
.y80{bottom:329.722667pt;}
.y11{bottom:341.176800pt;}
.y4b{bottom:346.928000pt;}
.y94{bottom:346.938533pt;}
.y119{bottom:346.938667pt;}
.y131{bottom:346.944000pt;}
.yfd{bottom:346.954667pt;}
.ybf{bottom:346.970667pt;}
.y67{bottom:346.981333pt;}
.y149{bottom:347.013333pt;}
.yda{bottom:347.040000pt;}
.y7f{bottom:347.050667pt;}
.ye8{bottom:358.467467pt;}
.y10{bottom:358.504800pt;}
.y4a{bottom:364.256000pt;}
.y93{bottom:364.266533pt;}
.y118{bottom:364.266667pt;}
.y130{bottom:364.272000pt;}
.yfc{bottom:364.282667pt;}
.ybe{bottom:364.298667pt;}
.y66{bottom:364.309333pt;}
.y148{bottom:364.341333pt;}
.yd9{bottom:364.368000pt;}
.y7e{bottom:364.378667pt;}
.yf{bottom:375.832800pt;}
.y49{bottom:381.584000pt;}
.y92{bottom:381.594533pt;}
.y117{bottom:381.594667pt;}
.y12f{bottom:381.600000pt;}
.yfb{bottom:381.610667pt;}
.ybd{bottom:381.626667pt;}
.y65{bottom:381.637333pt;}
.y147{bottom:381.669333pt;}
.yd8{bottom:381.696000pt;}
.y7d{bottom:381.706667pt;}
.ye{bottom:393.160800pt;}
.y48{bottom:398.912000pt;}
.y91{bottom:398.922533pt;}
.y116{bottom:398.922667pt;}
.y12e{bottom:398.928000pt;}
.yfa{bottom:398.938667pt;}
.ybc{bottom:398.954667pt;}
.y64{bottom:398.965333pt;}
.y146{bottom:398.997333pt;}
.yd7{bottom:399.024000pt;}
.y7c{bottom:399.034667pt;}
.yf3{bottom:408.418800pt;}
.yd{bottom:410.488800pt;}
.y90{bottom:416.250533pt;}
.y115{bottom:416.250667pt;}
.y12d{bottom:416.256000pt;}
.yf9{bottom:416.266667pt;}
.ybb{bottom:416.282667pt;}
.y63{bottom:416.293333pt;}
.y145{bottom:416.325333pt;}
.yd6{bottom:416.352000pt;}
.y7b{bottom:416.362667pt;}
.yf2{bottom:423.752800pt;}
.yc{bottom:427.816800pt;}
.y8f{bottom:433.578533pt;}
.y47{bottom:433.578667pt;}
.y12c{bottom:433.584000pt;}
.yf8{bottom:433.594667pt;}
.yba{bottom:433.610667pt;}
.y62{bottom:433.621333pt;}
.y144{bottom:433.653333pt;}
.yd5{bottom:433.680000pt;}
.y7a{bottom:433.690667pt;}
.yb{bottom:445.144800pt;}
.y12b{bottom:450.912000pt;}
.yf7{bottom:450.922667pt;}
.yb9{bottom:450.938667pt;}
.y61{bottom:450.949333pt;}
.y143{bottom:450.981333pt;}
.yd4{bottom:451.008000pt;}
.y79{bottom:451.018667pt;}
.ya{bottom:462.472800pt;}
.y114{bottom:468.245333pt;}
.yf6{bottom:468.250667pt;}
.yb8{bottom:468.266667pt;}
.y60{bottom:468.277333pt;}
.y142{bottom:468.309333pt;}
.yd3{bottom:468.336000pt;}
.y78{bottom:468.346667pt;}
.y9{bottom:479.800800pt;}
.yf5{bottom:485.578667pt;}
.yb7{bottom:485.594667pt;}
.y5f{bottom:485.605333pt;}
.y141{bottom:485.637333pt;}
.yd2{bottom:485.664000pt;}
.y77{bottom:485.674667pt;}
.ya6{bottom:488.412800pt;}
.yb6{bottom:502.922667pt;}
.y5e{bottom:502.933333pt;}
.y140{bottom:502.965333pt;}
.yd1{bottom:502.992000pt;}
.y46{bottom:503.002667pt;}
.ya5{bottom:503.746800pt;}
.y8{bottom:514.467467pt;}
.ya4{bottom:519.080800pt;}
.yf4{bottom:520.245333pt;}
.yb5{bottom:520.250667pt;}
.y5d{bottom:520.261333pt;}
.y2f{bottom:520.282667pt;}
.y13f{bottom:520.293333pt;}
.yd0{bottom:520.320000pt;}
.y45{bottom:520.330667pt;}
.y5c{bottom:537.589333pt;}
.y2e{bottom:537.610667pt;}
.yb4{bottom:537.621333pt;}
.ycf{bottom:537.648000pt;}
.y44{bottom:537.658667pt;}
.y5b{bottom:554.917333pt;}
.y2d{bottom:554.938667pt;}
.y12a{bottom:554.944000pt;}
.yb3{bottom:554.949333pt;}
.yce{bottom:554.976000pt;}
.y43{bottom:554.986667pt;}
.y5a{bottom:572.245333pt;}
.y2c{bottom:572.266667pt;}
.y129{bottom:572.272000pt;}
.yb2{bottom:572.277333pt;}
.ycd{bottom:572.304000pt;}
.y42{bottom:572.314667pt;}
.y7{bottom:583.797467pt;}
.y2b{bottom:589.594667pt;}
.y128{bottom:589.600000pt;}
.yb1{bottom:589.605333pt;}
.ycc{bottom:589.632000pt;}
.y41{bottom:589.642667pt;}
.y6{bottom:603.797467pt;}
.y59{bottom:606.912000pt;}
.y2a{bottom:606.922667pt;}
.y127{bottom:606.928000pt;}
.yb0{bottom:606.933333pt;}
.ycb{bottom:606.960000pt;}
.y40{bottom:606.970667pt;}
.y5{bottom:618.467467pt;}
.y29{bottom:624.250667pt;}
.y126{bottom:624.256000pt;}
.yaf{bottom:624.261333pt;}
.yca{bottom:624.288000pt;}
.y3f{bottom:624.298667pt;}
.y28{bottom:641.578667pt;}
.y125{bottom:641.584000pt;}
.yae{bottom:641.589333pt;}
.yc9{bottom:641.616000pt;}
.y3e{bottom:641.626667pt;}
.y124{bottom:658.912000pt;}
.yad{bottom:658.917333pt;}
.yc8{bottom:658.944000pt;}
.y3d{bottom:658.954667pt;}
.y27{bottom:676.245333pt;}
.yac{bottom:676.272000pt;}
.y3c{bottom:676.282667pt;}
.y123{bottom:693.578667pt;}
.yab{bottom:693.600000pt;}
.y3b{bottom:693.610667pt;}
.yaa{bottom:710.928000pt;}
.y3a{bottom:710.938667pt;}
.y4{bottom:716.689733pt;}
.ya9{bottom:728.256000pt;}
.y39{bottom:728.266667pt;}
.y3{bottom:745.578667pt;}
.ya8{bottom:745.584000pt;}
.y26{bottom:745.594667pt;}
.ya7{bottom:762.912000pt;}
.y25{bottom:762.922667pt;}
.y24{bottom:780.250667pt;}
.y2{bottom:797.578667pt;}
.y23{bottom:841.952800pt;}
.ha{height:28.720000pt;}
.h2{height:31.824000pt;}
.hb{height:32.549333pt;}
.h6{height:33.696000pt;}
.h5{height:35.858493pt;}
.hc{height:36.960000pt;}
.h7{height:37.240000pt;}
.h9{height:44.688000pt;}
.h8{height:45.952000pt;}
.h4{height:52.416000pt;}
.h3{height:74.880000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:634.666667pt;}
.w0{width:634.960000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x3{left:86.929200pt;}
.x4{left:89.653067pt;}
.x6{left:98.270533pt;}
.x5{left:103.934533pt;}
.x7{left:475.097067pt;}
.x1{left:570.708667pt;}
}




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