
    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_db653e2d0e1f6a4140d0aa09.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_b36679b925f6cb8d52ca82af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_f7b9e04f239d2ee06934d462.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5393ef23bcdfdd65d511b444.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_46cc24bb15a2f43eb526f8f8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_40ef26bc373ad508e1d7401d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_95972bb463425ad8ee826463.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_4908a9054d77d0221ab021da.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m2{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236842,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:-84.960000px;}
.v1{vertical-align:-83.520000px;}
.v3{vertical-align:-80.640000px;}
.v7{vertical-align:-70.536000px;}
.v6{vertical-align:-49.680000px;}
.v5{vertical-align:-21.024000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.864000px;}
.ls2d{letter-spacing:-0.792000px;}
.ls35{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.666000px;}
.ls28{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.011640px;}
.ls31{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.480000px;}
.ls39{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.648000px;}
.ls16{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.834000px;}
.ls2c{letter-spacing:0.864000px;}
.ls20{letter-spacing:2.340000px;}
.ls29{letter-spacing:6.520735px;}
.ls27{letter-spacing:7.200000px;}
.ls1e{letter-spacing:7.920000px;}
.ls1f{letter-spacing:8.640000px;}
.ls1c{letter-spacing:10.080000px;}
.ls3b{letter-spacing:10.620000px;}
.lsf{letter-spacing:11.520000px;}
.ls1b{letter-spacing:12.240000px;}
.ls3a{letter-spacing:12.960000px;}
.ls3c{letter-spacing:13.680000px;}
.ls38{letter-spacing:14.400000px;}
.ls30{letter-spacing:17.280000px;}
.ls36{letter-spacing:18.000000px;}
.ls26{letter-spacing:24.480000px;}
.ls10{letter-spacing:25.380000px;}
.ls37{letter-spacing:26.640000px;}
.ls12{letter-spacing:32.400000px;}
.lsc{letter-spacing:33.960000px;}
.lse{letter-spacing:34.704000px;}
.ls1{letter-spacing:232.356000px;}
.ls0{letter-spacing:408.216000px;}
.ls5{letter-spacing:930.396000px;}
.ls3{letter-spacing:1074.396000px;}
.ls7{letter-spacing:1186.836000px;}
.ls6{letter-spacing:1236.516000px;}
.ls4{letter-spacing:1240.116000px;}
.ls2{letter-spacing:1240.836000px;}
.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;}
}
.ws1b{word-spacing:-18.864000px;}
.ws14{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.648000px;}
.ws20{word-spacing:-18.576000px;}
.ws10{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws1a{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws21{word-spacing:-17.280000px;}
.ws1c{word-spacing:-17.208000px;}
.ws0{word-spacing:-17.136000px;}
.wsf{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.046800px;}
.ws1e{word-spacing:-14.993280px;}
.ws1d{word-spacing:-14.951640px;}
.ws11{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws1f{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.274000px;}
.ws18{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.700000px;}
.wsc{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-15.420000px;}
._9{margin-left:-12.948000px;}
._6{margin-left:-11.052000px;}
._8{margin-left:-9.564000px;}
._5{margin-left:-8.352000px;}
._2{margin-left:-7.272000px;}
._20{margin-left:-5.784000px;}
._4{margin-left:-4.560000px;}
._1{margin-left:-3.156000px;}
._0{margin-left:-1.656000px;}
._3{width:1.080000px;}
._d{width:2.664000px;}
._e{width:3.672000px;}
._b{width:5.040000px;}
._c{width:6.408000px;}
._12{width:8.280000px;}
._11{width:10.008000px;}
._18{width:11.184000px;}
._1b{width:12.528000px;}
._a{width:13.536000px;}
._14{width:15.120000px;}
._1c{width:16.128000px;}
._13{width:19.596000px;}
._19{width:20.928000px;}
._1a{width:22.032000px;}
._1d{width:23.304000px;}
._10{width:25.140000px;}
._f{width:26.544000px;}
._1f{width:28.092000px;}
._21{width:29.856000px;}
._1e{width:31.260000px;}
._15{width:32.376000px;}
._16{width:34.032000px;}
._17{width:35.412000px;}
._22{width:36.528000px;}
._26{width:37.848000px;}
._27{width:38.916000px;}
._25{width:164.568000px;}
._23{width:209.964000px;}
._24{width:211.056000px;}
.fc2{color:rgb(70,120,133);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.240000px;}
.fsa{font-size:33.120000px;}
.fs4{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs8{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fsf{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fsd{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:74.880000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ycd{bottom:4.860000px;}
.y2{bottom:5.400000px;}
.ycc{bottom:10.080000px;}
.y1{bottom:72.180000px;}
.y3{bottom:78.660000px;}
.yce{bottom:103.500000px;}
.ycb{bottom:105.660000px;}
.y9a{bottom:112.860000px;}
.yb3{bottom:114.120000px;}
.yd8{bottom:118.260000px;}
.y49{bottom:118.440000px;}
.y68{bottom:118.620000px;}
.yb2{bottom:119.340000px;}
.yf8{bottom:119.880000px;}
.ya7{bottom:123.660000px;}
.yd2{bottom:129.060000px;}
.y88{bottom:130.140000px;}
.yb1{bottom:132.300000px;}
.yf1{bottom:134.460000px;}
.y99{bottom:135.396000px;}
.ybc{bottom:135.576000px;}
.y48{bottom:135.756000px;}
.yb0{bottom:137.556000px;}
.yb9{bottom:142.776000px;}
.yd7{bottom:142.956000px;}
.y87{bottom:147.456000px;}
.y67{bottom:152.670000px;}
.ya6{bottom:154.830000px;}
.y47{bottom:158.610000px;}
.yaf{bottom:161.130000px;}
.yd1{bottom:164.010000px;}
.y22{bottom:164.550000px;}
.yf0{bottom:165.450000px;}
.yb8{bottom:166.710000px;}
.ydb{bottom:166.890000px;}
.y66{bottom:169.950000px;}
.y46{bottom:171.390000px;}
.yf7{bottom:171.570000px;}
.yd6{bottom:173.910000px;}
.y93{bottom:175.530000px;}
.yae{bottom:176.430000px;}
.ye9{bottom:177.330000px;}
.yca{bottom:177.510000px;}
.y98{bottom:182.010000px;}
.yd0{bottom:183.450000px;}
.ya5{bottom:185.790000px;}
.yc6{bottom:187.230000px;}
.y45{bottom:188.670000px;}
.ybb{bottom:193.170000px;}
.y65{bottom:193.710000px;}
.yd4{bottom:194.430000px;}
.y86{bottom:195.330000px;}
.yc9{bottom:197.130000px;}
.y92{bottom:197.850000px;}
.ycf{bottom:200.550000px;}
.y97{bottom:204.510000px;}
.yad{bottom:204.870000px;}
.y21{bottom:207.750000px;}
.ye8{bottom:208.470000px;}
.yc5{bottom:211.890000px;}
.ye1{bottom:212.070000px;}
.yd3{bottom:212.790000px;}
.yc8{bottom:214.410000px;}
.y44{bottom:216.930000px;}
.y91{bottom:228.810000px;}
.y85{bottom:228.990000px;}
.y96{bottom:229.350000px;}
.yc7{bottom:231.690000px;}
.yac{bottom:235.830000px;}
.y64{bottom:236.010000px;}
.yc4{bottom:241.050000px;}
.ya4{bottom:247.890000px;}
.y43{bottom:248.070000px;}
.y20{bottom:250.770000px;}
.y84{bottom:259.950000px;}
.ye7{bottom:260.490000px;}
.ye0{bottom:263.910000px;}
.y63{bottom:266.970000px;}
.yc3{bottom:272.190000px;}
.y42{bottom:279.030000px;}
.y90{bottom:290.910000px;}
.y83{bottom:291.090000px;}
.y1f{bottom:293.610000px;}
.y110{bottom:296.850000px;}
.yab{bottom:297.930000px;}
.y62{bottom:298.110000px;}
.yc2{bottom:303.150000px;}
.ya3{bottom:309.990000px;}
.y41{bottom:310.170000px;}
.y82{bottom:322.050000px;}
.y61{bottom:329.070000px;}
.yc1{bottom:334.290000px;}
.y1e{bottom:336.810000px;}
.y10f{bottom:339.870000px;}
.y40{bottom:341.130000px;}
.y8f{bottom:353.010000px;}
.y81{bottom:353.190000px;}
.yaa{bottom:360.030000px;}
.y60{bottom:360.210000px;}
.yc0{bottom:365.250000px;}
.ya2{bottom:372.090000px;}
.y3f{bottom:372.270000px;}
.y1d{bottom:379.110000px;}
.yd5{bottom:381.090000px;}
.y80{bottom:384.150000px;}
.y5f{bottom:391.215000px;}
.y10e{bottom:391.935000px;}
.ybf{bottom:396.435000px;}
.y1c{bottom:398.775000px;}
.yba{bottom:403.095000px;}
.y3e{bottom:403.275000px;}
.y10d{bottom:414.075000px;}
.y8e{bottom:415.155000px;}
.y7f{bottom:415.335000px;}
.y1b{bottom:421.095000px;}
.y5e{bottom:422.175000px;}
.ybe{bottom:427.395000px;}
.y3d{bottom:434.235000px;}
.y1a{bottom:443.595000px;}
.y7e{bottom:446.295000px;}
.ya9{bottom:453.135000px;}
.y10c{bottom:457.095000px;}
.ybd{bottom:458.535000px;}
.y3c{bottom:465.375000px;}
.y5d{bottom:465.555000px;}
.y19{bottom:465.915000px;}
.y95{bottom:477.255000px;}
.y7d{bottom:477.435000px;}
.y10b{bottom:488.055000px;}
.y8d{bottom:489.495000px;}
.y3b{bottom:496.335000px;}
.y5c{bottom:496.515000px;}
.y7c{bottom:508.395000px;}
.y18{bottom:509.475000px;}
.y8c{bottom:520.635000px;}
.y3a{bottom:527.475000px;}
.y5b{bottom:527.655000px;}
.y10a{bottom:531.075000px;}
.y17{bottom:533.775000px;}
.y94{bottom:539.355000px;}
.y7b{bottom:539.535000px;}
.y8b{bottom:551.595000px;}
.y16{bottom:556.095000px;}
.y39{bottom:558.435000px;}
.y5a{bottom:558.615000px;}
.y109{bottom:562.215000px;}
.y7a{bottom:570.495000px;}
.y15{bottom:578.595000px;}
.y8a{bottom:582.735000px;}
.yfd{bottom:584.355000px;}
.ya1{bottom:589.395000px;}
.y38{bottom:589.575000px;}
.y59{bottom:589.755000px;}
.y108{bottom:593.175000px;}
.y14{bottom:601.095000px;}
.y79{bottom:601.455000px;}
.yda{bottom:601.635000px;}
.y89{bottom:613.695000px;}
.yfc{bottom:615.495000px;}
.y37{bottom:620.535000px;}
.y58{bottom:620.715000px;}
.y13{bottom:623.415000px;}
.ya0{bottom:632.595000px;}
.ydf{bottom:638.355000px;}
.y78{bottom:644.865000px;}
.y107{bottom:645.045000px;}
.yfb{bottom:646.485000px;}
.y36{bottom:651.705000px;}
.y57{bottom:651.885000px;}
.ye6{bottom:656.745000px;}
.yde{bottom:660.165000px;}
.yb7{bottom:663.585000px;}
.y9f{bottom:663.765000px;}
.y106{bottom:665.745000px;}
.ya8{bottom:672.585000px;}
.yfa{bottom:672.945000px;}
.y77{bottom:675.825000px;}
.yf6{bottom:677.265000px;}
.ye5{bottom:678.525000px;}
.y35{bottom:682.665000px;}
.y56{bottom:682.845000px;}
.yf9{bottom:686.445000px;}
.ydd{bottom:690.945000px;}
.y9e{bottom:694.725000px;}
.yf5{bottom:698.865000px;}
.y76{bottom:706.965000px;}
.y105{bottom:708.765000px;}
.ye4{bottom:709.485000px;}
.y34{bottom:713.805000px;}
.y55{bottom:713.985000px;}
.yef{bottom:724.605000px;}
.yb6{bottom:725.685000px;}
.y9d{bottom:725.865000px;}
.yf4{bottom:730.005000px;}
.ye3{bottom:735.585000px;}
.y75{bottom:737.925000px;}
.y104{bottom:739.725000px;}
.y33{bottom:744.765000px;}
.y54{bottom:744.945000px;}
.yee{bottom:746.385000px;}
.ye2{bottom:747.465000px;}
.y9c{bottom:756.825000px;}
.yf3{bottom:760.965000px;}
.y74{bottom:769.065000px;}
.y32{bottom:775.725000px;}
.y53{bottom:776.085000px;}
.yed{bottom:777.525000px;}
.y103{bottom:782.925000px;}
.yb5{bottom:787.785000px;}
.y9b{bottom:787.965000px;}
.y73{bottom:800.025000px;}
.yf2{bottom:802.365000px;}
.y52{bottom:807.045000px;}
.yec{bottom:808.485000px;}
.y102{bottom:814.065000px;}
.yb4{bottom:818.745000px;}
.y31{bottom:818.925000px;}
.y12{bottom:825.045000px;}
.y72{bottom:830.985000px;}
.yeb{bottom:834.585000px;}
.y11{bottom:837.285000px;}
.y51{bottom:838.185000px;}
.yea{bottom:846.285000px;}
.y30{bottom:849.885000px;}
.y10{bottom:854.565000px;}
.y101{bottom:857.085000px;}
.y71{bottom:862.125000px;}
.y50{bottom:869.145000px;}
.yf{bottom:871.845000px;}
.y28{bottom:876.165000px;}
.y2f{bottom:881.025000px;}
.y100{bottom:888.225000px;}
.ye{bottom:889.125000px;}
.y70{bottom:893.130000px;}
.y4f{bottom:900.330000px;}
.yd{bottom:906.450000px;}
.y2e{bottom:912.030000px;}
.y27{bottom:919.230000px;}
.yc{bottom:923.550000px;}
.y6f{bottom:924.270000px;}
.y4e{bottom:931.290000px;}
.yb{bottom:940.830000px;}
.yd9{bottom:942.990000px;}
.y2d{bottom:943.170000px;}
.y6e{bottom:955.230000px;}
.ya{bottom:958.110000px;}
.yff{bottom:962.070000px;}
.y26{bottom:962.250000px;}
.y4d{bottom:962.430000px;}
.y2c{bottom:974.130000px;}
.y9{bottom:975.390000px;}
.y6d{bottom:986.370000px;}
.y8{bottom:992.670000px;}
.yfe{bottom:993.030000px;}
.y4c{bottom:993.390000px;}
.y2b{bottom:1005.090000px;}
.y25{bottom:1005.270000px;}
.y6c{bottom:1017.330000px;}
.y7{bottom:1031.550000px;}
.y24{bottom:1036.230000px;}
.y4b{bottom:1045.410000px;}
.y6b{bottom:1048.470000px;}
.y6{bottom:1053.690000px;}
.y2a{bottom:1067.190000px;}
.y23{bottom:1067.370000px;}
.y6a{bottom:1079.430000px;}
.y5{bottom:1098.330000px;}
.y4a{bottom:1110.390000px;}
.y69{bottom:1110.570000px;}
.y29{bottom:1119.210000px;}
.ydc{bottom:1121.550000px;}
.y4{bottom:1141.530000px;}
.h1c{height:19.980000px;}
.h2{height:22.860000px;}
.h18{height:28.666406px;}
.h1f{height:29.678906px;}
.h14{height:32.505469px;}
.h10{height:38.158594px;}
.h8{height:39.183750px;}
.h1a{height:40.985156px;}
.h19{height:44.061328px;}
.h11{height:44.518359px;}
.h17{height:47.344922px;}
.h20{height:52.998047px;}
.h4{height:58.651172px;}
.h7{height:60.226875px;}
.h1b{height:62.184375px;}
.hb{height:63.855000px;}
.h1d{height:65.010937px;}
.h1e{height:66.757500px;}
.h15{height:67.837500px;}
.h3{height:70.664062px;}
.hd{height:72.562500px;}
.h6{height:73.490625px;}
.h21{height:74.004654px;}
.hf{height:74.704922px;}
.h16{height:74.824922px;}
.h13{height:74.884922px;}
.he{height:74.953125px;}
.hc{height:75.465000px;}
.h5{height:76.317188px;}
.h9{height:78.367500px;}
.h12{height:79.850391px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:11.916000px;}
.w2{width:18.036000px;}
.w5{width:27.036000px;}
.w6{width:190.830000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xb{left:1.470000px;}
.x2{left:4.530000px;}
.x12{left:10.980000px;}
.x13{left:15.120000px;}
.x3{left:120.095987px;}
.x11{left:126.216000px;}
.x7{left:127.835987px;}
.xd{left:137.375987px;}
.xe{left:141.515987px;}
.x9{left:154.649987px;}
.x14{left:187.779000px;}
.x10{left:210.089987px;}
.x5{left:214.049987px;}
.x1a{left:301.394987px;}
.xf{left:314.714987px;}
.x4{left:324.974987px;}
.x15{left:348.554987px;}
.x8{left:409.394987px;}
.x6{left:427.784987px;}
.x19{left:488.264987px;}
.x16{left:637.889987px;}
.x18{left:651.029987px;}
.x17{left:721.769987px;}
.xc{left:743.190000px;}
.x1{left:752.190000px;}
.xa{left:755.250000px;}
@media print{
.v2{vertical-align:-75.520000pt;}
.v1{vertical-align:-74.240000pt;}
.v3{vertical-align:-71.680000pt;}
.v7{vertical-align:-62.698667pt;}
.v6{vertical-align:-44.160000pt;}
.v5{vertical-align:-18.688000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.768000pt;}
.ls2d{letter-spacing:-0.704000pt;}
.ls35{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.592000pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.010347pt;}
.ls31{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls39{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.741333pt;}
.ls2c{letter-spacing:0.768000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls29{letter-spacing:5.796209pt;}
.ls27{letter-spacing:6.400000pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:8.960000pt;}
.ls3b{letter-spacing:9.440000pt;}
.lsf{letter-spacing:10.240000pt;}
.ls1b{letter-spacing:10.880000pt;}
.ls3a{letter-spacing:11.520000pt;}
.ls3c{letter-spacing:12.160000pt;}
.ls38{letter-spacing:12.800000pt;}
.ls30{letter-spacing:15.360000pt;}
.ls36{letter-spacing:16.000000pt;}
.ls26{letter-spacing:21.760000pt;}
.ls10{letter-spacing:22.560000pt;}
.ls37{letter-spacing:23.680000pt;}
.ls12{letter-spacing:28.800000pt;}
.lsc{letter-spacing:30.186667pt;}
.lse{letter-spacing:30.848000pt;}
.ls1{letter-spacing:206.538667pt;}
.ls0{letter-spacing:362.858667pt;}
.ls5{letter-spacing:827.018667pt;}
.ls3{letter-spacing:955.018667pt;}
.ls7{letter-spacing:1054.965333pt;}
.ls6{letter-spacing:1099.125333pt;}
.ls4{letter-spacing:1102.325333pt;}
.ls2{letter-spacing:1102.965333pt;}
.ws1b{word-spacing:-16.768000pt;}
.ws14{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.576000pt;}
.ws20{word-spacing:-16.512000pt;}
.ws10{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1a{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws21{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.296000pt;}
.ws0{word-spacing:-15.232000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.374933pt;}
.ws1e{word-spacing:-13.327360pt;}
.ws1d{word-spacing:-13.290347pt;}
.ws11{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws1f{word-spacing:-13.096533pt;}
.ws17{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.688000pt;}
.ws18{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.400000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-13.706667pt;}
._9{margin-left:-11.509333pt;}
._6{margin-left:-9.824000pt;}
._8{margin-left:-8.501333pt;}
._5{margin-left:-7.424000pt;}
._2{margin-left:-6.464000pt;}
._20{margin-left:-5.141333pt;}
._4{margin-left:-4.053333pt;}
._1{margin-left:-2.805333pt;}
._0{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._d{width:2.368000pt;}
._e{width:3.264000pt;}
._b{width:4.480000pt;}
._c{width:5.696000pt;}
._12{width:7.360000pt;}
._11{width:8.896000pt;}
._18{width:9.941333pt;}
._1b{width:11.136000pt;}
._a{width:12.032000pt;}
._14{width:13.440000pt;}
._1c{width:14.336000pt;}
._13{width:17.418667pt;}
._19{width:18.602667pt;}
._1a{width:19.584000pt;}
._1d{width:20.714667pt;}
._10{width:22.346667pt;}
._f{width:23.594667pt;}
._1f{width:24.970667pt;}
._21{width:26.538667pt;}
._1e{width:27.786667pt;}
._15{width:28.778667pt;}
._16{width:30.250667pt;}
._17{width:31.477333pt;}
._22{width:32.469333pt;}
._26{width:33.642667pt;}
._27{width:34.592000pt;}
._25{width:146.282667pt;}
._23{width:186.634667pt;}
._24{width:187.605333pt;}
.fse{font-size:26.880000pt;}
.fsa{font-size:29.440000pt;}
.fs4{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs8{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fsf{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fsd{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:66.560000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:4.320000pt;}
.y2{bottom:4.800000pt;}
.ycc{bottom:8.960000pt;}
.y1{bottom:64.160000pt;}
.y3{bottom:69.920000pt;}
.yce{bottom:92.000000pt;}
.ycb{bottom:93.920000pt;}
.y9a{bottom:100.320000pt;}
.yb3{bottom:101.440000pt;}
.yd8{bottom:105.120000pt;}
.y49{bottom:105.280000pt;}
.y68{bottom:105.440000pt;}
.yb2{bottom:106.080000pt;}
.yf8{bottom:106.560000pt;}
.ya7{bottom:109.920000pt;}
.yd2{bottom:114.720000pt;}
.y88{bottom:115.680000pt;}
.yb1{bottom:117.600000pt;}
.yf1{bottom:119.520000pt;}
.y99{bottom:120.352000pt;}
.ybc{bottom:120.512000pt;}
.y48{bottom:120.672000pt;}
.yb0{bottom:122.272000pt;}
.yb9{bottom:126.912000pt;}
.yd7{bottom:127.072000pt;}
.y87{bottom:131.072000pt;}
.y67{bottom:135.706667pt;}
.ya6{bottom:137.626667pt;}
.y47{bottom:140.986667pt;}
.yaf{bottom:143.226667pt;}
.yd1{bottom:145.786667pt;}
.y22{bottom:146.266667pt;}
.yf0{bottom:147.066667pt;}
.yb8{bottom:148.186667pt;}
.ydb{bottom:148.346667pt;}
.y66{bottom:151.066667pt;}
.y46{bottom:152.346667pt;}
.yf7{bottom:152.506667pt;}
.yd6{bottom:154.586667pt;}
.y93{bottom:156.026667pt;}
.yae{bottom:156.826667pt;}
.ye9{bottom:157.626667pt;}
.yca{bottom:157.786667pt;}
.y98{bottom:161.786667pt;}
.yd0{bottom:163.066667pt;}
.ya5{bottom:165.146667pt;}
.yc6{bottom:166.426667pt;}
.y45{bottom:167.706667pt;}
.ybb{bottom:171.706667pt;}
.y65{bottom:172.186667pt;}
.yd4{bottom:172.826667pt;}
.y86{bottom:173.626667pt;}
.yc9{bottom:175.226667pt;}
.y92{bottom:175.866667pt;}
.ycf{bottom:178.266667pt;}
.y97{bottom:181.786667pt;}
.yad{bottom:182.106667pt;}
.y21{bottom:184.666667pt;}
.ye8{bottom:185.306667pt;}
.yc5{bottom:188.346667pt;}
.ye1{bottom:188.506667pt;}
.yd3{bottom:189.146667pt;}
.yc8{bottom:190.586667pt;}
.y44{bottom:192.826667pt;}
.y91{bottom:203.386667pt;}
.y85{bottom:203.546667pt;}
.y96{bottom:203.866667pt;}
.yc7{bottom:205.946667pt;}
.yac{bottom:209.626667pt;}
.y64{bottom:209.786667pt;}
.yc4{bottom:214.266667pt;}
.ya4{bottom:220.346667pt;}
.y43{bottom:220.506667pt;}
.y20{bottom:222.906667pt;}
.y84{bottom:231.066667pt;}
.ye7{bottom:231.546667pt;}
.ye0{bottom:234.586667pt;}
.y63{bottom:237.306667pt;}
.yc3{bottom:241.946667pt;}
.y42{bottom:248.026667pt;}
.y90{bottom:258.586667pt;}
.y83{bottom:258.746667pt;}
.y1f{bottom:260.986667pt;}
.y110{bottom:263.866667pt;}
.yab{bottom:264.826667pt;}
.y62{bottom:264.986667pt;}
.yc2{bottom:269.466667pt;}
.ya3{bottom:275.546667pt;}
.y41{bottom:275.706667pt;}
.y82{bottom:286.266667pt;}
.y61{bottom:292.506667pt;}
.yc1{bottom:297.146667pt;}
.y1e{bottom:299.386667pt;}
.y10f{bottom:302.106667pt;}
.y40{bottom:303.226667pt;}
.y8f{bottom:313.786667pt;}
.y81{bottom:313.946667pt;}
.yaa{bottom:320.026667pt;}
.y60{bottom:320.186667pt;}
.yc0{bottom:324.666667pt;}
.ya2{bottom:330.746667pt;}
.y3f{bottom:330.906667pt;}
.y1d{bottom:336.986667pt;}
.yd5{bottom:338.746667pt;}
.y80{bottom:341.466667pt;}
.y5f{bottom:347.746667pt;}
.y10e{bottom:348.386667pt;}
.ybf{bottom:352.386667pt;}
.y1c{bottom:354.466667pt;}
.yba{bottom:358.306667pt;}
.y3e{bottom:358.466667pt;}
.y10d{bottom:368.066667pt;}
.y8e{bottom:369.026667pt;}
.y7f{bottom:369.186667pt;}
.y1b{bottom:374.306667pt;}
.y5e{bottom:375.266667pt;}
.ybe{bottom:379.906667pt;}
.y3d{bottom:385.986667pt;}
.y1a{bottom:394.306667pt;}
.y7e{bottom:396.706667pt;}
.ya9{bottom:402.786667pt;}
.y10c{bottom:406.306667pt;}
.ybd{bottom:407.586667pt;}
.y3c{bottom:413.666667pt;}
.y5d{bottom:413.826667pt;}
.y19{bottom:414.146667pt;}
.y95{bottom:424.226667pt;}
.y7d{bottom:424.386667pt;}
.y10b{bottom:433.826667pt;}
.y8d{bottom:435.106667pt;}
.y3b{bottom:441.186667pt;}
.y5c{bottom:441.346667pt;}
.y7c{bottom:451.906667pt;}
.y18{bottom:452.866667pt;}
.y8c{bottom:462.786667pt;}
.y3a{bottom:468.866667pt;}
.y5b{bottom:469.026667pt;}
.y10a{bottom:472.066667pt;}
.y17{bottom:474.466667pt;}
.y94{bottom:479.426667pt;}
.y7b{bottom:479.586667pt;}
.y8b{bottom:490.306667pt;}
.y16{bottom:494.306667pt;}
.y39{bottom:496.386667pt;}
.y5a{bottom:496.546667pt;}
.y109{bottom:499.746667pt;}
.y7a{bottom:507.106667pt;}
.y15{bottom:514.306667pt;}
.y8a{bottom:517.986667pt;}
.yfd{bottom:519.426667pt;}
.ya1{bottom:523.906667pt;}
.y38{bottom:524.066667pt;}
.y59{bottom:524.226667pt;}
.y108{bottom:527.266667pt;}
.y14{bottom:534.306667pt;}
.y79{bottom:534.626667pt;}
.yda{bottom:534.786667pt;}
.y89{bottom:545.506667pt;}
.yfc{bottom:547.106667pt;}
.y37{bottom:551.586667pt;}
.y58{bottom:551.746667pt;}
.y13{bottom:554.146667pt;}
.ya0{bottom:562.306667pt;}
.ydf{bottom:567.426667pt;}
.y78{bottom:573.213333pt;}
.y107{bottom:573.373333pt;}
.yfb{bottom:574.653333pt;}
.y36{bottom:579.293333pt;}
.y57{bottom:579.453333pt;}
.ye6{bottom:583.773333pt;}
.yde{bottom:586.813333pt;}
.yb7{bottom:589.853333pt;}
.y9f{bottom:590.013333pt;}
.y106{bottom:591.773333pt;}
.ya8{bottom:597.853333pt;}
.yfa{bottom:598.173333pt;}
.y77{bottom:600.733333pt;}
.yf6{bottom:602.013333pt;}
.ye5{bottom:603.133333pt;}
.y35{bottom:606.813333pt;}
.y56{bottom:606.973333pt;}
.yf9{bottom:610.173333pt;}
.ydd{bottom:614.173333pt;}
.y9e{bottom:617.533333pt;}
.yf5{bottom:621.213333pt;}
.y76{bottom:628.413333pt;}
.y105{bottom:630.013333pt;}
.ye4{bottom:630.653333pt;}
.y34{bottom:634.493333pt;}
.y55{bottom:634.653333pt;}
.yef{bottom:644.093333pt;}
.yb6{bottom:645.053333pt;}
.y9d{bottom:645.213333pt;}
.yf4{bottom:648.893333pt;}
.ye3{bottom:653.853333pt;}
.y75{bottom:655.933333pt;}
.y104{bottom:657.533333pt;}
.y33{bottom:662.013333pt;}
.y54{bottom:662.173333pt;}
.yee{bottom:663.453333pt;}
.ye2{bottom:664.413333pt;}
.y9c{bottom:672.733333pt;}
.yf3{bottom:676.413333pt;}
.y74{bottom:683.613333pt;}
.y32{bottom:689.533333pt;}
.y53{bottom:689.853333pt;}
.yed{bottom:691.133333pt;}
.y103{bottom:695.933333pt;}
.yb5{bottom:700.253333pt;}
.y9b{bottom:700.413333pt;}
.y73{bottom:711.133333pt;}
.yf2{bottom:713.213333pt;}
.y52{bottom:717.373333pt;}
.yec{bottom:718.653333pt;}
.y102{bottom:723.613333pt;}
.yb4{bottom:727.773333pt;}
.y31{bottom:727.933333pt;}
.y12{bottom:733.373333pt;}
.y72{bottom:738.653333pt;}
.yeb{bottom:741.853333pt;}
.y11{bottom:744.253333pt;}
.y51{bottom:745.053333pt;}
.yea{bottom:752.253333pt;}
.y30{bottom:755.453333pt;}
.y10{bottom:759.613333pt;}
.y101{bottom:761.853333pt;}
.y71{bottom:766.333333pt;}
.y50{bottom:772.573333pt;}
.yf{bottom:774.973333pt;}
.y28{bottom:778.813333pt;}
.y2f{bottom:783.133333pt;}
.y100{bottom:789.533333pt;}
.ye{bottom:790.333333pt;}
.y70{bottom:793.893333pt;}
.y4f{bottom:800.293333pt;}
.yd{bottom:805.733333pt;}
.y2e{bottom:810.693333pt;}
.y27{bottom:817.093333pt;}
.yc{bottom:820.933333pt;}
.y6f{bottom:821.573333pt;}
.y4e{bottom:827.813333pt;}
.yb{bottom:836.293333pt;}
.yd9{bottom:838.213333pt;}
.y2d{bottom:838.373333pt;}
.y6e{bottom:849.093333pt;}
.ya{bottom:851.653333pt;}
.yff{bottom:855.173333pt;}
.y26{bottom:855.333333pt;}
.y4d{bottom:855.493333pt;}
.y2c{bottom:865.893333pt;}
.y9{bottom:867.013333pt;}
.y6d{bottom:876.773333pt;}
.y8{bottom:882.373333pt;}
.yfe{bottom:882.693333pt;}
.y4c{bottom:883.013333pt;}
.y2b{bottom:893.413333pt;}
.y25{bottom:893.573333pt;}
.y6c{bottom:904.293333pt;}
.y7{bottom:916.933333pt;}
.y24{bottom:921.093333pt;}
.y4b{bottom:929.253333pt;}
.y6b{bottom:931.973333pt;}
.y6{bottom:936.613333pt;}
.y2a{bottom:948.613333pt;}
.y23{bottom:948.773333pt;}
.y6a{bottom:959.493333pt;}
.y5{bottom:976.293333pt;}
.y4a{bottom:987.013333pt;}
.y69{bottom:987.173333pt;}
.y29{bottom:994.853333pt;}
.ydc{bottom:996.933333pt;}
.y4{bottom:1014.693333pt;}
.h1c{height:17.760000pt;}
.h2{height:20.320000pt;}
.h18{height:25.481250pt;}
.h1f{height:26.381250pt;}
.h14{height:28.893750pt;}
.h10{height:33.918750pt;}
.h8{height:34.830000pt;}
.h1a{height:36.431250pt;}
.h19{height:39.165625pt;}
.h11{height:39.571875pt;}
.h17{height:42.084375pt;}
.h20{height:47.109375pt;}
.h4{height:52.134375pt;}
.h7{height:53.535000pt;}
.h1b{height:55.275000pt;}
.hb{height:56.760000pt;}
.h1d{height:57.787500pt;}
.h1e{height:59.340000pt;}
.h15{height:60.300000pt;}
.h3{height:62.812500pt;}
.hd{height:64.500000pt;}
.h6{height:65.325000pt;}
.h21{height:65.781915pt;}
.hf{height:66.404375pt;}
.h16{height:66.511042pt;}
.h13{height:66.564375pt;}
.he{height:66.625000pt;}
.hc{height:67.080000pt;}
.h5{height:67.837500pt;}
.h9{height:69.660000pt;}
.h12{height:70.978125pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:10.592000pt;}
.w2{width:16.032000pt;}
.w5{width:24.032000pt;}
.w6{width:169.626667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xb{left:1.306667pt;}
.x2{left:4.026667pt;}
.x12{left:9.760000pt;}
.x13{left:13.440000pt;}
.x3{left:106.751988pt;}
.x11{left:112.192000pt;}
.x7{left:113.631988pt;}
.xd{left:122.111988pt;}
.xe{left:125.791988pt;}
.x9{left:137.466655pt;}
.x14{left:166.914667pt;}
.x10{left:186.746655pt;}
.x5{left:190.266655pt;}
.x1a{left:267.906655pt;}
.xf{left:279.746655pt;}
.x4{left:288.866655pt;}
.x15{left:309.826655pt;}
.x8{left:363.906655pt;}
.x6{left:380.253321pt;}
.x19{left:434.013321pt;}
.x16{left:567.013321pt;}
.x18{left:578.693322pt;}
.x17{left:641.573322pt;}
.xc{left:660.613333pt;}
.x1{left:668.613333pt;}
.xa{left:671.333333pt;}
}




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