
    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_329285725f30efe73df394e3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_237c9ad4970be88e6c775bbb.woff2')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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2c406e2b93eb8af84bcb6550.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fe420e4c662cb9db2caf7597.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_24357c95a3e5d9adeb73e47d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5e97a318005c1083b1d4b83e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.253200px;}
.ls10{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.053280px;}
.ls3{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.135360px;}
.ls13{letter-spacing:0.135600px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.612000px;}
.ls16{letter-spacing:5.220000px;}
.ls17{letter-spacing:11.466720px;}
.ls15{letter-spacing:41.682720px;}
.ls14{letter-spacing:46.002720px;}
.lsc{letter-spacing:55.386720px;}
.ls5{letter-spacing:64.002720px;}
.ls8{letter-spacing:64.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.552000px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.075600px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.686800px;}
.wsa{word-spacing:-14.680200px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-4.654560px;}
._d{margin-left:-3.527520px;}
._7{margin-left:-2.332320px;}
._0{margin-left:-1.086720px;}
._2{width:1.674960px;}
._1{width:2.974080px;}
._5{width:4.500000px;}
._6{width:6.394320px;}
._8{width:7.541760px;}
._9{width:8.665200px;}
._c{width:9.979920px;}
._f{width:11.224800px;}
._11{width:12.289440px;}
._b{width:13.324800px;}
._a{width:16.006800px;}
._e{width:17.697840px;}
._13{width:18.814320px;}
._1e{width:19.838640px;}
._1f{width:20.887920px;}
._1a{width:22.393200px;}
._1b{width:23.605200px;}
._23{width:24.738960px;}
._22{width:25.876080px;}
._27{width:29.835120px;}
._26{width:31.008000px;}
._18{width:33.943680px;}
._14{width:48.760800px;}
._15{width:49.933920px;}
._1d{width:53.257200px;}
._1c{width:54.262080px;}
._19{width:58.307040px;}
._20{width:75.656160px;}
._21{width:76.801920px;}
._17{width:89.042400px;}
._16{width:106.133760px;}
._29{width:115.966320px;}
._28{width:117.225120px;}
._4{width:136.056000px;}
._12{width:180.120000px;}
._24{width:428.040480px;}
._25{width:429.375600px;}
._3{width:636.906000px;}
.fc10{color:rgb(0,102,153);}
.fc11{color:rgb(0,102,204);}
.fcd{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fc5{color:rgb(34,34,34);}
.fc7{color:rgb(2,114,177);}
.fca{color:rgb(51,51,51);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(47,84,150);}
.fcf{color:rgb(0,109,180);}
.fce{color:rgb(18,61,128);}
.fc6{color:rgb(10,88,202);}
.fcc{color:rgb(117,117,117);}
.fc8{color:rgb(16,30,90);}
.fc9{color:rgb(2,94,141);}
.fc12{color:rgb(0,0,26);}
.fcb{color:rgb(0,50,160);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:3.240000px;}
.yc9{bottom:11.520000px;}
.yd2{bottom:18.225000px;}
.ycc{bottom:18.360000px;}
.ycf{bottom:19.620000px;}
.y7e{bottom:24.660000px;}
.y86{bottom:29.160000px;}
.y79{bottom:31.140000px;}
.y82{bottom:34.740000px;}
.ycb{bottom:35.460000px;}
.yd1{bottom:35.505000px;}
.yc{bottom:36.720000px;}
.yce{bottom:36.900000px;}
.y90{bottom:37.800000px;}
.y8b{bottom:37.845000px;}
.y7d{bottom:41.940000px;}
.yd5{bottom:43.740000px;}
.y85{bottom:46.440000px;}
.y78{bottom:48.420000px;}
.y81{bottom:52.020000px;}
.y8f{bottom:55.080000px;}
.y8a{bottom:55.125000px;}
.yb{bottom:55.260000px;}
.y7c{bottom:59.220000px;}
.yd4{bottom:61.020000px;}
.y84{bottom:63.540000px;}
.y80{bottom:69.120000px;}
.ya{bottom:70.776000px;}
.y8e{bottom:72.360000px;}
.y89{bottom:72.405000px;}
.y7b{bottom:76.500000px;}
.y88{bottom:89.505000px;}
.y8d{bottom:89.640000px;}
.y182{bottom:116.496000px;}
.y3d{bottom:120.096000px;}
.yf2{bottom:124.776000px;}
.y6e{bottom:129.456000px;}
.y122{bottom:132.156000px;}
.y181{bottom:133.776000px;}
.y140{bottom:137.016000px;}
.y3c{bottom:137.196000px;}
.y10e{bottom:137.376000px;}
.yb5{bottom:141.336000px;}
.yf1{bottom:142.056000px;}
.y6d{bottom:146.736000px;}
.y121{bottom:149.256000px;}
.y180{bottom:151.050000px;}
.y3b{bottom:154.470000px;}
.y10d{bottom:154.650000px;}
.y13f{bottom:155.370000px;}
.yb4{bottom:158.610000px;}
.yf0{bottom:159.330000px;}
.y164{bottom:161.850000px;}
.y6c{bottom:164.010000px;}
.y120{bottom:167.610000px;}
.y17f{bottom:168.330000px;}
.y3a{bottom:171.750000px;}
.y10c{bottom:171.930000px;}
.y13e{bottom:172.650000px;}
.y92{bottom:173.910000px;}
.yef{bottom:176.610000px;}
.yb3{bottom:176.970000px;}
.y163{bottom:179.130000px;}
.y6b{bottom:181.290000px;}
.yd8{bottom:182.910000px;}
.y17e{bottom:185.610000px;}
.y11f{bottom:185.970000px;}
.y39{bottom:189.030000px;}
.y10b{bottom:189.210000px;}
.y13d{bottom:190.830000px;}
.y91{bottom:191.010000px;}
.yee{bottom:193.710000px;}
.yb2{bottom:194.250000px;}
.y162{bottom:196.410000px;}
.y6a{bottom:198.570000px;}
.yd7{bottom:200.190000px;}
.y17d{bottom:202.890000px;}
.y11e{bottom:203.250000px;}
.y8c{bottom:205.770000px;}
.y38{bottom:206.310000px;}
.y13c{bottom:208.110000px;}
.yed{bottom:210.990000px;}
.yb1{bottom:211.530000px;}
.y161{bottom:213.690000px;}
.y69{bottom:215.670000px;}
.yd6{bottom:217.470000px;}
.y17c{bottom:219.990000px;}
.y11d{bottom:220.530000px;}
.y37{bottom:223.590000px;}
.y13b{bottom:225.390000px;}
.yec{bottom:228.270000px;}
.yb0{bottom:228.630000px;}
.y160{bottom:230.790000px;}
.yd3{bottom:232.230000px;}
.y68{bottom:232.950000px;}
.y17b{bottom:237.270000px;}
.y11c{bottom:237.810000px;}
.y36{bottom:240.690000px;}
.y10a{bottom:240.870000px;}
.y13a{bottom:242.670000px;}
.yeb{bottom:245.550000px;}
.yaf{bottom:245.910000px;}
.y15f{bottom:248.070000px;}
.y67{bottom:250.230000px;}
.y17a{bottom:254.550000px;}
.y11b{bottom:254.910000px;}
.y35{bottom:257.970000px;}
.y109{bottom:258.150000px;}
.y139{bottom:259.950000px;}
.yea{bottom:262.830000px;}
.yae{bottom:263.190000px;}
.y15e{bottom:265.350000px;}
.y66{bottom:267.510000px;}
.y179{bottom:271.830000px;}
.y11a{bottom:272.190000px;}
.y34{bottom:275.250000px;}
.y108{bottom:275.430000px;}
.y138{bottom:277.050000px;}
.ye9{bottom:280.110000px;}
.yad{bottom:280.470000px;}
.y15d{bottom:282.630000px;}
.y65{bottom:284.790000px;}
.y178{bottom:289.110000px;}
.y119{bottom:289.470000px;}
.y33{bottom:292.530000px;}
.y107{bottom:292.710000px;}
.y137{bottom:294.330000px;}
.ye8{bottom:297.210000px;}
.yac{bottom:297.750000px;}
.y15c{bottom:299.910000px;}
.y64{bottom:302.070000px;}
.y177{bottom:306.390000px;}
.y118{bottom:306.750000px;}
.yd0{bottom:308.010000px;}
.y32{bottom:309.810000px;}
.y87{bottom:310.170000px;}
.y136{bottom:311.610000px;}
.ye7{bottom:314.490000px;}
.yab{bottom:316.110000px;}
.y15b{bottom:317.055000px;}
.y63{bottom:319.215000px;}
.y176{bottom:323.535000px;}
.y117{bottom:324.075000px;}
.y31{bottom:327.135000px;}
.y135{bottom:328.935000px;}
.ye6{bottom:331.815000px;}
.yaa{bottom:333.255000px;}
.y15a{bottom:334.335000px;}
.y62{bottom:336.495000px;}
.y175{bottom:340.815000px;}
.y116{bottom:341.175000px;}
.y30{bottom:344.235000px;}
.y106{bottom:344.415000px;}
.y134{bottom:346.215000px;}
.ye5{bottom:349.095000px;}
.ya9{bottom:350.535000px;}
.y159{bottom:351.615000px;}
.y61{bottom:353.775000px;}
.y174{bottom:358.095000px;}
.ycd{bottom:358.275000px;}
.y115{bottom:358.455000px;}
.y2f{bottom:361.515000px;}
.y105{bottom:361.695000px;}
.y133{bottom:363.495000px;}
.ye4{bottom:366.375000px;}
.ya8{bottom:367.815000px;}
.y158{bottom:369.975000px;}
.y60{bottom:371.055000px;}
.y173{bottom:375.375000px;}
.y114{bottom:375.735000px;}
.y2e{bottom:378.795000px;}
.y104{bottom:378.975000px;}
.y132{bottom:380.595000px;}
.ye3{bottom:383.475000px;}
.ya7{bottom:385.095000px;}
.y157{bottom:387.255000px;}
.y5f{bottom:388.335000px;}
.y172{bottom:392.655000px;}
.y103{bottom:393.015000px;}
.y2d{bottom:396.075000px;}
.y131{bottom:397.875000px;}
.ye2{bottom:400.755000px;}
.ya6{bottom:402.375000px;}
.y5e{bottom:405.615000px;}
.yca{bottom:409.935000px;}
.y113{bottom:410.295000px;}
.y2c{bottom:413.355000px;}
.y83{bottom:414.435000px;}
.y130{bottom:415.155000px;}
.ye1{bottom:418.035000px;}
.ya5{bottom:420.555000px;}
.y5d{bottom:422.715000px;}
.y171{bottom:427.035000px;}
.y112{bottom:427.575000px;}
.y2b{bottom:430.455000px;}
.y12f{bottom:432.435000px;}
.ye0{bottom:435.315000px;}
.ya4{bottom:438.915000px;}
.y5c{bottom:439.995000px;}
.y156{bottom:441.075000px;}
.y170{bottom:444.315000px;}
.y111{bottom:444.675000px;}
.y2a{bottom:447.735000px;}
.y12e{bottom:449.715000px;}
.ydf{bottom:452.595000px;}
.ya3{bottom:456.195000px;}
.y5b{bottom:457.275000px;}
.y155{bottom:458.355000px;}
.yc8{bottom:460.155000px;}
.y16f{bottom:461.595000px;}
.y110{bottom:461.955000px;}
.y29{bottom:465.015000px;}
.y12d{bottom:466.995000px;}
.yde{bottom:469.875000px;}
.ya2{bottom:473.475000px;}
.y5a{bottom:474.555000px;}
.y154{bottom:475.635000px;}
.y10f{bottom:475.995000px;}
.y16e{bottom:478.875000px;}
.y28{bottom:479.055000px;}
.y12c{bottom:484.095000px;}
.ydd{bottom:486.975000px;}
.yc7{bottom:489.675000px;}
.y59{bottom:491.835000px;}
.y7f{bottom:492.735000px;}
.y153{bottom:492.915000px;}
.y16d{bottom:496.155000px;}
.y27{bottom:499.575000px;}
.y12b{bottom:501.375000px;}
.ydc{bottom:504.255000px;}
.yc6{bottom:506.955000px;}
.y58{bottom:509.115000px;}
.y152{bottom:511.095000px;}
.y16c{bottom:513.255000px;}
.y26{bottom:516.855000px;}
.y12a{bottom:518.655000px;}
.ydb{bottom:521.535000px;}
.yc5{bottom:524.055000px;}
.y57{bottom:526.215000px;}
.y151{bottom:528.375000px;}
.y16b{bottom:530.535000px;}
.y129{bottom:532.695000px;}
.y25{bottom:533.955000px;}
.yda{bottom:538.815000px;}
.yc4{bottom:542.415000px;}
.y56{bottom:543.495000px;}
.y150{bottom:545.655000px;}
.y16a{bottom:547.815000px;}
.y24{bottom:551.235000px;}
.yd9{bottom:552.855000px;}
.yc3{bottom:559.695000px;}
.y55{bottom:560.775000px;}
.y14f{bottom:564.015000px;}
.y169{bottom:565.095000px;}
.y23{bottom:568.545000px;}
.y7a{bottom:576.645000px;}
.y54{bottom:578.085000px;}
.ya1{bottom:579.165000px;}
.y14e{bottom:581.325000px;}
.y168{bottom:582.405000px;}
.y22{bottom:585.825000px;}
.y53{bottom:595.365000px;}
.yc2{bottom:596.445000px;}
.ya0{bottom:597.525000px;}
.y14d{bottom:598.605000px;}
.y167{bottom:599.685000px;}
.y21{bottom:603.105000px;}
.y52{bottom:612.465000px;}
.yc1{bottom:613.545000px;}
.y9f{bottom:614.625000px;}
.y14c{bottom:615.705000px;}
.y166{bottom:616.785000px;}
.y20{bottom:620.385000px;}
.y51{bottom:629.745000px;}
.yc0{bottom:630.825000px;}
.y9e{bottom:632.985000px;}
.y165{bottom:634.065000px;}
.y1f{bottom:637.485000px;}
.y50{bottom:647.025000px;}
.ybf{bottom:648.105000px;}
.y14b{bottom:650.265000px;}
.y9d{bottom:651.345000px;}
.y1e{bottom:654.765000px;}
.y4f{bottom:664.305000px;}
.ybe{bottom:665.385000px;}
.y14a{bottom:667.545000px;}
.y77{bottom:667.905000px;}
.y9c{bottom:668.625000px;}
.y1d{bottom:672.045000px;}
.y4e{bottom:681.585000px;}
.ybd{bottom:682.665000px;}
.y149{bottom:684.825000px;}
.y9b{bottom:685.905000px;}
.y1c{bottom:689.325000px;}
.y102{bottom:698.685000px;}
.y4d{bottom:698.865000px;}
.ybc{bottom:699.945000px;}
.y148{bottom:702.105000px;}
.y9a{bottom:703.185000px;}
.y1b{bottom:706.605000px;}
.y101{bottom:715.785000px;}
.y4c{bottom:715.965000px;}
.ybb{bottom:718.125000px;}
.y147{bottom:719.205000px;}
.y99{bottom:720.285000px;}
.y1a{bottom:723.885000px;}
.y100{bottom:733.065000px;}
.y4b{bottom:734.325000px;}
.yba{bottom:735.405000px;}
.y146{bottom:736.485000px;}
.y98{bottom:737.565000px;}
.y19{bottom:740.985000px;}
.yff{bottom:750.345000px;}
.y4a{bottom:751.605000px;}
.yb9{bottom:752.685000px;}
.y145{bottom:753.765000px;}
.y97{bottom:754.845000px;}
.y18{bottom:758.265000px;}
.yfe{bottom:767.625000px;}
.y76{bottom:768.885000px;}
.y49{bottom:769.965000px;}
.y144{bottom:771.045000px;}
.y96{bottom:772.125000px;}
.y17{bottom:775.545000px;}
.yfd{bottom:784.905000px;}
.y75{bottom:786.165000px;}
.y48{bottom:787.245000px;}
.y143{bottom:788.325000px;}
.y95{bottom:789.405000px;}
.y16{bottom:792.825000px;}
.yfc{bottom:802.005000px;}
.y74{bottom:803.445000px;}
.yb8{bottom:804.525000px;}
.y47{bottom:805.425000px;}
.y94{bottom:806.505000px;}
.y15{bottom:810.105000px;}
.yfb{bottom:819.330000px;}
.y73{bottom:821.670000px;}
.y46{bottom:822.750000px;}
.y93{bottom:823.830000px;}
.y14{bottom:824.010000px;}
.yfa{bottom:836.610000px;}
.y72{bottom:838.950000px;}
.y142{bottom:840.030000px;}
.y45{bottom:841.110000px;}
.y13{bottom:845.070000px;}
.yf9{bottom:853.890000px;}
.y71{bottom:856.230000px;}
.y141{bottom:857.310000px;}
.y44{bottom:858.390000px;}
.y12{bottom:863.970000px;}
.yf8{bottom:868.650000px;}
.y128{bottom:873.510000px;}
.y70{bottom:874.590000px;}
.y43{bottom:875.670000px;}
.y11{bottom:883.050000px;}
.yf7{bottom:886.650000px;}
.y127{bottom:890.790000px;}
.y6f{bottom:891.870000px;}
.y42{bottom:892.950000px;}
.y10{bottom:901.950000px;}
.yf6{bottom:904.650000px;}
.y126{bottom:907.890000px;}
.yb7{bottom:908.970000px;}
.y41{bottom:910.050000px;}
.yf{bottom:920.490000px;}
.yf5{bottom:922.650000px;}
.y125{bottom:925.170000px;}
.yb6{bottom:926.250000px;}
.y40{bottom:927.330000px;}
.ye{bottom:938.490000px;}
.yf3{bottom:940.650000px;}
.y124{bottom:943.530000px;}
.y3f{bottom:944.610000px;}
.yd{bottom:959.190000px;}
.y123{bottom:960.810000px;}
.y3e{bottom:961.890000px;}
.y9{bottom:978.810000px;}
.y8{bottom:994.290000px;}
.y7{bottom:1010.130000px;}
.y6{bottom:1028.310000px;}
.y5{bottom:1046.670000px;}
.y4{bottom:1088.640000px;}
.y3{bottom:1107.180000px;}
.y2{bottom:1124.280000px;}
.y1{bottom:1141.560000px;}
.h17{height:17.280000px;}
.h12{height:25.560000px;}
.h5{height:37.705078px;}
.h1{height:41.726953px;}
.h4{height:42.164648px;}
.h9{height:43.506914px;}
.h18{height:43.681992px;}
.h11{height:44.265586px;}
.ha{height:45.024258px;}
.h2{height:46.251562px;}
.h8{height:46.736719px;}
.h13{height:49.500000px;}
.h15{height:49.536000px;}
.h7{height:50.800781px;}
.h14{height:50.940000px;}
.h3{height:54.864844px;}
.hb{height:62.460000px;}
.h6{height:65.884219px;}
.h16{height:75.060000px;}
.he{height:77.580000px;}
.hd{height:83.196000px;}
.hc{height:90.360000px;}
.hf{height:103.536000px;}
.h10{height:103.680000px;}
.h0{height:1188.000000px;}
.w2{width:82.620000px;}
.wb{width:104.976000px;}
.w3{width:113.976000px;}
.w6{width:136.440000px;}
.w7{width:137.016000px;}
.wa{width:155.160000px;}
.wd{width:156.810000px;}
.w5{width:173.700000px;}
.wc{width:221.790000px;}
.w8{width:241.950000px;}
.w9{width:251.355000px;}
.w4{width:293.475000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.740000px;}
.x15{left:10.800000px;}
.x1b{left:16.200000px;}
.x13{left:22.500000px;}
.x16{left:25.380000px;}
.x19{left:103.710000px;}
.x1{left:108.035986px;}
.x36{left:109.295986px;}
.x27{left:114.335986px;}
.x1d{left:120.455986px;}
.x2f{left:122.075986px;}
.x32{left:130.895986px;}
.x10{left:135.035986px;}
.x2{left:137.555986px;}
.x5{left:145.655986px;}
.x11{left:162.029986px;}
.x8{left:166.169986px;}
.x12{left:175.529986px;}
.x21{left:189.029986px;}
.x14{left:192.090000px;}
.x2a{left:210.629986px;}
.x1e{left:216.029986px;}
.x1f{left:243.029986px;}
.x23{left:245.910000px;}
.x2b{left:264.630000px;}
.x20{left:270.029986px;}
.x34{left:272.189986px;}
.x22{left:273.449986px;}
.x17{left:275.430000px;}
.x26{left:290.774986px;}
.x2e{left:311.654986px;}
.x30{left:320.294986px;}
.xb{left:328.034986px;}
.x31{left:333.434986px;}
.x28{left:337.214986px;}
.x29{left:358.994986px;}
.x33{left:365.834986px;}
.xd{left:368.714986px;}
.x2c{left:370.335000px;}
.xc{left:375.194986px;}
.x37{left:380.234986px;}
.x24{left:383.655000px;}
.x18{left:390.315000px;}
.x9{left:391.574986px;}
.xf{left:398.954986px;}
.x7{left:409.034986px;}
.xa{left:411.554986px;}
.x38{left:412.814986px;}
.x6{left:424.874986px;}
.x3{left:459.074986px;}
.x4{left:531.104986px;}
.x2d{left:592.845000px;}
.x25{left:626.505000px;}
.x1a{left:684.510000px;}
.x35{left:785.309986px;}
.xe{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.225067pt;}
.ls10{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.120320pt;}
.ls13{letter-spacing:0.120533pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.544000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls17{letter-spacing:10.192640pt;}
.ls15{letter-spacing:37.051307pt;}
.ls14{letter-spacing:40.891307pt;}
.lsc{letter-spacing:49.232640pt;}
.ls5{letter-spacing:56.891307pt;}
.ls8{letter-spacing:56.912640pt;}
.ws3{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.824000pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.400533pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.054933pt;}
.wsa{word-spacing:-13.049067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-4.137387pt;}
._d{margin-left:-3.135573pt;}
._7{margin-left:-2.073173pt;}
._0{margin-left:-0.965973pt;}
._2{width:1.488853pt;}
._1{width:2.643627pt;}
._5{width:4.000000pt;}
._6{width:5.683840pt;}
._8{width:6.703787pt;}
._9{width:7.702400pt;}
._c{width:8.871040pt;}
._f{width:9.977600pt;}
._11{width:10.923947pt;}
._b{width:11.844267pt;}
._a{width:14.228267pt;}
._e{width:15.731413pt;}
._13{width:16.723840pt;}
._1e{width:17.634347pt;}
._1f{width:18.567040pt;}
._1a{width:19.905067pt;}
._1b{width:20.982400pt;}
._23{width:21.990187pt;}
._22{width:23.000960pt;}
._27{width:26.520107pt;}
._26{width:27.562667pt;}
._18{width:30.172160pt;}
._14{width:43.342933pt;}
._15{width:44.385707pt;}
._1d{width:47.339733pt;}
._1c{width:48.232960pt;}
._19{width:51.828480pt;}
._20{width:67.249920pt;}
._21{width:68.268373pt;}
._17{width:79.148800pt;}
._16{width:94.341120pt;}
._29{width:103.081173pt;}
._28{width:104.200107pt;}
._4{width:120.938667pt;}
._12{width:160.106667pt;}
._24{width:380.480427pt;}
._25{width:381.667200pt;}
._3{width:566.138667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:2.880000pt;}
.yc9{bottom:10.240000pt;}
.yd2{bottom:16.200000pt;}
.ycc{bottom:16.320000pt;}
.ycf{bottom:17.440000pt;}
.y7e{bottom:21.920000pt;}
.y86{bottom:25.920000pt;}
.y79{bottom:27.680000pt;}
.y82{bottom:30.880000pt;}
.ycb{bottom:31.520000pt;}
.yd1{bottom:31.560000pt;}
.yc{bottom:32.640000pt;}
.yce{bottom:32.800000pt;}
.y90{bottom:33.600000pt;}
.y8b{bottom:33.640000pt;}
.y7d{bottom:37.280000pt;}
.yd5{bottom:38.880000pt;}
.y85{bottom:41.280000pt;}
.y78{bottom:43.040000pt;}
.y81{bottom:46.240000pt;}
.y8f{bottom:48.960000pt;}
.y8a{bottom:49.000000pt;}
.yb{bottom:49.120000pt;}
.y7c{bottom:52.640000pt;}
.yd4{bottom:54.240000pt;}
.y84{bottom:56.480000pt;}
.y80{bottom:61.440000pt;}
.ya{bottom:62.912000pt;}
.y8e{bottom:64.320000pt;}
.y89{bottom:64.360000pt;}
.y7b{bottom:68.000000pt;}
.y88{bottom:79.560000pt;}
.y8d{bottom:79.680000pt;}
.y182{bottom:103.552000pt;}
.y3d{bottom:106.752000pt;}
.yf2{bottom:110.912000pt;}
.y6e{bottom:115.072000pt;}
.y122{bottom:117.472000pt;}
.y181{bottom:118.912000pt;}
.y140{bottom:121.792000pt;}
.y3c{bottom:121.952000pt;}
.y10e{bottom:122.112000pt;}
.yb5{bottom:125.632000pt;}
.yf1{bottom:126.272000pt;}
.y6d{bottom:130.432000pt;}
.y121{bottom:132.672000pt;}
.y180{bottom:134.266667pt;}
.y3b{bottom:137.306667pt;}
.y10d{bottom:137.466667pt;}
.y13f{bottom:138.106667pt;}
.yb4{bottom:140.986667pt;}
.yf0{bottom:141.626667pt;}
.y164{bottom:143.866667pt;}
.y6c{bottom:145.786667pt;}
.y120{bottom:148.986667pt;}
.y17f{bottom:149.626667pt;}
.y3a{bottom:152.666667pt;}
.y10c{bottom:152.826667pt;}
.y13e{bottom:153.466667pt;}
.y92{bottom:154.586667pt;}
.yef{bottom:156.986667pt;}
.yb3{bottom:157.306667pt;}
.y163{bottom:159.226667pt;}
.y6b{bottom:161.146667pt;}
.yd8{bottom:162.586667pt;}
.y17e{bottom:164.986667pt;}
.y11f{bottom:165.306667pt;}
.y39{bottom:168.026667pt;}
.y10b{bottom:168.186667pt;}
.y13d{bottom:169.626667pt;}
.y91{bottom:169.786667pt;}
.yee{bottom:172.186667pt;}
.yb2{bottom:172.666667pt;}
.y162{bottom:174.586667pt;}
.y6a{bottom:176.506667pt;}
.yd7{bottom:177.946667pt;}
.y17d{bottom:180.346667pt;}
.y11e{bottom:180.666667pt;}
.y8c{bottom:182.906667pt;}
.y38{bottom:183.386667pt;}
.y13c{bottom:184.986667pt;}
.yed{bottom:187.546667pt;}
.yb1{bottom:188.026667pt;}
.y161{bottom:189.946667pt;}
.y69{bottom:191.706667pt;}
.yd6{bottom:193.306667pt;}
.y17c{bottom:195.546667pt;}
.y11d{bottom:196.026667pt;}
.y37{bottom:198.746667pt;}
.y13b{bottom:200.346667pt;}
.yec{bottom:202.906667pt;}
.yb0{bottom:203.226667pt;}
.y160{bottom:205.146667pt;}
.yd3{bottom:206.426667pt;}
.y68{bottom:207.066667pt;}
.y17b{bottom:210.906667pt;}
.y11c{bottom:211.386667pt;}
.y36{bottom:213.946667pt;}
.y10a{bottom:214.106667pt;}
.y13a{bottom:215.706667pt;}
.yeb{bottom:218.266667pt;}
.yaf{bottom:218.586667pt;}
.y15f{bottom:220.506667pt;}
.y67{bottom:222.426667pt;}
.y17a{bottom:226.266667pt;}
.y11b{bottom:226.586667pt;}
.y35{bottom:229.306667pt;}
.y109{bottom:229.466667pt;}
.y139{bottom:231.066667pt;}
.yea{bottom:233.626667pt;}
.yae{bottom:233.946667pt;}
.y15e{bottom:235.866667pt;}
.y66{bottom:237.786667pt;}
.y179{bottom:241.626667pt;}
.y11a{bottom:241.946667pt;}
.y34{bottom:244.666667pt;}
.y108{bottom:244.826667pt;}
.y138{bottom:246.266667pt;}
.ye9{bottom:248.986667pt;}
.yad{bottom:249.306667pt;}
.y15d{bottom:251.226667pt;}
.y65{bottom:253.146667pt;}
.y178{bottom:256.986667pt;}
.y119{bottom:257.306667pt;}
.y33{bottom:260.026667pt;}
.y107{bottom:260.186667pt;}
.y137{bottom:261.626667pt;}
.ye8{bottom:264.186667pt;}
.yac{bottom:264.666667pt;}
.y15c{bottom:266.586667pt;}
.y64{bottom:268.506667pt;}
.y177{bottom:272.346667pt;}
.y118{bottom:272.666667pt;}
.yd0{bottom:273.786667pt;}
.y32{bottom:275.386667pt;}
.y87{bottom:275.706667pt;}
.y136{bottom:276.986667pt;}
.ye7{bottom:279.546667pt;}
.yab{bottom:280.986667pt;}
.y15b{bottom:281.826667pt;}
.y63{bottom:283.746667pt;}
.y176{bottom:287.586667pt;}
.y117{bottom:288.066667pt;}
.y31{bottom:290.786667pt;}
.y135{bottom:292.386667pt;}
.ye6{bottom:294.946667pt;}
.yaa{bottom:296.226667pt;}
.y15a{bottom:297.186667pt;}
.y62{bottom:299.106667pt;}
.y175{bottom:302.946667pt;}
.y116{bottom:303.266667pt;}
.y30{bottom:305.986667pt;}
.y106{bottom:306.146667pt;}
.y134{bottom:307.746667pt;}
.ye5{bottom:310.306667pt;}
.ya9{bottom:311.586667pt;}
.y159{bottom:312.546667pt;}
.y61{bottom:314.466667pt;}
.y174{bottom:318.306667pt;}
.ycd{bottom:318.466667pt;}
.y115{bottom:318.626667pt;}
.y2f{bottom:321.346667pt;}
.y105{bottom:321.506667pt;}
.y133{bottom:323.106667pt;}
.ye4{bottom:325.666667pt;}
.ya8{bottom:326.946667pt;}
.y158{bottom:328.866667pt;}
.y60{bottom:329.826667pt;}
.y173{bottom:333.666667pt;}
.y114{bottom:333.986667pt;}
.y2e{bottom:336.706667pt;}
.y104{bottom:336.866667pt;}
.y132{bottom:338.306667pt;}
.ye3{bottom:340.866667pt;}
.ya7{bottom:342.306667pt;}
.y157{bottom:344.226667pt;}
.y5f{bottom:345.186667pt;}
.y172{bottom:349.026667pt;}
.y103{bottom:349.346667pt;}
.y2d{bottom:352.066667pt;}
.y131{bottom:353.666667pt;}
.ye2{bottom:356.226667pt;}
.ya6{bottom:357.666667pt;}
.y5e{bottom:360.546667pt;}
.yca{bottom:364.386667pt;}
.y113{bottom:364.706667pt;}
.y2c{bottom:367.426667pt;}
.y83{bottom:368.386667pt;}
.y130{bottom:369.026667pt;}
.ye1{bottom:371.586667pt;}
.ya5{bottom:373.826667pt;}
.y5d{bottom:375.746667pt;}
.y171{bottom:379.586667pt;}
.y112{bottom:380.066667pt;}
.y2b{bottom:382.626667pt;}
.y12f{bottom:384.386667pt;}
.ye0{bottom:386.946667pt;}
.ya4{bottom:390.146667pt;}
.y5c{bottom:391.106667pt;}
.y156{bottom:392.066667pt;}
.y170{bottom:394.946667pt;}
.y111{bottom:395.266667pt;}
.y2a{bottom:397.986667pt;}
.y12e{bottom:399.746667pt;}
.ydf{bottom:402.306667pt;}
.ya3{bottom:405.506667pt;}
.y5b{bottom:406.466667pt;}
.y155{bottom:407.426667pt;}
.yc8{bottom:409.026667pt;}
.y16f{bottom:410.306667pt;}
.y110{bottom:410.626667pt;}
.y29{bottom:413.346667pt;}
.y12d{bottom:415.106667pt;}
.yde{bottom:417.666667pt;}
.ya2{bottom:420.866667pt;}
.y5a{bottom:421.826667pt;}
.y154{bottom:422.786667pt;}
.y10f{bottom:423.106667pt;}
.y16e{bottom:425.666667pt;}
.y28{bottom:425.826667pt;}
.y12c{bottom:430.306667pt;}
.ydd{bottom:432.866667pt;}
.yc7{bottom:435.266667pt;}
.y59{bottom:437.186667pt;}
.y7f{bottom:437.986667pt;}
.y153{bottom:438.146667pt;}
.y16d{bottom:441.026667pt;}
.y27{bottom:444.066667pt;}
.y12b{bottom:445.666667pt;}
.ydc{bottom:448.226667pt;}
.yc6{bottom:450.626667pt;}
.y58{bottom:452.546667pt;}
.y152{bottom:454.306667pt;}
.y16c{bottom:456.226667pt;}
.y26{bottom:459.426667pt;}
.y12a{bottom:461.026667pt;}
.ydb{bottom:463.586667pt;}
.yc5{bottom:465.826667pt;}
.y57{bottom:467.746667pt;}
.y151{bottom:469.666667pt;}
.y16b{bottom:471.586667pt;}
.y129{bottom:473.506667pt;}
.y25{bottom:474.626667pt;}
.yda{bottom:478.946667pt;}
.yc4{bottom:482.146667pt;}
.y56{bottom:483.106667pt;}
.y150{bottom:485.026667pt;}
.y16a{bottom:486.946667pt;}
.y24{bottom:489.986667pt;}
.yd9{bottom:491.426667pt;}
.yc3{bottom:497.506667pt;}
.y55{bottom:498.466667pt;}
.y14f{bottom:501.346667pt;}
.y169{bottom:502.306667pt;}
.y23{bottom:505.373333pt;}
.y7a{bottom:512.573333pt;}
.y54{bottom:513.853333pt;}
.ya1{bottom:514.813333pt;}
.y14e{bottom:516.733333pt;}
.y168{bottom:517.693333pt;}
.y22{bottom:520.733333pt;}
.y53{bottom:529.213333pt;}
.yc2{bottom:530.173333pt;}
.ya0{bottom:531.133333pt;}
.y14d{bottom:532.093333pt;}
.y167{bottom:533.053333pt;}
.y21{bottom:536.093333pt;}
.y52{bottom:544.413333pt;}
.yc1{bottom:545.373333pt;}
.y9f{bottom:546.333333pt;}
.y14c{bottom:547.293333pt;}
.y166{bottom:548.253333pt;}
.y20{bottom:551.453333pt;}
.y51{bottom:559.773333pt;}
.yc0{bottom:560.733333pt;}
.y9e{bottom:562.653333pt;}
.y165{bottom:563.613333pt;}
.y1f{bottom:566.653333pt;}
.y50{bottom:575.133333pt;}
.ybf{bottom:576.093333pt;}
.y14b{bottom:578.013333pt;}
.y9d{bottom:578.973333pt;}
.y1e{bottom:582.013333pt;}
.y4f{bottom:590.493333pt;}
.ybe{bottom:591.453333pt;}
.y14a{bottom:593.373333pt;}
.y77{bottom:593.693333pt;}
.y9c{bottom:594.333333pt;}
.y1d{bottom:597.373333pt;}
.y4e{bottom:605.853333pt;}
.ybd{bottom:606.813333pt;}
.y149{bottom:608.733333pt;}
.y9b{bottom:609.693333pt;}
.y1c{bottom:612.733333pt;}
.y102{bottom:621.053333pt;}
.y4d{bottom:621.213333pt;}
.ybc{bottom:622.173333pt;}
.y148{bottom:624.093333pt;}
.y9a{bottom:625.053333pt;}
.y1b{bottom:628.093333pt;}
.y101{bottom:636.253333pt;}
.y4c{bottom:636.413333pt;}
.ybb{bottom:638.333333pt;}
.y147{bottom:639.293333pt;}
.y99{bottom:640.253333pt;}
.y1a{bottom:643.453333pt;}
.y100{bottom:651.613333pt;}
.y4b{bottom:652.733333pt;}
.yba{bottom:653.693333pt;}
.y146{bottom:654.653333pt;}
.y98{bottom:655.613333pt;}
.y19{bottom:658.653333pt;}
.yff{bottom:666.973333pt;}
.y4a{bottom:668.093333pt;}
.yb9{bottom:669.053333pt;}
.y145{bottom:670.013333pt;}
.y97{bottom:670.973333pt;}
.y18{bottom:674.013333pt;}
.yfe{bottom:682.333333pt;}
.y76{bottom:683.453333pt;}
.y49{bottom:684.413333pt;}
.y144{bottom:685.373333pt;}
.y96{bottom:686.333333pt;}
.y17{bottom:689.373333pt;}
.yfd{bottom:697.693333pt;}
.y75{bottom:698.813333pt;}
.y48{bottom:699.773333pt;}
.y143{bottom:700.733333pt;}
.y95{bottom:701.693333pt;}
.y16{bottom:704.733333pt;}
.yfc{bottom:712.893333pt;}
.y74{bottom:714.173333pt;}
.yb8{bottom:715.133333pt;}
.y47{bottom:715.933333pt;}
.y94{bottom:716.893333pt;}
.y15{bottom:720.093333pt;}
.yfb{bottom:728.293333pt;}
.y73{bottom:730.373333pt;}
.y46{bottom:731.333333pt;}
.y93{bottom:732.293333pt;}
.y14{bottom:732.453333pt;}
.yfa{bottom:743.653333pt;}
.y72{bottom:745.733333pt;}
.y142{bottom:746.693333pt;}
.y45{bottom:747.653333pt;}
.y13{bottom:751.173333pt;}
.yf9{bottom:759.013333pt;}
.y71{bottom:761.093333pt;}
.y141{bottom:762.053333pt;}
.y44{bottom:763.013333pt;}
.y12{bottom:767.973333pt;}
.yf8{bottom:772.133333pt;}
.y128{bottom:776.453333pt;}
.y70{bottom:777.413333pt;}
.y43{bottom:778.373333pt;}
.y11{bottom:784.933333pt;}
.yf7{bottom:788.133333pt;}
.y127{bottom:791.813333pt;}
.y6f{bottom:792.773333pt;}
.y42{bottom:793.733333pt;}
.y10{bottom:801.733333pt;}
.yf6{bottom:804.133333pt;}
.y126{bottom:807.013333pt;}
.yb7{bottom:807.973333pt;}
.y41{bottom:808.933333pt;}
.yf{bottom:818.213333pt;}
.yf5{bottom:820.133333pt;}
.y125{bottom:822.373333pt;}
.yb6{bottom:823.333333pt;}
.y40{bottom:824.293333pt;}
.ye{bottom:834.213333pt;}
.yf3{bottom:836.133333pt;}
.y124{bottom:838.693333pt;}
.y3f{bottom:839.653333pt;}
.yd{bottom:852.613333pt;}
.y123{bottom:854.053333pt;}
.y3e{bottom:855.013333pt;}
.y9{bottom:870.053333pt;}
.y8{bottom:883.813333pt;}
.y7{bottom:897.893333pt;}
.y6{bottom:914.053333pt;}
.y5{bottom:930.373333pt;}
.y4{bottom:967.680000pt;}
.y3{bottom:984.160000pt;}
.y2{bottom:999.360000pt;}
.y1{bottom:1014.720000pt;}
.h17{height:15.360000pt;}
.h12{height:22.720000pt;}
.h5{height:33.515625pt;}
.h1{height:37.090625pt;}
.h4{height:37.479688pt;}
.h9{height:38.672812pt;}
.h18{height:38.828437pt;}
.h11{height:39.347188pt;}
.ha{height:40.021563pt;}
.h2{height:41.112500pt;}
.h8{height:41.543750pt;}
.h13{height:44.000000pt;}
.h15{height:44.032000pt;}
.h7{height:45.156250pt;}
.h14{height:45.280000pt;}
.h3{height:48.768750pt;}
.hb{height:55.520000pt;}
.h6{height:58.563750pt;}
.h16{height:66.720000pt;}
.he{height:68.960000pt;}
.hd{height:73.952000pt;}
.hc{height:80.320000pt;}
.hf{height:92.032000pt;}
.h10{height:92.160000pt;}
.h0{height:1056.000000pt;}
.w2{width:73.440000pt;}
.wb{width:93.312000pt;}
.w3{width:101.312000pt;}
.w6{width:121.280000pt;}
.w7{width:121.792000pt;}
.wa{width:137.920000pt;}
.wd{width:139.386667pt;}
.w5{width:154.400000pt;}
.wc{width:197.146667pt;}
.w8{width:215.066667pt;}
.w9{width:223.426667pt;}
.w4{width:260.866667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.880000pt;}
.x15{left:9.600000pt;}
.x1b{left:14.400000pt;}
.x13{left:20.000000pt;}
.x16{left:22.560000pt;}
.x19{left:92.186667pt;}
.x1{left:96.031988pt;}
.x36{left:97.151988pt;}
.x27{left:101.631988pt;}
.x1d{left:107.071988pt;}
.x2f{left:108.511988pt;}
.x32{left:116.351988pt;}
.x10{left:120.031988pt;}
.x2{left:122.271988pt;}
.x5{left:129.471988pt;}
.x11{left:144.026655pt;}
.x8{left:147.706655pt;}
.x12{left:156.026655pt;}
.x21{left:168.026655pt;}
.x14{left:170.746667pt;}
.x2a{left:187.226655pt;}
.x1e{left:192.026655pt;}
.x1f{left:216.026655pt;}
.x23{left:218.586667pt;}
.x2b{left:235.226667pt;}
.x20{left:240.026655pt;}
.x34{left:241.946655pt;}
.x22{left:243.066655pt;}
.x17{left:244.826667pt;}
.x26{left:258.466655pt;}
.x2e{left:277.026655pt;}
.x30{left:284.706655pt;}
.xb{left:291.586655pt;}
.x31{left:296.386655pt;}
.x28{left:299.746655pt;}
.x29{left:319.106655pt;}
.x33{left:325.186655pt;}
.xd{left:327.746655pt;}
.x2c{left:329.186667pt;}
.xc{left:333.506655pt;}
.x37{left:337.986655pt;}
.x24{left:341.026667pt;}
.x18{left:346.946667pt;}
.x9{left:348.066655pt;}
.xf{left:354.626655pt;}
.x7{left:363.586655pt;}
.xa{left:365.826655pt;}
.x38{left:366.946655pt;}
.x6{left:377.666655pt;}
.x3{left:408.066655pt;}
.x4{left:472.093321pt;}
.x2d{left:526.973333pt;}
.x25{left:556.893333pt;}
.x1a{left:608.453333pt;}
.x35{left:698.053321pt;}
.xe{left:720.133321pt;}
}




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