
    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_e11cad6a415c5d66c9f3260d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_f8e9d41f20085dad8ba6e0b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_5b77c8aaab7acde01acfe91b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_e6b8244b978329a603ee8868.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws17{word-spacing:-55.944000px;}
.ws71{word-spacing:-38.871000px;}
.wsbd{word-spacing:-38.863800px;}
.wsc5{word-spacing:-38.660400px;}
.ws9{word-spacing:-38.659500px;}
.ws6{word-spacing:-38.657700px;}
.ws87{word-spacing:-38.656500px;}
.wsb{word-spacing:-38.653200px;}
.wsc{word-spacing:-38.649600px;}
.ws5{word-spacing:-38.647800px;}
.wsbf{word-spacing:-38.647200px;}
.ws1a{word-spacing:-38.440800px;}
.ws52{word-spacing:-38.437200px;}
.ws75{word-spacing:-38.435400px;}
.wsd{word-spacing:-38.435100px;}
.ws73{word-spacing:-38.434500px;}
.ws81{word-spacing:-38.430000px;}
.ws3{word-spacing:-38.374200px;}
.ws4d{word-spacing:-38.160000px;}
.ws83{word-spacing:-38.158800px;}
.wsa{word-spacing:-38.157300px;}
.ws31{word-spacing:-38.145600px;}
.ws72{word-spacing:-38.140200px;}
.ws94{word-spacing:-38.127600px;}
.ws0{word-spacing:-37.944000px;}
.ws4{word-spacing:-37.938600px;}
.wsc7{word-spacing:-37.936800px;}
.ws82{word-spacing:-37.934100px;}
.ws76{word-spacing:-37.932600px;}
.ws74{word-spacing:-37.931700px;}
.ws2{word-spacing:-37.931400px;}
.wsc9{word-spacing:-37.926900px;}
.ws85{word-spacing:-37.921500px;}
.ws84{word-spacing:-37.921200px;}
.wsc1{word-spacing:-37.728000px;}
.ws86{word-spacing:-37.720800px;}
.ws15{word-spacing:-37.719900px;}
.ws45{word-spacing:-37.717800px;}
.ws56{word-spacing:-37.717200px;}
.ws27{word-spacing:-37.568700px;}
.wsab{word-spacing:-37.440000px;}
.ws47{word-spacing:-37.428600px;}
.wsaf{word-spacing:-37.427400px;}
.ws9f{word-spacing:-37.000800px;}
.ws8d{word-spacing:-36.999000px;}
.ws50{word-spacing:-36.726000px;}
.ws40{word-spacing:-36.720000px;}
.ws61{word-spacing:-36.504600px;}
.wsbc{word-spacing:-36.496800px;}
.wsa5{word-spacing:-36.491400px;}
.ws55{word-spacing:-36.000000px;}
.ws1f{word-spacing:-35.784000px;}
.ws4c{word-spacing:-35.780400px;}
.ws1b{word-spacing:-35.764200px;}
.ws10{word-spacing:-35.760600px;}
.ws1c{word-spacing:-35.276400px;}
.wsba{word-spacing:-35.053200px;}
.ws88{word-spacing:-35.040600px;}
.ws60{word-spacing:-34.835400px;}
.ws13{word-spacing:-34.566000px;}
.ws18{word-spacing:-34.551900px;}
.ws79{word-spacing:-34.549800px;}
.ws19{word-spacing:-34.344000px;}
.ws9b{word-spacing:-34.339200px;}
.ws6c{word-spacing:-34.336800px;}
.ws80{word-spacing:-34.111800px;}
.wsbb{word-spacing:-34.110000px;}
.ws8{word-spacing:-33.547800px;}
.ws8c{word-spacing:-33.400800px;}
.ws8b{word-spacing:-33.116400px;}
.wsc0{word-spacing:-33.116100px;}
.ws99{word-spacing:-33.114600px;}
.ws34{word-spacing:-32.904000px;}
.ws70{word-spacing:-32.900400px;}
.ws41{word-spacing:-32.893200px;}
.wsaa{word-spacing:-32.892000px;}
.ws33{word-spacing:-32.889600px;}
.ws9a{word-spacing:-32.686200px;}
.ws14{word-spacing:-32.400000px;}
.ws43{word-spacing:-32.394600px;}
.ws32{word-spacing:-32.184000px;}
.wsc3{word-spacing:-32.175900px;}
.wsa4{word-spacing:-31.965000px;}
.ws3e{word-spacing:-31.961400px;}
.ws48{word-spacing:-31.470000px;}
.wsc8{word-spacing:-31.462200px;}
.ws5a{word-spacing:-31.456800px;}
.ws7d{word-spacing:-31.453200px;}
.ws7b{word-spacing:-31.230000px;}
.ws9e{word-spacing:-30.966000px;}
.ws37{word-spacing:-30.744000px;}
.ws5e{word-spacing:-30.733200px;}
.ws22{word-spacing:-30.731400px;}
.ws2c{word-spacing:-30.518100px;}
.ws5f{word-spacing:-30.240000px;}
.ws2b{word-spacing:-30.225600px;}
.ws8e{word-spacing:-30.007800px;}
.wsb6{word-spacing:-29.805000px;}
.wsf{word-spacing:-29.308200px;}
.ws46{word-spacing:-29.304000px;}
.ws5d{word-spacing:-29.300400px;}
.wse{word-spacing:-28.800000px;}
.wsa0{word-spacing:-28.590000px;}
.ws3d{word-spacing:-28.587300px;}
.ws3b{word-spacing:-27.864000px;}
.ws65{word-spacing:-27.631800px;}
.ws42{word-spacing:-27.140400px;}
.ws3c{word-spacing:-27.139200px;}
.ws77{word-spacing:-27.135900px;}
.ws98{word-spacing:-27.135600px;}
.ws1d{word-spacing:-27.063000px;}
.ws68{word-spacing:-26.413200px;}
.ws49{word-spacing:-26.200800px;}
.ws11{word-spacing:-25.920000px;}
.wsb9{word-spacing:-25.911000px;}
.ws7f{word-spacing:-25.704000px;}
.ws69{word-spacing:-25.484400px;}
.ws97{word-spacing:-25.480800px;}
.ws5b{word-spacing:-24.990000px;}
.wsac{word-spacing:-24.982800px;}
.ws66{word-spacing:-24.980400px;}
.ws51{word-spacing:-24.978600px;}
.ws12{word-spacing:-24.757200px;}
.ws7e{word-spacing:-24.264000px;}
.wsa2{word-spacing:-24.262200px;}
.ws6f{word-spacing:-24.037200px;}
.ws20{word-spacing:-23.766000px;}
.wsb7{word-spacing:-23.760000px;}
.ws95{word-spacing:-23.750100px;}
.ws91{word-spacing:-23.740200px;}
.ws35{word-spacing:-23.544000px;}
.ws96{word-spacing:-23.541900px;}
.ws3a{word-spacing:-23.314800px;}
.ws26{word-spacing:-23.169900px;}
.ws25{word-spacing:-22.824000px;}
.wsc4{word-spacing:-22.100400px;}
.ws24{word-spacing:-22.095900px;}
.ws39{word-spacing:-22.095600px;}
.ws6d{word-spacing:-22.090200px;}
.ws23{word-spacing:-22.088100px;}
.wsb1{word-spacing:-22.077000px;}
.ws54{word-spacing:-21.885900px;}
.wsa1{word-spacing:-21.600600px;}
.ws30{word-spacing:-21.579300px;}
.ws53{word-spacing:-21.390000px;}
.ws1e{word-spacing:-21.376800px;}
.ws6b{word-spacing:-21.373200px;}
.ws8a{word-spacing:-21.364200px;}
.wsb4{word-spacing:-21.148200px;}
.ws2f{word-spacing:-20.861100px;}
.ws3f{word-spacing:-20.664000px;}
.ws6a{word-spacing:-20.660400px;}
.ws36{word-spacing:-19.944000px;}
.ws7c{word-spacing:-19.433400px;}
.ws92{word-spacing:-18.720000px;}
.wsa6{word-spacing:-18.486000px;}
.ws7{word-spacing:-18.472500px;}
.ws5c{word-spacing:-18.279900px;}
.wsb5{word-spacing:-17.771400px;}
.ws2a{word-spacing:-16.344000px;}
.ws9c{word-spacing:-16.337400px;}
.ws89{word-spacing:-16.324200px;}
.wsc6{word-spacing:-15.630000px;}
.ws21{word-spacing:-15.617400px;}
.ws7a{word-spacing:-15.613200px;}
.wsc2{word-spacing:-14.900100px;}
.wsa8{word-spacing:-14.896800px;}
.ws67{word-spacing:-14.891400px;}
.ws16{word-spacing:-13.951800px;}
.ws4f{word-spacing:-13.240800px;}
.ws4e{word-spacing:-12.744000px;}
.wsa7{word-spacing:-12.520800px;}
.ws59{word-spacing:-12.024000px;}
.ws63{word-spacing:-11.796000px;}
.wsa9{word-spacing:-10.575000px;}
.ws64{word-spacing:-9.347400px;}
.ws57{word-spacing:-9.144000px;}
.ws29{word-spacing:-9.118200px;}
.ws6e{word-spacing:-8.926800px;}
.ws4a{word-spacing:-8.917200px;}
.ws8f{word-spacing:-8.203200px;}
.wsb8{word-spacing:-7.477200px;}
.ws90{word-spacing:-7.200000px;}
.wsae{word-spacing:-6.757200px;}
.ws44{word-spacing:-6.750000px;}
.wsb3{word-spacing:-6.447600px;}
.ws4b{word-spacing:-5.544000px;}
.wsb2{word-spacing:-4.820400px;}
.ws78{word-spacing:-4.102800px;}
.ws62{word-spacing:-1.226400px;}
.wsad{word-spacing:0.000000px;}
.ws9d{word-spacing:0.720000px;}
.wsbe{word-spacing:0.945000px;}
.ws28{word-spacing:2.164500px;}
.ws38{word-spacing:8.856000px;}
.ws58{word-spacing:11.959200px;}
.wsa3{word-spacing:14.132700px;}
.ws93{word-spacing:28.528200px;}
.ws2d{word-spacing:54.297900px;}
.ws2e{word-spacing:76.547700px;}
.wsb0{word-spacing:319.182000px;}
.ws1{word-spacing:455.092800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._17{width:2.186400px;}
._4{width:18.775800px;}
._a{width:19.880100px;}
._5{width:21.357600px;}
._8{width:23.340000px;}
._9{width:24.691200px;}
._16{width:25.705200px;}
._f{width:26.843400px;}
._15{width:28.509300px;}
._c{width:29.958600px;}
._6{width:31.353600px;}
._7{width:32.511600px;}
._d{width:33.956400px;}
._26{width:34.972800px;}
._1{width:36.000000px;}
._14{width:37.312800px;}
._1d{width:38.943900px;}
._12{width:40.746000px;}
._e{width:41.825400px;}
._b{width:43.361400px;}
._1a{width:44.568600px;}
._1f{width:45.708000px;}
._25{width:46.768800px;}
._11{width:47.946000px;}
._21{width:49.088400px;}
._18{width:50.238000px;}
._19{width:51.513600px;}
._20{width:52.984800px;}
._1e{width:56.594400px;}
._23{width:57.672000px;}
._10{width:59.539500px;}
._1b{width:69.048000px;}
._1c{width:70.156800px;}
._24{width:71.259300px;}
._22{width:86.239800px;}
._13{width:133.770000px;}
._27{width:158.400000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y63{bottom:5.640000px;}
.y5f{bottom:5.700000px;}
.y61{bottom:5.761500px;}
.y79{bottom:6.465000px;}
.y66{bottom:6.586500px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2e{bottom:100.696500px;}
.y5b{bottom:103.215000px;}
.y9d{bottom:110.055000px;}
.y2d{bottom:121.396500px;}
.y5a{bottom:123.915000px;}
.y9c{bottom:130.755000px;}
.y73{bottom:131.115000px;}
.y59{bottom:144.615000px;}
.y9b{bottom:151.455000px;}
.y72{bottom:151.815000px;}
.y2c{bottom:162.975000px;}
.y58{bottom:165.315000px;}
.y9a{bottom:172.155000px;}
.y71{bottom:172.515000px;}
.y2b{bottom:183.675000px;}
.y57{bottom:185.836500px;}
.y99{bottom:192.855000px;}
.y70{bottom:193.215000px;}
.y2a{bottom:204.375000px;}
.y98{bottom:213.555000px;}
.y6f{bottom:213.915000px;}
.y29{bottom:225.075000px;}
.y56{bottom:227.596500px;}
.y97{bottom:234.255000px;}
.y6e{bottom:234.615000px;}
.y28{bottom:245.775000px;}
.y55{bottom:248.295000px;}
.y96{bottom:254.955000px;}
.y6d{bottom:255.315000px;}
.y27{bottom:266.475000px;}
.y54{bottom:268.996500px;}
.y95{bottom:275.655000px;}
.y6c{bottom:276.015000px;}
.y26{bottom:287.175000px;}
.y53{bottom:289.696500px;}
.y94{bottom:296.355000px;}
.y6b{bottom:296.715000px;}
.y25{bottom:307.875000px;}
.y52{bottom:310.396500px;}
.y93{bottom:317.055000px;}
.y6a{bottom:317.415000px;}
.y24{bottom:328.575000px;}
.y51{bottom:331.096500px;}
.y92{bottom:337.755000px;}
.y69{bottom:338.115000px;}
.y23{bottom:349.275000px;}
.y50{bottom:351.795000px;}
.y91{bottom:358.455000px;}
.y68{bottom:358.815000px;}
.y4f{bottom:372.496500px;}
.y90{bottom:379.155000px;}
.y67{bottom:379.515000px;}
.y22{bottom:391.036500px;}
.y4e{bottom:393.196500px;}
.y8f{bottom:399.855000px;}
.y21{bottom:411.736500px;}
.yb9{bottom:413.175000px;}
.y65{bottom:419.550000px;}
.y8e{bottom:420.555000px;}
.yb8{bottom:433.875000px;}
.y4d{bottom:434.775000px;}
.y8d{bottom:441.255000px;}
.y64{bottom:447.075000px;}
.y20{bottom:453.496500px;}
.yb7{bottom:454.575000px;}
.y4c{bottom:455.475000px;}
.y8c{bottom:461.955000px;}
.y62{bottom:473.775000px;}
.y1f{bottom:474.196500px;}
.yb6{bottom:475.275000px;}
.y4b{bottom:476.175000px;}
.y8b{bottom:482.655000px;}
.y1e{bottom:494.896500px;}
.yb5{bottom:495.975000px;}
.y4a{bottom:496.875000px;}
.y60{bottom:500.475000px;}
.y8a{bottom:503.355000px;}
.y1d{bottom:515.596500px;}
.yb4{bottom:516.675000px;}
.y49{bottom:517.575000px;}
.y89{bottom:524.055000px;}
.y5e{bottom:527.175000px;}
.y1c{bottom:536.296500px;}
.yb3{bottom:537.375000px;}
.y48{bottom:538.275000px;}
.y88{bottom:544.755000px;}
.y1b{bottom:556.996500px;}
.yb2{bottom:558.075000px;}
.y47{bottom:558.975000px;}
.y87{bottom:565.455000px;}
.y1a{bottom:577.695000px;}
.yb1{bottom:578.775000px;}
.y5d{bottom:579.496500px;}
.y46{bottom:579.675000px;}
.y19{bottom:598.396500px;}
.yb0{bottom:599.475000px;}
.y5c{bottom:600.195000px;}
.y45{bottom:600.375000px;}
.y86{bottom:607.215000px;}
.yaf{bottom:620.175000px;}
.y44{bottom:621.075000px;}
.y85{bottom:627.915000px;}
.y18{bottom:639.975000px;}
.yae{bottom:640.875000px;}
.y43{bottom:641.775000px;}
.y84{bottom:648.615000px;}
.y17{bottom:660.675000px;}
.yad{bottom:661.575000px;}
.y42{bottom:662.475000px;}
.y83{bottom:669.315000px;}
.yac{bottom:682.275000px;}
.y41{bottom:683.175000px;}
.y82{bottom:690.015000px;}
.y16{bottom:702.436500px;}
.y40{bottom:703.875000px;}
.y81{bottom:710.715000px;}
.y15{bottom:723.136500px;}
.yab{bottom:724.036500px;}
.y3f{bottom:724.575000px;}
.y80{bottom:731.415000px;}
.y14{bottom:743.836500px;}
.y3e{bottom:745.275000px;}
.y7f{bottom:752.115000px;}
.y13{bottom:764.536500px;}
.yaa{bottom:765.795000px;}
.y3d{bottom:765.975000px;}
.y7e{bottom:772.815000px;}
.y12{bottom:785.236500px;}
.ya9{bottom:786.496500px;}
.y3c{bottom:786.675000px;}
.y7d{bottom:793.515000px;}
.y11{bottom:805.936500px;}
.ya8{bottom:807.195000px;}
.y3b{bottom:807.375000px;}
.y7c{bottom:814.215000px;}
.y10{bottom:826.636500px;}
.ya7{bottom:827.895000px;}
.y3a{bottom:828.075000px;}
.y7b{bottom:834.915000px;}
.yf{bottom:847.336500px;}
.ya6{bottom:848.596500px;}
.y39{bottom:848.775000px;}
.y7a{bottom:855.615000px;}
.ye{bottom:868.036500px;}
.ya5{bottom:869.295000px;}
.y38{bottom:869.475000px;}
.ya4{bottom:889.995000px;}
.y37{bottom:890.175000px;}
.yd{bottom:909.795000px;}
.ya3{bottom:910.695000px;}
.y36{bottom:910.875000px;}
.ya2{bottom:931.395000px;}
.y35{bottom:931.575000px;}
.y78{bottom:937.350000px;}
.yc{bottom:951.375000px;}
.ya1{bottom:952.095000px;}
.y34{bottom:952.275000px;}
.y77{bottom:964.875000px;}
.ya0{bottom:972.795000px;}
.y33{bottom:972.975000px;}
.y76{bottom:991.575000px;}
.yb{bottom:993.136500px;}
.y9f{bottom:993.495000px;}
.y32{bottom:993.675000px;}
.y9e{bottom:1014.195000px;}
.y31{bottom:1014.375000px;}
.y75{bottom:1018.275000px;}
.ya{bottom:1034.895000px;}
.y30{bottom:1035.075000px;}
.y74{bottom:1044.975000px;}
.y2f{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h7{height:24.375000px;}
.h6{height:25.125000px;}
.h8{height:25.200000px;}
.h3{height:45.095654px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w5{width:141.825000px;}
.w4{width:148.800000px;}
.w7{width:197.325000px;}
.w8{width:200.325000px;}
.w6{width:225.750000px;}
.w3{width:296.775000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.920000px;}
.xb{left:125.700000px;}
.x1{left:127.620000px;}
.xa{left:132.120000px;}
.x4{left:162.900000px;}
.x5{left:270.360000px;}
.xf{left:353.625000px;}
.x7{left:378.720000px;}
.xd{left:424.650000px;}
.x3{left:461.625000px;}
.x8{left:540.720000px;}
.x9{left:549.720000px;}
.x10{left:553.125000px;}
.xe{left:575.625000px;}
.x6{left:596.160000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws17{word-spacing:-49.728000pt;}
.ws71{word-spacing:-34.552000pt;}
.wsbd{word-spacing:-34.545600pt;}
.wsc5{word-spacing:-34.364800pt;}
.ws9{word-spacing:-34.364000pt;}
.ws6{word-spacing:-34.362400pt;}
.ws87{word-spacing:-34.361333pt;}
.wsb{word-spacing:-34.358400pt;}
.wsc{word-spacing:-34.355200pt;}
.ws5{word-spacing:-34.353600pt;}
.wsbf{word-spacing:-34.353067pt;}
.ws1a{word-spacing:-34.169600pt;}
.ws52{word-spacing:-34.166400pt;}
.ws75{word-spacing:-34.164800pt;}
.wsd{word-spacing:-34.164533pt;}
.ws73{word-spacing:-34.164000pt;}
.ws81{word-spacing:-34.160000pt;}
.ws3{word-spacing:-34.110400pt;}
.ws4d{word-spacing:-33.920000pt;}
.ws83{word-spacing:-33.918933pt;}
.wsa{word-spacing:-33.917600pt;}
.ws31{word-spacing:-33.907200pt;}
.ws72{word-spacing:-33.902400pt;}
.ws94{word-spacing:-33.891200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws4{word-spacing:-33.723200pt;}
.wsc7{word-spacing:-33.721600pt;}
.ws82{word-spacing:-33.719200pt;}
.ws76{word-spacing:-33.717867pt;}
.ws74{word-spacing:-33.717067pt;}
.ws2{word-spacing:-33.716800pt;}
.wsc9{word-spacing:-33.712800pt;}
.ws85{word-spacing:-33.708000pt;}
.ws84{word-spacing:-33.707733pt;}
.wsc1{word-spacing:-33.536000pt;}
.ws86{word-spacing:-33.529600pt;}
.ws15{word-spacing:-33.528800pt;}
.ws45{word-spacing:-33.526933pt;}
.ws56{word-spacing:-33.526400pt;}
.ws27{word-spacing:-33.394400pt;}
.wsab{word-spacing:-33.280000pt;}
.ws47{word-spacing:-33.269867pt;}
.wsaf{word-spacing:-33.268800pt;}
.ws9f{word-spacing:-32.889600pt;}
.ws8d{word-spacing:-32.888000pt;}
.ws50{word-spacing:-32.645333pt;}
.ws40{word-spacing:-32.640000pt;}
.ws61{word-spacing:-32.448533pt;}
.wsbc{word-spacing:-32.441600pt;}
.wsa5{word-spacing:-32.436800pt;}
.ws55{word-spacing:-32.000000pt;}
.ws1f{word-spacing:-31.808000pt;}
.ws4c{word-spacing:-31.804800pt;}
.ws1b{word-spacing:-31.790400pt;}
.ws10{word-spacing:-31.787200pt;}
.ws1c{word-spacing:-31.356800pt;}
.wsba{word-spacing:-31.158400pt;}
.ws88{word-spacing:-31.147200pt;}
.ws60{word-spacing:-30.964800pt;}
.ws13{word-spacing:-30.725333pt;}
.ws18{word-spacing:-30.712800pt;}
.ws79{word-spacing:-30.710933pt;}
.ws19{word-spacing:-30.528000pt;}
.ws9b{word-spacing:-30.523733pt;}
.ws6c{word-spacing:-30.521600pt;}
.ws80{word-spacing:-30.321600pt;}
.wsbb{word-spacing:-30.320000pt;}
.ws8{word-spacing:-29.820267pt;}
.ws8c{word-spacing:-29.689600pt;}
.ws8b{word-spacing:-29.436800pt;}
.wsc0{word-spacing:-29.436533pt;}
.ws99{word-spacing:-29.435200pt;}
.ws34{word-spacing:-29.248000pt;}
.ws70{word-spacing:-29.244800pt;}
.ws41{word-spacing:-29.238400pt;}
.wsaa{word-spacing:-29.237333pt;}
.ws33{word-spacing:-29.235200pt;}
.ws9a{word-spacing:-29.054400pt;}
.ws14{word-spacing:-28.800000pt;}
.ws43{word-spacing:-28.795200pt;}
.ws32{word-spacing:-28.608000pt;}
.wsc3{word-spacing:-28.600800pt;}
.wsa4{word-spacing:-28.413333pt;}
.ws3e{word-spacing:-28.410133pt;}
.ws48{word-spacing:-27.973333pt;}
.wsc8{word-spacing:-27.966400pt;}
.ws5a{word-spacing:-27.961600pt;}
.ws7d{word-spacing:-27.958400pt;}
.ws7b{word-spacing:-27.760000pt;}
.ws9e{word-spacing:-27.525333pt;}
.ws37{word-spacing:-27.328000pt;}
.ws5e{word-spacing:-27.318400pt;}
.ws22{word-spacing:-27.316800pt;}
.ws2c{word-spacing:-27.127200pt;}
.ws5f{word-spacing:-26.880000pt;}
.ws2b{word-spacing:-26.867200pt;}
.ws8e{word-spacing:-26.673600pt;}
.wsb6{word-spacing:-26.493333pt;}
.wsf{word-spacing:-26.051733pt;}
.ws46{word-spacing:-26.048000pt;}
.ws5d{word-spacing:-26.044800pt;}
.wse{word-spacing:-25.600000pt;}
.wsa0{word-spacing:-25.413333pt;}
.ws3d{word-spacing:-25.410933pt;}
.ws3b{word-spacing:-24.768000pt;}
.ws65{word-spacing:-24.561600pt;}
.ws42{word-spacing:-24.124800pt;}
.ws3c{word-spacing:-24.123733pt;}
.ws77{word-spacing:-24.120800pt;}
.ws98{word-spacing:-24.120533pt;}
.ws1d{word-spacing:-24.056000pt;}
.ws68{word-spacing:-23.478400pt;}
.ws49{word-spacing:-23.289600pt;}
.ws11{word-spacing:-23.040000pt;}
.wsb9{word-spacing:-23.032000pt;}
.ws7f{word-spacing:-22.848000pt;}
.ws69{word-spacing:-22.652800pt;}
.ws97{word-spacing:-22.649600pt;}
.ws5b{word-spacing:-22.213333pt;}
.wsac{word-spacing:-22.206933pt;}
.ws66{word-spacing:-22.204800pt;}
.ws51{word-spacing:-22.203200pt;}
.ws12{word-spacing:-22.006400pt;}
.ws7e{word-spacing:-21.568000pt;}
.wsa2{word-spacing:-21.566400pt;}
.ws6f{word-spacing:-21.366400pt;}
.ws20{word-spacing:-21.125333pt;}
.wsb7{word-spacing:-21.120000pt;}
.ws95{word-spacing:-21.111200pt;}
.ws91{word-spacing:-21.102400pt;}
.ws35{word-spacing:-20.928000pt;}
.ws96{word-spacing:-20.926133pt;}
.ws3a{word-spacing:-20.724267pt;}
.ws26{word-spacing:-20.595467pt;}
.ws25{word-spacing:-20.288000pt;}
.wsc4{word-spacing:-19.644800pt;}
.ws24{word-spacing:-19.640800pt;}
.ws39{word-spacing:-19.640533pt;}
.ws6d{word-spacing:-19.635733pt;}
.ws23{word-spacing:-19.633867pt;}
.wsb1{word-spacing:-19.624000pt;}
.ws54{word-spacing:-19.454133pt;}
.wsa1{word-spacing:-19.200533pt;}
.ws30{word-spacing:-19.181600pt;}
.ws53{word-spacing:-19.013333pt;}
.ws1e{word-spacing:-19.001600pt;}
.ws6b{word-spacing:-18.998400pt;}
.ws8a{word-spacing:-18.990400pt;}
.wsb4{word-spacing:-18.798400pt;}
.ws2f{word-spacing:-18.543200pt;}
.ws3f{word-spacing:-18.368000pt;}
.ws6a{word-spacing:-18.364800pt;}
.ws36{word-spacing:-17.728000pt;}
.ws7c{word-spacing:-17.274133pt;}
.ws92{word-spacing:-16.640000pt;}
.wsa6{word-spacing:-16.432000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws5c{word-spacing:-16.248800pt;}
.wsb5{word-spacing:-15.796800pt;}
.ws2a{word-spacing:-14.528000pt;}
.ws9c{word-spacing:-14.522133pt;}
.ws89{word-spacing:-14.510400pt;}
.wsc6{word-spacing:-13.893333pt;}
.ws21{word-spacing:-13.882133pt;}
.ws7a{word-spacing:-13.878400pt;}
.wsc2{word-spacing:-13.244533pt;}
.wsa8{word-spacing:-13.241600pt;}
.ws67{word-spacing:-13.236800pt;}
.ws16{word-spacing:-12.401600pt;}
.ws4f{word-spacing:-11.769600pt;}
.ws4e{word-spacing:-11.328000pt;}
.wsa7{word-spacing:-11.129600pt;}
.ws59{word-spacing:-10.688000pt;}
.ws63{word-spacing:-10.485333pt;}
.wsa9{word-spacing:-9.400000pt;}
.ws64{word-spacing:-8.308800pt;}
.ws57{word-spacing:-8.128000pt;}
.ws29{word-spacing:-8.105067pt;}
.ws6e{word-spacing:-7.934933pt;}
.ws4a{word-spacing:-7.926400pt;}
.ws8f{word-spacing:-7.291733pt;}
.wsb8{word-spacing:-6.646400pt;}
.ws90{word-spacing:-6.400000pt;}
.wsae{word-spacing:-6.006400pt;}
.ws44{word-spacing:-6.000000pt;}
.wsb3{word-spacing:-5.731200pt;}
.ws4b{word-spacing:-4.928000pt;}
.wsb2{word-spacing:-4.284800pt;}
.ws78{word-spacing:-3.646933pt;}
.ws62{word-spacing:-1.090133pt;}
.wsad{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.640000pt;}
.wsbe{word-spacing:0.840000pt;}
.ws28{word-spacing:1.924000pt;}
.ws38{word-spacing:7.872000pt;}
.ws58{word-spacing:10.630400pt;}
.wsa3{word-spacing:12.562400pt;}
.ws93{word-spacing:25.358400pt;}
.ws2d{word-spacing:48.264800pt;}
.ws2e{word-spacing:68.042400pt;}
.wsb0{word-spacing:283.717333pt;}
.ws1{word-spacing:404.526933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._17{width:1.943467pt;}
._4{width:16.689600pt;}
._a{width:17.671200pt;}
._5{width:18.984533pt;}
._8{width:20.746667pt;}
._9{width:21.947733pt;}
._16{width:22.849067pt;}
._f{width:23.860800pt;}
._15{width:25.341600pt;}
._c{width:26.629867pt;}
._6{width:27.869867pt;}
._7{width:28.899200pt;}
._d{width:30.183467pt;}
._26{width:31.086933pt;}
._1{width:32.000000pt;}
._14{width:33.166933pt;}
._1d{width:34.616800pt;}
._12{width:36.218667pt;}
._e{width:37.178133pt;}
._b{width:38.543467pt;}
._1a{width:39.616533pt;}
._1f{width:40.629333pt;}
._25{width:41.572267pt;}
._11{width:42.618667pt;}
._21{width:43.634133pt;}
._18{width:44.656000pt;}
._19{width:45.789867pt;}
._20{width:47.097600pt;}
._1e{width:50.306133pt;}
._23{width:51.264000pt;}
._10{width:52.924000pt;}
._1b{width:61.376000pt;}
._1c{width:62.361600pt;}
._24{width:63.341600pt;}
._22{width:76.657600pt;}
._13{width:118.906667pt;}
._27{width:140.800000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y63{bottom:5.013333pt;}
.y5f{bottom:5.066667pt;}
.y61{bottom:5.121333pt;}
.y79{bottom:5.746667pt;}
.y66{bottom:5.854667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2e{bottom:89.508000pt;}
.y5b{bottom:91.746667pt;}
.y9d{bottom:97.826667pt;}
.y2d{bottom:107.908000pt;}
.y5a{bottom:110.146667pt;}
.y9c{bottom:116.226667pt;}
.y73{bottom:116.546667pt;}
.y59{bottom:128.546667pt;}
.y9b{bottom:134.626667pt;}
.y72{bottom:134.946667pt;}
.y2c{bottom:144.866667pt;}
.y58{bottom:146.946667pt;}
.y9a{bottom:153.026667pt;}
.y71{bottom:153.346667pt;}
.y2b{bottom:163.266667pt;}
.y57{bottom:165.188000pt;}
.y99{bottom:171.426667pt;}
.y70{bottom:171.746667pt;}
.y2a{bottom:181.666667pt;}
.y98{bottom:189.826667pt;}
.y6f{bottom:190.146667pt;}
.y29{bottom:200.066667pt;}
.y56{bottom:202.308000pt;}
.y97{bottom:208.226667pt;}
.y6e{bottom:208.546667pt;}
.y28{bottom:218.466667pt;}
.y55{bottom:220.706667pt;}
.y96{bottom:226.626667pt;}
.y6d{bottom:226.946667pt;}
.y27{bottom:236.866667pt;}
.y54{bottom:239.108000pt;}
.y95{bottom:245.026667pt;}
.y6c{bottom:245.346667pt;}
.y26{bottom:255.266667pt;}
.y53{bottom:257.508000pt;}
.y94{bottom:263.426667pt;}
.y6b{bottom:263.746667pt;}
.y25{bottom:273.666667pt;}
.y52{bottom:275.908000pt;}
.y93{bottom:281.826667pt;}
.y6a{bottom:282.146667pt;}
.y24{bottom:292.066667pt;}
.y51{bottom:294.308000pt;}
.y92{bottom:300.226667pt;}
.y69{bottom:300.546667pt;}
.y23{bottom:310.466667pt;}
.y50{bottom:312.706667pt;}
.y91{bottom:318.626667pt;}
.y68{bottom:318.946667pt;}
.y4f{bottom:331.108000pt;}
.y90{bottom:337.026667pt;}
.y67{bottom:337.346667pt;}
.y22{bottom:347.588000pt;}
.y4e{bottom:349.508000pt;}
.y8f{bottom:355.426667pt;}
.y21{bottom:365.988000pt;}
.yb9{bottom:367.266667pt;}
.y65{bottom:372.933333pt;}
.y8e{bottom:373.826667pt;}
.yb8{bottom:385.666667pt;}
.y4d{bottom:386.466667pt;}
.y8d{bottom:392.226667pt;}
.y64{bottom:397.400000pt;}
.y20{bottom:403.108000pt;}
.yb7{bottom:404.066667pt;}
.y4c{bottom:404.866667pt;}
.y8c{bottom:410.626667pt;}
.y62{bottom:421.133333pt;}
.y1f{bottom:421.508000pt;}
.yb6{bottom:422.466667pt;}
.y4b{bottom:423.266667pt;}
.y8b{bottom:429.026667pt;}
.y1e{bottom:439.908000pt;}
.yb5{bottom:440.866667pt;}
.y4a{bottom:441.666667pt;}
.y60{bottom:444.866667pt;}
.y8a{bottom:447.426667pt;}
.y1d{bottom:458.308000pt;}
.yb4{bottom:459.266667pt;}
.y49{bottom:460.066667pt;}
.y89{bottom:465.826667pt;}
.y5e{bottom:468.600000pt;}
.y1c{bottom:476.708000pt;}
.yb3{bottom:477.666667pt;}
.y48{bottom:478.466667pt;}
.y88{bottom:484.226667pt;}
.y1b{bottom:495.108000pt;}
.yb2{bottom:496.066667pt;}
.y47{bottom:496.866667pt;}
.y87{bottom:502.626667pt;}
.y1a{bottom:513.506667pt;}
.yb1{bottom:514.466667pt;}
.y5d{bottom:515.108000pt;}
.y46{bottom:515.266667pt;}
.y19{bottom:531.908000pt;}
.yb0{bottom:532.866667pt;}
.y5c{bottom:533.506667pt;}
.y45{bottom:533.666667pt;}
.y86{bottom:539.746667pt;}
.yaf{bottom:551.266667pt;}
.y44{bottom:552.066667pt;}
.y85{bottom:558.146667pt;}
.y18{bottom:568.866667pt;}
.yae{bottom:569.666667pt;}
.y43{bottom:570.466667pt;}
.y84{bottom:576.546667pt;}
.y17{bottom:587.266667pt;}
.yad{bottom:588.066667pt;}
.y42{bottom:588.866667pt;}
.y83{bottom:594.946667pt;}
.yac{bottom:606.466667pt;}
.y41{bottom:607.266667pt;}
.y82{bottom:613.346667pt;}
.y16{bottom:624.388000pt;}
.y40{bottom:625.666667pt;}
.y81{bottom:631.746667pt;}
.y15{bottom:642.788000pt;}
.yab{bottom:643.588000pt;}
.y3f{bottom:644.066667pt;}
.y80{bottom:650.146667pt;}
.y14{bottom:661.188000pt;}
.y3e{bottom:662.466667pt;}
.y7f{bottom:668.546667pt;}
.y13{bottom:679.588000pt;}
.yaa{bottom:680.706667pt;}
.y3d{bottom:680.866667pt;}
.y7e{bottom:686.946667pt;}
.y12{bottom:697.988000pt;}
.ya9{bottom:699.108000pt;}
.y3c{bottom:699.266667pt;}
.y7d{bottom:705.346667pt;}
.y11{bottom:716.388000pt;}
.ya8{bottom:717.506667pt;}
.y3b{bottom:717.666667pt;}
.y7c{bottom:723.746667pt;}
.y10{bottom:734.788000pt;}
.ya7{bottom:735.906667pt;}
.y3a{bottom:736.066667pt;}
.y7b{bottom:742.146667pt;}
.yf{bottom:753.188000pt;}
.ya6{bottom:754.308000pt;}
.y39{bottom:754.466667pt;}
.y7a{bottom:760.546667pt;}
.ye{bottom:771.588000pt;}
.ya5{bottom:772.706667pt;}
.y38{bottom:772.866667pt;}
.ya4{bottom:791.106667pt;}
.y37{bottom:791.266667pt;}
.yd{bottom:808.706667pt;}
.ya3{bottom:809.506667pt;}
.y36{bottom:809.666667pt;}
.ya2{bottom:827.906667pt;}
.y35{bottom:828.066667pt;}
.y78{bottom:833.200000pt;}
.yc{bottom:845.666667pt;}
.ya1{bottom:846.306667pt;}
.y34{bottom:846.466667pt;}
.y77{bottom:857.666667pt;}
.ya0{bottom:864.706667pt;}
.y33{bottom:864.866667pt;}
.y76{bottom:881.400000pt;}
.yb{bottom:882.788000pt;}
.y9f{bottom:883.106667pt;}
.y32{bottom:883.266667pt;}
.y9e{bottom:901.506667pt;}
.y31{bottom:901.666667pt;}
.y75{bottom:905.133333pt;}
.ya{bottom:919.906667pt;}
.y30{bottom:920.066667pt;}
.y74{bottom:928.866667pt;}
.y2f{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h7{height:21.666667pt;}
.h6{height:22.333333pt;}
.h8{height:22.400000pt;}
.h3{height:40.085026pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w5{width:126.066667pt;}
.w4{width:132.266667pt;}
.w7{width:175.400000pt;}
.w8{width:178.066667pt;}
.w6{width:200.666667pt;}
.w3{width:263.800000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.706667pt;}
.xb{left:111.733333pt;}
.x1{left:113.440000pt;}
.xa{left:117.440000pt;}
.x4{left:144.800000pt;}
.x5{left:240.320000pt;}
.xf{left:314.333333pt;}
.x7{left:336.640000pt;}
.xd{left:377.466667pt;}
.x3{left:410.333333pt;}
.x8{left:480.640000pt;}
.x9{left:488.640000pt;}
.x10{left:491.666667pt;}
.xe{left:511.666667pt;}
.x6{left:529.920000pt;}
.x2{left:649.920000pt;}
}




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