
    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_394ec6d10f867090bc7e39a1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_f8ec80b9ac4a79e1d7793c44.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0e0d37101fd40f02b5c01d87.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_19b7dc242b7d242db8b5b60a.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_7d8722384b846004a02db9fc.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_811edb6fe5425ed6d56365ae.woff')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_b4feb020e884746ba36338c3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_35dd25066395e7ff490b1081.woff')format("woff");}.ffb{font-family:ffb;line-height:0.986328;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);}
.v3{vertical-align:-27.000000px;}
.v4{vertical-align:-12.240000px;}
.v8{vertical-align:-2.520000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.520000px;}
.v5{vertical-align:12.240000px;}
.v1{vertical-align:18.000000px;}
.v9{vertical-align:20.880000px;}
.v7{vertical-align:21.960000px;}
.v2{vertical-align:24.120000px;}
.ls1e{letter-spacing:-0.413400px;}
.ls29{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.094800px;}
.ls1d{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.042120px;}
.ls2a{letter-spacing:-0.039960px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.006120px;}
.ls1f{letter-spacing:0.009360px;}
.ls10{letter-spacing:0.010200px;}
.lsc{letter-spacing:0.013320px;}
.lsa{letter-spacing:0.018000px;}
.ls20{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.133560px;}
.ls6{letter-spacing:0.139800px;}
.ls7{letter-spacing:0.153600px;}
.ls2b{letter-spacing:0.171600px;}
.ls0{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.270000px;}
.ls26{letter-spacing:0.300000px;}
.ls16{letter-spacing:1.478880px;}
.lsf{letter-spacing:1.530000px;}
.ls11{letter-spacing:2.093760px;}
.ls1a{letter-spacing:2.146680px;}
.ls17{letter-spacing:2.373480px;}
.ls13{letter-spacing:3.317400px;}
.ls1b{letter-spacing:3.575880px;}
.ls25{letter-spacing:4.950000px;}
.ls12{letter-spacing:5.130000px;}
.ls19{letter-spacing:13.210200px;}
.ls28{letter-spacing:16.406640px;}
.ls4{letter-spacing:36.926640px;}
.ls3{letter-spacing:41.148000px;}
.ls22{letter-spacing:41.670000px;}
.ls21{letter-spacing:46.286640px;}
.ls24{letter-spacing:49.526640px;}
.ls23{letter-spacing:58.689360px;}
.lsd{letter-spacing:303.930000px;}
.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;}
}
.ws4{word-spacing:-60.120000px;}
.wsf{word-spacing:-60.077880px;}
.ws11{word-spacing:-47.069640px;}
.wsc{word-spacing:-46.885680px;}
.wse{word-spacing:-46.709640px;}
.ws10{word-spacing:-43.511760px;}
.wsb{word-spacing:-42.120000px;}
.ws14{word-spacing:-15.210000px;}
.ws2{word-spacing:-15.183600px;}
.wsa{word-spacing:-15.169800px;}
.ws15{word-spacing:-15.083280px;}
.ws9{word-spacing:-15.043320px;}
.ws0{word-spacing:-15.030000px;}
.ws19{word-spacing:-14.990040px;}
.ws16{word-spacing:-14.976720px;}
.ws8{word-spacing:-14.876400px;}
.ws18{word-spacing:-14.850000px;}
.wsd{word-spacing:-14.823600px;}
.ws6{word-spacing:-13.518000px;}
.ws3{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws1a{word-spacing:-12.951600px;}
.ws12{word-spacing:-12.150000px;}
.ws13{word-spacing:-11.979360px;}
.ws1{word-spacing:-11.970000px;}
.ws17{word-spacing:-11.875200px;}
.ws7{word-spacing:0.000000px;}
._2f{margin-left:-9.647280px;}
._35{margin-left:-7.445760px;}
._30{margin-left:-2.331360px;}
._0{margin-left:-1.202400px;}
._3{width:1.037880px;}
._a{width:2.044080px;}
._9{width:3.667320px;}
._14{width:5.230440px;}
._10{width:6.372720px;}
._11{width:7.635240px;}
._6{width:8.837640px;}
._d{width:10.220400px;}
._7{width:12.024000px;}
._13{width:13.978560px;}
._31{width:15.060720px;}
._e{width:16.079160px;}
._f{width:17.855640px;}
._1f{width:18.877680px;}
._c{width:19.899720px;}
._b{width:20.981880px;}
._8{width:22.124160px;}
._18{width:23.326560px;}
._28{width:24.709320px;}
._12{width:25.911720px;}
._25{width:27.054000px;}
._20{width:29.098080px;}
._21{width:30.480840px;}
._23{width:31.923720px;}
._24{width:32.945760px;}
._27{width:33.951960px;}
._22{width:35.951760px;}
._1e{width:37.033920px;}
._15{width:38.772000px;}
._1c{width:39.799440px;}
._1d{width:41.242320px;}
._1a{width:42.685200px;}
._1b{width:44.308440px;}
._26{width:45.510840px;}
._2a{width:47.374560px;}
._40{width:48.711240px;}
._16{width:49.734000px;}
._33{width:50.921640px;}
._32{width:52.109280px;}
._29{width:53.506800px;}
._19{width:55.490760px;}
._36{width:56.993760px;}
._2c{width:58.977720px;}
._2d{width:60.059880px;}
._34{width:61.613160px;}
._4{width:63.135840px;}
._39{width:70.311240px;}
._41{width:81.703080px;}
._3a{width:89.097840px;}
._3b{width:90.286920px;}
._43{width:91.395720px;}
._3c{width:97.174440px;}
._17{width:102.384000px;}
._2e{width:104.428440px;}
._42{width:114.073920px;}
._2{width:130.455480px;}
._44{width:132.023520px;}
._3e{width:154.906920px;}
._3d{width:229.966200px;}
._38{width:246.860040px;}
._3f{width:276.225840px;}
._1{width:341.548680px;}
._2b{width:620.202360px;}
._5{width:908.130000px;}
._37{width:2430.690000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:29.880000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs9{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:2.610000px;}
.y6{bottom:2.700000px;}
.y151{bottom:2.790000px;}
.y3e{bottom:2.880000px;}
.y16{bottom:3.240000px;}
.y158{bottom:3.960000px;}
.y37{bottom:6.030000px;}
.y40{bottom:6.660000px;}
.y4{bottom:8.460000px;}
.y12f{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y130{bottom:16.380000px;}
.y5{bottom:16.470000px;}
.y160{bottom:17.370000px;}
.y155{bottom:17.460000px;}
.y3d{bottom:18.450000px;}
.y35{bottom:19.350000px;}
.y2c{bottom:20.520000px;}
.y15f{bottom:32.040000px;}
.y154{bottom:32.130000px;}
.y3c{bottom:33.930000px;}
.y7{bottom:35.550000px;}
.y34{bottom:35.820000px;}
.y2b{bottom:37.800000px;}
.y15e{bottom:46.710000px;}
.y153{bottom:46.800000px;}
.y3b{bottom:49.500000px;}
.y33{bottom:51.300000px;}
.y2a{bottom:54.990000px;}
.y3{bottom:58.140000px;}
.y15d{bottom:61.380000px;}
.y3a{bottom:64.980000px;}
.y32{bottom:66.870000px;}
.y29{bottom:72.270000px;}
.y15c{bottom:76.050000px;}
.y39{bottom:80.550000px;}
.y31{bottom:82.380000px;}
.y28{bottom:89.460000px;}
.y15b{bottom:90.720000px;}
.y30{bottom:97.950000px;}
.y15a{bottom:105.390000px;}
.y27{bottom:106.740000px;}
.y3f{bottom:109.980000px;}
.y2f{bottom:113.430000px;}
.y159{bottom:120.060000px;}
.y14f{bottom:120.870000px;}
.yfa{bottom:121.410000px;}
.y117{bottom:121.950000px;}
.yc2{bottom:122.220000px;}
.y11f{bottom:122.490000px;}
.y147{bottom:122.670000px;}
.y26{bottom:124.020000px;}
.ya8{bottom:124.740000px;}
.y48{bottom:126.450000px;}
.y2e{bottom:129.000000px;}
.y116{bottom:135.720000px;}
.yc1{bottom:136.260000px;}
.yf9{bottom:138.060000px;}
.y14e{bottom:138.150000px;}
.y11e{bottom:139.770000px;}
.y146{bottom:139.950000px;}
.y25{bottom:141.210000px;}
.ya7{bottom:141.930000px;}
.y47{bottom:143.640000px;}
.yf6{bottom:143.910000px;}
.y115{bottom:149.490000px;}
.y14d{bottom:155.340000px;}
.y11d{bottom:157.080000px;}
.y145{bottom:157.170000px;}
.y24{bottom:158.490000px;}
.y7b{bottom:158.520000px;}
.ya6{bottom:159.240000px;}
.y46{bottom:160.950000px;}
.yf5{bottom:161.220000px;}
.y114{bottom:163.380000px;}
.y14c{bottom:172.650000px;}
.y11c{bottom:174.270000px;}
.y144{bottom:174.450000px;}
.y23{bottom:175.770000px;}
.y7a{bottom:175.800000px;}
.ya5{bottom:176.520000px;}
.y113{bottom:177.150000px;}
.y45{bottom:178.230000px;}
.yf4{bottom:178.410000px;}
.yc0{bottom:189.750000px;}
.y14b{bottom:189.930000px;}
.y112{bottom:190.920000px;}
.y11b{bottom:191.550000px;}
.y143{bottom:191.730000px;}
.y22{bottom:192.960000px;}
.y79{bottom:192.990000px;}
.ya4{bottom:193.710000px;}
.y44{bottom:195.420000px;}
.yf3{bottom:195.690000px;}
.y111{bottom:204.780000px;}
.ybf{bottom:207.030000px;}
.y14a{bottom:207.120000px;}
.y11a{bottom:208.830000px;}
.y142{bottom:208.920000px;}
.y21{bottom:210.240000px;}
.y78{bottom:210.270000px;}
.ya3{bottom:210.990000px;}
.y43{bottom:212.700000px;}
.yf2{bottom:212.970000px;}
.y110{bottom:218.550000px;}
.ybe{bottom:224.310000px;}
.y149{bottom:224.400000px;}
.y119{bottom:226.020000px;}
.y141{bottom:226.200000px;}
.y77{bottom:227.460000px;}
.y20{bottom:227.520000px;}
.yf1{bottom:227.730000px;}
.ya2{bottom:228.180000px;}
.y42{bottom:229.980000px;}
.y10f{bottom:232.320000px;}
.ybd{bottom:241.500000px;}
.y148{bottom:241.680000px;}
.yf0{bottom:242.220000px;}
.y118{bottom:243.300000px;}
.y140{bottom:243.480000px;}
.y1f{bottom:244.710000px;}
.y76{bottom:244.740000px;}
.ya1{bottom:245.460000px;}
.y10e{bottom:246.090000px;}
.y41{bottom:246.900000px;}
.y157{bottom:256.440000px;}
.yef{bottom:256.800000px;}
.ybc{bottom:258.780000px;}
.y10d{bottom:259.950000px;}
.y17{bottom:260.220000px;}
.y13f{bottom:260.670000px;}
.y1e{bottom:261.990000px;}
.y75{bottom:262.020000px;}
.ya0{bottom:262.740000px;}
.yee{bottom:271.380000px;}
.y10c{bottom:273.720000px;}
.ybb{bottom:275.970000px;}
.y13e{bottom:277.950000px;}
.y74{bottom:279.210000px;}
.y1d{bottom:279.270000px;}
.y9f{bottom:279.930000px;}
.yed{bottom:285.870000px;}
.y10b{bottom:287.490000px;}
.yba{bottom:293.250000px;}
.y13d{bottom:295.230000px;}
.y1c{bottom:296.460000px;}
.y73{bottom:296.490000px;}
.y9e{bottom:297.210000px;}
.yec{bottom:300.450000px;}
.y10a{bottom:301.350000px;}
.yb9{bottom:310.530000px;}
.y13c{bottom:312.420000px;}
.y1b{bottom:313.770000px;}
.y9d{bottom:314.490000px;}
.yeb{bottom:315.030000px;}
.y109{bottom:315.120000px;}
.yb8{bottom:327.720000px;}
.y108{bottom:328.890000px;}
.yea{bottom:329.520000px;}
.y13b{bottom:329.700000px;}
.y72{bottom:330.960000px;}
.y1a{bottom:331.050000px;}
.y9c{bottom:331.680000px;}
.y107{bottom:343.290000px;}
.ye9{bottom:344.100000px;}
.yb7{bottom:345.000000px;}
.y13a{bottom:346.980000px;}
.y19{bottom:348.240000px;}
.y9b{bottom:348.960000px;}
.y106{bottom:357.330000px;}
.ye7{bottom:358.680000px;}
.yb6{bottom:362.280000px;}
.y139{bottom:364.170000px;}
.y18{bottom:365.520000px;}
.y9a{bottom:366.240000px;}
.ye6{bottom:373.170000px;}
.yb5{bottom:379.470000px;}
.y138{bottom:381.450000px;}
.y71{bottom:382.710000px;}
.y99{bottom:383.430000px;}
.y38{bottom:383.520000px;}
.y156{bottom:389.100000px;}
.ye5{bottom:390.990000px;}
.yb4{bottom:396.750000px;}
.y137{bottom:398.730000px;}
.y70{bottom:399.990000px;}
.y98{bottom:400.710000px;}
.y152{bottom:404.490000px;}
.ye4{bottom:408.270000px;}
.yb3{bottom:414.030000px;}
.y136{bottom:415.920000px;}
.y6f{bottom:417.270000px;}
.y97{bottom:417.990000px;}
.ye3{bottom:425.460000px;}
.yb2{bottom:431.220000px;}
.y135{bottom:432.570000px;}
.y6e{bottom:434.460000px;}
.y96{bottom:435.180000px;}
.ye2{bottom:442.740000px;}
.y134{bottom:446.340000px;}
.yb1{bottom:448.500000px;}
.y6d{bottom:451.740000px;}
.y95{bottom:452.460000px;}
.y133{bottom:458.310000px;}
.ye1{bottom:459.930000px;}
.y150{bottom:463.890000px;}
.yb0{bottom:465.780000px;}
.yf8{bottom:468.930000px;}
.y6c{bottom:469.020000px;}
.y94{bottom:469.740000px;}
.y132{bottom:472.800000px;}
.ye0{bottom:477.210000px;}
.y36{bottom:477.390000px;}
.yaf{bottom:482.970000px;}
.y6b{bottom:486.210000px;}
.y93{bottom:486.930000px;}
.y131{bottom:487.380000px;}
.ydf{bottom:494.490000px;}
.y2d{bottom:498.180000px;}
.yae{bottom:500.250000px;}
.y12e{bottom:501.960000px;}
.y6a{bottom:503.490000px;}
.y92{bottom:504.210000px;}
.yde{bottom:511.680000px;}
.yad{bottom:517.620000px;}
.yf7{bottom:520.680000px;}
.y69{bottom:520.770000px;}
.y91{bottom:521.490000px;}
.ydd{bottom:528.960000px;}
.y12d{bottom:533.550000px;}
.yac{bottom:535.170000px;}
.y68{bottom:537.960000px;}
.y90{bottom:538.680000px;}
.ydc{bottom:546.240000px;}
.y12c{bottom:550.740000px;}
.yab{bottom:552.810000px;}
.y67{bottom:555.240000px;}
.y8f{bottom:555.960000px;}
.ydb{bottom:563.430000px;}
.y12b{bottom:568.020000px;}
.y66{bottom:572.430000px;}
.yaa{bottom:572.610000px;}
.y8e{bottom:573.150000px;}
.yda{bottom:580.830000px;}
.y12a{bottom:585.330000px;}
.ya9{bottom:588.120000px;}
.y65{bottom:589.740000px;}
.y8d{bottom:590.460000px;}
.yd9{bottom:598.380000px;}
.y129{bottom:602.520000px;}
.y64{bottom:607.020000px;}
.y8c{bottom:607.740000px;}
.yd8{bottom:615.660000px;}
.y128{bottom:619.800000px;}
.y63{bottom:624.210000px;}
.y8b{bottom:624.930000px;}
.yd7{bottom:633.210000px;}
.y127{bottom:637.080000px;}
.y105{bottom:639.600000px;}
.y15{bottom:640.500000px;}
.y62{bottom:641.490000px;}
.y8a{bottom:642.210000px;}
.yd6{bottom:650.490000px;}
.y126{bottom:654.270000px;}
.y104{bottom:656.880000px;}
.y61{bottom:658.770000px;}
.y89{bottom:659.490000px;}
.yd5{bottom:667.680000px;}
.y125{bottom:671.550000px;}
.y103{bottom:674.070000px;}
.y14{bottom:675.060000px;}
.y60{bottom:675.960000px;}
.y88{bottom:676.680000px;}
.yd4{bottom:684.960000px;}
.y124{bottom:688.830000px;}
.y102{bottom:691.350000px;}
.y5f{bottom:693.240000px;}
.y87{bottom:693.960000px;}
.y13{bottom:698.730000px;}
.yd3{bottom:702.240000px;}
.y123{bottom:706.020000px;}
.y101{bottom:708.630000px;}
.y5e{bottom:710.520000px;}
.y86{bottom:711.240000px;}
.yd2{bottom:719.430000px;}
.y122{bottom:723.300000px;}
.y100{bottom:725.820000px;}
.y5d{bottom:727.710000px;}
.y85{bottom:728.430000px;}
.y12{bottom:734.280000px;}
.yd1{bottom:736.710000px;}
.y121{bottom:739.950000px;}
.yff{bottom:743.100000px;}
.y5c{bottom:744.990000px;}
.y84{bottom:745.710000px;}
.y11{bottom:753.270000px;}
.y120{bottom:753.360000px;}
.yd0{bottom:753.990000px;}
.yfe{bottom:760.380000px;}
.y5b{bottom:762.270000px;}
.y83{bottom:762.990000px;}
.ycf{bottom:771.180000px;}
.y10{bottom:772.170000px;}
.yfd{bottom:777.570000px;}
.y5a{bottom:779.460000px;}
.y82{bottom:780.180000px;}
.yf{bottom:784.410000px;}
.yce{bottom:788.460000px;}
.yfc{bottom:794.850000px;}
.y59{bottom:796.740000px;}
.y81{bottom:797.460000px;}
.ycd{bottom:805.650000px;}
.ye{bottom:808.260000px;}
.yfb{bottom:811.500000px;}
.y58{bottom:814.020000px;}
.y80{bottom:814.110000px;}
.ycc{bottom:822.930000px;}
.y7f{bottom:827.880000px;}
.y57{bottom:831.210000px;}
.yd{bottom:839.310000px;}
.ycb{bottom:840.210000px;}
.y7e{bottom:841.740000px;}
.y56{bottom:848.490000px;}
.y7d{bottom:857.400000px;}
.y55{bottom:865.770000px;}
.yc{bottom:870.360000px;}
.y7c{bottom:871.440000px;}
.yca{bottom:874.680000px;}
.y54{bottom:882.960000px;}
.yc9{bottom:891.960000px;}
.y53{bottom:900.240000px;}
.yb{bottom:901.410000px;}
.yc8{bottom:909.330000px;}
.y52{bottom:917.430000px;}
.yc7{bottom:926.790000px;}
.ya{bottom:930.210000px;}
.y51{bottom:934.710000px;}
.yc6{bottom:943.980000px;}
.y8{bottom:945.600000px;}
.y50{bottom:951.990000px;}
.yc5{bottom:961.260000px;}
.y4f{bottom:969.180000px;}
.yc4{bottom:978.540000px;}
.y4e{bottom:986.460000px;}
.yc3{bottom:992.610000px;}
.y4d{bottom:1003.770000px;}
.y4c{bottom:1020.960000px;}
.y4b{bottom:1038.240000px;}
.y4a{bottom:1055.520000px;}
.y49{bottom:1072.710000px;}
.y2{bottom:1102.770000px;}
.y1{bottom:1119.960000px;}
.h1e{height:13.770000px;}
.h1f{height:13.770150px;}
.h1c{height:13.860000px;}
.h25{height:14.670000px;}
.hf{height:17.280000px;}
.h14{height:20.070000px;}
.h24{height:27.540000px;}
.h3{height:27.630000px;}
.hc{height:29.409961px;}
.h5{height:33.431836px;}
.h1d{height:33.782520px;}
.h28{height:35.694141px;}
.h26{height:36.068555px;}
.h16{height:37.705078px;}
.h17{height:38.100586px;}
.h6{height:39.082324px;}
.h23{height:39.463594px;}
.h12{height:39.999023px;}
.h4{height:41.978320px;}
.he{height:42.418652px;}
.h22{height:43.769004px;}
.h13{height:44.532246px;}
.h2{height:45.295488px;}
.h8{height:46.000195px;}
.h21{height:48.027656px;}
.h20{height:49.552031px;}
.h9{height:49.635176px;}
.h1{height:50.800781px;}
.h1b{height:53.485664px;}
.hb{height:53.838457px;}
.h19{height:56.005664px;}
.h27{height:58.680000px;}
.h1a{height:59.431992px;}
.hd{height:75.410156px;}
.ha{height:76.201172px;}
.h15{height:93.150000px;}
.h18{height:122.580000px;}
.h29{height:131.940000px;}
.h11{height:141.600000px;}
.h7{height:153.930000px;}
.h10{height:379.560000px;}
.h0{height:1188.000000px;}
.w2{width:39.060000px;}
.wd{width:73.440000px;}
.w10{width:75.690000px;}
.wc{width:77.490000px;}
.wf{width:80.010000px;}
.w14{width:85.800000px;}
.w11{width:87.930000px;}
.w12{width:89.220000px;}
.we{width:92.640000px;}
.w7{width:116.940000px;}
.wb{width:135.840000px;}
.wa{width:204.600000px;}
.w6{width:220.350000px;}
.w9{width:224.490000px;}
.w8{width:248.040000px;}
.w15{width:292.950000px;}
.w13{width:379.470000px;}
.w5{width:588.480000px;}
.w3{width:787.950000px;}
.w4{width:821.790000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.660000px;}
.x3{left:8.640000px;}
.x42{left:10.170000px;}
.x34{left:11.970000px;}
.x31{left:13.230000px;}
.x35{left:17.910000px;}
.x10{left:20.160000px;}
.x2a{left:22.230000px;}
.x32{left:24.750000px;}
.x14{left:27.630000px;}
.x46{left:28.980000px;}
.x1d{left:31.140000px;}
.x24{left:32.220000px;}
.x12{left:34.110000px;}
.x13{left:36.090000px;}
.x2d{left:38.970000px;}
.x33{left:40.230000px;}
.x2f{left:43.560000px;}
.x6{left:45.540000px;}
.x37{left:48.419986px;}
.x2e{left:50.610000px;}
.x23{left:52.290000px;}
.x2{left:53.999986px;}
.x28{left:55.530000px;}
.x15{left:59.669986px;}
.x1{left:60.749986px;}
.x9{left:64.439986px;}
.x26{left:68.490000px;}
.x38{left:75.419986px;}
.x21{left:77.880000px;}
.x27{left:83.160000px;}
.x3d{left:86.669986px;}
.x47{left:88.199986px;}
.x25{left:90.270000px;}
.x4b{left:98.490000px;}
.x4{left:100.890000px;}
.x29{left:102.240000px;}
.x1f{left:103.320000px;}
.x2c{left:106.230000px;}
.x5{left:107.999986px;}
.x36{left:113.040000px;}
.x2b{left:117.990000px;}
.x30{left:124.020000px;}
.x4c{left:173.550000px;}
.x1e{left:178.590000px;}
.x3a{left:181.649986px;}
.x18{left:185.699986px;}
.xa{left:189.299986px;}
.x1c{left:191.549986px;}
.xd{left:193.169986px;}
.x3c{left:208.739986px;}
.xe{left:230.789986px;}
.x3e{left:236.910000px;}
.xc{left:266.609986px;}
.x3f{left:315.210000px;}
.x1b{left:370.919986px;}
.x40{left:389.460000px;}
.x20{left:427.350000px;}
.x39{left:438.779986px;}
.x17{left:454.529986px;}
.x8{left:459.029986px;}
.xb{left:464.159986px;}
.x16{left:478.229986px;}
.x48{left:479.759986px;}
.x41{left:482.820000px;}
.x3b{left:505.229986px;}
.x49{left:506.759986px;}
.x4a{left:526.559986px;}
.x43{left:563.550000px;}
.x44{left:639.960000px;}
.xf{left:642.210000px;}
.x22{left:652.560000px;}
.x45{left:728.610000px;}
.x1a{left:784.409986px;}
.x19{left:804.959986px;}
.x7{left:812.430000px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v4{vertical-align:-10.880000pt;}
.v8{vertical-align:-2.240000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.240000pt;}
.v5{vertical-align:10.880000pt;}
.v1{vertical-align:16.000000pt;}
.v9{vertical-align:18.560000pt;}
.v7{vertical-align:19.520000pt;}
.v2{vertical-align:21.440000pt;}
.ls1e{letter-spacing:-0.367467pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.084267pt;}
.ls1d{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.037440pt;}
.ls2a{letter-spacing:-0.035520pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.005440pt;}
.ls1f{letter-spacing:0.008320pt;}
.ls10{letter-spacing:0.009067pt;}
.lsc{letter-spacing:0.011840pt;}
.lsa{letter-spacing:0.016000pt;}
.ls20{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.118720pt;}
.ls6{letter-spacing:0.124267pt;}
.ls7{letter-spacing:0.136533pt;}
.ls2b{letter-spacing:0.152533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.240000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls16{letter-spacing:1.314560pt;}
.lsf{letter-spacing:1.360000pt;}
.ls11{letter-spacing:1.861120pt;}
.ls1a{letter-spacing:1.908160pt;}
.ls17{letter-spacing:2.109760pt;}
.ls13{letter-spacing:2.948800pt;}
.ls1b{letter-spacing:3.178560pt;}
.ls25{letter-spacing:4.400000pt;}
.ls12{letter-spacing:4.560000pt;}
.ls19{letter-spacing:11.742400pt;}
.ls28{letter-spacing:14.583680pt;}
.ls4{letter-spacing:32.823680pt;}
.ls3{letter-spacing:36.576000pt;}
.ls22{letter-spacing:37.040000pt;}
.ls21{letter-spacing:41.143680pt;}
.ls24{letter-spacing:44.023680pt;}
.ls23{letter-spacing:52.168320pt;}
.lsd{letter-spacing:270.160000pt;}
.ws4{word-spacing:-53.440000pt;}
.wsf{word-spacing:-53.402560pt;}
.ws11{word-spacing:-41.839680pt;}
.wsc{word-spacing:-41.676160pt;}
.wse{word-spacing:-41.519680pt;}
.ws10{word-spacing:-38.677120pt;}
.wsb{word-spacing:-37.440000pt;}
.ws14{word-spacing:-13.520000pt;}
.ws2{word-spacing:-13.496533pt;}
.wsa{word-spacing:-13.484267pt;}
.ws15{word-spacing:-13.407360pt;}
.ws9{word-spacing:-13.371840pt;}
.ws0{word-spacing:-13.360000pt;}
.ws19{word-spacing:-13.324480pt;}
.ws16{word-spacing:-13.312640pt;}
.ws8{word-spacing:-13.223467pt;}
.ws18{word-spacing:-13.200000pt;}
.wsd{word-spacing:-13.176533pt;}
.ws6{word-spacing:-12.016000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.512533pt;}
.ws12{word-spacing:-10.800000pt;}
.ws13{word-spacing:-10.648320pt;}
.ws1{word-spacing:-10.640000pt;}
.ws17{word-spacing:-10.555733pt;}
.ws7{word-spacing:0.000000pt;}
._2f{margin-left:-8.575360pt;}
._35{margin-left:-6.618453pt;}
._30{margin-left:-2.072320pt;}
._0{margin-left:-1.068800pt;}
._3{width:0.922560pt;}
._a{width:1.816960pt;}
._9{width:3.259840pt;}
._14{width:4.649280pt;}
._10{width:5.664640pt;}
._11{width:6.786880pt;}
._6{width:7.855680pt;}
._d{width:9.084800pt;}
._7{width:10.688000pt;}
._13{width:12.425387pt;}
._31{width:13.387307pt;}
._e{width:14.292587pt;}
._f{width:15.871680pt;}
._1f{width:16.780160pt;}
._c{width:17.688640pt;}
._b{width:18.650560pt;}
._8{width:19.665920pt;}
._18{width:20.734720pt;}
._28{width:21.963840pt;}
._12{width:23.032640pt;}
._25{width:24.048000pt;}
._20{width:25.864960pt;}
._21{width:27.094080pt;}
._23{width:28.376640pt;}
._24{width:29.285120pt;}
._27{width:30.179520pt;}
._22{width:31.957120pt;}
._1e{width:32.919040pt;}
._15{width:34.464000pt;}
._1c{width:35.377280pt;}
._1d{width:36.659840pt;}
._1a{width:37.942400pt;}
._1b{width:39.385280pt;}
._26{width:40.454080pt;}
._2a{width:42.110720pt;}
._40{width:43.298880pt;}
._16{width:44.208000pt;}
._33{width:45.263680pt;}
._32{width:46.319360pt;}
._29{width:47.561600pt;}
._19{width:49.325120pt;}
._36{width:50.661120pt;}
._2c{width:52.424640pt;}
._2d{width:53.386560pt;}
._34{width:54.767253pt;}
._4{width:56.120747pt;}
._39{width:62.498880pt;}
._41{width:72.624960pt;}
._3a{width:79.198080pt;}
._3b{width:80.255040pt;}
._43{width:81.240640pt;}
._3c{width:86.377280pt;}
._17{width:91.008000pt;}
._2e{width:92.825280pt;}
._42{width:101.399040pt;}
._2{width:115.960427pt;}
._44{width:117.354240pt;}
._3e{width:137.695040pt;}
._3d{width:204.414400pt;}
._38{width:219.431147pt;}
._3f{width:245.534080pt;}
._1{width:303.598827pt;}
._2b{width:551.290987pt;}
._5{width:807.226667pt;}
._37{width:2160.613333pt;}
.fs3{font-size:26.560000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs9{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:2.320000pt;}
.y6{bottom:2.400000pt;}
.y151{bottom:2.480000pt;}
.y3e{bottom:2.560000pt;}
.y16{bottom:2.880000pt;}
.y158{bottom:3.520000pt;}
.y37{bottom:5.360000pt;}
.y40{bottom:5.920000pt;}
.y4{bottom:7.520000pt;}
.y12f{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y130{bottom:14.560000pt;}
.y5{bottom:14.640000pt;}
.y160{bottom:15.440000pt;}
.y155{bottom:15.520000pt;}
.y3d{bottom:16.400000pt;}
.y35{bottom:17.200000pt;}
.y2c{bottom:18.240000pt;}
.y15f{bottom:28.480000pt;}
.y154{bottom:28.560000pt;}
.y3c{bottom:30.160000pt;}
.y7{bottom:31.600000pt;}
.y34{bottom:31.840000pt;}
.y2b{bottom:33.600000pt;}
.y15e{bottom:41.520000pt;}
.y153{bottom:41.600000pt;}
.y3b{bottom:44.000000pt;}
.y33{bottom:45.600000pt;}
.y2a{bottom:48.880000pt;}
.y3{bottom:51.680000pt;}
.y15d{bottom:54.560000pt;}
.y3a{bottom:57.760000pt;}
.y32{bottom:59.440000pt;}
.y29{bottom:64.240000pt;}
.y15c{bottom:67.600000pt;}
.y39{bottom:71.600000pt;}
.y31{bottom:73.226667pt;}
.y28{bottom:79.520000pt;}
.y15b{bottom:80.640000pt;}
.y30{bottom:87.066667pt;}
.y15a{bottom:93.680000pt;}
.y27{bottom:94.880000pt;}
.y3f{bottom:97.760000pt;}
.y2f{bottom:100.826667pt;}
.y159{bottom:106.720000pt;}
.y14f{bottom:107.440000pt;}
.yfa{bottom:107.920000pt;}
.y117{bottom:108.400000pt;}
.yc2{bottom:108.640000pt;}
.y11f{bottom:108.880000pt;}
.y147{bottom:109.040000pt;}
.y26{bottom:110.240000pt;}
.ya8{bottom:110.880000pt;}
.y48{bottom:112.400000pt;}
.y2e{bottom:114.666667pt;}
.y116{bottom:120.640000pt;}
.yc1{bottom:121.120000pt;}
.yf9{bottom:122.720000pt;}
.y14e{bottom:122.800000pt;}
.y11e{bottom:124.240000pt;}
.y146{bottom:124.400000pt;}
.y25{bottom:125.520000pt;}
.ya7{bottom:126.160000pt;}
.y47{bottom:127.680000pt;}
.yf6{bottom:127.920000pt;}
.y115{bottom:132.880000pt;}
.y14d{bottom:138.080000pt;}
.y11d{bottom:139.626667pt;}
.y145{bottom:139.706667pt;}
.y24{bottom:140.880000pt;}
.y7b{bottom:140.906667pt;}
.ya6{bottom:141.546667pt;}
.y46{bottom:143.066667pt;}
.yf5{bottom:143.306667pt;}
.y114{bottom:145.226667pt;}
.y14c{bottom:153.466667pt;}
.y11c{bottom:154.906667pt;}
.y144{bottom:155.066667pt;}
.y23{bottom:156.240000pt;}
.y7a{bottom:156.266667pt;}
.ya5{bottom:156.906667pt;}
.y113{bottom:157.466667pt;}
.y45{bottom:158.426667pt;}
.yf4{bottom:158.586667pt;}
.yc0{bottom:168.666667pt;}
.y14b{bottom:168.826667pt;}
.y112{bottom:169.706667pt;}
.y11b{bottom:170.266667pt;}
.y143{bottom:170.426667pt;}
.y22{bottom:171.520000pt;}
.y79{bottom:171.546667pt;}
.ya4{bottom:172.186667pt;}
.y44{bottom:173.706667pt;}
.yf3{bottom:173.946667pt;}
.y111{bottom:182.026667pt;}
.ybf{bottom:184.026667pt;}
.y14a{bottom:184.106667pt;}
.y11a{bottom:185.626667pt;}
.y142{bottom:185.706667pt;}
.y21{bottom:186.880000pt;}
.y78{bottom:186.906667pt;}
.ya3{bottom:187.546667pt;}
.y43{bottom:189.066667pt;}
.yf2{bottom:189.306667pt;}
.y110{bottom:194.266667pt;}
.ybe{bottom:199.386667pt;}
.y149{bottom:199.466667pt;}
.y119{bottom:200.906667pt;}
.y141{bottom:201.066667pt;}
.y77{bottom:202.186667pt;}
.y20{bottom:202.240000pt;}
.yf1{bottom:202.426667pt;}
.ya2{bottom:202.826667pt;}
.y42{bottom:204.426667pt;}
.y10f{bottom:206.506667pt;}
.ybd{bottom:214.666667pt;}
.y148{bottom:214.826667pt;}
.yf0{bottom:215.306667pt;}
.y118{bottom:216.266667pt;}
.y140{bottom:216.426667pt;}
.y1f{bottom:217.520000pt;}
.y76{bottom:217.546667pt;}
.ya1{bottom:218.186667pt;}
.y10e{bottom:218.746667pt;}
.y41{bottom:219.466667pt;}
.y157{bottom:227.946667pt;}
.yef{bottom:228.266667pt;}
.ybc{bottom:230.026667pt;}
.y10d{bottom:231.066667pt;}
.y17{bottom:231.306667pt;}
.y13f{bottom:231.706667pt;}
.y1e{bottom:232.880000pt;}
.y75{bottom:232.906667pt;}
.ya0{bottom:233.546667pt;}
.yee{bottom:241.226667pt;}
.y10c{bottom:243.306667pt;}
.ybb{bottom:245.306667pt;}
.y13e{bottom:247.066667pt;}
.y74{bottom:248.186667pt;}
.y1d{bottom:248.240000pt;}
.y9f{bottom:248.826667pt;}
.yed{bottom:254.106667pt;}
.y10b{bottom:255.546667pt;}
.yba{bottom:260.666667pt;}
.y13d{bottom:262.426667pt;}
.y1c{bottom:263.520000pt;}
.y73{bottom:263.546667pt;}
.y9e{bottom:264.186667pt;}
.yec{bottom:267.066667pt;}
.y10a{bottom:267.866667pt;}
.yb9{bottom:276.026667pt;}
.y13c{bottom:277.706667pt;}
.y1b{bottom:278.906667pt;}
.y9d{bottom:279.546667pt;}
.yeb{bottom:280.026667pt;}
.y109{bottom:280.106667pt;}
.yb8{bottom:291.306667pt;}
.y108{bottom:292.346667pt;}
.yea{bottom:292.906667pt;}
.y13b{bottom:293.066667pt;}
.y72{bottom:294.186667pt;}
.y1a{bottom:294.266667pt;}
.y9c{bottom:294.826667pt;}
.y107{bottom:305.146667pt;}
.ye9{bottom:305.866667pt;}
.yb7{bottom:306.666667pt;}
.y13a{bottom:308.426667pt;}
.y19{bottom:309.546667pt;}
.y9b{bottom:310.186667pt;}
.y106{bottom:317.626667pt;}
.ye7{bottom:318.826667pt;}
.yb6{bottom:322.026667pt;}
.y139{bottom:323.706667pt;}
.y18{bottom:324.906667pt;}
.y9a{bottom:325.546667pt;}
.ye6{bottom:331.706667pt;}
.yb5{bottom:337.306667pt;}
.y138{bottom:339.066667pt;}
.y71{bottom:340.186667pt;}
.y99{bottom:340.826667pt;}
.y38{bottom:340.906667pt;}
.y156{bottom:345.866667pt;}
.ye5{bottom:347.546667pt;}
.yb4{bottom:352.666667pt;}
.y137{bottom:354.426667pt;}
.y70{bottom:355.546667pt;}
.y98{bottom:356.186667pt;}
.y152{bottom:359.546667pt;}
.ye4{bottom:362.906667pt;}
.yb3{bottom:368.026667pt;}
.y136{bottom:369.706667pt;}
.y6f{bottom:370.906667pt;}
.y97{bottom:371.546667pt;}
.ye3{bottom:378.186667pt;}
.yb2{bottom:383.306667pt;}
.y135{bottom:384.506667pt;}
.y6e{bottom:386.186667pt;}
.y96{bottom:386.826667pt;}
.ye2{bottom:393.546667pt;}
.y134{bottom:396.746667pt;}
.yb1{bottom:398.666667pt;}
.y6d{bottom:401.546667pt;}
.y95{bottom:402.186667pt;}
.y133{bottom:407.386667pt;}
.ye1{bottom:408.826667pt;}
.y150{bottom:412.346667pt;}
.yb0{bottom:414.026667pt;}
.yf8{bottom:416.826667pt;}
.y6c{bottom:416.906667pt;}
.y94{bottom:417.546667pt;}
.y132{bottom:420.266667pt;}
.ye0{bottom:424.186667pt;}
.y36{bottom:424.346667pt;}
.yaf{bottom:429.306667pt;}
.y6b{bottom:432.186667pt;}
.y93{bottom:432.826667pt;}
.y131{bottom:433.226667pt;}
.ydf{bottom:439.546667pt;}
.y2d{bottom:442.826667pt;}
.yae{bottom:444.666667pt;}
.y12e{bottom:446.186667pt;}
.y6a{bottom:447.546667pt;}
.y92{bottom:448.186667pt;}
.yde{bottom:454.826667pt;}
.yad{bottom:460.106667pt;}
.yf7{bottom:462.826667pt;}
.y69{bottom:462.906667pt;}
.y91{bottom:463.546667pt;}
.ydd{bottom:470.186667pt;}
.y12d{bottom:474.266667pt;}
.yac{bottom:475.706667pt;}
.y68{bottom:478.186667pt;}
.y90{bottom:478.826667pt;}
.ydc{bottom:485.546667pt;}
.y12c{bottom:489.546667pt;}
.yab{bottom:491.386667pt;}
.y67{bottom:493.546667pt;}
.y8f{bottom:494.186667pt;}
.ydb{bottom:500.826667pt;}
.y12b{bottom:504.906667pt;}
.y66{bottom:508.826667pt;}
.yaa{bottom:508.986667pt;}
.y8e{bottom:509.466667pt;}
.yda{bottom:516.293333pt;}
.y12a{bottom:520.293333pt;}
.ya9{bottom:522.773333pt;}
.y65{bottom:524.213333pt;}
.y8d{bottom:524.853333pt;}
.yd9{bottom:531.893333pt;}
.y129{bottom:535.573333pt;}
.y64{bottom:539.573333pt;}
.y8c{bottom:540.213333pt;}
.yd8{bottom:547.253333pt;}
.y128{bottom:550.933333pt;}
.y63{bottom:554.853333pt;}
.y8b{bottom:555.493333pt;}
.yd7{bottom:562.853333pt;}
.y127{bottom:566.293333pt;}
.y105{bottom:568.533333pt;}
.y15{bottom:569.333333pt;}
.y62{bottom:570.213333pt;}
.y8a{bottom:570.853333pt;}
.yd6{bottom:578.213333pt;}
.y126{bottom:581.573333pt;}
.y104{bottom:583.893333pt;}
.y61{bottom:585.573333pt;}
.y89{bottom:586.213333pt;}
.yd5{bottom:593.493333pt;}
.y125{bottom:596.933333pt;}
.y103{bottom:599.173333pt;}
.y14{bottom:600.053333pt;}
.y60{bottom:600.853333pt;}
.y88{bottom:601.493333pt;}
.yd4{bottom:608.853333pt;}
.y124{bottom:612.293333pt;}
.y102{bottom:614.533333pt;}
.y5f{bottom:616.213333pt;}
.y87{bottom:616.853333pt;}
.y13{bottom:621.093333pt;}
.yd3{bottom:624.213333pt;}
.y123{bottom:627.573333pt;}
.y101{bottom:629.893333pt;}
.y5e{bottom:631.573333pt;}
.y86{bottom:632.213333pt;}
.yd2{bottom:639.493333pt;}
.y122{bottom:642.933333pt;}
.y100{bottom:645.173333pt;}
.y5d{bottom:646.853333pt;}
.y85{bottom:647.493333pt;}
.y12{bottom:652.693333pt;}
.yd1{bottom:654.853333pt;}
.y121{bottom:657.733333pt;}
.yff{bottom:660.533333pt;}
.y5c{bottom:662.213333pt;}
.y84{bottom:662.853333pt;}
.y11{bottom:669.573333pt;}
.y120{bottom:669.653333pt;}
.yd0{bottom:670.213333pt;}
.yfe{bottom:675.893333pt;}
.y5b{bottom:677.573333pt;}
.y83{bottom:678.213333pt;}
.ycf{bottom:685.493333pt;}
.y10{bottom:686.373333pt;}
.yfd{bottom:691.173333pt;}
.y5a{bottom:692.853333pt;}
.y82{bottom:693.493333pt;}
.yf{bottom:697.253333pt;}
.yce{bottom:700.853333pt;}
.yfc{bottom:706.533333pt;}
.y59{bottom:708.213333pt;}
.y81{bottom:708.853333pt;}
.ycd{bottom:716.133333pt;}
.ye{bottom:718.453333pt;}
.yfb{bottom:721.333333pt;}
.y58{bottom:723.573333pt;}
.y80{bottom:723.653333pt;}
.ycc{bottom:731.493333pt;}
.y7f{bottom:735.893333pt;}
.y57{bottom:738.853333pt;}
.yd{bottom:746.053333pt;}
.ycb{bottom:746.853333pt;}
.y7e{bottom:748.213333pt;}
.y56{bottom:754.213333pt;}
.y7d{bottom:762.133333pt;}
.y55{bottom:769.573333pt;}
.yc{bottom:773.653333pt;}
.y7c{bottom:774.613333pt;}
.yca{bottom:777.493333pt;}
.y54{bottom:784.853333pt;}
.yc9{bottom:792.853333pt;}
.y53{bottom:800.213333pt;}
.yb{bottom:801.253333pt;}
.yc8{bottom:808.293333pt;}
.y52{bottom:815.493333pt;}
.yc7{bottom:823.813333pt;}
.ya{bottom:826.853333pt;}
.y51{bottom:830.853333pt;}
.yc6{bottom:839.093333pt;}
.y8{bottom:840.533333pt;}
.y50{bottom:846.213333pt;}
.yc5{bottom:854.453333pt;}
.y4f{bottom:861.493333pt;}
.yc4{bottom:869.813333pt;}
.y4e{bottom:876.853333pt;}
.yc3{bottom:882.320000pt;}
.y4d{bottom:892.240000pt;}
.y4c{bottom:907.520000pt;}
.y4b{bottom:922.880000pt;}
.y4a{bottom:938.240000pt;}
.y49{bottom:953.520000pt;}
.y2{bottom:980.240000pt;}
.y1{bottom:995.520000pt;}
.h1e{height:12.240000pt;}
.h1f{height:12.240133pt;}
.h1c{height:12.320000pt;}
.h25{height:13.040000pt;}
.hf{height:15.360000pt;}
.h14{height:17.840000pt;}
.h24{height:24.480000pt;}
.h3{height:24.560000pt;}
.hc{height:26.142187pt;}
.h5{height:29.717188pt;}
.h1d{height:30.028906pt;}
.h28{height:31.728125pt;}
.h26{height:32.060937pt;}
.h16{height:33.515625pt;}
.h17{height:33.867188pt;}
.h6{height:34.739844pt;}
.h23{height:35.078750pt;}
.h12{height:35.554688pt;}
.h4{height:37.314062pt;}
.he{height:37.705469pt;}
.h22{height:38.905781pt;}
.h13{height:39.584219pt;}
.h2{height:40.262656pt;}
.h8{height:40.889062pt;}
.h21{height:42.691250pt;}
.h20{height:44.046250pt;}
.h9{height:44.120156pt;}
.h1{height:45.156250pt;}
.h1b{height:47.542812pt;}
.hb{height:47.856406pt;}
.h19{height:49.782812pt;}
.h27{height:52.160000pt;}
.h1a{height:52.828437pt;}
.hd{height:67.031250pt;}
.ha{height:67.734375pt;}
.h15{height:82.800000pt;}
.h18{height:108.960000pt;}
.h29{height:117.280000pt;}
.h11{height:125.866667pt;}
.h7{height:136.826667pt;}
.h10{height:337.386667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.720000pt;}
.wd{width:65.280000pt;}
.w10{width:67.280000pt;}
.wc{width:68.880000pt;}
.wf{width:71.120000pt;}
.w14{width:76.266667pt;}
.w11{width:78.160000pt;}
.w12{width:79.306667pt;}
.we{width:82.346667pt;}
.w7{width:103.946667pt;}
.wb{width:120.746667pt;}
.wa{width:181.866667pt;}
.w6{width:195.866667pt;}
.w9{width:199.546667pt;}
.w8{width:220.480000pt;}
.w15{width:260.400000pt;}
.w13{width:337.306667pt;}
.w5{width:523.093333pt;}
.w3{width:700.400000pt;}
.w4{width:730.480000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.920000pt;}
.x3{left:7.680000pt;}
.x42{left:9.040000pt;}
.x34{left:10.640000pt;}
.x31{left:11.760000pt;}
.x35{left:15.920000pt;}
.x10{left:17.920000pt;}
.x2a{left:19.760000pt;}
.x32{left:22.000000pt;}
.x14{left:24.560000pt;}
.x46{left:25.760000pt;}
.x1d{left:27.680000pt;}
.x24{left:28.640000pt;}
.x12{left:30.320000pt;}
.x13{left:32.080000pt;}
.x2d{left:34.640000pt;}
.x33{left:35.760000pt;}
.x2f{left:38.720000pt;}
.x6{left:40.480000pt;}
.x37{left:43.039988pt;}
.x2e{left:44.986667pt;}
.x23{left:46.480000pt;}
.x2{left:47.999988pt;}
.x28{left:49.360000pt;}
.x15{left:53.039988pt;}
.x1{left:53.999988pt;}
.x9{left:57.279988pt;}
.x26{left:60.880000pt;}
.x38{left:67.039988pt;}
.x21{left:69.226667pt;}
.x27{left:73.920000pt;}
.x3d{left:77.039988pt;}
.x47{left:78.399988pt;}
.x25{left:80.240000pt;}
.x4b{left:87.546667pt;}
.x4{left:89.680000pt;}
.x29{left:90.880000pt;}
.x1f{left:91.840000pt;}
.x2c{left:94.426667pt;}
.x5{left:95.999988pt;}
.x36{left:100.480000pt;}
.x2b{left:104.880000pt;}
.x30{left:110.240000pt;}
.x4c{left:154.266667pt;}
.x1e{left:158.746667pt;}
.x3a{left:161.466655pt;}
.x18{left:165.066655pt;}
.xa{left:168.266655pt;}
.x1c{left:170.266655pt;}
.xd{left:171.706655pt;}
.x3c{left:185.546655pt;}
.xe{left:205.146655pt;}
.x3e{left:210.586667pt;}
.xc{left:236.986655pt;}
.x3f{left:280.186667pt;}
.x1b{left:329.706655pt;}
.x40{left:346.186667pt;}
.x20{left:379.866667pt;}
.x39{left:390.026655pt;}
.x17{left:404.026655pt;}
.x8{left:408.026655pt;}
.xb{left:412.586655pt;}
.x16{left:425.093321pt;}
.x48{left:426.453321pt;}
.x41{left:429.173333pt;}
.x3b{left:449.093321pt;}
.x49{left:450.453321pt;}
.x4a{left:468.053321pt;}
.x43{left:500.933333pt;}
.x44{left:568.853333pt;}
.xf{left:570.853333pt;}
.x22{left:580.053333pt;}
.x45{left:647.653333pt;}
.x1a{left:697.253321pt;}
.x19{left:715.519988pt;}
.x7{left:722.160000pt;}
}




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