
    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_3e503a119acf504ab78cfefa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_27ecb649bf9beb584b25b551.woff2')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_385a2de81fb97398c6a12b9a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f0d655a28516def2af45eac9.woff2')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_406bb0f5b54139c95db27260.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_00d34bc74afa9dbd5e8198f7.woff2')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_d2f3590c45b7d21c66cb8968.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fc37bcdca4ac9fd978c701f0.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a336867d5fe9a48da852131e.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.918000px;}
.ls20{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.198600px;}
.ls1c{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.153360px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.189600px;}
.ls2{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.233280px;}
.ls8{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls1e{letter-spacing:1.620000px;}
.ls1d{letter-spacing:5.940000px;}
.ls1f{letter-spacing:16.506720px;}
.ls19{letter-spacing:33.210720px;}
.ls1a{letter-spacing:36.810720px;}
.ls11{letter-spacing:46.026720px;}
.lse{letter-spacing:64.026720px;}
.ls18{letter-spacing:151.146720px;}
.ls17{letter-spacing:167.706720px;}
.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;}
}
.ws5{word-spacing:-24.129600px;}
.ws4{word-spacing:-23.940000px;}
.ws0{word-spacing:-17.818560px;}
.ws2{word-spacing:-17.619960px;}
.ws1{word-spacing:-16.900560px;}
.wsc{word-spacing:-16.691760px;}
.ws3{word-spacing:-16.493760px;}
.wsd{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.wsf{word-spacing:-14.680200px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._16{margin-left:-2802.140640px;}
._21{margin-left:-2139.422880px;}
._20{margin-left:-1635.419280px;}
._5{margin-left:-1432.736640px;}
._4{margin-left:-1087.505280px;}
._22{margin-left:-936.143280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-551.864400px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._23{margin-left:-407.643120px;}
._1c{margin-left:-258.480000px;}
._1d{margin-left:-171.218880px;}
._19{margin-left:-145.362000px;}
._1a{margin-left:-126.097200px;}
._1b{margin-left:-119.453760px;}
._1f{margin-left:-99.161280px;}
._17{margin-left:-84.239280px;}
._18{margin-left:-68.922000px;}
._1e{margin-left:-65.453760px;}
._12{margin-left:-3.967920px;}
._f{margin-left:-2.728080px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._10{width:3.143040px;}
._9{width:4.414560px;}
._13{width:5.916240px;}
._11{width:7.643520px;}
._24{width:9.071280px;}
._27{width:10.077120px;}
._a{width:11.278080px;}
._b{width:12.329760px;}
._15{width:13.824240px;}
._14{width:16.015680px;}
._c{width:17.172000px;}
._e{width:18.419760px;}
._2f{width:19.461360px;}
._d{width:20.747760px;}
._25{width:24.163920px;}
._26{width:25.377120px;}
._2b{width:27.549360px;}
._2c{width:41.195520px;}
._2d{width:42.240720px;}
._2e{width:44.136720px;}
._8{width:64.797840px;}
._2a{width:103.504320px;}
._29{width:136.611360px;}
._28{width:186.120000px;}
.fc7{color:rgb(17,85,204);}
.fc6{color:rgb(0,105,166);}
.fc3{color:rgb(91,155,213);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yf8{bottom:5.760000px;}
.y150{bottom:5.790000px;}
.yfa{bottom:5.940000px;}
.yb{bottom:6.120000px;}
.ya{bottom:8.100000px;}
.y14a{bottom:25.560000px;}
.y14f{bottom:25.590000px;}
.y14d{bottom:25.740000px;}
.y6{bottom:26.100000px;}
.y9{bottom:32.400000px;}
.y5{bottom:45.900000px;}
.y8{bottom:59.250000px;}
.yd{bottom:59.760000px;}
.y4{bottom:65.730000px;}
.y3{bottom:85.530000px;}
.y101{bottom:87.300000px;}
.y3c{bottom:87.840000px;}
.y74{bottom:92.160000px;}
.y7{bottom:93.450000px;}
.ya9{bottom:96.480000px;}
.yaf{bottom:97.560000px;}
.ydc{bottom:99.720000px;}
.y179{bottom:101.160000px;}
.y2{bottom:105.330000px;}
.y128{bottom:105.840000px;}
.y3b{bottom:107.640000px;}
.y1a4{bottom:111.960000px;}
.y73{bottom:113.040000px;}
.ya8{bottom:116.280000px;}
.yae{bottom:117.360000px;}
.ydb{bottom:119.700000px;}
.y178{bottom:120.960000px;}
.y100{bottom:122.220000px;}
.y127{bottom:125.640000px;}
.y151{bottom:126.000000px;}
.y3a{bottom:127.440000px;}
.y1a3{bottom:131.760000px;}
.y72{bottom:133.920000px;}
.ya7{bottom:136.080000px;}
.yad{bottom:137.160000px;}
.yda{bottom:139.500000px;}
.y177{bottom:142.020000px;}
.y126{bottom:145.620000px;}
.y39{bottom:147.240000px;}
.y14e{bottom:148.320000px;}
.y1a2{bottom:151.560000px;}
.y71{bottom:154.830000px;}
.ya6{bottom:155.910000px;}
.yac{bottom:156.990000px;}
.yd9{bottom:159.330000px;}
.y176{bottom:161.850000px;}
.y125{bottom:165.450000px;}
.y38{bottom:167.250000px;}
.y1a1{bottom:171.570000px;}
.y70{bottom:175.710000px;}
.yab{bottom:176.790000px;}
.yd8{bottom:179.130000px;}
.y175{bottom:182.730000px;}
.y124{bottom:185.250000px;}
.y37{bottom:187.050000px;}
.y1a0{bottom:191.370000px;}
.yff{bottom:191.910000px;}
.y6f{bottom:195.690000px;}
.yaa{bottom:196.770000px;}
.yd7{bottom:198.930000px;}
.y174{bottom:202.530000px;}
.y14c{bottom:202.890000px;}
.y36{bottom:206.850000px;}
.y123{bottom:207.570000px;}
.y19f{bottom:211.170000px;}
.ya5{bottom:215.490000px;}
.y6e{bottom:216.570000px;}
.yd6{bottom:218.910000px;}
.y173{bottom:223.410000px;}
.y35{bottom:226.650000px;}
.y19e{bottom:230.970000px;}
.ya4{bottom:235.290000px;}
.y6d{bottom:236.370000px;}
.yd5{bottom:238.710000px;}
.y122{bottom:242.310000px;}
.y172{bottom:243.210000px;}
.y34{bottom:246.450000px;}
.y19d{bottom:250.770000px;}
.ya3{bottom:255.090000px;}
.y6c{bottom:256.170000px;}
.y14b{bottom:257.610000px;}
.yd4{bottom:258.510000px;}
.yfe{bottom:262.290000px;}
.y171{bottom:264.270000px;}
.y33{bottom:266.430000px;}
.y19c{bottom:270.750000px;}
.ya2{bottom:274.890000px;}
.y6b{bottom:275.970000px;}
.y121{bottom:277.230000px;}
.yd3{bottom:278.310000px;}
.y170{bottom:284.070000px;}
.y32{bottom:286.230000px;}
.y19b{bottom:290.550000px;}
.ya1{bottom:294.870000px;}
.y6a{bottom:295.950000px;}
.yfd{bottom:296.130000px;}
.yd2{bottom:298.110000px;}
.y16f{bottom:304.950000px;}
.y31{bottom:306.030000px;}
.y19a{bottom:310.350000px;}
.y120{bottom:311.970000px;}
.y149{bottom:312.330000px;}
.ya0{bottom:314.670000px;}
.y69{bottom:315.750000px;}
.yfc{bottom:315.930000px;}
.yd1{bottom:318.090000px;}
.y16e{bottom:324.750000px;}
.y30{bottom:325.830000px;}
.y199{bottom:330.150000px;}
.y9f{bottom:334.470000px;}
.y68{bottom:335.550000px;}
.yfb{bottom:335.730000px;}
.yd0{bottom:337.890000px;}
.y2f{bottom:345.630000px;}
.y11f{bottom:346.890000px;}
.y198{bottom:349.950000px;}
.y9e{bottom:354.270000px;}
.y67{bottom:355.350000px;}
.ycf{bottom:357.690000px;}
.yf9{bottom:358.050000px;}
.y2e{bottom:365.610000px;}
.y148{bottom:367.770000px;}
.y197{bottom:369.930000px;}
.y9d{bottom:374.070000px;}
.y66{bottom:375.150000px;}
.yce{bottom:377.490000px;}
.y11e{bottom:381.630000px;}
.y2d{bottom:385.410000px;}
.y196{bottom:389.730000px;}
.yf7{bottom:393.690000px;}
.y9c{bottom:394.050000px;}
.y65{bottom:395.130000px;}
.ycd{bottom:397.290000px;}
.y147{bottom:401.655000px;}
.y2c{bottom:405.255000px;}
.y195{bottom:409.575000px;}
.y9b{bottom:413.895000px;}
.y64{bottom:414.975000px;}
.ycc{bottom:417.135000px;}
.y11d{bottom:417.315000px;}
.y146{bottom:421.455000px;}
.y2b{bottom:425.055000px;}
.yf6{bottom:427.575000px;}
.y194{bottom:429.375000px;}
.y9a{bottom:433.695000px;}
.y63{bottom:434.775000px;}
.ycb{bottom:437.115000px;}
.y145{bottom:441.255000px;}
.y2a{bottom:444.855000px;}
.y16d{bottom:445.935000px;}
.yf5{bottom:447.375000px;}
.y193{bottom:449.175000px;}
.y11c{bottom:451.155000px;}
.y99{bottom:453.495000px;}
.y62{bottom:454.575000px;}
.yca{bottom:456.915000px;}
.y144{bottom:461.055000px;}
.y29{bottom:464.835000px;}
.y16c{bottom:466.995000px;}
.yf4{bottom:467.355000px;}
.y192{bottom:469.155000px;}
.y11b{bottom:471.135000px;}
.y98{bottom:473.295000px;}
.y61{bottom:474.375000px;}
.y143{bottom:481.035000px;}
.y28{bottom:484.635000px;}
.yc9{bottom:485.715000px;}
.yf3{bottom:487.155000px;}
.y16b{bottom:487.875000px;}
.y191{bottom:488.955000px;}
.y97{bottom:493.275000px;}
.y60{bottom:494.355000px;}
.y11a{bottom:499.935000px;}
.y142{bottom:500.835000px;}
.y27{bottom:504.435000px;}
.yc8{bottom:505.515000px;}
.yf2{bottom:506.955000px;}
.y16a{bottom:508.755000px;}
.y96{bottom:513.075000px;}
.y5f{bottom:514.155000px;}
.y119{bottom:519.735000px;}
.y141{bottom:520.635000px;}
.y26{bottom:524.235000px;}
.yc7{bottom:525.315000px;}
.yf1{bottom:526.755000px;}
.y169{bottom:528.555000px;}
.y95{bottom:532.875000px;}
.y5e{bottom:533.955000px;}
.y118{bottom:539.535000px;}
.y140{bottom:540.435000px;}
.y25{bottom:544.035000px;}
.yc6{bottom:545.295000px;}
.yf0{bottom:546.555000px;}
.y190{bottom:548.355000px;}
.y168{bottom:549.435000px;}
.y94{bottom:552.675000px;}
.y5d{bottom:553.755000px;}
.y117{bottom:559.335000px;}
.y13f{bottom:560.235000px;}
.y24{bottom:564.015000px;}
.y18f{bottom:568.335000px;}
.y167{bottom:569.415000px;}
.y93{bottom:572.475000px;}
.y5c{bottom:573.555000px;}
.yc5{bottom:574.095000px;}
.yef{bottom:575.535000px;}
.y116{bottom:579.315000px;}
.y13e{bottom:580.215000px;}
.y23{bottom:583.815000px;}
.y18e{bottom:588.135000px;}
.y166{bottom:589.215000px;}
.y92{bottom:592.455000px;}
.y5b{bottom:593.535000px;}
.yc4{bottom:593.895000px;}
.yee{bottom:595.335000px;}
.y115{bottom:601.455000px;}
.y22{bottom:603.615000px;}
.y18d{bottom:607.935000px;}
.y13d{bottom:609.015000px;}
.y91{bottom:612.255000px;}
.y5a{bottom:613.335000px;}
.yc3{bottom:613.695000px;}
.yed{bottom:615.135000px;}
.y21{bottom:625.755000px;}
.y18c{bottom:627.735000px;}
.y13c{bottom:628.815000px;}
.y90{bottom:632.055000px;}
.y59{bottom:633.135000px;}
.yc2{bottom:633.495000px;}
.yec{bottom:634.935000px;}
.y114{bottom:636.375000px;}
.y20{bottom:645.555000px;}
.y18b{bottom:647.535000px;}
.y13b{bottom:648.615000px;}
.y8f{bottom:651.885000px;}
.y58{bottom:652.965000px;}
.yeb{bottom:654.765000px;}
.yc1{bottom:662.505000px;}
.y1f{bottom:665.385000px;}
.y18a{bottom:667.545000px;}
.y13a{bottom:668.445000px;}
.y165{bottom:668.625000px;}
.y113{bottom:671.145000px;}
.y8e{bottom:671.685000px;}
.y57{bottom:672.765000px;}
.yea{bottom:674.745000px;}
.yc0{bottom:682.305000px;}
.y1e{bottom:685.185000px;}
.y189{bottom:687.345000px;}
.y164{bottom:688.425000px;}
.y139{bottom:690.765000px;}
.y8d{bottom:691.665000px;}
.y56{bottom:692.745000px;}
.ye9{bottom:694.545000px;}
.ybf{bottom:702.105000px;}
.y1d{bottom:705.165000px;}
.y112{bottom:706.065000px;}
.y188{bottom:707.145000px;}
.y163{bottom:708.225000px;}
.y8c{bottom:711.465000px;}
.y55{bottom:712.545000px;}
.ye8{bottom:714.345000px;}
.ybe{bottom:721.905000px;}
.y1c{bottom:724.965000px;}
.y138{bottom:726.405000px;}
.y187{bottom:726.945000px;}
.y162{bottom:728.025000px;}
.y8b{bottom:731.265000px;}
.y54{bottom:732.345000px;}
.ye7{bottom:734.145000px;}
.y111{bottom:740.985000px;}
.y1b{bottom:744.765000px;}
.y186{bottom:746.745000px;}
.y161{bottom:747.825000px;}
.ybd{bottom:750.705000px;}
.y8a{bottom:751.065000px;}
.y53{bottom:752.145000px;}
.ye6{bottom:753.945000px;}
.y137{bottom:760.245000px;}
.y1a{bottom:764.565000px;}
.y185{bottom:766.725000px;}
.y160{bottom:767.625000px;}
.ybc{bottom:770.685000px;}
.y89{bottom:770.865000px;}
.y52{bottom:771.945000px;}
.ye5{bottom:773.925000px;}
.y110{bottom:775.725000px;}
.y136{bottom:780.045000px;}
.y19{bottom:784.365000px;}
.y184{bottom:786.525000px;}
.y15f{bottom:787.605000px;}
.ybb{bottom:790.485000px;}
.y88{bottom:790.845000px;}
.y51{bottom:791.925000px;}
.ye4{bottom:793.725000px;}
.y135{bottom:800.025000px;}
.y18{bottom:804.345000px;}
.y183{bottom:806.325000px;}
.y15e{bottom:807.405000px;}
.yba{bottom:810.285000px;}
.y87{bottom:810.645000px;}
.y10f{bottom:811.365000px;}
.y50{bottom:811.725000px;}
.ye3{bottom:813.525000px;}
.y134{bottom:819.825000px;}
.y17{bottom:824.145000px;}
.y182{bottom:826.125000px;}
.y15d{bottom:827.205000px;}
.y86{bottom:830.445000px;}
.yb9{bottom:831.165000px;}
.y4f{bottom:831.525000px;}
.ye2{bottom:833.325000px;}
.y16{bottom:843.945000px;}
.y10e{bottom:845.205000px;}
.y181{bottom:845.925000px;}
.y15c{bottom:847.005000px;}
.y133{bottom:848.625000px;}
.y85{bottom:850.245000px;}
.y4e{bottom:851.325000px;}
.yb8{bottom:852.045000px;}
.ye1{bottom:853.125000px;}
.y15{bottom:863.745000px;}
.y10d{bottom:865.005000px;}
.y180{bottom:865.905000px;}
.y15b{bottom:866.805000px;}
.y132{bottom:868.425000px;}
.y84{bottom:870.045000px;}
.y4d{bottom:871.125000px;}
.yb7{bottom:873.105000px;}
.y10c{bottom:884.805000px;}
.y17f{bottom:885.705000px;}
.y15a{bottom:886.785000px;}
.y131{bottom:888.225000px;}
.y83{bottom:890.025000px;}
.y4c{bottom:891.105000px;}
.yb6{bottom:892.905000px;}
.y14{bottom:894.885000px;}
.y17e{bottom:905.550000px;}
.y159{bottom:906.630000px;}
.y130{bottom:908.250000px;}
.y82{bottom:909.870000px;}
.y4b{bottom:910.950000px;}
.yb5{bottom:912.750000px;}
.y10b{bottom:913.830000px;}
.ye0{bottom:921.750000px;}
.y17d{bottom:925.350000px;}
.y158{bottom:926.430000px;}
.y12f{bottom:928.050000px;}
.y13{bottom:928.950000px;}
.y81{bottom:929.670000px;}
.y4a{bottom:930.750000px;}
.y10a{bottom:933.630000px;}
.yb4{bottom:941.550000px;}
.y17c{bottom:945.150000px;}
.y157{bottom:946.230000px;}
.y12e{bottom:947.850000px;}
.y12{bottom:948.750000px;}
.y80{bottom:949.470000px;}
.y49{bottom:950.550000px;}
.y109{bottom:953.430000px;}
.yb3{bottom:961.350000px;}
.y11{bottom:963.870000px;}
.y17b{bottom:964.950000px;}
.y156{bottom:966.030000px;}
.y12d{bottom:967.650000px;}
.y7f{bottom:969.270000px;}
.y48{bottom:970.350000px;}
.y108{bottom:973.230000px;}
.yb2{bottom:981.330000px;}
.y10{bottom:985.290000px;}
.y155{bottom:986.010000px;}
.y7e{bottom:989.250000px;}
.y12c{bottom:989.970000px;}
.y47{bottom:990.330000px;}
.y107{bottom:993.030000px;}
.yb1{bottom:1001.130000px;}
.y154{bottom:1005.810000px;}
.yf{bottom:1008.690000px;}
.y7d{bottom:1009.050000px;}
.y46{bottom:1010.130000px;}
.y106{bottom:1015.350000px;}
.yb0{bottom:1020.930000px;}
.y12b{bottom:1024.890000px;}
.y153{bottom:1026.690000px;}
.y7c{bottom:1028.850000px;}
.y45{bottom:1029.930000px;}
.ye{bottom:1040.370000px;}
.ydf{bottom:1040.730000px;}
.y152{bottom:1047.570000px;}
.y7b{bottom:1048.650000px;}
.y44{bottom:1049.730000px;}
.y105{bottom:1050.270000px;}
.y12a{bottom:1059.630000px;}
.yde{bottom:1060.530000px;}
.y17a{bottom:1067.370000px;}
.y7a{bottom:1068.450000px;}
.y43{bottom:1069.530000px;}
.yc{bottom:1070.250000px;}
.ydd{bottom:1080.510000px;}
.y104{bottom:1085.010000px;}
.y1{bottom:1088.070000px;}
.y79{bottom:1088.430000px;}
.y42{bottom:1089.510000px;}
.y129{bottom:1095.270000px;}
.y78{bottom:1108.230000px;}
.y41{bottom:1109.310000px;}
.y103{bottom:1119.930000px;}
.y77{bottom:1128.030000px;}
.y40{bottom:1129.110000px;}
.y76{bottom:1147.860000px;}
.y3f{bottom:1148.940000px;}
.y102{bottom:1154.700000px;}
.y75{bottom:1167.660000px;}
.y3e{bottom:1168.740000px;}
.y3d{bottom:1197.180000px;}
.h12{height:19.800000px;}
.h10{height:19.836000px;}
.h11{height:19.980000px;}
.h13{height:20.016000px;}
.hb{height:27.147656px;}
.he{height:38.100586px;}
.h14{height:39.600000px;}
.h16{height:39.636000px;}
.h15{height:39.780000px;}
.hd{height:41.726953px;}
.h9{height:42.164648px;}
.hf{height:43.506914px;}
.hc{height:49.255313px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.ha{height:53.224453px;}
.h5{height:55.987031px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:46.800000px;}
.w1c{width:52.380000px;}
.w1b{width:52.560000px;}
.w1e{width:52.596000px;}
.w8{width:52.956000px;}
.w13{width:58.860000px;}
.w1a{width:60.156000px;}
.w11{width:78.156000px;}
.w7{width:80.280000px;}
.wf{width:82.296000px;}
.wc{width:87.840000px;}
.w15{width:89.676000px;}
.w6{width:93.456000px;}
.w1d{width:99.756000px;}
.w10{width:108.360000px;}
.w2{width:116.676000px;}
.wb{width:119.736000px;}
.wd{width:120.636000px;}
.w17{width:132.840000px;}
.w1f{width:145.836000px;}
.w19{width:162.390000px;}
.w4{width:167.610000px;}
.w18{width:180.390000px;}
.w16{width:180.570000px;}
.w9{width:198.210000px;}
.wa{width:207.570000px;}
.we{width:223.410000px;}
.w21{width:253.875000px;}
.w12{width:275.475000px;}
.w20{width:401.115000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.560000px;}
.x4{left:13.500000px;}
.xb{left:19.260000px;}
.xd{left:31.680000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.x1{left:54.000000px;}
.x11{left:57.779987px;}
.x9{left:76.140000px;}
.xf{left:80.999987px;}
.x2{left:97.230000px;}
.x10{left:108.035987px;}
.x24{left:118.476000px;}
.x8{left:120.285000px;}
.xc{left:148.170000px;}
.x18{left:162.029987px;}
.x5{left:170.670000px;}
.x19{left:178.590000px;}
.x1d{left:200.370000px;}
.x7{left:201.645000px;}
.x20{left:211.170000px;}
.x12{left:216.029987px;}
.x13{left:234.030000px;}
.x28{left:243.930000px;}
.x25{left:299.055000px;}
.x29{left:304.095000px;}
.x15{left:327.495000px;}
.x2a{left:356.655000px;}
.x1a{left:386.175000px;}
.x16{left:407.775000px;}
.x2b{left:409.035000px;}
.x1e{left:423.795000px;}
.x26{left:431.895000px;}
.x17{left:460.725000px;}
.x21{left:486.645000px;}
.x1b{left:505.905000px;}
.x2c{left:508.785000px;}
.x22{left:545.505000px;}
.x23{left:592.305000px;}
.x1c{left:593.745000px;}
.x2d{left:596.625000px;}
.x2e{left:600.945000px;}
.x27{left:612.285000px;}
.x1f{left:614.445000px;}
.xa{left:670.830000px;}
.xe{left:827.099987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls20{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.176533pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.136320pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.168533pt;}
.ls2{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls8{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:5.280000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls19{letter-spacing:29.520640pt;}
.ls1a{letter-spacing:32.720640pt;}
.ls11{letter-spacing:40.912640pt;}
.lse{letter-spacing:56.912640pt;}
.ls18{letter-spacing:134.352640pt;}
.ls17{letter-spacing:149.072640pt;}
.ws5{word-spacing:-21.448533pt;}
.ws4{word-spacing:-21.280000pt;}
.ws0{word-spacing:-15.838720pt;}
.ws2{word-spacing:-15.662187pt;}
.ws1{word-spacing:-15.022720pt;}
.wsc{word-spacing:-14.837120pt;}
.ws3{word-spacing:-14.661120pt;}
.wsd{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.wsf{word-spacing:-13.049067pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._16{margin-left:-2490.791680pt;}
._21{margin-left:-1901.709227pt;}
._20{margin-left:-1453.706027pt;}
._5{margin-left:-1273.543680pt;}
._4{margin-left:-966.671360pt;}
._22{margin-left:-832.127360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-490.546133pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._23{margin-left:-362.349440pt;}
._1c{margin-left:-229.760000pt;}
._1d{margin-left:-152.194560pt;}
._19{margin-left:-129.210667pt;}
._1a{margin-left:-112.086400pt;}
._1b{margin-left:-106.181120pt;}
._1f{margin-left:-88.143360pt;}
._17{margin-left:-74.879360pt;}
._18{margin-left:-61.264000pt;}
._1e{margin-left:-58.181120pt;}
._12{margin-left:-3.527040pt;}
._f{margin-left:-2.424960pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._10{width:2.793813pt;}
._9{width:3.924053pt;}
._13{width:5.258880pt;}
._11{width:6.794240pt;}
._24{width:8.063360pt;}
._27{width:8.957440pt;}
._a{width:10.024960pt;}
._b{width:10.959787pt;}
._15{width:12.288213pt;}
._14{width:14.236160pt;}
._c{width:15.264000pt;}
._e{width:16.373120pt;}
._2f{width:17.298987pt;}
._d{width:18.442453pt;}
._25{width:21.479040pt;}
._26{width:22.557440pt;}
._2b{width:24.488320pt;}
._2c{width:36.618240pt;}
._2d{width:37.547307pt;}
._2e{width:39.232640pt;}
._8{width:57.598080pt;}
._2a{width:92.003840pt;}
._29{width:121.432320pt;}
._28{width:165.440000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yf8{bottom:5.120000pt;}
.y150{bottom:5.146667pt;}
.yfa{bottom:5.280000pt;}
.yb{bottom:5.440000pt;}
.ya{bottom:7.200000pt;}
.y14a{bottom:22.720000pt;}
.y14f{bottom:22.746667pt;}
.y14d{bottom:22.880000pt;}
.y6{bottom:23.200000pt;}
.y9{bottom:28.800000pt;}
.y5{bottom:40.800000pt;}
.y8{bottom:52.666667pt;}
.yd{bottom:53.120000pt;}
.y4{bottom:58.426667pt;}
.y3{bottom:76.026667pt;}
.y101{bottom:77.600000pt;}
.y3c{bottom:78.080000pt;}
.y74{bottom:81.920000pt;}
.y7{bottom:83.066667pt;}
.ya9{bottom:85.760000pt;}
.yaf{bottom:86.720000pt;}
.ydc{bottom:88.640000pt;}
.y179{bottom:89.920000pt;}
.y2{bottom:93.626667pt;}
.y128{bottom:94.080000pt;}
.y3b{bottom:95.680000pt;}
.y1a4{bottom:99.520000pt;}
.y73{bottom:100.480000pt;}
.ya8{bottom:103.360000pt;}
.yae{bottom:104.320000pt;}
.ydb{bottom:106.400000pt;}
.y178{bottom:107.520000pt;}
.y100{bottom:108.640000pt;}
.y127{bottom:111.680000pt;}
.y151{bottom:112.000000pt;}
.y3a{bottom:113.280000pt;}
.y1a3{bottom:117.120000pt;}
.y72{bottom:119.040000pt;}
.ya7{bottom:120.960000pt;}
.yad{bottom:121.920000pt;}
.yda{bottom:124.000000pt;}
.y177{bottom:126.240000pt;}
.y126{bottom:129.440000pt;}
.y39{bottom:130.880000pt;}
.y14e{bottom:131.840000pt;}
.y1a2{bottom:134.720000pt;}
.y71{bottom:137.626667pt;}
.ya6{bottom:138.586667pt;}
.yac{bottom:139.546667pt;}
.yd9{bottom:141.626667pt;}
.y176{bottom:143.866667pt;}
.y125{bottom:147.066667pt;}
.y38{bottom:148.666667pt;}
.y1a1{bottom:152.506667pt;}
.y70{bottom:156.186667pt;}
.yab{bottom:157.146667pt;}
.yd8{bottom:159.226667pt;}
.y175{bottom:162.426667pt;}
.y124{bottom:164.666667pt;}
.y37{bottom:166.266667pt;}
.y1a0{bottom:170.106667pt;}
.yff{bottom:170.586667pt;}
.y6f{bottom:173.946667pt;}
.yaa{bottom:174.906667pt;}
.yd7{bottom:176.826667pt;}
.y174{bottom:180.026667pt;}
.y14c{bottom:180.346667pt;}
.y36{bottom:183.866667pt;}
.y123{bottom:184.506667pt;}
.y19f{bottom:187.706667pt;}
.ya5{bottom:191.546667pt;}
.y6e{bottom:192.506667pt;}
.yd6{bottom:194.586667pt;}
.y173{bottom:198.586667pt;}
.y35{bottom:201.466667pt;}
.y19e{bottom:205.306667pt;}
.ya4{bottom:209.146667pt;}
.y6d{bottom:210.106667pt;}
.yd5{bottom:212.186667pt;}
.y122{bottom:215.386667pt;}
.y172{bottom:216.186667pt;}
.y34{bottom:219.066667pt;}
.y19d{bottom:222.906667pt;}
.ya3{bottom:226.746667pt;}
.y6c{bottom:227.706667pt;}
.y14b{bottom:228.986667pt;}
.yd4{bottom:229.786667pt;}
.yfe{bottom:233.146667pt;}
.y171{bottom:234.906667pt;}
.y33{bottom:236.826667pt;}
.y19c{bottom:240.666667pt;}
.ya2{bottom:244.346667pt;}
.y6b{bottom:245.306667pt;}
.y121{bottom:246.426667pt;}
.yd3{bottom:247.386667pt;}
.y170{bottom:252.506667pt;}
.y32{bottom:254.426667pt;}
.y19b{bottom:258.266667pt;}
.ya1{bottom:262.106667pt;}
.y6a{bottom:263.066667pt;}
.yfd{bottom:263.226667pt;}
.yd2{bottom:264.986667pt;}
.y16f{bottom:271.066667pt;}
.y31{bottom:272.026667pt;}
.y19a{bottom:275.866667pt;}
.y120{bottom:277.306667pt;}
.y149{bottom:277.626667pt;}
.ya0{bottom:279.706667pt;}
.y69{bottom:280.666667pt;}
.yfc{bottom:280.826667pt;}
.yd1{bottom:282.746667pt;}
.y16e{bottom:288.666667pt;}
.y30{bottom:289.626667pt;}
.y199{bottom:293.466667pt;}
.y9f{bottom:297.306667pt;}
.y68{bottom:298.266667pt;}
.yfb{bottom:298.426667pt;}
.yd0{bottom:300.346667pt;}
.y2f{bottom:307.226667pt;}
.y11f{bottom:308.346667pt;}
.y198{bottom:311.066667pt;}
.y9e{bottom:314.906667pt;}
.y67{bottom:315.866667pt;}
.ycf{bottom:317.946667pt;}
.yf9{bottom:318.266667pt;}
.y2e{bottom:324.986667pt;}
.y148{bottom:326.906667pt;}
.y197{bottom:328.826667pt;}
.y9d{bottom:332.506667pt;}
.y66{bottom:333.466667pt;}
.yce{bottom:335.546667pt;}
.y11e{bottom:339.226667pt;}
.y2d{bottom:342.586667pt;}
.y196{bottom:346.426667pt;}
.yf7{bottom:349.946667pt;}
.y9c{bottom:350.266667pt;}
.y65{bottom:351.226667pt;}
.ycd{bottom:353.146667pt;}
.y147{bottom:357.026667pt;}
.y2c{bottom:360.226667pt;}
.y195{bottom:364.066667pt;}
.y9b{bottom:367.906667pt;}
.y64{bottom:368.866667pt;}
.ycc{bottom:370.786667pt;}
.y11d{bottom:370.946667pt;}
.y146{bottom:374.626667pt;}
.y2b{bottom:377.826667pt;}
.yf6{bottom:380.066667pt;}
.y194{bottom:381.666667pt;}
.y9a{bottom:385.506667pt;}
.y63{bottom:386.466667pt;}
.ycb{bottom:388.546667pt;}
.y145{bottom:392.226667pt;}
.y2a{bottom:395.426667pt;}
.y16d{bottom:396.386667pt;}
.yf5{bottom:397.666667pt;}
.y193{bottom:399.266667pt;}
.y11c{bottom:401.026667pt;}
.y99{bottom:403.106667pt;}
.y62{bottom:404.066667pt;}
.yca{bottom:406.146667pt;}
.y144{bottom:409.826667pt;}
.y29{bottom:413.186667pt;}
.y16c{bottom:415.106667pt;}
.yf4{bottom:415.426667pt;}
.y192{bottom:417.026667pt;}
.y11b{bottom:418.786667pt;}
.y98{bottom:420.706667pt;}
.y61{bottom:421.666667pt;}
.y143{bottom:427.586667pt;}
.y28{bottom:430.786667pt;}
.yc9{bottom:431.746667pt;}
.yf3{bottom:433.026667pt;}
.y16b{bottom:433.666667pt;}
.y191{bottom:434.626667pt;}
.y97{bottom:438.466667pt;}
.y60{bottom:439.426667pt;}
.y11a{bottom:444.386667pt;}
.y142{bottom:445.186667pt;}
.y27{bottom:448.386667pt;}
.yc8{bottom:449.346667pt;}
.yf2{bottom:450.626667pt;}
.y16a{bottom:452.226667pt;}
.y96{bottom:456.066667pt;}
.y5f{bottom:457.026667pt;}
.y119{bottom:461.986667pt;}
.y141{bottom:462.786667pt;}
.y26{bottom:465.986667pt;}
.yc7{bottom:466.946667pt;}
.yf1{bottom:468.226667pt;}
.y169{bottom:469.826667pt;}
.y95{bottom:473.666667pt;}
.y5e{bottom:474.626667pt;}
.y118{bottom:479.586667pt;}
.y140{bottom:480.386667pt;}
.y25{bottom:483.586667pt;}
.yc6{bottom:484.706667pt;}
.yf0{bottom:485.826667pt;}
.y190{bottom:487.426667pt;}
.y168{bottom:488.386667pt;}
.y94{bottom:491.266667pt;}
.y5d{bottom:492.226667pt;}
.y117{bottom:497.186667pt;}
.y13f{bottom:497.986667pt;}
.y24{bottom:501.346667pt;}
.y18f{bottom:505.186667pt;}
.y167{bottom:506.146667pt;}
.y93{bottom:508.866667pt;}
.y5c{bottom:509.826667pt;}
.yc5{bottom:510.306667pt;}
.yef{bottom:511.586667pt;}
.y116{bottom:514.946667pt;}
.y13e{bottom:515.746667pt;}
.y23{bottom:518.946667pt;}
.y18e{bottom:522.786667pt;}
.y166{bottom:523.746667pt;}
.y92{bottom:526.626667pt;}
.y5b{bottom:527.586667pt;}
.yc4{bottom:527.906667pt;}
.yee{bottom:529.186667pt;}
.y115{bottom:534.626667pt;}
.y22{bottom:536.546667pt;}
.y18d{bottom:540.386667pt;}
.y13d{bottom:541.346667pt;}
.y91{bottom:544.226667pt;}
.y5a{bottom:545.186667pt;}
.yc3{bottom:545.506667pt;}
.yed{bottom:546.786667pt;}
.y21{bottom:556.226667pt;}
.y18c{bottom:557.986667pt;}
.y13c{bottom:558.946667pt;}
.y90{bottom:561.826667pt;}
.y59{bottom:562.786667pt;}
.yc2{bottom:563.106667pt;}
.yec{bottom:564.386667pt;}
.y114{bottom:565.666667pt;}
.y20{bottom:573.826667pt;}
.y18b{bottom:575.586667pt;}
.y13b{bottom:576.546667pt;}
.y8f{bottom:579.453333pt;}
.y58{bottom:580.413333pt;}
.yeb{bottom:582.013333pt;}
.yc1{bottom:588.893333pt;}
.y1f{bottom:591.453333pt;}
.y18a{bottom:593.373333pt;}
.y13a{bottom:594.173333pt;}
.y165{bottom:594.333333pt;}
.y113{bottom:596.573333pt;}
.y8e{bottom:597.053333pt;}
.y57{bottom:598.013333pt;}
.yea{bottom:599.773333pt;}
.yc0{bottom:606.493333pt;}
.y1e{bottom:609.053333pt;}
.y189{bottom:610.973333pt;}
.y164{bottom:611.933333pt;}
.y139{bottom:614.013333pt;}
.y8d{bottom:614.813333pt;}
.y56{bottom:615.773333pt;}
.ye9{bottom:617.373333pt;}
.ybf{bottom:624.093333pt;}
.y1d{bottom:626.813333pt;}
.y112{bottom:627.613333pt;}
.y188{bottom:628.573333pt;}
.y163{bottom:629.533333pt;}
.y8c{bottom:632.413333pt;}
.y55{bottom:633.373333pt;}
.ye8{bottom:634.973333pt;}
.ybe{bottom:641.693333pt;}
.y1c{bottom:644.413333pt;}
.y138{bottom:645.693333pt;}
.y187{bottom:646.173333pt;}
.y162{bottom:647.133333pt;}
.y8b{bottom:650.013333pt;}
.y54{bottom:650.973333pt;}
.ye7{bottom:652.573333pt;}
.y111{bottom:658.653333pt;}
.y1b{bottom:662.013333pt;}
.y186{bottom:663.773333pt;}
.y161{bottom:664.733333pt;}
.ybd{bottom:667.293333pt;}
.y8a{bottom:667.613333pt;}
.y53{bottom:668.573333pt;}
.ye6{bottom:670.173333pt;}
.y137{bottom:675.773333pt;}
.y1a{bottom:679.613333pt;}
.y185{bottom:681.533333pt;}
.y160{bottom:682.333333pt;}
.ybc{bottom:685.053333pt;}
.y89{bottom:685.213333pt;}
.y52{bottom:686.173333pt;}
.ye5{bottom:687.933333pt;}
.y110{bottom:689.533333pt;}
.y136{bottom:693.373333pt;}
.y19{bottom:697.213333pt;}
.y184{bottom:699.133333pt;}
.y15f{bottom:700.093333pt;}
.ybb{bottom:702.653333pt;}
.y88{bottom:702.973333pt;}
.y51{bottom:703.933333pt;}
.ye4{bottom:705.533333pt;}
.y135{bottom:711.133333pt;}
.y18{bottom:714.973333pt;}
.y183{bottom:716.733333pt;}
.y15e{bottom:717.693333pt;}
.yba{bottom:720.253333pt;}
.y87{bottom:720.573333pt;}
.y10f{bottom:721.213333pt;}
.y50{bottom:721.533333pt;}
.ye3{bottom:723.133333pt;}
.y134{bottom:728.733333pt;}
.y17{bottom:732.573333pt;}
.y182{bottom:734.333333pt;}
.y15d{bottom:735.293333pt;}
.y86{bottom:738.173333pt;}
.yb9{bottom:738.813333pt;}
.y4f{bottom:739.133333pt;}
.ye2{bottom:740.733333pt;}
.y16{bottom:750.173333pt;}
.y10e{bottom:751.293333pt;}
.y181{bottom:751.933333pt;}
.y15c{bottom:752.893333pt;}
.y133{bottom:754.333333pt;}
.y85{bottom:755.773333pt;}
.y4e{bottom:756.733333pt;}
.yb8{bottom:757.373333pt;}
.ye1{bottom:758.333333pt;}
.y15{bottom:767.773333pt;}
.y10d{bottom:768.893333pt;}
.y180{bottom:769.693333pt;}
.y15b{bottom:770.493333pt;}
.y132{bottom:771.933333pt;}
.y84{bottom:773.373333pt;}
.y4d{bottom:774.333333pt;}
.yb7{bottom:776.093333pt;}
.y10c{bottom:786.493333pt;}
.y17f{bottom:787.293333pt;}
.y15a{bottom:788.253333pt;}
.y131{bottom:789.533333pt;}
.y83{bottom:791.133333pt;}
.y4c{bottom:792.093333pt;}
.yb6{bottom:793.693333pt;}
.y14{bottom:795.453333pt;}
.y17e{bottom:804.933333pt;}
.y159{bottom:805.893333pt;}
.y130{bottom:807.333333pt;}
.y82{bottom:808.773333pt;}
.y4b{bottom:809.733333pt;}
.yb5{bottom:811.333333pt;}
.y10b{bottom:812.293333pt;}
.ye0{bottom:819.333333pt;}
.y17d{bottom:822.533333pt;}
.y158{bottom:823.493333pt;}
.y12f{bottom:824.933333pt;}
.y13{bottom:825.733333pt;}
.y81{bottom:826.373333pt;}
.y4a{bottom:827.333333pt;}
.y10a{bottom:829.893333pt;}
.yb4{bottom:836.933333pt;}
.y17c{bottom:840.133333pt;}
.y157{bottom:841.093333pt;}
.y12e{bottom:842.533333pt;}
.y12{bottom:843.333333pt;}
.y80{bottom:843.973333pt;}
.y49{bottom:844.933333pt;}
.y109{bottom:847.493333pt;}
.yb3{bottom:854.533333pt;}
.y11{bottom:856.773333pt;}
.y17b{bottom:857.733333pt;}
.y156{bottom:858.693333pt;}
.y12d{bottom:860.133333pt;}
.y7f{bottom:861.573333pt;}
.y48{bottom:862.533333pt;}
.y108{bottom:865.093333pt;}
.yb2{bottom:872.293333pt;}
.y10{bottom:875.813333pt;}
.y155{bottom:876.453333pt;}
.y7e{bottom:879.333333pt;}
.y12c{bottom:879.973333pt;}
.y47{bottom:880.293333pt;}
.y107{bottom:882.693333pt;}
.yb1{bottom:889.893333pt;}
.y154{bottom:894.053333pt;}
.yf{bottom:896.613333pt;}
.y7d{bottom:896.933333pt;}
.y46{bottom:897.893333pt;}
.y106{bottom:902.533333pt;}
.yb0{bottom:907.493333pt;}
.y12b{bottom:911.013333pt;}
.y153{bottom:912.613333pt;}
.y7c{bottom:914.533333pt;}
.y45{bottom:915.493333pt;}
.ye{bottom:924.773333pt;}
.ydf{bottom:925.093333pt;}
.y152{bottom:931.173333pt;}
.y7b{bottom:932.133333pt;}
.y44{bottom:933.093333pt;}
.y105{bottom:933.573333pt;}
.y12a{bottom:941.893333pt;}
.yde{bottom:942.693333pt;}
.y17a{bottom:948.773333pt;}
.y7a{bottom:949.733333pt;}
.y43{bottom:950.693333pt;}
.yc{bottom:951.333333pt;}
.ydd{bottom:960.453333pt;}
.y104{bottom:964.453333pt;}
.y1{bottom:967.173333pt;}
.y79{bottom:967.493333pt;}
.y42{bottom:968.453333pt;}
.y129{bottom:973.573333pt;}
.y78{bottom:985.093333pt;}
.y41{bottom:986.053333pt;}
.y103{bottom:995.493333pt;}
.y77{bottom:1002.693333pt;}
.y40{bottom:1003.653333pt;}
.y76{bottom:1020.320000pt;}
.y3f{bottom:1021.280000pt;}
.y102{bottom:1026.400000pt;}
.y75{bottom:1037.920000pt;}
.y3e{bottom:1038.880000pt;}
.y3d{bottom:1064.160000pt;}
.h12{height:17.600000pt;}
.h10{height:17.632000pt;}
.h11{height:17.760000pt;}
.h13{height:17.792000pt;}
.hb{height:24.131250pt;}
.he{height:33.867188pt;}
.h14{height:35.200000pt;}
.h16{height:35.232000pt;}
.h15{height:35.360000pt;}
.hd{height:37.090625pt;}
.h9{height:37.479688pt;}
.hf{height:38.672812pt;}
.hc{height:43.782500pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.ha{height:47.310625pt;}
.h5{height:49.766250pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:41.600000pt;}
.w1c{width:46.560000pt;}
.w1b{width:46.720000pt;}
.w1e{width:46.752000pt;}
.w8{width:47.072000pt;}
.w13{width:52.320000pt;}
.w1a{width:53.472000pt;}
.w11{width:69.472000pt;}
.w7{width:71.360000pt;}
.wf{width:73.152000pt;}
.wc{width:78.080000pt;}
.w15{width:79.712000pt;}
.w6{width:83.072000pt;}
.w1d{width:88.672000pt;}
.w10{width:96.320000pt;}
.w2{width:103.712000pt;}
.wb{width:106.432000pt;}
.wd{width:107.232000pt;}
.w17{width:118.080000pt;}
.w1f{width:129.632000pt;}
.w19{width:144.346667pt;}
.w4{width:148.986667pt;}
.w18{width:160.346667pt;}
.w16{width:160.506667pt;}
.w9{width:176.186667pt;}
.wa{width:184.506667pt;}
.we{width:198.586667pt;}
.w21{width:225.666667pt;}
.w12{width:244.866667pt;}
.w20{width:356.546667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.720000pt;}
.x4{left:12.000000pt;}
.xb{left:17.120000pt;}
.xd{left:28.160000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.x1{left:48.000000pt;}
.x11{left:51.359988pt;}
.x9{left:67.680000pt;}
.xf{left:71.999988pt;}
.x2{left:86.426667pt;}
.x10{left:96.031988pt;}
.x24{left:105.312000pt;}
.x8{left:106.920000pt;}
.xc{left:131.706667pt;}
.x18{left:144.026655pt;}
.x5{left:151.706667pt;}
.x19{left:158.746667pt;}
.x1d{left:178.106667pt;}
.x7{left:179.240000pt;}
.x20{left:187.706667pt;}
.x12{left:192.026655pt;}
.x13{left:208.026667pt;}
.x28{left:216.826667pt;}
.x25{left:265.826667pt;}
.x29{left:270.306667pt;}
.x15{left:291.106667pt;}
.x2a{left:317.026667pt;}
.x1a{left:343.266667pt;}
.x16{left:362.466667pt;}
.x2b{left:363.586667pt;}
.x1e{left:376.706667pt;}
.x26{left:383.906667pt;}
.x17{left:409.533333pt;}
.x21{left:432.573333pt;}
.x1b{left:449.693333pt;}
.x2c{left:452.253333pt;}
.x22{left:484.893333pt;}
.x23{left:526.493333pt;}
.x1c{left:527.773333pt;}
.x2d{left:530.333333pt;}
.x2e{left:534.173333pt;}
.x27{left:544.253333pt;}
.x1f{left:546.173333pt;}
.xa{left:596.293333pt;}
.xe{left:735.199988pt;}
}




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