
    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_f42b9d876cbe20f9e7edb264.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_01212dd82374ce88af513300.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_e4d0c5d80d96d148b97ca9da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_144804c41a089984781ae92f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_a19444c98a358e2f42d47a94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_9b4fb0da0c6993ff7c42a1a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730469;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a26cc21895bd269a777e90da.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9225d4a8f8beb336584131c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41804400e6673f9ce0f1375e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_b16348fa0a501e981d10dac2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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_27e083f53a0c4e01a6954b2f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.935547;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_5ce094fc85ed3d6b51441a2f.woff2')format("woff");}.fff{font-family:fff;line-height:0.935547;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740234;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_4092f954ba7725ef718d4785.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.123047;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_69ace714c4d4c2211097f719.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-36.000000px;}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v1{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.206000px;}
.ls17{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-1.068000px;}
.ls12{letter-spacing:-0.966000px;}
.ls10{letter-spacing:-0.768000px;}
.ls13{letter-spacing:-0.732000px;}
.lse{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.454800px;}
.lsc{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.406200px;}
.ls23{letter-spacing:-0.267600px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.034560px;}
.ls20{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.216000px;}
.ls24{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.406080px;}
.ls7{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls14{letter-spacing:0.708000px;}
.ls2{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.828000px;}
.ls3{letter-spacing:2.520000px;}
.ls5{letter-spacing:40.637280px;}
.ls4{letter-spacing:44.957280px;}
.ls1d{letter-spacing:118.541280px;}
.ls1c{letter-spacing:122.861280px;}
.ls21{letter-spacing:137.261280px;}
.ls1a{letter-spacing:140.141280px;}
.ls18{letter-spacing:158.861280px;}
.ls1f{letter-spacing:163.181280px;}
.ls19{letter-spacing:172.236000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.ws19{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.wsf{word-spacing:-15.948000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws12{word-spacing:-15.137280px;}
.ws16{word-spacing:-14.970240px;}
.ws18{word-spacing:-14.702640px;}
.ws15{word-spacing:-14.564040px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wse{word-spacing:-13.074720px;}
.wsd{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsc{word-spacing:-11.634720px;}
.ws9{word-spacing:-11.598720px;}
.wsb{word-spacing:-11.400720px;}
.ws8{word-spacing:-11.298720px;}
.wsa{word-spacing:-11.160720px;}
.ws10{word-spacing:-10.440000px;}
.ws13{word-spacing:-9.521280px;}
.ws14{word-spacing:0.000000px;}
._1a{margin-left:-81.673920px;}
._17{margin-left:-5.852160px;}
._b{margin-left:-4.576320px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._4{width:2.947680px;}
._6{width:4.134240px;}
._5{width:5.806560px;}
._c{width:6.826320px;}
._7{width:8.120640px;}
._d{width:9.726960px;}
._14{width:10.879920px;}
._2{width:12.068640px;}
._f{width:13.618320px;}
._10{width:15.261120px;}
._12{width:17.606640px;}
._11{width:18.983760px;}
._1b{width:20.022480px;}
._e{width:21.024000px;}
._16{width:22.109760px;}
._15{width:23.250240px;}
._22{width:25.064640px;}
._21{width:26.588160px;}
._19{width:29.036160px;}
._18{width:30.464640px;}
._9{width:32.469120px;}
._8{width:33.716160px;}
._a{width:35.252880px;}
._1e{width:108.433440px;}
._1d{width:110.120160px;}
._1f{width:127.048320px;}
._20{width:128.105760px;}
._1c{width:145.596000px;}
._13{width:172.092000px;}
.fca{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(229,229,229);}
.fc8{color:rgb(166,166,166);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(204,204,204);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y126{bottom:3.600000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.y6{bottom:60.480000px;}
.y3{bottom:82.116000px;}
.y184{bottom:111.636000px;}
.y19a{bottom:111.996000px;}
.ya2{bottom:112.716000px;}
.y138{bottom:114.516000px;}
.y39{bottom:115.236000px;}
.y158{bottom:116.316000px;}
.yd3{bottom:118.116000px;}
.ybd{bottom:118.476000px;}
.y6f{bottom:119.556000px;}
.y108{bottom:125.316000px;}
.y183{bottom:130.716000px;}
.ya1{bottom:131.796000px;}
.y199{bottom:132.516000px;}
.y137{bottom:133.596000px;}
.y38{bottom:134.316000px;}
.y157{bottom:135.396000px;}
.yd2{bottom:137.196000px;}
.ybc{bottom:137.556000px;}
.y6e{bottom:138.636000px;}
.y107{bottom:144.396000px;}
.y182{bottom:149.436000px;}
.ya0{bottom:150.510000px;}
.y136{bottom:152.670000px;}
.y198{bottom:153.030000px;}
.y37{bottom:153.390000px;}
.y156{bottom:154.110000px;}
.ybb{bottom:156.270000px;}
.y6d{bottom:157.710000px;}
.y106{bottom:163.470000px;}
.y181{bottom:168.510000px;}
.y9f{bottom:169.590000px;}
.y135{bottom:171.750000px;}
.y36{bottom:172.110000px;}
.y155{bottom:173.190000px;}
.y197{bottom:173.550000px;}
.yd1{bottom:174.990000px;}
.yba{bottom:175.350000px;}
.y6c{bottom:176.790000px;}
.y105{bottom:182.190000px;}
.y180{bottom:187.590000px;}
.y9e{bottom:188.670000px;}
.y134{bottom:190.470000px;}
.y35{bottom:191.190000px;}
.y154{bottom:192.270000px;}
.yd0{bottom:194.070000px;}
.yb9{bottom:194.430000px;}
.y6b{bottom:195.510000px;}
.y104{bottom:201.315000px;}
.y17f{bottom:206.355000px;}
.y9d{bottom:207.795000px;}
.y133{bottom:209.595000px;}
.y34{bottom:210.315000px;}
.y153{bottom:211.395000px;}
.ycf{bottom:213.195000px;}
.yb8{bottom:213.555000px;}
.y6a{bottom:214.635000px;}
.y103{bottom:220.395000px;}
.y17e{bottom:225.435000px;}
.y9c{bottom:226.515000px;}
.y132{bottom:228.675000px;}
.y33{bottom:229.395000px;}
.y152{bottom:230.115000px;}
.yce{bottom:231.915000px;}
.yb7{bottom:232.275000px;}
.y69{bottom:233.715000px;}
.y196{bottom:235.155000px;}
.y102{bottom:239.475000px;}
.y17d{bottom:244.515000px;}
.y9b{bottom:245.595000px;}
.ycd{bottom:247.395000px;}
.y32{bottom:248.115000px;}
.y151{bottom:249.195000px;}
.yb6{bottom:251.355000px;}
.y68{bottom:252.435000px;}
.y195{bottom:255.315000px;}
.y101{bottom:258.195000px;}
.y17c{bottom:263.235000px;}
.y9a{bottom:264.675000px;}
.y131{bottom:266.475000px;}
.y31{bottom:267.195000px;}
.y150{bottom:268.275000px;}
.yb5{bottom:270.435000px;}
.y67{bottom:271.515000px;}
.y194{bottom:275.835000px;}
.y100{bottom:277.275000px;}
.y17b{bottom:282.315000px;}
.y99{bottom:283.395000px;}
.y130{bottom:285.555000px;}
.y30{bottom:286.275000px;}
.y14f{bottom:286.995000px;}
.yb4{bottom:289.155000px;}
.y66{bottom:290.595000px;}
.yff{bottom:296.355000px;}
.y17a{bottom:301.395000px;}
.y98{bottom:302.475000px;}
.y12f{bottom:304.275000px;}
.y2f{bottom:304.995000px;}
.y14e{bottom:306.075000px;}
.yb3{bottom:308.235000px;}
.y65{bottom:309.315000px;}
.yfe{bottom:316.515000px;}
.y193{bottom:316.875000px;}
.y179{bottom:320.475000px;}
.y97{bottom:321.555000px;}
.y12e{bottom:323.385000px;}
.y2e{bottom:324.105000px;}
.y14d{bottom:325.185000px;}
.yb2{bottom:327.345000px;}
.y64{bottom:328.425000px;}
.yfd{bottom:337.065000px;}
.y192{bottom:337.425000px;}
.y178{bottom:339.225000px;}
.y96{bottom:340.305000px;}
.y12d{bottom:342.465000px;}
.y2d{bottom:343.185000px;}
.y14c{bottom:344.265000px;}
.yb1{bottom:346.065000px;}
.y63{bottom:347.505000px;}
.y191{bottom:357.945000px;}
.y177{bottom:358.305000px;}
.yfc{bottom:358.665000px;}
.y95{bottom:359.385000px;}
.y12c{bottom:361.545000px;}
.y2c{bottom:362.265000px;}
.y14b{bottom:362.985000px;}
.ye2{bottom:363.705000px;}
.yb0{bottom:365.145000px;}
.y62{bottom:366.585000px;}
.y176{bottom:377.385000px;}
.y94{bottom:378.465000px;}
.yfb{bottom:379.185000px;}
.y12b{bottom:380.265000px;}
.y2b{bottom:380.985000px;}
.y14a{bottom:382.065000px;}
.ye1{bottom:382.425000px;}
.yaf{bottom:384.225000px;}
.y61{bottom:385.305000px;}
.y175{bottom:396.105000px;}
.y93{bottom:397.545000px;}
.ye0{bottom:397.905000px;}
.y190{bottom:398.985000px;}
.y12a{bottom:399.345000px;}
.yae{bottom:399.705000px;}
.y2a{bottom:400.065000px;}
.y149{bottom:401.145000px;}
.y60{bottom:404.385000px;}
.y174{bottom:415.185000px;}
.y129{bottom:415.545000px;}
.y92{bottom:416.265000px;}
.y29{bottom:419.145000px;}
.y18f{bottom:419.505000px;}
.y148{bottom:419.865000px;}
.yfa{bottom:421.305000px;}
.y5f{bottom:423.465000px;}
.y173{bottom:434.265000px;}
.y91{bottom:435.345000px;}
.y28{bottom:437.865000px;}
.y147{bottom:438.945000px;}
.y18e{bottom:439.665000px;}
.yf9{bottom:441.825000px;}
.y5e{bottom:442.185000px;}
.y172{bottom:453.030000px;}
.y90{bottom:454.470000px;}
.y128{bottom:454.830000px;}
.y27{bottom:456.990000px;}
.y146{bottom:458.070000px;}
.y18d{bottom:460.230000px;}
.y5d{bottom:461.310000px;}
.yf8{bottom:463.470000px;}
.y171{bottom:472.110000px;}
.y8f{bottom:474.630000px;}
.y26{bottom:476.070000px;}
.y145{bottom:476.790000px;}
.y18c{bottom:480.750000px;}
.y5c{bottom:481.830000px;}
.yf7{bottom:483.990000px;}
.y170{bottom:491.190000px;}
.y8e{bottom:494.070000px;}
.y127{bottom:494.430000px;}
.y25{bottom:494.790000px;}
.y144{bottom:495.870000px;}
.y5b{bottom:501.270000px;}
.yf6{bottom:504.510000px;}
.y16f{bottom:510.270000px;}
.y8d{bottom:513.150000px;}
.y24{bottom:513.870000px;}
.y125{bottom:514.230000px;}
.y143{bottom:514.950000px;}
.y5a{bottom:519.990000px;}
.y18b{bottom:521.790000px;}
.yf5{bottom:526.110000px;}
.y16e{bottom:528.990000px;}
.y8c{bottom:532.230000px;}
.y23{bottom:532.950000px;}
.y142{bottom:534.030000px;}
.ycc{bottom:535.470000px;}
.y124{bottom:537.270000px;}
.y59{bottom:539.070000px;}
.y18a{bottom:542.310000px;}
.yf4{bottom:546.630000px;}
.y16d{bottom:548.070000px;}
.y8b{bottom:550.950000px;}
.y22{bottom:552.030000px;}
.y141{bottom:552.750000px;}
.ycb{bottom:554.550000px;}
.y123{bottom:556.350000px;}
.y58{bottom:558.150000px;}
.y189{bottom:562.830000px;}
.yf3{bottom:567.150000px;}
.y8a{bottom:570.030000px;}
.y21{bottom:570.750000px;}
.y140{bottom:571.830000px;}
.yca{bottom:573.270000px;}
.y122{bottom:575.460000px;}
.y57{bottom:576.900000px;}
.y188{bottom:583.380000px;}
.y16c{bottom:585.900000px;}
.yf2{bottom:587.340000px;}
.y89{bottom:589.140000px;}
.y20{bottom:589.860000px;}
.y13f{bottom:590.940000px;}
.yc9{bottom:592.380000px;}
.y121{bottom:594.540000px;}
.y56{bottom:595.980000px;}
.y187{bottom:603.540000px;}
.y16b{bottom:604.980000px;}
.yf1{bottom:606.420000px;}
.y88{bottom:607.860000px;}
.y1f{bottom:608.940000px;}
.y13e{bottom:609.660000px;}
.yc8{bottom:611.460000px;}
.y120{bottom:613.260000px;}
.y55{bottom:615.060000px;}
.y16a{bottom:624.060000px;}
.yf0{bottom:625.500000px;}
.y87{bottom:626.940000px;}
.y1e{bottom:627.660000px;}
.y13d{bottom:628.740000px;}
.yc7{bottom:630.540000px;}
.y11f{bottom:632.340000px;}
.y54{bottom:633.780000px;}
.y169{bottom:643.140000px;}
.yef{bottom:644.220000px;}
.y186{bottom:644.580000px;}
.y86{bottom:646.020000px;}
.y1d{bottom:646.740000px;}
.y13c{bottom:647.820000px;}
.yc6{bottom:649.260000px;}
.y11e{bottom:651.420000px;}
.y53{bottom:652.860000px;}
.y168{bottom:661.860000px;}
.yee{bottom:663.300000px;}
.y85{bottom:664.740000px;}
.y185{bottom:665.100000px;}
.y1c{bottom:665.820000px;}
.y13b{bottom:666.540000px;}
.yc5{bottom:668.340000px;}
.y11d{bottom:670.140000px;}
.y52{bottom:671.940000px;}
.y167{bottom:680.940000px;}
.yed{bottom:682.380000px;}
.y84{bottom:683.820000px;}
.y1b{bottom:684.540000px;}
.ydf{bottom:684.900000px;}
.y13a{bottom:685.620000px;}
.yc4{bottom:687.420000px;}
.y11c{bottom:689.220000px;}
.y51{bottom:691.020000px;}
.y166{bottom:700.020000px;}
.yec{bottom:701.130000px;}
.y83{bottom:702.930000px;}
.y1a{bottom:703.650000px;}
.yde{bottom:704.010000px;}
.y139{bottom:704.730000px;}
.yc3{bottom:706.170000px;}
.y11b{bottom:708.330000px;}
.y50{bottom:709.770000px;}
.y165{bottom:718.770000px;}
.yeb{bottom:720.210000px;}
.y82{bottom:722.010000px;}
.y19{bottom:722.730000px;}
.yad{bottom:723.810000px;}
.yc2{bottom:725.250000px;}
.y11a{bottom:727.410000px;}
.y4f{bottom:728.850000px;}
.y164{bottom:737.850000px;}
.yea{bottom:739.290000px;}
.y81{bottom:740.730000px;}
.y18{bottom:741.450000px;}
.ydd{bottom:741.810000px;}
.yac{bottom:742.530000px;}
.yc1{bottom:744.330000px;}
.y119{bottom:746.130000px;}
.y4e{bottom:747.930000px;}
.y1a8{bottom:755.850000px;}
.y163{bottom:756.930000px;}
.ye9{bottom:758.370000px;}
.y80{bottom:759.810000px;}
.y17{bottom:760.530000px;}
.ydc{bottom:760.890000px;}
.yab{bottom:761.610000px;}
.yc0{bottom:763.410000px;}
.y4d{bottom:766.650000px;}
.y162{bottom:775.650000px;}
.ye8{bottom:777.090000px;}
.y7f{bottom:778.890000px;}
.ydb{bottom:779.610000px;}
.yaa{bottom:780.690000px;}
.y16{bottom:781.770000px;}
.ybf{bottom:782.130000px;}
.y4c{bottom:785.730000px;}
.y118{bottom:787.170000px;}
.y161{bottom:794.730000px;}
.y1a7{bottom:795.810000px;}
.ye7{bottom:796.170000px;}
.y7e{bottom:797.610000px;}
.yda{bottom:798.690000px;}
.ya9{bottom:799.410000px;}
.ybe{bottom:801.210000px;}
.y4b{bottom:804.810000px;}
.y15{bottom:807.330000px;}
.y117{bottom:808.770000px;}
.y160{bottom:813.810000px;}
.ye6{bottom:815.250000px;}
.y7d{bottom:816.690000px;}
.yd9{bottom:817.770000px;}
.ya8{bottom:818.490000px;}
.y4a{bottom:823.530000px;}
.y116{bottom:829.335000px;}
.y15f{bottom:832.935000px;}
.y14{bottom:833.295000px;}
.ye5{bottom:834.015000px;}
.y7c{bottom:835.815000px;}
.yd8{bottom:836.535000px;}
.ya7{bottom:837.615000px;}
.y49{bottom:842.655000px;}
.y115{bottom:850.935000px;}
.y15e{bottom:851.655000px;}
.ye4{bottom:853.095000px;}
.y7b{bottom:854.895000px;}
.yd7{bottom:855.615000px;}
.ya6{bottom:856.695000px;}
.y13{bottom:858.855000px;}
.y48{bottom:861.735000px;}
.ye3{bottom:868.575000px;}
.y15d{bottom:870.735000px;}
.y114{bottom:871.455000px;}
.y7a{bottom:873.615000px;}
.yd6{bottom:874.695000px;}
.ya5{bottom:875.415000px;}
.y1a6{bottom:875.775000px;}
.y47{bottom:880.815000px;}
.y15c{bottom:889.815000px;}
.y113{bottom:891.615000px;}
.y79{bottom:892.695000px;}
.yd5{bottom:893.775000px;}
.y12{bottom:894.135000px;}
.ya4{bottom:894.495000px;}
.y1a5{bottom:894.855000px;}
.y15b{bottom:908.535000px;}
.yd4{bottom:908.895000px;}
.y112{bottom:910.695000px;}
.y78{bottom:911.775000px;}
.y46{bottom:912.855000px;}
.ya3{bottom:913.575000px;}
.y15a{bottom:928.335000px;}
.y77{bottom:930.495000px;}
.y111{bottom:930.855000px;}
.y45{bottom:932.295000px;}
.y1a4{bottom:936.255000px;}
.y76{bottom:949.575000px;}
.y44{bottom:951.375000px;}
.y110{bottom:951.735000px;}
.y11{bottom:954.645000px;}
.y1a3{bottom:956.805000px;}
.y10{bottom:965.805000px;}
.y75{bottom:968.685000px;}
.y43{bottom:970.485000px;}
.y10f{bottom:973.365000px;}
.y1a2{bottom:977.325000px;}
.y74{bottom:987.405000px;}
.y42{bottom:989.205000px;}
.yf{bottom:991.005000px;}
.y10e{bottom:993.525000px;}
.y1a1{bottom:997.845000px;}
.y73{bottom:1006.485000px;}
.y159{bottom:1007.925000px;}
.y41{bottom:1008.285000px;}
.ye{bottom:1012.245000px;}
.y10d{bottom:1014.045000px;}
.y1a0{bottom:1018.365000px;}
.y72{bottom:1025.565000px;}
.y40{bottom:1027.365000px;}
.yd{bottom:1034.205000px;}
.y10c{bottom:1035.285000px;}
.y19f{bottom:1038.525000px;}
.y71{bottom:1044.645000px;}
.y3f{bottom:1046.445000px;}
.yc{bottom:1056.165000px;}
.y19e{bottom:1059.045000px;}
.y70{bottom:1064.805000px;}
.y3e{bottom:1065.165000px;}
.yb{bottom:1073.445000px;}
.y10b{bottom:1077.765000px;}
.y19d{bottom:1079.610000px;}
.y3d{bottom:1084.290000px;}
.ya{bottom:1090.770000px;}
.y10a{bottom:1099.410000px;}
.y19c{bottom:1100.130000px;}
.y3c{bottom:1103.370000px;}
.y9{bottom:1108.050000px;}
.y19b{bottom:1120.650000px;}
.y109{bottom:1121.010000px;}
.y3b{bottom:1122.090000px;}
.y8{bottom:1125.330000px;}
.y3a{bottom:1141.170000px;}
.y7{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y5{bottom:1206.000000px;}
.h4{height:18.000000px;}
.h13{height:18.720000px;}
.h15{height:18.756000px;}
.h14{height:19.080000px;}
.h2{height:19.836000px;}
.h9{height:22.960547px;}
.h8{height:41.547656px;}
.ha{height:45.921094px;}
.h11{height:47.383594px;}
.h5{height:48.013594px;}
.h12{height:48.224531px;}
.hd{height:49.122422px;}
.h6{height:53.067656px;}
.he{height:58.121719px;}
.h10{height:58.283437px;}
.hf{height:58.833281px;}
.h16{height:60.450469px;}
.hc{height:67.330547px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.hb{height:85.518281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.800000px;}
.w8{width:82.116000px;}
.w7{width:104.796000px;}
.w3{width:142.632000px;}
.w6{width:189.435000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.x19{left:7.560000px;}
.x17{left:57.639000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xb{left:110.555987px;}
.x11{left:116.315987px;}
.xc{left:130.715987px;}
.xf{left:133.235987px;}
.x1{left:167.115000px;}
.x7{left:218.954987px;}
.xa{left:283.784987px;}
.x18{left:297.105000px;}
.xd{left:328.109987px;}
.x9{left:356.189987px;}
.x8{left:386.069987px;}
.x1a{left:402.630000px;}
.xe{left:446.579987px;}
.x10{left:529.049987px;}
.x16{left:634.214987px;}
.x13{left:669.494987px;}
.x15{left:735.764987px;}
.x4{left:755.565000px;}
.x14{left:807.089987px;}
.x12{left:812.849987px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v1{vertical-align:26.880000pt;}
.lsa{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-1.072000pt;}
.ls17{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.949333pt;}
.ls12{letter-spacing:-0.858667pt;}
.ls10{letter-spacing:-0.682667pt;}
.ls13{letter-spacing:-0.650667pt;}
.lse{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.404267pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.361067pt;}
.ls23{letter-spacing:-0.237867pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.030720pt;}
.ls20{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.192000pt;}
.ls24{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.360960pt;}
.ls7{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls14{letter-spacing:0.629333pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.736000pt;}
.ls3{letter-spacing:2.240000pt;}
.ls5{letter-spacing:36.122027pt;}
.ls4{letter-spacing:39.962027pt;}
.ls1d{letter-spacing:105.370027pt;}
.ls1c{letter-spacing:109.210027pt;}
.ls21{letter-spacing:122.010027pt;}
.ls1a{letter-spacing:124.570027pt;}
.ls18{letter-spacing:141.210027pt;}
.ls1f{letter-spacing:145.050027pt;}
.ls19{letter-spacing:153.098667pt;}
.ws17{word-spacing:-58.880000pt;}
.ws19{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.wsf{word-spacing:-14.176000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws12{word-spacing:-13.455360pt;}
.ws16{word-spacing:-13.306880pt;}
.ws18{word-spacing:-13.069013pt;}
.ws15{word-spacing:-12.945813pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wse{word-spacing:-11.621973pt;}
.wsd{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.341973pt;}
.ws9{word-spacing:-10.309973pt;}
.wsb{word-spacing:-10.133973pt;}
.ws8{word-spacing:-10.043307pt;}
.wsa{word-spacing:-9.920640pt;}
.ws10{word-spacing:-9.280000pt;}
.ws13{word-spacing:-8.463360pt;}
.ws14{word-spacing:0.000000pt;}
._1a{margin-left:-72.599040pt;}
._17{margin-left:-5.201920pt;}
._b{margin-left:-4.067840pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._4{width:2.620160pt;}
._6{width:3.674880pt;}
._5{width:5.161387pt;}
._c{width:6.067840pt;}
._7{width:7.218347pt;}
._d{width:8.646187pt;}
._14{width:9.671040pt;}
._2{width:10.727680pt;}
._f{width:12.105173pt;}
._10{width:13.565440pt;}
._12{width:15.650347pt;}
._11{width:16.874453pt;}
._1b{width:17.797760pt;}
._e{width:18.688000pt;}
._16{width:19.653120pt;}
._15{width:20.666880pt;}
._22{width:22.279680pt;}
._21{width:23.633920pt;}
._19{width:25.809920pt;}
._18{width:27.079680pt;}
._9{width:28.861440pt;}
._8{width:29.969920pt;}
._a{width:31.335893pt;}
._1e{width:96.385280pt;}
._1d{width:97.884587pt;}
._1f{width:112.931840pt;}
._20{width:113.871787pt;}
._1c{width:129.418667pt;}
._13{width:152.970667pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y126{bottom:3.200000pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.y6{bottom:53.760000pt;}
.y3{bottom:72.992000pt;}
.y184{bottom:99.232000pt;}
.y19a{bottom:99.552000pt;}
.ya2{bottom:100.192000pt;}
.y138{bottom:101.792000pt;}
.y39{bottom:102.432000pt;}
.y158{bottom:103.392000pt;}
.yd3{bottom:104.992000pt;}
.ybd{bottom:105.312000pt;}
.y6f{bottom:106.272000pt;}
.y108{bottom:111.392000pt;}
.y183{bottom:116.192000pt;}
.ya1{bottom:117.152000pt;}
.y199{bottom:117.792000pt;}
.y137{bottom:118.752000pt;}
.y38{bottom:119.392000pt;}
.y157{bottom:120.352000pt;}
.yd2{bottom:121.952000pt;}
.ybc{bottom:122.272000pt;}
.y6e{bottom:123.232000pt;}
.y107{bottom:128.352000pt;}
.y182{bottom:132.832000pt;}
.ya0{bottom:133.786667pt;}
.y136{bottom:135.706667pt;}
.y198{bottom:136.026667pt;}
.y37{bottom:136.346667pt;}
.y156{bottom:136.986667pt;}
.ybb{bottom:138.906667pt;}
.y6d{bottom:140.186667pt;}
.y106{bottom:145.306667pt;}
.y181{bottom:149.786667pt;}
.y9f{bottom:150.746667pt;}
.y135{bottom:152.666667pt;}
.y36{bottom:152.986667pt;}
.y155{bottom:153.946667pt;}
.y197{bottom:154.266667pt;}
.yd1{bottom:155.546667pt;}
.yba{bottom:155.866667pt;}
.y6c{bottom:157.146667pt;}
.y105{bottom:161.946667pt;}
.y180{bottom:166.746667pt;}
.y9e{bottom:167.706667pt;}
.y134{bottom:169.306667pt;}
.y35{bottom:169.946667pt;}
.y154{bottom:170.906667pt;}
.yd0{bottom:172.506667pt;}
.yb9{bottom:172.826667pt;}
.y6b{bottom:173.786667pt;}
.y104{bottom:178.946667pt;}
.y17f{bottom:183.426667pt;}
.y9d{bottom:184.706667pt;}
.y133{bottom:186.306667pt;}
.y34{bottom:186.946667pt;}
.y153{bottom:187.906667pt;}
.ycf{bottom:189.506667pt;}
.yb8{bottom:189.826667pt;}
.y6a{bottom:190.786667pt;}
.y103{bottom:195.906667pt;}
.y17e{bottom:200.386667pt;}
.y9c{bottom:201.346667pt;}
.y132{bottom:203.266667pt;}
.y33{bottom:203.906667pt;}
.y152{bottom:204.546667pt;}
.yce{bottom:206.146667pt;}
.yb7{bottom:206.466667pt;}
.y69{bottom:207.746667pt;}
.y196{bottom:209.026667pt;}
.y102{bottom:212.866667pt;}
.y17d{bottom:217.346667pt;}
.y9b{bottom:218.306667pt;}
.ycd{bottom:219.906667pt;}
.y32{bottom:220.546667pt;}
.y151{bottom:221.506667pt;}
.yb6{bottom:223.426667pt;}
.y68{bottom:224.386667pt;}
.y195{bottom:226.946667pt;}
.y101{bottom:229.506667pt;}
.y17c{bottom:233.986667pt;}
.y9a{bottom:235.266667pt;}
.y131{bottom:236.866667pt;}
.y31{bottom:237.506667pt;}
.y150{bottom:238.466667pt;}
.yb5{bottom:240.386667pt;}
.y67{bottom:241.346667pt;}
.y194{bottom:245.186667pt;}
.y100{bottom:246.466667pt;}
.y17b{bottom:250.946667pt;}
.y99{bottom:251.906667pt;}
.y130{bottom:253.826667pt;}
.y30{bottom:254.466667pt;}
.y14f{bottom:255.106667pt;}
.yb4{bottom:257.026667pt;}
.y66{bottom:258.306667pt;}
.yff{bottom:263.426667pt;}
.y17a{bottom:267.906667pt;}
.y98{bottom:268.866667pt;}
.y12f{bottom:270.466667pt;}
.y2f{bottom:271.106667pt;}
.y14e{bottom:272.066667pt;}
.yb3{bottom:273.986667pt;}
.y65{bottom:274.946667pt;}
.yfe{bottom:281.346667pt;}
.y193{bottom:281.666667pt;}
.y179{bottom:284.866667pt;}
.y97{bottom:285.826667pt;}
.y12e{bottom:287.453333pt;}
.y2e{bottom:288.093333pt;}
.y14d{bottom:289.053333pt;}
.yb2{bottom:290.973333pt;}
.y64{bottom:291.933333pt;}
.yfd{bottom:299.613333pt;}
.y192{bottom:299.933333pt;}
.y178{bottom:301.533333pt;}
.y96{bottom:302.493333pt;}
.y12d{bottom:304.413333pt;}
.y2d{bottom:305.053333pt;}
.y14c{bottom:306.013333pt;}
.yb1{bottom:307.613333pt;}
.y63{bottom:308.893333pt;}
.y191{bottom:318.173333pt;}
.y177{bottom:318.493333pt;}
.yfc{bottom:318.813333pt;}
.y95{bottom:319.453333pt;}
.y12c{bottom:321.373333pt;}
.y2c{bottom:322.013333pt;}
.y14b{bottom:322.653333pt;}
.ye2{bottom:323.293333pt;}
.yb0{bottom:324.573333pt;}
.y62{bottom:325.853333pt;}
.y176{bottom:335.453333pt;}
.y94{bottom:336.413333pt;}
.yfb{bottom:337.053333pt;}
.y12b{bottom:338.013333pt;}
.y2b{bottom:338.653333pt;}
.y14a{bottom:339.613333pt;}
.ye1{bottom:339.933333pt;}
.yaf{bottom:341.533333pt;}
.y61{bottom:342.493333pt;}
.y175{bottom:352.093333pt;}
.y93{bottom:353.373333pt;}
.ye0{bottom:353.693333pt;}
.y190{bottom:354.653333pt;}
.y12a{bottom:354.973333pt;}
.yae{bottom:355.293333pt;}
.y2a{bottom:355.613333pt;}
.y149{bottom:356.573333pt;}
.y60{bottom:359.453333pt;}
.y174{bottom:369.053333pt;}
.y129{bottom:369.373333pt;}
.y92{bottom:370.013333pt;}
.y29{bottom:372.573333pt;}
.y18f{bottom:372.893333pt;}
.y148{bottom:373.213333pt;}
.yfa{bottom:374.493333pt;}
.y5f{bottom:376.413333pt;}
.y173{bottom:386.013333pt;}
.y91{bottom:386.973333pt;}
.y28{bottom:389.213333pt;}
.y147{bottom:390.173333pt;}
.y18e{bottom:390.813333pt;}
.yf9{bottom:392.733333pt;}
.y5e{bottom:393.053333pt;}
.y172{bottom:402.693333pt;}
.y90{bottom:403.973333pt;}
.y128{bottom:404.293333pt;}
.y27{bottom:406.213333pt;}
.y146{bottom:407.173333pt;}
.y18d{bottom:409.093333pt;}
.y5d{bottom:410.053333pt;}
.yf8{bottom:411.973333pt;}
.y171{bottom:419.653333pt;}
.y8f{bottom:421.893333pt;}
.y26{bottom:423.173333pt;}
.y145{bottom:423.813333pt;}
.y18c{bottom:427.333333pt;}
.y5c{bottom:428.293333pt;}
.yf7{bottom:430.213333pt;}
.y170{bottom:436.613333pt;}
.y8e{bottom:439.173333pt;}
.y127{bottom:439.493333pt;}
.y25{bottom:439.813333pt;}
.y144{bottom:440.773333pt;}
.y5b{bottom:445.573333pt;}
.yf6{bottom:448.453333pt;}
.y16f{bottom:453.573333pt;}
.y8d{bottom:456.133333pt;}
.y24{bottom:456.773333pt;}
.y125{bottom:457.093333pt;}
.y143{bottom:457.733333pt;}
.y5a{bottom:462.213333pt;}
.y18b{bottom:463.813333pt;}
.yf5{bottom:467.653333pt;}
.y16e{bottom:470.213333pt;}
.y8c{bottom:473.093333pt;}
.y23{bottom:473.733333pt;}
.y142{bottom:474.693333pt;}
.ycc{bottom:475.973333pt;}
.y124{bottom:477.573333pt;}
.y59{bottom:479.173333pt;}
.y18a{bottom:482.053333pt;}
.yf4{bottom:485.893333pt;}
.y16d{bottom:487.173333pt;}
.y8b{bottom:489.733333pt;}
.y22{bottom:490.693333pt;}
.y141{bottom:491.333333pt;}
.ycb{bottom:492.933333pt;}
.y123{bottom:494.533333pt;}
.y58{bottom:496.133333pt;}
.y189{bottom:500.293333pt;}
.yf3{bottom:504.133333pt;}
.y8a{bottom:506.693333pt;}
.y21{bottom:507.333333pt;}
.y140{bottom:508.293333pt;}
.yca{bottom:509.573333pt;}
.y122{bottom:511.520000pt;}
.y57{bottom:512.800000pt;}
.y188{bottom:518.560000pt;}
.y16c{bottom:520.800000pt;}
.yf2{bottom:522.080000pt;}
.y89{bottom:523.680000pt;}
.y20{bottom:524.320000pt;}
.y13f{bottom:525.280000pt;}
.yc9{bottom:526.560000pt;}
.y121{bottom:528.480000pt;}
.y56{bottom:529.760000pt;}
.y187{bottom:536.480000pt;}
.y16b{bottom:537.760000pt;}
.yf1{bottom:539.040000pt;}
.y88{bottom:540.320000pt;}
.y1f{bottom:541.280000pt;}
.y13e{bottom:541.920000pt;}
.yc8{bottom:543.520000pt;}
.y120{bottom:545.120000pt;}
.y55{bottom:546.720000pt;}
.y16a{bottom:554.720000pt;}
.yf0{bottom:556.000000pt;}
.y87{bottom:557.280000pt;}
.y1e{bottom:557.920000pt;}
.y13d{bottom:558.880000pt;}
.yc7{bottom:560.480000pt;}
.y11f{bottom:562.080000pt;}
.y54{bottom:563.360000pt;}
.y169{bottom:571.680000pt;}
.yef{bottom:572.640000pt;}
.y186{bottom:572.960000pt;}
.y86{bottom:574.240000pt;}
.y1d{bottom:574.880000pt;}
.y13c{bottom:575.840000pt;}
.yc6{bottom:577.120000pt;}
.y11e{bottom:579.040000pt;}
.y53{bottom:580.320000pt;}
.y168{bottom:588.320000pt;}
.yee{bottom:589.600000pt;}
.y85{bottom:590.880000pt;}
.y185{bottom:591.200000pt;}
.y1c{bottom:591.840000pt;}
.y13b{bottom:592.480000pt;}
.yc5{bottom:594.080000pt;}
.y11d{bottom:595.680000pt;}
.y52{bottom:597.280000pt;}
.y167{bottom:605.280000pt;}
.yed{bottom:606.560000pt;}
.y84{bottom:607.840000pt;}
.y1b{bottom:608.480000pt;}
.ydf{bottom:608.800000pt;}
.y13a{bottom:609.440000pt;}
.yc4{bottom:611.040000pt;}
.y11c{bottom:612.640000pt;}
.y51{bottom:614.240000pt;}
.y166{bottom:622.240000pt;}
.yec{bottom:623.226667pt;}
.y83{bottom:624.826667pt;}
.y1a{bottom:625.466667pt;}
.yde{bottom:625.786667pt;}
.y139{bottom:626.426667pt;}
.yc3{bottom:627.706667pt;}
.y11b{bottom:629.626667pt;}
.y50{bottom:630.906667pt;}
.y165{bottom:638.906667pt;}
.yeb{bottom:640.186667pt;}
.y82{bottom:641.786667pt;}
.y19{bottom:642.426667pt;}
.yad{bottom:643.386667pt;}
.yc2{bottom:644.666667pt;}
.y11a{bottom:646.586667pt;}
.y4f{bottom:647.866667pt;}
.y164{bottom:655.866667pt;}
.yea{bottom:657.146667pt;}
.y81{bottom:658.426667pt;}
.y18{bottom:659.066667pt;}
.ydd{bottom:659.386667pt;}
.yac{bottom:660.026667pt;}
.yc1{bottom:661.626667pt;}
.y119{bottom:663.226667pt;}
.y4e{bottom:664.826667pt;}
.y1a8{bottom:671.866667pt;}
.y163{bottom:672.826667pt;}
.ye9{bottom:674.106667pt;}
.y80{bottom:675.386667pt;}
.y17{bottom:676.026667pt;}
.ydc{bottom:676.346667pt;}
.yab{bottom:676.986667pt;}
.yc0{bottom:678.586667pt;}
.y4d{bottom:681.466667pt;}
.y162{bottom:689.466667pt;}
.ye8{bottom:690.746667pt;}
.y7f{bottom:692.346667pt;}
.ydb{bottom:692.986667pt;}
.yaa{bottom:693.946667pt;}
.y16{bottom:694.906667pt;}
.ybf{bottom:695.226667pt;}
.y4c{bottom:698.426667pt;}
.y118{bottom:699.706667pt;}
.y161{bottom:706.426667pt;}
.y1a7{bottom:707.386667pt;}
.ye7{bottom:707.706667pt;}
.y7e{bottom:708.986667pt;}
.yda{bottom:709.946667pt;}
.ya9{bottom:710.586667pt;}
.ybe{bottom:712.186667pt;}
.y4b{bottom:715.386667pt;}
.y15{bottom:717.626667pt;}
.y117{bottom:718.906667pt;}
.y160{bottom:723.386667pt;}
.ye6{bottom:724.666667pt;}
.y7d{bottom:725.946667pt;}
.yd9{bottom:726.906667pt;}
.ya8{bottom:727.546667pt;}
.y4a{bottom:732.026667pt;}
.y116{bottom:737.186667pt;}
.y15f{bottom:740.386667pt;}
.y14{bottom:740.706667pt;}
.ye5{bottom:741.346667pt;}
.y7c{bottom:742.946667pt;}
.yd8{bottom:743.586667pt;}
.ya7{bottom:744.546667pt;}
.y49{bottom:749.026667pt;}
.y115{bottom:756.386667pt;}
.y15e{bottom:757.026667pt;}
.ye4{bottom:758.306667pt;}
.y7b{bottom:759.906667pt;}
.yd7{bottom:760.546667pt;}
.ya6{bottom:761.506667pt;}
.y13{bottom:763.426667pt;}
.y48{bottom:765.986667pt;}
.ye3{bottom:772.066667pt;}
.y15d{bottom:773.986667pt;}
.y114{bottom:774.626667pt;}
.y7a{bottom:776.546667pt;}
.yd6{bottom:777.506667pt;}
.ya5{bottom:778.146667pt;}
.y1a6{bottom:778.466667pt;}
.y47{bottom:782.946667pt;}
.y15c{bottom:790.946667pt;}
.y113{bottom:792.546667pt;}
.y79{bottom:793.506667pt;}
.yd5{bottom:794.466667pt;}
.y12{bottom:794.786667pt;}
.ya4{bottom:795.106667pt;}
.y1a5{bottom:795.426667pt;}
.y15b{bottom:807.586667pt;}
.yd4{bottom:807.906667pt;}
.y112{bottom:809.506667pt;}
.y78{bottom:810.466667pt;}
.y46{bottom:811.426667pt;}
.ya3{bottom:812.066667pt;}
.y15a{bottom:825.186667pt;}
.y77{bottom:827.106667pt;}
.y111{bottom:827.426667pt;}
.y45{bottom:828.706667pt;}
.y1a4{bottom:832.226667pt;}
.y76{bottom:844.066667pt;}
.y44{bottom:845.666667pt;}
.y110{bottom:845.986667pt;}
.y11{bottom:848.573333pt;}
.y1a3{bottom:850.493333pt;}
.y10{bottom:858.493333pt;}
.y75{bottom:861.053333pt;}
.y43{bottom:862.653333pt;}
.y10f{bottom:865.213333pt;}
.y1a2{bottom:868.733333pt;}
.y74{bottom:877.693333pt;}
.y42{bottom:879.293333pt;}
.yf{bottom:880.893333pt;}
.y10e{bottom:883.133333pt;}
.y1a1{bottom:886.973333pt;}
.y73{bottom:894.653333pt;}
.y159{bottom:895.933333pt;}
.y41{bottom:896.253333pt;}
.ye{bottom:899.773333pt;}
.y10d{bottom:901.373333pt;}
.y1a0{bottom:905.213333pt;}
.y72{bottom:911.613333pt;}
.y40{bottom:913.213333pt;}
.yd{bottom:919.293333pt;}
.y10c{bottom:920.253333pt;}
.y19f{bottom:923.133333pt;}
.y71{bottom:928.573333pt;}
.y3f{bottom:930.173333pt;}
.yc{bottom:938.813333pt;}
.y19e{bottom:941.373333pt;}
.y70{bottom:946.493333pt;}
.y3e{bottom:946.813333pt;}
.yb{bottom:954.173333pt;}
.y10b{bottom:958.013333pt;}
.y19d{bottom:959.653333pt;}
.y3d{bottom:963.813333pt;}
.ya{bottom:969.573333pt;}
.y10a{bottom:977.253333pt;}
.y19c{bottom:977.893333pt;}
.y3c{bottom:980.773333pt;}
.y9{bottom:984.933333pt;}
.y19b{bottom:996.133333pt;}
.y109{bottom:996.453333pt;}
.y3b{bottom:997.413333pt;}
.y8{bottom:1000.293333pt;}
.y3a{bottom:1014.373333pt;}
.y7{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y5{bottom:1072.000000pt;}
.h4{height:16.000000pt;}
.h13{height:16.640000pt;}
.h15{height:16.672000pt;}
.h14{height:16.960000pt;}
.h2{height:17.632000pt;}
.h9{height:20.409375pt;}
.h8{height:36.931250pt;}
.ha{height:40.818750pt;}
.h11{height:42.118750pt;}
.h5{height:42.678750pt;}
.h12{height:42.866250pt;}
.hd{height:43.664375pt;}
.h6{height:47.171250pt;}
.he{height:51.663750pt;}
.h10{height:51.807500pt;}
.hf{height:52.296250pt;}
.h16{height:53.733750pt;}
.hc{height:59.849375pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.hb{height:76.016250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.600000pt;}
.w8{width:72.992000pt;}
.w7{width:93.152000pt;}
.w3{width:126.784000pt;}
.w6{width:168.386667pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.x19{left:6.720000pt;}
.x17{left:51.234667pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xb{left:98.271988pt;}
.x11{left:103.391988pt;}
.xc{left:116.191988pt;}
.xf{left:118.431988pt;}
.x1{left:148.546667pt;}
.x7{left:194.626655pt;}
.xa{left:252.253322pt;}
.x18{left:264.093333pt;}
.xd{left:291.653322pt;}
.x9{left:316.613322pt;}
.x8{left:343.173322pt;}
.x1a{left:357.893333pt;}
.xe{left:396.959988pt;}
.x10{left:470.266655pt;}
.x16{left:563.746655pt;}
.x13{left:595.106655pt;}
.x15{left:654.013322pt;}
.x4{left:671.613333pt;}
.x14{left:717.413322pt;}
.x12{left:722.533322pt;}
}




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