
    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_69d2188a986971a085b11026.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6efd28ea679f8075ee9729e3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e15ee6f590121fc6659de387.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_300282996a2b51b26428873a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2128e1795d227adc7ed260c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d26e14286568d1fe122c4e54.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_49cc5fee6861461cb955264c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_739e5fe5fceaf20a05c685c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b059153f912056b94ec39501.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0e5a06d493c63359c1eb24e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6f0ffc9679b19be489181150.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cd895f804d8eb726445c05c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_361fd6af45673ca60af53d19.woff2')format("woff");}.fff{font-family:fff;line-height:0.957520;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_eef76c15df5466d7f3d2fe45.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3d5f2664d2f4f5407116f2ab.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_097063ae43a0ff375ee5480b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a6eb780d68d850cddfb17ffd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.973145;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.331200px;}
.ls18{letter-spacing:-0.326400px;}
.ls15{letter-spacing:-0.324000px;}
.ls5{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.270000px;}
.ls8{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.198000px;}
.ls1c{letter-spacing:-0.180000px;}
.ls1e{letter-spacing:-0.162000px;}
.ls20{letter-spacing:-0.126000px;}
.lsd{letter-spacing:-0.108000px;}
.ls3{letter-spacing:-0.091200px;}
.ls9{letter-spacing:-0.090000px;}
.ls1d{letter-spacing:-0.054000px;}
.ls6{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.031680px;}
.lsa{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.056160px;}
.ls27{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.104400px;}
.lse{letter-spacing:0.126000px;}
.ls17{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.263400px;}
.ls21{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.342000px;}
.ls16{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.684000px;}
.ls26{letter-spacing:26.604000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws5{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.824960px;}
.ws23{word-spacing:-14.058000px;}
.ws24{word-spacing:-14.022000px;}
.ws1c{word-spacing:-13.986000px;}
.ws21{word-spacing:-13.950000px;}
.ws19{word-spacing:-13.896000px;}
.ws25{word-spacing:-13.878000px;}
.ws27{word-spacing:-13.806000px;}
.ws1d{word-spacing:-13.752000px;}
.ws18{word-spacing:-13.716000px;}
.ws20{word-spacing:-13.608000px;}
.ws28{word-spacing:-13.518000px;}
.ws1f{word-spacing:-13.392000px;}
.ws22{word-spacing:-13.302000px;}
.wsd{word-spacing:-13.266000px;}
.ws1a{word-spacing:-13.230000px;}
.wsa{word-spacing:-13.140000px;}
.wsc{word-spacing:-13.068000px;}
.wsf{word-spacing:-13.032000px;}
.ws3{word-spacing:-13.014000px;}
.ws17{word-spacing:-12.960000px;}
.ws7{word-spacing:-12.924000px;}
.ws9{word-spacing:-12.906000px;}
.ws1b{word-spacing:-12.888000px;}
.ws1e{word-spacing:-12.834000px;}
.wsb{word-spacing:-12.798000px;}
.wse{word-spacing:-12.744000px;}
.ws26{word-spacing:-12.726000px;}
.ws10{word-spacing:-12.690000px;}
.ws13{word-spacing:-11.889240px;}
.ws14{word-spacing:-11.730240px;}
.ws15{word-spacing:-11.682000px;}
.ws12{word-spacing:-11.625840px;}
.ws11{word-spacing:-11.299440px;}
.ws8{word-spacing:-8.676000px;}
.ws16{word-spacing:-8.496000px;}
.ws2{word-spacing:-8.388000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2.420400px;}
._0{margin-left:-1.263600px;}
._4{width:1.436400px;}
._6{width:2.937600px;}
._2{width:4.500720px;}
._3{width:5.841360px;}
._7{width:7.020000px;}
._8{width:8.439600px;}
._b{width:9.758400px;}
._11{width:11.247600px;}
._34{width:12.690000px;}
._f{width:14.580000px;}
._5{width:16.200000px;}
._c{width:17.256000px;}
._16{width:18.576000px;}
._9{width:20.466000px;}
._a{width:21.630000px;}
._23{width:22.680000px;}
._17{width:23.760000px;}
._19{width:25.326000px;}
._1c{width:27.324000px;}
._27{width:28.782000px;}
._e{width:30.009600px;}
._d{width:31.080000px;}
._1d{width:32.454000px;}
._1b{width:34.128000px;}
._1a{width:35.208000px;}
._18{width:36.558000px;}
._24{width:37.659600px;}
._15{width:39.150000px;}
._21{width:40.662000px;}
._22{width:41.688000px;}
._2f{width:43.005600px;}
._1e{width:47.574000px;}
._14{width:51.267600px;}
._1f{width:52.866000px;}
._20{width:54.216000px;}
._26{width:55.404000px;}
._25{width:57.024000px;}
._10{width:58.752000px;}
._32{width:60.474000px;}
._2c{width:68.148000px;}
._2b{width:69.919200px;}
._2d{width:71.568000px;}
._2e{width:72.606000px;}
._30{width:74.244000px;}
._31{width:75.600000px;}
._28{width:81.594000px;}
._33{width:88.830000px;}
._13{width:92.844000px;}
._29{width:118.206000px;}
._2a{width:119.394000px;}
._12{width:234.858000px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(60,60,60);}
.fc5{color:rgb(35,35,35);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs5{font-size:100.938894px;}
.fs2{font-size:108.000000px;}
.y3c{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y15{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1e{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y24{bottom:3.600000px;}
.y1a{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y22{bottom:4.860000px;}
.y6e{bottom:6.120000px;}
.yca{bottom:7.740000px;}
.yd0{bottom:7.785000px;}
.yc8{bottom:7.920000px;}
.y3b{bottom:9.000000px;}
.y8a{bottom:9.180000px;}
.y88{bottom:9.360000px;}
.yb4{bottom:9.540000px;}
.yb6{bottom:9.720000px;}
.y7a{bottom:10.800000px;}
.y1c{bottom:10.980000px;}
.y20{bottom:14.940000px;}
.y18{bottom:15.120000px;}
.y13{bottom:15.345000px;}
.y36{bottom:16.200000px;}
.yf{bottom:19.980000px;}
.y6c{bottom:26.820000px;}
.yc6{bottom:30.060000px;}
.y3a{bottom:30.240000px;}
.y87{bottom:30.780000px;}
.yae{bottom:30.825000px;}
.y9f{bottom:33.840000px;}
.y34{bottom:34.020000px;}
.y17{bottom:45.720000px;}
.y39{bottom:51.660000px;}
.y33{bottom:57.060000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.yb8{bottom:74.340000px;}
.y2{bottom:74.520000px;}
.y38{bottom:75.810000px;}
.y32{bottom:80.145000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y31{bottom:103.185000px;}
.ydd{bottom:111.600000px;}
.y9d{bottom:119.160000px;}
.y76{bottom:120.060000px;}
.y30{bottom:126.045000px;}
.y6a{bottom:130.320000px;}
.ye8{bottom:132.480000px;}
.ydc{bottom:134.460000px;}
.y9c{bottom:142.236000px;}
.y75{bottom:143.136000px;}
.y2f{bottom:149.085000px;}
.y69{bottom:153.210000px;}
.ye7{bottom:155.550000px;}
.ydb{bottom:157.530000px;}
.y9b{bottom:165.270000px;}
.y74{bottom:166.170000px;}
.y2e{bottom:172.125000px;}
.y68{bottom:176.250000px;}
.ye6{bottom:178.590000px;}
.yda{bottom:180.570000px;}
.y9a{bottom:188.310000px;}
.y73{bottom:189.210000px;}
.y2d{bottom:195.165000px;}
.y67{bottom:199.290000px;}
.ye5{bottom:201.630000px;}
.yd9{bottom:203.610000px;}
.y99{bottom:211.350000px;}
.y72{bottom:212.250000px;}
.y2c{bottom:218.205000px;}
.y66{bottom:222.330000px;}
.ye4{bottom:224.670000px;}
.y71{bottom:226.470000px;}
.yd8{bottom:226.650000px;}
.y98{bottom:234.210000px;}
.yd7{bottom:240.870000px;}
.y2b{bottom:241.245000px;}
.y65{bottom:245.370000px;}
.y70{bottom:246.090000px;}
.ye3{bottom:247.710000px;}
.y97{bottom:257.250000px;}
.yd6{bottom:261.930000px;}
.y2a{bottom:264.105000px;}
.y6f{bottom:265.530000px;}
.y64{bottom:268.410000px;}
.ye2{bottom:270.570000px;}
.yb2{bottom:271.650000px;}
.y96{bottom:280.290000px;}
.yd5{bottom:282.990000px;}
.y6b{bottom:285.150000px;}
.y29{bottom:287.145000px;}
.y63{bottom:291.270000px;}
.ye1{bottom:293.610000px;}
.yb1{bottom:294.150000px;}
.y35{bottom:300.630000px;}
.y95{bottom:303.330000px;}
.yd4{bottom:304.050000px;}
.y6d{bottom:305.850000px;}
.y28{bottom:310.185000px;}
.y62{bottom:314.310000px;}
.ye0{bottom:316.650000px;}
.yb0{bottom:316.830000px;}
.yd3{bottom:325.110000px;}
.y26{bottom:326.370000px;}
.y27{bottom:333.255000px;}
.y61{bottom:337.350000px;}
.yaf{bottom:339.330000px;}
.ydf{bottom:339.690000px;}
.yd2{bottom:346.170000px;}
.y94{bottom:349.410000px;}
.yde{bottom:356.250000px;}
.y60{bottom:360.390000px;}
.yad{bottom:363.090000px;}
.yd1{bottom:367.230000px;}
.y93{bottom:372.270000px;}
.y5f{bottom:383.430000px;}
.ycf{bottom:388.470000px;}
.y92{bottom:395.355000px;}
.y5e{bottom:406.515000px;}
.yce{bottom:409.575000px;}
.y91{bottom:418.395000px;}
.yac{bottom:419.295000px;}
.y5d{bottom:429.375000px;}
.ycd{bottom:430.635000px;}
.y90{bottom:441.435000px;}
.yab{bottom:442.335000px;}
.ycc{bottom:451.695000px;}
.y5c{bottom:452.415000px;}
.y8f{bottom:464.475000px;}
.yaa{bottom:465.375000px;}
.ycb{bottom:472.755000px;}
.y5b{bottom:475.455000px;}
.y8e{bottom:487.515000px;}
.ya9{bottom:488.415000px;}
.yc9{bottom:493.815000px;}
.y5a{bottom:498.495000px;}
.y8d{bottom:501.735000px;}
.ya8{bottom:511.275000px;}
.yc5{bottom:514.875000px;}
.y59{bottom:521.535000px;}
.y8c{bottom:524.415000px;}
.ya7{bottom:534.315000px;}
.yc7{bottom:537.015000px;}
.y58{bottom:544.575000px;}
.y8b{bottom:546.915000px;}
.ya6{bottom:557.355000px;}
.y57{bottom:567.435000px;}
.y89{bottom:569.595000px;}
.yc4{bottom:570.135000px;}
.ya5{bottom:580.395000px;}
.y56{bottom:590.475000px;}
.y86{bottom:593.175000px;}
.ya4{bottom:603.435000px;}
.y55{bottom:613.515000px;}
.yc3{bottom:616.215000px;}
.ya3{bottom:626.475000px;}
.y54{bottom:636.555000px;}
.yc2{bottom:639.255000px;}
.y85{bottom:649.365000px;}
.y53{bottom:659.625000px;}
.yc1{bottom:662.145000px;}
.y25{bottom:671.685000px;}
.y84{bottom:672.405000px;}
.y52{bottom:682.485000px;}
.yc0{bottom:685.185000px;}
.y23{bottom:686.985000px;}
.y83{bottom:695.445000px;}
.y51{bottom:705.525000px;}
.y21{bottom:705.705000px;}
.ybf{bottom:708.225000px;}
.y82{bottom:718.485000px;}
.y1f{bottom:725.685000px;}
.y50{bottom:728.565000px;}
.ybe{bottom:731.265000px;}
.y81{bottom:741.525000px;}
.y4f{bottom:751.605000px;}
.ybd{bottom:754.305000px;}
.y1d{bottom:755.745000px;}
.y80{bottom:764.565000px;}
.y1b{bottom:769.065000px;}
.y4e{bottom:774.645000px;}
.ybc{bottom:777.345000px;}
.ya2{bottom:779.865000px;}
.y7f{bottom:787.425000px;}
.y19{bottom:792.105000px;}
.y4d{bottom:797.685000px;}
.ybb{bottom:800.205000px;}
.ya1{bottom:803.985000px;}
.y16{bottom:809.025000px;}
.y7e{bottom:810.465000px;}
.yb7{bottom:814.605000px;}
.y4c{bottom:820.545000px;}
.ya0{bottom:828.105000px;}
.y7d{bottom:833.505000px;}
.yba{bottom:836.205000px;}
.y4b{bottom:843.585000px;}
.y7c{bottom:847.905000px;}
.y9e{bottom:853.485000px;}
.yb9{bottom:857.805000px;}
.y4a{bottom:866.625000px;}
.y14{bottom:870.225000px;}
.y7b{bottom:872.025000px;}
.yb5{bottom:879.225000px;}
.y12{bottom:884.805000px;}
.y49{bottom:889.710000px;}
.y79{bottom:896.190000px;}
.yb3{bottom:902.130000px;}
.y48{bottom:912.750000px;}
.y10{bottom:915.450000px;}
.y78{bottom:920.310000px;}
.yd{bottom:929.130000px;}
.y47{bottom:935.790000px;}
.y77{bottom:945.510000px;}
.y46{bottom:958.650000px;}
.y45{bottom:981.690000px;}
.y44{bottom:1004.730000px;}
.yc{bottom:1013.370000px;}
.y43{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.y8{bottom:1046.850000px;}
.y42{bottom:1050.810000px;}
.y37{bottom:1065.210000px;}
.y41{bottom:1073.850000px;}
.y40{bottom:1096.710000px;}
.y3f{bottom:1119.750000px;}
.y3e{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3d{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1a{height:13.320000px;}
.h10{height:13.680000px;}
.h14{height:14.580000px;}
.h21{height:15.300000px;}
.h17{height:16.920000px;}
.h2c{height:18.360000px;}
.h1f{height:18.720000px;}
.h3b{height:19.800000px;}
.h3c{height:19.836000px;}
.h1e{height:19.980000px;}
.h36{height:20.340000px;}
.h38{height:20.556000px;}
.h3{height:20.700000px;}
.h5{height:20.880000px;}
.h32{height:21.420000px;}
.h35{height:21.600000px;}
.h2f{height:22.860000px;}
.h30{height:22.896000px;}
.h19{height:23.040000px;}
.h25{height:25.740000px;}
.h26{height:29.145586px;}
.h1c{height:30.060000px;}
.h12{height:30.636000px;}
.h11{height:32.670352px;}
.h1b{height:33.588984px;}
.h37{height:36.509766px;}
.h15{height:36.886641px;}
.h2b{height:39.060000px;}
.h18{height:40.472227px;}
.h22{height:40.842773px;}
.h24{height:40.869141px;}
.h29{height:41.291016px;}
.h3a{height:42.120000px;}
.h2d{height:42.366094px;}
.h31{height:43.020000px;}
.h34{height:43.056000px;}
.h33{height:45.936000px;}
.h2e{height:46.080000px;}
.h13{height:48.761719px;}
.h20{height:50.100469px;}
.h1d{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h28{height:55.054688px;}
.h2a{height:55.209375px;}
.h6{height:57.051211px;}
.h16{height:61.200000px;}
.he{height:64.853086px;}
.hf{height:68.360471px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.540000px;}
.h7{height:84.898125px;}
.h39{height:85.176000px;}
.h27{height:93.816000px;}
.h8{height:108.036000px;}
.h23{height:345.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.540000px;}
.w2b{width:63.000000px;}
.w28{width:71.460000px;}
.w2a{width:71.640000px;}
.w29{width:71.676000px;}
.w25{width:74.340000px;}
.w6{width:76.680000px;}
.w24{width:87.696000px;}
.we{width:88.560000px;}
.wf{width:93.816000px;}
.w1b{width:94.320000px;}
.w16{width:94.500000px;}
.w10{width:101.160000px;}
.w22{width:114.480000px;}
.w12{width:114.660000px;}
.w11{width:114.696000px;}
.w5{width:124.020000px;}
.w23{width:128.340000px;}
.w1c{width:130.500000px;}
.w13{width:130.680000px;}
.w1a{width:135.036000px;}
.w1f{width:138.816000px;}
.w21{width:142.056000px;}
.w18{width:148.356000px;}
.w15{width:148.536000px;}
.w17{width:148.680000px;}
.w19{width:148.716000px;}
.w20{width:149.256000px;}
.w14{width:152.850000px;}
.w1e{width:155.190000px;}
.w1d{width:159.870000px;}
.wc{width:162.210000px;}
.w27{width:277.770000px;}
.wa{width:332.130000px;}
.w9{width:356.475000px;}
.w26{width:397.335000px;}
.wb{width:464.475000px;}
.wd{width:512.895000px;}
.w4{width:551.805000px;}
.w7{width:616.470000px;}
.w3{width:628.305000px;}
.w8{width:688.605000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:2.160000px;}
.x43{left:3.420000px;}
.x4{left:6.480000px;}
.x9{left:8.100000px;}
.x5{left:10.800000px;}
.x2{left:12.060000px;}
.x41{left:13.140000px;}
.x1c{left:14.220000px;}
.x20{left:15.660000px;}
.x10{left:16.740000px;}
.x3e{left:18.360000px;}
.x26{left:20.340000px;}
.x19{left:21.600000px;}
.x21{left:22.860000px;}
.x23{left:24.840000px;}
.x25{left:26.280000px;}
.x1f{left:28.260000px;}
.x24{left:31.140000px;}
.x28{left:33.705000px;}
.x39{left:37.125000px;}
.x7{left:39.780000px;}
.x48{left:42.300000px;}
.x16{left:46.794000px;}
.x37{left:48.960000px;}
.x3b{left:50.250000px;}
.x3f{left:52.560000px;}
.x36{left:54.540000px;}
.x30{left:56.700000px;}
.x2d{left:57.774000px;}
.x32{left:59.625000px;}
.x29{left:61.965000px;}
.x38{left:64.305000px;}
.x35{left:65.385000px;}
.x34{left:66.414000px;}
.x2e{left:67.545000px;}
.x2f{left:68.790000px;}
.xd{left:70.560000px;}
.x22{left:71.634000px;}
.x4d{left:75.954000px;}
.x51{left:83.154000px;}
.x54{left:92.514000px;}
.x8{left:100.116000px;}
.xb{left:101.376000px;}
.x53{left:103.674000px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x4e{left:111.054000px;}
.x50{left:122.034000px;}
.x4c{left:126.714000px;}
.x4f{left:130.314000px;}
.x52{left:146.154000px;}
.x46{left:149.934000px;}
.x3{left:156.990000px;}
.xa{left:176.790000px;}
.x13{left:211.170000px;}
.x18{left:221.970000px;}
.x40{left:236.370000px;}
.x27{left:238.710000px;}
.x31{left:256.710000px;}
.x12{left:263.910000px;}
.x17{left:270.255000px;}
.x42{left:324.075000px;}
.xf{left:325.875000px;}
.x1a{left:358.815000px;}
.x3c{left:377.355000px;}
.x2a{left:391.575000px;}
.x3a{left:398.415000px;}
.x33{left:405.075000px;}
.x1b{left:452.625000px;}
.x14{left:453.855000px;}
.xc{left:457.845000px;}
.x15{left:462.705000px;}
.x47{left:505.365000px;}
.x3d{left:526.605000px;}
.x44{left:533.445000px;}
.x2b{left:540.105000px;}
.x1d{left:553.785000px;}
.x49{left:576.825000px;}
.x4a{left:648.510000px;}
.x6{left:661.650000px;}
.x1e{left:668.490000px;}
.xe{left:680.334000px;}
.x2c{left:688.650000px;}
.x4b{left:720.150000px;}
@media print{
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.294400pt;}
.ls18{letter-spacing:-0.290133pt;}
.ls15{letter-spacing:-0.288000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls8{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.176000pt;}
.ls1c{letter-spacing:-0.160000pt;}
.ls1e{letter-spacing:-0.144000pt;}
.ls20{letter-spacing:-0.112000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls3{letter-spacing:-0.081067pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.028160pt;}
.lsa{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.049920pt;}
.ls27{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.092800pt;}
.lse{letter-spacing:0.112000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.234133pt;}
.ls21{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.304000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.608000pt;}
.ls26{letter-spacing:23.648000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws5{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.955520pt;}
.ws23{word-spacing:-12.496000pt;}
.ws24{word-spacing:-12.464000pt;}
.ws1c{word-spacing:-12.432000pt;}
.ws21{word-spacing:-12.400000pt;}
.ws19{word-spacing:-12.352000pt;}
.ws25{word-spacing:-12.336000pt;}
.ws27{word-spacing:-12.272000pt;}
.ws1d{word-spacing:-12.224000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws20{word-spacing:-12.096000pt;}
.ws28{word-spacing:-12.016000pt;}
.ws1f{word-spacing:-11.904000pt;}
.ws22{word-spacing:-11.824000pt;}
.wsd{word-spacing:-11.792000pt;}
.ws1a{word-spacing:-11.760000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.616000pt;}
.wsf{word-spacing:-11.584000pt;}
.ws3{word-spacing:-11.568000pt;}
.ws17{word-spacing:-11.520000pt;}
.ws7{word-spacing:-11.488000pt;}
.ws9{word-spacing:-11.472000pt;}
.ws1b{word-spacing:-11.456000pt;}
.ws1e{word-spacing:-11.408000pt;}
.wsb{word-spacing:-11.376000pt;}
.wse{word-spacing:-11.328000pt;}
.ws26{word-spacing:-11.312000pt;}
.ws10{word-spacing:-11.280000pt;}
.ws13{word-spacing:-10.568213pt;}
.ws14{word-spacing:-10.426880pt;}
.ws15{word-spacing:-10.384000pt;}
.ws12{word-spacing:-10.334080pt;}
.ws11{word-spacing:-10.043947pt;}
.ws8{word-spacing:-7.712000pt;}
.ws16{word-spacing:-7.552000pt;}
.ws2{word-spacing:-7.456000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2.151467pt;}
._0{margin-left:-1.123200pt;}
._4{width:1.276800pt;}
._6{width:2.611200pt;}
._2{width:4.000640pt;}
._3{width:5.192320pt;}
._7{width:6.240000pt;}
._8{width:7.501867pt;}
._b{width:8.674133pt;}
._11{width:9.997867pt;}
._34{width:11.280000pt;}
._f{width:12.960000pt;}
._5{width:14.400000pt;}
._c{width:15.338667pt;}
._16{width:16.512000pt;}
._9{width:18.192000pt;}
._a{width:19.226667pt;}
._23{width:20.160000pt;}
._17{width:21.120000pt;}
._19{width:22.512000pt;}
._1c{width:24.288000pt;}
._27{width:25.584000pt;}
._e{width:26.675200pt;}
._d{width:27.626667pt;}
._1d{width:28.848000pt;}
._1b{width:30.336000pt;}
._1a{width:31.296000pt;}
._18{width:32.496000pt;}
._24{width:33.475200pt;}
._15{width:34.800000pt;}
._21{width:36.144000pt;}
._22{width:37.056000pt;}
._2f{width:38.227200pt;}
._1e{width:42.288000pt;}
._14{width:45.571200pt;}
._1f{width:46.992000pt;}
._20{width:48.192000pt;}
._26{width:49.248000pt;}
._25{width:50.688000pt;}
._10{width:52.224000pt;}
._32{width:53.754667pt;}
._2c{width:60.576000pt;}
._2b{width:62.150400pt;}
._2d{width:63.616000pt;}
._2e{width:64.538667pt;}
._30{width:65.994667pt;}
._31{width:67.200000pt;}
._28{width:72.528000pt;}
._33{width:78.960000pt;}
._13{width:82.528000pt;}
._29{width:105.072000pt;}
._2a{width:106.128000pt;}
._12{width:208.762667pt;}
.fs3{font-size:10.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs5{font-size:89.723461pt;}
.fs2{font-size:96.000000pt;}
.y3c{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1e{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y24{bottom:3.200000pt;}
.y1a{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y22{bottom:4.320000pt;}
.y6e{bottom:5.440000pt;}
.yca{bottom:6.880000pt;}
.yd0{bottom:6.920000pt;}
.yc8{bottom:7.040000pt;}
.y3b{bottom:8.000000pt;}
.y8a{bottom:8.160000pt;}
.y88{bottom:8.320000pt;}
.yb4{bottom:8.480000pt;}
.yb6{bottom:8.640000pt;}
.y7a{bottom:9.600000pt;}
.y1c{bottom:9.760000pt;}
.y20{bottom:13.280000pt;}
.y18{bottom:13.440000pt;}
.y13{bottom:13.640000pt;}
.y36{bottom:14.400000pt;}
.yf{bottom:17.760000pt;}
.y6c{bottom:23.840000pt;}
.yc6{bottom:26.720000pt;}
.y3a{bottom:26.880000pt;}
.y87{bottom:27.360000pt;}
.yae{bottom:27.400000pt;}
.y9f{bottom:30.080000pt;}
.y34{bottom:30.240000pt;}
.y17{bottom:40.640000pt;}
.y39{bottom:45.920000pt;}
.y33{bottom:50.720000pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.yb8{bottom:66.080000pt;}
.y2{bottom:66.240000pt;}
.y38{bottom:67.386667pt;}
.y32{bottom:71.240000pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y31{bottom:91.720000pt;}
.ydd{bottom:99.200000pt;}
.y9d{bottom:105.920000pt;}
.y76{bottom:106.720000pt;}
.y30{bottom:112.040000pt;}
.y6a{bottom:115.840000pt;}
.ye8{bottom:117.760000pt;}
.ydc{bottom:119.520000pt;}
.y9c{bottom:126.432000pt;}
.y75{bottom:127.232000pt;}
.y2f{bottom:132.520000pt;}
.y69{bottom:136.186667pt;}
.ye7{bottom:138.266667pt;}
.ydb{bottom:140.026667pt;}
.y9b{bottom:146.906667pt;}
.y74{bottom:147.706667pt;}
.y2e{bottom:153.000000pt;}
.y68{bottom:156.666667pt;}
.ye6{bottom:158.746667pt;}
.yda{bottom:160.506667pt;}
.y9a{bottom:167.386667pt;}
.y73{bottom:168.186667pt;}
.y2d{bottom:173.480000pt;}
.y67{bottom:177.146667pt;}
.ye5{bottom:179.226667pt;}
.yd9{bottom:180.986667pt;}
.y99{bottom:187.866667pt;}
.y72{bottom:188.666667pt;}
.y2c{bottom:193.960000pt;}
.y66{bottom:197.626667pt;}
.ye4{bottom:199.706667pt;}
.y71{bottom:201.306667pt;}
.yd8{bottom:201.466667pt;}
.y98{bottom:208.186667pt;}
.yd7{bottom:214.106667pt;}
.y2b{bottom:214.440000pt;}
.y65{bottom:218.106667pt;}
.y70{bottom:218.746667pt;}
.ye3{bottom:220.186667pt;}
.y97{bottom:228.666667pt;}
.yd6{bottom:232.826667pt;}
.y2a{bottom:234.760000pt;}
.y6f{bottom:236.026667pt;}
.y64{bottom:238.586667pt;}
.ye2{bottom:240.506667pt;}
.yb2{bottom:241.466667pt;}
.y96{bottom:249.146667pt;}
.yd5{bottom:251.546667pt;}
.y6b{bottom:253.466667pt;}
.y29{bottom:255.240000pt;}
.y63{bottom:258.906667pt;}
.ye1{bottom:260.986667pt;}
.yb1{bottom:261.466667pt;}
.y35{bottom:267.226667pt;}
.y95{bottom:269.626667pt;}
.yd4{bottom:270.266667pt;}
.y6d{bottom:271.866667pt;}
.y28{bottom:275.720000pt;}
.y62{bottom:279.386667pt;}
.ye0{bottom:281.466667pt;}
.yb0{bottom:281.626667pt;}
.yd3{bottom:288.986667pt;}
.y26{bottom:290.106667pt;}
.y27{bottom:296.226667pt;}
.y61{bottom:299.866667pt;}
.yaf{bottom:301.626667pt;}
.ydf{bottom:301.946667pt;}
.yd2{bottom:307.706667pt;}
.y94{bottom:310.586667pt;}
.yde{bottom:316.666667pt;}
.y60{bottom:320.346667pt;}
.yad{bottom:322.746667pt;}
.yd1{bottom:326.426667pt;}
.y93{bottom:330.906667pt;}
.y5f{bottom:340.826667pt;}
.ycf{bottom:345.306667pt;}
.y92{bottom:351.426667pt;}
.y5e{bottom:361.346667pt;}
.yce{bottom:364.066667pt;}
.y91{bottom:371.906667pt;}
.yac{bottom:372.706667pt;}
.y5d{bottom:381.666667pt;}
.ycd{bottom:382.786667pt;}
.y90{bottom:392.386667pt;}
.yab{bottom:393.186667pt;}
.ycc{bottom:401.506667pt;}
.y5c{bottom:402.146667pt;}
.y8f{bottom:412.866667pt;}
.yaa{bottom:413.666667pt;}
.ycb{bottom:420.226667pt;}
.y5b{bottom:422.626667pt;}
.y8e{bottom:433.346667pt;}
.ya9{bottom:434.146667pt;}
.yc9{bottom:438.946667pt;}
.y5a{bottom:443.106667pt;}
.y8d{bottom:445.986667pt;}
.ya8{bottom:454.466667pt;}
.yc5{bottom:457.666667pt;}
.y59{bottom:463.586667pt;}
.y8c{bottom:466.146667pt;}
.ya7{bottom:474.946667pt;}
.yc7{bottom:477.346667pt;}
.y58{bottom:484.066667pt;}
.y8b{bottom:486.146667pt;}
.ya6{bottom:495.426667pt;}
.y57{bottom:504.386667pt;}
.y89{bottom:506.306667pt;}
.yc4{bottom:506.786667pt;}
.ya5{bottom:515.906667pt;}
.y56{bottom:524.866667pt;}
.y86{bottom:527.266667pt;}
.ya4{bottom:536.386667pt;}
.y55{bottom:545.346667pt;}
.yc3{bottom:547.746667pt;}
.ya3{bottom:556.866667pt;}
.y54{bottom:565.826667pt;}
.yc2{bottom:568.226667pt;}
.y85{bottom:577.213333pt;}
.y53{bottom:586.333333pt;}
.yc1{bottom:588.573333pt;}
.y25{bottom:597.053333pt;}
.y84{bottom:597.693333pt;}
.y52{bottom:606.653333pt;}
.yc0{bottom:609.053333pt;}
.y23{bottom:610.653333pt;}
.y83{bottom:618.173333pt;}
.y51{bottom:627.133333pt;}
.y21{bottom:627.293333pt;}
.ybf{bottom:629.533333pt;}
.y82{bottom:638.653333pt;}
.y1f{bottom:645.053333pt;}
.y50{bottom:647.613333pt;}
.ybe{bottom:650.013333pt;}
.y81{bottom:659.133333pt;}
.y4f{bottom:668.093333pt;}
.ybd{bottom:670.493333pt;}
.y1d{bottom:671.773333pt;}
.y80{bottom:679.613333pt;}
.y1b{bottom:683.613333pt;}
.y4e{bottom:688.573333pt;}
.ybc{bottom:690.973333pt;}
.ya2{bottom:693.213333pt;}
.y7f{bottom:699.933333pt;}
.y19{bottom:704.093333pt;}
.y4d{bottom:709.053333pt;}
.ybb{bottom:711.293333pt;}
.ya1{bottom:714.653333pt;}
.y16{bottom:719.133333pt;}
.y7e{bottom:720.413333pt;}
.yb7{bottom:724.093333pt;}
.y4c{bottom:729.373333pt;}
.ya0{bottom:736.093333pt;}
.y7d{bottom:740.893333pt;}
.yba{bottom:743.293333pt;}
.y4b{bottom:749.853333pt;}
.y7c{bottom:753.693333pt;}
.y9e{bottom:758.653333pt;}
.yb9{bottom:762.493333pt;}
.y4a{bottom:770.333333pt;}
.y14{bottom:773.533333pt;}
.y7b{bottom:775.133333pt;}
.yb5{bottom:781.533333pt;}
.y12{bottom:786.493333pt;}
.y49{bottom:790.853333pt;}
.y79{bottom:796.613333pt;}
.yb3{bottom:801.893333pt;}
.y48{bottom:811.333333pt;}
.y10{bottom:813.733333pt;}
.y78{bottom:818.053333pt;}
.yd{bottom:825.893333pt;}
.y47{bottom:831.813333pt;}
.y77{bottom:840.453333pt;}
.y46{bottom:852.133333pt;}
.y45{bottom:872.613333pt;}
.y44{bottom:893.093333pt;}
.yc{bottom:900.773333pt;}
.y43{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.y8{bottom:930.533333pt;}
.y42{bottom:934.053333pt;}
.y37{bottom:946.853333pt;}
.y41{bottom:954.533333pt;}
.y40{bottom:974.853333pt;}
.y3f{bottom:995.333333pt;}
.y3e{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3d{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1a{height:11.840000pt;}
.h10{height:12.160000pt;}
.h14{height:12.960000pt;}
.h21{height:13.600000pt;}
.h17{height:15.040000pt;}
.h2c{height:16.320000pt;}
.h1f{height:16.640000pt;}
.h3b{height:17.600000pt;}
.h3c{height:17.632000pt;}
.h1e{height:17.760000pt;}
.h36{height:18.080000pt;}
.h38{height:18.272000pt;}
.h3{height:18.400000pt;}
.h5{height:18.560000pt;}
.h32{height:19.040000pt;}
.h35{height:19.200000pt;}
.h2f{height:20.320000pt;}
.h30{height:20.352000pt;}
.h19{height:20.480000pt;}
.h25{height:22.880000pt;}
.h26{height:25.907187pt;}
.h1c{height:26.720000pt;}
.h12{height:27.232000pt;}
.h11{height:29.040312pt;}
.h1b{height:29.856875pt;}
.h37{height:32.453125pt;}
.h15{height:32.788125pt;}
.h2b{height:34.720000pt;}
.h18{height:35.975313pt;}
.h22{height:36.304688pt;}
.h24{height:36.328125pt;}
.h29{height:36.703125pt;}
.h3a{height:37.440000pt;}
.h2d{height:37.658750pt;}
.h31{height:38.240000pt;}
.h34{height:38.272000pt;}
.h33{height:40.832000pt;}
.h2e{height:40.960000pt;}
.h13{height:43.343750pt;}
.h20{height:44.533750pt;}
.h1d{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h28{height:48.937500pt;}
.h2a{height:49.075000pt;}
.h6{height:50.712187pt;}
.h16{height:54.400000pt;}
.he{height:57.647187pt;}
.hf{height:60.764863pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.480000pt;}
.h7{height:75.465000pt;}
.h39{height:75.712000pt;}
.h27{height:83.392000pt;}
.h8{height:96.032000pt;}
.h23{height:306.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.480000pt;}
.w2b{width:56.000000pt;}
.w28{width:63.520000pt;}
.w2a{width:63.680000pt;}
.w29{width:63.712000pt;}
.w25{width:66.080000pt;}
.w6{width:68.160000pt;}
.w24{width:77.952000pt;}
.we{width:78.720000pt;}
.wf{width:83.392000pt;}
.w1b{width:83.840000pt;}
.w16{width:84.000000pt;}
.w10{width:89.920000pt;}
.w22{width:101.760000pt;}
.w12{width:101.920000pt;}
.w11{width:101.952000pt;}
.w5{width:110.240000pt;}
.w23{width:114.080000pt;}
.w1c{width:116.000000pt;}
.w13{width:116.160000pt;}
.w1a{width:120.032000pt;}
.w1f{width:123.392000pt;}
.w21{width:126.272000pt;}
.w18{width:131.872000pt;}
.w15{width:132.032000pt;}
.w17{width:132.160000pt;}
.w19{width:132.192000pt;}
.w20{width:132.672000pt;}
.w14{width:135.866667pt;}
.w1e{width:137.946667pt;}
.w1d{width:142.106667pt;}
.wc{width:144.186667pt;}
.w27{width:246.906667pt;}
.wa{width:295.226667pt;}
.w9{width:316.866667pt;}
.w26{width:353.186667pt;}
.wb{width:412.866667pt;}
.wd{width:455.906667pt;}
.w4{width:490.493333pt;}
.w7{width:547.973333pt;}
.w3{width:558.493333pt;}
.w8{width:612.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:1.920000pt;}
.x43{left:3.040000pt;}
.x4{left:5.760000pt;}
.x9{left:7.200000pt;}
.x5{left:9.600000pt;}
.x2{left:10.720000pt;}
.x41{left:11.680000pt;}
.x1c{left:12.640000pt;}
.x20{left:13.920000pt;}
.x10{left:14.880000pt;}
.x3e{left:16.320000pt;}
.x26{left:18.080000pt;}
.x19{left:19.200000pt;}
.x21{left:20.320000pt;}
.x23{left:22.080000pt;}
.x25{left:23.360000pt;}
.x1f{left:25.120000pt;}
.x24{left:27.680000pt;}
.x28{left:29.960000pt;}
.x39{left:33.000000pt;}
.x7{left:35.360000pt;}
.x48{left:37.600000pt;}
.x16{left:41.594667pt;}
.x37{left:43.520000pt;}
.x3b{left:44.666667pt;}
.x3f{left:46.720000pt;}
.x36{left:48.480000pt;}
.x30{left:50.400000pt;}
.x2d{left:51.354667pt;}
.x32{left:53.000000pt;}
.x29{left:55.080000pt;}
.x38{left:57.160000pt;}
.x35{left:58.120000pt;}
.x34{left:59.034667pt;}
.x2e{left:60.040000pt;}
.x2f{left:61.146667pt;}
.xd{left:62.720000pt;}
.x22{left:63.674667pt;}
.x4d{left:67.514667pt;}
.x51{left:73.914667pt;}
.x54{left:82.234667pt;}
.x8{left:88.992000pt;}
.xb{left:90.112000pt;}
.x53{left:92.154667pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x4e{left:98.714667pt;}
.x50{left:108.474667pt;}
.x4c{left:112.634667pt;}
.x4f{left:115.834667pt;}
.x52{left:129.914667pt;}
.x46{left:133.274667pt;}
.x3{left:139.546667pt;}
.xa{left:157.146667pt;}
.x13{left:187.706667pt;}
.x18{left:197.306667pt;}
.x40{left:210.106667pt;}
.x27{left:212.186667pt;}
.x31{left:228.186667pt;}
.x12{left:234.586667pt;}
.x17{left:240.226667pt;}
.x42{left:288.066667pt;}
.xf{left:289.666667pt;}
.x1a{left:318.946667pt;}
.x3c{left:335.426667pt;}
.x2a{left:348.066667pt;}
.x3a{left:354.146667pt;}
.x33{left:360.066667pt;}
.x1b{left:402.333333pt;}
.x14{left:403.426667pt;}
.xc{left:406.973333pt;}
.x15{left:411.293333pt;}
.x47{left:449.213333pt;}
.x3d{left:468.093333pt;}
.x44{left:474.173333pt;}
.x2b{left:480.093333pt;}
.x1d{left:492.253333pt;}
.x49{left:512.733333pt;}
.x4a{left:576.453333pt;}
.x6{left:588.133333pt;}
.x1e{left:594.213333pt;}
.xe{left:604.741333pt;}
.x2c{left:612.133333pt;}
.x4b{left:640.133333pt;}
}




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