
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4cc32caf2c90ea4326ddc3a6.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_7672c449908804363a0dd4da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3675022a3404d9008db86820.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c5beb456d23984055fedb881.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_db62bf2ece0e44529b8e6032.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_bb94559e6e47ad6c85940f88.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_4e3b53e61cc4c902d4478b09.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_179cea923cb2f57ad71b3880.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_e40ffb88a01d1445b981c4ee.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_2724b0d54d3209de5b1d47e3.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_a066d7f5afda64db817500a6.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_3d3a57a1218e70155efafd1e.woff2')format("woff");}.fff{font-family:fff;line-height:0.940918;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_39e8cbf5e375dff31e76ad71.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_cc0f3bc53c8d9c1eeb1034fc.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_9afd040038dc0507629c233d.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_b31f1e9e650a89388f394d33.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls7{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.331200px;}
.ls16{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.234000px;}
.ls26{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.126000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.091200px;}
.ls8{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.031680px;}
.ls20{letter-spacing:0.036000px;}
.ls15{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.198000px;}
.ls10{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.234600px;}
.ls0{letter-spacing:0.234720px;}
.ls27{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.331200px;}
.ls2{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.396000px;}
.ls25{letter-spacing:2.826000px;}
.ls18{letter-spacing:5.706000px;}
.ls12{letter-spacing:7.866000px;}
.ls13{letter-spacing:9.306000px;}
.ls1d{letter-spacing:9.324000px;}
.ls1b{letter-spacing:10.044000px;}
.ls24{letter-spacing:21.546000px;}
.lsf{letter-spacing:22.986000px;}
.ls23{letter-spacing:30.924000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.316640px;}
.ws2{word-spacing:-19.152000px;}
.ws4{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.234000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.928000px;}
.ws6{word-spacing:-16.824960px;}
.ws16{word-spacing:-13.986000px;}
.ws19{word-spacing:-13.914000px;}
.ws14{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.302000px;}
.ws18{word-spacing:-13.266000px;}
.wsd{word-spacing:-13.068000px;}
.wsa{word-spacing:-13.032000px;}
.ws7{word-spacing:-13.014000px;}
.ws13{word-spacing:-12.906000px;}
.ws10{word-spacing:-12.852000px;}
.wsc{word-spacing:-12.834000px;}
.ws17{word-spacing:-12.816000px;}
.ws11{word-spacing:-12.780000px;}
.wsf{word-spacing:-12.744000px;}
.wse{word-spacing:-12.726000px;}
.ws3{word-spacing:-10.576680px;}
.ws12{word-spacing:-8.676000px;}
.wsb{word-spacing:-8.316000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.263600px;}
._2{width:1.149120px;}
._b{width:2.494800px;}
._6{width:3.963600px;}
._5{width:5.238000px;}
._7{width:6.372000px;}
._8{width:7.691760px;}
._c{width:8.724000px;}
._a{width:9.930240px;}
._d{width:11.216880px;}
._1{width:12.353040px;}
._3{width:13.398960px;}
._4{width:15.282000px;}
._18{width:16.578000px;}
._14{width:18.576000px;}
._9{width:19.992000px;}
._1b{width:21.600000px;}
._1c{width:23.112000px;}
._e{width:25.218000px;}
._f{width:27.216000px;}
._16{width:28.998000px;}
._22{width:30.010800px;}
._12{width:31.644000px;}
._13{width:33.276000px;}
._15{width:34.938000px;}
._1a{width:36.666000px;}
._1d{width:38.162880px;}
._2a{width:39.249360px;}
._21{width:42.444000px;}
._11{width:43.578000px;}
._10{width:44.658000px;}
._23{width:45.830880px;}
._27{width:47.049120px;}
._2e{width:50.058000px;}
._31{width:51.138000px;}
._20{width:52.542000px;}
._1e{width:53.838000px;}
._1f{width:55.350000px;}
._19{width:58.968000px;}
._2c{width:63.450000px;}
._2b{width:64.530000px;}
._24{width:66.204000px;}
._17{width:75.546000px;}
._33{width:77.652000px;}
._2d{width:80.733600px;}
._26{width:90.018000px;}
._25{width:91.497600px;}
._2f{width:98.604000px;}
._30{width:100.008000px;}
._28{width:101.574000px;}
._29{width:102.924000px;}
._32{width:154.818000px;}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs7{font-size:33.120000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y3e{bottom:-15.660000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.340000px;}
.y7{bottom:2.880000px;}
.y1f{bottom:3.240000px;}
.y11{bottom:3.420000px;}
.y25{bottom:3.600000px;}
.y1b{bottom:3.960000px;}
.y4{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.y8c{bottom:4.680000px;}
.y9f{bottom:4.845000px;}
.y23{bottom:4.860000px;}
.y9d{bottom:4.890000px;}
.ya1{bottom:5.025000px;}
.y8a{bottom:5.040000px;}
.ye0{bottom:6.105000px;}
.yb3{bottom:6.120000px;}
.yb0{bottom:6.300000px;}
.ye1{bottom:7.005000px;}
.yb1{bottom:7.920000px;}
.y3d{bottom:9.000000px;}
.yc0{bottom:9.180000px;}
.ybf{bottom:9.225000px;}
.yde{bottom:9.345000px;}
.yc2{bottom:9.360000px;}
.y36{bottom:10.785000px;}
.y1d{bottom:10.980000px;}
.y21{bottom:14.940000px;}
.y14{bottom:15.120000px;}
.y38{bottom:16.365000px;}
.yf{bottom:19.980000px;}
.y19{bottom:21.060000px;}
.y82{bottom:23.940000px;}
.ye3{bottom:25.545000px;}
.ydd{bottom:27.705000px;}
.yae{bottom:28.620000px;}
.y3c{bottom:30.240000px;}
.ybd{bottom:32.985000px;}
.y35{bottom:33.825000px;}
.y13{bottom:45.765000px;}
.y3b{bottom:51.660000px;}
.y18{bottom:51.840000px;}
.y34{bottom:56.865000px;}
.y5{bottom:58.320000px;}
.ye{bottom:60.840000px;}
.y2{bottom:74.520000px;}
.y3a{bottom:75.810000px;}
.y33{bottom:79.905000px;}
.ya{bottom:80.460000px;}
.y9{bottom:91.440000px;}
.y32{bottom:102.990000px;}
.yf0{bottom:111.240000px;}
.yf8{bottom:114.840000px;}
.y100{bottom:119.160000px;}
.yfc{bottom:119.520000px;}
.y115{bottom:120.600000px;}
.yac{bottom:123.120000px;}
.y31{bottom:126.030000px;}
.ye8{bottom:127.260000px;}
.y80{bottom:129.600000px;}
.y6c{bottom:130.320000px;}
.yef{bottom:134.280000px;}
.yf7{bottom:137.700000px;}
.yfb{bottom:142.596000px;}
.yff{bottom:142.776000px;}
.y114{bottom:143.496000px;}
.yab{bottom:146.016000px;}
.y30{bottom:148.890000px;}
.ye7{bottom:150.330000px;}
.y7f{bottom:152.490000px;}
.y6b{bottom:153.210000px;}
.yee{bottom:157.170000px;}
.yf6{bottom:160.770000px;}
.ye5{bottom:164.745000px;}
.yfa{bottom:165.630000px;}
.yfe{bottom:165.990000px;}
.y113{bottom:166.530000px;}
.yaa{bottom:169.050000px;}
.y2f{bottom:171.930000px;}
.y7e{bottom:175.530000px;}
.y6a{bottom:176.250000px;}
.yed{bottom:180.210000px;}
.ye6{bottom:184.185000px;}
.yf9{bottom:188.670000px;}
.yfd{bottom:189.030000px;}
.y112{bottom:189.570000px;}
.ya9{bottom:192.090000px;}
.y2e{bottom:194.970000px;}
.y7d{bottom:198.570000px;}
.y69{bottom:199.290000px;}
.yec{bottom:203.250000px;}
.ye2{bottom:203.805000px;}
.yf5{bottom:206.850000px;}
.y111{bottom:212.610000px;}
.ya8{bottom:215.130000px;}
.y2d{bottom:218.010000px;}
.y7c{bottom:221.610000px;}
.y68{bottom:222.330000px;}
.ye4{bottom:223.245000px;}
.yf4{bottom:229.890000px;}
.y110{bottom:235.650000px;}
.ya7{bottom:238.170000px;}
.y2c{bottom:241.050000px;}
.ydc{bottom:242.865000px;}
.y7b{bottom:244.650000px;}
.y67{bottom:245.370000px;}
.yeb{bottom:249.330000px;}
.y10f{bottom:258.510000px;}
.ya6{bottom:261.210000px;}
.y2b{bottom:263.910000px;}
.ydf{bottom:264.465000px;}
.y7a{bottom:267.690000px;}
.y66{bottom:268.410000px;}
.y37{bottom:270.045000px;}
.y10e{bottom:281.550000px;}
.ya5{bottom:284.070000px;}
.y2a{bottom:286.950000px;}
.y79{bottom:290.550000px;}
.y65{bottom:291.270000px;}
.ydb{bottom:295.950000px;}
.y27{bottom:295.965000px;}
.ya4{bottom:298.485000px;}
.y10d{bottom:304.590000px;}
.y29{bottom:309.990000px;}
.y78{bottom:313.590000px;}
.y64{bottom:314.310000px;}
.ya3{bottom:316.485000px;}
.yda{bottom:318.990000px;}
.y10c{bottom:327.630000px;}
.y28{bottom:333.030000px;}
.ya2{bottom:334.485000px;}
.y77{bottom:336.630000px;}
.y63{bottom:337.350000px;}
.yd9{bottom:342.030000px;}
.y10b{bottom:350.670000px;}
.ya0{bottom:352.485000px;}
.y76{bottom:359.670000px;}
.y62{bottom:360.390000px;}
.yd7{bottom:365.250000px;}
.yd8{bottom:365.790000px;}
.y9e{bottom:370.665000px;}
.y10a{bottom:373.710000px;}
.y75{bottom:382.710000px;}
.y61{bottom:383.430000px;}
.y9c{bottom:388.665000px;}
.yd6{bottom:388.830000px;}
.y109{bottom:396.615000px;}
.y74{bottom:405.795000px;}
.y60{bottom:406.515000px;}
.y9b{bottom:406.695000px;}
.yd5{bottom:411.735000px;}
.y108{bottom:419.655000px;}
.y9a{bottom:424.695000px;}
.y73{bottom:428.655000px;}
.y5f{bottom:429.375000px;}
.yd4{bottom:434.775000px;}
.y99{bottom:442.695000px;}
.y72{bottom:451.695000px;}
.y5e{bottom:452.415000px;}
.yd3{bottom:457.815000px;}
.y98{bottom:460.695000px;}
.y107{bottom:465.735000px;}
.yd2{bottom:472.215000px;}
.y71{bottom:474.735000px;}
.y5d{bottom:475.455000px;}
.y97{bottom:478.695000px;}
.y106{bottom:488.775000px;}
.yd1{bottom:494.715000px;}
.y96{bottom:496.695000px;}
.y70{bottom:497.775000px;}
.y5c{bottom:498.495000px;}
.y105{bottom:511.815000px;}
.y95{bottom:514.695000px;}
.yd0{bottom:517.395000px;}
.y6f{bottom:520.815000px;}
.y5b{bottom:521.535000px;}
.y94{bottom:532.695000px;}
.y104{bottom:534.675000px;}
.ycf{bottom:539.895000px;}
.y6e{bottom:543.675000px;}
.y5a{bottom:544.575000px;}
.y93{bottom:550.695000px;}
.y103{bottom:557.715000px;}
.yce{bottom:562.575000px;}
.y6d{bottom:566.895000px;}
.y59{bottom:567.435000px;}
.y91{bottom:568.695000px;}
.ycd{bottom:585.075000px;}
.y92{bottom:587.775000px;}
.y58{bottom:590.475000px;}
.y102{bottom:603.795000px;}
.yf3{bottom:605.055000px;}
.ycc{bottom:607.755000px;}
.y57{bottom:613.515000px;}
.y90{bottom:617.835000px;}
.y101{bottom:626.835000px;}
.yf2{bottom:628.095000px;}
.yea{bottom:628.995000px;}
.ycb{bottom:630.255000px;}
.y56{bottom:636.555000px;}
.y8f{bottom:640.905000px;}
.y26{bottom:641.085000px;}
.yf1{bottom:650.985000px;}
.ye9{bottom:652.065000px;}
.yca{bottom:652.965000px;}
.y8e{bottom:655.305000px;}
.y24{bottom:656.385000px;}
.y55{bottom:659.625000px;}
.y8d{bottom:673.305000px;}
.y22{bottom:675.105000px;}
.yc9{bottom:675.465000px;}
.y54{bottom:682.485000px;}
.y8b{bottom:691.305000px;}
.y20{bottom:695.085000px;}
.yc8{bottom:698.145000px;}
.y53{bottom:705.525000px;}
.y89{bottom:709.305000px;}
.yc7{bottom:720.825000px;}
.y1e{bottom:725.145000px;}
.y88{bottom:727.485000px;}
.y52{bottom:728.565000px;}
.y1c{bottom:738.465000px;}
.yc6{bottom:743.325000px;}
.y87{bottom:745.485000px;}
.y51{bottom:751.605000px;}
.y1a{bottom:761.505000px;}
.y86{bottom:763.485000px;}
.yc5{bottom:766.005000px;}
.y50{bottom:774.645000px;}
.y17{bottom:778.425000px;}
.y85{bottom:781.485000px;}
.yc4{bottom:788.505000px;}
.y4f{bottom:797.685000px;}
.y84{bottom:799.485000px;}
.yc3{bottom:811.185000px;}
.y81{bottom:817.485000px;}
.y4e{bottom:820.545000px;}
.yc1{bottom:833.685000px;}
.y83{bottom:836.565000px;}
.y15{bottom:839.805000px;}
.y4d{bottom:843.585000px;}
.y12{bottom:854.385000px;}
.ybc{bottom:856.365000px;}
.y4c{bottom:866.625000px;}
.ybe{bottom:880.125000px;}
.y4b{bottom:889.710000px;}
.y4a{bottom:912.750000px;}
.ybb{bottom:914.730000px;}
.y10{bottom:915.450000px;}
.yd{bottom:929.130000px;}
.y49{bottom:935.790000px;}
.yba{bottom:937.770000px;}
.yb9{bottom:952.170000px;}
.y48{bottom:958.650000px;}
.yb8{bottom:971.610000px;}
.y47{bottom:981.690000px;}
.yb7{bottom:991.230000px;}
.y46{bottom:1004.730000px;}
.yb6{bottom:1010.670000px;}
.yc{bottom:1013.370000px;}
.y45{bottom:1027.770000px;}
.yb{bottom:1030.110000px;}
.yb5{bottom:1030.290000px;}
.y8{bottom:1046.850000px;}
.yb4{bottom:1049.730000px;}
.y44{bottom:1050.810000px;}
.y39{bottom:1065.210000px;}
.yb2{bottom:1069.350000px;}
.y43{bottom:1073.850000px;}
.yad{bottom:1088.790000px;}
.y42{bottom:1096.710000px;}
.yaf{bottom:1111.110000px;}
.y41{bottom:1119.750000px;}
.y40{bottom:1142.820000px;}
.y1{bottom:1171.080000px;}
.y3f{bottom:1192.680000px;}
.y6{bottom:1195.740000px;}
.hc{height:8.289492px;}
.h1c{height:13.320000px;}
.hf{height:13.665000px;}
.h13{height:14.580000px;}
.h23{height:15.300000px;}
.h31{height:16.740000px;}
.h33{height:16.905000px;}
.h18{height:16.920000px;}
.h34{height:16.941000px;}
.h35{height:17.085000px;}
.h30{height:17.100000px;}
.h39{height:18.345000px;}
.h37{height:18.525000px;}
.h21{height:18.720000px;}
.h42{height:19.245000px;}
.h20{height:19.980000px;}
.h38{height:20.145000px;}
.h3{height:20.698500px;}
.h5{height:20.880000px;}
.h3f{height:21.405000px;}
.h3c{height:21.420000px;}
.h3b{height:21.442500px;}
.h40{height:21.585000px;}
.h3d{height:21.600000px;}
.h3e{height:21.630000px;}
.h1a{height:23.040000px;}
.h16{height:25.001719px;}
.h26{height:25.905000px;}
.h27{height:29.145586px;}
.h1e{height:30.060000px;}
.h10{height:32.670352px;}
.h17{height:33.291211px;}
.h1d{height:33.588984px;}
.h32{height:35.985000px;}
.h2f{height:36.000000px;}
.h14{height:36.886641px;}
.h43{height:37.785000px;}
.h41{height:39.945000px;}
.h19{height:40.472227px;}
.h2c{height:40.842773px;}
.h36{height:40.845000px;}
.h25{height:40.869141px;}
.h2a{height:41.291016px;}
.h2d{height:42.366094px;}
.h3a{height:45.202500px;}
.h2e{height:45.509766px;}
.h12{height:48.761719px;}
.h1b{height:49.253906px;}
.h1f{height:50.132812px;}
.h9{height:51.539062px;}
.hb{height:54.457031px;}
.h29{height:55.054688px;}
.h2b{height:55.209375px;}
.h6{height:57.051211px;}
.h22{height:60.418125px;}
.h11{height:61.042500px;}
.h15{height:61.380000px;}
.he{height:64.853086px;}
.h2{height:70.664062px;}
.h4{height:72.562500px;}
.ha{height:78.468750px;}
.hd{height:81.525000px;}
.h7{height:84.898125px;}
.h28{height:93.810000px;}
.h8{height:108.030000px;}
.h24{height:345.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.529500px;}
.w19{width:67.500000px;}
.w1b{width:74.196000px;}
.w6{width:76.669500px;}
.w1e{width:87.645000px;}
.w1d{width:87.861000px;}
.wf{width:112.129500px;}
.w12{width:114.109500px;}
.w5{width:124.005000px;}
.w15{width:145.429500px;}
.w1c{width:148.485000px;}
.wd{width:178.050000px;}
.w10{width:181.815000px;}
.wc{width:202.699500px;}
.w18{width:209.359500px;}
.w13{width:231.540000px;}
.w16{width:252.960000px;}
.w17{width:277.755000px;}
.we{width:294.315000px;}
.w14{width:329.415000px;}
.wa{width:332.115000px;}
.w9{width:356.464500px;}
.w11{width:381.135000px;}
.w1a{width:398.235000px;}
.wb{width:464.475000px;}
.w4{width:551.790000px;}
.w7{width:616.455000px;}
.w3{width:628.290000px;}
.w8{width:688.590000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.465000px;}
.x9{left:8.089500px;}
.x45{left:9.169500px;}
.x5{left:10.789500px;}
.x4c{left:13.680000px;}
.x10{left:16.740000px;}
.x3b{left:18.885000px;}
.x1b{left:20.145000px;}
.x2{left:30.049500px;}
.x50{left:31.140000px;}
.x4d{left:34.189500px;}
.x4f{left:36.540000px;}
.x26{left:38.149500px;}
.x7{left:39.780000px;}
.x33{left:41.565000px;}
.x46{left:47.323500px;}
.x2f{left:48.943500px;}
.x30{left:50.203500px;}
.x2e{left:52.003500px;}
.x2b{left:53.083500px;}
.x34{left:54.163500px;}
.x3a{left:60.465000px;}
.x18{left:62.460000px;}
.x28{left:64.290000px;}
.x43{left:65.683500px;}
.x44{left:66.943500px;}
.x1a{left:68.925000px;}
.x4e{left:70.365000px;}
.xd{left:73.785000px;}
.x32{left:75.990000px;}
.x22{left:81.540000px;}
.x16{left:83.323500px;}
.x20{left:84.960000px;}
.x1d{left:86.220000px;}
.x24{left:97.183500px;}
.x1c{left:98.443500px;}
.x8{left:100.126500px;}
.xb{left:101.386500px;}
.x11{left:105.300000px;}
.x1{left:108.036000px;}
.x35{left:109.110000px;}
.x2a{left:112.350000px;}
.x42{left:118.470000px;}
.x3e{left:119.910000px;}
.x3c{left:123.510000px;}
.x40{left:125.850000px;}
.x3f{left:127.110000px;}
.x3d{left:129.630000px;}
.x41{left:131.610000px;}
.x23{left:134.310000px;}
.x1f{left:135.390000px;}
.x1e{left:138.090000px;}
.x25{left:139.170000px;}
.x21{left:140.430000px;}
.x37{left:151.365000px;}
.x36{left:152.445000px;}
.x3{left:157.005000px;}
.xa{left:176.805000px;}
.x2c{left:178.590000px;}
.x2d{left:183.090000px;}
.x27{left:220.185000px;}
.x31{left:222.165000px;}
.x13{left:240.150000px;}
.x38{left:253.485000px;}
.x12{left:263.910000px;}
.x17{left:310.755000px;}
.x47{left:317.415000px;}
.xf{left:325.875000px;}
.x48{left:384.915000px;}
.x29{left:402.015000px;}
.x14{left:453.855000px;}
.xc{left:457.860000px;}
.x49{left:459.120000px;}
.x15{left:462.705000px;}
.x19{left:488.820000px;}
.x39{left:506.460000px;}
.x4a{left:607.620000px;}
.x6{left:661.650000px;}
.xe{left:680.323500px;}
.x4b{left:695.490000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.208000pt;}
.ls26{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.112000pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.081067pt;}
.ls8{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.028160pt;}
.ls20{letter-spacing:0.032000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.176000pt;}
.ls10{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.208533pt;}
.ls0{letter-spacing:0.208640pt;}
.ls27{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.294400pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls25{letter-spacing:2.512000pt;}
.ls18{letter-spacing:5.072000pt;}
.ls12{letter-spacing:6.992000pt;}
.ls13{letter-spacing:8.272000pt;}
.ls1d{letter-spacing:8.288000pt;}
.ls1b{letter-spacing:8.928000pt;}
.ls24{letter-spacing:19.152000pt;}
.lsf{letter-spacing:20.432000pt;}
.ls23{letter-spacing:27.488000pt;}
.ws1{word-spacing:-19.837013pt;}
.ws2{word-spacing:-17.024000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.208000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws6{word-spacing:-14.955520pt;}
.ws16{word-spacing:-12.432000pt;}
.ws19{word-spacing:-12.368000pt;}
.ws14{word-spacing:-12.192000pt;}
.ws15{word-spacing:-11.824000pt;}
.ws18{word-spacing:-11.792000pt;}
.wsd{word-spacing:-11.616000pt;}
.wsa{word-spacing:-11.584000pt;}
.ws7{word-spacing:-11.568000pt;}
.ws13{word-spacing:-11.472000pt;}
.ws10{word-spacing:-11.424000pt;}
.wsc{word-spacing:-11.408000pt;}
.ws17{word-spacing:-11.392000pt;}
.ws11{word-spacing:-11.360000pt;}
.wsf{word-spacing:-11.328000pt;}
.wse{word-spacing:-11.312000pt;}
.ws3{word-spacing:-9.401493pt;}
.ws12{word-spacing:-7.712000pt;}
.wsb{word-spacing:-7.392000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-1.123200pt;}
._2{width:1.021440pt;}
._b{width:2.217600pt;}
._6{width:3.523200pt;}
._5{width:4.656000pt;}
._7{width:5.664000pt;}
._8{width:6.837120pt;}
._c{width:7.754667pt;}
._a{width:8.826880pt;}
._d{width:9.970560pt;}
._1{width:10.980480pt;}
._3{width:11.910187pt;}
._4{width:13.584000pt;}
._18{width:14.736000pt;}
._14{width:16.512000pt;}
._9{width:17.770667pt;}
._1b{width:19.200000pt;}
._1c{width:20.544000pt;}
._e{width:22.416000pt;}
._f{width:24.192000pt;}
._16{width:25.776000pt;}
._22{width:26.676267pt;}
._12{width:28.128000pt;}
._13{width:29.578667pt;}
._15{width:31.056000pt;}
._1a{width:32.592000pt;}
._1d{width:33.922560pt;}
._2a{width:34.888320pt;}
._21{width:37.728000pt;}
._11{width:38.736000pt;}
._10{width:39.696000pt;}
._23{width:40.738560pt;}
._27{width:41.821440pt;}
._2e{width:44.496000pt;}
._31{width:45.456000pt;}
._20{width:46.704000pt;}
._1e{width:47.856000pt;}
._1f{width:49.200000pt;}
._19{width:52.416000pt;}
._2c{width:56.400000pt;}
._2b{width:57.360000pt;}
._24{width:58.848000pt;}
._17{width:67.152000pt;}
._33{width:69.024000pt;}
._2d{width:71.763200pt;}
._26{width:80.016000pt;}
._25{width:81.331200pt;}
._2f{width:87.648000pt;}
._30{width:88.896000pt;}
._28{width:90.288000pt;}
._29{width:91.488000pt;}
._32{width:137.616000pt;}
.fs3{font-size:10.880000pt;}
.fs7{font-size:29.440000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y3e{bottom:-13.920000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.080000pt;}
.y7{bottom:2.560000pt;}
.y1f{bottom:2.880000pt;}
.y11{bottom:3.040000pt;}
.y25{bottom:3.200000pt;}
.y1b{bottom:3.520000pt;}
.y4{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.y8c{bottom:4.160000pt;}
.y9f{bottom:4.306667pt;}
.y23{bottom:4.320000pt;}
.y9d{bottom:4.346667pt;}
.ya1{bottom:4.466667pt;}
.y8a{bottom:4.480000pt;}
.ye0{bottom:5.426667pt;}
.yb3{bottom:5.440000pt;}
.yb0{bottom:5.600000pt;}
.ye1{bottom:6.226667pt;}
.yb1{bottom:7.040000pt;}
.y3d{bottom:8.000000pt;}
.yc0{bottom:8.160000pt;}
.ybf{bottom:8.200000pt;}
.yde{bottom:8.306667pt;}
.yc2{bottom:8.320000pt;}
.y36{bottom:9.586667pt;}
.y1d{bottom:9.760000pt;}
.y21{bottom:13.280000pt;}
.y14{bottom:13.440000pt;}
.y38{bottom:14.546667pt;}
.yf{bottom:17.760000pt;}
.y19{bottom:18.720000pt;}
.y82{bottom:21.280000pt;}
.ye3{bottom:22.706667pt;}
.ydd{bottom:24.626667pt;}
.yae{bottom:25.440000pt;}
.y3c{bottom:26.880000pt;}
.ybd{bottom:29.320000pt;}
.y35{bottom:30.066667pt;}
.y13{bottom:40.680000pt;}
.y3b{bottom:45.920000pt;}
.y18{bottom:46.080000pt;}
.y34{bottom:50.546667pt;}
.y5{bottom:51.840000pt;}
.ye{bottom:54.080000pt;}
.y2{bottom:66.240000pt;}
.y3a{bottom:67.386667pt;}
.y33{bottom:71.026667pt;}
.ya{bottom:71.520000pt;}
.y9{bottom:81.280000pt;}
.y32{bottom:91.546667pt;}
.yf0{bottom:98.880000pt;}
.yf8{bottom:102.080000pt;}
.y100{bottom:105.920000pt;}
.yfc{bottom:106.240000pt;}
.y115{bottom:107.200000pt;}
.yac{bottom:109.440000pt;}
.y31{bottom:112.026667pt;}
.ye8{bottom:113.120000pt;}
.y80{bottom:115.200000pt;}
.y6c{bottom:115.840000pt;}
.yef{bottom:119.360000pt;}
.yf7{bottom:122.400000pt;}
.yfb{bottom:126.752000pt;}
.yff{bottom:126.912000pt;}
.y114{bottom:127.552000pt;}
.yab{bottom:129.792000pt;}
.y30{bottom:132.346667pt;}
.ye7{bottom:133.626667pt;}
.y7f{bottom:135.546667pt;}
.y6b{bottom:136.186667pt;}
.yee{bottom:139.706667pt;}
.yf6{bottom:142.906667pt;}
.ye5{bottom:146.440000pt;}
.yfa{bottom:147.226667pt;}
.yfe{bottom:147.546667pt;}
.y113{bottom:148.026667pt;}
.yaa{bottom:150.266667pt;}
.y2f{bottom:152.826667pt;}
.y7e{bottom:156.026667pt;}
.y6a{bottom:156.666667pt;}
.yed{bottom:160.186667pt;}
.ye6{bottom:163.720000pt;}
.yf9{bottom:167.706667pt;}
.yfd{bottom:168.026667pt;}
.y112{bottom:168.506667pt;}
.ya9{bottom:170.746667pt;}
.y2e{bottom:173.306667pt;}
.y7d{bottom:176.506667pt;}
.y69{bottom:177.146667pt;}
.yec{bottom:180.666667pt;}
.ye2{bottom:181.160000pt;}
.yf5{bottom:183.866667pt;}
.y111{bottom:188.986667pt;}
.ya8{bottom:191.226667pt;}
.y2d{bottom:193.786667pt;}
.y7c{bottom:196.986667pt;}
.y68{bottom:197.626667pt;}
.ye4{bottom:198.440000pt;}
.yf4{bottom:204.346667pt;}
.y110{bottom:209.466667pt;}
.ya7{bottom:211.706667pt;}
.y2c{bottom:214.266667pt;}
.ydc{bottom:215.880000pt;}
.y7b{bottom:217.466667pt;}
.y67{bottom:218.106667pt;}
.yeb{bottom:221.626667pt;}
.y10f{bottom:229.786667pt;}
.ya6{bottom:232.186667pt;}
.y2b{bottom:234.586667pt;}
.ydf{bottom:235.080000pt;}
.y7a{bottom:237.946667pt;}
.y66{bottom:238.586667pt;}
.y37{bottom:240.040000pt;}
.y10e{bottom:250.266667pt;}
.ya5{bottom:252.506667pt;}
.y2a{bottom:255.066667pt;}
.y79{bottom:258.266667pt;}
.y65{bottom:258.906667pt;}
.ydb{bottom:263.066667pt;}
.y27{bottom:263.080000pt;}
.ya4{bottom:265.320000pt;}
.y10d{bottom:270.746667pt;}
.y29{bottom:275.546667pt;}
.y78{bottom:278.746667pt;}
.y64{bottom:279.386667pt;}
.ya3{bottom:281.320000pt;}
.yda{bottom:283.546667pt;}
.y10c{bottom:291.226667pt;}
.y28{bottom:296.026667pt;}
.ya2{bottom:297.320000pt;}
.y77{bottom:299.226667pt;}
.y63{bottom:299.866667pt;}
.yd9{bottom:304.026667pt;}
.y10b{bottom:311.706667pt;}
.ya0{bottom:313.320000pt;}
.y76{bottom:319.706667pt;}
.y62{bottom:320.346667pt;}
.yd7{bottom:324.666667pt;}
.yd8{bottom:325.146667pt;}
.y9e{bottom:329.480000pt;}
.y10a{bottom:332.186667pt;}
.y75{bottom:340.186667pt;}
.y61{bottom:340.826667pt;}
.y9c{bottom:345.480000pt;}
.yd6{bottom:345.626667pt;}
.y109{bottom:352.546667pt;}
.y74{bottom:360.706667pt;}
.y60{bottom:361.346667pt;}
.y9b{bottom:361.506667pt;}
.yd5{bottom:365.986667pt;}
.y108{bottom:373.026667pt;}
.y9a{bottom:377.506667pt;}
.y73{bottom:381.026667pt;}
.y5f{bottom:381.666667pt;}
.yd4{bottom:386.466667pt;}
.y99{bottom:393.506667pt;}
.y72{bottom:401.506667pt;}
.y5e{bottom:402.146667pt;}
.yd3{bottom:406.946667pt;}
.y98{bottom:409.506667pt;}
.y107{bottom:413.986667pt;}
.yd2{bottom:419.746667pt;}
.y71{bottom:421.986667pt;}
.y5d{bottom:422.626667pt;}
.y97{bottom:425.506667pt;}
.y106{bottom:434.466667pt;}
.yd1{bottom:439.746667pt;}
.y96{bottom:441.506667pt;}
.y70{bottom:442.466667pt;}
.y5c{bottom:443.106667pt;}
.y105{bottom:454.946667pt;}
.y95{bottom:457.506667pt;}
.yd0{bottom:459.906667pt;}
.y6f{bottom:462.946667pt;}
.y5b{bottom:463.586667pt;}
.y94{bottom:473.506667pt;}
.y104{bottom:475.266667pt;}
.ycf{bottom:479.906667pt;}
.y6e{bottom:483.266667pt;}
.y5a{bottom:484.066667pt;}
.y93{bottom:489.506667pt;}
.y103{bottom:495.746667pt;}
.yce{bottom:500.066667pt;}
.y6d{bottom:503.906667pt;}
.y59{bottom:504.386667pt;}
.y91{bottom:505.506667pt;}
.ycd{bottom:520.066667pt;}
.y92{bottom:522.466667pt;}
.y58{bottom:524.866667pt;}
.y102{bottom:536.706667pt;}
.yf3{bottom:537.826667pt;}
.ycc{bottom:540.226667pt;}
.y57{bottom:545.346667pt;}
.y90{bottom:549.186667pt;}
.y101{bottom:557.186667pt;}
.yf2{bottom:558.306667pt;}
.yea{bottom:559.106667pt;}
.ycb{bottom:560.226667pt;}
.y56{bottom:565.826667pt;}
.y8f{bottom:569.693333pt;}
.y26{bottom:569.853333pt;}
.yf1{bottom:578.653333pt;}
.ye9{bottom:579.613333pt;}
.yca{bottom:580.413333pt;}
.y8e{bottom:582.493333pt;}
.y24{bottom:583.453333pt;}
.y55{bottom:586.333333pt;}
.y8d{bottom:598.493333pt;}
.y22{bottom:600.093333pt;}
.yc9{bottom:600.413333pt;}
.y54{bottom:606.653333pt;}
.y8b{bottom:614.493333pt;}
.y20{bottom:617.853333pt;}
.yc8{bottom:620.573333pt;}
.y53{bottom:627.133333pt;}
.y89{bottom:630.493333pt;}
.yc7{bottom:640.733333pt;}
.y1e{bottom:644.573333pt;}
.y88{bottom:646.653333pt;}
.y52{bottom:647.613333pt;}
.y1c{bottom:656.413333pt;}
.yc6{bottom:660.733333pt;}
.y87{bottom:662.653333pt;}
.y51{bottom:668.093333pt;}
.y1a{bottom:676.893333pt;}
.y86{bottom:678.653333pt;}
.yc5{bottom:680.893333pt;}
.y50{bottom:688.573333pt;}
.y17{bottom:691.933333pt;}
.y85{bottom:694.653333pt;}
.yc4{bottom:700.893333pt;}
.y4f{bottom:709.053333pt;}
.y84{bottom:710.653333pt;}
.yc3{bottom:721.053333pt;}
.y81{bottom:726.653333pt;}
.y4e{bottom:729.373333pt;}
.yc1{bottom:741.053333pt;}
.y83{bottom:743.613333pt;}
.y15{bottom:746.493333pt;}
.y4d{bottom:749.853333pt;}
.y12{bottom:759.453333pt;}
.ybc{bottom:761.213333pt;}
.y4c{bottom:770.333333pt;}
.ybe{bottom:782.333333pt;}
.y4b{bottom:790.853333pt;}
.y4a{bottom:811.333333pt;}
.ybb{bottom:813.093333pt;}
.y10{bottom:813.733333pt;}
.yd{bottom:825.893333pt;}
.y49{bottom:831.813333pt;}
.yba{bottom:833.573333pt;}
.yb9{bottom:846.373333pt;}
.y48{bottom:852.133333pt;}
.yb8{bottom:863.653333pt;}
.y47{bottom:872.613333pt;}
.yb7{bottom:881.093333pt;}
.y46{bottom:893.093333pt;}
.yb6{bottom:898.373333pt;}
.yc{bottom:900.773333pt;}
.y45{bottom:913.573333pt;}
.yb{bottom:915.653333pt;}
.yb5{bottom:915.813333pt;}
.y8{bottom:930.533333pt;}
.yb4{bottom:933.093333pt;}
.y44{bottom:934.053333pt;}
.y39{bottom:946.853333pt;}
.yb2{bottom:950.533333pt;}
.y43{bottom:954.533333pt;}
.yad{bottom:967.813333pt;}
.y42{bottom:974.853333pt;}
.yaf{bottom:987.653333pt;}
.y41{bottom:995.333333pt;}
.y40{bottom:1015.840000pt;}
.y1{bottom:1040.960000pt;}
.y3f{bottom:1060.160000pt;}
.y6{bottom:1062.880000pt;}
.hc{height:7.368437pt;}
.h1c{height:11.840000pt;}
.hf{height:12.146667pt;}
.h13{height:12.960000pt;}
.h23{height:13.600000pt;}
.h31{height:14.880000pt;}
.h33{height:15.026667pt;}
.h18{height:15.040000pt;}
.h34{height:15.058667pt;}
.h35{height:15.186667pt;}
.h30{height:15.200000pt;}
.h39{height:16.306667pt;}
.h37{height:16.466667pt;}
.h21{height:16.640000pt;}
.h42{height:17.106667pt;}
.h20{height:17.760000pt;}
.h38{height:17.906667pt;}
.h3{height:18.398667pt;}
.h5{height:18.560000pt;}
.h3f{height:19.026667pt;}
.h3c{height:19.040000pt;}
.h3b{height:19.060000pt;}
.h40{height:19.186667pt;}
.h3d{height:19.200000pt;}
.h3e{height:19.226667pt;}
.h1a{height:20.480000pt;}
.h16{height:22.223750pt;}
.h26{height:23.026667pt;}
.h27{height:25.907188pt;}
.h1e{height:26.720000pt;}
.h10{height:29.040312pt;}
.h17{height:29.592187pt;}
.h1d{height:29.856875pt;}
.h32{height:31.986667pt;}
.h2f{height:32.000000pt;}
.h14{height:32.788125pt;}
.h43{height:33.586667pt;}
.h41{height:35.506667pt;}
.h19{height:35.975313pt;}
.h2c{height:36.304688pt;}
.h36{height:36.306667pt;}
.h25{height:36.328125pt;}
.h2a{height:36.703125pt;}
.h2d{height:37.658750pt;}
.h3a{height:40.180000pt;}
.h2e{height:40.453125pt;}
.h12{height:43.343750pt;}
.h1b{height:43.781250pt;}
.h1f{height:44.562500pt;}
.h9{height:45.812500pt;}
.hb{height:48.406250pt;}
.h29{height:48.937500pt;}
.h2b{height:49.075000pt;}
.h6{height:50.712187pt;}
.h22{height:53.705000pt;}
.h11{height:54.260000pt;}
.h15{height:54.560000pt;}
.he{height:57.647187pt;}
.h2{height:62.812500pt;}
.h4{height:64.500000pt;}
.ha{height:69.750000pt;}
.hd{height:72.466667pt;}
.h7{height:75.465000pt;}
.h28{height:83.386667pt;}
.h8{height:96.026667pt;}
.h24{height:306.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.470667pt;}
.w19{width:60.000000pt;}
.w1b{width:65.952000pt;}
.w6{width:68.150667pt;}
.w1e{width:77.906667pt;}
.w1d{width:78.098667pt;}
.wf{width:99.670667pt;}
.w12{width:101.430667pt;}
.w5{width:110.226667pt;}
.w15{width:129.270667pt;}
.w1c{width:131.986667pt;}
.wd{width:158.266667pt;}
.w10{width:161.613333pt;}
.wc{width:180.177333pt;}
.w18{width:186.097333pt;}
.w13{width:205.813333pt;}
.w16{width:224.853333pt;}
.w17{width:246.893333pt;}
.we{width:261.613333pt;}
.w14{width:292.813333pt;}
.wa{width:295.213333pt;}
.w9{width:316.857333pt;}
.w11{width:338.786667pt;}
.w1a{width:353.986667pt;}
.wb{width:412.866667pt;}
.w4{width:490.480000pt;}
.w7{width:547.960000pt;}
.w3{width:558.480000pt;}
.w8{width:612.080000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:5.746667pt;}
.x9{left:7.190667pt;}
.x45{left:8.150667pt;}
.x5{left:9.590667pt;}
.x4c{left:12.160000pt;}
.x10{left:14.880000pt;}
.x3b{left:16.786667pt;}
.x1b{left:17.906667pt;}
.x2{left:26.710667pt;}
.x50{left:27.680000pt;}
.x4d{left:30.390667pt;}
.x4f{left:32.480000pt;}
.x26{left:33.910667pt;}
.x7{left:35.360000pt;}
.x33{left:36.946667pt;}
.x46{left:42.065333pt;}
.x2f{left:43.505333pt;}
.x30{left:44.625333pt;}
.x2e{left:46.225333pt;}
.x2b{left:47.185333pt;}
.x34{left:48.145333pt;}
.x3a{left:53.746667pt;}
.x18{left:55.520000pt;}
.x28{left:57.146667pt;}
.x43{left:58.385333pt;}
.x44{left:59.505333pt;}
.x1a{left:61.266667pt;}
.x4e{left:62.546667pt;}
.xd{left:65.586667pt;}
.x32{left:67.546667pt;}
.x22{left:72.480000pt;}
.x16{left:74.065333pt;}
.x20{left:75.520000pt;}
.x1d{left:76.640000pt;}
.x24{left:86.385333pt;}
.x1c{left:87.505333pt;}
.x8{left:89.001333pt;}
.xb{left:90.121333pt;}
.x11{left:93.600000pt;}
.x1{left:96.032000pt;}
.x35{left:96.986667pt;}
.x2a{left:99.866667pt;}
.x42{left:105.306667pt;}
.x3e{left:106.586667pt;}
.x3c{left:109.786667pt;}
.x40{left:111.866667pt;}
.x3f{left:112.986667pt;}
.x3d{left:115.226667pt;}
.x41{left:116.986667pt;}
.x23{left:119.386667pt;}
.x1f{left:120.346667pt;}
.x1e{left:122.746667pt;}
.x25{left:123.706667pt;}
.x21{left:124.826667pt;}
.x37{left:134.546667pt;}
.x36{left:135.506667pt;}
.x3{left:139.560000pt;}
.xa{left:157.160000pt;}
.x2c{left:158.746667pt;}
.x2d{left:162.746667pt;}
.x27{left:195.720000pt;}
.x31{left:197.480000pt;}
.x13{left:213.466667pt;}
.x38{left:225.320000pt;}
.x12{left:234.586667pt;}
.x17{left:276.226667pt;}
.x47{left:282.146667pt;}
.xf{left:289.666667pt;}
.x48{left:342.146667pt;}
.x29{left:357.346667pt;}
.x14{left:403.426667pt;}
.xc{left:406.986667pt;}
.x49{left:408.106667pt;}
.x15{left:411.293333pt;}
.x19{left:434.506667pt;}
.x39{left:450.186667pt;}
.x4a{left:540.106667pt;}
.x6{left:588.133333pt;}
.xe{left:604.732000pt;}
.x4b{left:618.213333pt;}
}




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