
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f415a1769b08914c6941e1d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_1b1e6703cc7f4b192f6a30a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_3bbf2112b252f59b40499f48.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_c59b2d11ce6d75b4de3089ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_8f7dee3808630bc3416172f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;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_e2cb68bd818491010820432e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_0b951932e06ac599849a83ef.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_56635fd62722d52718bb6374.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_edd47eba5310967178edbd41.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973633;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_6d859e2e43d814eaeb01719a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;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_7b6597ba9ef99a5a421473d1.woff2')format("woff");}.fff{font-family:fff;line-height:0.957520;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_9e030786e3cf977573e6cefd.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bea09daa461327e1917a24cb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;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_8074bb2517725eb748d8aef6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973145;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_730d89638e6183fb501be944.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973145;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls2e{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.331200px;}
.ls21{letter-spacing:-0.324000px;}
.ls28{letter-spacing:-0.306000px;}
.ls1d{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.234000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.091200px;}
.ls8{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls25{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.048960px;}
.ls24{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.090000px;}
.ls20{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.152640px;}
.ls17{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.234720px;}
.ls22{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.284400px;}
.ls1a{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.331200px;}
.ls9{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.396000px;}
.lsd{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.558000px;}
.ls13{letter-spacing:0.756000px;}
.ls2c{letter-spacing:2.826000px;}
.ls19{letter-spacing:15.786000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws5{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.568000px;}
.ws2{word-spacing:-17.496000px;}
.ws7{word-spacing:-16.824960px;}
.ws10{word-spacing:-14.040000px;}
.ws26{word-spacing:-14.004000px;}
.ws23{word-spacing:-13.986000px;}
.ws18{word-spacing:-13.914000px;}
.ws14{word-spacing:-13.896000px;}
.ws15{word-spacing:-13.824000px;}
.ws11{word-spacing:-13.806000px;}
.ws22{word-spacing:-13.770000px;}
.ws1b{word-spacing:-13.752000px;}
.wsf{word-spacing:-13.716000px;}
.ws1c{word-spacing:-13.518000px;}
.ws13{word-spacing:-13.500000px;}
.ws21{word-spacing:-13.410000px;}
.ws1e{word-spacing:-13.392000px;}
.ws25{word-spacing:-13.302000px;}
.ws17{word-spacing:-13.266000px;}
.ws20{word-spacing:-13.230000px;}
.ws1a{word-spacing:-13.068000px;}
.wse{word-spacing:-13.032000px;}
.wsd{word-spacing:-13.014000px;}
.ws19{word-spacing:-12.978000px;}
.ws1d{word-spacing:-12.834000px;}
.ws24{word-spacing:-12.744000px;}
.ws12{word-spacing:-12.726000px;}
.ws1f{word-spacing:-12.708000px;}
.ws16{word-spacing:-12.690000px;}
.wsb{word-spacing:-11.910240px;}
.wsc{word-spacing:-11.674800px;}
.wsa{word-spacing:-11.625840px;}
.ws3{word-spacing:-10.342080px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2.648400px;}
._1{margin-left:-1.263600px;}
._0{width:1.116000px;}
._7{width:2.259600px;}
._a{width:3.356400px;}
._e{width:4.716000px;}
._6{width:6.192000px;}
._9{width:7.740000px;}
._8{width:9.648000px;}
._b{width:10.800000px;}
._d{width:11.934000px;}
._c{width:14.688000px;}
._15{width:15.876000px;}
._19{width:16.974000px;}
._1b{width:18.480000px;}
._4{width:19.726560px;}
._5{width:20.971440px;}
._3{width:22.790880px;}
._2a{width:23.932800px;}
._16{width:25.704000px;}
._1e{width:26.967600px;}
._1d{width:27.972000px;}
._26{width:28.980000px;}
._1f{width:30.294000px;}
._1a{width:31.800000px;}
._23{width:32.856000px;}
._12{width:33.966000px;}
._20{width:35.172000px;}
._13{width:36.666000px;}
._11{width:38.610000px;}
._1c{width:39.855600px;}
._17{width:41.040000px;}
._18{width:42.660000px;}
._21{width:44.172000px;}
._27{width:45.753600px;}
._f{width:46.764000px;}
._10{width:48.402000px;}
._2c{width:50.274000px;}
._2d{width:51.696000px;}
._14{width:53.622000px;}
._2e{width:54.648000px;}
._24{width:56.106000px;}
._2b{width:57.780000px;}
._2f{width:59.562000px;}
._28{width:65.394000px;}
._29{width:66.690000px;}
._30{width:68.904000px;}
._25{width:86.454000px;}
._31{width:97.956000px;}
._32{width:99.468000px;}
._22{width:105.624000px;}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc6{color:rgb(35,31,32);}
.fcc{color:rgb(33,33,33);}
.fc7{color:rgb(34,34,34);}
.fc3{color:rgb(35,25,22);}
.fce{color:rgb(91,97,107);}
.fc4{color:rgb(0,0,128);}
.fc8{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(0,32,96);}
.fc9{color:rgb(0,112,192);}
.fca{color:rgb(0,147,221);}
.fcd{color:rgb(68,68,68);}
.fcb{color:rgb(12,125,187);}
.fs3{font-size:12.240000px;}
.fsc{font-size:30.240000px;}
.fs7{font-size:33.120000px;}
.fsd{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y42{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y12{bottom:3.240000px;}
.y28{bottom:3.600000px;}
.y2a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y26{bottom:4.860000px;}
.y41{bottom:9.000000px;}
.y3a{bottom:9.165000px;}
.y75{bottom:9.540000px;}
.y71{bottom:9.720000px;}
.y7b{bottom:10.440000px;}
.y8f{bottom:10.800000px;}
.y21{bottom:10.980000px;}
.y24{bottom:14.940000px;}
.y1e{bottom:15.120000px;}
.y15{bottom:15.300000px;}
.y3c{bottom:16.416000px;}
.y10{bottom:20.205000px;}
.y74{bottom:30.060000px;}
.y77{bottom:30.090000px;}
.y40{bottom:30.240000px;}
.y39{bottom:30.585000px;}
.y7a{bottom:30.780000px;}
.y92{bottom:33.840000px;}
.y96{bottom:34.020000px;}
.y14{bottom:45.900000px;}
.y73{bottom:50.580000px;}
.ya1{bottom:50.610000px;}
.y3f{bottom:51.660000px;}
.y1d{bottom:51.690000px;}
.y38{bottom:52.185000px;}
.y5{bottom:58.320000px;}
.yf{bottom:60.885000px;}
.y37{bottom:73.605000px;}
.y2{bottom:74.520000px;}
.y3e{bottom:75.810000px;}
.y1c{bottom:76.350000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y36{bottom:95.025000px;}
.ye{bottom:101.745000px;}
.y1b{bottom:112.890000px;}
.yb4{bottom:115.740000px;}
.y35{bottom:116.445000px;}
.ydd{bottom:116.640000px;}
.yd1{bottom:118.260000px;}
.ybd{bottom:120.420000px;}
.y8c{bottom:125.820000px;}
.y3b{bottom:129.780000px;}
.y6f{bottom:130.320000px;}
.y1a{bottom:137.550000px;}
.y34{bottom:138.045000px;}
.yb3{bottom:138.780000px;}
.ydc{bottom:139.680000px;}
.yd0{bottom:141.300000px;}
.ybc{bottom:143.496000px;}
.y8b{bottom:148.896000px;}
.y6e{bottom:153.210000px;}
.y2b{bottom:155.745000px;}
.y33{bottom:159.465000px;}
.yb2{bottom:161.850000px;}
.ydb{bottom:162.750000px;}
.ycf{bottom:164.370000px;}
.ybb{bottom:166.530000px;}
.y8a{bottom:171.930000px;}
.y19{bottom:174.090000px;}
.y6d{bottom:176.250000px;}
.y32{bottom:180.885000px;}
.yb1{bottom:184.710000px;}
.yda{bottom:185.790000px;}
.yce{bottom:187.410000px;}
.yba{bottom:189.570000px;}
.y89{bottom:194.970000px;}
.y6c{bottom:199.290000px;}
.y31{bottom:202.485000px;}
.yb0{bottom:207.750000px;}
.yd9{bottom:208.650000px;}
.ycd{bottom:210.450000px;}
.yb9{bottom:212.610000px;}
.y88{bottom:218.010000px;}
.y6b{bottom:222.330000px;}
.y30{bottom:223.905000px;}
.yaf{bottom:230.790000px;}
.yd8{bottom:231.690000px;}
.ycc{bottom:233.490000px;}
.yb8{bottom:235.650000px;}
.y87{bottom:240.870000px;}
.y2f{bottom:245.370000px;}
.yae{bottom:253.830000px;}
.yd7{bottom:254.730000px;}
.ycb{bottom:256.350000px;}
.yb7{bottom:258.510000px;}
.y86{bottom:263.910000px;}
.y2e{bottom:266.970000px;}
.y6a{bottom:268.410000px;}
.yad{bottom:276.870000px;}
.yd6{bottom:277.770000px;}
.yca{bottom:279.390000px;}
.yb6{bottom:281.550000px;}
.y85{bottom:286.950000px;}
.y2d{bottom:288.390000px;}
.y69{bottom:291.270000px;}
.yac{bottom:299.910000px;}
.yd5{bottom:300.810000px;}
.yc9{bottom:302.430000px;}
.y2c{bottom:309.810000px;}
.y84{bottom:309.990000px;}
.y68{bottom:314.310000px;}
.yab{bottom:322.770000px;}
.yd4{bottom:323.670000px;}
.yc8{bottom:325.470000px;}
.yb5{bottom:327.630000px;}
.y83{bottom:333.030000px;}
.y67{bottom:337.350000px;}
.yaa{bottom:345.810000px;}
.yd3{bottom:346.710000px;}
.yc7{bottom:348.510000px;}
.y82{bottom:356.070000px;}
.y66{bottom:360.390000px;}
.ya9{bottom:368.850000px;}
.yc6{bottom:371.550000px;}
.y81{bottom:378.930000px;}
.y65{bottom:383.430000px;}
.ya8{bottom:391.935000px;}
.yd2{bottom:392.835000px;}
.yc5{bottom:394.455000px;}
.y80{bottom:402.015000px;}
.y64{bottom:406.515000px;}
.ya7{bottom:414.975000px;}
.yc4{bottom:417.495000px;}
.y7f{bottom:425.055000px;}
.ya6{bottom:429.195000px;}
.y63{bottom:429.375000px;}
.yc3{bottom:440.535000px;}
.y7e{bottom:448.095000px;}
.y62{bottom:452.415000px;}
.yc2{bottom:463.575000px;}
.y7d{bottom:471.135000px;}
.ya5{bottom:471.315000px;}
.y61{bottom:475.455000px;}
.y29{bottom:477.795000px;}
.y7c{bottom:485.355000px;}
.yc1{bottom:486.615000px;}
.y27{bottom:493.095000px;}
.y60{bottom:498.495000px;}
.yc0{bottom:509.475000px;}
.y25{bottom:511.815000px;}
.ya4{bottom:513.255000px;}
.y5f{bottom:521.535000px;}
.y79{bottom:527.475000px;}
.y23{bottom:531.795000px;}
.ybf{bottom:532.515000px;}
.y5e{bottom:544.575000px;}
.ya3{bottom:555.375000px;}
.y22{bottom:561.855000px;}
.y5d{bottom:567.435000px;}
.y78{bottom:570.315000px;}
.y20{bottom:575.175000px;}
.ya2{bottom:576.975000px;}
.ybe{bottom:578.595000px;}
.y5c{bottom:590.475000px;}
.y1f{bottom:598.215000px;}
.y76{bottom:612.255000px;}
.y5b{bottom:613.515000px;}
.y18{bottom:615.315000px;}
.ya0{bottom:618.915000px;}
.y5a{bottom:636.555000px;}
.y72{bottom:654.405000px;}
.y59{bottom:659.625000px;}
.y58{bottom:682.485000px;}
.y57{bottom:705.525000px;}
.y9f{bottom:716.145000px;}
.y70{bottom:717.945000px;}
.y56{bottom:728.565000px;}
.y9e{bottom:739.185000px;}
.y55{bottom:751.605000px;}
.y9d{bottom:762.225000px;}
.y54{bottom:774.645000px;}
.y9c{bottom:785.265000px;}
.y53{bottom:797.685000px;}
.y16{bottom:798.945000px;}
.y9b{bottom:808.305000px;}
.y13{bottom:813.525000px;}
.y52{bottom:820.545000px;}
.y9a{bottom:831.345000px;}
.y51{bottom:843.585000px;}
.y99{bottom:854.205000px;}
.y50{bottom:866.625000px;}
.y11{bottom:874.725000px;}
.y98{bottom:877.245000px;}
.yd{bottom:888.225000px;}
.y4f{bottom:889.710000px;}
.y97{bottom:900.330000px;}
.y4e{bottom:912.750000px;}
.y95{bottom:914.550000px;}
.y4d{bottom:935.790000px;}
.y4c{bottom:958.650000px;}
.y94{bottom:961.710000px;}
.y4b{bottom:981.690000px;}
.y93{bottom:985.830000px;}
.y4a{bottom:1004.730000px;}
.y91{bottom:1010.130000px;}
.yc{bottom:1013.370000px;}
.y49{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y48{bottom:1050.810000px;}
.y90{bottom:1057.110000px;}
.y3d{bottom:1065.210000px;}
.y47{bottom:1073.850000px;}
.y8e{bottom:1081.410000px;}
.y46{bottom:1096.710000px;}
.y8d{bottom:1106.610000px;}
.y45{bottom:1119.750000px;}
.y44{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y43{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1b{height:13.305000px;}
.hf{height:13.500000px;}
.h13{height:14.580000px;}
.h22{height:15.285000px;}
.h17{height:17.085000px;}
.h20{height:18.705000px;}
.h1f{height:19.965000px;}
.h35{height:20.325000px;}
.h2b{height:20.520000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h31{height:22.845000px;}
.h19{height:23.025000px;}
.h16{height:25.001719px;}
.h25{height:25.956000px;}
.h26{height:29.145586px;}
.h1d{height:30.045000px;}
.h10{height:32.670352px;}
.h1c{height:33.588984px;}
.h2c{height:36.509766px;}
.h14{height:36.886641px;}
.h18{height:40.472227px;}
.h23{height:40.842773px;}
.h2f{height:40.845000px;}
.h1a{height:40.869141px;}
.h2e{height:40.890000px;}
.h29{height:41.291016px;}
.h30{height:41.565000px;}
.h36{height:42.366094px;}
.h32{height:45.885000px;}
.h33{height:46.065000px;}
.h12{height:48.761719px;}
.h21{height:50.100469px;}
.h1e{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h28{height:55.054688px;}
.h2a{height:55.209375px;}
.h6{height:57.051211px;}
.h11{height:61.200000px;}
.h2d{height:61.380000px;}
.h34{height:61.410000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.h7{height:84.898125px;}
.h27{height:93.810000px;}
.h8{height:108.030000px;}
.hd{height:122.422500px;}
.h15{height:183.630000px;}
.h24{height:322.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w6{width:76.669500px;}
.wd{width:87.825000px;}
.wc{width:114.694500px;}
.w5{width:124.005000px;}
.w13{width:202.530000px;}
.w12{width:222.733500px;}
.we{width:229.560000px;}
.w10{width:229.573500px;}
.wa{width:332.115000px;}
.wf{width:337.560000px;}
.w9{width:356.464500px;}
.w14{width:364.560000px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w11{width:553.605000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:3.045000px;}
.x19{left:4.665000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x5{left:10.789500px;}
.x32{left:12.238500px;}
.x41{left:13.318500px;}
.x10{left:16.740000px;}
.x34{left:18.898500px;}
.x2{left:21.049500px;}
.x22{left:22.665000px;}
.x33{left:25.560000px;}
.x24{left:26.818500px;}
.x21{left:27.885000px;}
.x29{left:29.914500px;}
.x1c{left:31.485000px;}
.x42{left:32.580000px;}
.x27{left:33.874500px;}
.x25{left:34.954500px;}
.x2f{left:36.540000px;}
.x7{left:39.780000px;}
.x2a{left:42.645000px;}
.x1d{left:43.725000px;}
.x17{left:45.574500px;}
.x36{left:47.341500px;}
.x2e{left:48.454500px;}
.x37{left:49.714500px;}
.x3a{left:50.794500px;}
.x44{left:52.054500px;}
.x2b{left:54.001500px;}
.x20{left:59.430000px;}
.x16{left:60.841500px;}
.x3c{left:61.905000px;}
.x1f{left:63.750000px;}
.x3f{left:65.734500px;}
.x3d{left:69.874500px;}
.x1e{left:71.670000px;}
.xd{left:73.785000px;}
.x26{left:75.630000px;}
.x23{left:79.950000px;}
.x1b{left:83.145000px;}
.x40{left:92.145000px;}
.x3e{left:95.025000px;}
.x43{left:97.365000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x46{left:111.268500px;}
.x3b{left:127.965000px;}
.x35{left:131.940000px;}
.x30{left:155.340000px;}
.x3{left:157.005000px;}
.x18{left:175.545000px;}
.xa{left:176.805000px;}
.x45{left:182.190000px;}
.x2d{left:190.110000px;}
.x31{left:207.030000px;}
.x13{left:230.430000px;}
.x12{left:263.910000px;}
.x38{left:270.075000px;}
.x2c{left:283.575000px;}
.xf{left:325.875000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x39{left:472.620000px;}
.x1a{left:492.960000px;}
.x6{left:661.650000px;}
.xe{left:680.323500px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls21{letter-spacing:-0.288000pt;}
.ls28{letter-spacing:-0.272000pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.208000pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.081067pt;}
.ls8{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls25{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.043520pt;}
.ls24{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.080000pt;}
.ls20{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.135680pt;}
.ls17{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.208640pt;}
.ls22{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.252800pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls9{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.352000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.496000pt;}
.ls13{letter-spacing:0.672000pt;}
.ls2c{letter-spacing:2.512000pt;}
.ls19{letter-spacing:14.032000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws5{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.616000pt;}
.ws2{word-spacing:-15.552000pt;}
.ws7{word-spacing:-14.955520pt;}
.ws10{word-spacing:-12.480000pt;}
.ws26{word-spacing:-12.448000pt;}
.ws23{word-spacing:-12.432000pt;}
.ws18{word-spacing:-12.368000pt;}
.ws14{word-spacing:-12.352000pt;}
.ws15{word-spacing:-12.288000pt;}
.ws11{word-spacing:-12.272000pt;}
.ws22{word-spacing:-12.240000pt;}
.ws1b{word-spacing:-12.224000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws1c{word-spacing:-12.016000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws21{word-spacing:-11.920000pt;}
.ws1e{word-spacing:-11.904000pt;}
.ws25{word-spacing:-11.824000pt;}
.ws17{word-spacing:-11.792000pt;}
.ws20{word-spacing:-11.760000pt;}
.ws1a{word-spacing:-11.616000pt;}
.wse{word-spacing:-11.584000pt;}
.wsd{word-spacing:-11.568000pt;}
.ws19{word-spacing:-11.536000pt;}
.ws1d{word-spacing:-11.408000pt;}
.ws24{word-spacing:-11.328000pt;}
.ws12{word-spacing:-11.312000pt;}
.ws1f{word-spacing:-11.296000pt;}
.ws16{word-spacing:-11.280000pt;}
.wsb{word-spacing:-10.586880pt;}
.wsc{word-spacing:-10.377600pt;}
.wsa{word-spacing:-10.334080pt;}
.ws3{word-spacing:-9.192960pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-2.354133pt;}
._1{margin-left:-1.123200pt;}
._0{width:0.992000pt;}
._7{width:2.008533pt;}
._a{width:2.983467pt;}
._e{width:4.192000pt;}
._6{width:5.504000pt;}
._9{width:6.880000pt;}
._8{width:8.576000pt;}
._b{width:9.600000pt;}
._d{width:10.608000pt;}
._c{width:13.056000pt;}
._15{width:14.112000pt;}
._19{width:15.088000pt;}
._1b{width:16.426667pt;}
._4{width:17.534720pt;}
._5{width:18.641280pt;}
._3{width:20.258560pt;}
._2a{width:21.273600pt;}
._16{width:22.848000pt;}
._1e{width:23.971200pt;}
._1d{width:24.864000pt;}
._26{width:25.760000pt;}
._1f{width:26.928000pt;}
._1a{width:28.266667pt;}
._23{width:29.205333pt;}
._12{width:30.192000pt;}
._20{width:31.264000pt;}
._13{width:32.592000pt;}
._11{width:34.320000pt;}
._1c{width:35.427200pt;}
._17{width:36.480000pt;}
._18{width:37.920000pt;}
._21{width:39.264000pt;}
._27{width:40.669867pt;}
._f{width:41.568000pt;}
._10{width:43.024000pt;}
._2c{width:44.688000pt;}
._2d{width:45.952000pt;}
._14{width:47.664000pt;}
._2e{width:48.576000pt;}
._24{width:49.872000pt;}
._2b{width:51.360000pt;}
._2f{width:52.944000pt;}
._28{width:58.128000pt;}
._29{width:59.280000pt;}
._30{width:61.248000pt;}
._25{width:76.848000pt;}
._31{width:87.072000pt;}
._32{width:88.416000pt;}
._22{width:93.888000pt;}
.fs3{font-size:10.880000pt;}
.fsc{font-size:26.880000pt;}
.fs7{font-size:29.440000pt;}
.fsd{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y42{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y12{bottom:2.880000pt;}
.y28{bottom:3.200000pt;}
.y2a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y26{bottom:4.320000pt;}
.y41{bottom:8.000000pt;}
.y3a{bottom:8.146667pt;}
.y75{bottom:8.480000pt;}
.y71{bottom:8.640000pt;}
.y7b{bottom:9.280000pt;}
.y8f{bottom:9.600000pt;}
.y21{bottom:9.760000pt;}
.y24{bottom:13.280000pt;}
.y1e{bottom:13.440000pt;}
.y15{bottom:13.600000pt;}
.y3c{bottom:14.592000pt;}
.y10{bottom:17.960000pt;}
.y74{bottom:26.720000pt;}
.y77{bottom:26.746667pt;}
.y40{bottom:26.880000pt;}
.y39{bottom:27.186667pt;}
.y7a{bottom:27.360000pt;}
.y92{bottom:30.080000pt;}
.y96{bottom:30.240000pt;}
.y14{bottom:40.800000pt;}
.y73{bottom:44.960000pt;}
.ya1{bottom:44.986667pt;}
.y3f{bottom:45.920000pt;}
.y1d{bottom:45.946667pt;}
.y38{bottom:46.386667pt;}
.y5{bottom:51.840000pt;}
.yf{bottom:54.120000pt;}
.y37{bottom:65.426667pt;}
.y2{bottom:66.240000pt;}
.y3e{bottom:67.386667pt;}
.y1c{bottom:67.866667pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y36{bottom:84.466667pt;}
.ye{bottom:90.440000pt;}
.y1b{bottom:100.346667pt;}
.yb4{bottom:102.880000pt;}
.y35{bottom:103.506667pt;}
.ydd{bottom:103.680000pt;}
.yd1{bottom:105.120000pt;}
.ybd{bottom:107.040000pt;}
.y8c{bottom:111.840000pt;}
.y3b{bottom:115.360000pt;}
.y6f{bottom:115.840000pt;}
.y1a{bottom:122.266667pt;}
.y34{bottom:122.706667pt;}
.yb3{bottom:123.360000pt;}
.ydc{bottom:124.160000pt;}
.yd0{bottom:125.600000pt;}
.ybc{bottom:127.552000pt;}
.y8b{bottom:132.352000pt;}
.y6e{bottom:136.186667pt;}
.y2b{bottom:138.440000pt;}
.y33{bottom:141.746667pt;}
.yb2{bottom:143.866667pt;}
.ydb{bottom:144.666667pt;}
.ycf{bottom:146.106667pt;}
.ybb{bottom:148.026667pt;}
.y8a{bottom:152.826667pt;}
.y19{bottom:154.746667pt;}
.y6d{bottom:156.666667pt;}
.y32{bottom:160.786667pt;}
.yb1{bottom:164.186667pt;}
.yda{bottom:165.146667pt;}
.yce{bottom:166.586667pt;}
.yba{bottom:168.506667pt;}
.y89{bottom:173.306667pt;}
.y6c{bottom:177.146667pt;}
.y31{bottom:179.986667pt;}
.yb0{bottom:184.666667pt;}
.yd9{bottom:185.466667pt;}
.ycd{bottom:187.066667pt;}
.yb9{bottom:188.986667pt;}
.y88{bottom:193.786667pt;}
.y6b{bottom:197.626667pt;}
.y30{bottom:199.026667pt;}
.yaf{bottom:205.146667pt;}
.yd8{bottom:205.946667pt;}
.ycc{bottom:207.546667pt;}
.yb8{bottom:209.466667pt;}
.y87{bottom:214.106667pt;}
.y2f{bottom:218.106667pt;}
.yae{bottom:225.626667pt;}
.yd7{bottom:226.426667pt;}
.ycb{bottom:227.866667pt;}
.yb7{bottom:229.786667pt;}
.y86{bottom:234.586667pt;}
.y2e{bottom:237.306667pt;}
.y6a{bottom:238.586667pt;}
.yad{bottom:246.106667pt;}
.yd6{bottom:246.906667pt;}
.yca{bottom:248.346667pt;}
.yb6{bottom:250.266667pt;}
.y85{bottom:255.066667pt;}
.y2d{bottom:256.346667pt;}
.y69{bottom:258.906667pt;}
.yac{bottom:266.586667pt;}
.yd5{bottom:267.386667pt;}
.yc9{bottom:268.826667pt;}
.y2c{bottom:275.386667pt;}
.y84{bottom:275.546667pt;}
.y68{bottom:279.386667pt;}
.yab{bottom:286.906667pt;}
.yd4{bottom:287.706667pt;}
.yc8{bottom:289.306667pt;}
.yb5{bottom:291.226667pt;}
.y83{bottom:296.026667pt;}
.y67{bottom:299.866667pt;}
.yaa{bottom:307.386667pt;}
.yd3{bottom:308.186667pt;}
.yc7{bottom:309.786667pt;}
.y82{bottom:316.506667pt;}
.y66{bottom:320.346667pt;}
.ya9{bottom:327.866667pt;}
.yc6{bottom:330.266667pt;}
.y81{bottom:336.826667pt;}
.y65{bottom:340.826667pt;}
.ya8{bottom:348.386667pt;}
.yd2{bottom:349.186667pt;}
.yc5{bottom:350.626667pt;}
.y80{bottom:357.346667pt;}
.y64{bottom:361.346667pt;}
.ya7{bottom:368.866667pt;}
.yc4{bottom:371.106667pt;}
.y7f{bottom:377.826667pt;}
.ya6{bottom:381.506667pt;}
.y63{bottom:381.666667pt;}
.yc3{bottom:391.586667pt;}
.y7e{bottom:398.306667pt;}
.y62{bottom:402.146667pt;}
.yc2{bottom:412.066667pt;}
.y7d{bottom:418.786667pt;}
.ya5{bottom:418.946667pt;}
.y61{bottom:422.626667pt;}
.y29{bottom:424.706667pt;}
.y7c{bottom:431.426667pt;}
.yc1{bottom:432.546667pt;}
.y27{bottom:438.306667pt;}
.y60{bottom:443.106667pt;}
.yc0{bottom:452.866667pt;}
.y25{bottom:454.946667pt;}
.ya4{bottom:456.226667pt;}
.y5f{bottom:463.586667pt;}
.y79{bottom:468.866667pt;}
.y23{bottom:472.706667pt;}
.ybf{bottom:473.346667pt;}
.y5e{bottom:484.066667pt;}
.ya3{bottom:493.666667pt;}
.y22{bottom:499.426667pt;}
.y5d{bottom:504.386667pt;}
.y78{bottom:506.946667pt;}
.y20{bottom:511.266667pt;}
.ya2{bottom:512.866667pt;}
.ybe{bottom:514.306667pt;}
.y5c{bottom:524.866667pt;}
.y1f{bottom:531.746667pt;}
.y76{bottom:544.226667pt;}
.y5b{bottom:545.346667pt;}
.y18{bottom:546.946667pt;}
.ya0{bottom:550.146667pt;}
.y5a{bottom:565.826667pt;}
.y72{bottom:581.693333pt;}
.y59{bottom:586.333333pt;}
.y58{bottom:606.653333pt;}
.y57{bottom:627.133333pt;}
.y9f{bottom:636.573333pt;}
.y70{bottom:638.173333pt;}
.y56{bottom:647.613333pt;}
.y9e{bottom:657.053333pt;}
.y55{bottom:668.093333pt;}
.y9d{bottom:677.533333pt;}
.y54{bottom:688.573333pt;}
.y9c{bottom:698.013333pt;}
.y53{bottom:709.053333pt;}
.y16{bottom:710.173333pt;}
.y9b{bottom:718.493333pt;}
.y13{bottom:723.133333pt;}
.y52{bottom:729.373333pt;}
.y9a{bottom:738.973333pt;}
.y51{bottom:749.853333pt;}
.y99{bottom:759.293333pt;}
.y50{bottom:770.333333pt;}
.y11{bottom:777.533333pt;}
.y98{bottom:779.773333pt;}
.yd{bottom:789.533333pt;}
.y4f{bottom:790.853333pt;}
.y97{bottom:800.293333pt;}
.y4e{bottom:811.333333pt;}
.y95{bottom:812.933333pt;}
.y4d{bottom:831.813333pt;}
.y4c{bottom:852.133333pt;}
.y94{bottom:854.853333pt;}
.y4b{bottom:872.613333pt;}
.y93{bottom:876.293333pt;}
.y4a{bottom:893.093333pt;}
.y91{bottom:897.893333pt;}
.yc{bottom:900.773333pt;}
.y49{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y48{bottom:934.053333pt;}
.y90{bottom:939.653333pt;}
.y3d{bottom:946.853333pt;}
.y47{bottom:954.533333pt;}
.y8e{bottom:961.253333pt;}
.y46{bottom:974.853333pt;}
.y8d{bottom:983.653333pt;}
.y45{bottom:995.333333pt;}
.y44{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y43{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1b{height:11.826667pt;}
.hf{height:12.000000pt;}
.h13{height:12.960000pt;}
.h22{height:13.586667pt;}
.h17{height:15.186667pt;}
.h20{height:16.626667pt;}
.h1f{height:17.746667pt;}
.h35{height:18.066667pt;}
.h2b{height:18.240000pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h31{height:20.306667pt;}
.h19{height:20.466667pt;}
.h16{height:22.223750pt;}
.h25{height:23.072000pt;}
.h26{height:25.907187pt;}
.h1d{height:26.706667pt;}
.h10{height:29.040312pt;}
.h1c{height:29.856875pt;}
.h2c{height:32.453125pt;}
.h14{height:32.788125pt;}
.h18{height:35.975313pt;}
.h23{height:36.304688pt;}
.h2f{height:36.306667pt;}
.h1a{height:36.328125pt;}
.h2e{height:36.346667pt;}
.h29{height:36.703125pt;}
.h30{height:36.946667pt;}
.h36{height:37.658750pt;}
.h32{height:40.786667pt;}
.h33{height:40.946667pt;}
.h12{height:43.343750pt;}
.h21{height:44.533750pt;}
.h1e{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h28{height:48.937500pt;}
.h2a{height:49.075000pt;}
.h6{height:50.712187pt;}
.h11{height:54.400000pt;}
.h2d{height:54.560000pt;}
.h34{height:54.586667pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.h7{height:75.465000pt;}
.h27{height:83.386667pt;}
.h8{height:96.026667pt;}
.hd{height:108.820000pt;}
.h15{height:163.226667pt;}
.h24{height:286.253333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w6{width:68.150667pt;}
.wd{width:78.066667pt;}
.wc{width:101.950667pt;}
.w5{width:110.226667pt;}
.w13{width:180.026667pt;}
.w12{width:197.985333pt;}
.we{width:204.053333pt;}
.w10{width:204.065333pt;}
.wa{width:295.213333pt;}
.wf{width:300.053333pt;}
.w9{width:316.857333pt;}
.w14{width:324.053333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w11{width:492.093333pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:2.706667pt;}
.x19{left:4.146667pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x5{left:9.590667pt;}
.x32{left:10.878667pt;}
.x41{left:11.838667pt;}
.x10{left:14.880000pt;}
.x34{left:16.798667pt;}
.x2{left:18.710667pt;}
.x22{left:20.146667pt;}
.x33{left:22.720000pt;}
.x24{left:23.838667pt;}
.x21{left:24.786667pt;}
.x29{left:26.590667pt;}
.x1c{left:27.986667pt;}
.x42{left:28.960000pt;}
.x27{left:30.110667pt;}
.x25{left:31.070667pt;}
.x2f{left:32.480000pt;}
.x7{left:35.360000pt;}
.x2a{left:37.906667pt;}
.x1d{left:38.866667pt;}
.x17{left:40.510667pt;}
.x36{left:42.081333pt;}
.x2e{left:43.070667pt;}
.x37{left:44.190667pt;}
.x3a{left:45.150667pt;}
.x44{left:46.270667pt;}
.x2b{left:48.001333pt;}
.x20{left:52.826667pt;}
.x16{left:54.081333pt;}
.x3c{left:55.026667pt;}
.x1f{left:56.666667pt;}
.x3f{left:58.430667pt;}
.x3d{left:62.110667pt;}
.x1e{left:63.706667pt;}
.xd{left:65.586667pt;}
.x26{left:67.226667pt;}
.x23{left:71.066667pt;}
.x1b{left:73.906667pt;}
.x40{left:81.906667pt;}
.x3e{left:84.466667pt;}
.x43{left:86.546667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x46{left:98.905333pt;}
.x3b{left:113.746667pt;}
.x35{left:117.280000pt;}
.x30{left:138.080000pt;}
.x3{left:139.560000pt;}
.x18{left:156.040000pt;}
.xa{left:157.160000pt;}
.x45{left:161.946667pt;}
.x2d{left:168.986667pt;}
.x31{left:184.026667pt;}
.x13{left:204.826667pt;}
.x12{left:234.586667pt;}
.x38{left:240.066667pt;}
.x2c{left:252.066667pt;}
.xf{left:289.666667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x39{left:420.106667pt;}
.x1a{left:438.186667pt;}
.x6{left:588.133333pt;}
.xe{left:604.732000pt;}
}




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