
    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_cae06ddf521a10ee3f250410.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1876d5027a14ff99bb5b46ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_6488b64c3b70ac59758fbbb8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8481c2a661ed8a9c49a90550.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_eedae751e2217c98df5d9f94.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9366df1af8ced77e1a7d8916.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_39344b2b43fe6291fc8beff2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.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_b830d6c5434598ffa5fe5c1b.woff')format("woff");}.ffb{font-family:ffb;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.924000px;}
.ls14{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.253200px;}
.lse{letter-spacing:-0.206400px;}
.lsf{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.379920px;}
.ls17{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.900000px;}
.ls16{letter-spacing:16.506720px;}
.ls2{letter-spacing:26.789760px;}
.ls1{letter-spacing:27.360000px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws6{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.686800px;}
.wsd{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.220000px;}
.wse{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.711360px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-3.389760px;}
._9{margin-left:-2.285520px;}
._2{margin-left:-1.152000px;}
._0{width:1.317600px;}
._5{width:2.454000px;}
._6{width:4.068720px;}
._7{width:5.419680px;}
._15{width:6.500880px;}
._1a{width:7.551360px;}
._3{width:8.618400px;}
._4{width:9.622080px;}
._17{width:11.040960px;}
._16{width:12.195360px;}
._18{width:13.233600px;}
._19{width:16.161600px;}
._12{width:17.466480px;}
._11{width:18.645120px;}
._13{width:19.895760px;}
._f{width:21.108960px;}
._e{width:22.230720px;}
._10{width:23.904000px;}
._1b{width:25.099200px;}
._b{width:26.590320px;}
._a{width:27.606720px;}
._1e{width:29.339280px;}
._23{width:30.501360px;}
._24{width:31.563120px;}
._1f{width:34.179840px;}
._14{width:39.023280px;}
._22{width:50.613840px;}
._c{width:52.944480px;}
._d{width:53.963280px;}
._25{width:59.999040px;}
._20{width:63.043920px;}
._21{width:64.062720px;}
._1c{width:83.365200px;}
._26{width:86.589840px;}
._1d{width:108.222480px;}
._1{width:1100.028000px;}
.fc8{color:rgb(78,86,113);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(4,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(14,16,26);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fca{color:rgb(51,51,255);}
.fc1{color:rgb(91,155,213);}
.fc9{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.260000px;}
.y3c{bottom:5.760000px;}
.ya1{bottom:5.790000px;}
.y130{bottom:5.805000px;}
.y9f{bottom:5.940000px;}
.y172{bottom:7.380000px;}
.y176{bottom:7.425000px;}
.y7{bottom:8.100000px;}
.y170{bottom:10.620000px;}
.y144{bottom:10.800000px;}
.y3a{bottom:10.980000px;}
.y4e{bottom:25.560000px;}
.y15a{bottom:25.590000px;}
.y145{bottom:25.740000px;}
.y174{bottom:28.845000px;}
.y16f{bottom:30.420000px;}
.y143{bottom:30.600000px;}
.y39{bottom:30.960000px;}
.y132{bottom:33.840000px;}
.ye3{bottom:34.020000px;}
.y6{bottom:36.000000px;}
.y4d{bottom:45.540000px;}
.y16e{bottom:50.220000px;}
.ycf{bottom:50.400000px;}
.y38{bottom:50.760000px;}
.y10c{bottom:52.020000px;}
.y155{bottom:53.670000px;}
.ye2{bottom:53.820000px;}
.yb{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.y4c{bottom:65.340000px;}
.yce{bottom:70.200000px;}
.y37{bottom:70.560000px;}
.y10b{bottom:71.820000px;}
.ye1{bottom:73.620000px;}
.y154{bottom:73.650000px;}
.y25{bottom:79.740000px;}
.y4{bottom:81.720000px;}
.y186{bottom:81.900000px;}
.ydc{bottom:82.440000px;}
.y107{bottom:83.160000px;}
.ya3{bottom:84.960000px;}
.y4b{bottom:85.140000px;}
.y142{bottom:90.180000px;}
.y36{bottom:90.360000px;}
.y10a{bottom:91.800000px;}
.y140{bottom:92.340000px;}
.ye0{bottom:93.420000px;}
.y153{bottom:93.450000px;}
.y24{bottom:99.720000px;}
.y185{bottom:101.700000px;}
.ydb{bottom:102.240000px;}
.y106{bottom:103.140000px;}
.y4a{bottom:104.940000px;}
.ya2{bottom:106.380000px;}
.y84{bottom:108.180000px;}
.y9{bottom:108.570000px;}
.y35{bottom:110.160000px;}
.y13f{bottom:112.320000px;}
.ydf{bottom:113.220000px;}
.y152{bottom:113.250000px;}
.y19b{bottom:115.380000px;}
.y3{bottom:118.110000px;}
.y23{bottom:119.520000px;}
.y184{bottom:121.680000px;}
.yda{bottom:122.220000px;}
.y105{bottom:122.940000px;}
.y49{bottom:124.740000px;}
.y83{bottom:127.980000px;}
.y34{bottom:130.140000px;}
.y8{bottom:130.530000px;}
.y13e{bottom:132.120000px;}
.y151{bottom:133.050000px;}
.y15b{bottom:133.740000px;}
.y19a{bottom:135.180000px;}
.y22{bottom:139.320000px;}
.y183{bottom:141.480000px;}
.yd9{bottom:142.020000px;}
.y104{bottom:142.740000px;}
.y48{bottom:144.720000px;}
.y82{bottom:147.780000px;}
.y150{bottom:148.500000px;}
.ya0{bottom:149.400000px;}
.y33{bottom:149.940000px;}
.y13d{bottom:151.950000px;}
.y199{bottom:155.010000px;}
.y21{bottom:159.150000px;}
.y182{bottom:161.310000px;}
.yd8{bottom:161.850000px;}
.y103{bottom:162.570000px;}
.y47{bottom:164.520000px;}
.y81{bottom:167.790000px;}
.y32{bottom:169.740000px;}
.y9e{bottom:170.850000px;}
.y13c{bottom:171.750000px;}
.y198{bottom:174.810000px;}
.y20{bottom:178.950000px;}
.y181{bottom:181.110000px;}
.yd7{bottom:181.650000px;}
.y102{bottom:182.370000px;}
.y46{bottom:184.320000px;}
.y80{bottom:187.590000px;}
.y31{bottom:189.540000px;}
.y159{bottom:189.930000px;}
.y13b{bottom:191.550000px;}
.y197{bottom:194.790000px;}
.y9d{bottom:198.210000px;}
.y1f{bottom:198.930000px;}
.y180{bottom:200.910000px;}
.yd6{bottom:201.450000px;}
.y101{bottom:202.170000px;}
.y45{bottom:204.150000px;}
.y7f{bottom:207.390000px;}
.y30{bottom:209.370000px;}
.y158{bottom:211.350000px;}
.y13a{bottom:211.530000px;}
.y196{bottom:214.590000px;}
.y9c{bottom:216.390000px;}
.y1e{bottom:218.730000px;}
.y17f{bottom:220.890000px;}
.yd5{bottom:221.430000px;}
.y100{bottom:222.150000px;}
.y44{bottom:223.950000px;}
.y7e{bottom:227.190000px;}
.y2f{bottom:229.350000px;}
.y139{bottom:231.330000px;}
.y157{bottom:232.770000px;}
.y195{bottom:234.390000px;}
.y9b{bottom:236.190000px;}
.y1d{bottom:238.530000px;}
.y17e{bottom:240.690000px;}
.yd4{bottom:241.230000px;}
.yff{bottom:241.950000px;}
.y43{bottom:243.930000px;}
.y2e{bottom:249.150000px;}
.y138{bottom:251.130000px;}
.y194{bottom:254.190000px;}
.y156{bottom:254.370000px;}
.y7d{bottom:255.990000px;}
.y1c{bottom:258.330000px;}
.y17d{bottom:260.490000px;}
.yd3{bottom:261.030000px;}
.yfe{bottom:261.750000px;}
.y42{bottom:263.730000px;}
.y131{bottom:265.890000px;}
.y2d{bottom:268.950000px;}
.y193{bottom:273.990000px;}
.ycd{bottom:275.790000px;}
.y7c{bottom:275.970000px;}
.y1b{bottom:278.130000px;}
.y17c{bottom:280.290000px;}
.yfd{bottom:281.550000px;}
.y41{bottom:283.530000px;}
.y137{bottom:287.310000px;}
.y2c{bottom:288.750000px;}
.y192{bottom:293.970000px;}
.y7b{bottom:295.770000px;}
.yd2{bottom:297.210000px;}
.y1a{bottom:298.110000px;}
.y17b{bottom:300.090000px;}
.yfc{bottom:301.350000px;}
.y40{bottom:303.330000px;}
.y2b{bottom:308.550000px;}
.y136{bottom:308.910000px;}
.y191{bottom:313.770000px;}
.y7a{bottom:315.570000px;}
.y19{bottom:317.910000px;}
.yd1{bottom:318.810000px;}
.y17a{bottom:320.070000px;}
.yfb{bottom:321.330000px;}
.y3f{bottom:323.130000px;}
.y14f{bottom:324.570000px;}
.y2a{bottom:328.530000px;}
.y135{bottom:330.330000px;}
.y190{bottom:333.570000px;}
.y79{bottom:335.370000px;}
.y18{bottom:337.710000px;}
.y179{bottom:339.870000px;}
.yd0{bottom:340.230000px;}
.yfa{bottom:341.130000px;}
.y3e{bottom:343.110000px;}
.y14e{bottom:344.370000px;}
.y29{bottom:348.330000px;}
.y134{bottom:351.930000px;}
.y18f{bottom:353.370000px;}
.y78{bottom:355.170000px;}
.y17{bottom:357.510000px;}
.y178{bottom:359.670000px;}
.yf9{bottom:360.930000px;}
.ycc{bottom:361.830000px;}
.y3d{bottom:362.910000px;}
.y14d{bottom:364.170000px;}
.y28{bottom:368.130000px;}
.y18e{bottom:373.170000px;}
.y133{bottom:373.350000px;}
.y77{bottom:375.150000px;}
.y16{bottom:377.310000px;}
.y177{bottom:379.470000px;}
.yf8{bottom:380.730000px;}
.y14c{bottom:384.150000px;}
.y27{bottom:387.930000px;}
.ycb{bottom:389.010000px;}
.y18d{bottom:393.150000px;}
.y173{bottom:394.230000px;}
.y12f{bottom:394.770000px;}
.y76{bottom:394.950000px;}
.y15{bottom:397.290000px;}
.yf7{bottom:400.575000px;}
.y14b{bottom:403.995000px;}
.yca{bottom:408.855000px;}
.y18c{bottom:412.995000px;}
.y75{bottom:414.795000px;}
.y14{bottom:417.135000px;}
.y175{bottom:417.315000px;}
.yf6{bottom:420.555000px;}
.y12e{bottom:422.175000px;}
.y14a{bottom:423.795000px;}
.yc9{bottom:428.835000px;}
.y18b{bottom:432.795000px;}
.y74{bottom:434.595000px;}
.y13{bottom:436.935000px;}
.y16d{bottom:438.735000px;}
.yf5{bottom:440.355000px;}
.y12d{bottom:441.975000px;}
.y149{bottom:443.595000px;}
.yc8{bottom:448.635000px;}
.y18a{bottom:452.595000px;}
.y73{bottom:454.395000px;}
.y26{bottom:456.195000px;}
.yf4{bottom:460.155000px;}
.y12c{bottom:461.775000px;}
.y148{bottom:463.395000px;}
.yc7{bottom:468.435000px;}
.y189{bottom:472.395000px;}
.y72{bottom:474.375000px;}
.yf3{bottom:479.955000px;}
.y12b{bottom:481.575000px;}
.y171{bottom:483.195000px;}
.y147{bottom:483.375000px;}
.yc6{bottom:488.235000px;}
.y188{bottom:492.375000px;}
.y71{bottom:494.175000px;}
.yf2{bottom:499.755000px;}
.y12a{bottom:501.555000px;}
.y146{bottom:503.175000px;}
.y16c{bottom:504.615000px;}
.yc5{bottom:508.035000px;}
.y187{bottom:512.175000px;}
.y9a{bottom:513.975000px;}
.yf1{bottom:519.735000px;}
.y129{bottom:521.355000px;}
.y70{bottom:522.975000px;}
.yc4{bottom:528.015000px;}
.y16b{bottom:531.975000px;}
.y99{bottom:533.775000px;}
.yf0{bottom:539.535000px;}
.y128{bottom:541.155000px;}
.y6f{bottom:542.775000px;}
.yc3{bottom:547.815000px;}
.y16a{bottom:551.775000px;}
.y98{bottom:553.575000px;}
.yef{bottom:559.335000px;}
.y127{bottom:560.955000px;}
.y6e{bottom:562.575000px;}
.yc2{bottom:567.615000px;}
.y169{bottom:571.575000px;}
.y97{bottom:573.555000px;}
.yee{bottom:579.135000px;}
.y126{bottom:580.755000px;}
.y6d{bottom:582.555000px;}
.yc1{bottom:587.415000px;}
.y168{bottom:591.555000px;}
.y96{bottom:593.355000px;}
.yed{bottom:598.935000px;}
.y125{bottom:600.735000px;}
.y6c{bottom:602.355000px;}
.yc0{bottom:607.215000px;}
.y167{bottom:611.355000px;}
.y95{bottom:613.155000px;}
.yec{bottom:618.915000px;}
.y124{bottom:620.535000px;}
.y6b{bottom:622.155000px;}
.ybf{bottom:627.195000px;}
.y166{bottom:631.155000px;}
.y94{bottom:632.955000px;}
.yeb{bottom:638.715000px;}
.y123{bottom:640.335000px;}
.y6a{bottom:641.955000px;}
.ybe{bottom:646.995000px;}
.y165{bottom:650.985000px;}
.y93{bottom:652.785000px;}
.yea{bottom:658.545000px;}
.y122{bottom:660.165000px;}
.y69{bottom:661.785000px;}
.ybd{bottom:666.825000px;}
.y164{bottom:670.785000px;}
.y92{bottom:672.765000px;}
.ye9{bottom:678.345000px;}
.y121{bottom:679.965000px;}
.y68{bottom:681.765000px;}
.ybc{bottom:686.625000px;}
.y163{bottom:690.765000px;}
.y91{bottom:692.565000px;}
.yde{bottom:693.105000px;}
.y120{bottom:699.945000px;}
.y67{bottom:701.565000px;}
.ybb{bottom:706.425000px;}
.y162{bottom:710.565000px;}
.y90{bottom:712.365000px;}
.ye8{bottom:714.705000px;}
.y11f{bottom:719.745000px;}
.y66{bottom:721.365000px;}
.yba{bottom:726.405000px;}
.y161{bottom:730.365000px;}
.y8f{bottom:732.165000px;}
.ye7{bottom:736.125000px;}
.y11e{bottom:739.545000px;}
.y65{bottom:741.165000px;}
.yb9{bottom:746.205000px;}
.y160{bottom:750.165000px;}
.y8e{bottom:751.965000px;}
.ye6{bottom:757.725000px;}
.y11d{bottom:759.345000px;}
.y64{bottom:760.965000px;}
.yb8{bottom:766.005000px;}
.y15f{bottom:769.965000px;}
.ye5{bottom:779.145000px;}
.y63{bottom:780.945000px;}
.yb7{bottom:785.805000px;}
.y15e{bottom:789.945000px;}
.y11c{bottom:799.125000px;}
.ye4{bottom:800.565000px;}
.y62{bottom:800.745000px;}
.yb6{bottom:805.605000px;}
.y15d{bottom:809.745000px;}
.y11b{bottom:818.925000px;}
.y61{bottom:820.545000px;}
.ydd{bottom:822.165000px;}
.yb5{bottom:825.585000px;}
.y15c{bottom:829.545000px;}
.y3b{bottom:838.365000px;}
.y11a{bottom:838.725000px;}
.y8d{bottom:840.345000px;}
.y141{bottom:841.965000px;}
.yb4{bottom:845.385000px;}
.y60{bottom:849.345000px;}
.y119{bottom:858.525000px;}
.y8c{bottom:860.145000px;}
.yb3{bottom:865.185000px;}
.y5f{bottom:869.145000px;}
.y12{bottom:871.845000px;}
.y118{bottom:878.325000px;}
.y8b{bottom:880.125000px;}
.yb2{bottom:884.985000px;}
.y5e{bottom:889.125000px;}
.y11{bottom:896.865000px;}
.y117{bottom:898.350000px;}
.y8a{bottom:899.970000px;}
.yb1{bottom:904.830000px;}
.y5d{bottom:908.970000px;}
.y10{bottom:916.710000px;}
.y116{bottom:918.150000px;}
.y89{bottom:919.770000px;}
.yb0{bottom:924.630000px;}
.y5c{bottom:928.770000px;}
.yf{bottom:932.010000px;}
.y115{bottom:937.950000px;}
.y88{bottom:939.570000px;}
.yaf{bottom:944.610000px;}
.y5b{bottom:948.570000px;}
.ye{bottom:953.250000px;}
.y114{bottom:957.750000px;}
.y87{bottom:959.370000px;}
.yae{bottom:964.410000px;}
.y5a{bottom:968.370000px;}
.yd{bottom:976.650000px;}
.y113{bottom:977.550000px;}
.y86{bottom:979.350000px;}
.yad{bottom:984.210000px;}
.y59{bottom:988.350000px;}
.y112{bottom:997.530000px;}
.y85{bottom:999.150000px;}
.yac{bottom:1004.010000px;}
.y58{bottom:1008.150000px;}
.yc{bottom:1008.330000px;}
.y111{bottom:1017.330000px;}
.yab{bottom:1023.810000px;}
.y57{bottom:1027.950000px;}
.y109{bottom:1032.090000px;}
.ya{bottom:1034.610000px;}
.yaa{bottom:1043.790000px;}
.y56{bottom:1047.750000px;}
.y1{bottom:1052.250000px;}
.y110{bottom:1053.510000px;}
.ya9{bottom:1063.590000px;}
.y55{bottom:1067.550000px;}
.y10f{bottom:1075.110000px;}
.ya8{bottom:1083.390000px;}
.y54{bottom:1087.530000px;}
.y10e{bottom:1096.530000px;}
.ya7{bottom:1103.190000px;}
.y53{bottom:1107.330000px;}
.y10d{bottom:1117.950000px;}
.ya6{bottom:1122.990000px;}
.y52{bottom:1127.130000px;}
.ya5{bottom:1137.930000px;}
.y108{bottom:1139.550000px;}
.y51{bottom:1146.960000px;}
.ya4{bottom:1159.380000px;}
.y50{bottom:1166.760000px;}
.y4f{bottom:1195.740000px;}
.he{height:19.800000px;}
.h12{height:19.836000px;}
.h11{height:19.980000px;}
.h1b{height:21.420000px;}
.h1d{height:21.456000px;}
.ha{height:34.855313px;}
.h19{height:39.636000px;}
.h17{height:39.780000px;}
.hb{height:42.164648px;}
.h1c{height:42.876000px;}
.h10{height:45.024258px;}
.h9{height:53.224453px;}
.h8{height:53.573906px;}
.h1e{height:55.735312px;}
.h1a{height:64.260000px;}
.h5{height:64.546875px;}
.hd{height:65.884219px;}
.h6{height:67.565039px;}
.h3{height:73.722656px;}
.h13{height:84.240000px;}
.h7{height:85.847344px;}
.h16{height:104.220000px;}
.h4{height:105.060586px;}
.h15{height:105.840000px;}
.h14{height:127.260000px;}
.h18{height:147.096000px;}
.h2{height:156.630000px;}
.hf{height:376.950000px;}
.hc{height:401.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:53.316000px;}
.wa{width:73.836000px;}
.w1e{width:100.656000px;}
.w1b{width:101.736000px;}
.w18{width:105.696000px;}
.w21{width:110.376000px;}
.wc{width:126.936000px;}
.w2{width:127.656000px;}
.w4{width:157.170000px;}
.w12{width:173.730000px;}
.wf{width:178.410000px;}
.wd{width:190.290000px;}
.w16{width:200.595000px;}
.w10{width:200.955000px;}
.w1f{width:211.215000px;}
.w13{width:232.455000px;}
.wb{width:233.130000px;}
.w15{width:233.535000px;}
.w1c{width:259.635000px;}
.w9{width:284.970000px;}
.w6{width:285.555000px;}
.w19{width:286.095000px;}
.w14{width:318.090000px;}
.w11{width:381.675000px;}
.w1a{width:392.655000px;}
.we{width:407.265000px;}
.w1d{width:418.575000px;}
.w17{width:435.135000px;}
.w20{width:467.175000px;}
.w7{width:494.745000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.020000px;}
.x6{left:8.100000px;}
.x11{left:9.720000px;}
.x4{left:34.020000px;}
.xb{left:52.919987px;}
.x1{left:54.000000px;}
.x1a{left:55.080000px;}
.xa{left:58.499987px;}
.x17{left:67.680000px;}
.x1d{left:75.060000px;}
.x25{left:79.559987px;}
.x23{left:80.999987px;}
.x14{left:83.699987px;}
.x27{left:96.515987px;}
.x26{left:106.595987px;}
.x24{left:108.035987px;}
.x7{left:110.385000px;}
.xf{left:113.076000px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x3{left:181.650000px;}
.xe{left:227.369987px;}
.x15{left:248.970000px;}
.x22{left:267.015000px;}
.x18{left:269.355000px;}
.x1e{left:276.555000px;}
.x1b{left:288.435000px;}
.x21{left:315.615000px;}
.xc{left:342.795000px;}
.x10{left:398.775000px;}
.x12{left:473.325000px;}
.x1c{left:607.245000px;}
.x19{left:651.750000px;}
.x16{left:656.970000px;}
.x9{left:681.450000px;}
.x13{left:707.190000px;}
.x1f{left:712.410000px;}
.x20{left:735.810000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls14{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.225067pt;}
.lse{letter-spacing:-0.183467pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.337707pt;}
.ls17{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls2{letter-spacing:23.813120pt;}
.ls1{letter-spacing:24.320000pt;}
.ls10{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws7{word-spacing:-13.054933pt;}
.wsd{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.632320pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-3.013120pt;}
._9{margin-left:-2.031573pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.171200pt;}
._5{width:2.181333pt;}
._6{width:3.616640pt;}
._7{width:4.817493pt;}
._15{width:5.778560pt;}
._1a{width:6.712320pt;}
._3{width:7.660800pt;}
._4{width:8.552960pt;}
._17{width:9.814187pt;}
._16{width:10.840320pt;}
._18{width:11.763200pt;}
._19{width:14.365867pt;}
._12{width:15.525760pt;}
._11{width:16.573440pt;}
._13{width:17.685120pt;}
._f{width:18.763520pt;}
._e{width:19.760640pt;}
._10{width:21.248000pt;}
._1b{width:22.310400pt;}
._b{width:23.635840pt;}
._a{width:24.539307pt;}
._1e{width:26.079360pt;}
._23{width:27.112320pt;}
._24{width:28.056107pt;}
._1f{width:30.382080pt;}
._14{width:34.687360pt;}
._22{width:44.990080pt;}
._c{width:47.061760pt;}
._d{width:47.967360pt;}
._25{width:53.332480pt;}
._20{width:56.039040pt;}
._21{width:56.944640pt;}
._1c{width:74.102400pt;}
._26{width:76.968747pt;}
._1d{width:96.197760pt;}
._1{width:977.802667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.120000pt;}
.y3c{bottom:5.120000pt;}
.ya1{bottom:5.146667pt;}
.y130{bottom:5.160000pt;}
.y9f{bottom:5.280000pt;}
.y172{bottom:6.560000pt;}
.y176{bottom:6.600000pt;}
.y7{bottom:7.200000pt;}
.y170{bottom:9.440000pt;}
.y144{bottom:9.600000pt;}
.y3a{bottom:9.760000pt;}
.y4e{bottom:22.720000pt;}
.y15a{bottom:22.746667pt;}
.y145{bottom:22.880000pt;}
.y174{bottom:25.640000pt;}
.y16f{bottom:27.040000pt;}
.y143{bottom:27.200000pt;}
.y39{bottom:27.520000pt;}
.y132{bottom:30.080000pt;}
.ye3{bottom:30.240000pt;}
.y6{bottom:32.000000pt;}
.y4d{bottom:40.480000pt;}
.y16e{bottom:44.640000pt;}
.ycf{bottom:44.800000pt;}
.y38{bottom:45.120000pt;}
.y10c{bottom:46.240000pt;}
.y155{bottom:47.706667pt;}
.ye2{bottom:47.840000pt;}
.yb{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.y4c{bottom:58.080000pt;}
.yce{bottom:62.400000pt;}
.y37{bottom:62.720000pt;}
.y10b{bottom:63.840000pt;}
.ye1{bottom:65.440000pt;}
.y154{bottom:65.466667pt;}
.y25{bottom:70.880000pt;}
.y4{bottom:72.640000pt;}
.y186{bottom:72.800000pt;}
.ydc{bottom:73.280000pt;}
.y107{bottom:73.920000pt;}
.ya3{bottom:75.520000pt;}
.y4b{bottom:75.680000pt;}
.y142{bottom:80.160000pt;}
.y36{bottom:80.320000pt;}
.y10a{bottom:81.600000pt;}
.y140{bottom:82.080000pt;}
.ye0{bottom:83.040000pt;}
.y153{bottom:83.066667pt;}
.y24{bottom:88.640000pt;}
.y185{bottom:90.400000pt;}
.ydb{bottom:90.880000pt;}
.y106{bottom:91.680000pt;}
.y4a{bottom:93.280000pt;}
.ya2{bottom:94.560000pt;}
.y84{bottom:96.160000pt;}
.y9{bottom:96.506667pt;}
.y35{bottom:97.920000pt;}
.y13f{bottom:99.840000pt;}
.ydf{bottom:100.640000pt;}
.y152{bottom:100.666667pt;}
.y19b{bottom:102.560000pt;}
.y3{bottom:104.986667pt;}
.y23{bottom:106.240000pt;}
.y184{bottom:108.160000pt;}
.yda{bottom:108.640000pt;}
.y105{bottom:109.280000pt;}
.y49{bottom:110.880000pt;}
.y83{bottom:113.760000pt;}
.y34{bottom:115.680000pt;}
.y8{bottom:116.026667pt;}
.y13e{bottom:117.440000pt;}
.y151{bottom:118.266667pt;}
.y15b{bottom:118.880000pt;}
.y19a{bottom:120.160000pt;}
.y22{bottom:123.840000pt;}
.y183{bottom:125.760000pt;}
.yd9{bottom:126.240000pt;}
.y104{bottom:126.880000pt;}
.y48{bottom:128.640000pt;}
.y82{bottom:131.360000pt;}
.y150{bottom:132.000000pt;}
.ya0{bottom:132.800000pt;}
.y33{bottom:133.280000pt;}
.y13d{bottom:135.066667pt;}
.y199{bottom:137.786667pt;}
.y21{bottom:141.466667pt;}
.y182{bottom:143.386667pt;}
.yd8{bottom:143.866667pt;}
.y103{bottom:144.506667pt;}
.y47{bottom:146.240000pt;}
.y81{bottom:149.146667pt;}
.y32{bottom:150.880000pt;}
.y9e{bottom:151.866667pt;}
.y13c{bottom:152.666667pt;}
.y198{bottom:155.386667pt;}
.y20{bottom:159.066667pt;}
.y181{bottom:160.986667pt;}
.yd7{bottom:161.466667pt;}
.y102{bottom:162.106667pt;}
.y46{bottom:163.840000pt;}
.y80{bottom:166.746667pt;}
.y31{bottom:168.480000pt;}
.y159{bottom:168.826667pt;}
.y13b{bottom:170.266667pt;}
.y197{bottom:173.146667pt;}
.y9d{bottom:176.186667pt;}
.y1f{bottom:176.826667pt;}
.y180{bottom:178.586667pt;}
.yd6{bottom:179.066667pt;}
.y101{bottom:179.706667pt;}
.y45{bottom:181.466667pt;}
.y7f{bottom:184.346667pt;}
.y30{bottom:186.106667pt;}
.y158{bottom:187.866667pt;}
.y13a{bottom:188.026667pt;}
.y196{bottom:190.746667pt;}
.y9c{bottom:192.346667pt;}
.y1e{bottom:194.426667pt;}
.y17f{bottom:196.346667pt;}
.yd5{bottom:196.826667pt;}
.y100{bottom:197.466667pt;}
.y44{bottom:199.066667pt;}
.y7e{bottom:201.946667pt;}
.y2f{bottom:203.866667pt;}
.y139{bottom:205.626667pt;}
.y157{bottom:206.906667pt;}
.y195{bottom:208.346667pt;}
.y9b{bottom:209.946667pt;}
.y1d{bottom:212.026667pt;}
.y17e{bottom:213.946667pt;}
.yd4{bottom:214.426667pt;}
.yff{bottom:215.066667pt;}
.y43{bottom:216.826667pt;}
.y2e{bottom:221.466667pt;}
.y138{bottom:223.226667pt;}
.y194{bottom:225.946667pt;}
.y156{bottom:226.106667pt;}
.y7d{bottom:227.546667pt;}
.y1c{bottom:229.626667pt;}
.y17d{bottom:231.546667pt;}
.yd3{bottom:232.026667pt;}
.yfe{bottom:232.666667pt;}
.y42{bottom:234.426667pt;}
.y131{bottom:236.346667pt;}
.y2d{bottom:239.066667pt;}
.y193{bottom:243.546667pt;}
.ycd{bottom:245.146667pt;}
.y7c{bottom:245.306667pt;}
.y1b{bottom:247.226667pt;}
.y17c{bottom:249.146667pt;}
.yfd{bottom:250.266667pt;}
.y41{bottom:252.026667pt;}
.y137{bottom:255.386667pt;}
.y2c{bottom:256.666667pt;}
.y192{bottom:261.306667pt;}
.y7b{bottom:262.906667pt;}
.yd2{bottom:264.186667pt;}
.y1a{bottom:264.986667pt;}
.y17b{bottom:266.746667pt;}
.yfc{bottom:267.866667pt;}
.y40{bottom:269.626667pt;}
.y2b{bottom:274.266667pt;}
.y136{bottom:274.586667pt;}
.y191{bottom:278.906667pt;}
.y7a{bottom:280.506667pt;}
.y19{bottom:282.586667pt;}
.yd1{bottom:283.386667pt;}
.y17a{bottom:284.506667pt;}
.yfb{bottom:285.626667pt;}
.y3f{bottom:287.226667pt;}
.y14f{bottom:288.506667pt;}
.y2a{bottom:292.026667pt;}
.y135{bottom:293.626667pt;}
.y190{bottom:296.506667pt;}
.y79{bottom:298.106667pt;}
.y18{bottom:300.186667pt;}
.y179{bottom:302.106667pt;}
.yd0{bottom:302.426667pt;}
.yfa{bottom:303.226667pt;}
.y3e{bottom:304.986667pt;}
.y14e{bottom:306.106667pt;}
.y29{bottom:309.626667pt;}
.y134{bottom:312.826667pt;}
.y18f{bottom:314.106667pt;}
.y78{bottom:315.706667pt;}
.y17{bottom:317.786667pt;}
.y178{bottom:319.706667pt;}
.yf9{bottom:320.826667pt;}
.ycc{bottom:321.626667pt;}
.y3d{bottom:322.586667pt;}
.y14d{bottom:323.706667pt;}
.y28{bottom:327.226667pt;}
.y18e{bottom:331.706667pt;}
.y133{bottom:331.866667pt;}
.y77{bottom:333.466667pt;}
.y16{bottom:335.386667pt;}
.y177{bottom:337.306667pt;}
.yf8{bottom:338.426667pt;}
.y14c{bottom:341.466667pt;}
.y27{bottom:344.826667pt;}
.ycb{bottom:345.786667pt;}
.y18d{bottom:349.466667pt;}
.y173{bottom:350.426667pt;}
.y12f{bottom:350.906667pt;}
.y76{bottom:351.066667pt;}
.y15{bottom:353.146667pt;}
.yf7{bottom:356.066667pt;}
.y14b{bottom:359.106667pt;}
.yca{bottom:363.426667pt;}
.y18c{bottom:367.106667pt;}
.y75{bottom:368.706667pt;}
.y14{bottom:370.786667pt;}
.y175{bottom:370.946667pt;}
.yf6{bottom:373.826667pt;}
.y12e{bottom:375.266667pt;}
.y14a{bottom:376.706667pt;}
.yc9{bottom:381.186667pt;}
.y18b{bottom:384.706667pt;}
.y74{bottom:386.306667pt;}
.y13{bottom:388.386667pt;}
.y16d{bottom:389.986667pt;}
.yf5{bottom:391.426667pt;}
.y12d{bottom:392.866667pt;}
.y149{bottom:394.306667pt;}
.yc8{bottom:398.786667pt;}
.y18a{bottom:402.306667pt;}
.y73{bottom:403.906667pt;}
.y26{bottom:405.506667pt;}
.yf4{bottom:409.026667pt;}
.y12c{bottom:410.466667pt;}
.y148{bottom:411.906667pt;}
.yc7{bottom:416.386667pt;}
.y189{bottom:419.906667pt;}
.y72{bottom:421.666667pt;}
.yf3{bottom:426.626667pt;}
.y12b{bottom:428.066667pt;}
.y171{bottom:429.506667pt;}
.y147{bottom:429.666667pt;}
.yc6{bottom:433.986667pt;}
.y188{bottom:437.666667pt;}
.y71{bottom:439.266667pt;}
.yf2{bottom:444.226667pt;}
.y12a{bottom:445.826667pt;}
.y146{bottom:447.266667pt;}
.y16c{bottom:448.546667pt;}
.yc5{bottom:451.586667pt;}
.y187{bottom:455.266667pt;}
.y9a{bottom:456.866667pt;}
.yf1{bottom:461.986667pt;}
.y129{bottom:463.426667pt;}
.y70{bottom:464.866667pt;}
.yc4{bottom:469.346667pt;}
.y16b{bottom:472.866667pt;}
.y99{bottom:474.466667pt;}
.yf0{bottom:479.586667pt;}
.y128{bottom:481.026667pt;}
.y6f{bottom:482.466667pt;}
.yc3{bottom:486.946667pt;}
.y16a{bottom:490.466667pt;}
.y98{bottom:492.066667pt;}
.yef{bottom:497.186667pt;}
.y127{bottom:498.626667pt;}
.y6e{bottom:500.066667pt;}
.yc2{bottom:504.546667pt;}
.y169{bottom:508.066667pt;}
.y97{bottom:509.826667pt;}
.yee{bottom:514.786667pt;}
.y126{bottom:516.226667pt;}
.y6d{bottom:517.826667pt;}
.yc1{bottom:522.146667pt;}
.y168{bottom:525.826667pt;}
.y96{bottom:527.426667pt;}
.yed{bottom:532.386667pt;}
.y125{bottom:533.986667pt;}
.y6c{bottom:535.426667pt;}
.yc0{bottom:539.746667pt;}
.y167{bottom:543.426667pt;}
.y95{bottom:545.026667pt;}
.yec{bottom:550.146667pt;}
.y124{bottom:551.586667pt;}
.y6b{bottom:553.026667pt;}
.ybf{bottom:557.506667pt;}
.y166{bottom:561.026667pt;}
.y94{bottom:562.626667pt;}
.yeb{bottom:567.746667pt;}
.y123{bottom:569.186667pt;}
.y6a{bottom:570.626667pt;}
.ybe{bottom:575.106667pt;}
.y165{bottom:578.653333pt;}
.y93{bottom:580.253333pt;}
.yea{bottom:585.373333pt;}
.y122{bottom:586.813333pt;}
.y69{bottom:588.253333pt;}
.ybd{bottom:592.733333pt;}
.y164{bottom:596.253333pt;}
.y92{bottom:598.013333pt;}
.ye9{bottom:602.973333pt;}
.y121{bottom:604.413333pt;}
.y68{bottom:606.013333pt;}
.ybc{bottom:610.333333pt;}
.y163{bottom:614.013333pt;}
.y91{bottom:615.613333pt;}
.yde{bottom:616.093333pt;}
.y120{bottom:622.173333pt;}
.y67{bottom:623.613333pt;}
.ybb{bottom:627.933333pt;}
.y162{bottom:631.613333pt;}
.y90{bottom:633.213333pt;}
.ye8{bottom:635.293333pt;}
.y11f{bottom:639.773333pt;}
.y66{bottom:641.213333pt;}
.yba{bottom:645.693333pt;}
.y161{bottom:649.213333pt;}
.y8f{bottom:650.813333pt;}
.ye7{bottom:654.333333pt;}
.y11e{bottom:657.373333pt;}
.y65{bottom:658.813333pt;}
.yb9{bottom:663.293333pt;}
.y160{bottom:666.813333pt;}
.y8e{bottom:668.413333pt;}
.ye6{bottom:673.533333pt;}
.y11d{bottom:674.973333pt;}
.y64{bottom:676.413333pt;}
.yb8{bottom:680.893333pt;}
.y15f{bottom:684.413333pt;}
.ye5{bottom:692.573333pt;}
.y63{bottom:694.173333pt;}
.yb7{bottom:698.493333pt;}
.y15e{bottom:702.173333pt;}
.y11c{bottom:710.333333pt;}
.ye4{bottom:711.613333pt;}
.y62{bottom:711.773333pt;}
.yb6{bottom:716.093333pt;}
.y15d{bottom:719.773333pt;}
.y11b{bottom:727.933333pt;}
.y61{bottom:729.373333pt;}
.ydd{bottom:730.813333pt;}
.yb5{bottom:733.853333pt;}
.y15c{bottom:737.373333pt;}
.y3b{bottom:745.213333pt;}
.y11a{bottom:745.533333pt;}
.y8d{bottom:746.973333pt;}
.y141{bottom:748.413333pt;}
.yb4{bottom:751.453333pt;}
.y60{bottom:754.973333pt;}
.y119{bottom:763.133333pt;}
.y8c{bottom:764.573333pt;}
.yb3{bottom:769.053333pt;}
.y5f{bottom:772.573333pt;}
.y12{bottom:774.973333pt;}
.y118{bottom:780.733333pt;}
.y8b{bottom:782.333333pt;}
.yb2{bottom:786.653333pt;}
.y5e{bottom:790.333333pt;}
.y11{bottom:797.213333pt;}
.y117{bottom:798.533333pt;}
.y8a{bottom:799.973333pt;}
.yb1{bottom:804.293333pt;}
.y5d{bottom:807.973333pt;}
.y10{bottom:814.853333pt;}
.y116{bottom:816.133333pt;}
.y89{bottom:817.573333pt;}
.yb0{bottom:821.893333pt;}
.y5c{bottom:825.573333pt;}
.yf{bottom:828.453333pt;}
.y115{bottom:833.733333pt;}
.y88{bottom:835.173333pt;}
.yaf{bottom:839.653333pt;}
.y5b{bottom:843.173333pt;}
.ye{bottom:847.333333pt;}
.y114{bottom:851.333333pt;}
.y87{bottom:852.773333pt;}
.yae{bottom:857.253333pt;}
.y5a{bottom:860.773333pt;}
.yd{bottom:868.133333pt;}
.y113{bottom:868.933333pt;}
.y86{bottom:870.533333pt;}
.yad{bottom:874.853333pt;}
.y59{bottom:878.533333pt;}
.y112{bottom:886.693333pt;}
.y85{bottom:888.133333pt;}
.yac{bottom:892.453333pt;}
.y58{bottom:896.133333pt;}
.yc{bottom:896.293333pt;}
.y111{bottom:904.293333pt;}
.yab{bottom:910.053333pt;}
.y57{bottom:913.733333pt;}
.y109{bottom:917.413333pt;}
.ya{bottom:919.653333pt;}
.yaa{bottom:927.813333pt;}
.y56{bottom:931.333333pt;}
.y1{bottom:935.333333pt;}
.y110{bottom:936.453333pt;}
.ya9{bottom:945.413333pt;}
.y55{bottom:948.933333pt;}
.y10f{bottom:955.653333pt;}
.ya8{bottom:963.013333pt;}
.y54{bottom:966.693333pt;}
.y10e{bottom:974.693333pt;}
.ya7{bottom:980.613333pt;}
.y53{bottom:984.293333pt;}
.y10d{bottom:993.733333pt;}
.ya6{bottom:998.213333pt;}
.y52{bottom:1001.893333pt;}
.ya5{bottom:1011.493333pt;}
.y108{bottom:1012.933333pt;}
.y51{bottom:1019.520000pt;}
.ya4{bottom:1030.560000pt;}
.y50{bottom:1037.120000pt;}
.y4f{bottom:1062.880000pt;}
.he{height:17.600000pt;}
.h12{height:17.632000pt;}
.h11{height:17.760000pt;}
.h1b{height:19.040000pt;}
.h1d{height:19.072000pt;}
.ha{height:30.982500pt;}
.h19{height:35.232000pt;}
.h17{height:35.360000pt;}
.hb{height:37.479688pt;}
.h1c{height:38.112000pt;}
.h10{height:40.021563pt;}
.h9{height:47.310625pt;}
.h8{height:47.621250pt;}
.h1e{height:49.542500pt;}
.h1a{height:57.120000pt;}
.h5{height:57.375000pt;}
.hd{height:58.563750pt;}
.h6{height:60.057813pt;}
.h3{height:65.531250pt;}
.h13{height:74.880000pt;}
.h7{height:76.308750pt;}
.h16{height:92.640000pt;}
.h4{height:93.387187pt;}
.h15{height:94.080000pt;}
.h14{height:113.120000pt;}
.h18{height:130.752000pt;}
.h2{height:139.226667pt;}
.hf{height:335.066667pt;}
.hc{height:357.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:47.392000pt;}
.wa{width:65.632000pt;}
.w1e{width:89.472000pt;}
.w1b{width:90.432000pt;}
.w18{width:93.952000pt;}
.w21{width:98.112000pt;}
.wc{width:112.832000pt;}
.w2{width:113.472000pt;}
.w4{width:139.706667pt;}
.w12{width:154.426667pt;}
.wf{width:158.586667pt;}
.wd{width:169.146667pt;}
.w16{width:178.306667pt;}
.w10{width:178.626667pt;}
.w1f{width:187.746667pt;}
.w13{width:206.626667pt;}
.wb{width:207.226667pt;}
.w15{width:207.586667pt;}
.w1c{width:230.786667pt;}
.w9{width:253.306667pt;}
.w6{width:253.826667pt;}
.w19{width:254.306667pt;}
.w14{width:282.746667pt;}
.w11{width:339.266667pt;}
.w1a{width:349.026667pt;}
.we{width:362.013333pt;}
.w1d{width:372.066667pt;}
.w17{width:386.786667pt;}
.w20{width:415.266667pt;}
.w7{width:439.773333pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.240000pt;}
.x6{left:7.200000pt;}
.x11{left:8.640000pt;}
.x4{left:30.240000pt;}
.xb{left:47.039988pt;}
.x1{left:48.000000pt;}
.x1a{left:48.960000pt;}
.xa{left:51.999988pt;}
.x17{left:60.160000pt;}
.x1d{left:66.720000pt;}
.x25{left:70.719988pt;}
.x23{left:71.999988pt;}
.x14{left:74.399988pt;}
.x27{left:85.791988pt;}
.x26{left:94.751988pt;}
.x24{left:96.031988pt;}
.x7{left:98.120000pt;}
.xf{left:100.512000pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x3{left:161.466667pt;}
.xe{left:202.106655pt;}
.x15{left:221.306667pt;}
.x22{left:237.346667pt;}
.x18{left:239.426667pt;}
.x1e{left:245.826667pt;}
.x1b{left:256.386667pt;}
.x21{left:280.546667pt;}
.xc{left:304.706667pt;}
.x10{left:354.466667pt;}
.x12{left:420.733333pt;}
.x1c{left:539.773333pt;}
.x19{left:579.333333pt;}
.x16{left:583.973333pt;}
.x9{left:605.733333pt;}
.x13{left:628.613333pt;}
.x1f{left:633.253333pt;}
.x20{left:654.053333pt;}
}




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