
    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_0dd711a8aac66f1b0f27a2e1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_c84a9b9ca446911c16287884.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_0b88e193f976c867c93fa2e2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_13605f181c9870c9f23c757d.woff')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_ac9883bfdfe2c277e7b7b639.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_bee3b4c51c3a2f15888daa56.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_df6a18101953fe7d5264a979.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a7dcfcfb4c3f82891eaf947b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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;}
.m6{transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234848,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235715,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-2.934000px;}
.ls18{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.513600px;}
.ls1d{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.180000px;}
.ls19{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.100200px;}
.lse{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.011640px;}
.ls12{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.828000px;}
.ls6{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.134720px;}
.ls3{letter-spacing:1.330560px;}
.ls2{letter-spacing:1.510560px;}
.ls7{letter-spacing:1.549440px;}
.ls0{letter-spacing:1.592640px;}
.ls5{letter-spacing:1.702080px;}
.ls4{letter-spacing:1.745280px;}
.ls1{letter-spacing:2.160000px;}
.ls1c{letter-spacing:11.466720px;}
.ls14{letter-spacing:15.238800px;}
.ls13{letter-spacing:15.300000px;}
.ls9{letter-spacing:16.560000px;}
.ls1b{letter-spacing:41.706720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.839800px;}
.wsa{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.426400px;}
.ws8{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-12.006000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2618.124000px;}
._4{margin-left:-1366.159680px;}
._9{margin-left:-1011.130560px;}
._5{margin-left:-938.448000px;}
._8{margin-left:-875.676000px;}
._b{margin-left:-576.313920px;}
._6{margin-left:-535.086720px;}
._a{margin-left:-182.583360px;}
._7{margin-left:-33.120000px;}
._1f{margin-left:-13.577280px;}
._23{margin-left:-12.005520px;}
._22{margin-left:-10.657200px;}
._c{margin-left:-8.544960px;}
._f{margin-left:-5.299200px;}
._17{margin-left:-4.176000px;}
._10{margin-left:-2.900160px;}
._3{margin-left:-1.059840px;}
._0{width:1.296000px;}
._1{width:3.090000px;}
._12{width:4.113360px;}
._13{width:5.677200px;}
._14{width:6.843600px;}
._15{width:8.067600px;}
._18{width:9.514080px;}
._11{width:10.879920px;}
._16{width:12.549600px;}
._21{width:13.687920px;}
._d{width:15.301440px;}
._19{width:16.374240px;}
._e{width:17.675040px;}
._20{width:36.274320px;}
._1a{width:46.851840px;}
._1d{width:133.593120px;}
._1b{width:141.513120px;}
._1e{width:149.997600px;}
._1c{width:157.945680px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.240000px;}
.y130{bottom:7.740000px;}
.ya6{bottom:9.720000px;}
.yf8{bottom:10.980000px;}
.ya8{bottom:11.700000px;}
.yb5{bottom:11.880000px;}
.y132{bottom:12.600000px;}
.yfc{bottom:12.960000px;}
.yfe{bottom:13.140000px;}
.y93{bottom:13.500000px;}
.yba{bottom:14.580000px;}
.y12e{bottom:15.120000px;}
.ybc{bottom:16.245000px;}
.ybe{bottom:16.560000px;}
.yc0{bottom:16.920000px;}
.yf9{bottom:19.620000px;}
.yb7{bottom:20.520000px;}
.y12c{bottom:23.580000px;}
.ya5{bottom:27.000000px;}
.yf7{bottom:28.290000px;}
.ya7{bottom:28.980000px;}
.yb4{bottom:29.160000px;}
.y92{bottom:30.600000px;}
.y12d{bottom:32.250000px;}
.yb6{bottom:37.800000px;}
.ya4{bottom:44.280000px;}
.y91{bottom:47.910000px;}
.y6{bottom:60.336000px;}
.ya3{bottom:61.380000px;}
.ya2{bottom:78.705000px;}
.ya1{bottom:95.985000px;}
.y8f{bottom:98.316000px;}
.y34{bottom:99.036000px;}
.y12a{bottom:102.096000px;}
.yf5{bottom:103.536000px;}
.yc4{bottom:108.756000px;}
.ya0{bottom:113.265000px;}
.y8e{bottom:118.116000px;}
.y33{bottom:118.836000px;}
.y15f{bottom:120.816000px;}
.y129{bottom:121.896000px;}
.yf4{bottom:123.336000px;}
.y68{bottom:127.116000px;}
.yc3{bottom:128.736000px;}
.y9f{bottom:130.545000px;}
.y8d{bottom:137.916000px;}
.y32{bottom:138.636000px;}
.y15e{bottom:140.796000px;}
.y128{bottom:141.696000px;}
.yf3{bottom:143.316000px;}
.y67{bottom:146.916000px;}
.y9e{bottom:147.825000px;}
.yc2{bottom:148.536000px;}
.y8c{bottom:157.710000px;}
.y31{bottom:158.430000px;}
.y15d{bottom:160.590000px;}
.y127{bottom:161.670000px;}
.yf2{bottom:163.110000px;}
.y9d{bottom:164.925000px;}
.y66{bottom:166.710000px;}
.yc1{bottom:168.330000px;}
.y8b{bottom:177.510000px;}
.y30{bottom:178.230000px;}
.y15c{bottom:180.390000px;}
.y126{bottom:181.470000px;}
.y9c{bottom:182.205000px;}
.yf1{bottom:182.910000px;}
.ybf{bottom:183.090000px;}
.y65{bottom:186.510000px;}
.y8a{bottom:197.490000px;}
.y2f{bottom:198.210000px;}
.y9b{bottom:199.485000px;}
.y15b{bottom:200.190000px;}
.y125{bottom:201.270000px;}
.yf0{bottom:202.710000px;}
.y173{bottom:211.350000px;}
.y64{bottom:215.490000px;}
.y9a{bottom:216.765000px;}
.y89{bottom:217.290000px;}
.y2e{bottom:218.010000px;}
.y15a{bottom:219.990000px;}
.y124{bottom:221.070000px;}
.yef{bottom:222.510000px;}
.ybd{bottom:228.270000px;}
.y172{bottom:231.150000px;}
.y99{bottom:234.045000px;}
.y63{bottom:235.290000px;}
.y88{bottom:237.090000px;}
.y2d{bottom:237.810000px;}
.y159{bottom:239.970000px;}
.yee{bottom:242.490000px;}
.y123{bottom:249.870000px;}
.y171{bottom:250.950000px;}
.y98{bottom:251.325000px;}
.y62{bottom:255.090000px;}
.y87{bottom:256.890000px;}
.y2c{bottom:257.610000px;}
.y158{bottom:259.770000px;}
.yed{bottom:262.290000px;}
.y97{bottom:268.425000px;}
.y122{bottom:269.850000px;}
.y170{bottom:270.930000px;}
.ybb{bottom:272.910000px;}
.y61{bottom:274.890000px;}
.y86{bottom:276.690000px;}
.y2b{bottom:277.410000px;}
.y157{bottom:279.570000px;}
.yec{bottom:282.135000px;}
.y96{bottom:285.705000px;}
.y121{bottom:289.695000px;}
.y16f{bottom:290.775000px;}
.y60{bottom:294.735000px;}
.y85{bottom:296.715000px;}
.y2a{bottom:297.435000px;}
.y156{bottom:299.415000px;}
.yeb{bottom:301.935000px;}
.y95{bottom:302.985000px;}
.y120{bottom:309.495000px;}
.y16e{bottom:310.575000px;}
.y5f{bottom:314.715000px;}
.y84{bottom:316.515000px;}
.yb9{bottom:316.695000px;}
.y29{bottom:317.235000px;}
.y155{bottom:319.215000px;}
.yea{bottom:321.735000px;}
.y11f{bottom:329.295000px;}
.y16d{bottom:330.375000px;}
.y5e{bottom:334.515000px;}
.y83{bottom:336.315000px;}
.y28{bottom:337.035000px;}
.y154{bottom:339.195000px;}
.ye9{bottom:341.715000px;}
.y11e{bottom:349.095000px;}
.y16c{bottom:350.175000px;}
.y82{bottom:356.115000px;}
.y27{bottom:356.835000px;}
.yb3{bottom:357.375000px;}
.y153{bottom:358.995000px;}
.ye8{bottom:361.515000px;}
.y5d{bottom:363.315000px;}
.y11d{bottom:369.075000px;}
.y81{bottom:375.915000px;}
.y26{bottom:376.635000px;}
.y16b{bottom:376.815000px;}
.y152{bottom:378.795000px;}
.ye7{bottom:381.315000px;}
.y5c{bottom:383.115000px;}
.y80{bottom:395.895000px;}
.y25{bottom:396.615000px;}
.y11c{bottom:397.875000px;}
.y151{bottom:398.595000px;}
.ye6{bottom:401.115000px;}
.y5b{bottom:402.915000px;}
.y16a{bottom:403.455000px;}
.y7f{bottom:415.695000px;}
.y24{bottom:416.415000px;}
.y11b{bottom:417.675000px;}
.y150{bottom:418.395000px;}
.ye5{bottom:420.915000px;}
.y5a{bottom:422.895000px;}
.y169{bottom:423.255000px;}
.y7e{bottom:435.495000px;}
.y23{bottom:436.215000px;}
.y11a{bottom:437.475000px;}
.y14f{bottom:438.375000px;}
.ye4{bottom:440.895000px;}
.y59{bottom:442.695000px;}
.y168{bottom:443.055000px;}
.y7d{bottom:455.295000px;}
.y22{bottom:456.015000px;}
.y119{bottom:457.275000px;}
.y14e{bottom:458.175000px;}
.ye3{bottom:460.695000px;}
.y58{bottom:462.495000px;}
.y167{bottom:462.855000px;}
.y7c{bottom:475.095000px;}
.y21{bottom:475.815000px;}
.y118{bottom:477.255000px;}
.y14d{bottom:477.975000px;}
.ye2{bottom:480.495000px;}
.y57{bottom:482.295000px;}
.y166{bottom:482.835000px;}
.y7b{bottom:495.075000px;}
.y20{bottom:495.615000px;}
.y117{bottom:497.055000px;}
.y14c{bottom:497.775000px;}
.ye1{bottom:500.295000px;}
.y56{bottom:502.095000px;}
.y165{bottom:502.635000px;}
.y7a{bottom:514.875000px;}
.y1f{bottom:515.595000px;}
.y116{bottom:516.855000px;}
.y14b{bottom:517.575000px;}
.ye0{bottom:520.095000px;}
.y55{bottom:522.075000px;}
.y164{bottom:522.435000px;}
.yb2{bottom:534.675000px;}
.y1e{bottom:535.395000px;}
.y14a{bottom:537.555000px;}
.ydf{bottom:540.075000px;}
.y54{bottom:541.875000px;}
.y163{bottom:542.235000px;}
.y79{bottom:543.675000px;}
.y115{bottom:545.655000px;}
.yb1{bottom:554.475000px;}
.y1d{bottom:555.195000px;}
.y149{bottom:557.355000px;}
.yde{bottom:559.875000px;}
.y162{bottom:562.035000px;}
.y78{bottom:563.475000px;}
.y114{bottom:565.485000px;}
.y53{bottom:570.705000px;}
.yb0{bottom:574.305000px;}
.y1c{bottom:575.025000px;}
.y148{bottom:577.185000px;}
.ydd{bottom:579.705000px;}
.y161{bottom:582.045000px;}
.y77{bottom:583.305000px;}
.y113{bottom:585.465000px;}
.y52{bottom:590.505000px;}
.yaf{bottom:594.285000px;}
.y1b{bottom:594.825000px;}
.y147{bottom:596.985000px;}
.ydc{bottom:599.505000px;}
.y160{bottom:601.665000px;}
.y112{bottom:605.265000px;}
.y51{bottom:610.305000px;}
.y76{bottom:612.285000px;}
.yae{bottom:614.085000px;}
.y1a{bottom:614.805000px;}
.y146{bottom:616.785000px;}
.y111{bottom:625.065000px;}
.ydb{bottom:628.305000px;}
.y50{bottom:630.285000px;}
.y75{bottom:632.085000px;}
.yad{bottom:633.885000px;}
.y19{bottom:636.765000px;}
.y110{bottom:644.865000px;}
.yda{bottom:648.285000px;}
.y4f{bottom:650.085000px;}
.y74{bottom:651.885000px;}
.yac{bottom:653.685000px;}
.y145{bottom:656.565000px;}
.y10f{bottom:664.665000px;}
.y18{bottom:665.745000px;}
.yd9{bottom:668.085000px;}
.y4e{bottom:669.885000px;}
.y73{bottom:671.685000px;}
.yab{bottom:673.485000px;}
.y144{bottom:676.365000px;}
.y10e{bottom:684.645000px;}
.y17{bottom:685.545000px;}
.yd8{bottom:687.885000px;}
.y4d{bottom:689.685000px;}
.yaa{bottom:693.465000px;}
.y143{bottom:696.165000px;}
.y72{bottom:700.485000px;}
.y10d{bottom:704.445000px;}
.y16{bottom:705.345000px;}
.yd7{bottom:707.685000px;}
.y4c{bottom:709.485000px;}
.ya9{bottom:713.265000px;}
.y142{bottom:715.965000px;}
.y71{bottom:720.465000px;}
.y10c{bottom:724.245000px;}
.y15{bottom:725.145000px;}
.yd6{bottom:727.485000px;}
.y4b{bottom:729.465000px;}
.y141{bottom:735.945000px;}
.y70{bottom:740.265000px;}
.y10b{bottom:744.045000px;}
.y14{bottom:744.945000px;}
.yd5{bottom:747.465000px;}
.y140{bottom:755.745000px;}
.y4a{bottom:758.265000px;}
.y6f{bottom:760.065000px;}
.y10a{bottom:763.845000px;}
.y13{bottom:764.925000px;}
.yd4{bottom:767.265000px;}
.y94{bottom:774.825000px;}
.y13f{bottom:775.545000px;}
.y49{bottom:778.065000px;}
.y6e{bottom:779.865000px;}
.y109{bottom:783.825000px;}
.y12{bottom:784.725000px;}
.yd3{bottom:787.065000px;}
.y13e{bottom:795.345000px;}
.y48{bottom:797.865000px;}
.y108{bottom:803.625000px;}
.y11{bottom:804.525000px;}
.yd2{bottom:806.865000px;}
.y6d{bottom:808.665000px;}
.y13d{bottom:815.145000px;}
.y47{bottom:817.665000px;}
.y107{bottom:823.425000px;}
.y10{bottom:824.325000px;}
.yd1{bottom:826.665000px;}
.y6c{bottom:828.645000px;}
.y13c{bottom:835.125000px;}
.y46{bottom:837.645000px;}
.y106{bottom:843.225000px;}
.yf{bottom:844.125000px;}
.yd0{bottom:846.645000px;}
.y6b{bottom:848.490000px;}
.y13b{bottom:854.970000px;}
.y45{bottom:857.490000px;}
.y105{bottom:863.070000px;}
.ye{bottom:864.150000px;}
.ycf{bottom:866.490000px;}
.y6a{bottom:868.290000px;}
.y13a{bottom:874.770000px;}
.y44{bottom:877.290000px;}
.y104{bottom:883.050000px;}
.yd{bottom:883.950000px;}
.yce{bottom:886.290000px;}
.y139{bottom:894.570000px;}
.y43{bottom:897.090000px;}
.y103{bottom:902.850000px;}
.yc{bottom:905.910000px;}
.ycd{bottom:906.090000px;}
.y138{bottom:914.370000px;}
.y42{bottom:916.890000px;}
.y102{bottom:922.650000px;}
.yb{bottom:925.890000px;}
.y137{bottom:934.350000px;}
.y41{bottom:936.870000px;}
.y101{bottom:942.450000px;}
.ycc{bottom:945.870000px;}
.ya{bottom:946.230000px;}
.y136{bottom:954.150000px;}
.y40{bottom:956.670000px;}
.y100{bottom:962.250000px;}
.ycb{bottom:965.670000px;}
.y9{bottom:967.470000px;}
.y135{bottom:973.950000px;}
.y3f{bottom:976.470000px;}
.yff{bottom:982.230000px;}
.yca{bottom:985.470000px;}
.y8{bottom:990.870000px;}
.y134{bottom:993.750000px;}
.y3e{bottom:996.270000px;}
.yfd{bottom:996.990000px;}
.yc9{bottom:1005.270000px;}
.y133{bottom:1008.510000px;}
.y3d{bottom:1016.070000px;}
.y7{bottom:1022.730000px;}
.yc8{bottom:1025.070000px;}
.yfb{bottom:1034.970000px;}
.y131{bottom:1035.510000px;}
.y3c{bottom:1036.050000px;}
.yc7{bottom:1045.050000px;}
.y3b{bottom:1055.850000px;}
.y5{bottom:1061.070000px;}
.yc6{bottom:1064.850000px;}
.y12f{bottom:1072.410000px;}
.yfa{bottom:1072.590000px;}
.y3a{bottom:1075.650000px;}
.yc5{bottom:1084.650000px;}
.y4{bottom:1091.850000px;}
.y90{bottom:1094.010000px;}
.y69{bottom:1095.450000px;}
.y12b{bottom:1099.410000px;}
.y39{bottom:1104.450000px;}
.yf6{bottom:1107.510000px;}
.y3{bottom:1122.810000px;}
.y38{bottom:1124.250000px;}
.y37{bottom:1144.260000px;}
.y2{bottom:1153.620000px;}
.y36{bottom:1164.060000px;}
.y1{bottom:1184.400000px;}
.y35{bottom:1193.400000px;}
.h16{height:26.280000px;}
.h12{height:34.200000px;}
.h17{height:36.180000px;}
.h13{height:36.900000px;}
.h14{height:37.080000px;}
.hd{height:39.960000px;}
.h18{height:41.726953px;}
.hb{height:43.020000px;}
.he{height:43.056000px;}
.hf{height:43.920000px;}
.h10{height:44.460000px;}
.h11{height:49.896000px;}
.hc{height:51.660000px;}
.h15{height:57.996000px;}
.h7{height:58.651172px;}
.h6{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:61.956000px;}
.h3{height:65.010937px;}
.h2{height:66.757500px;}
.h4{height:67.565039px;}
.h19{height:86.011172px;}
.h5{height:96.508125px;}
.ha{height:317.010000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:62.136000px;}
.w17{width:66.276000px;}
.w11{width:68.436000px;}
.w18{width:77.040000px;}
.w12{width:91.980000px;}
.wa{width:92.880000px;}
.w8{width:94.860000px;}
.wc{width:102.420000px;}
.w15{width:102.456000px;}
.w10{width:106.020000px;}
.w9{width:106.596000px;}
.w16{width:107.100000px;}
.wf{width:109.296000px;}
.we{width:110.340000px;}
.w14{width:111.420000px;}
.w3{width:192.450000px;}
.w6{width:239.430000px;}
.w7{width:241.230000px;}
.wd{width:244.155000px;}
.w13{width:245.370000px;}
.w5{width:294.915000px;}
.w4{width:536.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:4.905000px;}
.xf{left:14.220000px;}
.x11{left:19.080000px;}
.x10{left:21.420000px;}
.xe{left:31.860000px;}
.x6{left:50.085000px;}
.x1{left:54.179987px;}
.x12{left:79.560000px;}
.x3{left:80.820000px;}
.x19{left:89.856000px;}
.x18{left:91.655987px;}
.x8{left:94.536000px;}
.x1e{left:108.035987px;}
.x4{left:275.430000px;}
.x2{left:315.254987px;}
.x13{left:324.435000px;}
.x9{left:336.675000px;}
.xa{left:432.255000px;}
.x14{left:435.495000px;}
.x1a{left:448.095000px;}
.xb{left:539.565000px;}
.x15{left:545.505000px;}
.x1b{left:551.265000px;}
.x7{left:572.685000px;}
.xc{left:633.165000px;}
.x16{left:652.245000px;}
.x1c{left:659.265000px;}
.xd{left:696.030000px;}
.x17{left:721.590000px;}
.x1d{left:726.270000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-2.608000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.456533pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.089067pt;}
.lse{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.010347pt;}
.ls12{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.008640pt;}
.ls3{letter-spacing:1.182720pt;}
.ls2{letter-spacing:1.342720pt;}
.ls7{letter-spacing:1.377280pt;}
.ls0{letter-spacing:1.415680pt;}
.ls5{letter-spacing:1.512960pt;}
.ls4{letter-spacing:1.551360pt;}
.ls1{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:10.192640pt;}
.ls14{letter-spacing:13.545600pt;}
.ls13{letter-spacing:13.600000pt;}
.ls9{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:37.072640pt;}
.ws1{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.190933pt;}
.wsa{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.823467pt;}
.ws8{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.672000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2327.221333pt;}
._4{margin-left:-1214.364160pt;}
._9{margin-left:-898.782720pt;}
._5{margin-left:-834.176000pt;}
._8{margin-left:-778.378667pt;}
._b{margin-left:-512.279040pt;}
._6{margin-left:-475.632640pt;}
._a{margin-left:-162.296320pt;}
._7{margin-left:-29.440000pt;}
._1f{margin-left:-12.068693pt;}
._23{margin-left:-10.671573pt;}
._22{margin-left:-9.473067pt;}
._c{margin-left:-7.595520pt;}
._f{margin-left:-4.710400pt;}
._17{margin-left:-3.712000pt;}
._10{margin-left:-2.577920pt;}
._3{margin-left:-0.942080pt;}
._0{width:1.152000pt;}
._1{width:2.746667pt;}
._12{width:3.656320pt;}
._13{width:5.046400pt;}
._14{width:6.083200pt;}
._15{width:7.171200pt;}
._18{width:8.456960pt;}
._11{width:9.671040pt;}
._16{width:11.155200pt;}
._21{width:12.167040pt;}
._d{width:13.601280pt;}
._19{width:14.554880pt;}
._e{width:15.711147pt;}
._20{width:32.243840pt;}
._1a{width:41.646080pt;}
._1d{width:118.749440pt;}
._1b{width:125.789440pt;}
._1e{width:133.331200pt;}
._1c{width:140.396160pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:2.880000pt;}
.y130{bottom:6.880000pt;}
.ya6{bottom:8.640000pt;}
.yf8{bottom:9.760000pt;}
.ya8{bottom:10.400000pt;}
.yb5{bottom:10.560000pt;}
.y132{bottom:11.200000pt;}
.yfc{bottom:11.520000pt;}
.yfe{bottom:11.680000pt;}
.y93{bottom:12.000000pt;}
.yba{bottom:12.960000pt;}
.y12e{bottom:13.440000pt;}
.ybc{bottom:14.440000pt;}
.ybe{bottom:14.720000pt;}
.yc0{bottom:15.040000pt;}
.yf9{bottom:17.440000pt;}
.yb7{bottom:18.240000pt;}
.y12c{bottom:20.960000pt;}
.ya5{bottom:24.000000pt;}
.yf7{bottom:25.146667pt;}
.ya7{bottom:25.760000pt;}
.yb4{bottom:25.920000pt;}
.y92{bottom:27.200000pt;}
.y12d{bottom:28.666667pt;}
.yb6{bottom:33.600000pt;}
.ya4{bottom:39.360000pt;}
.y91{bottom:42.586667pt;}
.y6{bottom:53.632000pt;}
.ya3{bottom:54.560000pt;}
.ya2{bottom:69.960000pt;}
.ya1{bottom:85.320000pt;}
.y8f{bottom:87.392000pt;}
.y34{bottom:88.032000pt;}
.y12a{bottom:90.752000pt;}
.yf5{bottom:92.032000pt;}
.yc4{bottom:96.672000pt;}
.ya0{bottom:100.680000pt;}
.y8e{bottom:104.992000pt;}
.y33{bottom:105.632000pt;}
.y15f{bottom:107.392000pt;}
.y129{bottom:108.352000pt;}
.yf4{bottom:109.632000pt;}
.y68{bottom:112.992000pt;}
.yc3{bottom:114.432000pt;}
.y9f{bottom:116.040000pt;}
.y8d{bottom:122.592000pt;}
.y32{bottom:123.232000pt;}
.y15e{bottom:125.152000pt;}
.y128{bottom:125.952000pt;}
.yf3{bottom:127.392000pt;}
.y67{bottom:130.592000pt;}
.y9e{bottom:131.400000pt;}
.yc2{bottom:132.032000pt;}
.y8c{bottom:140.186667pt;}
.y31{bottom:140.826667pt;}
.y15d{bottom:142.746667pt;}
.y127{bottom:143.706667pt;}
.yf2{bottom:144.986667pt;}
.y9d{bottom:146.600000pt;}
.y66{bottom:148.186667pt;}
.yc1{bottom:149.626667pt;}
.y8b{bottom:157.786667pt;}
.y30{bottom:158.426667pt;}
.y15c{bottom:160.346667pt;}
.y126{bottom:161.306667pt;}
.y9c{bottom:161.960000pt;}
.yf1{bottom:162.586667pt;}
.ybf{bottom:162.746667pt;}
.y65{bottom:165.786667pt;}
.y8a{bottom:175.546667pt;}
.y2f{bottom:176.186667pt;}
.y9b{bottom:177.320000pt;}
.y15b{bottom:177.946667pt;}
.y125{bottom:178.906667pt;}
.yf0{bottom:180.186667pt;}
.y173{bottom:187.866667pt;}
.y64{bottom:191.546667pt;}
.y9a{bottom:192.680000pt;}
.y89{bottom:193.146667pt;}
.y2e{bottom:193.786667pt;}
.y15a{bottom:195.546667pt;}
.y124{bottom:196.506667pt;}
.yef{bottom:197.786667pt;}
.ybd{bottom:202.906667pt;}
.y172{bottom:205.466667pt;}
.y99{bottom:208.040000pt;}
.y63{bottom:209.146667pt;}
.y88{bottom:210.746667pt;}
.y2d{bottom:211.386667pt;}
.y159{bottom:213.306667pt;}
.yee{bottom:215.546667pt;}
.y123{bottom:222.106667pt;}
.y171{bottom:223.066667pt;}
.y98{bottom:223.400000pt;}
.y62{bottom:226.746667pt;}
.y87{bottom:228.346667pt;}
.y2c{bottom:228.986667pt;}
.y158{bottom:230.906667pt;}
.yed{bottom:233.146667pt;}
.y97{bottom:238.600000pt;}
.y122{bottom:239.866667pt;}
.y170{bottom:240.826667pt;}
.ybb{bottom:242.586667pt;}
.y61{bottom:244.346667pt;}
.y86{bottom:245.946667pt;}
.y2b{bottom:246.586667pt;}
.y157{bottom:248.506667pt;}
.yec{bottom:250.786667pt;}
.y96{bottom:253.960000pt;}
.y121{bottom:257.506667pt;}
.y16f{bottom:258.466667pt;}
.y60{bottom:261.986667pt;}
.y85{bottom:263.746667pt;}
.y2a{bottom:264.386667pt;}
.y156{bottom:266.146667pt;}
.yeb{bottom:268.386667pt;}
.y95{bottom:269.320000pt;}
.y120{bottom:275.106667pt;}
.y16e{bottom:276.066667pt;}
.y5f{bottom:279.746667pt;}
.y84{bottom:281.346667pt;}
.yb9{bottom:281.506667pt;}
.y29{bottom:281.986667pt;}
.y155{bottom:283.746667pt;}
.yea{bottom:285.986667pt;}
.y11f{bottom:292.706667pt;}
.y16d{bottom:293.666667pt;}
.y5e{bottom:297.346667pt;}
.y83{bottom:298.946667pt;}
.y28{bottom:299.586667pt;}
.y154{bottom:301.506667pt;}
.ye9{bottom:303.746667pt;}
.y11e{bottom:310.306667pt;}
.y16c{bottom:311.266667pt;}
.y82{bottom:316.546667pt;}
.y27{bottom:317.186667pt;}
.yb3{bottom:317.666667pt;}
.y153{bottom:319.106667pt;}
.ye8{bottom:321.346667pt;}
.y5d{bottom:322.946667pt;}
.y11d{bottom:328.066667pt;}
.y81{bottom:334.146667pt;}
.y26{bottom:334.786667pt;}
.y16b{bottom:334.946667pt;}
.y152{bottom:336.706667pt;}
.ye7{bottom:338.946667pt;}
.y5c{bottom:340.546667pt;}
.y80{bottom:351.906667pt;}
.y25{bottom:352.546667pt;}
.y11c{bottom:353.666667pt;}
.y151{bottom:354.306667pt;}
.ye6{bottom:356.546667pt;}
.y5b{bottom:358.146667pt;}
.y16a{bottom:358.626667pt;}
.y7f{bottom:369.506667pt;}
.y24{bottom:370.146667pt;}
.y11b{bottom:371.266667pt;}
.y150{bottom:371.906667pt;}
.ye5{bottom:374.146667pt;}
.y5a{bottom:375.906667pt;}
.y169{bottom:376.226667pt;}
.y7e{bottom:387.106667pt;}
.y23{bottom:387.746667pt;}
.y11a{bottom:388.866667pt;}
.y14f{bottom:389.666667pt;}
.ye4{bottom:391.906667pt;}
.y59{bottom:393.506667pt;}
.y168{bottom:393.826667pt;}
.y7d{bottom:404.706667pt;}
.y22{bottom:405.346667pt;}
.y119{bottom:406.466667pt;}
.y14e{bottom:407.266667pt;}
.ye3{bottom:409.506667pt;}
.y58{bottom:411.106667pt;}
.y167{bottom:411.426667pt;}
.y7c{bottom:422.306667pt;}
.y21{bottom:422.946667pt;}
.y118{bottom:424.226667pt;}
.y14d{bottom:424.866667pt;}
.ye2{bottom:427.106667pt;}
.y57{bottom:428.706667pt;}
.y166{bottom:429.186667pt;}
.y7b{bottom:440.066667pt;}
.y20{bottom:440.546667pt;}
.y117{bottom:441.826667pt;}
.y14c{bottom:442.466667pt;}
.ye1{bottom:444.706667pt;}
.y56{bottom:446.306667pt;}
.y165{bottom:446.786667pt;}
.y7a{bottom:457.666667pt;}
.y1f{bottom:458.306667pt;}
.y116{bottom:459.426667pt;}
.y14b{bottom:460.066667pt;}
.ye0{bottom:462.306667pt;}
.y55{bottom:464.066667pt;}
.y164{bottom:464.386667pt;}
.yb2{bottom:475.266667pt;}
.y1e{bottom:475.906667pt;}
.y14a{bottom:477.826667pt;}
.ydf{bottom:480.066667pt;}
.y54{bottom:481.666667pt;}
.y163{bottom:481.986667pt;}
.y79{bottom:483.266667pt;}
.y115{bottom:485.026667pt;}
.yb1{bottom:492.866667pt;}
.y1d{bottom:493.506667pt;}
.y149{bottom:495.426667pt;}
.yde{bottom:497.666667pt;}
.y162{bottom:499.586667pt;}
.y78{bottom:500.866667pt;}
.y114{bottom:502.653333pt;}
.y53{bottom:507.293333pt;}
.yb0{bottom:510.493333pt;}
.y1c{bottom:511.133333pt;}
.y148{bottom:513.053333pt;}
.ydd{bottom:515.293333pt;}
.y161{bottom:517.373333pt;}
.y77{bottom:518.493333pt;}
.y113{bottom:520.413333pt;}
.y52{bottom:524.893333pt;}
.yaf{bottom:528.253333pt;}
.y1b{bottom:528.733333pt;}
.y147{bottom:530.653333pt;}
.ydc{bottom:532.893333pt;}
.y160{bottom:534.813333pt;}
.y112{bottom:538.013333pt;}
.y51{bottom:542.493333pt;}
.y76{bottom:544.253333pt;}
.yae{bottom:545.853333pt;}
.y1a{bottom:546.493333pt;}
.y146{bottom:548.253333pt;}
.y111{bottom:555.613333pt;}
.ydb{bottom:558.493333pt;}
.y50{bottom:560.253333pt;}
.y75{bottom:561.853333pt;}
.yad{bottom:563.453333pt;}
.y19{bottom:566.013333pt;}
.y110{bottom:573.213333pt;}
.yda{bottom:576.253333pt;}
.y4f{bottom:577.853333pt;}
.y74{bottom:579.453333pt;}
.yac{bottom:581.053333pt;}
.y145{bottom:583.613333pt;}
.y10f{bottom:590.813333pt;}
.y18{bottom:591.773333pt;}
.yd9{bottom:593.853333pt;}
.y4e{bottom:595.453333pt;}
.y73{bottom:597.053333pt;}
.yab{bottom:598.653333pt;}
.y144{bottom:601.213333pt;}
.y10e{bottom:608.573333pt;}
.y17{bottom:609.373333pt;}
.yd8{bottom:611.453333pt;}
.y4d{bottom:613.053333pt;}
.yaa{bottom:616.413333pt;}
.y143{bottom:618.813333pt;}
.y72{bottom:622.653333pt;}
.y10d{bottom:626.173333pt;}
.y16{bottom:626.973333pt;}
.yd7{bottom:629.053333pt;}
.y4c{bottom:630.653333pt;}
.ya9{bottom:634.013333pt;}
.y142{bottom:636.413333pt;}
.y71{bottom:640.413333pt;}
.y10c{bottom:643.773333pt;}
.y15{bottom:644.573333pt;}
.yd6{bottom:646.653333pt;}
.y4b{bottom:648.413333pt;}
.y141{bottom:654.173333pt;}
.y70{bottom:658.013333pt;}
.y10b{bottom:661.373333pt;}
.y14{bottom:662.173333pt;}
.yd5{bottom:664.413333pt;}
.y140{bottom:671.773333pt;}
.y4a{bottom:674.013333pt;}
.y6f{bottom:675.613333pt;}
.y10a{bottom:678.973333pt;}
.y13{bottom:679.933333pt;}
.yd4{bottom:682.013333pt;}
.y94{bottom:688.733333pt;}
.y13f{bottom:689.373333pt;}
.y49{bottom:691.613333pt;}
.y6e{bottom:693.213333pt;}
.y109{bottom:696.733333pt;}
.y12{bottom:697.533333pt;}
.yd3{bottom:699.613333pt;}
.y13e{bottom:706.973333pt;}
.y48{bottom:709.213333pt;}
.y108{bottom:714.333333pt;}
.y11{bottom:715.133333pt;}
.yd2{bottom:717.213333pt;}
.y6d{bottom:718.813333pt;}
.y13d{bottom:724.573333pt;}
.y47{bottom:726.813333pt;}
.y107{bottom:731.933333pt;}
.y10{bottom:732.733333pt;}
.yd1{bottom:734.813333pt;}
.y6c{bottom:736.573333pt;}
.y13c{bottom:742.333333pt;}
.y46{bottom:744.573333pt;}
.y106{bottom:749.533333pt;}
.yf{bottom:750.333333pt;}
.yd0{bottom:752.573333pt;}
.y6b{bottom:754.213333pt;}
.y13b{bottom:759.973333pt;}
.y45{bottom:762.213333pt;}
.y105{bottom:767.173333pt;}
.ye{bottom:768.133333pt;}
.ycf{bottom:770.213333pt;}
.y6a{bottom:771.813333pt;}
.y13a{bottom:777.573333pt;}
.y44{bottom:779.813333pt;}
.y104{bottom:784.933333pt;}
.yd{bottom:785.733333pt;}
.yce{bottom:787.813333pt;}
.y139{bottom:795.173333pt;}
.y43{bottom:797.413333pt;}
.y103{bottom:802.533333pt;}
.yc{bottom:805.253333pt;}
.ycd{bottom:805.413333pt;}
.y138{bottom:812.773333pt;}
.y42{bottom:815.013333pt;}
.y102{bottom:820.133333pt;}
.yb{bottom:823.013333pt;}
.y137{bottom:830.533333pt;}
.y41{bottom:832.773333pt;}
.y101{bottom:837.733333pt;}
.ycc{bottom:840.773333pt;}
.ya{bottom:841.093333pt;}
.y136{bottom:848.133333pt;}
.y40{bottom:850.373333pt;}
.y100{bottom:855.333333pt;}
.ycb{bottom:858.373333pt;}
.y9{bottom:859.973333pt;}
.y135{bottom:865.733333pt;}
.y3f{bottom:867.973333pt;}
.yff{bottom:873.093333pt;}
.yca{bottom:875.973333pt;}
.y8{bottom:880.773333pt;}
.y134{bottom:883.333333pt;}
.y3e{bottom:885.573333pt;}
.yfd{bottom:886.213333pt;}
.yc9{bottom:893.573333pt;}
.y133{bottom:896.453333pt;}
.y3d{bottom:903.173333pt;}
.y7{bottom:909.093333pt;}
.yc8{bottom:911.173333pt;}
.yfb{bottom:919.973333pt;}
.y131{bottom:920.453333pt;}
.y3c{bottom:920.933333pt;}
.yc7{bottom:928.933333pt;}
.y3b{bottom:938.533333pt;}
.y5{bottom:943.173333pt;}
.yc6{bottom:946.533333pt;}
.y12f{bottom:953.253333pt;}
.yfa{bottom:953.413333pt;}
.y3a{bottom:956.133333pt;}
.yc5{bottom:964.133333pt;}
.y4{bottom:970.533333pt;}
.y90{bottom:972.453333pt;}
.y69{bottom:973.733333pt;}
.y12b{bottom:977.253333pt;}
.y39{bottom:981.733333pt;}
.yf6{bottom:984.453333pt;}
.y3{bottom:998.053333pt;}
.y38{bottom:999.333333pt;}
.y37{bottom:1017.120000pt;}
.y2{bottom:1025.440000pt;}
.y36{bottom:1034.720000pt;}
.y1{bottom:1052.800000pt;}
.y35{bottom:1060.800000pt;}
.h16{height:23.360000pt;}
.h12{height:30.400000pt;}
.h17{height:32.160000pt;}
.h13{height:32.800000pt;}
.h14{height:32.960000pt;}
.hd{height:35.520000pt;}
.h18{height:37.090625pt;}
.hb{height:38.240000pt;}
.he{height:38.272000pt;}
.hf{height:39.040000pt;}
.h10{height:39.520000pt;}
.h11{height:44.352000pt;}
.hc{height:45.920000pt;}
.h15{height:51.552000pt;}
.h7{height:52.134375pt;}
.h6{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.072000pt;}
.h3{height:57.787500pt;}
.h2{height:59.340000pt;}
.h4{height:60.057813pt;}
.h19{height:76.454375pt;}
.h5{height:85.785000pt;}
.ha{height:281.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:55.232000pt;}
.w17{width:58.912000pt;}
.w11{width:60.832000pt;}
.w18{width:68.480000pt;}
.w12{width:81.760000pt;}
.wa{width:82.560000pt;}
.w8{width:84.320000pt;}
.wc{width:91.040000pt;}
.w15{width:91.072000pt;}
.w10{width:94.240000pt;}
.w9{width:94.752000pt;}
.w16{width:95.200000pt;}
.wf{width:97.152000pt;}
.we{width:98.080000pt;}
.w14{width:99.040000pt;}
.w3{width:171.066667pt;}
.w6{width:212.826667pt;}
.w7{width:214.426667pt;}
.wd{width:217.026667pt;}
.w13{width:218.106667pt;}
.w5{width:262.146667pt;}
.w4{width:477.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:4.360000pt;}
.xf{left:12.640000pt;}
.x11{left:16.960000pt;}
.x10{left:19.040000pt;}
.xe{left:28.320000pt;}
.x6{left:44.520000pt;}
.x1{left:48.159988pt;}
.x12{left:70.720000pt;}
.x3{left:71.840000pt;}
.x19{left:79.872000pt;}
.x18{left:81.471988pt;}
.x8{left:84.032000pt;}
.x1e{left:96.031988pt;}
.x4{left:244.826667pt;}
.x2{left:280.226655pt;}
.x13{left:288.386667pt;}
.x9{left:299.266667pt;}
.xa{left:384.226667pt;}
.x14{left:387.106667pt;}
.x1a{left:398.306667pt;}
.xb{left:479.613333pt;}
.x15{left:484.893333pt;}
.x1b{left:490.013333pt;}
.x7{left:509.053333pt;}
.xc{left:562.813333pt;}
.x16{left:579.773333pt;}
.x1c{left:586.013333pt;}
.xd{left:618.693333pt;}
.x17{left:641.413333pt;}
.x1d{left:645.573333pt;}
}




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