
    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_647c9964607f5e63e9219e4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_c51a921914f35c447e409ff1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_46e5325b7cab07e31cff6e23.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_a2ad562c9a4ef2eb0dff9e82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a897018ac87a27b232bd89d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e3609222ff477628f4824c35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_6b19c47a4f4482725f60240b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_93e68a9f86ecc92d3120936b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_9b44af4e436774be7fadd89b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cdcfbe072232c974b2897ab2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0b1f4247297e0c75e82a9fb8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_51a743b722790b84fdc61cea.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_30d01897a1feb7f809f27277.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.960449;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.127200px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls0{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.298800px;}
.lse{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.lsb{letter-spacing:5.220000px;}
.ls13{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-34.063200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.wse{word-spacing:-14.733600px;}
.ws7{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._1b{margin-left:-7.769520px;}
._19{margin-left:-6.035760px;}
._1a{margin-left:-4.633200px;}
._3{margin-left:-3.322080px;}
._2{margin-left:-2.160000px;}
._1{margin-left:-1.044000px;}
._0{width:1.856640px;}
._b{width:2.992560px;}
._12{width:4.264560px;}
._8{width:5.314560px;}
._7{width:6.334560px;}
._9{width:7.649280px;}
._13{width:8.665200px;}
._d{width:9.681120px;}
._10{width:11.055600px;}
._15{width:12.626880px;}
._6{width:13.673040px;}
._c{width:15.973200px;}
._17{width:17.326320px;}
._16{width:18.370320px;}
._f{width:20.254560px;}
._e{width:21.692880px;}
._11{width:23.302320px;}
._18{width:24.647520px;}
._4{width:31.590240px;}
._5{width:32.696640px;}
._a{width:34.210800px;}
._14{width:40.286880px;}
.fc6{color:transparent;}
.fc4{color:rgb(227,108,10);}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.240000px;}
.ye1{bottom:3.270000px;}
.y18{bottom:3.600000px;}
.y70{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y6e{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.y5{bottom:13.680000px;}
.yc{bottom:13.860000px;}
.yd3{bottom:17.280000px;}
.y3{bottom:18.180000px;}
.y6b{bottom:19.080000px;}
.y6f{bottom:22.320000px;}
.y17{bottom:23.940000px;}
.y6d{bottom:25.380000px;}
.yb{bottom:30.240000px;}
.y44{bottom:35.820000px;}
.y1{bottom:36.180000px;}
.y6a{bottom:36.360000px;}
.y4{bottom:36.756000px;}
.y2{bottom:38.016000px;}
.y16{bottom:40.320000px;}
.ya{bottom:46.620000px;}
.y43{bottom:53.100000px;}
.y69{bottom:53.460000px;}
.y15{bottom:56.880000px;}
.y42{bottom:67.860000px;}
.y68{bottom:70.740000px;}
.y14{bottom:72.540000px;}
.y9{bottom:73.470000px;}
.y13{bottom:82.440000px;}
.y67{bottom:88.020000px;}
.y8{bottom:93.090000px;}
.y41{bottom:97.200000px;}
.y12{bottom:97.740000px;}
.y66{bottom:105.300000px;}
.ya5{bottom:105.876000px;}
.y71{bottom:109.476000px;}
.yf7{bottom:110.376000px;}
.yca{bottom:111.276000px;}
.y7{bottom:111.450000px;}
.y40{bottom:111.780000px;}
.y13e{bottom:112.536000px;}
.y11{bottom:116.820000px;}
.y65{bottom:122.580000px;}
.ya4{bottom:122.976000px;}
.y6c{bottom:123.336000px;}
.y3f{bottom:126.360000px;}
.yf6{bottom:127.476000px;}
.yc9{bottom:128.556000px;}
.y13d{bottom:129.816000px;}
.y10d{bottom:129.996000px;}
.y64{bottom:139.680000px;}
.y3e{bottom:141.120000px;}
.y10{bottom:142.560000px;}
.yf5{bottom:144.756000px;}
.yc8{bottom:145.836000px;}
.y10c{bottom:147.276000px;}
.y3d{bottom:155.700000px;}
.y63{bottom:156.960000px;}
.y13c{bottom:158.970000px;}
.y1b{bottom:160.050000px;}
.ya3{bottom:161.310000px;}
.yf4{bottom:162.030000px;}
.yc7{bottom:163.110000px;}
.y10b{bottom:164.550000px;}
.y3c{bottom:170.460000px;}
.y62{bottom:174.240000px;}
.y13b{bottom:176.250000px;}
.ya2{bottom:178.590000px;}
.yf3{bottom:179.310000px;}
.yc6{bottom:180.210000px;}
.y10a{bottom:181.830000px;}
.y3b{bottom:185.085000px;}
.y61{bottom:191.565000px;}
.y13a{bottom:193.530000px;}
.ya1{bottom:195.870000px;}
.y109{bottom:199.110000px;}
.y3a{bottom:199.665000px;}
.y60{bottom:208.845000px;}
.y139{bottom:210.810000px;}
.ya0{bottom:212.970000px;}
.y39{bottom:214.425000px;}
.y108{bottom:216.390000px;}
.yf2{bottom:217.470000px;}
.yc5{bottom:218.550000px;}
.y5f{bottom:226.125000px;}
.y138{bottom:228.090000px;}
.y38{bottom:229.005000px;}
.y9f{bottom:230.250000px;}
.y107{bottom:233.670000px;}
.yf1{bottom:234.930000px;}
.yc4{bottom:235.830000px;}
.y5e{bottom:243.225000px;}
.y37{bottom:243.585000px;}
.y137{bottom:245.370000px;}
.y9e{bottom:247.530000px;}
.y106{bottom:250.770000px;}
.yc3{bottom:253.110000px;}
.y36{bottom:258.345000px;}
.y5d{bottom:260.505000px;}
.y136{bottom:262.470000px;}
.y9d{bottom:264.810000px;}
.y105{bottom:268.050000px;}
.yc2{bottom:270.210000px;}
.yf0{bottom:270.570000px;}
.y35{bottom:272.925000px;}
.y5c{bottom:277.785000px;}
.y135{bottom:279.750000px;}
.y9c{bottom:282.090000px;}
.y104{bottom:285.330000px;}
.yc1{bottom:287.490000px;}
.y34{bottom:287.685000px;}
.yef{bottom:288.570000px;}
.y5b{bottom:295.065000px;}
.y134{bottom:297.030000px;}
.y9b{bottom:299.370000px;}
.y33{bottom:302.265000px;}
.y103{bottom:302.610000px;}
.yc0{bottom:304.950000px;}
.yee{bottom:306.570000px;}
.y5a{bottom:312.345000px;}
.y133{bottom:314.310000px;}
.y32{bottom:316.845000px;}
.y102{bottom:319.890000px;}
.yed{bottom:324.570000px;}
.y59{bottom:329.625000px;}
.y132{bottom:331.590000px;}
.y31{bottom:331.605000px;}
.y101{bottom:337.035000px;}
.y9a{bottom:337.575000px;}
.yec{bottom:342.615000px;}
.ybf{bottom:343.155000px;}
.y30{bottom:346.185000px;}
.y58{bottom:346.725000px;}
.y131{bottom:348.915000px;}
.y100{bottom:354.315000px;}
.y99{bottom:354.855000px;}
.ybe{bottom:360.255000px;}
.yeb{bottom:360.615000px;}
.y2f{bottom:360.765000px;}
.y57{bottom:364.005000px;}
.yff{bottom:371.595000px;}
.y98{bottom:372.135000px;}
.y2e{bottom:375.525000px;}
.ybd{bottom:377.535000px;}
.y130{bottom:378.075000px;}
.yea{bottom:378.615000px;}
.y56{bottom:381.285000px;}
.yfe{bottom:388.875000px;}
.y97{bottom:389.235000px;}
.y2d{bottom:390.105000px;}
.ybc{bottom:394.815000px;}
.y12f{bottom:395.355000px;}
.y55{bottom:398.565000px;}
.ye9{bottom:399.855000px;}
.y2c{bottom:404.865000px;}
.yfd{bottom:406.155000px;}
.y96{bottom:406.695000px;}
.ybb{bottom:412.095000px;}
.y12e{bottom:412.635000px;}
.y54{bottom:415.845000px;}
.y2b{bottom:419.445000px;}
.yfc{bottom:423.435000px;}
.yba{bottom:429.375000px;}
.y12d{bottom:429.735000px;}
.y53{bottom:432.945000px;}
.y2a{bottom:434.025000px;}
.ye8{bottom:438.015000px;}
.y95{bottom:444.855000px;}
.y12c{bottom:447.015000px;}
.y29{bottom:448.815000px;}
.yb9{bottom:449.355000px;}
.y52{bottom:450.255000px;}
.y169{bottom:453.495000px;}
.ye7{bottom:455.295000px;}
.y94{bottom:462.135000px;}
.y28{bottom:463.395000px;}
.y12b{bottom:464.295000px;}
.y51{bottom:467.535000px;}
.yfb{bottom:468.615000px;}
.y168{bottom:470.775000px;}
.y27{bottom:477.975000px;}
.y93{bottom:479.235000px;}
.y12a{bottom:481.575000px;}
.y50{bottom:484.815000px;}
.yb8{bottom:487.515000px;}
.y167{bottom:488.055000px;}
.y26{bottom:492.555000px;}
.ye6{bottom:493.455000px;}
.y92{bottom:496.515000px;}
.y129{bottom:498.855000px;}
.y4f{bottom:502.095000px;}
.y166{bottom:505.335000px;}
.y25{bottom:509.835000px;}
.y91{bottom:513.795000px;}
.y4e{bottom:519.375000px;}
.y165{bottom:522.435000px;}
.yb7{bottom:525.855000px;}
.y24{bottom:527.115000px;}
.y128{bottom:528.015000px;}
.ye5{bottom:529.275000px;}
.y90{bottom:531.075000px;}
.y4d{bottom:536.475000px;}
.y164{bottom:539.715000px;}
.y23{bottom:544.935000px;}
.y127{bottom:545.295000px;}
.ye4{bottom:547.275000px;}
.y4c{bottom:553.755000px;}
.y163{bottom:556.995000px;}
.y22{bottom:562.395000px;}
.y126{bottom:562.575000px;}
.yb6{bottom:564.015000px;}
.ye3{bottom:565.275000px;}
.y8f{bottom:569.235000px;}
.y4b{bottom:571.035000px;}
.y162{bottom:574.275000px;}
.y21{bottom:579.675000px;}
.y125{bottom:579.855000px;}
.ye2{bottom:583.275000px;}
.y8e{bottom:586.515000px;}
.y4a{bottom:588.315000px;}
.y161{bottom:591.555000px;}
.y20{bottom:597.135000px;}
.ye0{bottom:601.275000px;}
.yb5{bottom:602.355000px;}
.y8d{bottom:603.825000px;}
.y49{bottom:605.595000px;}
.y160{bottom:608.865000px;}
.y1f{bottom:614.595000px;}
.ydf{bottom:619.305000px;}
.y8c{bottom:621.105000px;}
.y48{bottom:622.875000px;}
.y15f{bottom:625.965000px;}
.y124{bottom:626.325000px;}
.y1e{bottom:632.055000px;}
.yde{bottom:637.305000px;}
.y47{bottom:639.975000px;}
.yb4{bottom:640.545000px;}
.y15e{bottom:643.245000px;}
.y123{bottom:643.605000px;}
.y46{bottom:657.255000px;}
.ydd{bottom:658.545000px;}
.y8b{bottom:659.265000px;}
.y1d{bottom:659.415000px;}
.y15d{bottom:660.525000px;}
.y122{bottom:660.885000px;}
.y45{bottom:674.535000px;}
.y8a{bottom:676.545000px;}
.y1c{bottom:677.235000px;}
.y15c{bottom:677.805000px;}
.y121{bottom:678.165000px;}
.yb3{bottom:678.705000px;}
.y89{bottom:693.825000px;}
.y15b{bottom:695.085000px;}
.y120{bottom:695.265000px;}
.ydc{bottom:696.885000px;}
.y15a{bottom:712.365000px;}
.y11f{bottom:712.545000px;}
.ydb{bottom:714.165000px;}
.yb2{bottom:717.045000px;}
.y159{bottom:729.465000px;}
.y11e{bottom:729.825000px;}
.y88{bottom:731.985000px;}
.y158{bottom:746.745000px;}
.y11d{bottom:747.105000px;}
.y87{bottom:749.265000px;}
.yda{bottom:749.805000px;}
.yb1{bottom:755.205000px;}
.y157{bottom:764.025000px;}
.y86{bottom:766.545000px;}
.yd9{bottom:767.805000px;}
.y11c{bottom:776.265000px;}
.y156{bottom:781.305000px;}
.y85{bottom:783.825000px;}
.yd8{bottom:785.805000px;}
.yb0{bottom:793.545000px;}
.y155{bottom:798.585000px;}
.y84{bottom:801.105000px;}
.yd7{bottom:803.805000px;}
.y11b{bottom:810.825000px;}
.y154{bottom:815.865000px;}
.yd6{bottom:821.805000px;}
.y11a{bottom:828.105000px;}
.yaf{bottom:831.705000px;}
.y153{bottom:832.965000px;}
.yfa{bottom:833.505000px;}
.y83{bottom:839.265000px;}
.yd5{bottom:839.805000px;}
.y19{bottom:848.625000px;}
.y152{bottom:850.245000px;}
.yf9{bottom:850.785000px;}
.y82{bottom:856.545000px;}
.y119{bottom:857.265000px;}
.yd4{bottom:857.805000px;}
.y151{bottom:867.525000px;}
.yae{bottom:870.045000px;}
.y81{bottom:873.870000px;}
.y118{bottom:874.590000px;}
.yd2{bottom:875.850000px;}
.yf{bottom:878.190000px;}
.y150{bottom:884.850000px;}
.yf8{bottom:887.910000px;}
.y80{bottom:891.150000px;}
.y117{bottom:891.870000px;}
.yd1{bottom:893.850000px;}
.y14f{bottom:902.130000px;}
.yad{bottom:908.250000px;}
.y7f{bottom:908.430000px;}
.y116{bottom:909.150000px;}
.ycf{bottom:911.850000px;}
.y14e{bottom:919.230000px;}
.yac{bottom:925.530000px;}
.y115{bottom:926.430000px;}
.y14d{bottom:936.510000px;}
.yce{bottom:939.030000px;}
.yab{bottom:942.810000px;}
.y114{bottom:943.530000px;}
.y7e{bottom:946.590000px;}
.y14c{bottom:953.790000px;}
.yaa{bottom:960.090000px;}
.y7d{bottom:963.870000px;}
.y14b{bottom:971.070000px;}
.y113{bottom:972.870000px;}
.ycd{bottom:977.370000px;}
.y7c{bottom:981.150000px;}
.y14a{bottom:988.350000px;}
.y112{bottom:990.150000px;}
.ycc{bottom:994.650000px;}
.ya9{bottom:998.250000px;}
.y7b{bottom:998.430000px;}
.y149{bottom:1005.630000px;}
.y111{bottom:1007.430000px;}
.ycb{bottom:1011.930000px;}
.y7a{bottom:1015.530000px;}
.y148{bottom:1022.730000px;}
.y110{bottom:1024.530000px;}
.y79{bottom:1032.810000px;}
.y147{bottom:1040.010000px;}
.yd{bottom:1041.810000px;}
.ya8{bottom:1050.090000px;}
.y146{bottom:1057.290000px;}
.y10f{bottom:1059.090000px;}
.y6{bottom:1067.010000px;}
.ya7{bottom:1067.370000px;}
.y78{bottom:1071.150000px;}
.y145{bottom:1074.570000px;}
.ya6{bottom:1084.650000px;}
.y10e{bottom:1088.250000px;}
.y77{bottom:1088.430000px;}
.y144{bottom:1091.850000px;}
.y76{bottom:1105.530000px;}
.y143{bottom:1109.130000px;}
.y75{bottom:1122.810000px;}
.y142{bottom:1126.230000px;}
.y74{bottom:1140.120000px;}
.y141{bottom:1143.540000px;}
.y73{bottom:1157.400000px;}
.y140{bottom:1160.820000px;}
.y72{bottom:1174.680000px;}
.y13f{bottom:1177.380000px;}
.h1e{height:17.280000px;}
.h1f{height:17.316000px;}
.ha{height:24.840000px;}
.hf{height:28.968750px;}
.h11{height:29.556000px;}
.h21{height:33.683203px;}
.he{height:35.806641px;}
.h7{height:36.180000px;}
.h17{height:36.462656px;}
.h1a{height:36.720000px;}
.h1b{height:38.818125px;}
.h19{height:41.726953px;}
.h18{height:42.164648px;}
.h16{height:42.281367px;}
.h10{height:43.453125px;}
.h22{height:43.506914px;}
.h9{height:44.820000px;}
.h15{height:45.770625px;}
.h14{height:47.980898px;}
.h1c{height:48.088125px;}
.h20{height:50.800781px;}
.h2{height:52.416000px;}
.h8{height:54.000000px;}
.hd{height:59.439023px;}
.h3{height:61.189805px;}
.h1d{height:63.070312px;}
.hc{height:63.180000px;}
.h4{height:67.824844px;}
.h5{height:71.613281px;}
.h12{height:73.722656px;}
.h6{height:121.536000px;}
.hb{height:163.620000px;}
.h13{height:688.575000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:63.000000px;}
.w11{width:65.160000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.wb{width:159.330000px;}
.wc{width:164.370000px;}
.wf{width:191.370000px;}
.w10{width:196.410000px;}
.we{width:208.830000px;}
.w8{width:220.935000px;}
.wa{width:239.610000px;}
.w12{width:294.150000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xb{left:29.196000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x20{left:103.896000px;}
.x28{left:108.035987px;}
.x1b{left:114.336000px;}
.x11{left:125.850000px;}
.x16{left:132.336000px;}
.x29{left:135.035987px;}
.x10{left:177.150000px;}
.x1a{left:185.969987px;}
.xf{left:196.050000px;}
.xe{left:213.915000px;}
.x12{left:215.175000px;}
.x15{left:216.569987px;}
.x26{left:218.909987px;}
.x6{left:228.270000px;}
.x1f{left:251.489987px;}
.x9{left:285.015000px;}
.x13{left:293.835000px;}
.xc{left:319.935000px;}
.x1c{left:324.075000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xd{left:373.575000px;}
.x21{left:398.775000px;}
.x24{left:446.474987px;}
.xa{left:452.280000px;}
.x1d{left:516.345000px;}
.x18{left:532.725000px;}
.x22{left:558.825000px;}
.x19{left:697.830000px;}
.x27{left:699.809987px;}
.x1e{left:713.490000px;}
.x23{left:723.930000px;}
.x25{left:729.149987px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls0{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.lsb{letter-spacing:4.640000pt;}
.ls13{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.wsb{word-spacing:-30.278400pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.096533pt;}
.ws7{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._1b{margin-left:-6.906240pt;}
._19{margin-left:-5.365120pt;}
._1a{margin-left:-4.118400pt;}
._3{margin-left:-2.952960pt;}
._2{margin-left:-1.920000pt;}
._1{margin-left:-0.928000pt;}
._0{width:1.650347pt;}
._b{width:2.660053pt;}
._12{width:3.790720pt;}
._8{width:4.724053pt;}
._7{width:5.630720pt;}
._9{width:6.799360pt;}
._13{width:7.702400pt;}
._d{width:8.605440pt;}
._10{width:9.827200pt;}
._15{width:11.223893pt;}
._6{width:12.153813pt;}
._c{width:14.198400pt;}
._17{width:15.401173pt;}
._16{width:16.329173pt;}
._f{width:18.004053pt;}
._e{width:19.282560pt;}
._11{width:20.713173pt;}
._18{width:21.908907pt;}
._4{width:28.080213pt;}
._5{width:29.063680pt;}
._a{width:30.409600pt;}
._14{width:35.810560pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:2.880000pt;}
.ye1{bottom:2.906667pt;}
.y18{bottom:3.200000pt;}
.y70{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y6e{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.y5{bottom:12.160000pt;}
.yc{bottom:12.320000pt;}
.yd3{bottom:15.360000pt;}
.y3{bottom:16.160000pt;}
.y6b{bottom:16.960000pt;}
.y6f{bottom:19.840000pt;}
.y17{bottom:21.280000pt;}
.y6d{bottom:22.560000pt;}
.yb{bottom:26.880000pt;}
.y44{bottom:31.840000pt;}
.y1{bottom:32.160000pt;}
.y6a{bottom:32.320000pt;}
.y4{bottom:32.672000pt;}
.y2{bottom:33.792000pt;}
.y16{bottom:35.840000pt;}
.ya{bottom:41.440000pt;}
.y43{bottom:47.200000pt;}
.y69{bottom:47.520000pt;}
.y15{bottom:50.560000pt;}
.y42{bottom:60.320000pt;}
.y68{bottom:62.880000pt;}
.y14{bottom:64.480000pt;}
.y9{bottom:65.306667pt;}
.y13{bottom:73.280000pt;}
.y67{bottom:78.240000pt;}
.y8{bottom:82.746667pt;}
.y41{bottom:86.400000pt;}
.y12{bottom:86.880000pt;}
.y66{bottom:93.600000pt;}
.ya5{bottom:94.112000pt;}
.y71{bottom:97.312000pt;}
.yf7{bottom:98.112000pt;}
.yca{bottom:98.912000pt;}
.y7{bottom:99.066667pt;}
.y40{bottom:99.360000pt;}
.y13e{bottom:100.032000pt;}
.y11{bottom:103.840000pt;}
.y65{bottom:108.960000pt;}
.ya4{bottom:109.312000pt;}
.y6c{bottom:109.632000pt;}
.y3f{bottom:112.320000pt;}
.yf6{bottom:113.312000pt;}
.yc9{bottom:114.272000pt;}
.y13d{bottom:115.392000pt;}
.y10d{bottom:115.552000pt;}
.y64{bottom:124.160000pt;}
.y3e{bottom:125.440000pt;}
.y10{bottom:126.720000pt;}
.yf5{bottom:128.672000pt;}
.yc8{bottom:129.632000pt;}
.y10c{bottom:130.912000pt;}
.y3d{bottom:138.400000pt;}
.y63{bottom:139.520000pt;}
.y13c{bottom:141.306667pt;}
.y1b{bottom:142.266667pt;}
.ya3{bottom:143.386667pt;}
.yf4{bottom:144.026667pt;}
.yc7{bottom:144.986667pt;}
.y10b{bottom:146.266667pt;}
.y3c{bottom:151.520000pt;}
.y62{bottom:154.880000pt;}
.y13b{bottom:156.666667pt;}
.ya2{bottom:158.746667pt;}
.yf3{bottom:159.386667pt;}
.yc6{bottom:160.186667pt;}
.y10a{bottom:161.626667pt;}
.y3b{bottom:164.520000pt;}
.y61{bottom:170.280000pt;}
.y13a{bottom:172.026667pt;}
.ya1{bottom:174.106667pt;}
.y109{bottom:176.986667pt;}
.y3a{bottom:177.480000pt;}
.y60{bottom:185.640000pt;}
.y139{bottom:187.386667pt;}
.ya0{bottom:189.306667pt;}
.y39{bottom:190.600000pt;}
.y108{bottom:192.346667pt;}
.yf2{bottom:193.306667pt;}
.yc5{bottom:194.266667pt;}
.y5f{bottom:201.000000pt;}
.y138{bottom:202.746667pt;}
.y38{bottom:203.560000pt;}
.y9f{bottom:204.666667pt;}
.y107{bottom:207.706667pt;}
.yf1{bottom:208.826667pt;}
.yc4{bottom:209.626667pt;}
.y5e{bottom:216.200000pt;}
.y37{bottom:216.520000pt;}
.y137{bottom:218.106667pt;}
.y9e{bottom:220.026667pt;}
.y106{bottom:222.906667pt;}
.yc3{bottom:224.986667pt;}
.y36{bottom:229.640000pt;}
.y5d{bottom:231.560000pt;}
.y136{bottom:233.306667pt;}
.y9d{bottom:235.386667pt;}
.y105{bottom:238.266667pt;}
.yc2{bottom:240.186667pt;}
.yf0{bottom:240.506667pt;}
.y35{bottom:242.600000pt;}
.y5c{bottom:246.920000pt;}
.y135{bottom:248.666667pt;}
.y9c{bottom:250.746667pt;}
.y104{bottom:253.626667pt;}
.yc1{bottom:255.546667pt;}
.y34{bottom:255.720000pt;}
.yef{bottom:256.506667pt;}
.y5b{bottom:262.280000pt;}
.y134{bottom:264.026667pt;}
.y9b{bottom:266.106667pt;}
.y33{bottom:268.680000pt;}
.y103{bottom:268.986667pt;}
.yc0{bottom:271.066667pt;}
.yee{bottom:272.506667pt;}
.y5a{bottom:277.640000pt;}
.y133{bottom:279.386667pt;}
.y32{bottom:281.640000pt;}
.y102{bottom:284.346667pt;}
.yed{bottom:288.506667pt;}
.y59{bottom:293.000000pt;}
.y132{bottom:294.746667pt;}
.y31{bottom:294.760000pt;}
.y101{bottom:299.586667pt;}
.y9a{bottom:300.066667pt;}
.yec{bottom:304.546667pt;}
.ybf{bottom:305.026667pt;}
.y30{bottom:307.720000pt;}
.y58{bottom:308.200000pt;}
.y131{bottom:310.146667pt;}
.y100{bottom:314.946667pt;}
.y99{bottom:315.426667pt;}
.ybe{bottom:320.226667pt;}
.yeb{bottom:320.546667pt;}
.y2f{bottom:320.680000pt;}
.y57{bottom:323.560000pt;}
.yff{bottom:330.306667pt;}
.y98{bottom:330.786667pt;}
.y2e{bottom:333.800000pt;}
.ybd{bottom:335.586667pt;}
.y130{bottom:336.066667pt;}
.yea{bottom:336.546667pt;}
.y56{bottom:338.920000pt;}
.yfe{bottom:345.666667pt;}
.y97{bottom:345.986667pt;}
.y2d{bottom:346.760000pt;}
.ybc{bottom:350.946667pt;}
.y12f{bottom:351.426667pt;}
.y55{bottom:354.280000pt;}
.ye9{bottom:355.426667pt;}
.y2c{bottom:359.880000pt;}
.yfd{bottom:361.026667pt;}
.y96{bottom:361.506667pt;}
.ybb{bottom:366.306667pt;}
.y12e{bottom:366.786667pt;}
.y54{bottom:369.640000pt;}
.y2b{bottom:372.840000pt;}
.yfc{bottom:376.386667pt;}
.yba{bottom:381.666667pt;}
.y12d{bottom:381.986667pt;}
.y53{bottom:384.840000pt;}
.y2a{bottom:385.800000pt;}
.ye8{bottom:389.346667pt;}
.y95{bottom:395.426667pt;}
.y12c{bottom:397.346667pt;}
.y29{bottom:398.946667pt;}
.yb9{bottom:399.426667pt;}
.y52{bottom:400.226667pt;}
.y169{bottom:403.106667pt;}
.ye7{bottom:404.706667pt;}
.y94{bottom:410.786667pt;}
.y28{bottom:411.906667pt;}
.y12b{bottom:412.706667pt;}
.y51{bottom:415.586667pt;}
.yfb{bottom:416.546667pt;}
.y168{bottom:418.466667pt;}
.y27{bottom:424.866667pt;}
.y93{bottom:425.986667pt;}
.y12a{bottom:428.066667pt;}
.y50{bottom:430.946667pt;}
.yb8{bottom:433.346667pt;}
.y167{bottom:433.826667pt;}
.y26{bottom:437.826667pt;}
.ye6{bottom:438.626667pt;}
.y92{bottom:441.346667pt;}
.y129{bottom:443.426667pt;}
.y4f{bottom:446.306667pt;}
.y166{bottom:449.186667pt;}
.y25{bottom:453.186667pt;}
.y91{bottom:456.706667pt;}
.y4e{bottom:461.666667pt;}
.y165{bottom:464.386667pt;}
.yb7{bottom:467.426667pt;}
.y24{bottom:468.546667pt;}
.y128{bottom:469.346667pt;}
.ye5{bottom:470.466667pt;}
.y90{bottom:472.066667pt;}
.y4d{bottom:476.866667pt;}
.y164{bottom:479.746667pt;}
.y23{bottom:484.386667pt;}
.y127{bottom:484.706667pt;}
.ye4{bottom:486.466667pt;}
.y4c{bottom:492.226667pt;}
.y163{bottom:495.106667pt;}
.y22{bottom:499.906667pt;}
.y126{bottom:500.066667pt;}
.yb6{bottom:501.346667pt;}
.ye3{bottom:502.466667pt;}
.y8f{bottom:505.986667pt;}
.y4b{bottom:507.586667pt;}
.y162{bottom:510.466667pt;}
.y21{bottom:515.266667pt;}
.y125{bottom:515.426667pt;}
.ye2{bottom:518.466667pt;}
.y8e{bottom:521.346667pt;}
.y4a{bottom:522.946667pt;}
.y161{bottom:525.826667pt;}
.y20{bottom:530.786667pt;}
.ye0{bottom:534.466667pt;}
.yb5{bottom:535.426667pt;}
.y8d{bottom:536.733333pt;}
.y49{bottom:538.306667pt;}
.y160{bottom:541.213333pt;}
.y1f{bottom:546.306667pt;}
.ydf{bottom:550.493333pt;}
.y8c{bottom:552.093333pt;}
.y48{bottom:553.666667pt;}
.y15f{bottom:556.413333pt;}
.y124{bottom:556.733333pt;}
.y1e{bottom:561.826667pt;}
.yde{bottom:566.493333pt;}
.y47{bottom:568.866667pt;}
.yb4{bottom:569.373333pt;}
.y15e{bottom:571.773333pt;}
.y123{bottom:572.093333pt;}
.y46{bottom:584.226667pt;}
.ydd{bottom:585.373333pt;}
.y8b{bottom:586.013333pt;}
.y1d{bottom:586.146667pt;}
.y15d{bottom:587.133333pt;}
.y122{bottom:587.453333pt;}
.y45{bottom:599.586667pt;}
.y8a{bottom:601.373333pt;}
.y1c{bottom:601.986667pt;}
.y15c{bottom:602.493333pt;}
.y121{bottom:602.813333pt;}
.yb3{bottom:603.293333pt;}
.y89{bottom:616.733333pt;}
.y15b{bottom:617.853333pt;}
.y120{bottom:618.013333pt;}
.ydc{bottom:619.453333pt;}
.y15a{bottom:633.213333pt;}
.y11f{bottom:633.373333pt;}
.ydb{bottom:634.813333pt;}
.yb2{bottom:637.373333pt;}
.y159{bottom:648.413333pt;}
.y11e{bottom:648.733333pt;}
.y88{bottom:650.653333pt;}
.y158{bottom:663.773333pt;}
.y11d{bottom:664.093333pt;}
.y87{bottom:666.013333pt;}
.yda{bottom:666.493333pt;}
.yb1{bottom:671.293333pt;}
.y157{bottom:679.133333pt;}
.y86{bottom:681.373333pt;}
.yd9{bottom:682.493333pt;}
.y11c{bottom:690.013333pt;}
.y156{bottom:694.493333pt;}
.y85{bottom:696.733333pt;}
.yd8{bottom:698.493333pt;}
.yb0{bottom:705.373333pt;}
.y155{bottom:709.853333pt;}
.y84{bottom:712.093333pt;}
.yd7{bottom:714.493333pt;}
.y11b{bottom:720.733333pt;}
.y154{bottom:725.213333pt;}
.yd6{bottom:730.493333pt;}
.y11a{bottom:736.093333pt;}
.yaf{bottom:739.293333pt;}
.y153{bottom:740.413333pt;}
.yfa{bottom:740.893333pt;}
.y83{bottom:746.013333pt;}
.yd5{bottom:746.493333pt;}
.y19{bottom:754.333333pt;}
.y152{bottom:755.773333pt;}
.yf9{bottom:756.253333pt;}
.y82{bottom:761.373333pt;}
.y119{bottom:762.013333pt;}
.yd4{bottom:762.493333pt;}
.y151{bottom:771.133333pt;}
.yae{bottom:773.373333pt;}
.y81{bottom:776.773333pt;}
.y118{bottom:777.413333pt;}
.yd2{bottom:778.533333pt;}
.yf{bottom:780.613333pt;}
.y150{bottom:786.533333pt;}
.yf8{bottom:789.253333pt;}
.y80{bottom:792.133333pt;}
.y117{bottom:792.773333pt;}
.yd1{bottom:794.533333pt;}
.y14f{bottom:801.893333pt;}
.yad{bottom:807.333333pt;}
.y7f{bottom:807.493333pt;}
.y116{bottom:808.133333pt;}
.ycf{bottom:810.533333pt;}
.y14e{bottom:817.093333pt;}
.yac{bottom:822.693333pt;}
.y115{bottom:823.493333pt;}
.y14d{bottom:832.453333pt;}
.yce{bottom:834.693333pt;}
.yab{bottom:838.053333pt;}
.y114{bottom:838.693333pt;}
.y7e{bottom:841.413333pt;}
.y14c{bottom:847.813333pt;}
.yaa{bottom:853.413333pt;}
.y7d{bottom:856.773333pt;}
.y14b{bottom:863.173333pt;}
.y113{bottom:864.773333pt;}
.ycd{bottom:868.773333pt;}
.y7c{bottom:872.133333pt;}
.y14a{bottom:878.533333pt;}
.y112{bottom:880.133333pt;}
.ycc{bottom:884.133333pt;}
.ya9{bottom:887.333333pt;}
.y7b{bottom:887.493333pt;}
.y149{bottom:893.893333pt;}
.y111{bottom:895.493333pt;}
.ycb{bottom:899.493333pt;}
.y7a{bottom:902.693333pt;}
.y148{bottom:909.093333pt;}
.y110{bottom:910.693333pt;}
.y79{bottom:918.053333pt;}
.y147{bottom:924.453333pt;}
.yd{bottom:926.053333pt;}
.ya8{bottom:933.413333pt;}
.y146{bottom:939.813333pt;}
.y10f{bottom:941.413333pt;}
.y6{bottom:948.453333pt;}
.ya7{bottom:948.773333pt;}
.y78{bottom:952.133333pt;}
.y145{bottom:955.173333pt;}
.ya6{bottom:964.133333pt;}
.y10e{bottom:967.333333pt;}
.y77{bottom:967.493333pt;}
.y144{bottom:970.533333pt;}
.y76{bottom:982.693333pt;}
.y143{bottom:985.893333pt;}
.y75{bottom:998.053333pt;}
.y142{bottom:1001.093333pt;}
.y74{bottom:1013.440000pt;}
.y141{bottom:1016.480000pt;}
.y73{bottom:1028.800000pt;}
.y140{bottom:1031.840000pt;}
.y72{bottom:1044.160000pt;}
.y13f{bottom:1046.560000pt;}
.h1e{height:15.360000pt;}
.h1f{height:15.392000pt;}
.ha{height:22.080000pt;}
.hf{height:25.750000pt;}
.h11{height:26.272000pt;}
.h21{height:29.940625pt;}
.he{height:31.828125pt;}
.h7{height:32.160000pt;}
.h17{height:32.411250pt;}
.h1a{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h19{height:37.090625pt;}
.h18{height:37.479688pt;}
.h16{height:37.583438pt;}
.h10{height:38.625000pt;}
.h22{height:38.672812pt;}
.h9{height:39.840000pt;}
.h15{height:40.685000pt;}
.h14{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h20{height:45.156250pt;}
.h2{height:46.592000pt;}
.h8{height:48.000000pt;}
.hd{height:52.834688pt;}
.h3{height:54.390938pt;}
.h1d{height:56.062500pt;}
.hc{height:56.160000pt;}
.h4{height:60.288750pt;}
.h5{height:63.656250pt;}
.h12{height:65.531250pt;}
.h6{height:108.032000pt;}
.hb{height:145.440000pt;}
.h13{height:612.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:56.000000pt;}
.w11{width:57.920000pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.wb{width:141.626667pt;}
.wc{width:146.106667pt;}
.wf{width:170.106667pt;}
.w10{width:174.586667pt;}
.we{width:185.626667pt;}
.w8{width:196.386667pt;}
.wa{width:212.986667pt;}
.w12{width:261.466667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xb{left:25.952000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x20{left:92.352000pt;}
.x28{left:96.031988pt;}
.x1b{left:101.632000pt;}
.x11{left:111.866667pt;}
.x16{left:117.632000pt;}
.x29{left:120.031988pt;}
.x10{left:157.466667pt;}
.x1a{left:165.306655pt;}
.xf{left:174.266667pt;}
.xe{left:190.146667pt;}
.x12{left:191.266667pt;}
.x15{left:192.506655pt;}
.x26{left:194.586655pt;}
.x6{left:202.906667pt;}
.x1f{left:223.546655pt;}
.x9{left:253.346667pt;}
.x13{left:261.186667pt;}
.xc{left:284.386667pt;}
.x1c{left:288.066667pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xd{left:332.066667pt;}
.x21{left:354.466667pt;}
.x24{left:396.866655pt;}
.xa{left:402.026667pt;}
.x1d{left:458.973333pt;}
.x18{left:473.533333pt;}
.x22{left:496.733333pt;}
.x19{left:620.293333pt;}
.x27{left:622.053322pt;}
.x1e{left:634.213333pt;}
.x23{left:643.493333pt;}
.x25{left:648.133322pt;}
.x3{left:663.013333pt;}
}




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