
    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_d3e029446ec520fd35d3c4e5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_bf683c09a4497e4f487633b0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.006836;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f06b83b3982056717ae629d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.011230;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_6f6b45e57c1bdbc86c537356.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b02469d307267f098d6cb698.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7a211c18bfa027c073e8aebb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b6a8e8d027510ca487329c68.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5bfa98dc18de021ff84f890a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_069ddde8e8a5faf49e108782.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_9ea954c8d18ff01cfdf1ce47.woff')format("woff");}.ffb{font-family:ffb;line-height:1.208008;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v5{vertical-align:-44.640000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.440000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.540000px;}
.ls24{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.313800px;}
.ls11{letter-spacing:-0.277200px;}
.ls1b{letter-spacing:-0.259800px;}
.lse{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.027360px;}
.ls19{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.153600px;}
.ls14{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls6{letter-spacing:0.206640px;}
.lsc{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.311040px;}
.ls5{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.530400px;}
.ls22{letter-spacing:0.540000px;}
.ls1e{letter-spacing:0.720000px;}
.ls12{letter-spacing:5.220000px;}
.ls13{letter-spacing:7.356000px;}
.ls7{letter-spacing:13.679280px;}
.ls21{letter-spacing:16.506720px;}
.ls23{letter-spacing:30.420000px;}
.ls1f{letter-spacing:46.026720px;}
.ls8{letter-spacing:262.272240px;}
.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;}
}
.ws10{word-spacing:-46.474560px;}
.wsd{word-spacing:-44.944560px;}
.wsf{word-spacing:-43.977600px;}
.wsc{word-spacing:-42.480720px;}
.wse{word-spacing:-31.544520px;}
.ws2{word-spacing:-24.470400px;}
.ws4{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.521120px;}
.ws1{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.146400px;}
.ws13{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.093600px;}
.ws14{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.680200px;}
.ws19{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.479800px;}
.ws15{word-spacing:-14.400000px;}
.ws16{word-spacing:-14.328000px;}
.ws3{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._a{margin-left:-1782.456480px;}
._9{margin-left:-1161.340320px;}
._b{margin-left:-776.252160px;}
._6{margin-left:-681.448320px;}
._7{margin-left:-262.517760px;}
._12{margin-left:-232.839360px;}
._10{margin-left:-231.264000px;}
._8{margin-left:-140.955840px;}
._f{margin-left:-115.200000px;}
._c{margin-left:-99.360000px;}
._d{margin-left:-82.776000px;}
._e{margin-left:-66.240000px;}
._1d{margin-left:-4.117440px;}
._1{margin-left:-3.116880px;}
._0{margin-left:-1.347840px;}
._2{width:1.374720px;}
._15{width:2.449200px;}
._18{width:4.337520px;}
._14{width:6.119040px;}
._13{width:7.277760px;}
._1a{width:8.860080px;}
._17{width:9.881040px;}
._16{width:10.936080px;}
._1b{width:12.130560px;}
._1c{width:13.208640px;}
._19{width:16.254720px;}
._11{width:18.216000px;}
._1e{width:19.851840px;}
._21{width:29.700480px;}
._22{width:31.015440px;}
._23{width:37.648800px;}
._24{width:40.103760px;}
._1f{width:44.700480px;}
._20{width:49.143600px;}
._4{width:337.140000px;}
._3{width:715.653600px;}
._5{width:1341.536640px;}
.fc5{color:rgb(15,36,62);}
.fc4{color:rgb(84,141,212);}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:5.760000px;}
.ye3{bottom:5.790000px;}
.y27{bottom:5.940000px;}
.y103{bottom:6.660000px;}
.y12{bottom:7.560000px;}
.y6{bottom:11.880000px;}
.y106{bottom:15.660000px;}
.yf4{bottom:17.460000px;}
.y101{bottom:17.820000px;}
.y39{bottom:18.900000px;}
.yde{bottom:25.560000px;}
.y26{bottom:25.740000px;}
.ye6{bottom:28.260000px;}
.ye0{bottom:28.290000px;}
.yef{bottom:28.305000px;}
.y38{bottom:38.700000px;}
.yf6{bottom:39.060000px;}
.y5{bottom:40.500000px;}
.y25{bottom:43.020000px;}
.y37{bottom:55.980000px;}
.ya{bottom:62.100000px;}
.y24{bottom:62.820000px;}
.y4{bottom:68.940000px;}
.y36{bottom:73.260000px;}
.y23{bottom:82.620000px;}
.yaf{bottom:84.780000px;}
.ydb{bottom:87.300000px;}
.y14f{bottom:88.560000px;}
.yc6{bottom:88.920000px;}
.y8{bottom:90.210000px;}
.y35{bottom:90.360000px;}
.y4c{bottom:96.840000px;}
.y3{bottom:97.590000px;}
.y22{bottom:102.420000px;}
.yff{bottom:104.400000px;}
.yae{bottom:104.760000px;}
.yda{bottom:107.100000px;}
.y34{bottom:107.640000px;}
.y14e{bottom:108.360000px;}
.y82{bottom:108.720000px;}
.y81{bottom:108.900000px;}
.y4b{bottom:116.640000px;}
.y131{bottom:118.080000px;}
.y21{bottom:122.220000px;}
.yc5{bottom:122.760000px;}
.yfe{bottom:124.200000px;}
.yad{bottom:124.560000px;}
.y33{bottom:124.920000px;}
.yd9{bottom:126.900000px;}
.y14d{bottom:128.160000px;}
.y2{bottom:128.550000px;}
.y7{bottom:128.730000px;}
.y80{bottom:131.760000px;}
.y4a{bottom:136.440000px;}
.y130{bottom:137.880000px;}
.y20{bottom:142.200000px;}
.yfd{bottom:144.000000px;}
.yac{bottom:144.360000px;}
.y32{bottom:144.720000px;}
.yd8{bottom:146.700000px;}
.y14c{bottom:147.960000px;}
.y7f{bottom:151.770000px;}
.y49{bottom:156.270000px;}
.y12f{bottom:157.710000px;}
.y1f{bottom:162.000000px;}
.yfc{bottom:164.010000px;}
.yab{bottom:164.190000px;}
.y31{bottom:164.520000px;}
.yd7{bottom:166.530000px;}
.y14b{bottom:167.790000px;}
.y7e{bottom:171.570000px;}
.y48{bottom:176.070000px;}
.y12e{bottom:177.690000px;}
.y1e{bottom:181.830000px;}
.yfb{bottom:183.810000px;}
.y30{bottom:184.350000px;}
.ya9{bottom:184.890000px;}
.y14a{bottom:187.770000px;}
.y7d{bottom:191.370000px;}
.yd6{bottom:195.510000px;}
.y47{bottom:196.050000px;}
.y12d{bottom:197.490000px;}
.y1d{bottom:201.630000px;}
.yfa{bottom:203.610000px;}
.y2f{bottom:204.330000px;}
.y149{bottom:207.570000px;}
.y7c{bottom:211.170000px;}
.yd5{bottom:215.310000px;}
.y46{bottom:215.850000px;}
.y12c{bottom:217.290000px;}
.y1c{bottom:221.430000px;}
.yf9{bottom:223.410000px;}
.y2e{bottom:224.130000px;}
.y148{bottom:227.370000px;}
.ya8{bottom:230.970000px;}
.yd4{bottom:235.110000px;}
.y45{bottom:235.650000px;}
.y12b{bottom:237.090000px;}
.y7b{bottom:239.970000px;}
.y1b{bottom:241.410000px;}
.yf8{bottom:243.210000px;}
.y2d{bottom:243.930000px;}
.y147{bottom:247.170000px;}
.ya7{bottom:250.950000px;}
.yd3{bottom:254.910000px;}
.y44{bottom:255.450000px;}
.y12a{bottom:256.890000px;}
.y7a{bottom:259.950000px;}
.y1a{bottom:261.210000px;}
.yf7{bottom:263.190000px;}
.y2c{bottom:263.730000px;}
.y146{bottom:266.970000px;}
.ya6{bottom:270.750000px;}
.yd2{bottom:274.710000px;}
.y43{bottom:275.250000px;}
.y129{bottom:276.870000px;}
.yf5{bottom:277.950000px;}
.y79{bottom:279.750000px;}
.y19{bottom:281.010000px;}
.y2b{bottom:283.530000px;}
.y145{bottom:286.950000px;}
.ya5{bottom:290.550000px;}
.yd1{bottom:294.510000px;}
.y42{bottom:295.230000px;}
.y128{bottom:296.670000px;}
.y78{bottom:299.550000px;}
.y18{bottom:300.810000px;}
.y2a{bottom:303.510000px;}
.y144{bottom:306.750000px;}
.ya4{bottom:310.350000px;}
.yd0{bottom:314.310000px;}
.y41{bottom:315.030000px;}
.y127{bottom:316.470000px;}
.y77{bottom:319.350000px;}
.y17{bottom:320.610000px;}
.yf3{bottom:321.150000px;}
.y29{bottom:323.310000px;}
.y143{bottom:326.550000px;}
.ya3{bottom:330.150000px;}
.y40{bottom:334.830000px;}
.y126{bottom:336.270000px;}
.y76{bottom:339.150000px;}
.y16{bottom:340.590000px;}
.y28{bottom:343.110000px;}
.y142{bottom:346.350000px;}
.ya2{bottom:350.130000px;}
.y3f{bottom:354.630000px;}
.y125{bottom:356.070000px;}
.y15{bottom:360.390000px;}
.yf2{bottom:364.350000px;}
.y141{bottom:366.150000px;}
.y75{bottom:368.130000px;}
.ya1{bottom:369.930000px;}
.y3e{bottom:374.430000px;}
.y124{bottom:376.050000px;}
.y14{bottom:380.190000px;}
.yee{bottom:385.950000px;}
.y140{bottom:386.130000px;}
.y74{bottom:387.930000px;}
.ya0{bottom:389.730000px;}
.y3d{bottom:394.410000px;}
.y123{bottom:395.850000px;}
.y13f{bottom:405.975000px;}
.yf1{bottom:407.595000px;}
.y73{bottom:407.775000px;}
.y9f{bottom:409.575000px;}
.y3c{bottom:414.255000px;}
.y122{bottom:415.695000px;}
.y13e{bottom:425.775000px;}
.y72{bottom:427.575000px;}
.yf0{bottom:429.195000px;}
.y9e{bottom:429.375000px;}
.yc4{bottom:430.995000px;}
.y3b{bottom:434.055000px;}
.y121{bottom:435.495000px;}
.y13d{bottom:445.575000px;}
.y71{bottom:447.375000px;}
.y9d{bottom:449.355000px;}
.yed{bottom:450.795000px;}
.yc3{bottom:450.975000px;}
.y3a{bottom:453.855000px;}
.y120{bottom:455.295000px;}
.y13c{bottom:465.375000px;}
.y70{bottom:467.355000px;}
.yc2{bottom:468.255000px;}
.y13{bottom:468.615000px;}
.y9c{bottom:469.155000px;}
.yea{bottom:472.395000px;}
.y11f{bottom:475.275000px;}
.y13b{bottom:485.355000px;}
.y6f{bottom:487.155000px;}
.yc1{bottom:488.055000px;}
.y9b{bottom:488.955000px;}
.yec{bottom:493.995000px;}
.y11e{bottom:495.075000px;}
.y13a{bottom:505.155000px;}
.yc0{bottom:507.855000px;}
.y9a{bottom:508.755000px;}
.y11d{bottom:514.875000px;}
.yeb{bottom:515.595000px;}
.y6e{bottom:515.955000px;}
.ybf{bottom:521.895000px;}
.y139{bottom:524.955000px;}
.y99{bottom:528.555000px;}
.y11c{bottom:534.675000px;}
.y6d{bottom:535.755000px;}
.ye9{bottom:537.195000px;}
.y138{bottom:544.755000px;}
.y98{bottom:548.355000px;}
.y11b{bottom:554.475000px;}
.y6c{bottom:555.555000px;}
.ye5{bottom:558.795000px;}
.y137{bottom:564.555000px;}
.y11a{bottom:574.455000px;}
.y6b{bottom:575.355000px;}
.y97{bottom:577.335000px;}
.ye8{bottom:580.395000px;}
.y136{bottom:584.355000px;}
.y119{bottom:594.255000px;}
.y6a{bottom:595.335000px;}
.y96{bottom:597.135000px;}
.ye7{bottom:601.995000px;}
.y135{bottom:604.335000px;}
.y118{bottom:614.055000px;}
.y69{bottom:615.135000px;}
.y95{bottom:616.935000px;}
.ye4{bottom:623.595000px;}
.y134{bottom:624.135000px;}
.ycf{bottom:632.955000px;}
.y117{bottom:633.855000px;}
.y68{bottom:634.935000px;}
.y94{bottom:636.735000px;}
.y133{bottom:643.935000px;}
.ydf{bottom:645.195000px;}
.yce{bottom:652.785000px;}
.y116{bottom:653.685000px;}
.y67{bottom:654.765000px;}
.y93{bottom:656.565000px;}
.y132{bottom:663.765000px;}
.ye2{bottom:666.825000px;}
.ycd{bottom:672.585000px;}
.y115{bottom:673.665000px;}
.y92{bottom:676.545000px;}
.y66{bottom:683.565000px;}
.ye1{bottom:688.425000px;}
.ycc{bottom:692.385000px;}
.y114{bottom:693.465000px;}
.y65{bottom:703.545000px;}
.y91{bottom:705.345000px;}
.ydd{bottom:710.745000px;}
.ycb{bottom:712.365000px;}
.y113{bottom:713.265000px;}
.y64{bottom:723.345000px;}
.y90{bottom:725.145000px;}
.yca{bottom:732.165000px;}
.y112{bottom:733.065000px;}
.y63{bottom:743.145000px;}
.y8f{bottom:744.945000px;}
.yc9{bottom:751.965000px;}
.y111{bottom:752.865000px;}
.ydc{bottom:754.665000px;}
.y62{bottom:762.945000px;}
.y8e{bottom:764.745000px;}
.yc8{bottom:771.765000px;}
.y110{bottom:772.845000px;}
.y61{bottom:782.745000px;}
.y8d{bottom:784.725000px;}
.yc7{bottom:788.325000px;}
.y10f{bottom:792.645000px;}
.y60{bottom:802.725000px;}
.y8c{bottom:804.525000px;}
.y10e{bottom:812.445000px;}
.y5f{bottom:822.525000px;}
.y8b{bottom:824.325000px;}
.y10d{bottom:832.245000px;}
.y5e{bottom:842.325000px;}
.y8a{bottom:844.125000px;}
.y10c{bottom:852.045000px;}
.ybe{bottom:860.685000px;}
.y5d{bottom:862.125000px;}
.y11{bottom:863.565000px;}
.y10b{bottom:872.025000px;}
.y89{bottom:872.925000px;}
.ybd{bottom:880.485000px;}
.y5c{bottom:881.925000px;}
.y10a{bottom:891.825000px;}
.y88{bottom:892.905000px;}
.y10{bottom:896.325000px;}
.ybc{bottom:900.330000px;}
.y5b{bottom:901.950000px;}
.y109{bottom:911.670000px;}
.y87{bottom:912.750000px;}
.ybb{bottom:920.310000px;}
.yf{bottom:921.390000px;}
.y5a{bottom:921.750000px;}
.y108{bottom:926.430000px;}
.y86{bottom:932.550000px;}
.ye{bottom:936.510000px;}
.yba{bottom:940.110000px;}
.y59{bottom:941.550000px;}
.y107{bottom:948.030000px;}
.y85{bottom:952.350000px;}
.yd{bottom:958.290000px;}
.yb9{bottom:959.910000px;}
.y58{bottom:961.350000px;}
.y84{bottom:972.150000px;}
.yb8{bottom:979.710000px;}
.y57{bottom:981.150000px;}
.yc{bottom:983.310000px;}
.y105{bottom:987.810000px;}
.y83{bottom:992.130000px;}
.yb7{bottom:999.510000px;}
.y56{bottom:1001.130000px;}
.yb6{bottom:1014.450000px;}
.yb{bottom:1014.990000px;}
.y55{bottom:1020.930000px;}
.y104{bottom:1027.410000px;}
.yb5{bottom:1034.250000px;}
.y54{bottom:1040.730000px;}
.y9{bottom:1041.810000px;}
.y100{bottom:1049.730000px;}
.yb4{bottom:1054.050000px;}
.y1{bottom:1058.190000px;}
.y53{bottom:1060.530000px;}
.y102{bottom:1072.050000px;}
.yb3{bottom:1073.850000px;}
.y52{bottom:1080.330000px;}
.yb2{bottom:1093.650000px;}
.y51{bottom:1100.310000px;}
.yb1{bottom:1113.630000px;}
.y50{bottom:1120.110000px;}
.yb0{bottom:1133.430000px;}
.y4f{bottom:1139.910000px;}
.y4e{bottom:1169.820000px;}
.y4d{bottom:1192.680000px;}
.h15{height:19.800000px;}
.h16{height:19.836000px;}
.h17{height:19.980000px;}
.h18{height:21.600000px;}
.h1b{height:21.636000px;}
.hd{height:26.100000px;}
.hb{height:27.147656px;}
.h1f{height:39.600000px;}
.h20{height:39.780000px;}
.hc{height:41.726953px;}
.h10{height:42.164648px;}
.h19{height:43.200000px;}
.h21{height:43.506914px;}
.h1e{height:43.920000px;}
.h9{height:46.736719px;}
.he{height:48.027656px;}
.h7{height:48.418594px;}
.h4{height:48.774375px;}
.h11{height:49.255313px;}
.h12{height:51.706406px;}
.h5{height:53.015625px;}
.ha{height:53.224453px;}
.h14{height:53.885391px;}
.h3{height:62.028281px;}
.h1c{height:64.800000px;}
.h1a{height:64.836000px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h13{height:72.605391px;}
.h1d{height:86.400000px;}
.h2{height:150.690000px;}
.hf{height:394.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:63.720000px;}
.w14{width:63.756000px;}
.w17{width:63.900000px;}
.w18{width:63.936000px;}
.w19{width:74.520000px;}
.w15{width:76.140000px;}
.wd{width:101.376000px;}
.wf{width:108.000000px;}
.w10{width:117.396000px;}
.w3{width:126.396000px;}
.w11{width:137.916000px;}
.w12{width:142.956000px;}
.wc{width:149.796000px;}
.wa{width:158.400000px;}
.w9{width:173.010000px;}
.w7{width:174.090000px;}
.w8{width:187.770000px;}
.wb{width:197.850000px;}
.we{width:506.265000px;}
.w13{width:597.165000px;}
.w6{width:606.030000px;}
.w2{width:657.150000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.920000px;}
.x1{left:54.720000px;}
.x5{left:56.520000px;}
.x11{left:63.359987px;}
.xe{left:67.319987px;}
.x14{left:68.399987px;}
.x26{left:80.999987px;}
.x9{left:88.056000px;}
.x1c{left:93.996000px;}
.x27{left:108.035987px;}
.x1d{left:201.990000px;}
.x17{left:217.650000px;}
.x1e{left:265.755000px;}
.xf{left:273.134987px;}
.xa{left:275.835000px;}
.x12{left:303.374987px;}
.x16{left:313.274987px;}
.x18{left:319.035000px;}
.x7{left:321.374987px;}
.x1f{left:341.895000px;}
.x20{left:405.615000px;}
.x19{left:427.035000px;}
.xb{left:448.845000px;}
.x8{left:453.704987px;}
.x21{left:469.365000px;}
.x22{left:533.265000px;}
.x1a{left:544.425000px;}
.x23{left:596.985000px;}
.xc{left:607.245000px;}
.x24{left:660.930000px;}
.x6{left:662.550000px;}
.x1b{left:682.350000px;}
.x13{left:703.049987px;}
.x10{left:704.129987px;}
.x3{left:711.870000px;}
.xd{left:718.889987px;}
.x25{left:724.650000px;}
.x4{left:727.529987px;}
.x15{left:748.049987px;}
@media print{
.v5{vertical-align:-39.680000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.280000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls24{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.278933pt;}
.ls11{letter-spacing:-0.246400pt;}
.ls1b{letter-spacing:-0.230933pt;}
.lse{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.024320pt;}
.ls19{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.136533pt;}
.ls14{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls6{letter-spacing:0.183680pt;}
.lsc{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.276480pt;}
.ls5{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.471467pt;}
.ls22{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls12{letter-spacing:4.640000pt;}
.ls13{letter-spacing:6.538667pt;}
.ls7{letter-spacing:12.159360pt;}
.ls21{letter-spacing:14.672640pt;}
.ls23{letter-spacing:27.040000pt;}
.ls1f{letter-spacing:40.912640pt;}
.ls8{letter-spacing:233.130880pt;}
.ws10{word-spacing:-41.310720pt;}
.wsd{word-spacing:-39.950720pt;}
.wsf{word-spacing:-39.091200pt;}
.wsc{word-spacing:-37.760640pt;}
.wse{word-spacing:-28.039573pt;}
.ws2{word-spacing:-21.751467pt;}
.ws4{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.685440pt;}
.ws1{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws17{word-spacing:-13.049067pt;}
.ws19{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.870933pt;}
.ws15{word-spacing:-12.800000pt;}
.ws16{word-spacing:-12.736000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._a{margin-left:-1584.405760pt;}
._9{margin-left:-1032.302507pt;}
._b{margin-left:-690.001920pt;}
._6{margin-left:-605.731840pt;}
._7{margin-left:-233.349120pt;}
._12{margin-left:-206.968320pt;}
._10{margin-left:-205.568000pt;}
._8{margin-left:-125.294080pt;}
._f{margin-left:-102.400000pt;}
._c{margin-left:-88.320000pt;}
._d{margin-left:-73.578667pt;}
._e{margin-left:-58.880000pt;}
._1d{margin-left:-3.659947pt;}
._1{margin-left:-2.770560pt;}
._0{margin-left:-1.198080pt;}
._2{width:1.221973pt;}
._15{width:2.177067pt;}
._18{width:3.855573pt;}
._14{width:5.439147pt;}
._13{width:6.469120pt;}
._1a{width:7.875627pt;}
._17{width:8.783147pt;}
._16{width:9.720960pt;}
._1b{width:10.782720pt;}
._1c{width:11.741013pt;}
._19{width:14.448640pt;}
._11{width:16.192000pt;}
._1e{width:17.646080pt;}
._21{width:26.400427pt;}
._22{width:27.569280pt;}
._23{width:33.465600pt;}
._24{width:35.647787pt;}
._1f{width:39.733760pt;}
._20{width:43.683200pt;}
._4{width:299.680000pt;}
._3{width:636.136533pt;}
._5{width:1192.477013pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:5.120000pt;}
.ye3{bottom:5.146667pt;}
.y27{bottom:5.280000pt;}
.y103{bottom:5.920000pt;}
.y12{bottom:6.720000pt;}
.y6{bottom:10.560000pt;}
.y106{bottom:13.920000pt;}
.yf4{bottom:15.520000pt;}
.y101{bottom:15.840000pt;}
.y39{bottom:16.800000pt;}
.yde{bottom:22.720000pt;}
.y26{bottom:22.880000pt;}
.ye6{bottom:25.120000pt;}
.ye0{bottom:25.146667pt;}
.yef{bottom:25.160000pt;}
.y38{bottom:34.400000pt;}
.yf6{bottom:34.720000pt;}
.y5{bottom:36.000000pt;}
.y25{bottom:38.240000pt;}
.y37{bottom:49.760000pt;}
.ya{bottom:55.200000pt;}
.y24{bottom:55.840000pt;}
.y4{bottom:61.280000pt;}
.y36{bottom:65.120000pt;}
.y23{bottom:73.440000pt;}
.yaf{bottom:75.360000pt;}
.ydb{bottom:77.600000pt;}
.y14f{bottom:78.720000pt;}
.yc6{bottom:79.040000pt;}
.y8{bottom:80.186667pt;}
.y35{bottom:80.320000pt;}
.y4c{bottom:86.080000pt;}
.y3{bottom:86.746667pt;}
.y22{bottom:91.040000pt;}
.yff{bottom:92.800000pt;}
.yae{bottom:93.120000pt;}
.yda{bottom:95.200000pt;}
.y34{bottom:95.680000pt;}
.y14e{bottom:96.320000pt;}
.y82{bottom:96.640000pt;}
.y81{bottom:96.800000pt;}
.y4b{bottom:103.680000pt;}
.y131{bottom:104.960000pt;}
.y21{bottom:108.640000pt;}
.yc5{bottom:109.120000pt;}
.yfe{bottom:110.400000pt;}
.yad{bottom:110.720000pt;}
.y33{bottom:111.040000pt;}
.yd9{bottom:112.800000pt;}
.y14d{bottom:113.920000pt;}
.y2{bottom:114.266667pt;}
.y7{bottom:114.426667pt;}
.y80{bottom:117.120000pt;}
.y4a{bottom:121.280000pt;}
.y130{bottom:122.560000pt;}
.y20{bottom:126.400000pt;}
.yfd{bottom:128.000000pt;}
.yac{bottom:128.320000pt;}
.y32{bottom:128.640000pt;}
.yd8{bottom:130.400000pt;}
.y14c{bottom:131.520000pt;}
.y7f{bottom:134.906667pt;}
.y49{bottom:138.906667pt;}
.y12f{bottom:140.186667pt;}
.y1f{bottom:144.000000pt;}
.yfc{bottom:145.786667pt;}
.yab{bottom:145.946667pt;}
.y31{bottom:146.240000pt;}
.yd7{bottom:148.026667pt;}
.y14b{bottom:149.146667pt;}
.y7e{bottom:152.506667pt;}
.y48{bottom:156.506667pt;}
.y12e{bottom:157.946667pt;}
.y1e{bottom:161.626667pt;}
.yfb{bottom:163.386667pt;}
.y30{bottom:163.866667pt;}
.ya9{bottom:164.346667pt;}
.y14a{bottom:166.906667pt;}
.y7d{bottom:170.106667pt;}
.yd6{bottom:173.786667pt;}
.y47{bottom:174.266667pt;}
.y12d{bottom:175.546667pt;}
.y1d{bottom:179.226667pt;}
.yfa{bottom:180.986667pt;}
.y2f{bottom:181.626667pt;}
.y149{bottom:184.506667pt;}
.y7c{bottom:187.706667pt;}
.yd5{bottom:191.386667pt;}
.y46{bottom:191.866667pt;}
.y12c{bottom:193.146667pt;}
.y1c{bottom:196.826667pt;}
.yf9{bottom:198.586667pt;}
.y2e{bottom:199.226667pt;}
.y148{bottom:202.106667pt;}
.ya8{bottom:205.306667pt;}
.yd4{bottom:208.986667pt;}
.y45{bottom:209.466667pt;}
.y12b{bottom:210.746667pt;}
.y7b{bottom:213.306667pt;}
.y1b{bottom:214.586667pt;}
.yf8{bottom:216.186667pt;}
.y2d{bottom:216.826667pt;}
.y147{bottom:219.706667pt;}
.ya7{bottom:223.066667pt;}
.yd3{bottom:226.586667pt;}
.y44{bottom:227.066667pt;}
.y12a{bottom:228.346667pt;}
.y7a{bottom:231.066667pt;}
.y1a{bottom:232.186667pt;}
.yf7{bottom:233.946667pt;}
.y2c{bottom:234.426667pt;}
.y146{bottom:237.306667pt;}
.ya6{bottom:240.666667pt;}
.yd2{bottom:244.186667pt;}
.y43{bottom:244.666667pt;}
.y129{bottom:246.106667pt;}
.yf5{bottom:247.066667pt;}
.y79{bottom:248.666667pt;}
.y19{bottom:249.786667pt;}
.y2b{bottom:252.026667pt;}
.y145{bottom:255.066667pt;}
.ya5{bottom:258.266667pt;}
.yd1{bottom:261.786667pt;}
.y42{bottom:262.426667pt;}
.y128{bottom:263.706667pt;}
.y78{bottom:266.266667pt;}
.y18{bottom:267.386667pt;}
.y2a{bottom:269.786667pt;}
.y144{bottom:272.666667pt;}
.ya4{bottom:275.866667pt;}
.yd0{bottom:279.386667pt;}
.y41{bottom:280.026667pt;}
.y127{bottom:281.306667pt;}
.y77{bottom:283.866667pt;}
.y17{bottom:284.986667pt;}
.yf3{bottom:285.466667pt;}
.y29{bottom:287.386667pt;}
.y143{bottom:290.266667pt;}
.ya3{bottom:293.466667pt;}
.y40{bottom:297.626667pt;}
.y126{bottom:298.906667pt;}
.y76{bottom:301.466667pt;}
.y16{bottom:302.746667pt;}
.y28{bottom:304.986667pt;}
.y142{bottom:307.866667pt;}
.ya2{bottom:311.226667pt;}
.y3f{bottom:315.226667pt;}
.y125{bottom:316.506667pt;}
.y15{bottom:320.346667pt;}
.yf2{bottom:323.866667pt;}
.y141{bottom:325.466667pt;}
.y75{bottom:327.226667pt;}
.ya1{bottom:328.826667pt;}
.y3e{bottom:332.826667pt;}
.y124{bottom:334.266667pt;}
.y14{bottom:337.946667pt;}
.yee{bottom:343.066667pt;}
.y140{bottom:343.226667pt;}
.y74{bottom:344.826667pt;}
.ya0{bottom:346.426667pt;}
.y3d{bottom:350.586667pt;}
.y123{bottom:351.866667pt;}
.y13f{bottom:360.866667pt;}
.yf1{bottom:362.306667pt;}
.y73{bottom:362.466667pt;}
.y9f{bottom:364.066667pt;}
.y3c{bottom:368.226667pt;}
.y122{bottom:369.506667pt;}
.y13e{bottom:378.466667pt;}
.y72{bottom:380.066667pt;}
.yf0{bottom:381.506667pt;}
.y9e{bottom:381.666667pt;}
.yc4{bottom:383.106667pt;}
.y3b{bottom:385.826667pt;}
.y121{bottom:387.106667pt;}
.y13d{bottom:396.066667pt;}
.y71{bottom:397.666667pt;}
.y9d{bottom:399.426667pt;}
.yed{bottom:400.706667pt;}
.yc3{bottom:400.866667pt;}
.y3a{bottom:403.426667pt;}
.y120{bottom:404.706667pt;}
.y13c{bottom:413.666667pt;}
.y70{bottom:415.426667pt;}
.yc2{bottom:416.226667pt;}
.y13{bottom:416.546667pt;}
.y9c{bottom:417.026667pt;}
.yea{bottom:419.906667pt;}
.y11f{bottom:422.466667pt;}
.y13b{bottom:431.426667pt;}
.y6f{bottom:433.026667pt;}
.yc1{bottom:433.826667pt;}
.y9b{bottom:434.626667pt;}
.yec{bottom:439.106667pt;}
.y11e{bottom:440.066667pt;}
.y13a{bottom:449.026667pt;}
.yc0{bottom:451.426667pt;}
.y9a{bottom:452.226667pt;}
.y11d{bottom:457.666667pt;}
.yeb{bottom:458.306667pt;}
.y6e{bottom:458.626667pt;}
.ybf{bottom:463.906667pt;}
.y139{bottom:466.626667pt;}
.y99{bottom:469.826667pt;}
.y11c{bottom:475.266667pt;}
.y6d{bottom:476.226667pt;}
.ye9{bottom:477.506667pt;}
.y138{bottom:484.226667pt;}
.y98{bottom:487.426667pt;}
.y11b{bottom:492.866667pt;}
.y6c{bottom:493.826667pt;}
.ye5{bottom:496.706667pt;}
.y137{bottom:501.826667pt;}
.y11a{bottom:510.626667pt;}
.y6b{bottom:511.426667pt;}
.y97{bottom:513.186667pt;}
.ye8{bottom:515.906667pt;}
.y136{bottom:519.426667pt;}
.y119{bottom:528.226667pt;}
.y6a{bottom:529.186667pt;}
.y96{bottom:530.786667pt;}
.ye7{bottom:535.106667pt;}
.y135{bottom:537.186667pt;}
.y118{bottom:545.826667pt;}
.y69{bottom:546.786667pt;}
.y95{bottom:548.386667pt;}
.ye4{bottom:554.306667pt;}
.y134{bottom:554.786667pt;}
.ycf{bottom:562.626667pt;}
.y117{bottom:563.426667pt;}
.y68{bottom:564.386667pt;}
.y94{bottom:565.986667pt;}
.y133{bottom:572.386667pt;}
.ydf{bottom:573.506667pt;}
.yce{bottom:580.253333pt;}
.y116{bottom:581.053333pt;}
.y67{bottom:582.013333pt;}
.y93{bottom:583.613333pt;}
.y132{bottom:590.013333pt;}
.ye2{bottom:592.733333pt;}
.ycd{bottom:597.853333pt;}
.y115{bottom:598.813333pt;}
.y92{bottom:601.373333pt;}
.y66{bottom:607.613333pt;}
.ye1{bottom:611.933333pt;}
.ycc{bottom:615.453333pt;}
.y114{bottom:616.413333pt;}
.y65{bottom:625.373333pt;}
.y91{bottom:626.973333pt;}
.ydd{bottom:631.773333pt;}
.ycb{bottom:633.213333pt;}
.y113{bottom:634.013333pt;}
.y64{bottom:642.973333pt;}
.y90{bottom:644.573333pt;}
.yca{bottom:650.813333pt;}
.y112{bottom:651.613333pt;}
.y63{bottom:660.573333pt;}
.y8f{bottom:662.173333pt;}
.yc9{bottom:668.413333pt;}
.y111{bottom:669.213333pt;}
.ydc{bottom:670.813333pt;}
.y62{bottom:678.173333pt;}
.y8e{bottom:679.773333pt;}
.yc8{bottom:686.013333pt;}
.y110{bottom:686.973333pt;}
.y61{bottom:695.773333pt;}
.y8d{bottom:697.533333pt;}
.yc7{bottom:700.733333pt;}
.y10f{bottom:704.573333pt;}
.y60{bottom:713.533333pt;}
.y8c{bottom:715.133333pt;}
.y10e{bottom:722.173333pt;}
.y5f{bottom:731.133333pt;}
.y8b{bottom:732.733333pt;}
.y10d{bottom:739.773333pt;}
.y5e{bottom:748.733333pt;}
.y8a{bottom:750.333333pt;}
.y10c{bottom:757.373333pt;}
.ybe{bottom:765.053333pt;}
.y5d{bottom:766.333333pt;}
.y11{bottom:767.613333pt;}
.y10b{bottom:775.133333pt;}
.y89{bottom:775.933333pt;}
.ybd{bottom:782.653333pt;}
.y5c{bottom:783.933333pt;}
.y10a{bottom:792.733333pt;}
.y88{bottom:793.693333pt;}
.y10{bottom:796.733333pt;}
.ybc{bottom:800.293333pt;}
.y5b{bottom:801.733333pt;}
.y109{bottom:810.373333pt;}
.y87{bottom:811.333333pt;}
.ybb{bottom:818.053333pt;}
.yf{bottom:819.013333pt;}
.y5a{bottom:819.333333pt;}
.y108{bottom:823.493333pt;}
.y86{bottom:828.933333pt;}
.ye{bottom:832.453333pt;}
.yba{bottom:835.653333pt;}
.y59{bottom:836.933333pt;}
.y107{bottom:842.693333pt;}
.y85{bottom:846.533333pt;}
.yd{bottom:851.813333pt;}
.yb9{bottom:853.253333pt;}
.y58{bottom:854.533333pt;}
.y84{bottom:864.133333pt;}
.yb8{bottom:870.853333pt;}
.y57{bottom:872.133333pt;}
.yc{bottom:874.053333pt;}
.y105{bottom:878.053333pt;}
.y83{bottom:881.893333pt;}
.yb7{bottom:888.453333pt;}
.y56{bottom:889.893333pt;}
.yb6{bottom:901.733333pt;}
.yb{bottom:902.213333pt;}
.y55{bottom:907.493333pt;}
.y104{bottom:913.253333pt;}
.yb5{bottom:919.333333pt;}
.y54{bottom:925.093333pt;}
.y9{bottom:926.053333pt;}
.y100{bottom:933.093333pt;}
.yb4{bottom:936.933333pt;}
.y1{bottom:940.613333pt;}
.y53{bottom:942.693333pt;}
.y102{bottom:952.933333pt;}
.yb3{bottom:954.533333pt;}
.y52{bottom:960.293333pt;}
.yb2{bottom:972.133333pt;}
.y51{bottom:978.053333pt;}
.yb1{bottom:989.893333pt;}
.y50{bottom:995.653333pt;}
.yb0{bottom:1007.493333pt;}
.y4f{bottom:1013.253333pt;}
.y4e{bottom:1039.840000pt;}
.y4d{bottom:1060.160000pt;}
.h15{height:17.600000pt;}
.h16{height:17.632000pt;}
.h17{height:17.760000pt;}
.h18{height:19.200000pt;}
.h1b{height:19.232000pt;}
.hd{height:23.200000pt;}
.hb{height:24.131250pt;}
.h1f{height:35.200000pt;}
.h20{height:35.360000pt;}
.hc{height:37.090625pt;}
.h10{height:37.479688pt;}
.h19{height:38.400000pt;}
.h21{height:38.672812pt;}
.h1e{height:39.040000pt;}
.h9{height:41.543750pt;}
.he{height:42.691250pt;}
.h7{height:43.038750pt;}
.h4{height:43.355000pt;}
.h11{height:43.782500pt;}
.h12{height:45.961250pt;}
.h5{height:47.125000pt;}
.ha{height:47.310625pt;}
.h14{height:47.898125pt;}
.h3{height:55.136250pt;}
.h1c{height:57.600000pt;}
.h1a{height:57.632000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h13{height:64.538125pt;}
.h1d{height:76.800000pt;}
.h2{height:133.946667pt;}
.hf{height:350.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:56.640000pt;}
.w14{width:56.672000pt;}
.w17{width:56.800000pt;}
.w18{width:56.832000pt;}
.w19{width:66.240000pt;}
.w15{width:67.680000pt;}
.wd{width:90.112000pt;}
.wf{width:96.000000pt;}
.w10{width:104.352000pt;}
.w3{width:112.352000pt;}
.w11{width:122.592000pt;}
.w12{width:127.072000pt;}
.wc{width:133.152000pt;}
.wa{width:140.800000pt;}
.w9{width:153.786667pt;}
.w7{width:154.746667pt;}
.w8{width:166.906667pt;}
.wb{width:175.866667pt;}
.we{width:450.013333pt;}
.w13{width:530.813333pt;}
.w6{width:538.693333pt;}
.w2{width:584.133333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.040000pt;}
.x1{left:48.640000pt;}
.x5{left:50.240000pt;}
.x11{left:56.319988pt;}
.xe{left:59.839988pt;}
.x14{left:60.799988pt;}
.x26{left:71.999988pt;}
.x9{left:78.272000pt;}
.x1c{left:83.552000pt;}
.x27{left:96.031988pt;}
.x1d{left:179.546667pt;}
.x17{left:193.466667pt;}
.x1e{left:236.226667pt;}
.xf{left:242.786655pt;}
.xa{left:245.186667pt;}
.x12{left:269.666655pt;}
.x16{left:278.466655pt;}
.x18{left:283.586667pt;}
.x7{left:285.666655pt;}
.x1f{left:303.906667pt;}
.x20{left:360.546667pt;}
.x19{left:379.586667pt;}
.xb{left:398.973333pt;}
.x8{left:403.293322pt;}
.x21{left:417.213333pt;}
.x22{left:474.013333pt;}
.x1a{left:483.933333pt;}
.x23{left:530.653333pt;}
.xc{left:539.773333pt;}
.x24{left:587.493333pt;}
.x6{left:588.933333pt;}
.x1b{left:606.533333pt;}
.x13{left:624.933322pt;}
.x10{left:625.893322pt;}
.x3{left:632.773333pt;}
.xd{left:639.013322pt;}
.x25{left:644.133333pt;}
.x4{left:646.693322pt;}
.x15{left:664.933322pt;}
}




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