
    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_9537e0ad029cb2c11b94b276.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_f90326457dbb8466aaf72f1d.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_c5beb456d23984055fedb881.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_2c4659aa235d3c862249725f.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_0606f88a2cc03969a3a55a9c.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_7e7aa51ac493a6ba29980774.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;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_e28caeb3c6a49b01d3083cac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.128906;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_e2ac1bdd5fb69b2ce70f5227.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_fddb3de937a2bb3868fa53c9.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d928ea5aba8d96ebbfdf05f8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952148;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_a68a5f156be6f89f10970a20.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_71c287d6f786ba56c10b662c.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0cca0b3138915ac2c91f51e3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_423db0189cd804bb163e2c34.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.128906;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_718913027fca67fdf08edc80.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_1e667560cdc49bb4851b4e23.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.128906;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;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls24{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.342000px;}
.ls9{letter-spacing:-0.331200px;}
.ls23{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.282000px;}
.ls19{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.234000px;}
.ls16{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.194400px;}
.lsd{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.091200px;}
.ls1a{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.054000px;}
.ls7{letter-spacing:-0.036000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.031680px;}
.ls11{letter-spacing:0.036000px;}
.ls27{letter-spacing:0.054000px;}
.ls1f{letter-spacing:0.070800px;}
.ls22{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.126000px;}
.ls26{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.234720px;}
.ls12{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.331200px;}
.ls17{letter-spacing:0.342000px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.486000px;}
.lsc{letter-spacing:0.540000px;}
.ls18{letter-spacing:2.844000px;}
.ls14{letter-spacing:7.140000px;}
.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;}
.ws2{word-spacing:-19.152000px;}
.wsb{word-spacing:-18.954000px;}
.wsa{word-spacing:-18.468000px;}
.ws5{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws7{word-spacing:-16.824960px;}
.ws1c{word-spacing:-14.004000px;}
.ws20{word-spacing:-13.914000px;}
.ws22{word-spacing:-13.878000px;}
.ws1f{word-spacing:-13.770000px;}
.ws1b{word-spacing:-13.716000px;}
.ws1e{word-spacing:-13.302000px;}
.ws23{word-spacing:-13.068000px;}
.ws8{word-spacing:-13.032000px;}
.ws4{word-spacing:-13.014000px;}
.wsf{word-spacing:-12.978000px;}
.ws21{word-spacing:-12.960000px;}
.ws12{word-spacing:-12.924000px;}
.ws25{word-spacing:-12.834000px;}
.ws10{word-spacing:-12.798000px;}
.ws17{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.744000px;}
.ws24{word-spacing:-12.726000px;}
.ws19{word-spacing:-12.708000px;}
.ws1d{word-spacing:-12.690000px;}
.ws16{word-spacing:-11.343840px;}
.ws3{word-spacing:-10.342080px;}
.ws18{word-spacing:-10.134960px;}
.ws1a{word-spacing:-9.869760px;}
.wsd{word-spacing:-9.000000px;}
.ws13{word-spacing:-8.964000px;}
.ws15{word-spacing:-8.496000px;}
.wse{word-spacing:-8.388000px;}
.ws14{word-spacing:-8.316000px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-2.334000px;}
._0{margin-left:-1.263600px;}
._3{width:1.040880px;}
._7{width:2.808000px;}
._6{width:4.698000px;}
._5{width:6.258720px;}
._b{width:7.349280px;}
._8{width:8.370000px;}
._9{width:9.720000px;}
._a{width:11.055120px;}
._25{width:12.242640px;}
._c{width:14.094000px;}
._12{width:15.159120px;}
._16{width:16.176000px;}
._4{width:17.904000px;}
._13{width:19.110000px;}
._20{width:20.574000px;}
._21{width:21.654000px;}
._1d{width:23.382000px;}
._1e{width:24.570000px;}
._d{width:26.190000px;}
._1c{width:27.288000px;}
._18{width:28.350000px;}
._19{width:29.388000px;}
._f{width:30.726000px;}
._10{width:32.454000px;}
._11{width:33.696000px;}
._1a{width:34.761120px;}
._22{width:35.964000px;}
._2c{width:37.041120px;}
._2d{width:38.058000px;}
._1b{width:39.528000px;}
._35{width:40.587120px;}
._26{width:41.688000px;}
._17{width:43.275600px;}
._30{width:44.852400px;}
._23{width:47.250000px;}
._24{width:48.384000px;}
._1f{width:50.307600px;}
._e{width:55.404000px;}
._27{width:56.646000px;}
._38{width:57.726000px;}
._2b{width:59.022000px;}
._28{width:61.398000px;}
._29{width:62.478000px;}
._2e{width:64.800000px;}
._2f{width:65.826000px;}
._37{width:66.960000px;}
._36{width:69.228000px;}
._14{width:71.388000px;}
._15{width:72.822000px;}
._2{width:74.022480px;}
._3a{width:76.680000px;}
._2a{width:82.080000px;}
._31{width:83.268000px;}
._32{width:84.549120px;}
._39{width:103.302000px;}
._33{width:107.892000px;}
._34{width:109.188000px;}
.fc5{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs7{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fsd{font-size:41.760000px;}
.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;}
.y21{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y28{bottom:3.600000px;}
.y2a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y26{bottom:4.860000px;}
.ya5{bottom:8.280000px;}
.ya7{bottom:8.325000px;}
.ya9{bottom:8.460000px;}
.y41{bottom:9.000000px;}
.y8f{bottom:9.720000px;}
.y3b{bottom:10.965000px;}
.y1f{bottom:10.980000px;}
.y23{bottom:14.940000px;}
.y24{bottom:15.120000px;}
.y15{bottom:15.300000px;}
.y3d{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y1b{bottom:21.060000px;}
.y40{bottom:30.240000px;}
.y3a{bottom:34.005000px;}
.y1e{bottom:34.020000px;}
.y14{bottom:45.720000px;}
.y1a{bottom:51.660000px;}
.y39{bottom:56.865000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3f{bottom:75.810000px;}
.y13{bottom:76.365000px;}
.y38{bottom:79.905000px;}
.ya{bottom:80.460000px;}
.y19{bottom:82.260000px;}
.y9{bottom:91.440000px;}
.y37{bottom:102.945000px;}
.ya3{bottom:111.420000px;}
.yee{bottom:113.220000px;}
.ye8{bottom:118.440000px;}
.y36{bottom:125.985000px;}
.yc9{bottom:126.720000px;}
.yf5{bottom:129.600000px;}
.y70{bottom:130.320000px;}
.y76{bottom:132.480000px;}
.ya2{bottom:134.280000px;}
.yed{bottom:136.260000px;}
.ye7{bottom:141.480000px;}
.y35{bottom:149.025000px;}
.yc8{bottom:149.796000px;}
.yf4{bottom:152.490000px;}
.y6f{bottom:153.210000px;}
.y75{bottom:155.550000px;}
.ya1{bottom:157.350000px;}
.yec{bottom:159.330000px;}
.y3c{bottom:162.765000px;}
.ye6{bottom:164.370000px;}
.y34{bottom:172.065000px;}
.yc7{bottom:172.650000px;}
.yf3{bottom:175.530000px;}
.y6e{bottom:176.250000px;}
.y74{bottom:178.590000px;}
.ya0{bottom:180.390000px;}
.yeb{bottom:182.370000px;}
.ye5{bottom:187.410000px;}
.y2b{bottom:188.685000px;}
.y33{bottom:194.925000px;}
.yc6{bottom:195.690000px;}
.yf2{bottom:198.570000px;}
.y6d{bottom:199.290000px;}
.y73{bottom:201.630000px;}
.y9f{bottom:203.430000px;}
.ye4{bottom:210.450000px;}
.y32{bottom:218.010000px;}
.yc5{bottom:218.730000px;}
.yf1{bottom:221.610000px;}
.y6c{bottom:222.330000px;}
.y72{bottom:224.670000px;}
.y9e{bottom:226.470000px;}
.yea{bottom:228.450000px;}
.ye3{bottom:233.490000px;}
.y31{bottom:241.050000px;}
.y71{bottom:241.230000px;}
.yc4{bottom:241.770000px;}
.yf0{bottom:244.650000px;}
.y6b{bottom:245.370000px;}
.y8d{bottom:247.710000px;}
.y9d{bottom:249.510000px;}
.ye9{bottom:251.310000px;}
.ye2{bottom:256.530000px;}
.y30{bottom:264.090000px;}
.yc3{bottom:264.810000px;}
.yef{bottom:267.870000px;}
.y6a{bottom:268.410000px;}
.y8c{bottom:270.570000px;}
.y9c{bottom:272.370000px;}
.ye1{bottom:279.570000px;}
.y2f{bottom:287.130000px;}
.yc2{bottom:287.850000px;}
.y69{bottom:291.270000px;}
.y8b{bottom:293.610000px;}
.y9b{bottom:295.410000px;}
.ye0{bottom:302.430000px;}
.y2e{bottom:310.170000px;}
.yc1{bottom:310.710000px;}
.y68{bottom:314.310000px;}
.y8a{bottom:316.650000px;}
.y9a{bottom:318.450000px;}
.ydf{bottom:325.470000px;}
.y2d{bottom:333.030000px;}
.yc0{bottom:333.750000px;}
.y67{bottom:337.350000px;}
.y89{bottom:339.690000px;}
.y99{bottom:341.490000px;}
.yde{bottom:348.510000px;}
.y2c{bottom:356.070000px;}
.ybf{bottom:356.790000px;}
.y66{bottom:360.390000px;}
.y88{bottom:362.730000px;}
.y98{bottom:364.530000px;}
.ydd{bottom:371.550000px;}
.ybe{bottom:379.830000px;}
.y65{bottom:383.430000px;}
.y87{bottom:385.770000px;}
.y97{bottom:387.390000px;}
.ydc{bottom:394.635000px;}
.ybd{bottom:402.915000px;}
.y64{bottom:406.515000px;}
.y86{bottom:408.675000px;}
.y96{bottom:410.475000px;}
.ydb{bottom:417.495000px;}
.ybc{bottom:425.955000px;}
.y63{bottom:429.375000px;}
.y85{bottom:431.715000px;}
.yda{bottom:440.535000px;}
.ybb{bottom:448.815000px;}
.y62{bottom:452.415000px;}
.y84{bottom:454.755000px;}
.y95{bottom:456.555000px;}
.yd9{bottom:463.575000px;}
.y94{bottom:470.775000px;}
.yba{bottom:471.855000px;}
.y61{bottom:475.455000px;}
.y83{bottom:477.795000px;}
.yd8{bottom:486.615000px;}
.y93{bottom:492.375000px;}
.yb9{bottom:494.895000px;}
.y60{bottom:498.495000px;}
.y82{bottom:500.835000px;}
.yd7{bottom:509.655000px;}
.y92{bottom:513.975000px;}
.yb8{bottom:517.935000px;}
.y5f{bottom:521.535000px;}
.y81{bottom:523.875000px;}
.yd6{bottom:532.695000px;}
.y91{bottom:535.575000px;}
.yb7{bottom:540.975000px;}
.y5e{bottom:544.575000px;}
.y80{bottom:546.735000px;}
.yd5{bottom:555.555000px;}
.y29{bottom:556.815000px;}
.y90{bottom:557.175000px;}
.yb6{bottom:563.835000px;}
.y5d{bottom:567.435000px;}
.y7f{bottom:569.775000px;}
.y27{bottom:572.115000px;}
.yd4{bottom:578.595000px;}
.y8e{bottom:579.855000px;}
.yb5{bottom:586.875000px;}
.y5c{bottom:590.475000px;}
.y25{bottom:590.835000px;}
.y7e{bottom:592.815000px;}
.yd3{bottom:601.635000px;}
.yb4{bottom:609.915000px;}
.y22{bottom:610.815000px;}
.y5b{bottom:613.515000px;}
.y7d{bottom:615.855000px;}
.yd2{bottom:624.675000px;}
.yb3{bottom:632.955000px;}
.y5a{bottom:636.555000px;}
.y7c{bottom:638.895000px;}
.y20{bottom:640.905000px;}
.yd1{bottom:647.745000px;}
.y1d{bottom:654.225000px;}
.yb2{bottom:656.025000px;}
.y59{bottom:659.625000px;}
.y7b{bottom:661.785000px;}
.yd0{bottom:670.785000px;}
.yb1{bottom:679.065000px;}
.y58{bottom:682.485000px;}
.y7a{bottom:684.825000px;}
.ycf{bottom:693.645000px;}
.y1c{bottom:700.305000px;}
.yb0{bottom:701.925000px;}
.y57{bottom:705.525000px;}
.y79{bottom:707.865000px;}
.yce{bottom:716.685000px;}
.y18{bottom:717.405000px;}
.yaf{bottom:724.965000px;}
.y56{bottom:728.565000px;}
.y78{bottom:730.905000px;}
.ycd{bottom:731.085000px;}
.y77{bottom:747.465000px;}
.yae{bottom:748.005000px;}
.ycc{bottom:749.985000px;}
.y55{bottom:751.605000px;}
.ycb{bottom:770.325000px;}
.y54{bottom:774.645000px;}
.yca{bottom:789.405000px;}
.yad{bottom:794.085000px;}
.y53{bottom:797.685000px;}
.yac{bottom:808.305000px;}
.y16{bottom:809.205000px;}
.y52{bottom:820.545000px;}
.y12{bottom:823.785000px;}
.yab{bottom:827.385000px;}
.y51{bottom:843.585000px;}
.yaa{bottom:846.465000px;}
.ya8{bottom:865.365000px;}
.y50{bottom:866.625000px;}
.ya6{bottom:884.445000px;}
.y4f{bottom:889.710000px;}
.ya4{bottom:904.650000px;}
.y4e{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.yd{bottom:929.130000px;}
.y4d{bottom:935.790000px;}
.y4c{bottom:958.650000px;}
.y4b{bottom:981.690000px;}
.y4a{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y49{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y48{bottom:1050.810000px;}
.y3e{bottom:1065.210000px;}
.y47{bottom:1073.850000px;}
.y46{bottom:1096.710000px;}
.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.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h22{height:15.285000px;}
.h17{height:17.100000px;}
.h2d{height:17.805000px;}
.h31{height:17.820000px;}
.h2f{height:17.842500px;}
.h30{height:18.000000px;}
.h20{height:18.705000px;}
.h32{height:19.260000px;}
.h1f{height:19.965000px;}
.h2b{height:20.505000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h16{height:25.001719px;}
.h24{height:25.905000px;}
.h25{height:29.145586px;}
.h1d{height:30.090000px;}
.h10{height:32.670352px;}
.h1c{height:33.588984px;}
.h14{height:36.886641px;}
.h2e{height:38.089687px;}
.h18{height:40.472227px;}
.h2a{height:40.842773px;}
.h28{height:41.291016px;}
.h2c{height:44.000156px;}
.h19{height:46.080000px;}
.h12{height:48.761719px;}
.h1a{height:49.253906px;}
.h1e{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h27{height:55.054688px;}
.h29{height:55.209375px;}
.h6{height:57.051211px;}
.h21{height:60.418125px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h11{height:91.642500px;}
.h15{height:91.800000px;}
.h26{height:93.810000px;}
.h8{height:108.030000px;}
.h23{height:368.115000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w1f{width:53.989500px;}
.w1e{width:60.694500px;}
.wd{width:74.149500px;}
.w17{width:74.181000px;}
.w15{width:74.194500px;}
.w1b{width:74.325000px;}
.w6{width:76.669500px;}
.w1a{width:80.985000px;}
.w18{width:81.000000px;}
.w1c{width:81.021000px;}
.w1d{width:81.030000px;}
.wc{width:81.034500px;}
.w19{width:81.036000px;}
.w10{width:87.696000px;}
.w11{width:87.825000px;}
.w16{width:87.829500px;}
.we{width:87.861000px;}
.w14{width:87.870000px;}
.w13{width:94.485000px;}
.wf{width:94.500000px;}
.w12{width:101.181000px;}
.w5{width:124.005000px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:2.520000px;}
.x1b{left:4.320000px;}
.x19{left:5.385000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x24{left:9.720000px;}
.x5{left:10.789500px;}
.x21{left:12.945000px;}
.x22{left:14.760000px;}
.x10{left:16.740000px;}
.x26{left:18.180000px;}
.x25{left:19.425000px;}
.x2{left:21.049500px;}
.x27{left:22.680000px;}
.x23{left:24.645000px;}
.x34{left:27.178500px;}
.x35{left:28.249500px;}
.x2b{left:30.585000px;}
.x29{left:33.283500px;}
.x2d{left:34.920000px;}
.x3b{left:37.650000px;}
.x7{left:39.780000px;}
.x16{left:47.341500px;}
.x36{left:60.841500px;}
.xd{left:73.785000px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x28{left:121.546500px;}
.x17{left:128.386500px;}
.x3{left:157.005000px;}
.x37{left:175.545000px;}
.xa{left:176.805000px;}
.x18{left:202.545000px;}
.x2a{left:209.385000px;}
.x13{left:230.430000px;}
.x38{left:249.885000px;}
.x12{left:263.910000px;}
.x2c{left:283.575000px;}
.x1a{left:290.415000px;}
.xf{left:325.875000px;}
.x39{left:330.915000px;}
.x2e{left:364.575000px;}
.x1c{left:384.915000px;}
.x3a{left:411.915000px;}
.x2f{left:445.620000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x15{left:462.705000px;}
.x1e{left:472.620000px;}
.x3c{left:499.620000px;}
.x30{left:526.620000px;}
.x1f{left:560.460000px;}
.x3d{left:580.620000px;}
.x31{left:600.960000px;}
.x6{left:661.650000px;}
.xe{left:680.323500px;}
.x32{left:681.990000px;}
.x3e{left:749.490000px;}
.x20{left:756.150000px;}
.x33{left:762.990000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls24{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.304000pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.250667pt;}
.ls19{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.208000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.172800pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.081067pt;}
.ls1a{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:-0.032000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.028160pt;}
.ls11{letter-spacing:0.032000pt;}
.ls27{letter-spacing:0.048000pt;}
.ls1f{letter-spacing:0.062933pt;}
.ls22{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls26{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.208640pt;}
.ls12{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls17{letter-spacing:0.304000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.432000pt;}
.lsc{letter-spacing:0.480000pt;}
.ls18{letter-spacing:2.528000pt;}
.ls14{letter-spacing:6.346667pt;}
.ws1{word-spacing:-19.837013pt;}
.ws2{word-spacing:-17.024000pt;}
.wsb{word-spacing:-16.848000pt;}
.wsa{word-spacing:-16.416000pt;}
.ws5{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws7{word-spacing:-14.955520pt;}
.ws1c{word-spacing:-12.448000pt;}
.ws20{word-spacing:-12.368000pt;}
.ws22{word-spacing:-12.336000pt;}
.ws1f{word-spacing:-12.240000pt;}
.ws1b{word-spacing:-12.192000pt;}
.ws1e{word-spacing:-11.824000pt;}
.ws23{word-spacing:-11.616000pt;}
.ws8{word-spacing:-11.584000pt;}
.ws4{word-spacing:-11.568000pt;}
.wsf{word-spacing:-11.536000pt;}
.ws21{word-spacing:-11.520000pt;}
.ws12{word-spacing:-11.488000pt;}
.ws25{word-spacing:-11.408000pt;}
.ws10{word-spacing:-11.376000pt;}
.ws17{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.328000pt;}
.ws24{word-spacing:-11.312000pt;}
.ws19{word-spacing:-11.296000pt;}
.ws1d{word-spacing:-11.280000pt;}
.ws16{word-spacing:-10.083413pt;}
.ws3{word-spacing:-9.192960pt;}
.ws18{word-spacing:-9.008853pt;}
.ws1a{word-spacing:-8.773120pt;}
.wsd{word-spacing:-8.000000pt;}
.ws13{word-spacing:-7.968000pt;}
.ws15{word-spacing:-7.552000pt;}
.wse{word-spacing:-7.456000pt;}
.ws14{word-spacing:-7.392000pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2.074667pt;}
._0{margin-left:-1.123200pt;}
._3{width:0.925227pt;}
._7{width:2.496000pt;}
._6{width:4.176000pt;}
._5{width:5.563307pt;}
._b{width:6.532693pt;}
._8{width:7.440000pt;}
._9{width:8.640000pt;}
._a{width:9.826773pt;}
._25{width:10.882347pt;}
._c{width:12.528000pt;}
._12{width:13.474773pt;}
._16{width:14.378667pt;}
._4{width:15.914667pt;}
._13{width:16.986667pt;}
._20{width:18.288000pt;}
._21{width:19.248000pt;}
._1d{width:20.784000pt;}
._1e{width:21.840000pt;}
._d{width:23.280000pt;}
._1c{width:24.256000pt;}
._18{width:25.200000pt;}
._19{width:26.122667pt;}
._f{width:27.312000pt;}
._10{width:28.848000pt;}
._11{width:29.952000pt;}
._1a{width:30.898773pt;}
._22{width:31.968000pt;}
._2c{width:32.925440pt;}
._2d{width:33.829333pt;}
._1b{width:35.136000pt;}
._35{width:36.077440pt;}
._26{width:37.056000pt;}
._17{width:38.467200pt;}
._30{width:39.868800pt;}
._23{width:42.000000pt;}
._24{width:43.008000pt;}
._1f{width:44.717867pt;}
._e{width:49.248000pt;}
._27{width:50.352000pt;}
._38{width:51.312000pt;}
._2b{width:52.464000pt;}
._28{width:54.576000pt;}
._29{width:55.536000pt;}
._2e{width:57.600000pt;}
._2f{width:58.512000pt;}
._37{width:59.520000pt;}
._36{width:61.536000pt;}
._14{width:63.456000pt;}
._15{width:64.730667pt;}
._2{width:65.797760pt;}
._3a{width:68.160000pt;}
._2a{width:72.960000pt;}
._31{width:74.016000pt;}
._32{width:75.154773pt;}
._39{width:91.824000pt;}
._33{width:95.904000pt;}
._34{width:97.056000pt;}
.fs3{font-size:10.880000pt;}
.fs7{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fsd{font-size:37.120000pt;}
.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;}
.y21{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y28{bottom:3.200000pt;}
.y2a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y26{bottom:4.320000pt;}
.ya5{bottom:7.360000pt;}
.ya7{bottom:7.400000pt;}
.ya9{bottom:7.520000pt;}
.y41{bottom:8.000000pt;}
.y8f{bottom:8.640000pt;}
.y3b{bottom:9.746667pt;}
.y1f{bottom:9.760000pt;}
.y23{bottom:13.280000pt;}
.y24{bottom:13.440000pt;}
.y15{bottom:13.600000pt;}
.y3d{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y1b{bottom:18.720000pt;}
.y40{bottom:26.880000pt;}
.y3a{bottom:30.226667pt;}
.y1e{bottom:30.240000pt;}
.y14{bottom:40.640000pt;}
.y1a{bottom:45.920000pt;}
.y39{bottom:50.546667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3f{bottom:67.386667pt;}
.y13{bottom:67.880000pt;}
.y38{bottom:71.026667pt;}
.ya{bottom:71.520000pt;}
.y19{bottom:73.120000pt;}
.y9{bottom:81.280000pt;}
.y37{bottom:91.506667pt;}
.ya3{bottom:99.040000pt;}
.yee{bottom:100.640000pt;}
.ye8{bottom:105.280000pt;}
.y36{bottom:111.986667pt;}
.yc9{bottom:112.640000pt;}
.yf5{bottom:115.200000pt;}
.y70{bottom:115.840000pt;}
.y76{bottom:117.760000pt;}
.ya2{bottom:119.360000pt;}
.yed{bottom:121.120000pt;}
.ye7{bottom:125.760000pt;}
.y35{bottom:132.466667pt;}
.yc8{bottom:133.152000pt;}
.yf4{bottom:135.546667pt;}
.y6f{bottom:136.186667pt;}
.y75{bottom:138.266667pt;}
.ya1{bottom:139.866667pt;}
.yec{bottom:141.626667pt;}
.y3c{bottom:144.680000pt;}
.ye6{bottom:146.106667pt;}
.y34{bottom:152.946667pt;}
.yc7{bottom:153.466667pt;}
.yf3{bottom:156.026667pt;}
.y6e{bottom:156.666667pt;}
.y74{bottom:158.746667pt;}
.ya0{bottom:160.346667pt;}
.yeb{bottom:162.106667pt;}
.ye5{bottom:166.586667pt;}
.y2b{bottom:167.720000pt;}
.y33{bottom:173.266667pt;}
.yc6{bottom:173.946667pt;}
.yf2{bottom:176.506667pt;}
.y6d{bottom:177.146667pt;}
.y73{bottom:179.226667pt;}
.y9f{bottom:180.826667pt;}
.ye4{bottom:187.066667pt;}
.y32{bottom:193.786667pt;}
.yc5{bottom:194.426667pt;}
.yf1{bottom:196.986667pt;}
.y6c{bottom:197.626667pt;}
.y72{bottom:199.706667pt;}
.y9e{bottom:201.306667pt;}
.yea{bottom:203.066667pt;}
.ye3{bottom:207.546667pt;}
.y31{bottom:214.266667pt;}
.y71{bottom:214.426667pt;}
.yc4{bottom:214.906667pt;}
.yf0{bottom:217.466667pt;}
.y6b{bottom:218.106667pt;}
.y8d{bottom:220.186667pt;}
.y9d{bottom:221.786667pt;}
.ye9{bottom:223.386667pt;}
.ye2{bottom:228.026667pt;}
.y30{bottom:234.746667pt;}
.yc3{bottom:235.386667pt;}
.yef{bottom:238.106667pt;}
.y6a{bottom:238.586667pt;}
.y8c{bottom:240.506667pt;}
.y9c{bottom:242.106667pt;}
.ye1{bottom:248.506667pt;}
.y2f{bottom:255.226667pt;}
.yc2{bottom:255.866667pt;}
.y69{bottom:258.906667pt;}
.y8b{bottom:260.986667pt;}
.y9b{bottom:262.586667pt;}
.ye0{bottom:268.826667pt;}
.y2e{bottom:275.706667pt;}
.yc1{bottom:276.186667pt;}
.y68{bottom:279.386667pt;}
.y8a{bottom:281.466667pt;}
.y9a{bottom:283.066667pt;}
.ydf{bottom:289.306667pt;}
.y2d{bottom:296.026667pt;}
.yc0{bottom:296.666667pt;}
.y67{bottom:299.866667pt;}
.y89{bottom:301.946667pt;}
.y99{bottom:303.546667pt;}
.yde{bottom:309.786667pt;}
.y2c{bottom:316.506667pt;}
.ybf{bottom:317.146667pt;}
.y66{bottom:320.346667pt;}
.y88{bottom:322.426667pt;}
.y98{bottom:324.026667pt;}
.ydd{bottom:330.266667pt;}
.ybe{bottom:337.626667pt;}
.y65{bottom:340.826667pt;}
.y87{bottom:342.906667pt;}
.y97{bottom:344.346667pt;}
.ydc{bottom:350.786667pt;}
.ybd{bottom:358.146667pt;}
.y64{bottom:361.346667pt;}
.y86{bottom:363.266667pt;}
.y96{bottom:364.866667pt;}
.ydb{bottom:371.106667pt;}
.ybc{bottom:378.626667pt;}
.y63{bottom:381.666667pt;}
.y85{bottom:383.746667pt;}
.yda{bottom:391.586667pt;}
.ybb{bottom:398.946667pt;}
.y62{bottom:402.146667pt;}
.y84{bottom:404.226667pt;}
.y95{bottom:405.826667pt;}
.yd9{bottom:412.066667pt;}
.y94{bottom:418.466667pt;}
.yba{bottom:419.426667pt;}
.y61{bottom:422.626667pt;}
.y83{bottom:424.706667pt;}
.yd8{bottom:432.546667pt;}
.y93{bottom:437.666667pt;}
.yb9{bottom:439.906667pt;}
.y60{bottom:443.106667pt;}
.y82{bottom:445.186667pt;}
.yd7{bottom:453.026667pt;}
.y92{bottom:456.866667pt;}
.yb8{bottom:460.386667pt;}
.y5f{bottom:463.586667pt;}
.y81{bottom:465.666667pt;}
.yd6{bottom:473.506667pt;}
.y91{bottom:476.066667pt;}
.yb7{bottom:480.866667pt;}
.y5e{bottom:484.066667pt;}
.y80{bottom:485.986667pt;}
.yd5{bottom:493.826667pt;}
.y29{bottom:494.946667pt;}
.y90{bottom:495.266667pt;}
.yb6{bottom:501.186667pt;}
.y5d{bottom:504.386667pt;}
.y7f{bottom:506.466667pt;}
.y27{bottom:508.546667pt;}
.yd4{bottom:514.306667pt;}
.y8e{bottom:515.426667pt;}
.yb5{bottom:521.666667pt;}
.y5c{bottom:524.866667pt;}
.y25{bottom:525.186667pt;}
.y7e{bottom:526.946667pt;}
.yd3{bottom:534.786667pt;}
.yb4{bottom:542.146667pt;}
.y22{bottom:542.946667pt;}
.y5b{bottom:545.346667pt;}
.y7d{bottom:547.426667pt;}
.yd2{bottom:555.266667pt;}
.yb3{bottom:562.626667pt;}
.y5a{bottom:565.826667pt;}
.y7c{bottom:567.906667pt;}
.y20{bottom:569.693333pt;}
.yd1{bottom:575.773333pt;}
.y1d{bottom:581.533333pt;}
.yb2{bottom:583.133333pt;}
.y59{bottom:586.333333pt;}
.y7b{bottom:588.253333pt;}
.yd0{bottom:596.253333pt;}
.yb1{bottom:603.613333pt;}
.y58{bottom:606.653333pt;}
.y7a{bottom:608.733333pt;}
.ycf{bottom:616.573333pt;}
.y1c{bottom:622.493333pt;}
.yb0{bottom:623.933333pt;}
.y57{bottom:627.133333pt;}
.y79{bottom:629.213333pt;}
.yce{bottom:637.053333pt;}
.y18{bottom:637.693333pt;}
.yaf{bottom:644.413333pt;}
.y56{bottom:647.613333pt;}
.y78{bottom:649.693333pt;}
.ycd{bottom:649.853333pt;}
.y77{bottom:664.413333pt;}
.yae{bottom:664.893333pt;}
.ycc{bottom:666.653333pt;}
.y55{bottom:668.093333pt;}
.ycb{bottom:684.733333pt;}
.y54{bottom:688.573333pt;}
.yca{bottom:701.693333pt;}
.yad{bottom:705.853333pt;}
.y53{bottom:709.053333pt;}
.yac{bottom:718.493333pt;}
.y16{bottom:719.293333pt;}
.y52{bottom:729.373333pt;}
.y12{bottom:732.253333pt;}
.yab{bottom:735.453333pt;}
.y51{bottom:749.853333pt;}
.yaa{bottom:752.413333pt;}
.ya8{bottom:769.213333pt;}
.y50{bottom:770.333333pt;}
.ya6{bottom:786.173333pt;}
.y4f{bottom:790.853333pt;}
.ya4{bottom:804.133333pt;}
.y4e{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.yd{bottom:825.893333pt;}
.y4d{bottom:831.813333pt;}
.y4c{bottom:852.133333pt;}
.y4b{bottom:872.613333pt;}
.y4a{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y49{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y48{bottom:934.053333pt;}
.y3e{bottom:946.853333pt;}
.y47{bottom:954.533333pt;}
.y46{bottom:974.853333pt;}
.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.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h22{height:13.586667pt;}
.h17{height:15.200000pt;}
.h2d{height:15.826667pt;}
.h31{height:15.840000pt;}
.h2f{height:15.860000pt;}
.h30{height:16.000000pt;}
.h20{height:16.626667pt;}
.h32{height:17.120000pt;}
.h1f{height:17.746667pt;}
.h2b{height:18.226667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h16{height:22.223750pt;}
.h24{height:23.026667pt;}
.h25{height:25.907188pt;}
.h1d{height:26.746667pt;}
.h10{height:29.040312pt;}
.h1c{height:29.856875pt;}
.h14{height:32.788125pt;}
.h2e{height:33.857500pt;}
.h18{height:35.975313pt;}
.h2a{height:36.304688pt;}
.h28{height:36.703125pt;}
.h2c{height:39.111250pt;}
.h19{height:40.960000pt;}
.h12{height:43.343750pt;}
.h1a{height:43.781250pt;}
.h1e{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h27{height:48.937500pt;}
.h29{height:49.075000pt;}
.h6{height:50.712187pt;}
.h21{height:53.705000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h11{height:81.460000pt;}
.h15{height:81.600000pt;}
.h26{height:83.386667pt;}
.h8{height:96.026667pt;}
.h23{height:327.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w1f{width:47.990667pt;}
.w1e{width:53.950667pt;}
.wd{width:65.910667pt;}
.w17{width:65.938667pt;}
.w15{width:65.950667pt;}
.w1b{width:66.066667pt;}
.w6{width:68.150667pt;}
.w1a{width:71.986667pt;}
.w18{width:72.000000pt;}
.w1c{width:72.018667pt;}
.w1d{width:72.026667pt;}
.wc{width:72.030667pt;}
.w19{width:72.032000pt;}
.w10{width:77.952000pt;}
.w11{width:78.066667pt;}
.w16{width:78.070667pt;}
.we{width:78.098667pt;}
.w14{width:78.106667pt;}
.w13{width:83.986667pt;}
.wf{width:84.000000pt;}
.w12{width:89.938667pt;}
.w5{width:110.226667pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:2.240000pt;}
.x1b{left:3.840000pt;}
.x19{left:4.786667pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x24{left:8.640000pt;}
.x5{left:9.590667pt;}
.x21{left:11.506667pt;}
.x22{left:13.120000pt;}
.x10{left:14.880000pt;}
.x26{left:16.160000pt;}
.x25{left:17.266667pt;}
.x2{left:18.710667pt;}
.x27{left:20.160000pt;}
.x23{left:21.906667pt;}
.x34{left:24.158667pt;}
.x35{left:25.110667pt;}
.x2b{left:27.186667pt;}
.x29{left:29.585333pt;}
.x2d{left:31.040000pt;}
.x3b{left:33.466667pt;}
.x7{left:35.360000pt;}
.x16{left:42.081333pt;}
.x36{left:54.081333pt;}
.xd{left:65.586667pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x28{left:108.041333pt;}
.x17{left:114.121333pt;}
.x3{left:139.560000pt;}
.x37{left:156.040000pt;}
.xa{left:157.160000pt;}
.x18{left:180.040000pt;}
.x2a{left:186.120000pt;}
.x13{left:204.826667pt;}
.x38{left:222.120000pt;}
.x12{left:234.586667pt;}
.x2c{left:252.066667pt;}
.x1a{left:258.146667pt;}
.xf{left:289.666667pt;}
.x39{left:294.146667pt;}
.x2e{left:324.066667pt;}
.x1c{left:342.146667pt;}
.x3a{left:366.146667pt;}
.x2f{left:396.106667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x15{left:411.293333pt;}
.x1e{left:420.106667pt;}
.x3c{left:444.106667pt;}
.x30{left:468.106667pt;}
.x1f{left:498.186667pt;}
.x3d{left:516.106667pt;}
.x31{left:534.186667pt;}
.x6{left:588.133333pt;}
.xe{left:604.732000pt;}
.x32{left:606.213333pt;}
.x3e{left:666.213333pt;}
.x20{left:672.133333pt;}
.x33{left:678.213333pt;}
}




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