
    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_ea7f2ccd2c42f4915310634d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2b74c7e07f421b56a93c7f5e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_296bfcc62ac70e0fa5b73c7d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e5fae361ee9f02f9698b5cc2.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_21442c6a01f5013c0be3e5b0.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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_9d14da9dbf251bd87cb8f33c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1892a54e01fd5082c5c19772.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4de6e81984502d92c75e1622.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c0084d4b7eea050dbf2f2de1.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_7966783b4fd82dfc7dffdfcd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f785042d7ef7c10ebb03e7d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_e6b6115320e8064cc22662e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.978027;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_cf5b54b838ee9f69dcdff9c4.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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-2.076000px;}
.ls7{letter-spacing:-1.626000px;}
.lsa{letter-spacing:-0.513600px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.298200px;}
.ls5{letter-spacing:-0.127200px;}
.lse{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.038160px;}
.ls4{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls2{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.312000px;}
.lsb{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.961200px;}
.ws3{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsd{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.252000px;}
.ws7{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws6{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-7.709040px;}
._18{margin-left:-5.896800px;}
._3{margin-left:-4.840560px;}
._2{margin-left:-2.849040px;}
._0{margin-left:-1.026000px;}
._1{width:1.254000px;}
._4{width:2.382000px;}
._13{width:3.407280px;}
._b{width:4.422240px;}
._c{width:5.766240px;}
._10{width:6.875760px;}
._5{width:8.018880px;}
._6{width:9.459600px;}
._12{width:10.577520px;}
._7{width:11.893200px;}
._8{width:13.206960px;}
._e{width:16.922880px;}
._9{width:18.824400px;}
._d{width:20.021520px;}
._15{width:21.392160px;}
._11{width:22.530480px;}
._14{width:23.664960px;}
._a{width:26.414880px;}
._17{width:27.924720px;}
._16{width:29.921280px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y50{bottom:3.960000px;}
.ye{bottom:9.540000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y18{bottom:20.025000px;}
.y2{bottom:20.196000px;}
.y49{bottom:20.520000px;}
.y4f{bottom:22.320000px;}
.y4d{bottom:28.980000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y17{bottom:36.585000px;}
.y48{bottom:37.800000px;}
.y4e{bottom:40.500000px;}
.y4c{bottom:43.560000px;}
.ya{bottom:46.620000px;}
.y16{bottom:52.965000px;}
.y1{bottom:53.820000px;}
.y47{bottom:55.080000px;}
.y15{bottom:69.885000px;}
.y46{bottom:72.405000px;}
.y9{bottom:73.470000px;}
.y14{bottom:88.245000px;}
.y45{bottom:89.505000px;}
.y8{bottom:93.090000px;}
.y12d{bottom:103.176000px;}
.y94{bottom:104.796000px;}
.y13{bottom:106.425000px;}
.y44{bottom:106.785000px;}
.y7{bottom:111.450000px;}
.yda{bottom:113.076000px;}
.yae{bottom:115.056000px;}
.y12c{bottom:120.276000px;}
.y93{bottom:122.076000px;}
.y43{bottom:124.065000px;}
.y12{bottom:125.505000px;}
.y55{bottom:130.176000px;}
.yad{bottom:132.336000px;}
.yd9{bottom:133.416000px;}
.y100{bottom:134.856000px;}
.y12b{bottom:137.556000px;}
.y92{bottom:139.356000px;}
.y42{bottom:141.345000px;}
.yac{bottom:146.376000px;}
.y54{bottom:147.456000px;}
.yd8{bottom:150.510000px;}
.y11{bottom:151.245000px;}
.yff{bottom:152.130000px;}
.y12a{bottom:154.830000px;}
.y91{bottom:156.630000px;}
.y41{bottom:158.625000px;}
.y53{bottom:164.730000px;}
.yd7{bottom:167.790000px;}
.yfe{bottom:169.230000px;}
.y129{bottom:172.110000px;}
.y90{bottom:173.910000px;}
.y10{bottom:175.545000px;}
.y40{bottom:175.725000px;}
.y52{bottom:181.830000px;}
.yd6{bottom:185.070000px;}
.yfd{bottom:186.510000px;}
.y128{bottom:189.390000px;}
.y8f{bottom:191.010000px;}
.y3f{bottom:193.005000px;}
.y51{bottom:199.830000px;}
.yfc{bottom:203.790000px;}
.y127{bottom:206.670000px;}
.y8e{bottom:208.290000px;}
.y3e{bottom:210.285000px;}
.y4b{bottom:214.230000px;}
.yd5{bottom:217.830000px;}
.yfb{bottom:218.550000px;}
.y126{bottom:223.770000px;}
.y8d{bottom:225.570000px;}
.y3d{bottom:227.565000px;}
.yd4{bottom:235.830000px;}
.yfa{bottom:236.550000px;}
.y125{bottom:241.050000px;}
.y8c{bottom:242.850000px;}
.y3c{bottom:244.845000px;}
.yd3{bottom:253.830000px;}
.yf9{bottom:254.550000px;}
.y124{bottom:258.330000px;}
.y8b{bottom:260.130000px;}
.y3b{bottom:262.125000px;}
.y1b{bottom:269.130000px;}
.yd2{bottom:271.830000px;}
.yf8{bottom:272.550000px;}
.y123{bottom:275.610000px;}
.y8a{bottom:277.410000px;}
.y3a{bottom:279.225000px;}
.y2a{bottom:288.945000px;}
.yd1{bottom:289.830000px;}
.yf7{bottom:290.550000px;}
.y122{bottom:292.890000px;}
.y89{bottom:294.510000px;}
.y39{bottom:296.505000px;}
.y29{bottom:304.065000px;}
.yd0{bottom:307.830000px;}
.yf6{bottom:308.550000px;}
.y121{bottom:309.990000px;}
.y88{bottom:311.790000px;}
.y38{bottom:313.785000px;}
.y28{bottom:321.525000px;}
.ycf{bottom:325.830000px;}
.yf5{bottom:326.550000px;}
.y120{bottom:327.270000px;}
.y87{bottom:329.070000px;}
.y37{bottom:331.065000px;}
.y27{bottom:338.835000px;}
.yce{bottom:343.875000px;}
.yf4{bottom:344.595000px;}
.y86{bottom:346.395000px;}
.y36{bottom:348.375000px;}
.y26{bottom:356.295000px;}
.ycd{bottom:361.875000px;}
.y85{bottom:363.675000px;}
.y35{bottom:365.655000px;}
.yf3{bottom:365.835000px;}
.y25{bottom:373.575000px;}
.y11f{bottom:379.155000px;}
.ycc{bottom:379.875000px;}
.y84{bottom:380.775000px;}
.y34{bottom:382.755000px;}
.yf2{bottom:383.115000px;}
.y24{bottom:391.035000px;}
.y11e{bottom:396.435000px;}
.ycb{bottom:397.875000px;}
.y83{bottom:398.055000px;}
.y33{bottom:400.035000px;}
.yf1{bottom:400.395000px;}
.y23{bottom:408.495000px;}
.y11d{bottom:413.535000px;}
.y82{bottom:415.335000px;}
.yca{bottom:415.875000px;}
.y32{bottom:417.315000px;}
.yf0{bottom:417.495000px;}
.y22{bottom:425.775000px;}
.y11c{bottom:430.815000px;}
.yab{bottom:432.435000px;}
.y81{bottom:432.615000px;}
.yc9{bottom:433.875000px;}
.y31{bottom:434.595000px;}
.yef{bottom:434.775000px;}
.y21{bottom:443.235000px;}
.y11b{bottom:448.095000px;}
.y80{bottom:449.895000px;}
.y30{bottom:451.875000px;}
.yee{bottom:452.055000px;}
.yaa{bottom:452.775000px;}
.y20{bottom:460.695000px;}
.y11a{bottom:465.375000px;}
.y7f{bottom:467.175000px;}
.y2f{bottom:468.975000px;}
.yed{bottom:469.335000px;}
.yc8{bottom:469.875000px;}
.ya9{bottom:470.055000px;}
.y1f{bottom:477.975000px;}
.y119{bottom:482.655000px;}
.y7e{bottom:484.275000px;}
.y2e{bottom:486.255000px;}
.yec{bottom:486.615000px;}
.ya8{bottom:487.335000px;}
.yc7{bottom:487.875000px;}
.y1e{bottom:495.615000px;}
.y118{bottom:499.935000px;}
.y7d{bottom:501.555000px;}
.y2d{bottom:503.535000px;}
.yeb{bottom:503.895000px;}
.ya7{bottom:504.615000px;}
.yc6{bottom:505.875000px;}
.y117{bottom:517.035000px;}
.y7c{bottom:518.835000px;}
.ya6{bottom:519.375000px;}
.y2c{bottom:520.815000px;}
.yea{bottom:520.995000px;}
.y1d{bottom:522.975000px;}
.yc5{bottom:523.875000px;}
.y116{bottom:534.315000px;}
.ye9{bottom:535.035000px;}
.y7b{bottom:536.115000px;}
.ya5{bottom:537.375000px;}
.y2b{bottom:538.095000px;}
.y1c{bottom:540.795000px;}
.yc4{bottom:545.115000px;}
.y115{bottom:551.595000px;}
.y7a{bottom:553.395000px;}
.ya4{bottom:555.375000px;}
.yc3{bottom:562.395000px;}
.y114{bottom:568.875000px;}
.y79{bottom:570.675000px;}
.ya3{bottom:573.375000px;}
.yc2{bottom:579.675000px;}
.y113{bottom:586.155000px;}
.y78{bottom:587.775000px;}
.ya2{bottom:591.375000px;}
.yc1{bottom:596.775000px;}
.y112{bottom:603.255000px;}
.y77{bottom:605.085000px;}
.ya1{bottom:609.405000px;}
.yc0{bottom:614.085000px;}
.y111{bottom:620.565000px;}
.y76{bottom:622.365000px;}
.ya0{bottom:627.405000px;}
.ybf{bottom:631.365000px;}
.y110{bottom:637.845000px;}
.y75{bottom:639.645000px;}
.y9f{bottom:645.405000px;}
.ybe{bottom:648.645000px;}
.y10f{bottom:655.125000px;}
.y74{bottom:656.925000px;}
.y9e{bottom:663.405000px;}
.ybd{bottom:665.925000px;}
.y10e{bottom:672.405000px;}
.y73{bottom:674.025000px;}
.y9d{bottom:681.405000px;}
.ybc{bottom:683.025000px;}
.y10d{bottom:689.685000px;}
.y72{bottom:691.305000px;}
.y9c{bottom:699.405000px;}
.ybb{bottom:700.305000px;}
.y10c{bottom:706.785000px;}
.y71{bottom:708.585000px;}
.y9b{bottom:717.405000px;}
.yba{bottom:717.585000px;}
.y10b{bottom:724.065000px;}
.y70{bottom:725.865000px;}
.yb9{bottom:734.865000px;}
.y9a{bottom:735.405000px;}
.y10a{bottom:741.345000px;}
.y6f{bottom:743.145000px;}
.yb8{bottom:749.625000px;}
.y99{bottom:753.405000px;}
.y109{bottom:758.625000px;}
.y6e{bottom:760.425000px;}
.yb7{bottom:767.625000px;}
.y98{bottom:771.405000px;}
.y108{bottom:775.905000px;}
.y6d{bottom:777.525000px;}
.yb6{bottom:785.625000px;}
.y97{bottom:789.405000px;}
.y107{bottom:793.185000px;}
.y6c{bottom:794.805000px;}
.yb5{bottom:803.625000px;}
.ye8{bottom:806.145000px;}
.y96{bottom:807.405000px;}
.y106{bottom:810.285000px;}
.y6b{bottom:812.085000px;}
.y19{bottom:821.265000px;}
.yb4{bottom:821.625000px;}
.ye7{bottom:823.425000px;}
.y95{bottom:825.405000px;}
.y105{bottom:827.565000px;}
.y6a{bottom:829.365000px;}
.yb3{bottom:839.625000px;}
.ye6{bottom:840.525000px;}
.y104{bottom:844.845000px;}
.y69{bottom:846.645000px;}
.yf{bottom:850.785000px;}
.yb2{bottom:857.625000px;}
.ye5{bottom:857.805000px;}
.y103{bottom:862.125000px;}
.y68{bottom:863.925000px;}
.ye4{bottom:875.130000px;}
.yb1{bottom:875.670000px;}
.y67{bottom:881.070000px;}
.ye3{bottom:892.410000px;}
.yb0{bottom:893.670000px;}
.y66{bottom:898.350000px;}
.y102{bottom:901.410000px;}
.ye2{bottom:909.690000px;}
.yaf{bottom:911.670000px;}
.y101{bottom:915.450000px;}
.y65{bottom:915.630000px;}
.ye1{bottom:924.450000px;}
.y64{bottom:932.910000px;}
.ye0{bottom:942.450000px;}
.y63{bottom:950.190000px;}
.ydf{bottom:960.450000px;}
.y62{bottom:967.470000px;}
.yde{bottom:978.450000px;}
.y61{bottom:984.570000px;}
.ydd{bottom:996.450000px;}
.y60{bottom:1001.850000px;}
.ydc{bottom:1014.450000px;}
.y5f{bottom:1019.130000px;}
.ydb{bottom:1032.450000px;}
.y5e{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y5d{bottom:1053.690000px;}
.y6{bottom:1066.830000px;}
.y5c{bottom:1070.790000px;}
.y5b{bottom:1088.070000px;}
.y5a{bottom:1105.350000px;}
.y59{bottom:1122.630000px;}
.y58{bottom:1139.940000px;}
.y57{bottom:1157.220000px;}
.y56{bottom:1174.320000px;}
.h20{height:17.100000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.hb{height:25.020000px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h8{height:36.180000px;}
.h18{height:38.818125px;}
.h1a{height:41.726953px;}
.h19{height:42.164648px;}
.h11{height:43.453125px;}
.h21{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h1f{height:45.549492px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1c{height:48.088125px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h1b{height:54.900000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:190.650000px;}
.h14{height:552.135000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w16{width:108.036000px;}
.w19{width:146.340000px;}
.w18{width:146.556000px;}
.w5{width:151.950000px;}
.w17{width:169.770000px;}
.w15{width:173.010000px;}
.w13{width:184.530000px;}
.w12{width:185.790000px;}
.w11{width:188.310000px;}
.w8{width:223.275000px;}
.w10{width:243.750000px;}
.wc{width:247.530000px;}
.wa{width:247.575000px;}
.wf{width:248.610000px;}
.wb{width:250.050000px;}
.wd{width:250.095000px;}
.we{width:252.615000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w14{width:746.610000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.560000px;}
.x2{left:8.640000px;}
.xf{left:11.340000px;}
.x13{left:12.600000px;}
.x10{left:19.116000px;}
.xc{left:27.216000px;}
.xd{left:56.016000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x2c{left:108.035987px;}
.x2d{left:135.035987px;}
.x2b{left:136.655987px;}
.x1f{left:190.109987px;}
.x25{left:191.729987px;}
.x14{left:194.249987px;}
.xe{left:206.535000px;}
.x11{left:215.175000px;}
.x18{left:218.549987px;}
.x23{left:221.429987px;}
.x6{left:224.850000px;}
.x1b{left:244.649987px;}
.x26{left:246.990000px;}
.x20{left:262.290000px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x15{left:321.555000px;}
.x1a{left:324.075000px;}
.x1c{left:326.595000px;}
.x7{left:348.195000px;}
.x27{left:355.755000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x19{left:446.474987px;}
.x21{left:448.815000px;}
.xa{left:455.700000px;}
.x28{left:526.245000px;}
.x16{left:572.325000px;}
.x1d{left:576.105000px;}
.x22{left:635.325000px;}
.x29{left:673.530000px;}
.x2a{left:685.049987px;}
.x24{left:689.549987px;}
.x17{left:701.969987px;}
.x3{left:745.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.845333pt;}
.ls7{letter-spacing:-1.445333pt;}
.lsa{letter-spacing:-0.456533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.265067pt;}
.ls5{letter-spacing:-0.113067pt;}
.lse{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.033920pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls2{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.277333pt;}
.lsb{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ws4{word-spacing:-19.521067pt;}
.ws3{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsd{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.557333pt;}
.ws7{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws6{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-6.852480pt;}
._18{margin-left:-5.241600pt;}
._3{margin-left:-4.302720pt;}
._2{margin-left:-2.532480pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.114667pt;}
._4{width:2.117333pt;}
._13{width:3.028693pt;}
._b{width:3.930880pt;}
._c{width:5.125547pt;}
._10{width:6.111787pt;}
._5{width:7.127893pt;}
._6{width:8.408533pt;}
._12{width:9.402240pt;}
._7{width:10.571733pt;}
._8{width:11.739520pt;}
._e{width:15.042560pt;}
._9{width:16.732800pt;}
._d{width:17.796907pt;}
._15{width:19.015253pt;}
._11{width:20.027093pt;}
._14{width:21.035520pt;}
._a{width:23.479893pt;}
._17{width:24.821973pt;}
._16{width:26.596693pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y50{bottom:3.520000pt;}
.ye{bottom:8.480000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y18{bottom:17.800000pt;}
.y2{bottom:17.952000pt;}
.y49{bottom:18.240000pt;}
.y4f{bottom:19.840000pt;}
.y4d{bottom:25.760000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y17{bottom:32.520000pt;}
.y48{bottom:33.600000pt;}
.y4e{bottom:36.000000pt;}
.y4c{bottom:38.720000pt;}
.ya{bottom:41.440000pt;}
.y16{bottom:47.080000pt;}
.y1{bottom:47.840000pt;}
.y47{bottom:48.960000pt;}
.y15{bottom:62.120000pt;}
.y46{bottom:64.360000pt;}
.y9{bottom:65.306667pt;}
.y14{bottom:78.440000pt;}
.y45{bottom:79.560000pt;}
.y8{bottom:82.746667pt;}
.y12d{bottom:91.712000pt;}
.y94{bottom:93.152000pt;}
.y13{bottom:94.600000pt;}
.y44{bottom:94.920000pt;}
.y7{bottom:99.066667pt;}
.yda{bottom:100.512000pt;}
.yae{bottom:102.272000pt;}
.y12c{bottom:106.912000pt;}
.y93{bottom:108.512000pt;}
.y43{bottom:110.280000pt;}
.y12{bottom:111.560000pt;}
.y55{bottom:115.712000pt;}
.yad{bottom:117.632000pt;}
.yd9{bottom:118.592000pt;}
.y100{bottom:119.872000pt;}
.y12b{bottom:122.272000pt;}
.y92{bottom:123.872000pt;}
.y42{bottom:125.640000pt;}
.yac{bottom:130.112000pt;}
.y54{bottom:131.072000pt;}
.yd8{bottom:133.786667pt;}
.y11{bottom:134.440000pt;}
.yff{bottom:135.226667pt;}
.y12a{bottom:137.626667pt;}
.y91{bottom:139.226667pt;}
.y41{bottom:141.000000pt;}
.y53{bottom:146.426667pt;}
.yd7{bottom:149.146667pt;}
.yfe{bottom:150.426667pt;}
.y129{bottom:152.986667pt;}
.y90{bottom:154.586667pt;}
.y10{bottom:156.040000pt;}
.y40{bottom:156.200000pt;}
.y52{bottom:161.626667pt;}
.yd6{bottom:164.506667pt;}
.yfd{bottom:165.786667pt;}
.y128{bottom:168.346667pt;}
.y8f{bottom:169.786667pt;}
.y3f{bottom:171.560000pt;}
.y51{bottom:177.626667pt;}
.yfc{bottom:181.146667pt;}
.y127{bottom:183.706667pt;}
.y8e{bottom:185.146667pt;}
.y3e{bottom:186.920000pt;}
.y4b{bottom:190.426667pt;}
.yd5{bottom:193.626667pt;}
.yfb{bottom:194.266667pt;}
.y126{bottom:198.906667pt;}
.y8d{bottom:200.506667pt;}
.y3d{bottom:202.280000pt;}
.yd4{bottom:209.626667pt;}
.yfa{bottom:210.266667pt;}
.y125{bottom:214.266667pt;}
.y8c{bottom:215.866667pt;}
.y3c{bottom:217.640000pt;}
.yd3{bottom:225.626667pt;}
.yf9{bottom:226.266667pt;}
.y124{bottom:229.626667pt;}
.y8b{bottom:231.226667pt;}
.y3b{bottom:233.000000pt;}
.y1b{bottom:239.226667pt;}
.yd2{bottom:241.626667pt;}
.yf8{bottom:242.266667pt;}
.y123{bottom:244.986667pt;}
.y8a{bottom:246.586667pt;}
.y3a{bottom:248.200000pt;}
.y2a{bottom:256.840000pt;}
.yd1{bottom:257.626667pt;}
.yf7{bottom:258.266667pt;}
.y122{bottom:260.346667pt;}
.y89{bottom:261.786667pt;}
.y39{bottom:263.560000pt;}
.y29{bottom:270.280000pt;}
.yd0{bottom:273.626667pt;}
.yf6{bottom:274.266667pt;}
.y121{bottom:275.546667pt;}
.y88{bottom:277.146667pt;}
.y38{bottom:278.920000pt;}
.y28{bottom:285.800000pt;}
.ycf{bottom:289.626667pt;}
.yf5{bottom:290.266667pt;}
.y120{bottom:290.906667pt;}
.y87{bottom:292.506667pt;}
.y37{bottom:294.280000pt;}
.y27{bottom:301.186667pt;}
.yce{bottom:305.666667pt;}
.yf4{bottom:306.306667pt;}
.y86{bottom:307.906667pt;}
.y36{bottom:309.666667pt;}
.y26{bottom:316.706667pt;}
.ycd{bottom:321.666667pt;}
.y85{bottom:323.266667pt;}
.y35{bottom:325.026667pt;}
.yf3{bottom:325.186667pt;}
.y25{bottom:332.066667pt;}
.y11f{bottom:337.026667pt;}
.ycc{bottom:337.666667pt;}
.y84{bottom:338.466667pt;}
.y34{bottom:340.226667pt;}
.yf2{bottom:340.546667pt;}
.y24{bottom:347.586667pt;}
.y11e{bottom:352.386667pt;}
.ycb{bottom:353.666667pt;}
.y83{bottom:353.826667pt;}
.y33{bottom:355.586667pt;}
.yf1{bottom:355.906667pt;}
.y23{bottom:363.106667pt;}
.y11d{bottom:367.586667pt;}
.y82{bottom:369.186667pt;}
.yca{bottom:369.666667pt;}
.y32{bottom:370.946667pt;}
.yf0{bottom:371.106667pt;}
.y22{bottom:378.466667pt;}
.y11c{bottom:382.946667pt;}
.yab{bottom:384.386667pt;}
.y81{bottom:384.546667pt;}
.yc9{bottom:385.666667pt;}
.y31{bottom:386.306667pt;}
.yef{bottom:386.466667pt;}
.y21{bottom:393.986667pt;}
.y11b{bottom:398.306667pt;}
.y80{bottom:399.906667pt;}
.y30{bottom:401.666667pt;}
.yee{bottom:401.826667pt;}
.yaa{bottom:402.466667pt;}
.y20{bottom:409.506667pt;}
.y11a{bottom:413.666667pt;}
.y7f{bottom:415.266667pt;}
.y2f{bottom:416.866667pt;}
.yed{bottom:417.186667pt;}
.yc8{bottom:417.666667pt;}
.ya9{bottom:417.826667pt;}
.y1f{bottom:424.866667pt;}
.y119{bottom:429.026667pt;}
.y7e{bottom:430.466667pt;}
.y2e{bottom:432.226667pt;}
.yec{bottom:432.546667pt;}
.ya8{bottom:433.186667pt;}
.yc7{bottom:433.666667pt;}
.y1e{bottom:440.546667pt;}
.y118{bottom:444.386667pt;}
.y7d{bottom:445.826667pt;}
.y2d{bottom:447.586667pt;}
.yeb{bottom:447.906667pt;}
.ya7{bottom:448.546667pt;}
.yc6{bottom:449.666667pt;}
.y117{bottom:459.586667pt;}
.y7c{bottom:461.186667pt;}
.ya6{bottom:461.666667pt;}
.y2c{bottom:462.946667pt;}
.yea{bottom:463.106667pt;}
.y1d{bottom:464.866667pt;}
.yc5{bottom:465.666667pt;}
.y116{bottom:474.946667pt;}
.ye9{bottom:475.586667pt;}
.y7b{bottom:476.546667pt;}
.ya5{bottom:477.666667pt;}
.y2b{bottom:478.306667pt;}
.y1c{bottom:480.706667pt;}
.yc4{bottom:484.546667pt;}
.y115{bottom:490.306667pt;}
.y7a{bottom:491.906667pt;}
.ya4{bottom:493.666667pt;}
.yc3{bottom:499.906667pt;}
.y114{bottom:505.666667pt;}
.y79{bottom:507.266667pt;}
.ya3{bottom:509.666667pt;}
.yc2{bottom:515.266667pt;}
.y113{bottom:521.026667pt;}
.y78{bottom:522.466667pt;}
.ya2{bottom:525.666667pt;}
.yc1{bottom:530.466667pt;}
.y112{bottom:536.226667pt;}
.y77{bottom:537.853333pt;}
.ya1{bottom:541.693333pt;}
.yc0{bottom:545.853333pt;}
.y111{bottom:551.613333pt;}
.y76{bottom:553.213333pt;}
.ya0{bottom:557.693333pt;}
.ybf{bottom:561.213333pt;}
.y110{bottom:566.973333pt;}
.y75{bottom:568.573333pt;}
.y9f{bottom:573.693333pt;}
.ybe{bottom:576.573333pt;}
.y10f{bottom:582.333333pt;}
.y74{bottom:583.933333pt;}
.y9e{bottom:589.693333pt;}
.ybd{bottom:591.933333pt;}
.y10e{bottom:597.693333pt;}
.y73{bottom:599.133333pt;}
.y9d{bottom:605.693333pt;}
.ybc{bottom:607.133333pt;}
.y10d{bottom:613.053333pt;}
.y72{bottom:614.493333pt;}
.y9c{bottom:621.693333pt;}
.ybb{bottom:622.493333pt;}
.y10c{bottom:628.253333pt;}
.y71{bottom:629.853333pt;}
.y9b{bottom:637.693333pt;}
.yba{bottom:637.853333pt;}
.y10b{bottom:643.613333pt;}
.y70{bottom:645.213333pt;}
.yb9{bottom:653.213333pt;}
.y9a{bottom:653.693333pt;}
.y10a{bottom:658.973333pt;}
.y6f{bottom:660.573333pt;}
.yb8{bottom:666.333333pt;}
.y99{bottom:669.693333pt;}
.y109{bottom:674.333333pt;}
.y6e{bottom:675.933333pt;}
.yb7{bottom:682.333333pt;}
.y98{bottom:685.693333pt;}
.y108{bottom:689.693333pt;}
.y6d{bottom:691.133333pt;}
.yb6{bottom:698.333333pt;}
.y97{bottom:701.693333pt;}
.y107{bottom:705.053333pt;}
.y6c{bottom:706.493333pt;}
.yb5{bottom:714.333333pt;}
.ye8{bottom:716.573333pt;}
.y96{bottom:717.693333pt;}
.y106{bottom:720.253333pt;}
.y6b{bottom:721.853333pt;}
.y19{bottom:730.013333pt;}
.yb4{bottom:730.333333pt;}
.ye7{bottom:731.933333pt;}
.y95{bottom:733.693333pt;}
.y105{bottom:735.613333pt;}
.y6a{bottom:737.213333pt;}
.yb3{bottom:746.333333pt;}
.ye6{bottom:747.133333pt;}
.y104{bottom:750.973333pt;}
.y69{bottom:752.573333pt;}
.yf{bottom:756.253333pt;}
.yb2{bottom:762.333333pt;}
.ye5{bottom:762.493333pt;}
.y103{bottom:766.333333pt;}
.y68{bottom:767.933333pt;}
.ye4{bottom:777.893333pt;}
.yb1{bottom:778.373333pt;}
.y67{bottom:783.173333pt;}
.ye3{bottom:793.253333pt;}
.yb0{bottom:794.373333pt;}
.y66{bottom:798.533333pt;}
.y102{bottom:801.253333pt;}
.ye2{bottom:808.613333pt;}
.yaf{bottom:810.373333pt;}
.y101{bottom:813.733333pt;}
.y65{bottom:813.893333pt;}
.ye1{bottom:821.733333pt;}
.y64{bottom:829.253333pt;}
.ye0{bottom:837.733333pt;}
.y63{bottom:844.613333pt;}
.ydf{bottom:853.733333pt;}
.y62{bottom:859.973333pt;}
.yde{bottom:869.733333pt;}
.y61{bottom:875.173333pt;}
.ydd{bottom:885.733333pt;}
.y60{bottom:890.533333pt;}
.ydc{bottom:901.733333pt;}
.y5f{bottom:905.893333pt;}
.ydb{bottom:917.733333pt;}
.y5e{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y5d{bottom:936.613333pt;}
.y6{bottom:948.293333pt;}
.y5c{bottom:951.813333pt;}
.y5b{bottom:967.173333pt;}
.y5a{bottom:982.533333pt;}
.y59{bottom:997.893333pt;}
.y58{bottom:1013.280000pt;}
.y57{bottom:1028.640000pt;}
.y56{bottom:1043.840000pt;}
.h20{height:15.200000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.hb{height:22.240000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h8{height:32.160000pt;}
.h18{height:34.505000pt;}
.h1a{height:37.090625pt;}
.h19{height:37.479688pt;}
.h11{height:38.625000pt;}
.h21{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h1f{height:40.488438pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1c{height:42.745000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h1b{height:48.800000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:169.466667pt;}
.h14{height:490.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w16{width:96.032000pt;}
.w19{width:130.080000pt;}
.w18{width:130.272000pt;}
.w5{width:135.066667pt;}
.w17{width:150.906667pt;}
.w15{width:153.786667pt;}
.w13{width:164.026667pt;}
.w12{width:165.146667pt;}
.w11{width:167.386667pt;}
.w8{width:198.466667pt;}
.w10{width:216.666667pt;}
.wc{width:220.026667pt;}
.wa{width:220.066667pt;}
.wf{width:220.986667pt;}
.wb{width:222.266667pt;}
.wd{width:222.306667pt;}
.we{width:224.546667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w14{width:663.653333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.720000pt;}
.x2{left:7.680000pt;}
.xf{left:10.080000pt;}
.x13{left:11.200000pt;}
.x10{left:16.992000pt;}
.xc{left:24.192000pt;}
.xd{left:49.792000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x2c{left:96.031988pt;}
.x2d{left:120.031988pt;}
.x2b{left:121.471988pt;}
.x1f{left:168.986655pt;}
.x25{left:170.426655pt;}
.x14{left:172.666655pt;}
.xe{left:183.586667pt;}
.x11{left:191.266667pt;}
.x18{left:194.266655pt;}
.x23{left:196.826655pt;}
.x6{left:199.866667pt;}
.x1b{left:217.466655pt;}
.x26{left:219.546667pt;}
.x20{left:233.146667pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x15{left:285.826667pt;}
.x1a{left:288.066667pt;}
.x1c{left:290.306667pt;}
.x7{left:309.506667pt;}
.x27{left:316.226667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x19{left:396.866655pt;}
.x21{left:398.946667pt;}
.xa{left:405.066667pt;}
.x28{left:467.773333pt;}
.x16{left:508.733333pt;}
.x1d{left:512.093333pt;}
.x22{left:564.733333pt;}
.x29{left:598.693333pt;}
.x2a{left:608.933322pt;}
.x24{left:612.933322pt;}
.x17{left:623.973322pt;}
.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; }
  