
    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_c6e7923b31c252a644af9eb3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_ce961c7714bb2dc7586ed0cd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e28e5e69a074618b88607bf6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1962f7a3161676716045911.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_05773151a85401da5d1ddf64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_43b0192c579bde55b77463fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_17ec487f2be6ec95c1eaf724.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_49f183767ea533575b22f4f9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e3c506ee76feb259b2a8d31d.woff2')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_5632a2273a4f3c85ca8534f1.woff2')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_f134cb8280b0b82d7eee7d1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854980;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_fa7f6f691b60ff863e6b5f2d.woff2')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_642ed1d4295d8c5366373304.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_34c3e8aee117387fb960b1cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_86c509d4a87386e89b2b9238.woff2')format("woff");}.fff{font-family:fff;line-height:1.040039;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_a64bdf10cae46a95bb49ada9.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.112305;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:ff11;src:url('chunks/assets/font_a78f450413691d8a3622d1db.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c065586e0c507bdfe25b42b9.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m2{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);}
.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);}
.m3{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls23{letter-spacing:-0.253200px;}
.ls22{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls20{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.174240px;}
.ls15{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.439920px;}
.ls12{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.786240px;}
.ls21{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.620000px;}
.ls1d{letter-spacing:2.340000px;}
.ls1b{letter-spacing:21.060000px;}
.ls1a{letter-spacing:21.780000px;}
.ls1c{letter-spacing:22.500000px;}
.ls18{letter-spacing:33.984000px;}
.lse{letter-spacing:64.026720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws15{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws18{word-spacing:-15.093600px;}
.ws14{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.733600px;}
.ws1a{word-spacing:-14.686800px;}
.ws13{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws1b{word-spacing:-14.166000px;}
.ws12{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.wsd{word-spacing:-9.732960px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._5{margin-left:-6.840240px;}
._4{margin-left:-5.810880px;}
._3{margin-left:-4.445760px;}
._2{margin-left:-2.681040px;}
._0{margin-left:-1.194000px;}
._1{width:1.026000px;}
._6{width:2.244000px;}
._16{width:3.585600px;}
._1a{width:4.640160px;}
._12{width:5.677200px;}
._11{width:7.608000px;}
._10{width:8.844480px;}
._15{width:9.979920px;}
._b{width:10.985760px;}
._f{width:12.094320px;}
._e{width:13.724160px;}
._18{width:16.005600px;}
._21{width:17.099040px;}
._19{width:18.146880px;}
._13{width:19.182960px;}
._1d{width:20.248560px;}
._17{width:21.264480px;}
._1f{width:23.283600px;}
._14{width:24.730560px;}
._1b{width:26.881920px;}
._1c{width:27.944640px;}
._7{width:30.059280px;}
._d{width:33.088800px;}
._c{width:34.122960px;}
._9{width:35.318160px;}
._a{width:38.654640px;}
._8{width:39.979440px;}
._20{width:95.613600px;}
._1e{width:255.439920px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc7{color:rgb(4,98,193);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.ycc{bottom:3.780000px;}
.y4c{bottom:3.960000px;}
.y1d{bottom:4.860000px;}
.y92{bottom:5.940000px;}
.y94{bottom:6.480000px;}
.yf{bottom:9.540000px;}
.y4a{bottom:10.620000px;}
.y1f{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.y5{bottom:17.280000px;}
.y3{bottom:19.980000px;}
.y46{bottom:20.520000px;}
.y4b{bottom:22.320000px;}
.y49{bottom:25.200000px;}
.y1c{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y45{bottom:37.800000px;}
.y1b{bottom:45.900000px;}
.yb{bottom:46.440000px;}
.y44{bottom:55.080000px;}
.y6{bottom:57.600000px;}
.y1a{bottom:62.280000px;}
.y43{bottom:72.360000px;}
.ya{bottom:73.440000px;}
.y2{bottom:78.300000px;}
.y19{bottom:78.840000px;}
.y42{bottom:89.460000px;}
.y9{bottom:93.060000px;}
.y18{bottom:94.680000px;}
.y17{bottom:105.120000px;}
.y41{bottom:106.785000px;}
.y8{bottom:111.270000px;}
.y16{bottom:123.300000px;}
.y40{bottom:124.065000px;}
.y54{bottom:124.200000px;}
.yf1{bottom:126.540000px;}
.yae{bottom:127.620000px;}
.y8f{bottom:128.880000px;}
.y8e{bottom:132.840000px;}
.ye4{bottom:134.856000px;}
.y3f{bottom:141.345000px;}
.y53{bottom:141.516000px;}
.y15{bottom:141.705000px;}
.yf0{bottom:143.856000px;}
.yad{bottom:144.936000px;}
.y8d{bottom:150.150000px;}
.ye3{bottom:152.130000px;}
.y3e{bottom:158.625000px;}
.y52{bottom:158.790000px;}
.y14{bottom:160.785000px;}
.yac{bottom:162.030000px;}
.yef{bottom:163.830000px;}
.y8c{bottom:167.430000px;}
.ye2{bottom:169.410000px;}
.y3d{bottom:175.905000px;}
.y51{bottom:176.070000px;}
.yab{bottom:179.310000px;}
.yee{bottom:181.110000px;}
.y2e{bottom:182.385000px;}
.y8b{bottom:184.710000px;}
.y13{bottom:186.525000px;}
.ye1{bottom:186.690000px;}
.y3c{bottom:193.005000px;}
.y50{bottom:193.350000px;}
.yaa{bottom:196.590000px;}
.y2d{bottom:197.685000px;}
.yc5{bottom:199.290000px;}
.yed{bottom:201.090000px;}
.y8a{bottom:201.990000px;}
.ye0{bottom:203.970000px;}
.y3b{bottom:210.285000px;}
.y4f{bottom:210.450000px;}
.y12{bottom:212.265000px;}
.ya9{bottom:213.870000px;}
.y2c{bottom:215.325000px;}
.yc4{bottom:216.570000px;}
.yec{bottom:218.370000px;}
.y89{bottom:220.350000px;}
.ydf{bottom:221.070000px;}
.y3a{bottom:227.565000px;}
.y4e{bottom:227.730000px;}
.ya8{bottom:231.150000px;}
.y2b{bottom:232.605000px;}
.yc3{bottom:233.850000px;}
.y11{bottom:236.565000px;}
.yde{bottom:238.350000px;}
.y88{bottom:238.530000px;}
.y39{bottom:244.845000px;}
.y4d{bottom:245.010000px;}
.ya7{bottom:248.430000px;}
.y2a{bottom:249.705000px;}
.yc2{bottom:251.130000px;}
.ydd{bottom:255.630000px;}
.y87{bottom:256.890000px;}
.y48{bottom:259.050000px;}
.y38{bottom:262.125000px;}
.ya6{bottom:265.530000px;}
.y29{bottom:267.525000px;}
.yc1{bottom:268.230000px;}
.ydc{bottom:272.910000px;}
.y86{bottom:274.170000px;}
.yeb{bottom:275.610000px;}
.y37{bottom:279.405000px;}
.ya5{bottom:282.810000px;}
.y28{bottom:284.985000px;}
.yc0{bottom:285.510000px;}
.ydb{bottom:290.190000px;}
.y85{bottom:291.450000px;}
.yea{bottom:292.890000px;}
.y20{bottom:295.590000px;}
.y36{bottom:296.505000px;}
.ya4{bottom:300.090000px;}
.y11c{bottom:300.270000px;}
.y27{bottom:302.265000px;}
.ybf{bottom:302.790000px;}
.yda{bottom:307.290000px;}
.y84{bottom:308.730000px;}
.ye9{bottom:310.170000px;}
.y35{bottom:313.785000px;}
.ya3{bottom:317.370000px;}
.y11b{bottom:317.550000px;}
.y26{bottom:319.725000px;}
.ybe{bottom:320.070000px;}
.yd9{bottom:324.570000px;}
.y83{bottom:326.910000px;}
.ye8{bottom:330.150000px;}
.y34{bottom:331.065000px;}
.ya2{bottom:334.650000px;}
.y25{bottom:337.185000px;}
.ybd{bottom:337.350000px;}
.y11a{bottom:337.530000px;}
.yd8{bottom:341.850000px;}
.y82{bottom:345.270000px;}
.ye7{bottom:347.430000px;}
.y33{bottom:348.375000px;}
.ya1{bottom:351.930000px;}
.y24{bottom:354.495000px;}
.ybc{bottom:354.630000px;}
.y119{bottom:354.810000px;}
.yd7{bottom:359.130000px;}
.y81{bottom:363.630000px;}
.ye6{bottom:364.710000px;}
.y32{bottom:365.655000px;}
.ya0{bottom:369.030000px;}
.ybb{bottom:371.730000px;}
.y118{bottom:372.090000px;}
.y23{bottom:374.835000px;}
.yd6{bottom:376.410000px;}
.y80{bottom:381.990000px;}
.y31{bottom:382.935000px;}
.y9f{bottom:386.310000px;}
.yba{bottom:389.055000px;}
.y117{bottom:392.115000px;}
.yd5{bottom:393.735000px;}
.y7f{bottom:399.315000px;}
.y30{bottom:400.035000px;}
.y22{bottom:402.375000px;}
.y9e{bottom:403.635000px;}
.yb9{bottom:406.335000px;}
.y116{bottom:409.575000px;}
.yd4{bottom:410.835000px;}
.y7e{bottom:416.595000px;}
.y2f{bottom:417.315000px;}
.y9d{bottom:417.675000px;}
.y21{bottom:420.015000px;}
.yb8{bottom:423.615000px;}
.yd3{bottom:428.115000px;}
.y115{bottom:429.555000px;}
.y7d{bottom:433.695000px;}
.yb7{bottom:437.655000px;}
.yd2{bottom:445.395000px;}
.y114{bottom:446.835000px;}
.y7c{bottom:450.975000px;}
.yd1{bottom:462.675000px;}
.y113{bottom:466.815000px;}
.y7b{bottom:468.255000px;}
.yd0{bottom:479.955000px;}
.y112{bottom:484.095000px;}
.y7a{bottom:485.535000px;}
.ycf{bottom:497.235000px;}
.y79{bottom:502.815000px;}
.y111{bottom:504.075000px;}
.yce{bottom:514.335000px;}
.y78{bottom:519.915000px;}
.y110{bottom:521.355000px;}
.ycd{bottom:529.455000px;}
.y77{bottom:537.195000px;}
.y10f{bottom:541.335000px;}
.ycb{bottom:548.535000px;}
.y76{bottom:554.475000px;}
.y10e{bottom:558.615000px;}
.yc9{bottom:567.435000px;}
.y75{bottom:571.755000px;}
.y10d{bottom:578.595000px;}
.y74{bottom:589.035000px;}
.y10c{bottom:596.055000px;}
.yca{bottom:603.075000px;}
.y73{bottom:606.315000px;}
.y10b{bottom:616.035000px;}
.y72{bottom:623.415000px;}
.y10a{bottom:633.315000px;}
.y71{bottom:640.725000px;}
.y109{bottom:653.325000px;}
.y70{bottom:658.005000px;}
.y108{bottom:670.605000px;}
.y6f{bottom:675.285000px;}
.y107{bottom:687.885000px;}
.y6e{bottom:692.565000px;}
.y106{bottom:707.865000px;}
.y6d{bottom:709.845000px;}
.y9c{bottom:713.445000px;}
.y105{bottom:725.145000px;}
.y1e{bottom:726.945000px;}
.y9b{bottom:730.725000px;}
.yb6{bottom:742.425000px;}
.y6c{bottom:744.225000px;}
.y9a{bottom:747.825000px;}
.y10{bottom:756.465000px;}
.yb5{bottom:759.525000px;}
.y6b{bottom:761.505000px;}
.y104{bottom:762.405000px;}
.y99{bottom:765.105000px;}
.yb4{bottom:776.805000px;}
.y6a{bottom:778.785000px;}
.y103{bottom:779.685000px;}
.y98{bottom:782.385000px;}
.yb3{bottom:794.085000px;}
.y69{bottom:796.065000px;}
.y97{bottom:799.665000px;}
.yb2{bottom:811.365000px;}
.y68{bottom:813.165000px;}
.y96{bottom:816.945000px;}
.ye5{bottom:818.385000px;}
.yb1{bottom:828.645000px;}
.y67{bottom:830.445000px;}
.y95{bottom:832.065000px;}
.y102{bottom:834.225000px;}
.yc8{bottom:835.665000px;}
.yb0{bottom:845.925000px;}
.y66{bottom:847.725000px;}
.yc7{bottom:852.945000px;}
.y93{bottom:853.665000px;}
.y101{bottom:854.205000px;}
.yaf{bottom:859.785000px;}
.y65{bottom:865.005000px;}
.yc6{bottom:866.985000px;}
.y100{bottom:871.485000px;}
.y90{bottom:875.265000px;}
.y64{bottom:882.285000px;}
.yff{bottom:891.465000px;}
.y91{bottom:896.370000px;}
.y63{bottom:899.610000px;}
.yfe{bottom:908.970000px;}
.y62{bottom:916.710000px;}
.yfd{bottom:928.950000px;}
.y61{bottom:933.990000px;}
.yfc{bottom:948.930000px;}
.y60{bottom:951.270000px;}
.yfb{bottom:966.210000px;}
.y5f{bottom:968.550000px;}
.y5e{bottom:985.830000px;}
.yfa{bottom:986.370000px;}
.y5d{bottom:1003.110000px;}
.yf9{bottom:1006.350000px;}
.ye{bottom:1008.150000px;}
.y5c{bottom:1020.210000px;}
.yf8{bottom:1023.630000px;}
.y7{bottom:1033.530000px;}
.y5b{bottom:1037.490000px;}
.yf7{bottom:1043.610000px;}
.y5a{bottom:1054.770000px;}
.yf6{bottom:1063.590000px;}
.y59{bottom:1072.050000px;}
.yf5{bottom:1080.870000px;}
.y58{bottom:1089.330000px;}
.yf4{bottom:1101.030000px;}
.y57{bottom:1106.610000px;}
.yf3{bottom:1121.010000px;}
.y56{bottom:1123.710000px;}
.yf2{bottom:1138.290000px;}
.y55{bottom:1140.990000px;}
.y1{bottom:1193.760000px;}
.h28{height:17.820000px;}
.h29{height:18.000000px;}
.h23{height:20.016000px;}
.h24{height:20.520000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h3{height:32.940000px;}
.h27{height:34.560000px;}
.h2a{height:34.855313px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1d{height:36.540000px;}
.h1b{height:38.818125px;}
.h1f{height:42.164648px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1e{height:48.088125px;}
.h1a{height:49.255313px;}
.h1c{height:53.573906px;}
.h5{height:53.709961px;}
.ha{height:54.000000px;}
.h4{height:55.291992px;}
.h20{height:55.735313px;}
.h18{height:56.574492px;}
.h2{height:59.383125px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h2b{height:64.546875px;}
.h6{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.h26{height:229.350000px;}
.h22{height:241.380000px;}
.hd{height:251.670000px;}
.h21{height:262.470000px;}
.h25{height:264.990000px;}
.h16{height:431.355000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:74.736000px;}
.wf{width:90.360000px;}
.wa{width:91.080000px;}
.wb{width:126.756000px;}
.wd{width:126.900000px;}
.we{width:126.936000px;}
.wc{width:127.116000px;}
.w13{width:133.920000px;}
.w10{width:134.460000px;}
.w11{width:147.996000px;}
.w12{width:148.176000px;}
.w5{width:155.370000px;}
.w8{width:221.115000px;}
.w9{width:526.605000px;}
.w6{width:592.170000px;}
.w3{width:673.890000px;}
.w7{width:747.720000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x29{left:-27.540000px;}
.x2a{left:-23.580000px;}
.x2b{left:-16.020000px;}
.x0{left:0.000000px;}
.x3{left:8.676000px;}
.x15{left:12.600000px;}
.x17{left:14.220000px;}
.x11{left:20.376000px;}
.xc{left:26.496000px;}
.x19{left:31.860000px;}
.xd{left:36.576000px;}
.x1a{left:49.680000px;}
.x24{left:67.365000px;}
.x2{left:72.360000px;}
.x1{left:81.035987px;}
.x1f{left:82.835987px;}
.x25{left:85.185000px;}
.x10{left:94.350000px;}
.x5{left:98.130000px;}
.x2f{left:108.035987px;}
.x12{left:150.330000px;}
.x18{left:173.190000px;}
.x30{left:184.889987px;}
.x31{left:194.429987px;}
.xe{left:201.135000px;}
.x13{left:215.175000px;}
.x23{left:216.570000px;}
.x6{left:228.270000px;}
.x2d{left:237.449987px;}
.x32{left:238.529987px;}
.x33{left:248.069987px;}
.x9{left:285.375000px;}
.x14{left:293.835000px;}
.x1b{left:301.035000px;}
.x34{left:304.274987px;}
.xf{left:311.655000px;}
.x7{left:345.135000px;}
.x35{left:360.614987px;}
.x8{left:364.440000px;}
.x26{left:365.835000px;}
.x36{left:370.334987px;}
.xb{left:373.785000px;}
.x2e{left:389.234987px;}
.x37{left:402.014987px;}
.x2c{left:407.054987px;}
.x38{left:411.554987px;}
.x40{left:421.664987px;}
.x1c{left:429.405000px;}
.x41{left:431.384987px;}
.x39{left:439.664987px;}
.x22{left:446.684987px;}
.xa{left:452.640000px;}
.x3a{left:471.164987px;}
.x3b{left:480.704987px;}
.x27{left:515.085000px;}
.x3c{left:535.604987px;}
.x3d{left:545.324987px;}
.x1d{left:557.385000px;}
.x3e{left:597.029987px;}
.x3f{left:606.749987px;}
.x28{left:664.350000px;}
.x20{left:675.149987px;}
.x1e{left:685.590000px;}
.x16{left:687.569987px;}
.x21{left:713.849987px;}
.x4{left:746.250000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls23{letter-spacing:-0.225067pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls20{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.154880pt;}
.ls15{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.391040pt;}
.ls12{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.698880pt;}
.ls21{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls1b{letter-spacing:18.720000pt;}
.ls1a{letter-spacing:19.360000pt;}
.ls1c{letter-spacing:20.000000pt;}
.ls18{letter-spacing:30.208000pt;}
.lse{letter-spacing:56.912640pt;}
.wse{word-spacing:-53.120000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws18{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.096533pt;}
.ws1a{word-spacing:-13.054933pt;}
.ws13{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws1b{word-spacing:-12.592000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.wsd{word-spacing:-8.651520pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._5{margin-left:-6.080213pt;}
._4{margin-left:-5.165227pt;}
._3{margin-left:-3.951787pt;}
._2{margin-left:-2.383147pt;}
._0{margin-left:-1.061333pt;}
._1{width:0.912000pt;}
._6{width:1.994667pt;}
._16{width:3.187200pt;}
._1a{width:4.124587pt;}
._12{width:5.046400pt;}
._11{width:6.762667pt;}
._10{width:7.861760pt;}
._15{width:8.871040pt;}
._b{width:9.765120pt;}
._f{width:10.750507pt;}
._e{width:12.199253pt;}
._18{width:14.227200pt;}
._21{width:15.199147pt;}
._19{width:16.130560pt;}
._13{width:17.051520pt;}
._1d{width:17.998720pt;}
._17{width:18.901760pt;}
._1f{width:20.696533pt;}
._14{width:21.982720pt;}
._1b{width:23.895040pt;}
._1c{width:24.839680pt;}
._7{width:26.719360pt;}
._d{width:29.412267pt;}
._c{width:30.331520pt;}
._9{width:31.393920pt;}
._a{width:34.359680pt;}
._8{width:35.537280pt;}
._20{width:84.989867pt;}
._1e{width:227.057707pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.ycc{bottom:3.360000pt;}
.y4c{bottom:3.520000pt;}
.y1d{bottom:4.320000pt;}
.y92{bottom:5.280000pt;}
.y94{bottom:5.760000pt;}
.yf{bottom:8.480000pt;}
.y4a{bottom:9.440000pt;}
.y1f{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.y5{bottom:15.360000pt;}
.y3{bottom:17.760000pt;}
.y46{bottom:18.240000pt;}
.y4b{bottom:19.840000pt;}
.y49{bottom:22.400000pt;}
.y1c{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y45{bottom:33.600000pt;}
.y1b{bottom:40.800000pt;}
.yb{bottom:41.280000pt;}
.y44{bottom:48.960000pt;}
.y6{bottom:51.200000pt;}
.y1a{bottom:55.360000pt;}
.y43{bottom:64.320000pt;}
.ya{bottom:65.280000pt;}
.y2{bottom:69.600000pt;}
.y19{bottom:70.080000pt;}
.y42{bottom:79.520000pt;}
.y9{bottom:82.720000pt;}
.y18{bottom:84.160000pt;}
.y17{bottom:93.440000pt;}
.y41{bottom:94.920000pt;}
.y8{bottom:98.906667pt;}
.y16{bottom:109.600000pt;}
.y40{bottom:110.280000pt;}
.y54{bottom:110.400000pt;}
.yf1{bottom:112.480000pt;}
.yae{bottom:113.440000pt;}
.y8f{bottom:114.560000pt;}
.y8e{bottom:118.080000pt;}
.ye4{bottom:119.872000pt;}
.y3f{bottom:125.640000pt;}
.y53{bottom:125.792000pt;}
.y15{bottom:125.960000pt;}
.yf0{bottom:127.872000pt;}
.yad{bottom:128.832000pt;}
.y8d{bottom:133.466667pt;}
.ye3{bottom:135.226667pt;}
.y3e{bottom:141.000000pt;}
.y52{bottom:141.146667pt;}
.y14{bottom:142.920000pt;}
.yac{bottom:144.026667pt;}
.yef{bottom:145.626667pt;}
.y8c{bottom:148.826667pt;}
.ye2{bottom:150.586667pt;}
.y3d{bottom:156.360000pt;}
.y51{bottom:156.506667pt;}
.yab{bottom:159.386667pt;}
.yee{bottom:160.986667pt;}
.y2e{bottom:162.120000pt;}
.y8b{bottom:164.186667pt;}
.y13{bottom:165.800000pt;}
.ye1{bottom:165.946667pt;}
.y3c{bottom:171.560000pt;}
.y50{bottom:171.866667pt;}
.yaa{bottom:174.746667pt;}
.y2d{bottom:175.720000pt;}
.yc5{bottom:177.146667pt;}
.yed{bottom:178.746667pt;}
.y8a{bottom:179.546667pt;}
.ye0{bottom:181.306667pt;}
.y3b{bottom:186.920000pt;}
.y4f{bottom:187.066667pt;}
.y12{bottom:188.680000pt;}
.ya9{bottom:190.106667pt;}
.y2c{bottom:191.400000pt;}
.yc4{bottom:192.506667pt;}
.yec{bottom:194.106667pt;}
.y89{bottom:195.866667pt;}
.ydf{bottom:196.506667pt;}
.y3a{bottom:202.280000pt;}
.y4e{bottom:202.426667pt;}
.ya8{bottom:205.466667pt;}
.y2b{bottom:206.760000pt;}
.yc3{bottom:207.866667pt;}
.y11{bottom:210.280000pt;}
.yde{bottom:211.866667pt;}
.y88{bottom:212.026667pt;}
.y39{bottom:217.640000pt;}
.y4d{bottom:217.786667pt;}
.ya7{bottom:220.826667pt;}
.y2a{bottom:221.960000pt;}
.yc2{bottom:223.226667pt;}
.ydd{bottom:227.226667pt;}
.y87{bottom:228.346667pt;}
.y48{bottom:230.266667pt;}
.y38{bottom:233.000000pt;}
.ya6{bottom:236.026667pt;}
.y29{bottom:237.800000pt;}
.yc1{bottom:238.426667pt;}
.ydc{bottom:242.586667pt;}
.y86{bottom:243.706667pt;}
.yeb{bottom:244.986667pt;}
.y37{bottom:248.360000pt;}
.ya5{bottom:251.386667pt;}
.y28{bottom:253.320000pt;}
.yc0{bottom:253.786667pt;}
.ydb{bottom:257.946667pt;}
.y85{bottom:259.066667pt;}
.yea{bottom:260.346667pt;}
.y20{bottom:262.746667pt;}
.y36{bottom:263.560000pt;}
.ya4{bottom:266.746667pt;}
.y11c{bottom:266.906667pt;}
.y27{bottom:268.680000pt;}
.ybf{bottom:269.146667pt;}
.yda{bottom:273.146667pt;}
.y84{bottom:274.426667pt;}
.ye9{bottom:275.706667pt;}
.y35{bottom:278.920000pt;}
.ya3{bottom:282.106667pt;}
.y11b{bottom:282.266667pt;}
.y26{bottom:284.200000pt;}
.ybe{bottom:284.506667pt;}
.yd9{bottom:288.506667pt;}
.y83{bottom:290.586667pt;}
.ye8{bottom:293.466667pt;}
.y34{bottom:294.280000pt;}
.ya2{bottom:297.466667pt;}
.y25{bottom:299.720000pt;}
.ybd{bottom:299.866667pt;}
.y11a{bottom:300.026667pt;}
.yd8{bottom:303.866667pt;}
.y82{bottom:306.906667pt;}
.ye7{bottom:308.826667pt;}
.y33{bottom:309.666667pt;}
.ya1{bottom:312.826667pt;}
.y24{bottom:315.106667pt;}
.ybc{bottom:315.226667pt;}
.y119{bottom:315.386667pt;}
.yd7{bottom:319.226667pt;}
.y81{bottom:323.226667pt;}
.ye6{bottom:324.186667pt;}
.y32{bottom:325.026667pt;}
.ya0{bottom:328.026667pt;}
.ybb{bottom:330.426667pt;}
.y118{bottom:330.746667pt;}
.y23{bottom:333.186667pt;}
.yd6{bottom:334.586667pt;}
.y80{bottom:339.546667pt;}
.y31{bottom:340.386667pt;}
.y9f{bottom:343.386667pt;}
.yba{bottom:345.826667pt;}
.y117{bottom:348.546667pt;}
.yd5{bottom:349.986667pt;}
.y7f{bottom:354.946667pt;}
.y30{bottom:355.586667pt;}
.y22{bottom:357.666667pt;}
.y9e{bottom:358.786667pt;}
.yb9{bottom:361.186667pt;}
.y116{bottom:364.066667pt;}
.yd4{bottom:365.186667pt;}
.y7e{bottom:370.306667pt;}
.y2f{bottom:370.946667pt;}
.y9d{bottom:371.266667pt;}
.y21{bottom:373.346667pt;}
.yb8{bottom:376.546667pt;}
.yd3{bottom:380.546667pt;}
.y115{bottom:381.826667pt;}
.y7d{bottom:385.506667pt;}
.yb7{bottom:389.026667pt;}
.yd2{bottom:395.906667pt;}
.y114{bottom:397.186667pt;}
.y7c{bottom:400.866667pt;}
.yd1{bottom:411.266667pt;}
.y113{bottom:414.946667pt;}
.y7b{bottom:416.226667pt;}
.yd0{bottom:426.626667pt;}
.y112{bottom:430.306667pt;}
.y7a{bottom:431.586667pt;}
.ycf{bottom:441.986667pt;}
.y79{bottom:446.946667pt;}
.y111{bottom:448.066667pt;}
.yce{bottom:457.186667pt;}
.y78{bottom:462.146667pt;}
.y110{bottom:463.426667pt;}
.ycd{bottom:470.626667pt;}
.y77{bottom:477.506667pt;}
.y10f{bottom:481.186667pt;}
.ycb{bottom:487.586667pt;}
.y76{bottom:492.866667pt;}
.y10e{bottom:496.546667pt;}
.yc9{bottom:504.386667pt;}
.y75{bottom:508.226667pt;}
.y10d{bottom:514.306667pt;}
.y74{bottom:523.586667pt;}
.y10c{bottom:529.826667pt;}
.yca{bottom:536.066667pt;}
.y73{bottom:538.946667pt;}
.y10b{bottom:547.586667pt;}
.y72{bottom:554.146667pt;}
.y10a{bottom:562.946667pt;}
.y71{bottom:569.533333pt;}
.y109{bottom:580.733333pt;}
.y70{bottom:584.893333pt;}
.y108{bottom:596.093333pt;}
.y6f{bottom:600.253333pt;}
.y107{bottom:611.453333pt;}
.y6e{bottom:615.613333pt;}
.y106{bottom:629.213333pt;}
.y6d{bottom:630.973333pt;}
.y9c{bottom:634.173333pt;}
.y105{bottom:644.573333pt;}
.y1e{bottom:646.173333pt;}
.y9b{bottom:649.533333pt;}
.yb6{bottom:659.933333pt;}
.y6c{bottom:661.533333pt;}
.y9a{bottom:664.733333pt;}
.y10{bottom:672.413333pt;}
.yb5{bottom:675.133333pt;}
.y6b{bottom:676.893333pt;}
.y104{bottom:677.693333pt;}
.y99{bottom:680.093333pt;}
.yb4{bottom:690.493333pt;}
.y6a{bottom:692.253333pt;}
.y103{bottom:693.053333pt;}
.y98{bottom:695.453333pt;}
.yb3{bottom:705.853333pt;}
.y69{bottom:707.613333pt;}
.y97{bottom:710.813333pt;}
.yb2{bottom:721.213333pt;}
.y68{bottom:722.813333pt;}
.y96{bottom:726.173333pt;}
.ye5{bottom:727.453333pt;}
.yb1{bottom:736.573333pt;}
.y67{bottom:738.173333pt;}
.y95{bottom:739.613333pt;}
.y102{bottom:741.533333pt;}
.yc8{bottom:742.813333pt;}
.yb0{bottom:751.933333pt;}
.y66{bottom:753.533333pt;}
.yc7{bottom:758.173333pt;}
.y93{bottom:758.813333pt;}
.y101{bottom:759.293333pt;}
.yaf{bottom:764.253333pt;}
.y65{bottom:768.893333pt;}
.yc6{bottom:770.653333pt;}
.y100{bottom:774.653333pt;}
.y90{bottom:778.013333pt;}
.y64{bottom:784.253333pt;}
.yff{bottom:792.413333pt;}
.y91{bottom:796.773333pt;}
.y63{bottom:799.653333pt;}
.yfe{bottom:807.973333pt;}
.y62{bottom:814.853333pt;}
.yfd{bottom:825.733333pt;}
.y61{bottom:830.213333pt;}
.yfc{bottom:843.493333pt;}
.y60{bottom:845.573333pt;}
.yfb{bottom:858.853333pt;}
.y5f{bottom:860.933333pt;}
.y5e{bottom:876.293333pt;}
.yfa{bottom:876.773333pt;}
.y5d{bottom:891.653333pt;}
.yf9{bottom:894.533333pt;}
.ye{bottom:896.133333pt;}
.y5c{bottom:906.853333pt;}
.yf8{bottom:909.893333pt;}
.y7{bottom:918.693333pt;}
.y5b{bottom:922.213333pt;}
.yf7{bottom:927.653333pt;}
.y5a{bottom:937.573333pt;}
.yf6{bottom:945.413333pt;}
.y59{bottom:952.933333pt;}
.yf5{bottom:960.773333pt;}
.y58{bottom:968.293333pt;}
.yf4{bottom:978.693333pt;}
.y57{bottom:983.653333pt;}
.yf3{bottom:996.453333pt;}
.y56{bottom:998.853333pt;}
.yf2{bottom:1011.813333pt;}
.y55{bottom:1014.213333pt;}
.y1{bottom:1061.120000pt;}
.h28{height:15.840000pt;}
.h29{height:16.000000pt;}
.h23{height:17.792000pt;}
.h24{height:18.240000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h3{height:29.280000pt;}
.h27{height:30.720000pt;}
.h2a{height:30.982500pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1d{height:32.480000pt;}
.h1b{height:34.505000pt;}
.h1f{height:37.479688pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1e{height:42.745000pt;}
.h1a{height:43.782500pt;}
.h1c{height:47.621250pt;}
.h5{height:47.742188pt;}
.ha{height:48.000000pt;}
.h4{height:49.148438pt;}
.h20{height:49.542500pt;}
.h18{height:50.288438pt;}
.h2{height:52.785000pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h2b{height:57.375000pt;}
.h6{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.h26{height:203.866667pt;}
.h22{height:214.560000pt;}
.hd{height:223.706667pt;}
.h21{height:233.306667pt;}
.h25{height:235.546667pt;}
.h16{height:383.426667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:66.432000pt;}
.wf{width:80.320000pt;}
.wa{width:80.960000pt;}
.wb{width:112.672000pt;}
.wd{width:112.800000pt;}
.we{width:112.832000pt;}
.wc{width:112.992000pt;}
.w13{width:119.040000pt;}
.w10{width:119.520000pt;}
.w11{width:131.552000pt;}
.w12{width:131.712000pt;}
.w5{width:138.106667pt;}
.w8{width:196.546667pt;}
.w9{width:468.093333pt;}
.w6{width:526.373333pt;}
.w3{width:599.013333pt;}
.w7{width:664.640000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x29{left:-24.480000pt;}
.x2a{left:-20.960000pt;}
.x2b{left:-14.240000pt;}
.x0{left:0.000000pt;}
.x3{left:7.712000pt;}
.x15{left:11.200000pt;}
.x17{left:12.640000pt;}
.x11{left:18.112000pt;}
.xc{left:23.552000pt;}
.x19{left:28.320000pt;}
.xd{left:32.512000pt;}
.x1a{left:44.160000pt;}
.x24{left:59.880000pt;}
.x2{left:64.320000pt;}
.x1{left:72.031988pt;}
.x1f{left:73.631988pt;}
.x25{left:75.720000pt;}
.x10{left:83.866667pt;}
.x5{left:87.226667pt;}
.x2f{left:96.031988pt;}
.x12{left:133.626667pt;}
.x18{left:153.946667pt;}
.x30{left:164.346655pt;}
.x31{left:172.826655pt;}
.xe{left:178.786667pt;}
.x13{left:191.266667pt;}
.x23{left:192.506667pt;}
.x6{left:202.906667pt;}
.x2d{left:211.066655pt;}
.x32{left:212.026655pt;}
.x33{left:220.506655pt;}
.x9{left:253.666667pt;}
.x14{left:261.186667pt;}
.x1b{left:267.586667pt;}
.x34{left:270.466655pt;}
.xf{left:277.026667pt;}
.x7{left:306.786667pt;}
.x35{left:320.546655pt;}
.x8{left:323.946667pt;}
.x26{left:325.186667pt;}
.x36{left:329.186655pt;}
.xb{left:332.253333pt;}
.x2e{left:345.986655pt;}
.x37{left:357.346655pt;}
.x2c{left:361.826655pt;}
.x38{left:365.826655pt;}
.x40{left:374.813321pt;}
.x1c{left:381.693333pt;}
.x41{left:383.453321pt;}
.x39{left:390.813321pt;}
.x22{left:397.053321pt;}
.xa{left:402.346667pt;}
.x3a{left:418.813321pt;}
.x3b{left:427.293321pt;}
.x27{left:457.853333pt;}
.x3c{left:476.093322pt;}
.x3d{left:484.733322pt;}
.x1d{left:495.453333pt;}
.x3e{left:530.693322pt;}
.x3f{left:539.333322pt;}
.x28{left:590.533333pt;}
.x20{left:600.133322pt;}
.x1e{left:609.413333pt;}
.x16{left:611.173321pt;}
.x21{left:634.533321pt;}
.x4{left:663.333333pt;}
}




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