
    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_005083dc9bf3bfed88f89987.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_73a1349e0f072105d3377bf0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_95cd467d9250099e4f46c906.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_cc6a981800058e6df1963814.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_28646b57d8d391482d83aecf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c6be6b609e10d5e8f4d4a2c4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6dfe81e99335c0db8286360c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;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_0cc09962a4bfcd858c0b35ac.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d79a9d2d3253146b0c7a034d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a0d785fe2d39ad7a8705b1f4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f6fbe3187ef21a9c8bad6ca3.woff')format("woff");}.fff{font-family:fff;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v4{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:47.400000px;}
.ls1a{letter-spacing:-2.250000px;}
.lsb{letter-spacing:-1.128000px;}
.ls15{letter-spacing:-1.026000px;}
.lsc{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.454200px;}
.ls17{letter-spacing:-0.378000px;}
.ls1b{letter-spacing:-0.304200px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.810000px;}
.lse{letter-spacing:1.026000px;}
.ls13{letter-spacing:1.482000px;}
.ls14{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls4{letter-spacing:2.146500px;}
.ls6{letter-spacing:2.164500px;}
.ls1{letter-spacing:2.250000px;}
.ls7{letter-spacing:2.262000px;}
.ls9{letter-spacing:2.310000px;}
.ls11{letter-spacing:2.400000px;}
.ls12{letter-spacing:2.430000px;}
.ls0{letter-spacing:3.375000px;}
.ls8{letter-spacing:4.839000px;}
.ls1d{letter-spacing:15.387000px;}
.ls1c{letter-spacing:46.887000px;}
.ls19{letter-spacing:133.945950px;}
.ls16{letter-spacing:323.922000px;}
.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;}
}
.ws0{word-spacing:-16.875000px;}
.ws13{word-spacing:-16.789500px;}
.ws2{word-spacing:-16.146000px;}
.ws9{word-spacing:-16.107000px;}
.ws7{word-spacing:-15.651000px;}
.ws1{word-spacing:-15.354000px;}
.ws3{word-spacing:-15.048000px;}
.ws5{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.599000px;}
.ws6{word-spacing:-13.221000px;}
.wsd{word-spacing:-12.375000px;}
.wsb{word-spacing:-12.237900px;}
.ws12{word-spacing:-12.204000px;}
.ws4{word-spacing:-8.136000px;}
.wse{word-spacing:-7.875000px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:108.966600px;}
.ws11{word-spacing:109.236600px;}
.wsf{word-spacing:109.296600px;}
.wsc{word-spacing:311.718000px;}
._b{margin-left:-11.305800px;}
._9{margin-left:-10.279800px;}
._8{margin-left:-6.921000px;}
._a{margin-left:-5.543700px;}
._6{margin-left:-3.553500px;}
._0{margin-left:-1.755000px;}
._3{width:1.404000px;}
._4{width:2.866500px;}
._1{width:4.329000px;}
._c{width:5.845500px;}
._2{width:7.546500px;}
._5{width:9.144000px;}
._19{width:10.326000px;}
._7{width:11.445000px;}
._10{width:13.077000px;}
._18{width:14.394000px;}
._14{width:16.311000px;}
._e{width:17.433000px;}
._d{width:20.326500px;}
._f{width:21.532500px;}
._15{width:24.919500px;}
._12{width:26.407500px;}
._17{width:29.796000px;}
._13{width:30.805500px;}
._11{width:34.534500px;}
._16{width:39.624000px;}
._1a{width:353.815500px;}
._1b{width:641.184000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs7{font-size:40.500000px;}
.fs4{font-size:49.500000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs0{font-size:58.500000px;}
.fs2{font-size:61.663798px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:67.500000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.375000px;}
.ydc{bottom:3.390000px;}
.yda{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yeb{bottom:4.515000px;}
.ycb{bottom:5.625000px;}
.ye1{bottom:5.670000px;}
.yca{bottom:6.750000px;}
.y4{bottom:11.250000px;}
.y43{bottom:11.265000px;}
.yef{bottom:11.280000px;}
.y1b{bottom:13.500000px;}
.y11a{bottom:16.080000px;}
.yc7{bottom:16.875000px;}
.y3{bottom:16.912500px;}
.yb{bottom:18.000000px;}
.y3f{bottom:20.250000px;}
.yd7{bottom:21.420000px;}
.y44{bottom:22.500000px;}
.ye9{bottom:22.530000px;}
.yc3{bottom:24.600000px;}
.yb4{bottom:25.170000px;}
.ya7{bottom:25.545000px;}
.y42{bottom:25.875000px;}
.y18{bottom:27.000000px;}
.yc5{bottom:28.125000px;}
.yd0{bottom:28.155000px;}
.y1{bottom:32.625000px;}
.ya{bottom:33.780000px;}
.y2{bottom:36.037500px;}
.y3e{bottom:38.295000px;}
.y17{bottom:43.920000px;}
.ybe{bottom:45.225000px;}
.yb0{bottom:46.155000px;}
.ya3{bottom:46.500000px;}
.y9{bottom:50.655000px;}
.y11e{bottom:54.975000px;}
.y3d{bottom:55.170000px;}
.y16{bottom:59.670000px;}
.ybd{bottom:62.100000px;}
.ya9{bottom:63.075000px;}
.y99{bottom:63.420000px;}
.yce{bottom:64.155000px;}
.y3c{bottom:72.045000px;}
.yd1{bottom:72.075000px;}
.y11b{bottom:73.455000px;}
.y8{bottom:75.435000px;}
.y121{bottom:76.350000px;}
.y15{bottom:76.590000px;}
.yb6{bottom:79.005000px;}
.ycd{bottom:81.075000px;}
.y9a{bottom:81.525000px;}
.yaa{bottom:89.700000px;}
.y3b{bottom:90.075000px;}
.y7{bottom:93.435000px;}
.y50{bottom:93.450000px;}
.y14{bottom:93.465000px;}
.y123{bottom:97.755000px;}
.y9b{bottom:99.675000px;}
.yb3{bottom:105.225000px;}
.yb7{bottom:106.320000px;}
.y3a{bottom:106.950000px;}
.ya6{bottom:108.120000px;}
.y97{bottom:109.200000px;}
.y13{bottom:109.215000px;}
.y6{bottom:110.310000px;}
.y4f{bottom:111.450000px;}
.yab{bottom:116.370000px;}
.y9c{bottom:117.795000px;}
.y128{bottom:120.705000px;}
.yb1{bottom:120.825000px;}
.yc2{bottom:123.330000px;}
.y39{bottom:123.855000px;}
.y12{bottom:123.870000px;}
.y96{bottom:126.112500px;}
.y4e{bottom:128.362500px;}
.y11f{bottom:133.080000px;}
.yb8{bottom:133.575000px;}
.y9d{bottom:135.945000px;}
.yc0{bottom:140.325000px;}
.y11{bottom:141.870000px;}
.yac{bottom:142.980000px;}
.y95{bottom:142.987500px;}
.y118{bottom:145.237500px;}
.y127{bottom:146.070000px;}
.y4d{bottom:149.737500px;}
.y9e{bottom:154.050000px;}
.y11c{bottom:154.500000px;}
.y38{bottom:158.775000px;}
.yb9{bottom:160.875000px;}
.y94{bottom:161.025000px;}
.y10{bottom:161.040000px;}
.y4c{bottom:163.275000px;}
.yc1{bottom:164.025000px;}
.yad{bottom:169.650000px;}
.y126{bottom:171.375000px;}
.y9f{bottom:172.200000px;}
.y37{bottom:175.650000px;}
.y124{bottom:175.875000px;}
.y93{bottom:177.900000px;}
.y4b{bottom:180.150000px;}
.ya4{bottom:180.570000px;}
.yf6{bottom:184.650000px;}
.yf{bottom:186.915000px;}
.yba{bottom:188.175000px;}
.ya0{bottom:190.320000px;}
.y36{bottom:193.650000px;}
.y92{bottom:194.775000px;}
.yae{bottom:196.275000px;}
.y4a{bottom:197.025000px;}
.yb2{bottom:202.050000px;}
.yf5{bottom:202.695000px;}
.y91{bottom:208.320000px;}
.ya1{bottom:208.425000px;}
.yb5{bottom:210.375000px;}
.y35{bottom:210.555000px;}
.y120{bottom:211.200000px;}
.ye{bottom:211.695000px;}
.y49{bottom:215.070000px;}
.ybb{bottom:215.475000px;}
.y28{bottom:218.445000px;}
.yf4{bottom:219.570000px;}
.ya5{bottom:221.745000px;}
.yaf{bottom:222.945000px;}
.ya2{bottom:226.575000px;}
.y34{bottom:227.430000px;}
.y48{bottom:231.945000px;}
.y122{bottom:232.620000px;}
.y27{bottom:233.070000px;}
.y11d{bottom:235.500000px;}
.yf3{bottom:236.445000px;}
.ybc{bottom:242.775000px;}
.y33{bottom:245.475000px;}
.ybf{bottom:246.975000px;}
.y47{bottom:248.850000px;}
.y26{bottom:251.100000px;}
.y125{bottom:253.995000px;}
.yf2{bottom:254.475000px;}
.y32{bottom:262.350000px;}
.y46{bottom:266.850000px;}
.yf1{bottom:267.975000px;}
.y25{bottom:269.100000px;}
.y31{bottom:279.225000px;}
.y45{bottom:283.725000px;}
.y24{bottom:286.020000px;}
.y83{bottom:291.645000px;}
.y41{bottom:297.255000px;}
.y30{bottom:297.270000px;}
.y117{bottom:300.630000px;}
.yf0{bottom:301.755000px;}
.y23{bottom:302.895000px;}
.y82{bottom:309.630000px;}
.y2f{bottom:314.145000px;}
.y116{bottom:318.645000px;}
.y22{bottom:320.895000px;}
.y81{bottom:326.550000px;}
.y2e{bottom:331.050000px;}
.y1c{bottom:334.425000px;}
.y115{bottom:335.550000px;}
.y21{bottom:338.925000px;}
.y80{bottom:343.425000px;}
.y2d{bottom:349.050000px;}
.y114{bottom:352.425000px;}
.y20{bottom:356.925000px;}
.y7f{bottom:361.425000px;}
.y2c{bottom:365.925000px;}
.yee{bottom:367.050000px;}
.y113{bottom:370.455000px;}
.y1f{bottom:374.970000px;}
.y7e{bottom:378.330000px;}
.y2b{bottom:382.830000px;}
.y112{bottom:387.330000px;}
.y7d{bottom:395.205000px;}
.yed{bottom:399.705000px;}
.y2a{bottom:400.830000px;}
.y1e{bottom:401.970000px;}
.y111{bottom:404.205000px;}
.y7c{bottom:413.250000px;}
.y29{bottom:417.750000px;}
.y1d{bottom:420.000000px;}
.y110{bottom:422.250000px;}
.y7b{bottom:430.125000px;}
.ye8{bottom:435.750000px;}
.y10f{bottom:439.125000px;}
.y7a{bottom:447.000000px;}
.yec{bottom:453.780000px;}
.y10e{bottom:456.045000px;}
.y79{bottom:465.030000px;}
.yea{bottom:471.780000px;}
.y10d{bottom:474.045000px;}
.y90{bottom:480.795000px;}
.y78{bottom:481.905000px;}
.y10c{bottom:490.920000px;}
.ye7{bottom:494.325000px;}
.y8f{bottom:497.700000px;}
.y77{bottom:498.825000px;}
.y10b{bottom:507.825000px;}
.ye6{bottom:511.200000px;}
.y8e{bottom:514.575000px;}
.y76{bottom:516.825000px;}
.y10a{bottom:525.825000px;}
.ye5{bottom:528.075000px;}
.y8d{bottom:532.575000px;}
.y75{bottom:533.700000px;}
.y109{bottom:542.745000px;}
.ye4{bottom:546.120000px;}
.y8c{bottom:549.495000px;}
.y74{bottom:550.620000px;}
.y108{bottom:559.620000px;}
.y8b{bottom:562.995000px;}
.ya8{bottom:565.875000px;}
.y73{bottom:568.605000px;}
.y107{bottom:577.650000px;}
.ye3{bottom:579.900000px;}
.y72{bottom:585.525000px;}
.ye2{bottom:594.525000px;}
.y71{bottom:602.400000px;}
.y106{bottom:611.400000px;}
.ye0{bottom:618.150000px;}
.y70{bottom:620.445000px;}
.y105{bottom:629.445000px;}
.y6f{bottom:637.320000px;}
.ydf{bottom:640.695000px;}
.y104{bottom:646.320000px;}
.y6e{bottom:654.195000px;}
.y103{bottom:663.225000px;}
.yde{bottom:664.350000px;}
.y6d{bottom:672.225000px;}
.y102{bottom:685.725000px;}
.ydd{bottom:687.975000px;}
.y6c{bottom:689.100000px;}
.y101{bottom:698.100000px;}
.ydb{bottom:706.005000px;}
.y6b{bottom:706.020000px;}
.y100{bottom:715.005000px;}
.y6a{bottom:724.005000px;}
.yff{bottom:733.020000px;}
.y69{bottom:740.880000px;}
.yd9{bottom:742.005000px;}
.yfe{bottom:749.925000px;}
.y68{bottom:757.800000px;}
.yd8{bottom:760.050000px;}
.y1a{bottom:765.675000px;}
.yfd{bottom:766.800000px;}
.y67{bottom:775.800000px;}
.yd6{bottom:781.425000px;}
.yfc{bottom:784.800000px;}
.y66{bottom:792.705000px;}
.yd{bottom:794.955000px;}
.yd5{bottom:798.330000px;}
.yfb{bottom:801.705000px;}
.y65{bottom:809.580000px;}
.y8a{bottom:816.330000px;}
.yfa{bottom:818.580000px;}
.y64{bottom:827.625000px;}
.yd4{bottom:833.250000px;}
.y89{bottom:834.375000px;}
.yf9{bottom:836.625000px;}
.y63{bottom:844.500000px;}
.yd3{bottom:850.125000px;}
.y88{bottom:851.250000px;}
.yf8{bottom:853.500000px;}
.y62{bottom:861.375000px;}
.yf7{bottom:867.000000px;}
.y87{bottom:868.125000px;}
.y119{bottom:868.500000px;}
.y61{bottom:879.420000px;}
.ycc{bottom:881.670000px;}
.y86{bottom:886.170000px;}
.y60{bottom:896.295000px;}
.y85{bottom:903.045000px;}
.y5f{bottom:913.200000px;}
.y84{bottom:916.575000px;}
.y98{bottom:918.000000px;}
.yd2{bottom:926.700000px;}
.y12a{bottom:931.200000px;}
.y5e{bottom:935.700000px;}
.y5d{bottom:948.075000px;}
.y5c{bottom:964.995000px;}
.ycf{bottom:970.620000px;}
.y5b{bottom:982.995000px;}
.y5a{bottom:999.900000px;}
.y59{bottom:1016.775000px;}
.yc{bottom:1021.275000px;}
.y58{bottom:1034.775000px;}
.yc8{bottom:1037.070000px;}
.y5{bottom:1047.195000px;}
.y57{bottom:1051.695000px;}
.yc9{bottom:1059.570000px;}
.y56{bottom:1068.570000px;}
.yc4{bottom:1084.350000px;}
.y129{bottom:1086.600000px;}
.y55{bottom:1091.100000px;}
.y54{bottom:1103.475000px;}
.y53{bottom:1120.380000px;}
.yc6{bottom:1129.380000px;}
.y52{bottom:1138.380000px;}
.y51{bottom:1155.255000px;}
.h32{height:16.875000px;}
.h33{height:16.912500px;}
.h37{height:18.000000px;}
.h38{height:18.037500px;}
.h29{height:21.375000px;}
.h34{height:22.500000px;}
.h35{height:22.537500px;}
.h2c{height:23.647500px;}
.hb{height:25.912500px;}
.h11{height:27.492188px;}
.h13{height:27.558281px;}
.h12{height:27.738281px;}
.h1f{height:28.278809px;}
.h14{height:29.287500px;}
.h3a{height:31.500000px;}
.h3b{height:31.537500px;}
.h39{height:32.662500px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h1a{height:37.801758px;}
.h1b{height:40.847168px;}
.h5{height:41.275635px;}
.h3{height:41.389893px;}
.h41{height:42.589600px;}
.h2f{height:42.787500px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h30{height:43.897500px;}
.h2a{height:43.912500px;}
.h19{height:44.674805px;}
.h2b{height:46.162500px;}
.h1e{height:46.278809px;}
.h1d{height:46.458809px;}
.h3e{height:46.515439px;}
.h3c{height:46.575439px;}
.h3f{height:46.635439px;}
.h3d{height:46.695439px;}
.h17{height:49.234131px;}
.h2{height:49.575000px;}
.h9{height:50.625000px;}
.h4{height:51.968611px;}
.h31{height:52.912500px;}
.h22{height:53.709961px;}
.h21{height:53.859155px;}
.h36{height:54.037500px;}
.h23{height:55.291992px;}
.h24{height:55.445581px;}
.hf{height:58.185791px;}
.h18{height:59.899658px;}
.he{height:64.237500px;}
.h10{height:64.507324px;}
.h2e{height:65.325000px;}
.h28{height:66.412500px;}
.h6{height:67.137451px;}
.h15{height:69.114990px;}
.h27{height:102.691992px;}
.h7{height:121.612500px;}
.h2d{height:154.275000px;}
.hc{height:226.305000px;}
.h25{height:247.500000px;}
.h20{height:250.875000px;}
.h26{height:266.625000px;}
.h40{height:300.375000px;}
.h16{height:431.250000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1a{width:51.787500px;}
.w18{width:64.200000px;}
.w13{width:67.612500px;}
.w2{width:73.237500px;}
.w1b{width:76.575000px;}
.w19{width:76.612500px;}
.w10{width:86.737500px;}
.wf{width:87.862500px;}
.w17{width:91.237500px;}
.w21{width:92.400000px;}
.w1d{width:95.775000px;}
.w20{width:106.987500px;}
.w22{width:108.112500px;}
.wc{width:114.900000px;}
.w15{width:128.400000px;}
.w16{width:140.775000px;}
.w4{width:152.055000px;}
.w14{width:155.430000px;}
.w1f{width:199.350000px;}
.w1e{width:199.395000px;}
.w7{width:224.145000px;}
.w11{width:233.175000px;}
.we{width:351.450000px;}
.w1c{width:398.745000px;}
.w12{width:426.900000px;}
.w8{width:508.050000px;}
.w9{width:531.000000px;}
.wa{width:534.375000px;}
.w5{width:580.125000px;}
.w23{width:600.750000px;}
.wd{width:615.045000px;}
.w1{width:658.950000px;}
.wb{width:711.000000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:6.750000px;}
.x6{left:7.875000px;}
.x2{left:9.000000px;}
.x51{left:13.770000px;}
.x15{left:20.295000px;}
.x22{left:41.820000px;}
.x3a{left:43.087500px;}
.x1e{left:50.445000px;}
.x2b{left:51.712500px;}
.x1d{left:57.270000px;}
.x2a{left:58.575000px;}
.x1{left:81.112500px;}
.x3d{left:82.237500px;}
.x2d{left:87.030000px;}
.x29{left:90.000000px;}
.x2c{left:96.030000px;}
.x7{left:97.987500px;}
.x59{left:108.149987px;}
.x53{left:115.500000px;}
.x10{left:122.782500px;}
.x11{left:125.032500px;}
.x1f{left:129.330000px;}
.x5a{left:135.187487px;}
.x50{left:144.000000px;}
.x12{left:145.312500px;}
.x37{left:154.995000px;}
.x3c{left:158.804987px;}
.x25{left:162.225000px;}
.x24{left:177.750000px;}
.x1c{left:178.875000px;}
.x43{left:181.349987px;}
.x3{left:182.467500px;}
.x4{left:186.982500px;}
.x2f{left:193.800000px;}
.x2e{left:197.175000px;}
.x20{left:203.445000px;}
.x26{left:211.125000px;}
.x13{left:214.012500px;}
.x54{left:221.070000px;}
.x8{left:233.175000px;}
.x1b{left:242.174987px;}
.x17{left:245.549987px;}
.x23{left:250.380000px;}
.x19{left:256.829987px;}
.x28{left:261.975000px;}
.xb{left:273.705000px;}
.x31{left:288.195000px;}
.x56{left:297.105000px;}
.x30{left:298.320000px;}
.x14{left:305.250000px;}
.x44{left:316.545000px;}
.xf{left:330.037500px;}
.x3b{left:335.820000px;}
.x9{left:344.700000px;}
.xd{left:348.075000px;}
.x55{left:357.375000px;}
.xa{left:363.825000px;}
.xe{left:364.957500px;}
.x21{left:366.300000px;}
.x27{left:367.725000px;}
.x57{left:379.995000px;}
.x32{left:390.420000px;}
.x48{left:407.775000px;}
.x33{left:412.950000px;}
.x38{left:421.800000px;}
.x4d{left:423.525000px;}
.x52{left:432.105000px;}
.xc{left:437.055000px;}
.x46{left:473.100000px;}
.x34{left:491.550000px;}
.x58{left:497.100000px;}
.x39{left:509.625000px;}
.x4c{left:515.925000px;}
.x3e{left:548.595000px;}
.x49{left:549.720000px;}
.x36{left:592.695000px;}
.x35{left:599.445000px;}
.x47{left:602.655000px;}
.x4e{left:624.030000px;}
.x3f{left:636.450000px;}
.x4a{left:679.245000px;}
.x16{left:714.149987px;}
.x18{left:715.274987px;}
.x4b{left:716.400000px;}
.x40{left:724.320000px;}
.x41{left:725.445000px;}
.x5{left:740.070000px;}
.x45{left:744.570000px;}
.x4f{left:749.099987px;}
.x1a{left:803.129987px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:42.133333pt;}
.ls1a{letter-spacing:-2.000000pt;}
.lsb{letter-spacing:-1.002667pt;}
.ls15{letter-spacing:-0.912000pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.403733pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls1b{letter-spacing:-0.270400pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.720000pt;}
.lse{letter-spacing:0.912000pt;}
.ls13{letter-spacing:1.317333pt;}
.ls14{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls4{letter-spacing:1.908000pt;}
.ls6{letter-spacing:1.924000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls7{letter-spacing:2.010667pt;}
.ls9{letter-spacing:2.053333pt;}
.ls11{letter-spacing:2.133333pt;}
.ls12{letter-spacing:2.160000pt;}
.ls0{letter-spacing:3.000000pt;}
.ls8{letter-spacing:4.301333pt;}
.ls1d{letter-spacing:13.677333pt;}
.ls1c{letter-spacing:41.677333pt;}
.ls19{letter-spacing:119.063067pt;}
.ls16{letter-spacing:287.930667pt;}
.ws0{word-spacing:-15.000000pt;}
.ws13{word-spacing:-14.924000pt;}
.ws2{word-spacing:-14.352000pt;}
.ws9{word-spacing:-14.317333pt;}
.ws7{word-spacing:-13.912000pt;}
.ws1{word-spacing:-13.648000pt;}
.ws3{word-spacing:-13.376000pt;}
.ws5{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.088000pt;}
.ws6{word-spacing:-11.752000pt;}
.wsd{word-spacing:-11.000000pt;}
.wsb{word-spacing:-10.878133pt;}
.ws12{word-spacing:-10.848000pt;}
.ws4{word-spacing:-7.232000pt;}
.wse{word-spacing:-7.000000pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:96.859200pt;}
.ws11{word-spacing:97.099200pt;}
.wsf{word-spacing:97.152533pt;}
.wsc{word-spacing:277.082667pt;}
._b{margin-left:-10.049600pt;}
._9{margin-left:-9.137600pt;}
._8{margin-left:-6.152000pt;}
._a{margin-left:-4.927733pt;}
._6{margin-left:-3.158667pt;}
._0{margin-left:-1.560000pt;}
._3{width:1.248000pt;}
._4{width:2.548000pt;}
._1{width:3.848000pt;}
._c{width:5.196000pt;}
._2{width:6.708000pt;}
._5{width:8.128000pt;}
._19{width:9.178667pt;}
._7{width:10.173333pt;}
._10{width:11.624000pt;}
._18{width:12.794667pt;}
._14{width:14.498667pt;}
._e{width:15.496000pt;}
._d{width:18.068000pt;}
._f{width:19.140000pt;}
._15{width:22.150667pt;}
._12{width:23.473333pt;}
._17{width:26.485333pt;}
._13{width:27.382667pt;}
._11{width:30.697333pt;}
._16{width:35.221333pt;}
._1a{width:314.502667pt;}
._1b{width:569.941333pt;}
.fs8{font-size:32.000000pt;}
.fs7{font-size:36.000000pt;}
.fs4{font-size:44.000000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs0{font-size:52.000000pt;}
.fs2{font-size:54.812265pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:60.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:3.000000pt;}
.ydc{bottom:3.013333pt;}
.yda{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yeb{bottom:4.013333pt;}
.ycb{bottom:5.000000pt;}
.ye1{bottom:5.040000pt;}
.yca{bottom:6.000000pt;}
.y4{bottom:10.000000pt;}
.y43{bottom:10.013333pt;}
.yef{bottom:10.026667pt;}
.y1b{bottom:12.000000pt;}
.y11a{bottom:14.293333pt;}
.yc7{bottom:15.000000pt;}
.y3{bottom:15.033333pt;}
.yb{bottom:16.000000pt;}
.y3f{bottom:18.000000pt;}
.yd7{bottom:19.040000pt;}
.y44{bottom:20.000000pt;}
.ye9{bottom:20.026667pt;}
.yc3{bottom:21.866667pt;}
.yb4{bottom:22.373333pt;}
.ya7{bottom:22.706667pt;}
.y42{bottom:23.000000pt;}
.y18{bottom:24.000000pt;}
.yc5{bottom:25.000000pt;}
.yd0{bottom:25.026667pt;}
.y1{bottom:29.000000pt;}
.ya{bottom:30.026667pt;}
.y2{bottom:32.033333pt;}
.y3e{bottom:34.040000pt;}
.y17{bottom:39.040000pt;}
.ybe{bottom:40.200000pt;}
.yb0{bottom:41.026667pt;}
.ya3{bottom:41.333333pt;}
.y9{bottom:45.026667pt;}
.y11e{bottom:48.866667pt;}
.y3d{bottom:49.040000pt;}
.y16{bottom:53.040000pt;}
.ybd{bottom:55.200000pt;}
.ya9{bottom:56.066667pt;}
.y99{bottom:56.373333pt;}
.yce{bottom:57.026667pt;}
.y3c{bottom:64.040000pt;}
.yd1{bottom:64.066667pt;}
.y11b{bottom:65.293333pt;}
.y8{bottom:67.053333pt;}
.y121{bottom:67.866667pt;}
.y15{bottom:68.080000pt;}
.yb6{bottom:70.226667pt;}
.ycd{bottom:72.066667pt;}
.y9a{bottom:72.466667pt;}
.yaa{bottom:79.733333pt;}
.y3b{bottom:80.066667pt;}
.y7{bottom:83.053333pt;}
.y50{bottom:83.066667pt;}
.y14{bottom:83.080000pt;}
.y123{bottom:86.893333pt;}
.y9b{bottom:88.600000pt;}
.yb3{bottom:93.533333pt;}
.yb7{bottom:94.506667pt;}
.y3a{bottom:95.066667pt;}
.ya6{bottom:96.106667pt;}
.y97{bottom:97.066667pt;}
.y13{bottom:97.080000pt;}
.y6{bottom:98.053333pt;}
.y4f{bottom:99.066667pt;}
.yab{bottom:103.440000pt;}
.y9c{bottom:104.706667pt;}
.y128{bottom:107.293333pt;}
.yb1{bottom:107.400000pt;}
.yc2{bottom:109.626667pt;}
.y39{bottom:110.093333pt;}
.y12{bottom:110.106667pt;}
.y96{bottom:112.100000pt;}
.y4e{bottom:114.100000pt;}
.y11f{bottom:118.293333pt;}
.yb8{bottom:118.733333pt;}
.y9d{bottom:120.840000pt;}
.yc0{bottom:124.733333pt;}
.y11{bottom:126.106667pt;}
.yac{bottom:127.093333pt;}
.y95{bottom:127.100000pt;}
.y118{bottom:129.100000pt;}
.y127{bottom:129.840000pt;}
.y4d{bottom:133.100000pt;}
.y9e{bottom:136.933333pt;}
.y11c{bottom:137.333333pt;}
.y38{bottom:141.133333pt;}
.yb9{bottom:143.000000pt;}
.y94{bottom:143.133333pt;}
.y10{bottom:143.146667pt;}
.y4c{bottom:145.133333pt;}
.yc1{bottom:145.800000pt;}
.yad{bottom:150.800000pt;}
.y126{bottom:152.333333pt;}
.y9f{bottom:153.066667pt;}
.y37{bottom:156.133333pt;}
.y124{bottom:156.333333pt;}
.y93{bottom:158.133333pt;}
.y4b{bottom:160.133333pt;}
.ya4{bottom:160.506667pt;}
.yf6{bottom:164.133333pt;}
.yf{bottom:166.146667pt;}
.yba{bottom:167.266667pt;}
.ya0{bottom:169.173333pt;}
.y36{bottom:172.133333pt;}
.y92{bottom:173.133333pt;}
.yae{bottom:174.466667pt;}
.y4a{bottom:175.133333pt;}
.yb2{bottom:179.600000pt;}
.yf5{bottom:180.173333pt;}
.y91{bottom:185.173333pt;}
.ya1{bottom:185.266667pt;}
.yb5{bottom:187.000000pt;}
.y35{bottom:187.160000pt;}
.y120{bottom:187.733333pt;}
.ye{bottom:188.173333pt;}
.y49{bottom:191.173333pt;}
.ybb{bottom:191.533333pt;}
.y28{bottom:194.173333pt;}
.yf4{bottom:195.173333pt;}
.ya5{bottom:197.106667pt;}
.yaf{bottom:198.173333pt;}
.ya2{bottom:201.400000pt;}
.y34{bottom:202.160000pt;}
.y48{bottom:206.173333pt;}
.y122{bottom:206.773333pt;}
.y27{bottom:207.173333pt;}
.y11d{bottom:209.333333pt;}
.yf3{bottom:210.173333pt;}
.ybc{bottom:215.800000pt;}
.y33{bottom:218.200000pt;}
.ybf{bottom:219.533333pt;}
.y47{bottom:221.200000pt;}
.y26{bottom:223.200000pt;}
.y125{bottom:225.773333pt;}
.yf2{bottom:226.200000pt;}
.y32{bottom:233.200000pt;}
.y46{bottom:237.200000pt;}
.yf1{bottom:238.200000pt;}
.y25{bottom:239.200000pt;}
.y31{bottom:248.200000pt;}
.y45{bottom:252.200000pt;}
.y24{bottom:254.240000pt;}
.y83{bottom:259.240000pt;}
.y41{bottom:264.226667pt;}
.y30{bottom:264.240000pt;}
.y117{bottom:267.226667pt;}
.yf0{bottom:268.226667pt;}
.y23{bottom:269.240000pt;}
.y82{bottom:275.226667pt;}
.y2f{bottom:279.240000pt;}
.y116{bottom:283.240000pt;}
.y22{bottom:285.240000pt;}
.y81{bottom:290.266667pt;}
.y2e{bottom:294.266667pt;}
.y1c{bottom:297.266667pt;}
.y115{bottom:298.266667pt;}
.y21{bottom:301.266667pt;}
.y80{bottom:305.266667pt;}
.y2d{bottom:310.266667pt;}
.y114{bottom:313.266667pt;}
.y20{bottom:317.266667pt;}
.y7f{bottom:321.266667pt;}
.y2c{bottom:325.266667pt;}
.yee{bottom:326.266667pt;}
.y113{bottom:329.293333pt;}
.y1f{bottom:333.306667pt;}
.y7e{bottom:336.293333pt;}
.y2b{bottom:340.293333pt;}
.y112{bottom:344.293333pt;}
.y7d{bottom:351.293333pt;}
.yed{bottom:355.293333pt;}
.y2a{bottom:356.293333pt;}
.y1e{bottom:357.306667pt;}
.y111{bottom:359.293333pt;}
.y7c{bottom:367.333333pt;}
.y29{bottom:371.333333pt;}
.y1d{bottom:373.333333pt;}
.y110{bottom:375.333333pt;}
.y7b{bottom:382.333333pt;}
.ye8{bottom:387.333333pt;}
.y10f{bottom:390.333333pt;}
.y7a{bottom:397.333333pt;}
.yec{bottom:403.360000pt;}
.y10e{bottom:405.373333pt;}
.y79{bottom:413.360000pt;}
.yea{bottom:419.360000pt;}
.y10d{bottom:421.373333pt;}
.y90{bottom:427.373333pt;}
.y78{bottom:428.360000pt;}
.y10c{bottom:436.373333pt;}
.ye7{bottom:439.400000pt;}
.y8f{bottom:442.400000pt;}
.y77{bottom:443.400000pt;}
.y10b{bottom:451.400000pt;}
.ye6{bottom:454.400000pt;}
.y8e{bottom:457.400000pt;}
.y76{bottom:459.400000pt;}
.y10a{bottom:467.400000pt;}
.ye5{bottom:469.400000pt;}
.y8d{bottom:473.400000pt;}
.y75{bottom:474.400000pt;}
.y109{bottom:482.440000pt;}
.ye4{bottom:485.440000pt;}
.y8c{bottom:488.440000pt;}
.y74{bottom:489.440000pt;}
.y108{bottom:497.440000pt;}
.y8b{bottom:500.440000pt;}
.ya8{bottom:503.000000pt;}
.y73{bottom:505.426667pt;}
.y107{bottom:513.466667pt;}
.ye3{bottom:515.466667pt;}
.y72{bottom:520.466667pt;}
.ye2{bottom:528.466667pt;}
.y71{bottom:535.466667pt;}
.y106{bottom:543.466667pt;}
.ye0{bottom:549.466667pt;}
.y70{bottom:551.506667pt;}
.y105{bottom:559.506667pt;}
.y6f{bottom:566.506667pt;}
.ydf{bottom:569.506667pt;}
.y104{bottom:574.506667pt;}
.y6e{bottom:581.506667pt;}
.y103{bottom:589.533333pt;}
.yde{bottom:590.533333pt;}
.y6d{bottom:597.533333pt;}
.y102{bottom:609.533333pt;}
.ydd{bottom:611.533333pt;}
.y6c{bottom:612.533333pt;}
.y101{bottom:620.533333pt;}
.ydb{bottom:627.560000pt;}
.y6b{bottom:627.573333pt;}
.y100{bottom:635.560000pt;}
.y6a{bottom:643.560000pt;}
.yff{bottom:651.573333pt;}
.y69{bottom:658.560000pt;}
.yd9{bottom:659.560000pt;}
.yfe{bottom:666.600000pt;}
.y68{bottom:673.600000pt;}
.yd8{bottom:675.600000pt;}
.y1a{bottom:680.600000pt;}
.yfd{bottom:681.600000pt;}
.y67{bottom:689.600000pt;}
.yd6{bottom:694.600000pt;}
.yfc{bottom:697.600000pt;}
.y66{bottom:704.626667pt;}
.yd{bottom:706.626667pt;}
.yd5{bottom:709.626667pt;}
.yfb{bottom:712.626667pt;}
.y65{bottom:719.626667pt;}
.y8a{bottom:725.626667pt;}
.yfa{bottom:727.626667pt;}
.y64{bottom:735.666667pt;}
.yd4{bottom:740.666667pt;}
.y89{bottom:741.666667pt;}
.yf9{bottom:743.666667pt;}
.y63{bottom:750.666667pt;}
.yd3{bottom:755.666667pt;}
.y88{bottom:756.666667pt;}
.yf8{bottom:758.666667pt;}
.y62{bottom:765.666667pt;}
.yf7{bottom:770.666667pt;}
.y87{bottom:771.666667pt;}
.y119{bottom:772.000000pt;}
.y61{bottom:781.706667pt;}
.ycc{bottom:783.706667pt;}
.y86{bottom:787.706667pt;}
.y60{bottom:796.706667pt;}
.y85{bottom:802.706667pt;}
.y5f{bottom:811.733333pt;}
.y84{bottom:814.733333pt;}
.y98{bottom:816.000000pt;}
.yd2{bottom:823.733333pt;}
.y12a{bottom:827.733333pt;}
.y5e{bottom:831.733333pt;}
.y5d{bottom:842.733333pt;}
.y5c{bottom:857.773333pt;}
.ycf{bottom:862.773333pt;}
.y5b{bottom:873.773333pt;}
.y5a{bottom:888.800000pt;}
.y59{bottom:903.800000pt;}
.yc{bottom:907.800000pt;}
.y58{bottom:919.800000pt;}
.yc8{bottom:921.840000pt;}
.y5{bottom:930.840000pt;}
.y57{bottom:934.840000pt;}
.yc9{bottom:941.840000pt;}
.y56{bottom:949.840000pt;}
.yc4{bottom:963.866667pt;}
.y129{bottom:965.866667pt;}
.y55{bottom:969.866667pt;}
.y54{bottom:980.866667pt;}
.y53{bottom:995.893333pt;}
.yc6{bottom:1003.893333pt;}
.y52{bottom:1011.893333pt;}
.y51{bottom:1026.893333pt;}
.h32{height:15.000000pt;}
.h33{height:15.033333pt;}
.h37{height:16.000000pt;}
.h38{height:16.033333pt;}
.h29{height:19.000000pt;}
.h34{height:20.000000pt;}
.h35{height:20.033333pt;}
.h2c{height:21.020000pt;}
.hb{height:23.033333pt;}
.h11{height:24.437500pt;}
.h13{height:24.496250pt;}
.h12{height:24.656250pt;}
.h1f{height:25.136719pt;}
.h14{height:26.033333pt;}
.h3a{height:28.000000pt;}
.h3b{height:28.033333pt;}
.h39{height:29.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h1a{height:33.601562pt;}
.h1b{height:36.308594pt;}
.h5{height:36.689453pt;}
.h3{height:36.791016pt;}
.h41{height:37.857422pt;}
.h2f{height:38.033333pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h30{height:39.020000pt;}
.h2a{height:39.033333pt;}
.h19{height:39.710938pt;}
.h2b{height:41.033333pt;}
.h1e{height:41.136719pt;}
.h1d{height:41.296719pt;}
.h3e{height:41.347057pt;}
.h3c{height:41.400391pt;}
.h3f{height:41.453724pt;}
.h3d{height:41.507057pt;}
.h17{height:43.763672pt;}
.h2{height:44.066667pt;}
.h9{height:45.000000pt;}
.h4{height:46.194321pt;}
.h31{height:47.033333pt;}
.h22{height:47.742188pt;}
.h21{height:47.874805pt;}
.h36{height:48.033333pt;}
.h23{height:49.148438pt;}
.h24{height:49.284961pt;}
.hf{height:51.720703pt;}
.h18{height:53.244141pt;}
.he{height:57.100000pt;}
.h10{height:57.339844pt;}
.h2e{height:58.066667pt;}
.h28{height:59.033333pt;}
.h6{height:59.677734pt;}
.h15{height:61.435547pt;}
.h27{height:91.281771pt;}
.h7{height:108.100000pt;}
.h2d{height:137.133333pt;}
.hc{height:201.160000pt;}
.h25{height:220.000000pt;}
.h20{height:223.000000pt;}
.h26{height:237.000000pt;}
.h40{height:267.000000pt;}
.h16{height:383.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1a{width:46.033333pt;}
.w18{width:57.066667pt;}
.w13{width:60.100000pt;}
.w2{width:65.100000pt;}
.w1b{width:68.066667pt;}
.w19{width:68.100000pt;}
.w10{width:77.100000pt;}
.wf{width:78.100000pt;}
.w17{width:81.100000pt;}
.w21{width:82.133333pt;}
.w1d{width:85.133333pt;}
.w20{width:95.100000pt;}
.w22{width:96.100000pt;}
.wc{width:102.133333pt;}
.w15{width:114.133333pt;}
.w16{width:125.133333pt;}
.w4{width:135.160000pt;}
.w14{width:138.160000pt;}
.w1f{width:177.200000pt;}
.w1e{width:177.240000pt;}
.w7{width:199.240000pt;}
.w11{width:207.266667pt;}
.we{width:312.400000pt;}
.w1c{width:354.440000pt;}
.w12{width:379.466667pt;}
.w8{width:451.600000pt;}
.w9{width:472.000000pt;}
.wa{width:475.000000pt;}
.w5{width:515.666667pt;}
.w23{width:534.000000pt;}
.wd{width:546.706667pt;}
.w1{width:585.733333pt;}
.wb{width:632.000000pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:6.000000pt;}
.x6{left:7.000000pt;}
.x2{left:8.000000pt;}
.x51{left:12.240000pt;}
.x15{left:18.040000pt;}
.x22{left:37.173333pt;}
.x3a{left:38.300000pt;}
.x1e{left:44.840000pt;}
.x2b{left:45.966667pt;}
.x1d{left:50.906667pt;}
.x2a{left:52.066667pt;}
.x1{left:72.100000pt;}
.x3d{left:73.100000pt;}
.x2d{left:77.360000pt;}
.x29{left:80.000000pt;}
.x2c{left:85.360000pt;}
.x7{left:87.100000pt;}
.x59{left:96.133322pt;}
.x53{left:102.666667pt;}
.x10{left:109.140000pt;}
.x11{left:111.140000pt;}
.x1f{left:114.960000pt;}
.x5a{left:120.166655pt;}
.x50{left:128.000000pt;}
.x12{left:129.166667pt;}
.x37{left:137.773333pt;}
.x3c{left:141.159988pt;}
.x25{left:144.200000pt;}
.x24{left:158.000000pt;}
.x1c{left:159.000000pt;}
.x43{left:161.199988pt;}
.x3{left:162.193333pt;}
.x4{left:166.206667pt;}
.x2f{left:172.266667pt;}
.x2e{left:175.266667pt;}
.x20{left:180.840000pt;}
.x26{left:187.666667pt;}
.x13{left:190.233333pt;}
.x54{left:196.506667pt;}
.x8{left:207.266667pt;}
.x1b{left:215.266655pt;}
.x17{left:218.266655pt;}
.x23{left:222.560000pt;}
.x19{left:228.293322pt;}
.x28{left:232.866667pt;}
.xb{left:243.293333pt;}
.x31{left:256.173333pt;}
.x56{left:264.093333pt;}
.x30{left:265.173333pt;}
.x14{left:271.333333pt;}
.x44{left:281.373333pt;}
.xf{left:293.366667pt;}
.x3b{left:298.506667pt;}
.x9{left:306.400000pt;}
.xd{left:309.400000pt;}
.x55{left:317.666667pt;}
.xa{left:323.400000pt;}
.xe{left:324.406667pt;}
.x21{left:325.600000pt;}
.x27{left:326.866667pt;}
.x57{left:337.773333pt;}
.x32{left:347.040000pt;}
.x48{left:362.466667pt;}
.x33{left:367.066667pt;}
.x38{left:374.933333pt;}
.x4d{left:376.466667pt;}
.x52{left:384.093333pt;}
.xc{left:388.493333pt;}
.x46{left:420.533333pt;}
.x34{left:436.933333pt;}
.x58{left:441.866667pt;}
.x39{left:453.000000pt;}
.x4c{left:458.600000pt;}
.x3e{left:487.640000pt;}
.x49{left:488.640000pt;}
.x36{left:526.840000pt;}
.x35{left:532.840000pt;}
.x47{left:535.693333pt;}
.x4e{left:554.693333pt;}
.x3f{left:565.733333pt;}
.x4a{left:603.773333pt;}
.x16{left:634.799988pt;}
.x18{left:635.799988pt;}
.x4b{left:636.800000pt;}
.x40{left:643.840000pt;}
.x41{left:644.840000pt;}
.x5{left:657.840000pt;}
.x45{left:661.840000pt;}
.x4f{left:665.866655pt;}
.x1a{left:713.893322pt;}
}




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