
    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_99594fd36aeb2c0a8ce07f10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.972656;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_658ff7a6f5f304bcbec23f59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_9d71f559e0b45147dacd0540.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_bf8995b62237e70b6099eae7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_16a99fa0ee86cf8b642ef27d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_faa2e85cf46b8b1ca619d0fc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0cfbcf186538fe3151b0649d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_b9ab68398b7d1515ab1b8968.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.049805;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_1ac77bfdd108a911c691e1f7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972656;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_c744a48edf307f9c46a2209c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v1{vertical-align:-77.040000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.738000px;}
.ls22{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.513600px;}
.ls21{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.259800px;}
.lsc{letter-spacing:-0.206400px;}
.ls25{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.051840px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.015120px;}
.ls23{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.106800px;}
.ls1c{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls15{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.269400px;}
.ls1e{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.466800px;}
.ls1f{letter-spacing:0.468000px;}
.ls13{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.620000px;}
.ls17{letter-spacing:2.340000px;}
.ls7{letter-spacing:6.660000px;}
.ls12{letter-spacing:15.066720px;}
.ls1a{letter-spacing:34.740000px;}
.ls18{letter-spacing:35.460000px;}
.lse{letter-spacing:44.562720px;}
.ls5{letter-spacing:49.140000px;}
.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;}
}
.ws14{word-spacing:-54.468000px;}
.ws13{word-spacing:-54.270000px;}
.ws12{word-spacing:-54.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.269240px;}
.wsa{word-spacing:-15.912000px;}
.wsc{word-spacing:-15.406800px;}
.ws4{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.093600px;}
.ws10{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.ws6{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.426400px;}
.ws15{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.680000px;}
.ws1d{word-spacing:-13.626000px;}
.ws19{word-spacing:-13.536000px;}
.ws17{word-spacing:-13.500000px;}
.ws1c{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.140000px;}
.ws1{word-spacing:-13.068000px;}
.ws18{word-spacing:-12.888000px;}
.ws1b{word-spacing:-12.762000px;}
.ws1f{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.329400px;}
.ws7{word-spacing:-11.340000px;}
.ws0{word-spacing:-10.064160px;}
.ws8{word-spacing:0.000000px;}
._14{margin-left:-3.824160px;}
._2{margin-left:-2.510160px;}
._1{margin-left:-1.043520px;}
._0{width:1.778880px;}
._9{width:2.899200px;}
._d{width:4.508160px;}
._4{width:6.323280px;}
._3{width:7.393920px;}
._10{width:8.587200px;}
._5{width:9.707040px;}
._12{width:10.816560px;}
._11{width:12.389280px;}
._f{width:13.688880px;}
._e{width:14.784960px;}
._13{width:16.103520px;}
._15{width:17.210880px;}
._c{width:18.734160px;}
._16{width:19.943040px;}
._a{width:20.956320px;}
._b{width:22.108320px;}
._7{width:23.894400px;}
._6{width:24.902880px;}
._8{width:26.269440px;}
._17{width:29.939040px;}
._18{width:31.613040px;}
._19{width:33.521280px;}
._1a{width:35.118000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fsc{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fsa{font-size:27.360000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:1.980000px;}
.y51{bottom:2.700000px;}
.y11b{bottom:2.880000px;}
.y122{bottom:3.060000px;}
.y3{bottom:4.320000px;}
.y2{bottom:6.480000px;}
.y4{bottom:7.020000px;}
.y53{bottom:12.240000px;}
.y14a{bottom:16.560000px;}
.y120{bottom:18.360000px;}
.y126{bottom:18.540000px;}
.y11f{bottom:33.840000px;}
.y125{bottom:34.020000px;}
.y8{bottom:47.880000px;}
.y11e{bottom:49.500000px;}
.y7{bottom:63.540000px;}
.y11d{bottom:65.025000px;}
.y6{bottom:87.840000px;}
.y14b{bottom:98.100000px;}
.y149{bottom:99.360000px;}
.y4f{bottom:101.700000px;}
.y9f{bottom:102.420000px;}
.y4e{bottom:118.980000px;}
.y9e{bottom:119.700000px;}
.y117{bottom:122.940000px;}
.y8c{bottom:127.980000px;}
.yd0{bottom:128.700000px;}
.yde{bottom:131.220000px;}
.y4d{bottom:136.260000px;}
.y9d{bottom:136.980000px;}
.y116{bottom:140.220000px;}
.y50{bottom:145.260000px;}
.ycf{bottom:145.980000px;}
.ydd{bottom:148.320000px;}
.y148{bottom:152.820000px;}
.y4c{bottom:153.360000px;}
.y9c{bottom:154.260000px;}
.y115{bottom:157.320000px;}
.y8b{bottom:162.540000px;}
.yce{bottom:163.260000px;}
.ydc{bottom:165.600000px;}
.y147{bottom:170.100000px;}
.y4b{bottom:170.640000px;}
.y9b{bottom:171.540000px;}
.y114{bottom:174.600000px;}
.y8a{bottom:179.640000px;}
.ycd{bottom:180.540000px;}
.ydb{bottom:182.880000px;}
.y146{bottom:187.410000px;}
.y4a{bottom:187.950000px;}
.y9a{bottom:188.670000px;}
.y113{bottom:191.910000px;}
.yd1{bottom:193.170000px;}
.y89{bottom:196.950000px;}
.ycc{bottom:197.670000px;}
.yda{bottom:200.190000px;}
.y49{bottom:204.330000px;}
.y145{bottom:204.690000px;}
.y99{bottom:205.950000px;}
.y112{bottom:209.190000px;}
.ycb{bottom:214.950000px;}
.yd9{bottom:217.470000px;}
.y48{bottom:217.650000px;}
.y88{bottom:218.730000px;}
.y144{bottom:221.970000px;}
.y98{bottom:223.230000px;}
.y111{bottom:226.470000px;}
.y47{bottom:230.610000px;}
.yca{bottom:232.230000px;}
.yd8{bottom:234.750000px;}
.y143{bottom:239.070000px;}
.y87{bottom:240.510000px;}
.y46{bottom:243.570000px;}
.y110{bottom:243.750000px;}
.yc9{bottom:249.510000px;}
.yd7{bottom:251.850000px;}
.y142{bottom:256.350000px;}
.y45{bottom:256.530000px;}
.y86{bottom:257.790000px;}
.y10f{bottom:260.850000px;}
.yc8{bottom:266.790000px;}
.yd6{bottom:269.130000px;}
.y44{bottom:269.490000px;}
.y141{bottom:273.630000px;}
.y85{bottom:275.070000px;}
.y10e{bottom:278.130000px;}
.y43{bottom:282.450000px;}
.yc7{bottom:284.070000px;}
.yd5{bottom:286.410000px;}
.y140{bottom:290.910000px;}
.y84{bottom:292.170000px;}
.y42{bottom:295.230000px;}
.y10d{bottom:295.410000px;}
.yc6{bottom:301.170000px;}
.yd4{bottom:303.690000px;}
.y41{bottom:308.190000px;}
.y83{bottom:309.450000px;}
.y10c{bottom:312.690000px;}
.yc5{bottom:318.450000px;}
.y40{bottom:321.150000px;}
.y13f{bottom:325.470000px;}
.y82{bottom:326.730000px;}
.y10b{bottom:329.970000px;}
.y3f{bottom:334.110000px;}
.yc4{bottom:335.730000px;}
.y13e{bottom:342.570000px;}
.y81{bottom:344.010000px;}
.y3e{bottom:347.070000px;}
.y10a{bottom:347.250000px;}
.yc3{bottom:353.010000px;}
.yd3{bottom:358.230000px;}
.y13d{bottom:359.850000px;}
.y3d{bottom:360.030000px;}
.y80{bottom:361.290000px;}
.y109{bottom:364.350000px;}
.yc2{bottom:370.290000px;}
.y3c{bottom:372.990000px;}
.y13c{bottom:377.130000px;}
.y7f{bottom:378.570000px;}
.y108{bottom:381.630000px;}
.y3b{bottom:384.870000px;}
.yc1{bottom:387.570000px;}
.y3a{bottom:393.690000px;}
.y13b{bottom:394.410000px;}
.y7e{bottom:395.670000px;}
.y107{bottom:398.910000px;}
.yc0{bottom:404.670000px;}
.y39{bottom:406.650000px;}
.y13a{bottom:411.690000px;}
.y7d{bottom:412.950000px;}
.y106{bottom:416.190000px;}
.y38{bottom:419.430000px;}
.ybf{bottom:421.950000px;}
.y139{bottom:429.015000px;}
.y7c{bottom:430.275000px;}
.y37{bottom:432.435000px;}
.y105{bottom:433.515000px;}
.ybe{bottom:439.275000px;}
.y36{bottom:445.395000px;}
.y138{bottom:446.115000px;}
.y7b{bottom:447.555000px;}
.y104{bottom:450.615000px;}
.ybd{bottom:456.555000px;}
.y35{bottom:458.355000px;}
.y137{bottom:463.395000px;}
.y7a{bottom:464.835000px;}
.y103{bottom:467.895000px;}
.y34{bottom:471.315000px;}
.ybc{bottom:473.835000px;}
.y136{bottom:480.675000px;}
.y79{bottom:481.935000px;}
.y33{bottom:484.275000px;}
.y102{bottom:485.175000px;}
.ybb{bottom:490.935000px;}
.y32{bottom:497.235000px;}
.y135{bottom:497.955000px;}
.y78{bottom:499.215000px;}
.y101{bottom:502.455000px;}
.yba{bottom:508.215000px;}
.y31{bottom:510.015000px;}
.y134{bottom:515.235000px;}
.y77{bottom:516.495000px;}
.y100{bottom:519.735000px;}
.y30{bottom:522.975000px;}
.yb9{bottom:525.495000px;}
.y133{bottom:532.335000px;}
.y76{bottom:533.775000px;}
.y2f{bottom:535.935000px;}
.yff{bottom:537.015000px;}
.yb8{bottom:542.775000px;}
.y2e{bottom:548.895000px;}
.y132{bottom:549.615000px;}
.y75{bottom:551.055000px;}
.yfe{bottom:554.115000px;}
.yb7{bottom:560.055000px;}
.y2d{bottom:561.855000px;}
.y131{bottom:566.895000px;}
.y74{bottom:568.335000px;}
.yfd{bottom:571.395000px;}
.y2c{bottom:577.155000px;}
.yb6{bottom:577.335000px;}
.y130{bottom:584.175000px;}
.y73{bottom:585.435000px;}
.y2b{bottom:590.115000px;}
.yb5{bottom:594.435000px;}
.y12f{bottom:601.455000px;}
.y72{bottom:602.715000px;}
.y2a{bottom:605.775000px;}
.yb4{bottom:611.715000px;}
.y29{bottom:618.555000px;}
.y12e{bottom:618.735000px;}
.y71{bottom:619.995000px;}
.yfc{bottom:626.115000px;}
.yb3{bottom:628.995000px;}
.y28{bottom:634.935000px;}
.y12d{bottom:635.835000px;}
.y70{bottom:637.275000px;}
.yb2{bottom:646.275000px;}
.y27{bottom:651.315000px;}
.y12c{bottom:653.115000px;}
.y6f{bottom:654.555000px;}
.yb1{bottom:663.555000px;}
.y26{bottom:667.725000px;}
.y12b{bottom:670.425000px;}
.y6e{bottom:671.865000px;}
.yb0{bottom:680.865000px;}
.yfb{bottom:681.045000px;}
.y25{bottom:684.105000px;}
.y12a{bottom:687.705000px;}
.y6d{bottom:688.965000px;}
.yaf{bottom:697.965000px;}
.yfa{bottom:698.145000px;}
.y24{bottom:699.765000px;}
.y129{bottom:704.985000px;}
.y6c{bottom:706.245000px;}
.y23{bottom:712.545000px;}
.yae{bottom:715.245000px;}
.yf9{bottom:715.425000px;}
.y128{bottom:722.265000px;}
.y6b{bottom:723.525000px;}
.y22{bottom:728.925000px;}
.yad{bottom:732.525000px;}
.yf8{bottom:732.705000px;}
.y127{bottom:739.365000px;}
.y6a{bottom:740.805000px;}
.y21{bottom:745.305000px;}
.yac{bottom:749.805000px;}
.yf7{bottom:749.985000px;}
.y124{bottom:753.405000px;}
.y69{bottom:758.085000px;}
.y20{bottom:761.685000px;}
.yab{bottom:767.085000px;}
.yf6{bottom:767.265000px;}
.y68{bottom:775.365000px;}
.y1f{bottom:778.065000px;}
.yaa{bottom:784.365000px;}
.yf5{bottom:784.545000px;}
.y67{bottom:792.465000px;}
.y1e{bottom:793.905000px;}
.ya9{bottom:801.465000px;}
.yf4{bottom:801.645000px;}
.y1d{bottom:808.305000px;}
.y66{bottom:809.745000px;}
.y123{bottom:815.505000px;}
.ya8{bottom:818.745000px;}
.yf3{bottom:818.925000px;}
.y1c{bottom:824.685000px;}
.y65{bottom:827.025000px;}
.y121{bottom:830.985000px;}
.ya7{bottom:836.025000px;}
.yf2{bottom:836.205000px;}
.y1b{bottom:841.065000px;}
.y64{bottom:844.305000px;}
.y11c{bottom:846.645000px;}
.ya6{bottom:853.305000px;}
.yf1{bottom:853.485000px;}
.y1a{bottom:857.445000px;}
.y63{bottom:861.585000px;}
.ya5{bottom:870.585000px;}
.yf0{bottom:870.765000px;}
.y19{bottom:873.825000px;}
.y62{bottom:878.685000px;}
.ya4{bottom:887.685000px;}
.yef{bottom:887.865000px;}
.y18{bottom:889.665000px;}
.y61{bottom:895.965000px;}
.y17{bottom:904.065000px;}
.ya3{bottom:904.965000px;}
.yee{bottom:905.145000px;}
.y60{bottom:913.290000px;}
.y16{bottom:920.490000px;}
.ya2{bottom:922.290000px;}
.yed{bottom:922.470000px;}
.y11a{bottom:924.270000px;}
.y5f{bottom:930.570000px;}
.y15{bottom:936.870000px;}
.ya1{bottom:939.570000px;}
.yec{bottom:939.750000px;}
.y119{bottom:942.630000px;}
.y97{bottom:947.850000px;}
.y5e{bottom:952.350000px;}
.y14{bottom:953.250000px;}
.ya0{bottom:956.850000px;}
.yeb{bottom:957.030000px;}
.y118{bottom:958.290000px;}
.y96{bottom:965.130000px;}
.y13{bottom:969.630000px;}
.y5d{bottom:974.130000px;}
.yea{bottom:974.310000px;}
.y95{bottom:982.230000px;}
.y12{bottom:985.470000px;}
.y5c{bottom:991.230000px;}
.ye9{bottom:991.410000px;}
.y94{bottom:999.510000px;}
.y11{bottom:1000.590000px;}
.yd2{bottom:1004.010000px;}
.y5b{bottom:1008.510000px;}
.ye8{bottom:1008.690000px;}
.y93{bottom:1016.790000px;}
.y10{bottom:1021.290000px;}
.y5a{bottom:1025.790000px;}
.ye7{bottom:1025.970000px;}
.y92{bottom:1034.070000px;}
.yf{bottom:1041.090000px;}
.y59{bottom:1043.070000px;}
.ye6{bottom:1043.250000px;}
.y91{bottom:1051.350000px;}
.ye{bottom:1057.650000px;}
.y58{bottom:1060.350000px;}
.ye5{bottom:1060.530000px;}
.y90{bottom:1068.630000px;}
.y57{bottom:1077.630000px;}
.ye4{bottom:1077.810000px;}
.y8f{bottom:1085.730000px;}
.y56{bottom:1094.730000px;}
.ye3{bottom:1094.910000px;}
.yd{bottom:1097.610000px;}
.y8e{bottom:1103.010000px;}
.yc{bottom:1112.010000px;}
.ye2{bottom:1112.190000px;}
.y8d{bottom:1124.790000px;}
.yb{bottom:1129.290000px;}
.ye1{bottom:1129.470000px;}
.ya{bottom:1146.570000px;}
.ye0{bottom:1146.750000px;}
.y9{bottom:1163.880000px;}
.ydf{bottom:1164.060000px;}
.y55{bottom:1187.820000px;}
.y5{bottom:1188.000000px;}
.y52{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h24{height:5.653125px;}
.h1e{height:15.480000px;}
.h21{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h19{height:20.520000px;}
.h8{height:21.600000px;}
.h16{height:26.852344px;}
.h5{height:27.210938px;}
.h1a{height:27.228516px;}
.h3{height:31.585078px;}
.h23{height:34.740000px;}
.h15{height:37.829531px;}
.h12{height:40.964766px;}
.h11{height:40.985156px;}
.h13{height:44.496211px;}
.h14{height:44.518359px;}
.h6{height:47.344922px;}
.he{height:48.616875px;}
.h1d{height:49.838906px;}
.h9{height:50.068125px;}
.h1f{height:52.971680px;}
.h4{height:52.998047px;}
.hd{height:54.421875px;}
.h10{height:55.796836px;}
.hf{height:55.824609px;}
.hb{height:58.651172px;}
.h1b{height:60.226875px;}
.h1c{height:61.423863px;}
.h22{height:62.100000px;}
.h17{height:65.556000px;}
.ha{height:65.884219px;}
.hc{height:72.562500px;}
.h20{height:77.616000px;}
.h18{height:282.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.240000px;}
.w7{width:61.920000px;}
.wd{width:84.960000px;}
.w3{width:157.350000px;}
.w8{width:228.990000px;}
.w4{width:253.110000px;}
.w2{width:269.850000px;}
.wa{width:434.415000px;}
.we{width:595.545000px;}
.wb{width:680.325000px;}
.wc{width:682.485000px;}
.w6{width:691.125000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.980000px;}
.x2c{left:5.220000px;}
.x2{left:8.100000px;}
.x1e{left:9.360000px;}
.x1b{left:18.900000px;}
.x4{left:36.180000px;}
.x6{left:50.040000px;}
.x27{left:55.074000px;}
.x2a{left:74.334000px;}
.x1a{left:100.296000px;}
.x1c{left:104.256000px;}
.x1{left:106.416000px;}
.x20{left:108.540000px;}
.x29{left:114.516000px;}
.x23{left:127.655987px;}
.x25{left:133.235987px;}
.xb{left:142.775987px;}
.x26{left:159.869987px;}
.x19{left:162.929987px;}
.x9{left:170.669987px;}
.x2b{left:199.470000px;}
.xc{left:235.109987px;}
.x21{left:284.070000px;}
.x22{left:330.879000px;}
.x1d{left:333.255000px;}
.x8{left:336.999000px;}
.xe{left:340.994987px;}
.x1f{left:354.495000px;}
.x3{left:376.275000px;}
.xf{left:409.754987px;}
.x24{left:418.574987px;}
.x13{left:431.354987px;}
.xd{left:441.614987px;}
.xa{left:446.474987px;}
.x5{left:533.625000px;}
.x15{left:568.544987px;}
.x12{left:600.584987px;}
.x16{left:605.084987px;}
.x10{left:606.524987px;}
.x17{left:613.724987px;}
.x14{left:634.244987px;}
.x11{left:651.704987px;}
.x18{left:667.544987px;}
.x7{left:786.749987px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.656000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.230933pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls25{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.046080pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.013440pt;}
.ls23{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls15{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.239467pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.414933pt;}
.ls1f{letter-spacing:0.416000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls7{letter-spacing:5.920000pt;}
.ls12{letter-spacing:13.392640pt;}
.ls1a{letter-spacing:30.880000pt;}
.ls18{letter-spacing:31.520000pt;}
.lse{letter-spacing:39.611307pt;}
.ls5{letter-spacing:43.680000pt;}
.ws14{word-spacing:-48.416000pt;}
.ws13{word-spacing:-48.240000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.461547pt;}
.wsa{word-spacing:-14.144000pt;}
.wsc{word-spacing:-13.694933pt;}
.ws4{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.416533pt;}
.ws10{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.823467pt;}
.ws15{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.160000pt;}
.ws1d{word-spacing:-12.112000pt;}
.ws19{word-spacing:-12.032000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws1c{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws1{word-spacing:-11.616000pt;}
.ws18{word-spacing:-11.456000pt;}
.ws1b{word-spacing:-11.344000pt;}
.ws1f{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.080000pt;}
.ws0{word-spacing:-8.945920pt;}
.ws8{word-spacing:0.000000pt;}
._14{margin-left:-3.399253pt;}
._2{margin-left:-2.231253pt;}
._1{margin-left:-0.927573pt;}
._0{width:1.581227pt;}
._9{width:2.577067pt;}
._d{width:4.007253pt;}
._4{width:5.620693pt;}
._3{width:6.572373pt;}
._10{width:7.633067pt;}
._5{width:8.628480pt;}
._12{width:9.614720pt;}
._11{width:11.012693pt;}
._f{width:12.167893pt;}
._e{width:13.142187pt;}
._13{width:14.314240pt;}
._15{width:15.298560pt;}
._c{width:16.652587pt;}
._16{width:17.727147pt;}
._a{width:18.627840pt;}
._b{width:19.651840pt;}
._7{width:21.239467pt;}
._6{width:22.135893pt;}
._8{width:23.350613pt;}
._17{width:26.612480pt;}
._18{width:28.100480pt;}
._19{width:29.796693pt;}
._1a{width:31.216000pt;}
.fsc{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fsa{font-size:24.320000pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:1.760000pt;}
.y51{bottom:2.400000pt;}
.y11b{bottom:2.560000pt;}
.y122{bottom:2.720000pt;}
.y3{bottom:3.840000pt;}
.y2{bottom:5.760000pt;}
.y4{bottom:6.240000pt;}
.y53{bottom:10.880000pt;}
.y14a{bottom:14.720000pt;}
.y120{bottom:16.320000pt;}
.y126{bottom:16.480000pt;}
.y11f{bottom:30.080000pt;}
.y125{bottom:30.240000pt;}
.y8{bottom:42.560000pt;}
.y11e{bottom:44.000000pt;}
.y7{bottom:56.480000pt;}
.y11d{bottom:57.800000pt;}
.y6{bottom:78.080000pt;}
.y14b{bottom:87.200000pt;}
.y149{bottom:88.320000pt;}
.y4f{bottom:90.400000pt;}
.y9f{bottom:91.040000pt;}
.y4e{bottom:105.760000pt;}
.y9e{bottom:106.400000pt;}
.y117{bottom:109.280000pt;}
.y8c{bottom:113.760000pt;}
.yd0{bottom:114.400000pt;}
.yde{bottom:116.640000pt;}
.y4d{bottom:121.120000pt;}
.y9d{bottom:121.760000pt;}
.y116{bottom:124.640000pt;}
.y50{bottom:129.120000pt;}
.ycf{bottom:129.760000pt;}
.ydd{bottom:131.840000pt;}
.y148{bottom:135.840000pt;}
.y4c{bottom:136.320000pt;}
.y9c{bottom:137.120000pt;}
.y115{bottom:139.840000pt;}
.y8b{bottom:144.480000pt;}
.yce{bottom:145.120000pt;}
.ydc{bottom:147.200000pt;}
.y147{bottom:151.200000pt;}
.y4b{bottom:151.680000pt;}
.y9b{bottom:152.480000pt;}
.y114{bottom:155.200000pt;}
.y8a{bottom:159.680000pt;}
.ycd{bottom:160.480000pt;}
.ydb{bottom:162.560000pt;}
.y146{bottom:166.586667pt;}
.y4a{bottom:167.066667pt;}
.y9a{bottom:167.706667pt;}
.y113{bottom:170.586667pt;}
.yd1{bottom:171.706667pt;}
.y89{bottom:175.066667pt;}
.ycc{bottom:175.706667pt;}
.yda{bottom:177.946667pt;}
.y49{bottom:181.626667pt;}
.y145{bottom:181.946667pt;}
.y99{bottom:183.066667pt;}
.y112{bottom:185.946667pt;}
.ycb{bottom:191.066667pt;}
.yd9{bottom:193.306667pt;}
.y48{bottom:193.466667pt;}
.y88{bottom:194.426667pt;}
.y144{bottom:197.306667pt;}
.y98{bottom:198.426667pt;}
.y111{bottom:201.306667pt;}
.y47{bottom:204.986667pt;}
.yca{bottom:206.426667pt;}
.yd8{bottom:208.666667pt;}
.y143{bottom:212.506667pt;}
.y87{bottom:213.786667pt;}
.y46{bottom:216.506667pt;}
.y110{bottom:216.666667pt;}
.yc9{bottom:221.786667pt;}
.yd7{bottom:223.866667pt;}
.y142{bottom:227.866667pt;}
.y45{bottom:228.026667pt;}
.y86{bottom:229.146667pt;}
.y10f{bottom:231.866667pt;}
.yc8{bottom:237.146667pt;}
.yd6{bottom:239.226667pt;}
.y44{bottom:239.546667pt;}
.y141{bottom:243.226667pt;}
.y85{bottom:244.506667pt;}
.y10e{bottom:247.226667pt;}
.y43{bottom:251.066667pt;}
.yc7{bottom:252.506667pt;}
.yd5{bottom:254.586667pt;}
.y140{bottom:258.586667pt;}
.y84{bottom:259.706667pt;}
.y42{bottom:262.426667pt;}
.y10d{bottom:262.586667pt;}
.yc6{bottom:267.706667pt;}
.yd4{bottom:269.946667pt;}
.y41{bottom:273.946667pt;}
.y83{bottom:275.066667pt;}
.y10c{bottom:277.946667pt;}
.yc5{bottom:283.066667pt;}
.y40{bottom:285.466667pt;}
.y13f{bottom:289.306667pt;}
.y82{bottom:290.426667pt;}
.y10b{bottom:293.306667pt;}
.y3f{bottom:296.986667pt;}
.yc4{bottom:298.426667pt;}
.y13e{bottom:304.506667pt;}
.y81{bottom:305.786667pt;}
.y3e{bottom:308.506667pt;}
.y10a{bottom:308.666667pt;}
.yc3{bottom:313.786667pt;}
.yd3{bottom:318.426667pt;}
.y13d{bottom:319.866667pt;}
.y3d{bottom:320.026667pt;}
.y80{bottom:321.146667pt;}
.y109{bottom:323.866667pt;}
.yc2{bottom:329.146667pt;}
.y3c{bottom:331.546667pt;}
.y13c{bottom:335.226667pt;}
.y7f{bottom:336.506667pt;}
.y108{bottom:339.226667pt;}
.y3b{bottom:342.106667pt;}
.yc1{bottom:344.506667pt;}
.y3a{bottom:349.946667pt;}
.y13b{bottom:350.586667pt;}
.y7e{bottom:351.706667pt;}
.y107{bottom:354.586667pt;}
.yc0{bottom:359.706667pt;}
.y39{bottom:361.466667pt;}
.y13a{bottom:365.946667pt;}
.y7d{bottom:367.066667pt;}
.y106{bottom:369.946667pt;}
.y38{bottom:372.826667pt;}
.ybf{bottom:375.066667pt;}
.y139{bottom:381.346667pt;}
.y7c{bottom:382.466667pt;}
.y37{bottom:384.386667pt;}
.y105{bottom:385.346667pt;}
.ybe{bottom:390.466667pt;}
.y36{bottom:395.906667pt;}
.y138{bottom:396.546667pt;}
.y7b{bottom:397.826667pt;}
.y104{bottom:400.546667pt;}
.ybd{bottom:405.826667pt;}
.y35{bottom:407.426667pt;}
.y137{bottom:411.906667pt;}
.y7a{bottom:413.186667pt;}
.y103{bottom:415.906667pt;}
.y34{bottom:418.946667pt;}
.ybc{bottom:421.186667pt;}
.y136{bottom:427.266667pt;}
.y79{bottom:428.386667pt;}
.y33{bottom:430.466667pt;}
.y102{bottom:431.266667pt;}
.ybb{bottom:436.386667pt;}
.y32{bottom:441.986667pt;}
.y135{bottom:442.626667pt;}
.y78{bottom:443.746667pt;}
.y101{bottom:446.626667pt;}
.yba{bottom:451.746667pt;}
.y31{bottom:453.346667pt;}
.y134{bottom:457.986667pt;}
.y77{bottom:459.106667pt;}
.y100{bottom:461.986667pt;}
.y30{bottom:464.866667pt;}
.yb9{bottom:467.106667pt;}
.y133{bottom:473.186667pt;}
.y76{bottom:474.466667pt;}
.y2f{bottom:476.386667pt;}
.yff{bottom:477.346667pt;}
.yb8{bottom:482.466667pt;}
.y2e{bottom:487.906667pt;}
.y132{bottom:488.546667pt;}
.y75{bottom:489.826667pt;}
.yfe{bottom:492.546667pt;}
.yb7{bottom:497.826667pt;}
.y2d{bottom:499.426667pt;}
.y131{bottom:503.906667pt;}
.y74{bottom:505.186667pt;}
.yfd{bottom:507.906667pt;}
.y2c{bottom:513.026667pt;}
.yb6{bottom:513.186667pt;}
.y130{bottom:519.266667pt;}
.y73{bottom:520.386667pt;}
.y2b{bottom:524.546667pt;}
.yb5{bottom:528.386667pt;}
.y12f{bottom:534.626667pt;}
.y72{bottom:535.746667pt;}
.y2a{bottom:538.466667pt;}
.yb4{bottom:543.746667pt;}
.y29{bottom:549.826667pt;}
.y12e{bottom:549.986667pt;}
.y71{bottom:551.106667pt;}
.yfc{bottom:556.546667pt;}
.yb3{bottom:559.106667pt;}
.y28{bottom:564.386667pt;}
.y12d{bottom:565.186667pt;}
.y70{bottom:566.466667pt;}
.yb2{bottom:574.466667pt;}
.y27{bottom:578.946667pt;}
.y12c{bottom:580.546667pt;}
.y6f{bottom:581.826667pt;}
.yb1{bottom:589.826667pt;}
.y26{bottom:593.533333pt;}
.y12b{bottom:595.933333pt;}
.y6e{bottom:597.213333pt;}
.yb0{bottom:605.213333pt;}
.yfb{bottom:605.373333pt;}
.y25{bottom:608.093333pt;}
.y12a{bottom:611.293333pt;}
.y6d{bottom:612.413333pt;}
.yaf{bottom:620.413333pt;}
.yfa{bottom:620.573333pt;}
.y24{bottom:622.013333pt;}
.y129{bottom:626.653333pt;}
.y6c{bottom:627.773333pt;}
.y23{bottom:633.373333pt;}
.yae{bottom:635.773333pt;}
.yf9{bottom:635.933333pt;}
.y128{bottom:642.013333pt;}
.y6b{bottom:643.133333pt;}
.y22{bottom:647.933333pt;}
.yad{bottom:651.133333pt;}
.yf8{bottom:651.293333pt;}
.y127{bottom:657.213333pt;}
.y6a{bottom:658.493333pt;}
.y21{bottom:662.493333pt;}
.yac{bottom:666.493333pt;}
.yf7{bottom:666.653333pt;}
.y124{bottom:669.693333pt;}
.y69{bottom:673.853333pt;}
.y20{bottom:677.053333pt;}
.yab{bottom:681.853333pt;}
.yf6{bottom:682.013333pt;}
.y68{bottom:689.213333pt;}
.y1f{bottom:691.613333pt;}
.yaa{bottom:697.213333pt;}
.yf5{bottom:697.373333pt;}
.y67{bottom:704.413333pt;}
.y1e{bottom:705.693333pt;}
.ya9{bottom:712.413333pt;}
.yf4{bottom:712.573333pt;}
.y1d{bottom:718.493333pt;}
.y66{bottom:719.773333pt;}
.y123{bottom:724.893333pt;}
.ya8{bottom:727.773333pt;}
.yf3{bottom:727.933333pt;}
.y1c{bottom:733.053333pt;}
.y65{bottom:735.133333pt;}
.y121{bottom:738.653333pt;}
.ya7{bottom:743.133333pt;}
.yf2{bottom:743.293333pt;}
.y1b{bottom:747.613333pt;}
.y64{bottom:750.493333pt;}
.y11c{bottom:752.573333pt;}
.ya6{bottom:758.493333pt;}
.yf1{bottom:758.653333pt;}
.y1a{bottom:762.173333pt;}
.y63{bottom:765.853333pt;}
.ya5{bottom:773.853333pt;}
.yf0{bottom:774.013333pt;}
.y19{bottom:776.733333pt;}
.y62{bottom:781.053333pt;}
.ya4{bottom:789.053333pt;}
.yef{bottom:789.213333pt;}
.y18{bottom:790.813333pt;}
.y61{bottom:796.413333pt;}
.y17{bottom:803.613333pt;}
.ya3{bottom:804.413333pt;}
.yee{bottom:804.573333pt;}
.y60{bottom:811.813333pt;}
.y16{bottom:818.213333pt;}
.ya2{bottom:819.813333pt;}
.yed{bottom:819.973333pt;}
.y11a{bottom:821.573333pt;}
.y5f{bottom:827.173333pt;}
.y15{bottom:832.773333pt;}
.ya1{bottom:835.173333pt;}
.yec{bottom:835.333333pt;}
.y119{bottom:837.893333pt;}
.y97{bottom:842.533333pt;}
.y5e{bottom:846.533333pt;}
.y14{bottom:847.333333pt;}
.ya0{bottom:850.533333pt;}
.yeb{bottom:850.693333pt;}
.y118{bottom:851.813333pt;}
.y96{bottom:857.893333pt;}
.y13{bottom:861.893333pt;}
.y5d{bottom:865.893333pt;}
.yea{bottom:866.053333pt;}
.y95{bottom:873.093333pt;}
.y12{bottom:875.973333pt;}
.y5c{bottom:881.093333pt;}
.ye9{bottom:881.253333pt;}
.y94{bottom:888.453333pt;}
.y11{bottom:889.413333pt;}
.yd2{bottom:892.453333pt;}
.y5b{bottom:896.453333pt;}
.ye8{bottom:896.613333pt;}
.y93{bottom:903.813333pt;}
.y10{bottom:907.813333pt;}
.y5a{bottom:911.813333pt;}
.ye7{bottom:911.973333pt;}
.y92{bottom:919.173333pt;}
.yf{bottom:925.413333pt;}
.y59{bottom:927.173333pt;}
.ye6{bottom:927.333333pt;}
.y91{bottom:934.533333pt;}
.ye{bottom:940.133333pt;}
.y58{bottom:942.533333pt;}
.ye5{bottom:942.693333pt;}
.y90{bottom:949.893333pt;}
.y57{bottom:957.893333pt;}
.ye4{bottom:958.053333pt;}
.y8f{bottom:965.093333pt;}
.y56{bottom:973.093333pt;}
.ye3{bottom:973.253333pt;}
.yd{bottom:975.653333pt;}
.y8e{bottom:980.453333pt;}
.yc{bottom:988.453333pt;}
.ye2{bottom:988.613333pt;}
.y8d{bottom:999.813333pt;}
.yb{bottom:1003.813333pt;}
.ye1{bottom:1003.973333pt;}
.ya{bottom:1019.173333pt;}
.ye0{bottom:1019.333333pt;}
.y9{bottom:1034.560000pt;}
.ydf{bottom:1034.720000pt;}
.y55{bottom:1055.840000pt;}
.y5{bottom:1056.000000pt;}
.y52{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h24{height:5.025000pt;}
.h1e{height:13.760000pt;}
.h21{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h19{height:18.240000pt;}
.h8{height:19.200000pt;}
.h16{height:23.868750pt;}
.h5{height:24.187500pt;}
.h1a{height:24.203125pt;}
.h3{height:28.075625pt;}
.h23{height:30.880000pt;}
.h15{height:33.626250pt;}
.h12{height:36.413125pt;}
.h11{height:36.431250pt;}
.h13{height:39.552188pt;}
.h14{height:39.571875pt;}
.h6{height:42.084375pt;}
.he{height:43.215000pt;}
.h1d{height:44.301250pt;}
.h9{height:44.505000pt;}
.h1f{height:47.085938pt;}
.h4{height:47.109375pt;}
.hd{height:48.375000pt;}
.h10{height:49.597187pt;}
.hf{height:49.621875pt;}
.hb{height:52.134375pt;}
.h1b{height:53.535000pt;}
.h1c{height:54.598989pt;}
.h22{height:55.200000pt;}
.h17{height:58.272000pt;}
.ha{height:58.563750pt;}
.hc{height:64.500000pt;}
.h20{height:68.992000pt;}
.h18{height:251.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.880000pt;}
.w7{width:55.040000pt;}
.wd{width:75.520000pt;}
.w3{width:139.866667pt;}
.w8{width:203.546667pt;}
.w4{width:224.986667pt;}
.w2{width:239.866667pt;}
.wa{width:386.146667pt;}
.we{width:529.373333pt;}
.wb{width:604.733333pt;}
.wc{width:606.653333pt;}
.w6{width:614.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:1.760000pt;}
.x2c{left:4.640000pt;}
.x2{left:7.200000pt;}
.x1e{left:8.320000pt;}
.x1b{left:16.800000pt;}
.x4{left:32.160000pt;}
.x6{left:44.480000pt;}
.x27{left:48.954667pt;}
.x2a{left:66.074667pt;}
.x1a{left:89.152000pt;}
.x1c{left:92.672000pt;}
.x1{left:94.592000pt;}
.x20{left:96.480000pt;}
.x29{left:101.792000pt;}
.x23{left:113.471988pt;}
.x25{left:118.431988pt;}
.xb{left:126.911988pt;}
.x26{left:142.106655pt;}
.x19{left:144.826655pt;}
.x9{left:151.706655pt;}
.x2b{left:177.306667pt;}
.xc{left:208.986655pt;}
.x21{left:252.506667pt;}
.x22{left:294.114667pt;}
.x1d{left:296.226667pt;}
.x8{left:299.554667pt;}
.xe{left:303.106655pt;}
.x1f{left:315.106667pt;}
.x3{left:334.466667pt;}
.xf{left:364.226655pt;}
.x24{left:372.066655pt;}
.x13{left:383.426655pt;}
.xd{left:392.546655pt;}
.xa{left:396.866655pt;}
.x5{left:474.333333pt;}
.x15{left:505.373322pt;}
.x12{left:533.853322pt;}
.x16{left:537.853322pt;}
.x10{left:539.133322pt;}
.x17{left:545.533322pt;}
.x14{left:563.773322pt;}
.x11{left:579.293322pt;}
.x18{left:593.373322pt;}
.x7{left:699.333322pt;}
}




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