
    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_a7e3e6922d76329081937154.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_1c30c0f02a9a33b0a49adf0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_2f7c66b79b4ddde808e16ec5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_bd089031018ba2ecc096caae.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_5830d7ef85a13c4d280607a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_b640c5d9955e7de85eef73ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_ca49e496dde79a65522ac588.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_87855bf750c206637e91e008.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_7c7372725eda65c8fefbfdde.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908203;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_6ac84fa9474602997e2eb51a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_6100118ff237020e3593d289.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_675d170271f996ede6260740.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675781;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_fae522e8ba22a05cfa425a5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_5257eee4f0f7866b888e2acf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.862793;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_60155bb6ba51beb133c738d8.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_4f57b8191850d63457566a7d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4020743830b5a4b2e7612eb0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_00170013b78cad19820d9740.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;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_e1b7d40b8b2ca1d6c39cf465.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675781;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_d41cca7d74a48fa850250c1a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;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_b4e7ca244c9462f5f951f37f.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d3eb2ef30c03f6c811ada37c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_86eae1c0d8e1e99380bedbe7.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3dfde1f08dcd47f80b2ddf47.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_77260e1c5e025478bbde97ee.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;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_166714089b39caf48b24982f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls12{letter-spacing:-1.058400px;}
.ls1e{letter-spacing:-0.525312px;}
.ls1a{letter-spacing:-0.470592px;}
.ls9{letter-spacing:-0.454176px;}
.ls18{letter-spacing:-0.447552px;}
.ls1d{letter-spacing:-0.432288px;}
.ls1f{letter-spacing:-0.421344px;}
.ls1c{letter-spacing:-0.361152px;}
.ls14{letter-spacing:-0.338688px;}
.ls15{letter-spacing:-0.320544px;}
.ls13{letter-spacing:-0.241920px;}
.lsc{letter-spacing:-0.241200px;}
.ls16{letter-spacing:-0.223776px;}
.ls21{letter-spacing:-0.213408px;}
.lsa{letter-spacing:-0.186048px;}
.ls20{letter-spacing:-0.169632px;}
.ls6{letter-spacing:-0.158976px;}
.ls17{letter-spacing:-0.145152px;}
.ls8{letter-spacing:-0.125856px;}
.lse{letter-spacing:-0.119232px;}
.lsb{letter-spacing:-0.115776px;}
.lsd{letter-spacing:-0.079488px;}
.ls10{letter-spacing:-0.028800px;}
.lsf{letter-spacing:-0.014400px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.007200px;}
.ls19{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.043200px;}
.ls24{letter-spacing:0.171072px;}
.ls2{letter-spacing:0.239040px;}
.ls1{letter-spacing:0.240480px;}
.ls23{letter-spacing:0.256608px;}
.ls22{letter-spacing:0.365904px;}
.ls25{letter-spacing:11.496096px;}
.ls4{letter-spacing:11.718720px;}
.ls0{letter-spacing:73.440000px;}
.ls3{letter-spacing:77.760000px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws0{word-spacing:-18.288864px;}
.wsd{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.985600px;}
.ws5{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.315200px;}
.ws7{word-spacing:-16.272000px;}
.ws13{word-spacing:-16.257600px;}
.ws6{word-spacing:-16.243200px;}
.wsb{word-spacing:-14.974848px;}
.ws9{word-spacing:-14.896224px;}
.wsa{word-spacing:-14.878080px;}
.wsc{word-spacing:-14.672448px;}
.wsf{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.ws10{word-spacing:-13.866048px;}
.ws12{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.ws11{word-spacing:-13.701888px;}
.wse{word-spacing:0.000000px;}
._24{margin-left:-16.499952px;}
._5{margin-left:-8.863920px;}
._4{margin-left:-7.257600px;}
._6{margin-left:-6.123600px;}
._1e{margin-left:-4.887360px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._15{width:2.607408px;}
._14{width:4.204800px;}
._d{width:5.407200px;}
._e{width:6.583680px;}
._18{width:7.922880px;}
._b{width:9.218880px;}
._c{width:10.356480px;}
._17{width:12.229920px;}
._1f{width:13.406112px;}
._13{width:14.415840px;}
._1c{width:16.001856px;}
._16{width:17.334144px;}
._a{width:18.704304px;}
._9{width:19.981296px;}
._f{width:21.844800px;}
._10{width:22.943232px;}
._21{width:24.154272px;}
._26{width:25.977600px;}
._1b{width:27.813600px;}
._1d{width:28.980000px;}
._22{width:32.414400px;}
._27{width:33.537600px;}
._12{width:37.046880px;}
._23{width:40.248000px;}
._11{width:45.561600px;}
._19{width:51.400800px;}
._1a{width:52.555680px;}
._7{width:73.628496px;}
._8{width:77.726880px;}
._20{width:177.899472px;}
._28{width:186.562512px;}
._25{width:194.399424px;}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(121,124,143);}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.480000px;}
.fs6{font-size:33.120000px;}
.fsa{font-size:44.640000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs9{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y12{bottom:2.566800px;}
.y3d{bottom:3.346800px;}
.y76{bottom:4.560000px;}
.y59{bottom:5.400000px;}
.y73{bottom:5.460000px;}
.y9{bottom:6.406800px;}
.y52{bottom:11.446800px;}
.y11{bottom:13.726800px;}
.y3c{bottom:13.786800px;}
.yd3{bottom:23.220000px;}
.ye1{bottom:23.280000px;}
.yef{bottom:23.340000px;}
.yf1{bottom:23.400000px;}
.ydb{bottom:23.520000px;}
.ye9{bottom:23.580000px;}
.yd{bottom:23.686800px;}
.yf7{bottom:23.700000px;}
.yd5{bottom:23.760000px;}
.ye3{bottom:23.820000px;}
.yd7{bottom:23.940000px;}
.yfc{bottom:24.000000px;}
.ydd{bottom:24.060000px;}
.yeb{bottom:24.120000px;}
.ydf{bottom:24.240000px;}
.ye5{bottom:24.360000px;}
.yd9{bottom:24.480000px;}
.ye7{bottom:24.540000px;}
.yed{bottom:24.660000px;}
.yf5{bottom:25.020000px;}
.y75{bottom:25.440000px;}
.y19{bottom:26.146800px;}
.y8{bottom:28.726800px;}
.yf{bottom:32.086800px;}
.y51{bottom:32.326800px;}
.y10{bottom:32.446800px;}
.y72{bottom:34.980000px;}
.y4d{bottom:35.386800px;}
.y3b{bottom:35.746800px;}
.y18{bottom:47.026800px;}
.y4c{bottom:52.666800px;}
.y4f{bottom:55.006800px;}
.y71{bottom:55.860000px;}
.yc{bottom:56.446800px;}
.y4{bottom:56.746800px;}
.y3a{bottom:57.706800px;}
.y50{bottom:58.606800px;}
.yf9{bottom:63.240000px;}
.y57{bottom:65.520000px;}
.y17{bottom:67.906800px;}
.y4b{bottom:69.946800px;}
.y3{bottom:75.826800px;}
.y70{bottom:76.740000px;}
.y39{bottom:79.666800px;}
.y58{bottom:81.000000px;}
.y4a{bottom:87.226800px;}
.y16{bottom:88.786800px;}
.yb{bottom:89.566800px;}
.y56{bottom:90.720000px;}
.y6f{bottom:97.260000px;}
.y4e{bottom:97.500000px;}
.y38{bottom:101.626800px;}
.y49{bottom:104.506800px;}
.y15{bottom:109.666800px;}
.yc9{bottom:110.160000px;}
.y111{bottom:110.520000px;}
.y154{bottom:114.480000px;}
.y6e{bottom:118.140000px;}
.yee{bottom:118.500000px;}
.ya{bottom:122.326800px;}
.yb0{bottom:123.120000px;}
.y37{bottom:123.586800px;}
.ya6{bottom:125.280000px;}
.y14{bottom:130.906800px;}
.y85{bottom:131.040000px;}
.y137{bottom:137.160000px;}
.y153{bottom:138.240000px;}
.y6d{bottom:138.660000px;}
.yc8{bottom:141.120000px;}
.y110{bottom:141.480000px;}
.y7{bottom:142.846800px;}
.y36{bottom:145.546800px;}
.ycd{bottom:150.120000px;}
.yaf{bottom:154.080000px;}
.ya5{bottom:156.600000px;}
.yec{bottom:157.500000px;}
.y6c{bottom:159.540000px;}
.y84{bottom:162.000000px;}
.y1a{bottom:165.000000px;}
.y35{bottom:167.506800px;}
.y136{bottom:168.120000px;}
.yc7{bottom:172.080000px;}
.y10f{bottom:172.800000px;}
.y121{bottom:174.240000px;}
.y6b{bottom:180.060000px;}
.ycc{bottom:181.080000px;}
.yae{bottom:185.040000px;}
.ya4{bottom:187.560000px;}
.y34{bottom:189.466800px;}
.y83{bottom:192.960000px;}
.yea{bottom:198.000000px;}
.y135{bottom:199.080000px;}
.y6a{bottom:200.940000px;}
.y152{bottom:203.400000px;}
.y10e{bottom:203.760000px;}
.y120{bottom:205.200000px;}
.yad{bottom:206.280000px;}
.y33{bottom:211.426800px;}
.yc6{bottom:212.040000px;}
.ya3{bottom:218.520000px;}
.y69{bottom:221.460000px;}
.yac{bottom:226.800000px;}
.y151{bottom:227.160000px;}
.y134{bottom:230.400000px;}
.y82{bottom:231.120000px;}
.y32{bottom:233.386800px;}
.y10d{bottom:234.720000px;}
.y11f{bottom:236.160000px;}
.ye8{bottom:238.500000px;}
.ya2{bottom:239.760000px;}
.y68{bottom:242.340000px;}
.yc5{bottom:243.360000px;}
.y31{bottom:255.346800px;}
.ya1{bottom:260.280000px;}
.y133{bottom:261.360000px;}
.y81{bottom:262.440000px;}
.y67{bottom:262.860000px;}
.y10c{bottom:265.680000px;}
.y11e{bottom:267.120000px;}
.y150{bottom:268.920000px;}
.yab{bottom:270.000000px;}
.yc4{bottom:274.320000px;}
.y30{bottom:277.306800px;}
.ye6{bottom:277.500000px;}
.y3e{bottom:282.000000px;}
.y66{bottom:283.740000px;}
.ya0{bottom:291.240000px;}
.y132{bottom:292.320000px;}
.y80{bottom:293.400000px;}
.y10b{bottom:297.000000px;}
.y11d{bottom:298.440000px;}
.y2f{bottom:299.266800px;}
.y65{bottom:304.260000px;}
.yc3{bottom:305.280000px;}
.yaa{bottom:309.960000px;}
.y14f{bottom:310.320000px;}
.ye4{bottom:318.000000px;}
.y2e{bottom:321.226800px;}
.y131{bottom:323.280000px;}
.y7f{bottom:324.360000px;}
.y64{bottom:325.140000px;}
.y11c{bottom:329.400000px;}
.y9f{bottom:331.200000px;}
.y14e{bottom:334.080000px;}
.yc2{bottom:336.240000px;}
.y10a{bottom:336.960000px;}
.y48{bottom:340.666800px;}
.ya9{bottom:340.920000px;}
.y2d{bottom:343.186800px;}
.y63{bottom:345.660000px;}
.y130{bottom:354.600000px;}
.y7e{bottom:355.320000px;}
.y14d{bottom:357.840000px;}
.y47{bottom:357.946800px;}
.ye2{bottom:358.500000px;}
.y11b{bottom:360.360000px;}
.y9e{bottom:362.520000px;}
.y2c{bottom:365.146800px;}
.y62{bottom:366.540000px;}
.yc1{bottom:367.560000px;}
.y109{bottom:367.920000px;}
.y46{bottom:375.226800px;}
.y12f{bottom:375.480000px;}
.ya8{bottom:380.880000px;}
.y7d{bottom:386.280000px;}
.y61{bottom:387.060000px;}
.y2b{bottom:387.106800px;}
.y11a{bottom:391.320000px;}
.y45{bottom:392.506800px;}
.y9d{bottom:393.480000px;}
.y12e{bottom:396.360000px;}
.yc0{bottom:398.520000px;}
.y108{bottom:398.880000px;}
.ye0{bottom:399.000000px;}
.y14c{bottom:399.240000px;}
.y16b{bottom:403.920000px;}
.y60{bottom:407.940000px;}
.y2a{bottom:409.066800px;}
.y44{bottom:409.786800px;}
.y7c{bottom:417.600000px;}
.y43{bottom:427.066800px;}
.y5f{bottom:428.460000px;}
.ybf{bottom:429.480000px;}
.y107{bottom:430.200000px;}
.y29{bottom:431.026800px;}
.y14b{bottom:432.000000px;}
.y9c{bottom:433.440000px;}
.y16a{bottom:435.240000px;}
.yde{bottom:438.000000px;}
.y12d{bottom:440.280000px;}
.y42{bottom:444.346800px;}
.y7b{bottom:448.560000px;}
.y5e{bottom:449.340000px;}
.y28{bottom:452.986800px;}
.y14a{bottom:455.760000px;}
.ybe{bottom:460.440000px;}
.y106{bottom:461.160000px;}
.y41{bottom:461.626800px;}
.y9b{bottom:464.400000px;}
.y169{bottom:466.920000px;}
.y5d{bottom:469.860000px;}
.y12c{bottom:471.600000px;}
.y27{bottom:474.946800px;}
.ydc{bottom:478.500000px;}
.y40{bottom:478.906800px;}
.y7a{bottom:479.520000px;}
.y149{bottom:488.160000px;}
.y5c{bottom:490.740000px;}
.ybd{bottom:491.760000px;}
.y105{bottom:492.120000px;}
.y9a{bottom:495.720000px;}
.y3f{bottom:496.186800px;}
.y26{bottom:496.906800px;}
.y168{bottom:498.240000px;}
.ycb{bottom:500.760000px;}
.y12b{bottom:502.560000px;}
.y79{bottom:510.480000px;}
.y5b{bottom:511.260000px;}
.y25{bottom:518.866800px;}
.yda{bottom:519.000000px;}
.ybc{bottom:522.720000px;}
.y104{bottom:523.080000px;}
.y99{bottom:526.680000px;}
.y167{bottom:529.560000px;}
.y148{bottom:529.920000px;}
.y78{bottom:531.720000px;}
.y12a{bottom:533.520000px;}
.y24{bottom:540.826800px;}
.y147{bottom:553.320000px;}
.y119{bottom:553.680000px;}
.y103{bottom:554.400000px;}
.y98{bottom:557.640000px;}
.yd8{bottom:558.000000px;}
.y166{bottom:560.880000px;}
.y77{bottom:562.680000px;}
.y23{bottom:562.786800px;}
.y129{bottom:564.480000px;}
.y74{bottom:579.000000px;}
.y118{bottom:584.640000px;}
.y22{bottom:584.746800px;}
.y102{bottom:585.360000px;}
.y97{bottom:588.600000px;}
.y165{bottom:592.200000px;}
.ybb{bottom:593.640000px;}
.y146{bottom:595.080000px;}
.y128{bottom:595.800000px;}
.yd6{bottom:598.500000px;}
.y21{bottom:606.706800px;}
.y164{bottom:614.520000px;}
.y117{bottom:615.600000px;}
.y5a{bottom:619.500000px;}
.y96{bottom:619.920000px;}
.y101{bottom:624.240000px;}
.yba{bottom:624.600000px;}
.y127{bottom:626.760000px;}
.y20{bottom:629.026800px;}
.y145{bottom:636.480000px;}
.yd4{bottom:639.000000px;}
.y163{bottom:644.400000px;}
.y116{bottom:646.920000px;}
.y1f{bottom:650.266800px;}
.y95{bottom:650.880000px;}
.yb9{bottom:655.920000px;}
.y144{bottom:660.240000px;}
.y100{bottom:661.680000px;}
.y126{bottom:664.920000px;}
.y162{bottom:668.160000px;}
.y1e{bottom:671.146800px;}
.yd2{bottom:679.500000px;}
.y94{bottom:681.840000px;}
.yb8{bottom:686.880000px;}
.yff{bottom:693.000000px;}
.y125{bottom:695.880000px;}
.y161{bottom:700.920000px;}
.y143{bottom:702.000000px;}
.y1d{bottom:706.786800px;}
.yb7{bottom:717.840000px;}
.y93{bottom:720.000000px;}
.y124{bottom:726.840000px;}
.y1c{bottom:731.626800px;}
.yfe{bottom:731.880000px;}
.y160{bottom:742.320000px;}
.yd1{bottom:743.400000px;}
.yfd{bottom:745.500000px;}
.yb6{bottom:748.800000px;}
.y92{bottom:750.960000px;}
.y1b{bottom:756.466800px;}
.y123{bottom:757.800000px;}
.y15f{bottom:766.080000px;}
.y142{bottom:767.160000px;}
.yb5{bottom:780.120000px;}
.y91{bottom:781.920000px;}
.yd0{bottom:782.640000px;}
.yfb{bottom:786.000000px;}
.y122{bottom:789.120000px;}
.y141{bottom:790.920000px;}
.y13{bottom:792.000000px;}
.y15e{bottom:807.480000px;}
.yb4{bottom:811.080000px;}
.y90{bottom:813.240000px;}
.ycf{bottom:820.080000px;}
.yfa{bottom:826.500000px;}
.y140{bottom:832.320000px;}
.y15d{bottom:840.240000px;}
.yb3{bottom:842.040000px;}
.y8f{bottom:844.200000px;}
.yce{bottom:851.040000px;}
.y15c{bottom:864.000000px;}
.y13f{bottom:865.080000px;}
.yf8{bottom:867.000000px;}
.yb2{bottom:873.000000px;}
.y8e{bottom:875.160000px;}
.yca{bottom:882.000000px;}
.y13e{bottom:888.840000px;}
.y15b{bottom:896.400000px;}
.y115{bottom:904.320000px;}
.y8d{bottom:906.120000px;}
.yb1{bottom:913.320000px;}
.y13d{bottom:921.240000px;}
.y15a{bottom:929.160000px;}
.y114{bottom:935.280000px;}
.ye{bottom:940.500000px;}
.ya7{bottom:940.680000px;}
.y8c{bottom:944.280000px;}
.yf6{bottom:946.500000px;}
.y159{bottom:952.920000px;}
.y13c{bottom:963.000000px;}
.y113{bottom:966.240000px;}
.y8b{bottom:975.240000px;}
.y158{bottom:985.320000px;}
.yf4{bottom:985.500000px;}
.y13b{bottom:986.760000px;}
.y6{bottom:988.500000px;}
.y112{bottom:997.200000px;}
.y8a{bottom:1006.200000px;}
.y13a{bottom:1007.640000px;}
.y157{bottom:1018.080000px;}
.yf3{bottom:1026.000000px;}
.y139{bottom:1028.520000px;}
.y89{bottom:1037.520000px;}
.y156{bottom:1041.480000px;}
.y138{bottom:1063.800000px;}
.yf2{bottom:1066.500000px;}
.y88{bottom:1068.480000px;}
.y155{bottom:1074.240000px;}
.y87{bottom:1099.440000px;}
.yf0{bottom:1107.000000px;}
.y86{bottom:1130.400000px;}
.y55{bottom:1152.000000px;}
.y5{bottom:1154.026800px;}
.y54{bottom:1173.240000px;}
.y2{bottom:1174.906800px;}
.y53{bottom:1192.680000px;}
.y1{bottom:1193.986800px;}
.h11{height:16.316016px;}
.hb{height:22.074609px;}
.h1c{height:24.000000px;}
.h16{height:29.752734px;}
.h1b{height:36.405703px;}
.h22{height:40.310156px;}
.h23{height:40.500000px;}
.h4{height:41.574375px;}
.h1a{height:41.868281px;}
.h13{height:41.993438px;}
.h21{height:42.000000px;}
.h9{height:44.149219px;}
.ha{height:45.992813px;}
.h19{height:47.988281px;}
.h8{height:48.000000px;}
.h2{height:48.256875px;}
.h10{height:48.761719px;}
.h3{height:49.289063px;}
.h17{height:49.992188px;}
.h1e{height:54.000000px;}
.hf{height:56.593125px;}
.hd{height:62.472656px;}
.h20{height:63.175781px;}
.h1f{height:63.949219px;}
.h15{height:69.000000px;}
.h6{height:72.360000px;}
.h24{height:81.000000px;}
.h7{height:89.068359px;}
.h14{height:118.500000px;}
.hc{height:148.500000px;}
.h5{height:160.500000px;}
.h12{height:510.000000px;}
.h1d{height:528.000000px;}
.he{height:775.500000px;}
.h0{height:1262.834700px;}
.h18{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:28.500000px;}
.w7{width:120.000000px;}
.wb{width:183.000000px;}
.w2{width:247.500000px;}
.wc{width:288.000000px;}
.wa{width:319.500000px;}
.w3{width:573.000000px;}
.w8{width:666.000000px;}
.w9{width:786.000000px;}
.w5{width:892.500000px;}
.w4{width:892.800000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.424916px;}
.xa{left:8.427943px;}
.x1d{left:9.432240px;}
.x11{left:20.636328px;}
.x12{left:23.397192px;}
.xb{left:31.309884px;}
.x3{left:43.500000px;}
.x6{left:44.753520px;}
.x27{left:47.466960px;}
.x18{left:52.875000px;}
.x1{left:54.447828px;}
.x22{left:56.462280px;}
.x26{left:60.465840px;}
.x1f{left:65.490840px;}
.x20{left:68.701200px;}
.x28{left:73.702320px;}
.x10{left:76.380960px;}
.x24{left:78.202320px;}
.xf{left:85.020600px;}
.xe{left:88.202244px;}
.x8{left:91.027260px;}
.x1b{left:94.303692px;}
.x17{left:107.174916px;}
.x21{left:118.735200px;}
.x4{left:123.327732px;}
.x25{left:130.732200px;}
.x23{left:135.232200px;}
.x15{left:174.000000px;}
.x13{left:184.569300px;}
.x1a{left:191.400156px;}
.xc{left:200.861820px;}
.x9{left:217.939140px;}
.x5{left:232.767660px;}
.xd{left:286.520220px;}
.x7{left:289.500000px;}
.x1c{left:372.000000px;}
.x1e{left:553.500000px;}
.x2{left:685.578300px;}
.x19{left:695.407680px;}
.x14{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls12{letter-spacing:-0.940800pt;}
.ls1e{letter-spacing:-0.466944pt;}
.ls1a{letter-spacing:-0.418304pt;}
.ls9{letter-spacing:-0.403712pt;}
.ls18{letter-spacing:-0.397824pt;}
.ls1d{letter-spacing:-0.384256pt;}
.ls1f{letter-spacing:-0.374528pt;}
.ls1c{letter-spacing:-0.321024pt;}
.ls14{letter-spacing:-0.301056pt;}
.ls15{letter-spacing:-0.284928pt;}
.ls13{letter-spacing:-0.215040pt;}
.lsc{letter-spacing:-0.214400pt;}
.ls16{letter-spacing:-0.198912pt;}
.ls21{letter-spacing:-0.189696pt;}
.lsa{letter-spacing:-0.165376pt;}
.ls20{letter-spacing:-0.150784pt;}
.ls6{letter-spacing:-0.141312pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls8{letter-spacing:-0.111872pt;}
.lse{letter-spacing:-0.105984pt;}
.lsb{letter-spacing:-0.102912pt;}
.lsd{letter-spacing:-0.070656pt;}
.ls10{letter-spacing:-0.025600pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.006400pt;}
.ls19{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.038400pt;}
.ls24{letter-spacing:0.152064pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1{letter-spacing:0.213760pt;}
.ls23{letter-spacing:0.228096pt;}
.ls22{letter-spacing:0.325248pt;}
.ls25{letter-spacing:10.218752pt;}
.ls4{letter-spacing:10.416640pt;}
.ls0{letter-spacing:65.280000pt;}
.ls3{letter-spacing:69.120000pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws0{word-spacing:-16.256768pt;}
.wsd{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.987200pt;}
.ws5{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.502400pt;}
.ws7{word-spacing:-14.464000pt;}
.ws13{word-spacing:-14.451200pt;}
.ws6{word-spacing:-14.438400pt;}
.wsb{word-spacing:-13.310976pt;}
.ws9{word-spacing:-13.241088pt;}
.wsa{word-spacing:-13.224960pt;}
.wsc{word-spacing:-13.042176pt;}
.wsf{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.ws10{word-spacing:-12.325376pt;}
.ws12{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.ws11{word-spacing:-12.179456pt;}
.wse{word-spacing:0.000000pt;}
._24{margin-left:-14.666624pt;}
._5{margin-left:-7.879040pt;}
._4{margin-left:-6.451200pt;}
._6{margin-left:-5.443200pt;}
._1e{margin-left:-4.344320pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._15{width:2.317696pt;}
._14{width:3.737600pt;}
._d{width:4.806400pt;}
._e{width:5.852160pt;}
._18{width:7.042560pt;}
._b{width:8.194560pt;}
._c{width:9.205760pt;}
._17{width:10.871040pt;}
._1f{width:11.916544pt;}
._13{width:12.814080pt;}
._1c{width:14.223872pt;}
._16{width:15.408128pt;}
._a{width:16.626048pt;}
._9{width:17.761152pt;}
._f{width:19.417600pt;}
._10{width:20.393984pt;}
._21{width:21.470464pt;}
._26{width:23.091200pt;}
._1b{width:24.723200pt;}
._1d{width:25.760000pt;}
._22{width:28.812800pt;}
._27{width:29.811200pt;}
._12{width:32.930560pt;}
._23{width:35.776000pt;}
._11{width:40.499200pt;}
._19{width:45.689600pt;}
._1a{width:46.716160pt;}
._7{width:65.447552pt;}
._8{width:69.090560pt;}
._20{width:158.132864pt;}
._28{width:165.833344pt;}
._25{width:172.799488pt;}
.fs8{font-size:21.760000pt;}
.fs6{font-size:29.440000pt;}
.fsa{font-size:39.680000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs9{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:2.281600pt;}
.y3d{bottom:2.974933pt;}
.y76{bottom:4.053333pt;}
.y59{bottom:4.800000pt;}
.y73{bottom:4.853333pt;}
.y9{bottom:5.694933pt;}
.y52{bottom:10.174933pt;}
.y11{bottom:12.201600pt;}
.y3c{bottom:12.254933pt;}
.yd3{bottom:20.640000pt;}
.ye1{bottom:20.693333pt;}
.yef{bottom:20.746667pt;}
.yf1{bottom:20.800000pt;}
.ydb{bottom:20.906667pt;}
.ye9{bottom:20.960000pt;}
.yd{bottom:21.054933pt;}
.yf7{bottom:21.066667pt;}
.yd5{bottom:21.120000pt;}
.ye3{bottom:21.173333pt;}
.yd7{bottom:21.280000pt;}
.yfc{bottom:21.333333pt;}
.ydd{bottom:21.386667pt;}
.yeb{bottom:21.440000pt;}
.ydf{bottom:21.546667pt;}
.ye5{bottom:21.653333pt;}
.yd9{bottom:21.760000pt;}
.ye7{bottom:21.813333pt;}
.yed{bottom:21.920000pt;}
.yf5{bottom:22.240000pt;}
.y75{bottom:22.613333pt;}
.y19{bottom:23.241600pt;}
.y8{bottom:25.534933pt;}
.yf{bottom:28.521600pt;}
.y51{bottom:28.734933pt;}
.y10{bottom:28.841600pt;}
.y72{bottom:31.093333pt;}
.y4d{bottom:31.454933pt;}
.y3b{bottom:31.774933pt;}
.y18{bottom:41.801600pt;}
.y4c{bottom:46.814933pt;}
.y4f{bottom:48.894933pt;}
.y71{bottom:49.653333pt;}
.yc{bottom:50.174933pt;}
.y4{bottom:50.441600pt;}
.y3a{bottom:51.294933pt;}
.y50{bottom:52.094933pt;}
.yf9{bottom:56.213333pt;}
.y57{bottom:58.240000pt;}
.y17{bottom:60.361600pt;}
.y4b{bottom:62.174933pt;}
.y3{bottom:67.401600pt;}
.y70{bottom:68.213333pt;}
.y39{bottom:70.814933pt;}
.y58{bottom:72.000000pt;}
.y4a{bottom:77.534933pt;}
.y16{bottom:78.921600pt;}
.yb{bottom:79.614933pt;}
.y56{bottom:80.640000pt;}
.y6f{bottom:86.453333pt;}
.y4e{bottom:86.666667pt;}
.y38{bottom:90.334933pt;}
.y49{bottom:92.894933pt;}
.y15{bottom:97.481600pt;}
.yc9{bottom:97.920000pt;}
.y111{bottom:98.240000pt;}
.y154{bottom:101.760000pt;}
.y6e{bottom:105.013333pt;}
.yee{bottom:105.333333pt;}
.ya{bottom:108.734933pt;}
.yb0{bottom:109.440000pt;}
.y37{bottom:109.854933pt;}
.ya6{bottom:111.360000pt;}
.y14{bottom:116.361600pt;}
.y85{bottom:116.480000pt;}
.y137{bottom:121.920000pt;}
.y153{bottom:122.880000pt;}
.y6d{bottom:123.253333pt;}
.yc8{bottom:125.440000pt;}
.y110{bottom:125.760000pt;}
.y7{bottom:126.974933pt;}
.y36{bottom:129.374933pt;}
.ycd{bottom:133.440000pt;}
.yaf{bottom:136.960000pt;}
.ya5{bottom:139.200000pt;}
.yec{bottom:140.000000pt;}
.y6c{bottom:141.813333pt;}
.y84{bottom:144.000000pt;}
.y1a{bottom:146.666667pt;}
.y35{bottom:148.894933pt;}
.y136{bottom:149.440000pt;}
.yc7{bottom:152.960000pt;}
.y10f{bottom:153.600000pt;}
.y121{bottom:154.880000pt;}
.y6b{bottom:160.053333pt;}
.ycc{bottom:160.960000pt;}
.yae{bottom:164.480000pt;}
.ya4{bottom:166.720000pt;}
.y34{bottom:168.414933pt;}
.y83{bottom:171.520000pt;}
.yea{bottom:176.000000pt;}
.y135{bottom:176.960000pt;}
.y6a{bottom:178.613333pt;}
.y152{bottom:180.800000pt;}
.y10e{bottom:181.120000pt;}
.y120{bottom:182.400000pt;}
.yad{bottom:183.360000pt;}
.y33{bottom:187.934933pt;}
.yc6{bottom:188.480000pt;}
.ya3{bottom:194.240000pt;}
.y69{bottom:196.853333pt;}
.yac{bottom:201.600000pt;}
.y151{bottom:201.920000pt;}
.y134{bottom:204.800000pt;}
.y82{bottom:205.440000pt;}
.y32{bottom:207.454933pt;}
.y10d{bottom:208.640000pt;}
.y11f{bottom:209.920000pt;}
.ye8{bottom:212.000000pt;}
.ya2{bottom:213.120000pt;}
.y68{bottom:215.413333pt;}
.yc5{bottom:216.320000pt;}
.y31{bottom:226.974933pt;}
.ya1{bottom:231.360000pt;}
.y133{bottom:232.320000pt;}
.y81{bottom:233.280000pt;}
.y67{bottom:233.653333pt;}
.y10c{bottom:236.160000pt;}
.y11e{bottom:237.440000pt;}
.y150{bottom:239.040000pt;}
.yab{bottom:240.000000pt;}
.yc4{bottom:243.840000pt;}
.y30{bottom:246.494933pt;}
.ye6{bottom:246.666667pt;}
.y3e{bottom:250.666667pt;}
.y66{bottom:252.213333pt;}
.ya0{bottom:258.880000pt;}
.y132{bottom:259.840000pt;}
.y80{bottom:260.800000pt;}
.y10b{bottom:264.000000pt;}
.y11d{bottom:265.280000pt;}
.y2f{bottom:266.014933pt;}
.y65{bottom:270.453333pt;}
.yc3{bottom:271.360000pt;}
.yaa{bottom:275.520000pt;}
.y14f{bottom:275.840000pt;}
.ye4{bottom:282.666667pt;}
.y2e{bottom:285.534933pt;}
.y131{bottom:287.360000pt;}
.y7f{bottom:288.320000pt;}
.y64{bottom:289.013333pt;}
.y11c{bottom:292.800000pt;}
.y9f{bottom:294.400000pt;}
.y14e{bottom:296.960000pt;}
.yc2{bottom:298.880000pt;}
.y10a{bottom:299.520000pt;}
.y48{bottom:302.814933pt;}
.ya9{bottom:303.040000pt;}
.y2d{bottom:305.054933pt;}
.y63{bottom:307.253333pt;}
.y130{bottom:315.200000pt;}
.y7e{bottom:315.840000pt;}
.y14d{bottom:318.080000pt;}
.y47{bottom:318.174933pt;}
.ye2{bottom:318.666667pt;}
.y11b{bottom:320.320000pt;}
.y9e{bottom:322.240000pt;}
.y2c{bottom:324.574933pt;}
.y62{bottom:325.813333pt;}
.yc1{bottom:326.720000pt;}
.y109{bottom:327.040000pt;}
.y46{bottom:333.534933pt;}
.y12f{bottom:333.760000pt;}
.ya8{bottom:338.560000pt;}
.y7d{bottom:343.360000pt;}
.y61{bottom:344.053333pt;}
.y2b{bottom:344.094933pt;}
.y11a{bottom:347.840000pt;}
.y45{bottom:348.894933pt;}
.y9d{bottom:349.760000pt;}
.y12e{bottom:352.320000pt;}
.yc0{bottom:354.240000pt;}
.y108{bottom:354.560000pt;}
.ye0{bottom:354.666667pt;}
.y14c{bottom:354.880000pt;}
.y16b{bottom:359.040000pt;}
.y60{bottom:362.613333pt;}
.y2a{bottom:363.614933pt;}
.y44{bottom:364.254933pt;}
.y7c{bottom:371.200000pt;}
.y43{bottom:379.614933pt;}
.y5f{bottom:380.853333pt;}
.ybf{bottom:381.760000pt;}
.y107{bottom:382.400000pt;}
.y29{bottom:383.134933pt;}
.y14b{bottom:384.000000pt;}
.y9c{bottom:385.280000pt;}
.y16a{bottom:386.880000pt;}
.yde{bottom:389.333333pt;}
.y12d{bottom:391.360000pt;}
.y42{bottom:394.974933pt;}
.y7b{bottom:398.720000pt;}
.y5e{bottom:399.413333pt;}
.y28{bottom:402.654933pt;}
.y14a{bottom:405.120000pt;}
.ybe{bottom:409.280000pt;}
.y106{bottom:409.920000pt;}
.y41{bottom:410.334933pt;}
.y9b{bottom:412.800000pt;}
.y169{bottom:415.040000pt;}
.y5d{bottom:417.653333pt;}
.y12c{bottom:419.200000pt;}
.y27{bottom:422.174933pt;}
.ydc{bottom:425.333333pt;}
.y40{bottom:425.694933pt;}
.y7a{bottom:426.240000pt;}
.y149{bottom:433.920000pt;}
.y5c{bottom:436.213333pt;}
.ybd{bottom:437.120000pt;}
.y105{bottom:437.440000pt;}
.y9a{bottom:440.640000pt;}
.y3f{bottom:441.054933pt;}
.y26{bottom:441.694933pt;}
.y168{bottom:442.880000pt;}
.ycb{bottom:445.120000pt;}
.y12b{bottom:446.720000pt;}
.y79{bottom:453.760000pt;}
.y5b{bottom:454.453333pt;}
.y25{bottom:461.214933pt;}
.yda{bottom:461.333333pt;}
.ybc{bottom:464.640000pt;}
.y104{bottom:464.960000pt;}
.y99{bottom:468.160000pt;}
.y167{bottom:470.720000pt;}
.y148{bottom:471.040000pt;}
.y78{bottom:472.640000pt;}
.y12a{bottom:474.240000pt;}
.y24{bottom:480.734933pt;}
.y147{bottom:491.840000pt;}
.y119{bottom:492.160000pt;}
.y103{bottom:492.800000pt;}
.y98{bottom:495.680000pt;}
.yd8{bottom:496.000000pt;}
.y166{bottom:498.560000pt;}
.y77{bottom:500.160000pt;}
.y23{bottom:500.254933pt;}
.y129{bottom:501.760000pt;}
.y74{bottom:514.666667pt;}
.y118{bottom:519.680000pt;}
.y22{bottom:519.774933pt;}
.y102{bottom:520.320000pt;}
.y97{bottom:523.200000pt;}
.y165{bottom:526.400000pt;}
.ybb{bottom:527.680000pt;}
.y146{bottom:528.960000pt;}
.y128{bottom:529.600000pt;}
.yd6{bottom:532.000000pt;}
.y21{bottom:539.294933pt;}
.y164{bottom:546.240000pt;}
.y117{bottom:547.200000pt;}
.y5a{bottom:550.666667pt;}
.y96{bottom:551.040000pt;}
.y101{bottom:554.880000pt;}
.yba{bottom:555.200000pt;}
.y127{bottom:557.120000pt;}
.y20{bottom:559.134933pt;}
.y145{bottom:565.760000pt;}
.yd4{bottom:568.000000pt;}
.y163{bottom:572.800000pt;}
.y116{bottom:575.040000pt;}
.y1f{bottom:578.014933pt;}
.y95{bottom:578.560000pt;}
.yb9{bottom:583.040000pt;}
.y144{bottom:586.880000pt;}
.y100{bottom:588.160000pt;}
.y126{bottom:591.040000pt;}
.y162{bottom:593.920000pt;}
.y1e{bottom:596.574933pt;}
.yd2{bottom:604.000000pt;}
.y94{bottom:606.080000pt;}
.yb8{bottom:610.560000pt;}
.yff{bottom:616.000000pt;}
.y125{bottom:618.560000pt;}
.y161{bottom:623.040000pt;}
.y143{bottom:624.000000pt;}
.y1d{bottom:628.254933pt;}
.yb7{bottom:638.080000pt;}
.y93{bottom:640.000000pt;}
.y124{bottom:646.080000pt;}
.y1c{bottom:650.334933pt;}
.yfe{bottom:650.560000pt;}
.y160{bottom:659.840000pt;}
.yd1{bottom:660.800000pt;}
.yfd{bottom:662.666667pt;}
.yb6{bottom:665.600000pt;}
.y92{bottom:667.520000pt;}
.y1b{bottom:672.414933pt;}
.y123{bottom:673.600000pt;}
.y15f{bottom:680.960000pt;}
.y142{bottom:681.920000pt;}
.yb5{bottom:693.440000pt;}
.y91{bottom:695.040000pt;}
.yd0{bottom:695.680000pt;}
.yfb{bottom:698.666667pt;}
.y122{bottom:701.440000pt;}
.y141{bottom:703.040000pt;}
.y13{bottom:704.000000pt;}
.y15e{bottom:717.760000pt;}
.yb4{bottom:720.960000pt;}
.y90{bottom:722.880000pt;}
.ycf{bottom:728.960000pt;}
.yfa{bottom:734.666667pt;}
.y140{bottom:739.840000pt;}
.y15d{bottom:746.880000pt;}
.yb3{bottom:748.480000pt;}
.y8f{bottom:750.400000pt;}
.yce{bottom:756.480000pt;}
.y15c{bottom:768.000000pt;}
.y13f{bottom:768.960000pt;}
.yf8{bottom:770.666667pt;}
.yb2{bottom:776.000000pt;}
.y8e{bottom:777.920000pt;}
.yca{bottom:784.000000pt;}
.y13e{bottom:790.080000pt;}
.y15b{bottom:796.800000pt;}
.y115{bottom:803.840000pt;}
.y8d{bottom:805.440000pt;}
.yb1{bottom:811.840000pt;}
.y13d{bottom:818.880000pt;}
.y15a{bottom:825.920000pt;}
.y114{bottom:831.360000pt;}
.ye{bottom:836.000000pt;}
.ya7{bottom:836.160000pt;}
.y8c{bottom:839.360000pt;}
.yf6{bottom:841.333333pt;}
.y159{bottom:847.040000pt;}
.y13c{bottom:856.000000pt;}
.y113{bottom:858.880000pt;}
.y8b{bottom:866.880000pt;}
.y158{bottom:875.840000pt;}
.yf4{bottom:876.000000pt;}
.y13b{bottom:877.120000pt;}
.y6{bottom:878.666667pt;}
.y112{bottom:886.400000pt;}
.y8a{bottom:894.400000pt;}
.y13a{bottom:895.680000pt;}
.y157{bottom:904.960000pt;}
.yf3{bottom:912.000000pt;}
.y139{bottom:914.240000pt;}
.y89{bottom:922.240000pt;}
.y156{bottom:925.760000pt;}
.y138{bottom:945.600000pt;}
.yf2{bottom:948.000000pt;}
.y88{bottom:949.760000pt;}
.y155{bottom:954.880000pt;}
.y87{bottom:977.280000pt;}
.yf0{bottom:984.000000pt;}
.y86{bottom:1004.800000pt;}
.y55{bottom:1024.000000pt;}
.y5{bottom:1025.801600pt;}
.y54{bottom:1042.880000pt;}
.y2{bottom:1044.361600pt;}
.y53{bottom:1060.160000pt;}
.y1{bottom:1061.321600pt;}
.h11{height:14.503125pt;}
.hb{height:19.621875pt;}
.h1c{height:21.333333pt;}
.h16{height:26.446875pt;}
.h1b{height:32.360625pt;}
.h22{height:35.831250pt;}
.h23{height:36.000000pt;}
.h4{height:36.955000pt;}
.h1a{height:37.216250pt;}
.h13{height:37.327500pt;}
.h21{height:37.333333pt;}
.h9{height:39.243750pt;}
.ha{height:40.882500pt;}
.h19{height:42.656250pt;}
.h8{height:42.666667pt;}
.h2{height:42.895000pt;}
.h10{height:43.343750pt;}
.h3{height:43.812500pt;}
.h17{height:44.437500pt;}
.h1e{height:48.000000pt;}
.hf{height:50.305000pt;}
.hd{height:55.531250pt;}
.h20{height:56.156250pt;}
.h1f{height:56.843750pt;}
.h15{height:61.333333pt;}
.h6{height:64.320000pt;}
.h24{height:72.000000pt;}
.h7{height:79.171875pt;}
.h14{height:105.333333pt;}
.hc{height:132.000000pt;}
.h5{height:142.666667pt;}
.h12{height:453.333333pt;}
.h1d{height:469.333333pt;}
.he{height:689.333333pt;}
.h0{height:1122.519733pt;}
.h18{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:25.333333pt;}
.w7{width:106.666667pt;}
.wb{width:162.666667pt;}
.w2{width:220.000000pt;}
.wc{width:256.000000pt;}
.wa{width:284.000000pt;}
.w3{width:509.333333pt;}
.w8{width:592.000000pt;}
.w9{width:698.666667pt;}
.w5{width:793.333333pt;}
.w4{width:793.600000pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.599925pt;}
.xa{left:7.491505pt;}
.x1d{left:8.384213pt;}
.x11{left:18.343403pt;}
.x12{left:20.797504pt;}
.xb{left:27.831008pt;}
.x3{left:38.666667pt;}
.x6{left:39.780907pt;}
.x27{left:42.192853pt;}
.x18{left:47.000000pt;}
.x1{left:48.398069pt;}
.x22{left:50.188693pt;}
.x26{left:53.747413pt;}
.x1f{left:58.214080pt;}
.x20{left:61.067733pt;}
.x28{left:65.513173pt;}
.x10{left:67.894187pt;}
.x24{left:69.513173pt;}
.xf{left:75.573867pt;}
.xe{left:78.401995pt;}
.x8{left:80.913120pt;}
.x1b{left:83.825504pt;}
.x17{left:95.266592pt;}
.x21{left:105.542400pt;}
.x4{left:109.624651pt;}
.x25{left:116.206400pt;}
.x23{left:120.206400pt;}
.x15{left:154.666667pt;}
.x13{left:164.061600pt;}
.x1a{left:170.133472pt;}
.xc{left:178.543840pt;}
.x9{left:193.723680pt;}
.x5{left:206.904587pt;}
.xd{left:254.684640pt;}
.x7{left:257.333333pt;}
.x1c{left:330.666667pt;}
.x1e{left:492.000000pt;}
.x2{left:609.402933pt;}
.x19{left:618.140160pt;}
.x14{left:721.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  