
    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_4415476ae2d570fc39c3449b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_53d3b1d50218772138357a84.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_95ebd688f76b1f969f8e3fff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_6dfb854034a8632f22eaa74e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_766fc6eb6753801e44398104.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_425bbcbd82c66f9d634ecfda.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_1b0a4cf882c17e2a7c1cfc87.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919922;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_e79e907d81ecaef8c85c5330.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_8a43f2b015e72f6fa3234465.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031250;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_17056163a38b7fe2ececb122.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.031250;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_864e5bae64557c955c72c1d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_17b87ce82c6d17d5618a7b2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.983398;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_6193fc93719873dbca485474.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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;}
.m2{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-24.000000px;}
.v3{vertical-align:-21.000000px;}
.v7{vertical-align:-6.000000px;}
.v6{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.v4{vertical-align:36.000000px;}
.v5{vertical-align:43.500000px;}
.lsc{letter-spacing:-1.680000px;}
.ls18{letter-spacing:-1.500000px;}
.ls13{letter-spacing:-1.482000px;}
.ls17{letter-spacing:-1.320000px;}
.ls22{letter-spacing:-1.140000px;}
.ls19{letter-spacing:-0.810000px;}
.ls29{letter-spacing:-0.756000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls8{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.480000px;}
.ls27{letter-spacing:-0.420000px;}
.ls26{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.048000px;}
.ls12{letter-spacing:-0.024000px;}
.lsb{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.012000px;}
.lsa{letter-spacing:-0.006000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.024000px;}
.ls1c{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.192000px;}
.ls1e{letter-spacing:0.300000px;}
.lse{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.480000px;}
.ls20{letter-spacing:0.510000px;}
.ls2a{letter-spacing:0.582000px;}
.ls21{letter-spacing:0.642000px;}
.ls2c{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.744000px;}
.ls25{letter-spacing:0.798000px;}
.ls1f{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.882000px;}
.ls2b{letter-spacing:1.440000px;}
.ls5{letter-spacing:1.500000px;}
.ls10{letter-spacing:4.500000px;}
.ls16{letter-spacing:10.260000px;}
.ls1d{letter-spacing:13.260000px;}
.ls14{letter-spacing:21.300000px;}
.ls11{letter-spacing:75.000000px;}
.ls23{letter-spacing:1485.540000px;}
.ls28{letter-spacing:1497.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-60.000000px;}
.ws14{word-spacing:-40.500000px;}
.ws2{word-spacing:-27.024000px;}
.ws1{word-spacing:-27.000000px;}
.ws0{word-spacing:-26.952000px;}
.ws27{word-spacing:-16.500000px;}
.ws25{word-spacing:-15.660000px;}
.ws29{word-spacing:-15.480000px;}
.ws11{word-spacing:-15.360000px;}
.ws17{word-spacing:-15.180000px;}
.ws13{word-spacing:-15.000000px;}
.ws10{word-spacing:-14.820000px;}
.ws26{word-spacing:-14.640000px;}
.ws12{word-spacing:-14.520000px;}
.ws28{word-spacing:-14.340000px;}
.ws19{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.524000px;}
.wsb{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.512000px;}
.wsd{word-spacing:-13.506000px;}
.wse{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.494000px;}
.ws7{word-spacing:-13.488000px;}
.wsa{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.476000px;}
.wsf{word-spacing:-13.320000px;}
.ws1b{word-spacing:-13.200000px;}
.ws1e{word-spacing:-13.002000px;}
.ws21{word-spacing:-12.948000px;}
.ws24{word-spacing:-12.786000px;}
.ws22{word-spacing:-12.204000px;}
.ws18{word-spacing:-12.018000px;}
.ws3{word-spacing:-12.000000px;}
.ws1f{word-spacing:-11.826000px;}
.ws20{word-spacing:-11.784000px;}
.ws23{word-spacing:-11.448000px;}
.ws6{word-spacing:-10.500000px;}
.ws5{word-spacing:-9.852000px;}
.ws4{word-spacing:-9.750000px;}
.ws2a{word-spacing:-9.408000px;}
.ws1d{word-spacing:-9.240000px;}
.ws1c{word-spacing:-8.430000px;}
.ws15{word-spacing:0.000000px;}
._c{margin-left:-9.876000px;}
._14{margin-left:-8.250000px;}
._4{margin-left:-6.486000px;}
._3{margin-left:-5.310000px;}
._a{margin-left:-4.194000px;}
._1{margin-left:-3.000000px;}
._0{margin-left:-1.212000px;}
._2{width:1.020000px;}
._6{width:2.916000px;}
._5{width:4.566000px;}
._9{width:6.594000px;}
._8{width:8.364000px;}
._e{width:9.450000px;}
._7{width:10.476000px;}
._b{width:12.420000px;}
._13{width:13.992000px;}
._12{width:17.058000px;}
._17{width:18.732000px;}
._16{width:19.740000px;}
._11{width:24.786000px;}
._10{width:87.834000px;}
._d{width:198.000000px;}
._f{width:411.270000px;}
._15{width:822.276000px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs3{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:4.485000px;}
.y34{bottom:4.500000px;}
.y59{bottom:5.655000px;}
.y5b{bottom:7.500000px;}
.y5d{bottom:8.250000px;}
.y31{bottom:10.500000px;}
.y37{bottom:28.500000px;}
.y36{bottom:45.750000px;}
.y55{bottom:116.662500px;}
.yb9{bottom:127.537500px;}
.yd0{bottom:127.912500px;}
.yc3{bottom:134.662500px;}
.y8b{bottom:135.037500px;}
.yb8{bottom:144.037500px;}
.ycf{bottom:144.787500px;}
.yc2{bottom:150.795000px;}
.y8a{bottom:153.420000px;}
.yb7{bottom:160.545000px;}
.ydd{bottom:161.295000px;}
.yc1{bottom:167.295000px;}
.y89{bottom:168.405000px;}
.yce{bottom:169.545000px;}
.y88{bottom:179.700000px;}
.ycd{bottom:182.325000px;}
.yad{bottom:183.075000px;}
.yc0{bottom:183.825000px;}
.yac{bottom:188.700000px;}
.y87{bottom:198.825000px;}
.yab{bottom:204.825000px;}
.y86{bottom:217.200000px;}
.yaa{bottom:220.575000px;}
.y35{bottom:229.950000px;}
.y85{bottom:235.950000px;}
.y84{bottom:254.700000px;}
.y83{bottom:273.450000px;}
.y33{bottom:289.575000px;}
.y82{bottom:292.200000px;}
.y32{bottom:306.495000px;}
.y81{bottom:310.605000px;}
.y2f{bottom:323.370000px;}
.y80{bottom:329.370000px;}
.ydc{bottom:330.120000px;}
.y7f{bottom:347.370000px;}
.y2e{bottom:348.870000px;}
.y2d{bottom:359.745000px;}
.ydb{bottom:362.745000px;}
.y7e{bottom:366.495000px;}
.y2c{bottom:376.995000px;}
.yda{bottom:380.745000px;}
.y54{bottom:381.120000px;}
.y7d{bottom:384.855000px;}
.y2b{bottom:394.245000px;}
.yd9{bottom:399.120000px;}
.y53{bottom:399.495000px;}
.y7c{bottom:403.620000px;}
.y2a{bottom:411.495000px;}
.ycc{bottom:415.620000px;}
.yd8{bottom:417.120000px;}
.y52{bottom:418.245000px;}
.y7b{bottom:421.995000px;}
.y29{bottom:428.745000px;}
.yd7{bottom:433.650000px;}
.y51{bottom:436.650000px;}
.ybf{bottom:438.900000px;}
.yb6{bottom:439.650000px;}
.y7a{bottom:440.775000px;}
.y28{bottom:446.025000px;}
.yd6{bottom:450.150000px;}
.y50{bottom:455.400000px;}
.ycb{bottom:457.275000px;}
.y79{bottom:459.525000px;}
.y100{bottom:461.775000px;}
.y27{bottom:463.275000px;}
.ybe{bottom:464.025000px;}
.yd5{bottom:466.650000px;}
.yb5{bottom:471.150000px;}
.yca{bottom:473.775000px;}
.y4f{bottom:474.150000px;}
.y78{bottom:478.275000px;}
.yff{bottom:479.025000px;}
.y26{bottom:480.525000px;}
.ybd{bottom:482.025000px;}
.yb4{bottom:487.650000px;}
.y4e{bottom:492.525000px;}
.y77{bottom:496.275000px;}
.y25{bottom:497.775000px;}
.ybc{bottom:498.525000px;}
.yb3{bottom:504.150000px;}
.y4d{bottom:511.275000px;}
.yfe{bottom:513.525000px;}
.y24{bottom:515.025000px;}
.y76{bottom:515.400000px;}
.y4c{bottom:529.650000px;}
.yfd{bottom:530.775000px;}
.ybb{bottom:531.525000px;}
.y23{bottom:532.275000px;}
.y75{bottom:534.150000px;}
.yfc{bottom:548.025000px;}
.y4b{bottom:548.400000px;}
.y22{bottom:549.525000px;}
.y74{bottom:552.525000px;}
.yfb{bottom:565.320000px;}
.y21{bottom:566.820000px;}
.y4a{bottom:567.195000px;}
.y73{bottom:571.320000px;}
.yfa{bottom:582.570000px;}
.y20{bottom:584.070000px;}
.y49{bottom:585.945000px;}
.y72{bottom:589.320000px;}
.ya9{bottom:595.320000px;}
.yf9{bottom:599.820000px;}
.y1f{bottom:601.320000px;}
.y48{bottom:607.695000px;}
.y71{bottom:608.820000px;}
.ya8{bottom:612.945000px;}
.yf8{bottom:617.070000px;}
.y1e{bottom:618.570000px;}
.y47{bottom:626.820000px;}
.y70{bottom:627.195000px;}
.ya7{bottom:631.695000px;}
.yf7{bottom:634.320000px;}
.y1d{bottom:635.820000px;}
.y46{bottom:645.195000px;}
.y6f{bottom:645.945000px;}
.ya6{bottom:650.445000px;}
.yf6{bottom:651.570000px;}
.y1c{bottom:653.070000px;}
.y45{bottom:663.570000px;}
.y6e{bottom:664.320000px;}
.ya5{bottom:668.820000px;}
.y1b{bottom:670.320000px;}
.y44{bottom:681.195000px;}
.y6d{bottom:682.695000px;}
.yf5{bottom:686.070000px;}
.ya4{bottom:687.195000px;}
.y1a{bottom:687.570000px;}
.y43{bottom:699.600000px;}
.y6c{bottom:701.475000px;}
.yf4{bottom:703.350000px;}
.y19{bottom:704.850000px;}
.ya3{bottom:705.975000px;}
.y42{bottom:718.350000px;}
.y6b{bottom:720.225000px;}
.yf3{bottom:720.600000px;}
.y18{bottom:723.975000px;}
.ya2{bottom:724.725000px;}
.y41{bottom:735.600000px;}
.yf2{bottom:737.850000px;}
.y6a{bottom:738.600000px;}
.ya1{bottom:743.100000px;}
.y17{bottom:743.850000px;}
.y40{bottom:752.850000px;}
.yf1{bottom:755.100000px;}
.y69{bottom:757.350000px;}
.y16{bottom:761.850000px;}
.y3f{bottom:768.225000px;}
.yf0{bottom:772.350000px;}
.y68{bottom:775.725000px;}
.yd4{bottom:776.850000px;}
.y15{bottom:777.225000px;}
.yc9{bottom:777.600000px;}
.ya0{bottom:780.225000px;}
.y3c{bottom:780.600000px;}
.yb2{bottom:786.600000px;}
.yef{bottom:789.600000px;}
.y14{bottom:792.975000px;}
.y67{bottom:794.475000px;}
.y9f{bottom:798.600000px;}
.yb1{bottom:800.850000px;}
.yba{bottom:803.100000px;}
.yd3{bottom:805.725000px;}
.yee{bottom:806.850000px;}
.y13{bottom:808.350000px;}
.yc8{bottom:812.475000px;}
.y66{bottom:813.225000px;}
.y9e{bottom:817.020000px;}
.yd2{bottom:823.380000px;}
.y12{bottom:823.770000px;}
.yed{bottom:824.130000px;}
.y3d{bottom:824.880000px;}
.yc7{bottom:829.020000px;}
.y65{bottom:831.630000px;}
.y9d{bottom:832.770000px;}
.yb0{bottom:833.505000px;}
.y11{bottom:839.520000px;}
.yec{bottom:841.380000px;}
.y9c{bottom:843.630000px;}
.yc6{bottom:845.520000px;}
.y3e{bottom:845.880000px;}
.yaf{bottom:850.005000px;}
.y64{bottom:850.380000px;}
.y10{bottom:854.880000px;}
.yd1{bottom:856.005000px;}
.yeb{bottom:858.630000px;}
.yc5{bottom:862.005000px;}
.y9b{bottom:863.145000px;}
.yae{bottom:863.505000px;}
.y63{bottom:869.145000px;}
.yf{bottom:870.630000px;}
.yea{bottom:875.895000px;}
.yc4{bottom:877.005000px;}
.y9a{bottom:881.880000px;}
.ye{bottom:886.005000px;}
.y62{bottom:887.505000px;}
.ye9{bottom:893.130000px;}
.y99{bottom:900.255000px;}
.yd{bottom:901.380000px;}
.y61{bottom:906.630000px;}
.ye8{bottom:910.380000px;}
.yc{bottom:917.130000px;}
.y98{bottom:919.005000px;}
.y60{bottom:926.880000px;}
.ye7{bottom:927.630000px;}
.yb{bottom:932.505000px;}
.y97{bottom:937.755000px;}
.ye6{bottom:944.880000px;}
.ya{bottom:948.300000px;}
.y96{bottom:955.800000px;}
.y5f{bottom:962.925000px;}
.y9{bottom:964.425000px;}
.y95{bottom:974.175000px;}
.y8{bottom:982.800000px;}
.y5e{bottom:983.175000px;}
.y94{bottom:992.925000px;}
.ye5{bottom:1001.175000px;}
.y7{bottom:1005.300000px;}
.y5c{bottom:1009.800000px;}
.y93{bottom:1011.300000px;}
.ye4{bottom:1018.425000px;}
.y6{bottom:1019.925000px;}
.y92{bottom:1030.050000px;}
.ye3{bottom:1035.675000px;}
.y5a{bottom:1036.425000px;}
.y5{bottom:1039.050000px;}
.y3b{bottom:1045.050000px;}
.y91{bottom:1048.800000px;}
.ye2{bottom:1052.925000px;}
.y4{bottom:1061.550000px;}
.y3a{bottom:1062.300000px;}
.y90{bottom:1067.925000px;}
.y58{bottom:1069.050000px;}
.ye1{bottom:1070.175000px;}
.y3{bottom:1075.080000px;}
.y39{bottom:1079.580000px;}
.y8f{bottom:1086.330000px;}
.ye0{bottom:1087.455000px;}
.y38{bottom:1098.705000px;}
.y57{bottom:1099.830000px;}
.y2{bottom:1100.205000px;}
.y8e{bottom:1104.705000px;}
.y56{bottom:1113.330000px;}
.ydf{bottom:1121.955000px;}
.y8d{bottom:1123.830000px;}
.y1{bottom:1130.955000px;}
.yde{bottom:1139.955000px;}
.y8c{bottom:1142.205000px;}
.h1b{height:12.568359px;}
.hf{height:16.875000px;}
.h10{height:16.912500px;}
.h17{height:20.250000px;}
.hc{height:20.947266px;}
.hd{height:22.875000px;}
.h16{height:26.625000px;}
.h3{height:27.231445px;}
.h13{height:27.787500px;}
.h12{height:29.326172px;}
.h15{height:31.875000px;}
.h21{height:33.796875px;}
.h19{height:35.396484px;}
.h1f{height:36.210938px;}
.h9{height:37.705078px;}
.h7{height:38.100586px;}
.h14{height:40.664062px;}
.h6{height:41.645508px;}
.hb{height:41.894531px;}
.he{height:42.333984px;}
.h1c{height:43.453125px;}
.h22{height:43.681641px;}
.h4{height:43.857422px;}
.h8{height:46.567383px;}
.h23{height:48.231445px;}
.h20{height:48.281250px;}
.h1a{height:50.566406px;}
.ha{height:50.800781px;}
.h2{height:57.515625px;}
.h11{height:59.625000px;}
.h1e{height:59.677734px;}
.h5{height:65.645508px;}
.h18{height:71.396484px;}
.h1{height:76.201172px;}
.h1d{height:86.953125px;}
.h0{height:1263.000000px;}
.w7{width:17.250000px;}
.w5{width:77.662500px;}
.w2{width:102.412500px;}
.wb{width:119.287500px;}
.w9{width:147.825000px;}
.w6{width:176.700000px;}
.wa{width:179.325000px;}
.wc{width:196.245000px;}
.w8{width:237.120000px;}
.w4{width:327.525000px;}
.w3{width:581.895000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.125000px;}
.xd{left:3.000000px;}
.x16{left:4.125000px;}
.xb{left:11.250000px;}
.x14{left:14.295000px;}
.x11{left:25.110000px;}
.x26{left:29.287500px;}
.x1d{left:34.537500px;}
.x23{left:37.125000px;}
.x1f{left:38.250000px;}
.x13{left:43.875000px;}
.xf{left:46.920000px;}
.x27{left:64.530000px;}
.x25{left:69.030000px;}
.x22{left:70.155000px;}
.x8{left:74.287487px;}
.x24{left:79.530000px;}
.x35{left:83.287487px;}
.xa{left:105.412487px;}
.x4{left:108.037487px;}
.x2b{left:111.037487px;}
.x1c{left:121.162500px;}
.x29{left:124.162487px;}
.x3d{left:125.287487px;}
.x7{left:129.412487px;}
.x6{left:131.662487px;}
.x3f{left:132.824987px;}
.x3e{left:135.074987px;}
.x40{left:140.324987px;}
.x1{left:167.324987px;}
.x3{left:174.074987px;}
.x2a{left:207.074987px;}
.xc{left:210.825000px;}
.x5{left:261.119987px;}
.x1e{left:268.995000px;}
.x2{left:288.869987px;}
.x28{left:336.899987px;}
.x17{left:360.899987px;}
.x1b{left:384.524987px;}
.x2d{left:385.649987px;}
.x9{left:414.944987px;}
.x18{left:420.194987px;}
.x3c{left:423.194987px;}
.x2f{left:441.194987px;}
.x20{left:448.320000px;}
.x2c{left:471.194987px;}
.x2e{left:478.694987px;}
.x31{left:481.694987px;}
.x30{left:484.694987px;}
.x33{left:486.194987px;}
.x32{left:489.194987px;}
.x34{left:494.474987px;}
.x38{left:497.474987px;}
.x37{left:505.349987px;}
.x36{left:508.349987px;}
.x3a{left:510.599987px;}
.x39{left:513.599987px;}
.xe{left:538.350000px;}
.x15{left:555.600000px;}
.x21{left:567.600000px;}
.x3b{left:579.599987px;}
.x10{left:616.020000px;}
.x19{left:631.754987px;}
.x1a{left:782.579987px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v3{vertical-align:-18.666667pt;}
.v7{vertical-align:-5.333333pt;}
.v6{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.v4{vertical-align:32.000000pt;}
.v5{vertical-align:38.666667pt;}
.lsc{letter-spacing:-1.493333pt;}
.ls18{letter-spacing:-1.333333pt;}
.ls13{letter-spacing:-1.317333pt;}
.ls17{letter-spacing:-1.173333pt;}
.ls22{letter-spacing:-1.013333pt;}
.ls19{letter-spacing:-0.720000pt;}
.ls29{letter-spacing:-0.672000pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls8{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls27{letter-spacing:-0.373333pt;}
.ls26{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:-0.021333pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.010667pt;}
.lsa{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.021333pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.170667pt;}
.ls1e{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls20{letter-spacing:0.453333pt;}
.ls2a{letter-spacing:0.517333pt;}
.ls21{letter-spacing:0.570667pt;}
.ls2c{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.661333pt;}
.ls25{letter-spacing:0.709333pt;}
.ls1f{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.784000pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.333333pt;}
.ls10{letter-spacing:4.000000pt;}
.ls16{letter-spacing:9.120000pt;}
.ls1d{letter-spacing:11.786667pt;}
.ls14{letter-spacing:18.933333pt;}
.ls11{letter-spacing:66.666667pt;}
.ls23{letter-spacing:1320.480000pt;}
.ls28{letter-spacing:1331.146667pt;}
.ws1a{word-spacing:-53.333333pt;}
.ws14{word-spacing:-36.000000pt;}
.ws2{word-spacing:-24.021333pt;}
.ws1{word-spacing:-24.000000pt;}
.ws0{word-spacing:-23.957333pt;}
.ws27{word-spacing:-14.666667pt;}
.ws25{word-spacing:-13.920000pt;}
.ws29{word-spacing:-13.760000pt;}
.ws11{word-spacing:-13.653333pt;}
.ws17{word-spacing:-13.493333pt;}
.ws13{word-spacing:-13.333333pt;}
.ws10{word-spacing:-13.173333pt;}
.ws26{word-spacing:-13.013333pt;}
.ws12{word-spacing:-12.906667pt;}
.ws28{word-spacing:-12.746667pt;}
.ws19{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.021333pt;}
.wsb{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.010667pt;}
.wsd{word-spacing:-12.005333pt;}
.wse{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.994667pt;}
.ws7{word-spacing:-11.989333pt;}
.wsa{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.978667pt;}
.wsf{word-spacing:-11.840000pt;}
.ws1b{word-spacing:-11.733333pt;}
.ws1e{word-spacing:-11.557333pt;}
.ws21{word-spacing:-11.509333pt;}
.ws24{word-spacing:-11.365333pt;}
.ws22{word-spacing:-10.848000pt;}
.ws18{word-spacing:-10.682667pt;}
.ws3{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-10.512000pt;}
.ws20{word-spacing:-10.474667pt;}
.ws23{word-spacing:-10.176000pt;}
.ws6{word-spacing:-9.333333pt;}
.ws5{word-spacing:-8.757333pt;}
.ws4{word-spacing:-8.666667pt;}
.ws2a{word-spacing:-8.362667pt;}
.ws1d{word-spacing:-8.213333pt;}
.ws1c{word-spacing:-7.493333pt;}
.ws15{word-spacing:0.000000pt;}
._c{margin-left:-8.778667pt;}
._14{margin-left:-7.333333pt;}
._4{margin-left:-5.765333pt;}
._3{margin-left:-4.720000pt;}
._a{margin-left:-3.728000pt;}
._1{margin-left:-2.666667pt;}
._0{margin-left:-1.077333pt;}
._2{width:0.906667pt;}
._6{width:2.592000pt;}
._5{width:4.058667pt;}
._9{width:5.861333pt;}
._8{width:7.434667pt;}
._e{width:8.400000pt;}
._7{width:9.312000pt;}
._b{width:11.040000pt;}
._13{width:12.437333pt;}
._12{width:15.162667pt;}
._17{width:16.650667pt;}
._16{width:17.546667pt;}
._11{width:22.032000pt;}
._10{width:78.074667pt;}
._d{width:176.000000pt;}
._f{width:365.573333pt;}
._15{width:730.912000pt;}
.fs9{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs3{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.986667pt;}
.y34{bottom:4.000000pt;}
.y59{bottom:5.026667pt;}
.y5b{bottom:6.666667pt;}
.y5d{bottom:7.333333pt;}
.y31{bottom:9.333333pt;}
.y37{bottom:25.333333pt;}
.y36{bottom:40.666667pt;}
.y55{bottom:103.700000pt;}
.yb9{bottom:113.366667pt;}
.yd0{bottom:113.700000pt;}
.yc3{bottom:119.700000pt;}
.y8b{bottom:120.033333pt;}
.yb8{bottom:128.033333pt;}
.ycf{bottom:128.700000pt;}
.yc2{bottom:134.040000pt;}
.y8a{bottom:136.373333pt;}
.yb7{bottom:142.706667pt;}
.ydd{bottom:143.373333pt;}
.yc1{bottom:148.706667pt;}
.y89{bottom:149.693333pt;}
.yce{bottom:150.706667pt;}
.y88{bottom:159.733333pt;}
.ycd{bottom:162.066667pt;}
.yad{bottom:162.733333pt;}
.yc0{bottom:163.400000pt;}
.yac{bottom:167.733333pt;}
.y87{bottom:176.733333pt;}
.yab{bottom:182.066667pt;}
.y86{bottom:193.066667pt;}
.yaa{bottom:196.066667pt;}
.y35{bottom:204.400000pt;}
.y85{bottom:209.733333pt;}
.y84{bottom:226.400000pt;}
.y83{bottom:243.066667pt;}
.y33{bottom:257.400000pt;}
.y82{bottom:259.733333pt;}
.y32{bottom:272.440000pt;}
.y81{bottom:276.093333pt;}
.y2f{bottom:287.440000pt;}
.y80{bottom:292.773333pt;}
.ydc{bottom:293.440000pt;}
.y7f{bottom:308.773333pt;}
.y2e{bottom:310.106667pt;}
.y2d{bottom:319.773333pt;}
.ydb{bottom:322.440000pt;}
.y7e{bottom:325.773333pt;}
.y2c{bottom:335.106667pt;}
.yda{bottom:338.440000pt;}
.y54{bottom:338.773333pt;}
.y7d{bottom:342.093333pt;}
.y2b{bottom:350.440000pt;}
.yd9{bottom:354.773333pt;}
.y53{bottom:355.106667pt;}
.y7c{bottom:358.773333pt;}
.y2a{bottom:365.773333pt;}
.ycc{bottom:369.440000pt;}
.yd8{bottom:370.773333pt;}
.y52{bottom:371.773333pt;}
.y7b{bottom:375.106667pt;}
.y29{bottom:381.106667pt;}
.yd7{bottom:385.466667pt;}
.y51{bottom:388.133333pt;}
.ybf{bottom:390.133333pt;}
.yb6{bottom:390.800000pt;}
.y7a{bottom:391.800000pt;}
.y28{bottom:396.466667pt;}
.yd6{bottom:400.133333pt;}
.y50{bottom:404.800000pt;}
.ycb{bottom:406.466667pt;}
.y79{bottom:408.466667pt;}
.y100{bottom:410.466667pt;}
.y27{bottom:411.800000pt;}
.ybe{bottom:412.466667pt;}
.yd5{bottom:414.800000pt;}
.yb5{bottom:418.800000pt;}
.yca{bottom:421.133333pt;}
.y4f{bottom:421.466667pt;}
.y78{bottom:425.133333pt;}
.yff{bottom:425.800000pt;}
.y26{bottom:427.133333pt;}
.ybd{bottom:428.466667pt;}
.yb4{bottom:433.466667pt;}
.y4e{bottom:437.800000pt;}
.y77{bottom:441.133333pt;}
.y25{bottom:442.466667pt;}
.ybc{bottom:443.133333pt;}
.yb3{bottom:448.133333pt;}
.y4d{bottom:454.466667pt;}
.yfe{bottom:456.466667pt;}
.y24{bottom:457.800000pt;}
.y76{bottom:458.133333pt;}
.y4c{bottom:470.800000pt;}
.yfd{bottom:471.800000pt;}
.ybb{bottom:472.466667pt;}
.y23{bottom:473.133333pt;}
.y75{bottom:474.800000pt;}
.yfc{bottom:487.133333pt;}
.y4b{bottom:487.466667pt;}
.y22{bottom:488.466667pt;}
.y74{bottom:491.133333pt;}
.yfb{bottom:502.506667pt;}
.y21{bottom:503.840000pt;}
.y4a{bottom:504.173333pt;}
.y73{bottom:507.840000pt;}
.yfa{bottom:517.840000pt;}
.y20{bottom:519.173333pt;}
.y49{bottom:520.840000pt;}
.y72{bottom:523.840000pt;}
.ya9{bottom:529.173333pt;}
.yf9{bottom:533.173333pt;}
.y1f{bottom:534.506667pt;}
.y48{bottom:540.173333pt;}
.y71{bottom:541.173333pt;}
.ya8{bottom:544.840000pt;}
.yf8{bottom:548.506667pt;}
.y1e{bottom:549.840000pt;}
.y47{bottom:557.173333pt;}
.y70{bottom:557.506667pt;}
.ya7{bottom:561.506667pt;}
.yf7{bottom:563.840000pt;}
.y1d{bottom:565.173333pt;}
.y46{bottom:573.506667pt;}
.y6f{bottom:574.173333pt;}
.ya6{bottom:578.173333pt;}
.yf6{bottom:579.173333pt;}
.y1c{bottom:580.506667pt;}
.y45{bottom:589.840000pt;}
.y6e{bottom:590.506667pt;}
.ya5{bottom:594.506667pt;}
.y1b{bottom:595.840000pt;}
.y44{bottom:605.506667pt;}
.y6d{bottom:606.840000pt;}
.yf5{bottom:609.840000pt;}
.ya4{bottom:610.840000pt;}
.y1a{bottom:611.173333pt;}
.y43{bottom:621.866667pt;}
.y6c{bottom:623.533333pt;}
.yf4{bottom:625.200000pt;}
.y19{bottom:626.533333pt;}
.ya3{bottom:627.533333pt;}
.y42{bottom:638.533333pt;}
.y6b{bottom:640.200000pt;}
.yf3{bottom:640.533333pt;}
.y18{bottom:643.533333pt;}
.ya2{bottom:644.200000pt;}
.y41{bottom:653.866667pt;}
.yf2{bottom:655.866667pt;}
.y6a{bottom:656.533333pt;}
.ya1{bottom:660.533333pt;}
.y17{bottom:661.200000pt;}
.y40{bottom:669.200000pt;}
.yf1{bottom:671.200000pt;}
.y69{bottom:673.200000pt;}
.y16{bottom:677.200000pt;}
.y3f{bottom:682.866667pt;}
.yf0{bottom:686.533333pt;}
.y68{bottom:689.533333pt;}
.yd4{bottom:690.533333pt;}
.y15{bottom:690.866667pt;}
.yc9{bottom:691.200000pt;}
.ya0{bottom:693.533333pt;}
.y3c{bottom:693.866667pt;}
.yb2{bottom:699.200000pt;}
.yef{bottom:701.866667pt;}
.y14{bottom:704.866667pt;}
.y67{bottom:706.200000pt;}
.y9f{bottom:709.866667pt;}
.yb1{bottom:711.866667pt;}
.yba{bottom:713.866667pt;}
.yd3{bottom:716.200000pt;}
.yee{bottom:717.200000pt;}
.y13{bottom:718.533333pt;}
.yc8{bottom:722.200000pt;}
.y66{bottom:722.866667pt;}
.y9e{bottom:726.240000pt;}
.yd2{bottom:731.893333pt;}
.y12{bottom:732.240000pt;}
.yed{bottom:732.560000pt;}
.y3d{bottom:733.226667pt;}
.yc7{bottom:736.906667pt;}
.y65{bottom:739.226667pt;}
.y9d{bottom:740.240000pt;}
.yb0{bottom:740.893333pt;}
.y11{bottom:746.240000pt;}
.yec{bottom:747.893333pt;}
.y9c{bottom:749.893333pt;}
.yc6{bottom:751.573333pt;}
.y3e{bottom:751.893333pt;}
.yaf{bottom:755.560000pt;}
.y64{bottom:755.893333pt;}
.y10{bottom:759.893333pt;}
.yd1{bottom:760.893333pt;}
.yeb{bottom:763.226667pt;}
.yc5{bottom:766.226667pt;}
.y9b{bottom:767.240000pt;}
.yae{bottom:767.560000pt;}
.y63{bottom:772.573333pt;}
.yf{bottom:773.893333pt;}
.yea{bottom:778.573333pt;}
.yc4{bottom:779.560000pt;}
.y9a{bottom:783.893333pt;}
.ye{bottom:787.560000pt;}
.y62{bottom:788.893333pt;}
.ye9{bottom:793.893333pt;}
.y99{bottom:800.226667pt;}
.yd{bottom:801.226667pt;}
.y61{bottom:805.893333pt;}
.ye8{bottom:809.226667pt;}
.yc{bottom:815.226667pt;}
.y98{bottom:816.893333pt;}
.y60{bottom:823.893333pt;}
.ye7{bottom:824.560000pt;}
.yb{bottom:828.893333pt;}
.y97{bottom:833.560000pt;}
.ye6{bottom:839.893333pt;}
.ya{bottom:842.933333pt;}
.y96{bottom:849.600000pt;}
.y5f{bottom:855.933333pt;}
.y9{bottom:857.266667pt;}
.y95{bottom:865.933333pt;}
.y8{bottom:873.600000pt;}
.y5e{bottom:873.933333pt;}
.y94{bottom:882.600000pt;}
.ye5{bottom:889.933333pt;}
.y7{bottom:893.600000pt;}
.y5c{bottom:897.600000pt;}
.y93{bottom:898.933333pt;}
.ye4{bottom:905.266667pt;}
.y6{bottom:906.600000pt;}
.y92{bottom:915.600000pt;}
.ye3{bottom:920.600000pt;}
.y5a{bottom:921.266667pt;}
.y5{bottom:923.600000pt;}
.y3b{bottom:928.933333pt;}
.y91{bottom:932.266667pt;}
.ye2{bottom:935.933333pt;}
.y4{bottom:943.600000pt;}
.y3a{bottom:944.266667pt;}
.y90{bottom:949.266667pt;}
.y58{bottom:950.266667pt;}
.ye1{bottom:951.266667pt;}
.y3{bottom:955.626667pt;}
.y39{bottom:959.626667pt;}
.y8f{bottom:965.626667pt;}
.ye0{bottom:966.626667pt;}
.y38{bottom:976.626667pt;}
.y57{bottom:977.626667pt;}
.y2{bottom:977.960000pt;}
.y8e{bottom:981.960000pt;}
.y56{bottom:989.626667pt;}
.ydf{bottom:997.293333pt;}
.y8d{bottom:998.960000pt;}
.y1{bottom:1005.293333pt;}
.yde{bottom:1013.293333pt;}
.y8c{bottom:1015.293333pt;}
.h1b{height:11.171875pt;}
.hf{height:15.000000pt;}
.h10{height:15.033333pt;}
.h17{height:18.000000pt;}
.hc{height:18.619792pt;}
.hd{height:20.333333pt;}
.h16{height:23.666667pt;}
.h3{height:24.205729pt;}
.h13{height:24.700000pt;}
.h12{height:26.067708pt;}
.h15{height:28.333333pt;}
.h21{height:30.041667pt;}
.h19{height:31.463542pt;}
.h1f{height:32.187500pt;}
.h9{height:33.515625pt;}
.h7{height:33.867188pt;}
.h14{height:36.145833pt;}
.h6{height:37.018229pt;}
.hb{height:37.239583pt;}
.he{height:37.630208pt;}
.h1c{height:38.625000pt;}
.h22{height:38.828125pt;}
.h4{height:38.984375pt;}
.h8{height:41.393229pt;}
.h23{height:42.872396pt;}
.h20{height:42.916667pt;}
.h1a{height:44.947917pt;}
.ha{height:45.156250pt;}
.h2{height:51.125000pt;}
.h11{height:53.000000pt;}
.h1e{height:53.046875pt;}
.h5{height:58.351562pt;}
.h18{height:63.463542pt;}
.h1{height:67.734375pt;}
.h1d{height:77.291667pt;}
.h0{height:1122.666667pt;}
.w7{width:15.333333pt;}
.w5{width:69.033333pt;}
.w2{width:91.033333pt;}
.wb{width:106.033333pt;}
.w9{width:131.400000pt;}
.w6{width:157.066667pt;}
.wa{width:159.400000pt;}
.wc{width:174.440000pt;}
.w8{width:210.773333pt;}
.w4{width:291.133333pt;}
.w3{width:517.240000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.000000pt;}
.xd{left:2.666667pt;}
.x16{left:3.666667pt;}
.xb{left:10.000000pt;}
.x14{left:12.706667pt;}
.x11{left:22.320000pt;}
.x26{left:26.033333pt;}
.x1d{left:30.700000pt;}
.x23{left:33.000000pt;}
.x1f{left:34.000000pt;}
.x13{left:39.000000pt;}
.xf{left:41.706667pt;}
.x27{left:57.360000pt;}
.x25{left:61.360000pt;}
.x22{left:62.360000pt;}
.x8{left:66.033322pt;}
.x24{left:70.693333pt;}
.x35{left:74.033322pt;}
.xa{left:93.699988pt;}
.x4{left:96.033322pt;}
.x2b{left:98.699988pt;}
.x1c{left:107.700000pt;}
.x29{left:110.366655pt;}
.x3d{left:111.366655pt;}
.x7{left:115.033322pt;}
.x6{left:117.033322pt;}
.x3f{left:118.066655pt;}
.x3e{left:120.066655pt;}
.x40{left:124.733322pt;}
.x1{left:148.733322pt;}
.x3{left:154.733322pt;}
.x2a{left:184.066655pt;}
.xc{left:187.400000pt;}
.x5{left:232.106655pt;}
.x1e{left:239.106667pt;}
.x2{left:256.773322pt;}
.x28{left:299.466655pt;}
.x17{left:320.799988pt;}
.x1b{left:341.799988pt;}
.x2d{left:342.799988pt;}
.x9{left:368.839988pt;}
.x18{left:373.506655pt;}
.x3c{left:376.173322pt;}
.x2f{left:392.173322pt;}
.x20{left:398.506667pt;}
.x2c{left:418.839988pt;}
.x2e{left:425.506655pt;}
.x31{left:428.173322pt;}
.x30{left:430.839988pt;}
.x33{left:432.173322pt;}
.x32{left:434.839988pt;}
.x34{left:439.533322pt;}
.x38{left:442.199988pt;}
.x37{left:449.199988pt;}
.x36{left:451.866655pt;}
.x3a{left:453.866655pt;}
.x39{left:456.533322pt;}
.xe{left:478.533333pt;}
.x15{left:493.866667pt;}
.x21{left:504.533333pt;}
.x3b{left:515.199988pt;}
.x10{left:547.573333pt;}
.x19{left:561.559988pt;}
.x1a{left:695.626655pt;}
}




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