
    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_fcc08916900becfbd189340d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_06c7e895265db23dfd91b1f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5587a58008ab29a887e9f585.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_2843d1c3b0eb696364467b73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2694dc61e2deb57c6598ed7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d322ab19984baf5e14ad13f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_95d6c43b9ad746e76ebeb84f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_ca172bf312fab7cd978c3b38.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_55dcbd493247783c7c98c09d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_21cca7b952ff0ed852ab20a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694824;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_0857b0532fc7e5b873ac271b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.862305;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_e3ba6027b942ee538a4a72dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d322ab19984baf5e14ad13f2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b688f3e3b4efc0d605bac05b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_f3932ba9aa5f2a5287719c87.woff2')format("woff");}.fff{font-family:fff;line-height:0.862305;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_435d7aee51007eadd43c6db3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_26adc528e63de10afc1874f2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_87bd4db827e41fea5144ca00.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a684eb20dbaa919bfeae9a2e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e761ba0fbb055c18f941f15a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_80835d7befa4e6fee4c22371.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.862305;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:ff16;src:url('chunks/assets/font_46c7b4fd9b9794ac8b62aad5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b744897898220f4ba52fb5d1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f6f3f8c3a8c4a7b1d012bf66.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.862305;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:ff19;src:url('chunks/assets/font_526455fefc0af243ee5c6d0b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.844727;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:ff1a;src:url('chunks/assets/font_381a4a647d9ebcc6aad731be.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_8764f6cb2f19bae8642e4ffd.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.862305;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:ff1c;src:url('chunks/assets/font_0291ef7e245b69914710001a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-26.765640px;}
.v4{vertical-align:-22.605420px;}
.v2{vertical-align:-17.981940px;}
.v3{vertical-align:-6.087900px;}
.v7{vertical-align:-4.265640px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:4.280280px;}
.v1{vertical-align:19.980000px;}
.v8{vertical-align:39.026700px;}
.lsd{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.060000px;}
.ls18{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.157350px;}
.ls13{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.174840px;}
.ls9{letter-spacing:0.174900px;}
.lsf{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.294000px;}
.ls3{letter-spacing:0.299580px;}
.ls1{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.300060px;}
.ls4{letter-spacing:0.306480px;}
.ls7{letter-spacing:0.309600px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.780000px;}
.ls16{letter-spacing:0.960000px;}
.ls17{letter-spacing:1.320000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-60.300000px;}
.wsb{word-spacing:-39.104940px;}
.ws1b{word-spacing:-17.286868px;}
.ws10{word-spacing:-15.455221px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.000000px;}
.wse{word-spacing:-14.595617px;}
.ws2{word-spacing:-14.094000px;}
.ws1c{word-spacing:-13.770000px;}
.wsa{word-spacing:-13.505272px;}
.ws1d{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.128484px;}
.ws0{word-spacing:-10.794000px;}
.ws19{word-spacing:-10.658241px;}
.ws1{word-spacing:-10.500000px;}
.ws14{word-spacing:-9.464582px;}
.ws11{word-spacing:-8.134156px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:105.456490px;}
.wsd{word-spacing:105.459490px;}
.ws12{word-spacing:107.400735px;}
.ws13{word-spacing:107.406615px;}
.ws15{word-spacing:116.307767px;}
.wsf{word-spacing:166.967258px;}
.ws16{word-spacing:240.355924px;}
.ws17{word-spacing:240.376565px;}
.ws1a{word-spacing:241.239423px;}
.ws9{word-spacing:383.671320px;}
.ws7{word-spacing:652.576615px;}
.ws8{word-spacing:682.811035px;}
._1c{margin-left:-8.430000px;}
._a{margin-left:-6.660000px;}
._3{margin-left:-5.364000px;}
._2{margin-left:-3.924000px;}
._0{margin-left:-1.998000px;}
._4{width:1.054440px;}
._7{width:2.065200px;}
._5{width:3.878940px;}
._8{width:5.827500px;}
._6{width:6.835680px;}
._9{width:8.164320px;}
._19{width:56.975156px;}
._18{width:81.002458px;}
._1d{width:118.476000px;}
._1a{width:143.548612px;}
._1b{width:225.331553px;}
._c{width:238.605375px;}
._1e{width:241.348140px;}
._13{width:308.870985px;}
._e{width:320.115405px;}
._b{width:328.991535px;}
._15{width:365.379225px;}
._10{width:398.680500px;}
._12{width:410.123640px;}
._d{width:433.093650px;}
._14{width:444.792315px;}
._17{width:459.960780px;}
._f{width:477.623775px;}
._16{width:481.657425px;}
._11{width:533.426980px;}
._1{width:594.611400px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.481940px;}
.fs4{font-size:34.980000px;}
.fsb{font-size:35.991840px;}
.fs8{font-size:39.104940px;}
.fsc{font-size:41.878680px;}
.fs3{font-size:42.000000px;}
.fse{font-size:47.160360px;}
.fs6{font-size:49.125360px;}
.fs9{font-size:52.502220px;}
.fsd{font-size:53.665860px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:55.594320px;}
.fs7{font-size:59.757840px;}
.fs1{font-size:60.000000px;}
.fsf{font-size:62.182980px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:5.266845px;}
.y5a{bottom:5.345220px;}
.y5c{bottom:5.346675px;}
.y60{bottom:5.346690px;}
.y5e{bottom:5.347410px;}
.y58{bottom:9.125235px;}
.y1{bottom:31.500000px;}
.y41{bottom:32.059293px;}
.yaa{bottom:34.974600px;}
.ya9{bottom:46.038570px;}
.yb6{bottom:51.027825px;}
.yd0{bottom:53.698935px;}
.ya1{bottom:57.323730px;}
.yb1{bottom:64.152090px;}
.ycf{bottom:68.179650px;}
.ya2{bottom:69.266595px;}
.y8a{bottom:71.148930px;}
.y63{bottom:78.002658px;}
.ya3{bottom:81.215325px;}
.yc9{bottom:82.962855px;}
.yb2{bottom:85.569570px;}
.y89{bottom:86.324715px;}
.y7d{bottom:86.387700px;}
.yb7{bottom:88.634025px;}
.ya4{bottom:93.158190px;}
.y7e{bottom:99.677445px;}
.yca{bottom:100.942380px;}
.y88{bottom:101.507820px;}
.y9b{bottom:101.643255px;}
.yd6{bottom:101.975100px;}
.yad{bottom:102.414540px;}
.yd3{bottom:104.509275px;}
.ya5{bottom:105.103995px;}
.yb3{bottom:106.983390px;}
.y85{bottom:107.005335px;}
.y3{bottom:107.643705px;}
.y83{bottom:110.086680px;}
.yfe{bottom:111.431145px;}
.y87{bottom:111.566613px;}
.y7f{bottom:112.962165px;}
.y10d{bottom:114.759750px;}
.ya6{bottom:117.051270px;}
.y53{bottom:117.725100px;}
.yc7{bottom:117.725145px;}
.y56{bottom:117.725160px;}
.y40{bottom:117.725595px;}
.y9a{bottom:117.726510px;}
.y7b{bottom:117.966795px;}
.ycb{bottom:118.921140px;}
.yd5{bottom:119.970705px;}
.yd4{bottom:120.471408px;}
.y80{bottom:126.251910px;}
.yab{bottom:126.553710px;}
.yb4{bottom:128.408205px;}
.ya7{bottom:128.997060px;}
.yd2{bottom:129.091470px;}
.yfd{bottom:129.130995px;}
.y68{bottom:131.528640px;}
.y52{bottom:135.725100px;}
.y3f{bottom:135.725595px;}
.ycc{bottom:136.899900px;}
.y81{bottom:139.541760px;}
.ya8{bottom:140.941395px;}
.yac{bottom:143.752440px;}
.y84{bottom:145.413585px;}
.yfc{bottom:146.830845px;}
.y1b{bottom:148.883790px;}
.yb5{bottom:149.825685px;}
.y67{bottom:149.894550px;}
.y99{bottom:152.559075px;}
.y82{bottom:152.823495px;}
.y51{bottom:153.725100px;}
.y3e{bottom:153.725595px;}
.ycd{bottom:154.894785px;}
.y86{bottom:159.174330px;}
.ybc{bottom:162.719235px;}
.yfb{bottom:164.530695px;}
.yb8{bottom:165.743400px;}
.y98{bottom:168.627675px;}
.y1a{bottom:171.379230px;}
.y95{bottom:171.725100px;}
.y50{bottom:171.725250px;}
.y3d{bottom:171.725595px;}
.yce{bottom:172.873545px;}
.yb9{bottom:178.770723px;}
.ybb{bottom:179.197260px;}
.yfa{bottom:182.230545px;}
.y97{bottom:184.702140px;}
.y6a{bottom:185.521890px;}
.yd1{bottom:186.489255px;}
.y19{bottom:189.379230px;}
.y3c{bottom:189.725595px;}
.ybe{bottom:194.686515px;}
.yba{bottom:195.681150px;}
.y9d{bottom:198.970455px;}
.y8c{bottom:199.541025px;}
.yf9{bottom:199.930395px;}
.y18{bottom:202.883790px;}
.y69{bottom:203.892195px;}
.y8f{bottom:204.123060px;}
.y9f{bottom:206.307120px;}
.y4f{bottom:207.725100px;}
.y3b{bottom:207.725595px;}
.ybd{bottom:211.180665px;}
.y8b{bottom:214.735845px;}
.y9c{bottom:215.041170px;}
.yf8{bottom:217.630245px;}
.y9e{bottom:222.375735px;}
.y8e{bottom:224.948730px;}
.y17{bottom:225.379230px;}
.y66{bottom:225.660090px;}
.y94{bottom:225.725100px;}
.y3a{bottom:225.725595px;}
.yd8{bottom:230.755365px;}
.yf7{bottom:235.330095px;}
.y8d{bottom:240.143565px;}
.y39{bottom:243.725595px;}
.y65{bottom:244.030380px;}
.yd7{bottom:248.730465px;}
.yf6{bottom:253.029945px;}
.y4e{bottom:261.725145px;}
.y38{bottom:261.725595px;}
.y64{bottom:262.396320px;}
.yf5{bottom:270.729795px;}
.y6c{bottom:277.773600px;}
.ya0{bottom:277.912818px;}
.y4d{bottom:279.725100px;}
.y37{bottom:279.725595px;}
.yf4{bottom:288.429645px;}
.yc2{bottom:288.982905px;}
.yc0{bottom:291.679680px;}
.y6b{bottom:296.123340px;}
.y36{bottom:297.725595px;}
.y6e{bottom:304.780470px;}
.yc1{bottom:305.458005px;}
.yf3{bottom:306.129495px;}
.ybf{bottom:308.159175px;}
.y35{bottom:315.725595px;}
.y70{bottom:316.032120px;}
.y6d{bottom:323.130240px;}
.yf2{bottom:323.829345px;}
.y34{bottom:333.725595px;}
.y6f{bottom:334.381845px;}
.yf1{bottom:341.529195px;}
.y33{bottom:351.725595px;}
.yf0{bottom:359.229045px;}
.y32{bottom:369.725595px;}
.y7a{bottom:369.966795px;}
.yef{bottom:376.928895px;}
.y16{bottom:378.735555px;}
.y31{bottom:387.725595px;}
.y79{bottom:387.966795px;}
.yee{bottom:394.628745px;}
.y15{bottom:396.735555px;}
.y30{bottom:405.725595px;}
.y108{bottom:405.725895px;}
.y78{bottom:405.966795px;}
.yed{bottom:412.328595px;}
.y14{bottom:414.735600px;}
.yc6{bottom:423.725100px;}
.y2f{bottom:423.725595px;}
.y107{bottom:423.725895px;}
.yec{bottom:430.028445px;}
.y13{bottom:432.735555px;}
.yc5{bottom:441.725100px;}
.y2e{bottom:441.725895px;}
.yeb{bottom:447.728295px;}
.y12{bottom:450.735600px;}
.y93{bottom:459.725100px;}
.y106{bottom:459.725745px;}
.y77{bottom:459.966795px;}
.yea{bottom:465.428145px;}
.y11{bottom:468.735555px;}
.y92{bottom:477.725235px;}
.y2d{bottom:477.725745px;}
.ye9{bottom:483.127995px;}
.y10{bottom:486.735555px;}
.y105{bottom:495.725595px;}
.y91{bottom:495.725835px;}
.ye8{bottom:500.827845px;}
.y7c{bottom:511.827843px;}
.y2c{bottom:513.725595px;}
.yaf{bottom:513.725835px;}
.yc4{bottom:513.725880px;}
.y61{bottom:518.257053px;}
.ye7{bottom:518.527695px;}
.y96{bottom:519.471408px;}
.yf{bottom:522.735555px;}
.y2b{bottom:531.725595px;}
.yc3{bottom:531.725835px;}
.ye6{bottom:536.227545px;}
.ye{bottom:540.735600px;}
.y5f{bottom:540.929898px;}
.y2a{bottom:549.725595px;}
.y90{bottom:549.725835px;}
.ye5{bottom:553.927395px;}
.yd{bottom:558.735555px;}
.y5d{bottom:563.602758px;}
.y29{bottom:567.725595px;}
.yae{bottom:567.725835px;}
.ye4{bottom:571.627245px;}
.yc{bottom:576.735510px;}
.y28{bottom:585.725595px;}
.y5b{bottom:586.276338px;}
.yc8{bottom:586.888638px;}
.ye3{bottom:589.327095px;}
.yb{bottom:594.735600px;}
.y27{bottom:603.725595px;}
.ye2{bottom:607.026945px;}
.y59{bottom:608.949183px;}
.ya{bottom:612.735555px;}
.y26{bottom:621.725595px;}
.yb0{bottom:622.848363px;}
.ye1{bottom:624.726795px;}
.y57{bottom:631.622778px;}
.y25{bottom:639.725595px;}
.y10c{bottom:639.725640px;}
.y4c{bottom:639.725835px;}
.ye0{bottom:642.426645px;}
.y24{bottom:657.725595px;}
.y10b{bottom:657.725640px;}
.y4b{bottom:657.725835px;}
.y55{bottom:657.725880px;}
.ydf{bottom:660.126495px;}
.y9{bottom:666.735555px;}
.y23{bottom:675.725595px;}
.y4a{bottom:675.725835px;}
.yde{bottom:677.826345px;}
.y104{bottom:693.725595px;}
.y22{bottom:693.725745px;}
.y49{bottom:693.725835px;}
.ydd{bottom:695.526195px;}
.y8{bottom:702.735555px;}
.y103{bottom:711.725595px;}
.y10a{bottom:711.725640px;}
.y21{bottom:711.725745px;}
.y48{bottom:711.725835px;}
.y76{bottom:711.967530px;}
.ydc{bottom:713.226045px;}
.y7{bottom:720.735555px;}
.y102{bottom:729.725595px;}
.y20{bottom:729.725745px;}
.y47{bottom:729.725835px;}
.y75{bottom:729.967530px;}
.ydb{bottom:730.925895px;}
.y101{bottom:747.725595px;}
.y109{bottom:747.725640px;}
.y1f{bottom:747.725745px;}
.y46{bottom:747.725835px;}
.y74{bottom:747.967530px;}
.yda{bottom:748.625745px;}
.y6{bottom:756.735555px;}
.y100{bottom:765.725595px;}
.y1e{bottom:765.725745px;}
.y45{bottom:765.725835px;}
.y73{bottom:765.967530px;}
.yd9{bottom:766.325595px;}
.y5{bottom:778.335555px;}
.yff{bottom:783.725595px;}
.y44{bottom:783.725835px;}
.y72{bottom:783.967530px;}
.y4{bottom:799.935555px;}
.y1d{bottom:801.725595px;}
.y43{bottom:801.725835px;}
.y71{bottom:801.967530px;}
.y1c{bottom:865.189245px;}
.y54{bottom:865.189455px;}
.y2{bottom:865.459530px;}
.y42{bottom:865.459815px;}
.hd{height:21.728760px;}
.hf{height:21.729480px;}
.h11{height:21.729495px;}
.h1d{height:24.621371px;}
.h17{height:26.750987px;}
.h1f{height:28.648452px;}
.hb{height:29.286615px;}
.h6{height:29.399896px;}
.h25{height:32.261555px;}
.h20{height:32.928732px;}
.hc{height:33.293945px;}
.h13{height:33.461854px;}
.h22{height:35.768505px;}
.h23{height:36.711851px;}
.h19{height:38.223052px;}
.h1b{height:40.474185px;}
.ha{height:40.664062px;}
.h15{height:40.879265px;}
.h10{height:44.056765px;}
.h12{height:44.059645px;}
.he{height:44.059705px;}
.h28{height:45.270910px;}
.h3{height:47.381836px;}
.h5{height:48.796875px;}
.h4{height:52.646484px;}
.h26{height:71.288255px;}
.h1c{height:195.137685px;}
.h16{height:212.015625px;}
.h1e{height:227.054445px;}
.h24{height:255.689205px;}
.h18{height:308.373060px;}
.h1a{height:326.533440px;}
.h27{height:365.232420px;}
.h21{height:382.935840px;}
.h14{height:426.225585px;}
.h2{height:977.952765px;}
.h9{height:977.953125px;}
.h0{height:1040.952759px;}
.h1{height:1041.000000px;}
.h8{height:1041.750000px;}
.h7{height:1042.071715px;}
.wd{width:325.215090px;}
.wa{width:353.344470px;}
.we{width:378.407220px;}
.w10{width:426.131100px;}
.wb{width:480.408690px;}
.wf{width:483.943365px;}
.wc{width:508.702140px;}
.w9{width:538.880130px;}
.w8{width:563.053710px;}
.w11{width:568.803210px;}
.w7{width:680.314440px;}
.w5{width:680.314455px;}
.w2{width:680.314950px;}
.w1{width:743.250000px;}
.w0{width:743.314911px;}
.w4{width:744.000000px;}
.w6{width:744.044403px;}
.w3{width:744.044769px;}
.x0{left:0.000000px;}
.x10{left:1.888185px;}
.x1e{left:8.266845px;}
.x3f{left:9.905280px;}
.x31{left:12.111330px;}
.x1d{left:13.238520px;}
.x39{left:15.402120px;}
.x25{left:20.870895px;}
.x3e{left:21.911865px;}
.x2d{left:24.208005px;}
.x1{left:31.500000px;}
.x3a{left:33.512745px;}
.x26{left:41.438025px;}
.x32{left:47.822760px;}
.xc{left:51.353325px;}
.x2e{left:53.672595px;}
.x11{left:54.786615px;}
.x1f{left:57.347895px;}
.x2{left:64.435725px;}
.x17{left:73.169130px;}
.x2c{left:74.892330px;}
.xb{left:80.787495px;}
.xd{left:85.039305px;}
.x45{left:87.405765px;}
.xe{left:91.674410px;}
.x5{left:98.615385px;}
.x3b{left:101.384085px;}
.x18{left:106.203195px;}
.x4{left:108.091845px;}
.xa{left:127.559100px;}
.x27{left:138.477315px;}
.x40{left:140.436045px;}
.x49{left:145.183590px;}
.x19{left:147.344610px;}
.x9{left:148.818900px;}
.x20{left:151.036395px;}
.x33{left:155.011230px;}
.x7{left:158.465115px;}
.x6{left:159.719670px;}
.x41{left:161.885745px;}
.x2f{left:163.417965px;}
.x3{left:165.886065px;}
.x47{left:167.229589px;}
.x30{left:169.944570px;}
.xf{left:171.936765px;}
.x15{left:174.390930px;}
.x29{left:179.229589px;}
.x4a{left:180.766110px;}
.x35{left:185.707035px;}
.x1c{left:191.290290px;}
.x16{left:196.714050px;}
.x22{left:198.000000px;}
.x1a{left:199.186530px;}
.x21{left:201.593985px;}
.x48{left:204.945555px;}
.x1b{left:210.696180px;}
.x34{left:211.946055px;}
.x37{left:217.993695px;}
.x38{left:219.287115px;}
.x42{left:220.888920px;}
.x28{left:228.281025px;}
.x43{left:239.076420px;}
.x3c{left:246.719280px;}
.x8{left:258.078555px;}
.x24{left:261.278085px;}
.x3d{left:279.682620px;}
.x23{left:280.899675px;}
.x2a{left:294.155265px;}
.x12{left:296.080455px;}
.x36{left:298.756305px;}
.x13{left:305.440980px;}
.x14{left:313.716075px;}
.x2b{left:315.096675px;}
.x44{left:326.143800px;}
.x46{left:340.456785px;}
@media print{
.v5{vertical-align:-23.791680pt;}
.v4{vertical-align:-20.093707pt;}
.v2{vertical-align:-15.983947pt;}
.v3{vertical-align:-5.411467pt;}
.v7{vertical-align:-3.791680pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.804693pt;}
.v1{vertical-align:17.760000pt;}
.v8{vertical-align:34.690400pt;}
.lsd{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls18{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.139867pt;}
.ls13{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.155413pt;}
.ls9{letter-spacing:0.155467pt;}
.lsf{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.261333pt;}
.ls3{letter-spacing:0.266293pt;}
.ls1{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.266720pt;}
.ls4{letter-spacing:0.272427pt;}
.ls7{letter-spacing:0.275200pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.693333pt;}
.ls16{letter-spacing:0.853333pt;}
.ls17{letter-spacing:1.173333pt;}
.ws6{word-spacing:-53.600000pt;}
.wsb{word-spacing:-34.759947pt;}
.ws1b{word-spacing:-15.366105pt;}
.ws10{word-spacing:-13.737974pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.333333pt;}
.wse{word-spacing:-12.973882pt;}
.ws2{word-spacing:-12.528000pt;}
.ws1c{word-spacing:-12.240000pt;}
.wsa{word-spacing:-12.004686pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws18{word-spacing:-10.780875pt;}
.ws0{word-spacing:-9.594667pt;}
.ws19{word-spacing:-9.473992pt;}
.ws1{word-spacing:-9.333333pt;}
.ws14{word-spacing:-8.412961pt;}
.ws11{word-spacing:-7.230361pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:93.739102pt;}
.wsd{word-spacing:93.741769pt;}
.ws12{word-spacing:95.467320pt;}
.ws13{word-spacing:95.472547pt;}
.ws15{word-spacing:103.384682pt;}
.wsf{word-spacing:148.415340pt;}
.ws16{word-spacing:213.649710pt;}
.ws17{word-spacing:213.668058pt;}
.ws1a{word-spacing:214.435042pt;}
.ws9{word-spacing:341.041173pt;}
.ws7{word-spacing:580.068102pt;}
.ws8{word-spacing:606.943142pt;}
._1c{margin-left:-7.493333pt;}
._a{margin-left:-5.920000pt;}
._3{margin-left:-4.768000pt;}
._2{margin-left:-3.488000pt;}
._0{margin-left:-1.776000pt;}
._4{width:0.937280pt;}
._7{width:1.835733pt;}
._5{width:3.447947pt;}
._8{width:5.180000pt;}
._6{width:6.076160pt;}
._9{width:7.257173pt;}
._19{width:50.644583pt;}
._18{width:72.002185pt;}
._1d{width:105.312000pt;}
._1a{width:127.598766pt;}
._1b{width:200.294714pt;}
._c{width:212.093667pt;}
._1e{width:214.531680pt;}
._13{width:274.551987pt;}
._e{width:284.547027pt;}
._b{width:292.436920pt;}
._15{width:324.781534pt;}
._10{width:354.382667pt;}
._12{width:364.554347pt;}
._d{width:384.972133pt;}
._14{width:395.370947pt;}
._17{width:408.854027pt;}
._f{width:424.554466pt;}
._16{width:428.139933pt;}
._11{width:474.157315pt;}
._1{width:528.543467pt;}
.fs5{font-size:27.983947pt;}
.fs4{font-size:31.093333pt;}
.fsb{font-size:31.992747pt;}
.fs8{font-size:34.759947pt;}
.fsc{font-size:37.225493pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:41.920320pt;}
.fs6{font-size:43.666987pt;}
.fs9{font-size:46.668640pt;}
.fsd{font-size:47.702987pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:49.417173pt;}
.fs7{font-size:53.118080pt;}
.fs1{font-size:53.333333pt;}
.fsf{font-size:55.273760pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:4.681640pt;}
.y5a{bottom:4.751307pt;}
.y5c{bottom:4.752600pt;}
.y60{bottom:4.752613pt;}
.y5e{bottom:4.753253pt;}
.y58{bottom:8.111320pt;}
.y1{bottom:28.000000pt;}
.y41{bottom:28.497149pt;}
.yaa{bottom:31.088533pt;}
.ya9{bottom:40.923173pt;}
.yb6{bottom:45.358067pt;}
.yd0{bottom:47.732387pt;}
.ya1{bottom:50.954427pt;}
.yb1{bottom:57.024080pt;}
.ycf{bottom:60.604133pt;}
.ya2{bottom:61.570307pt;}
.y8a{bottom:63.243493pt;}
.y63{bottom:69.335696pt;}
.ya3{bottom:72.191400pt;}
.yc9{bottom:73.744760pt;}
.yb2{bottom:76.061840pt;}
.y89{bottom:76.733080pt;}
.y7d{bottom:76.789067pt;}
.yb7{bottom:78.785800pt;}
.ya4{bottom:82.807280pt;}
.y7e{bottom:88.602173pt;}
.yca{bottom:89.726560pt;}
.y88{bottom:90.229173pt;}
.y9b{bottom:90.349560pt;}
.yd6{bottom:90.644533pt;}
.yad{bottom:91.035147pt;}
.yd3{bottom:92.897133pt;}
.ya5{bottom:93.425773pt;}
.yb3{bottom:95.096347pt;}
.y85{bottom:95.115853pt;}
.y3{bottom:95.683293pt;}
.y83{bottom:97.854827pt;}
.yfe{bottom:99.049907pt;}
.y87{bottom:99.170323pt;}
.y7f{bottom:100.410813pt;}
.y10d{bottom:102.008667pt;}
.ya6{bottom:104.045573pt;}
.y53{bottom:104.644533pt;}
.yc7{bottom:104.644573pt;}
.y56{bottom:104.644587pt;}
.y40{bottom:104.644973pt;}
.y9a{bottom:104.645787pt;}
.y7b{bottom:104.859373pt;}
.ycb{bottom:105.707680pt;}
.yd5{bottom:106.640627pt;}
.yd4{bottom:107.085696pt;}
.y80{bottom:112.223920pt;}
.yab{bottom:112.492187pt;}
.yb4{bottom:114.140627pt;}
.ya7{bottom:114.664053pt;}
.yd2{bottom:114.747973pt;}
.yfd{bottom:114.783107pt;}
.y68{bottom:116.914347pt;}
.y52{bottom:120.644533pt;}
.y3f{bottom:120.644973pt;}
.ycc{bottom:121.688800pt;}
.y81{bottom:124.037120pt;}
.ya8{bottom:125.281240pt;}
.yac{bottom:127.779947pt;}
.y84{bottom:129.256520pt;}
.yfc{bottom:130.516307pt;}
.y1b{bottom:132.341147pt;}
.yb5{bottom:133.178387pt;}
.y67{bottom:133.239600pt;}
.y99{bottom:135.608067pt;}
.y82{bottom:135.843107pt;}
.y51{bottom:136.644533pt;}
.y3e{bottom:136.644973pt;}
.ycd{bottom:137.684253pt;}
.y86{bottom:141.488293pt;}
.ybc{bottom:144.639320pt;}
.yfb{bottom:146.249507pt;}
.yb8{bottom:147.327467pt;}
.y98{bottom:149.891267pt;}
.y1a{bottom:152.337093pt;}
.y95{bottom:152.644533pt;}
.y50{bottom:152.644667pt;}
.y3d{bottom:152.644973pt;}
.yce{bottom:153.665373pt;}
.yb9{bottom:158.907309pt;}
.ybb{bottom:159.286453pt;}
.yfa{bottom:161.982707pt;}
.y97{bottom:164.179680pt;}
.y6a{bottom:164.908347pt;}
.yd1{bottom:165.768227pt;}
.y19{bottom:168.337093pt;}
.y3c{bottom:168.644973pt;}
.ybe{bottom:173.054680pt;}
.yba{bottom:173.938800pt;}
.y9d{bottom:176.862627pt;}
.y8c{bottom:177.369800pt;}
.yf9{bottom:177.715907pt;}
.y18{bottom:180.341147pt;}
.y69{bottom:181.237507pt;}
.y8f{bottom:181.442720pt;}
.y9f{bottom:183.384107pt;}
.y4f{bottom:184.644533pt;}
.y3b{bottom:184.644973pt;}
.ybd{bottom:187.716147pt;}
.y8b{bottom:190.876307pt;}
.y9c{bottom:191.147707pt;}
.yf8{bottom:193.449107pt;}
.y9e{bottom:197.667320pt;}
.y8e{bottom:199.954427pt;}
.y17{bottom:200.337093pt;}
.y66{bottom:200.586747pt;}
.y94{bottom:200.644533pt;}
.y3a{bottom:200.644973pt;}
.yd8{bottom:205.115880pt;}
.yf7{bottom:209.182307pt;}
.y8d{bottom:213.460947pt;}
.y39{bottom:216.644973pt;}
.y65{bottom:216.915893pt;}
.yd7{bottom:221.093747pt;}
.yf6{bottom:224.915507pt;}
.y4e{bottom:232.644573pt;}
.y38{bottom:232.644973pt;}
.y64{bottom:233.241173pt;}
.yf5{bottom:240.648707pt;}
.y6c{bottom:246.909867pt;}
.ya0{bottom:247.033616pt;}
.y4d{bottom:248.644533pt;}
.y37{bottom:248.644973pt;}
.yf4{bottom:256.381907pt;}
.yc2{bottom:256.873693pt;}
.yc0{bottom:259.270827pt;}
.y6b{bottom:263.220747pt;}
.y36{bottom:264.644973pt;}
.y6e{bottom:270.915973pt;}
.yc1{bottom:271.518227pt;}
.yf3{bottom:272.115107pt;}
.ybf{bottom:273.919267pt;}
.y35{bottom:280.644973pt;}
.y70{bottom:280.917440pt;}
.y6d{bottom:287.226880pt;}
.yf2{bottom:287.848307pt;}
.y34{bottom:296.644973pt;}
.y6f{bottom:297.228307pt;}
.yf1{bottom:303.581507pt;}
.y33{bottom:312.644973pt;}
.yf0{bottom:319.314707pt;}
.y32{bottom:328.644973pt;}
.y7a{bottom:328.859373pt;}
.yef{bottom:335.047907pt;}
.y16{bottom:336.653827pt;}
.y31{bottom:344.644973pt;}
.y79{bottom:344.859373pt;}
.yee{bottom:350.781107pt;}
.y15{bottom:352.653827pt;}
.y30{bottom:360.644973pt;}
.y108{bottom:360.645240pt;}
.y78{bottom:360.859373pt;}
.yed{bottom:366.514307pt;}
.y14{bottom:368.653867pt;}
.yc6{bottom:376.644533pt;}
.y2f{bottom:376.644973pt;}
.y107{bottom:376.645240pt;}
.yec{bottom:382.247507pt;}
.y13{bottom:384.653827pt;}
.yc5{bottom:392.644533pt;}
.y2e{bottom:392.645240pt;}
.yeb{bottom:397.980707pt;}
.y12{bottom:400.653867pt;}
.y93{bottom:408.644533pt;}
.y106{bottom:408.645107pt;}
.y77{bottom:408.859373pt;}
.yea{bottom:413.713907pt;}
.y11{bottom:416.653827pt;}
.y92{bottom:424.644653pt;}
.y2d{bottom:424.645107pt;}
.ye9{bottom:429.447107pt;}
.y10{bottom:432.653827pt;}
.y105{bottom:440.644973pt;}
.y91{bottom:440.645187pt;}
.ye8{bottom:445.180307pt;}
.y7c{bottom:454.958083pt;}
.y2c{bottom:456.644973pt;}
.yaf{bottom:456.645187pt;}
.yc4{bottom:456.645227pt;}
.y61{bottom:460.672936pt;}
.ye7{bottom:460.913507pt;}
.y96{bottom:461.752363pt;}
.yf{bottom:464.653827pt;}
.y2b{bottom:472.644973pt;}
.yc3{bottom:472.645187pt;}
.ye6{bottom:476.646707pt;}
.ye{bottom:480.653867pt;}
.y5f{bottom:480.826576pt;}
.y2a{bottom:488.644973pt;}
.y90{bottom:488.645187pt;}
.ye5{bottom:492.379907pt;}
.yd{bottom:496.653827pt;}
.y5d{bottom:500.980229pt;}
.y29{bottom:504.644973pt;}
.yae{bottom:504.645187pt;}
.ye4{bottom:508.113107pt;}
.yc{bottom:512.653787pt;}
.y28{bottom:520.644973pt;}
.y5b{bottom:521.134523pt;}
.yc8{bottom:521.678789pt;}
.ye3{bottom:523.846307pt;}
.yb{bottom:528.653867pt;}
.y27{bottom:536.644973pt;}
.ye2{bottom:539.579507pt;}
.y59{bottom:541.288163pt;}
.ya{bottom:544.653827pt;}
.y26{bottom:552.644973pt;}
.yb0{bottom:553.642989pt;}
.ye1{bottom:555.312707pt;}
.y57{bottom:561.442469pt;}
.y25{bottom:568.644973pt;}
.y10c{bottom:568.645013pt;}
.y4c{bottom:568.645187pt;}
.ye0{bottom:571.045907pt;}
.y24{bottom:584.644973pt;}
.y10b{bottom:584.645013pt;}
.y4b{bottom:584.645187pt;}
.y55{bottom:584.645227pt;}
.ydf{bottom:586.779107pt;}
.y9{bottom:592.653827pt;}
.y23{bottom:600.644973pt;}
.y4a{bottom:600.645187pt;}
.yde{bottom:602.512307pt;}
.y104{bottom:616.644973pt;}
.y22{bottom:616.645107pt;}
.y49{bottom:616.645187pt;}
.ydd{bottom:618.245507pt;}
.y8{bottom:624.653827pt;}
.y103{bottom:632.644973pt;}
.y10a{bottom:632.645013pt;}
.y21{bottom:632.645107pt;}
.y48{bottom:632.645187pt;}
.y76{bottom:632.860027pt;}
.ydc{bottom:633.978707pt;}
.y7{bottom:640.653827pt;}
.y102{bottom:648.644973pt;}
.y20{bottom:648.645107pt;}
.y47{bottom:648.645187pt;}
.y75{bottom:648.860027pt;}
.ydb{bottom:649.711907pt;}
.y101{bottom:664.644973pt;}
.y109{bottom:664.645013pt;}
.y1f{bottom:664.645107pt;}
.y46{bottom:664.645187pt;}
.y74{bottom:664.860027pt;}
.yda{bottom:665.445107pt;}
.y6{bottom:672.653827pt;}
.y100{bottom:680.644973pt;}
.y1e{bottom:680.645107pt;}
.y45{bottom:680.645187pt;}
.y73{bottom:680.860027pt;}
.yd9{bottom:681.178307pt;}
.y5{bottom:691.853827pt;}
.yff{bottom:696.644973pt;}
.y44{bottom:696.645187pt;}
.y72{bottom:696.860027pt;}
.y4{bottom:711.053827pt;}
.y1d{bottom:712.644973pt;}
.y43{bottom:712.645187pt;}
.y71{bottom:712.860027pt;}
.y1c{bottom:769.057107pt;}
.y54{bottom:769.057293pt;}
.y2{bottom:769.297360pt;}
.y42{bottom:769.297613pt;}
.hd{height:19.314453pt;}
.hf{height:19.315093pt;}
.h11{height:19.315107pt;}
.h1d{height:21.885663pt;}
.h17{height:23.778655pt;}
.h1f{height:25.465291pt;}
.hb{height:26.032547pt;}
.h6{height:26.133241pt;}
.h25{height:28.676938pt;}
.h20{height:29.269984pt;}
.hc{height:29.594618pt;}
.h13{height:29.743870pt;}
.h22{height:31.794227pt;}
.h23{height:32.632756pt;}
.h19{height:33.976046pt;}
.h1b{height:35.977053pt;}
.ha{height:36.145833pt;}
.h15{height:36.337124pt;}
.h10{height:39.161569pt;}
.h12{height:39.164129pt;}
.he{height:39.164182pt;}
.h28{height:40.240809pt;}
.h3{height:42.117188pt;}
.h5{height:43.375000pt;}
.h4{height:46.796875pt;}
.h26{height:63.367338pt;}
.h1c{height:173.455720pt;}
.h16{height:188.458333pt;}
.h1e{height:201.826173pt;}
.h24{height:227.279293pt;}
.h18{height:274.109387pt;}
.h1a{height:290.251947pt;}
.h27{height:324.651040pt;}
.h21{height:340.387413pt;}
.h14{height:378.867187pt;}
.h2{height:869.291347pt;}
.h9{height:869.291667pt;}
.h0{height:925.291341pt;}
.h1{height:925.333333pt;}
.h8{height:926.000000pt;}
.h7{height:926.285969pt;}
.wd{width:289.080080pt;}
.wa{width:314.083973pt;}
.we{width:336.361973pt;}
.w10{width:378.783200pt;}
.wb{width:427.029947pt;}
.wf{width:430.171880pt;}
.wc{width:452.179680pt;}
.w9{width:479.004560pt;}
.w8{width:500.492187pt;}
.w11{width:505.602853pt;}
.w7{width:604.723947pt;}
.w5{width:604.723960pt;}
.w2{width:604.724400pt;}
.w1{width:660.666667pt;}
.w0{width:660.724365pt;}
.w4{width:661.333333pt;}
.w6{width:661.372803pt;}
.w3{width:661.373128pt;}
.x0{left:0.000000pt;}
.x10{left:1.678387pt;}
.x1e{left:7.348307pt;}
.x3f{left:8.804693pt;}
.x31{left:10.765627pt;}
.x1d{left:11.767573pt;}
.x39{left:13.690773pt;}
.x25{left:18.551907pt;}
.x3e{left:19.477213pt;}
.x2d{left:21.518227pt;}
.x1{left:28.000000pt;}
.x3a{left:29.789107pt;}
.x26{left:36.833800pt;}
.x32{left:42.509120pt;}
.xc{left:45.647400pt;}
.x2e{left:47.708973pt;}
.x11{left:48.699213pt;}
.x1f{left:50.975907pt;}
.x2{left:57.276200pt;}
.x17{left:65.039227pt;}
.x2c{left:66.570960pt;}
.xb{left:71.811107pt;}
.xd{left:75.590493pt;}
.x45{left:77.694013pt;}
.xe{left:81.488364pt;}
.x5{left:87.658120pt;}
.x3b{left:90.119187pt;}
.x18{left:94.402840pt;}
.x4{left:96.081640pt;}
.xa{left:113.385867pt;}
.x27{left:123.090947pt;}
.x40{left:124.832040pt;}
.x49{left:129.052080pt;}
.x19{left:130.972987pt;}
.x9{left:132.283467pt;}
.x20{left:134.254573pt;}
.x33{left:137.787760pt;}
.x7{left:140.857880pt;}
.x6{left:141.973040pt;}
.x41{left:143.898440pt;}
.x2f{left:145.260413pt;}
.x3{left:147.454280pt;}
.x47{left:148.648524pt;}
.x30{left:151.061840pt;}
.xf{left:152.832680pt;}
.x15{left:155.014160pt;}
.x29{left:159.315191pt;}
.x4a{left:160.680987pt;}
.x35{left:165.072920pt;}
.x1c{left:170.035813pt;}
.x16{left:174.856933pt;}
.x22{left:176.000000pt;}
.x1a{left:177.054693pt;}
.x21{left:179.194653pt;}
.x48{left:182.173827pt;}
.x1b{left:187.285493pt;}
.x34{left:188.396493pt;}
.x37{left:193.772173pt;}
.x38{left:194.921880pt;}
.x42{left:196.345707pt;}
.x28{left:202.916467pt;}
.x43{left:212.512373pt;}
.x3c{left:219.306027pt;}
.x8{left:229.403160pt;}
.x24{left:232.247187pt;}
.x3d{left:248.606773pt;}
.x23{left:249.688600pt;}
.x2a{left:261.471347pt;}
.x12{left:263.182627pt;}
.x36{left:265.561160pt;}
.x13{left:271.503093pt;}
.x14{left:278.858733pt;}
.x2b{left:280.085933pt;}
.x44{left:289.905600pt;}
.x46{left:302.628253pt;}
}




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