
    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_a8bcf3f6a29ff757475b589f.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_c66083cfe0d0570f1ad6d931.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_7ce32d66d549b590a584696a.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_949dcf31a36f7ee51858ce8d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fb74e1cb77e9c9fd92454c45.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_af7569fd41f3966256a845f4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3a081e6588d88ff3072d3208.woff')format("woff");}.ff8{font-family:ff8;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;}
.m4{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls18{letter-spacing:-2.232000px;}
.ls19{letter-spacing:-1.584000px;}
.ls15{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.224000px;}
.ls16{letter-spacing:-1.152000px;}
.ls6{letter-spacing:-1.008000px;}
.ls14{letter-spacing:-0.936000px;}
.lsd{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.147600px;}
.ls1d{letter-spacing:0.196800px;}
.lse{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.562800px;}
.ls13{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.792000px;}
.lsb{letter-spacing:0.864000px;}
.ls9{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.ls2{letter-spacing:7.200000px;}
.ls3{letter-spacing:12.240000px;}
.ls1c{letter-spacing:33.264000px;}
.ls1b{letter-spacing:33.984000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.ws0{word-spacing:-21.420000px;}
.ws6{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.864000px;}
.ws19{word-spacing:-18.792000px;}
.ws10{word-spacing:-18.720000px;}
.wse{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws4{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws5{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.568000px;}
.wsc{word-spacing:-17.280000px;}
.ws11{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.992000px;}
.ws16{word-spacing:-16.848000px;}
.ws17{word-spacing:-16.776000px;}
.ws12{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.416000px;}
.ws14{word-spacing:-15.768000px;}
.wsf{word-spacing:-14.940000px;}
.ws3{word-spacing:-12.420000px;}
.ws1{word-spacing:-11.700000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-3.903840px;}
._3{margin-left:-2.695200px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._c{width:2.304000px;}
._4{width:4.080000px;}
._5{width:5.388000px;}
._d{width:6.516000px;}
._6{width:7.548000px;}
._12{width:9.072000px;}
._13{width:10.080000px;}
._7{width:11.712000px;}
._8{width:12.852000px;}
._11{width:14.616000px;}
._a{width:15.624000px;}
._b{width:16.704000px;}
._19{width:19.080000px;}
._1c{width:20.208000px;}
._e{width:21.288000px;}
._9{width:23.040000px;}
._10{width:24.120000px;}
._f{width:25.416000px;}
._14{width:26.784000px;}
._15{width:27.864000px;}
._1b{width:29.484000px;}
._1a{width:31.032000px;}
._18{width:33.852000px;}
._17{width:34.920000px;}
._20{width:36.696000px;}
._21{width:38.280000px;}
._1d{width:41.832000px;}
._16{width:49.824000px;}
._1e{width:168.732000px;}
._1f{width:200.671200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.960000px;}
.y10b{bottom:14.220000px;}
.ye8{bottom:14.400000px;}
.y8e{bottom:14.565000px;}
.y105{bottom:14.572500px;}
.yf6{bottom:14.580000px;}
.y90{bottom:14.745000px;}
.y93{bottom:14.752500px;}
.y95{bottom:14.760000px;}
.ybb{bottom:23.400000px;}
.ye7{bottom:45.360000px;}
.yfb{bottom:45.570000px;}
.y100{bottom:45.705000px;}
.y104{bottom:45.706500px;}
.yf2{bottom:45.720000px;}
.yef{bottom:45.750000px;}
.yfa{bottom:48.990000px;}
.y103{bottom:49.126500px;}
.yf1{bottom:49.140000px;}
.y6{bottom:53.640000px;}
.y101{bottom:66.405000px;}
.yec{bottom:66.450000px;}
.yf8{bottom:66.600000px;}
.y107{bottom:71.460000px;}
.y134{bottom:72.360000px;}
.y14a{bottom:72.900000px;}
.y5{bottom:73.080000px;}
.ydd{bottom:73.800000px;}
.ye6{bottom:76.500000px;}
.yff{bottom:76.665000px;}
.yf5{bottom:76.680000px;}
.yee{bottom:76.890000px;}
.yeb{bottom:97.410000px;}
.yfd{bottom:97.545000px;}
.yf7{bottom:97.560000px;}
.ye9{bottom:98.100000px;}
.y133{bottom:103.500000px;}
.y149{bottom:103.860000px;}
.ydc{bottom:104.940000px;}
.y106{bottom:105.660000px;}
.ye5{bottom:107.460000px;}
.yf4{bottom:107.640000px;}
.yfe{bottom:107.805000px;}
.yed{bottom:107.850000px;}
.y92{bottom:119.563500px;}
.yb3{bottom:124.596000px;}
.y102{bottom:129.283500px;}
.y26{bottom:129.996000px;}
.y45{bottom:134.136000px;}
.y132{bottom:134.496000px;}
.y148{bottom:134.856000px;}
.ydb{bottom:135.936000px;}
.y5f{bottom:138.276000px;}
.y91{bottom:152.505000px;}
.yb2{bottom:155.550000px;}
.y25{bottom:160.950000px;}
.y131{bottom:165.630000px;}
.y44{bottom:165.990000px;}
.yda{bottom:167.070000px;}
.y5e{bottom:169.230000px;}
.y8f{bottom:185.445000px;}
.yb1{bottom:186.690000px;}
.y24{bottom:192.090000px;}
.yfc{bottom:195.525000px;}
.y130{bottom:196.590000px;}
.y43{bottom:196.950000px;}
.yd9{bottom:198.570000px;}
.y5d{bottom:200.370000px;}
.y8d{bottom:218.385000px;}
.yb0{bottom:219.990000px;}
.y23{bottom:223.050000px;}
.y12f{bottom:227.370000px;}
.y42{bottom:228.090000px;}
.yd8{bottom:229.530000px;}
.y5c{bottom:230.970000px;}
.y75{bottom:237.450000px;}
.yaf{bottom:251.490000px;}
.y22{bottom:254.190000px;}
.y12e{bottom:258.870000px;}
.y147{bottom:259.050000px;}
.y41{bottom:259.230000px;}
.yd7{bottom:260.670000px;}
.y5b{bottom:262.110000px;}
.y8c{bottom:267.510000px;}
.y74{bottom:268.410000px;}
.yae{bottom:283.350000px;}
.y21{bottom:285.150000px;}
.y40{bottom:290.190000px;}
.y12d{bottom:290.550000px;}
.yd6{bottom:291.630000px;}
.y5a{bottom:293.430000px;}
.y8b{bottom:298.650000px;}
.y73{bottom:299.550000px;}
.yad{bottom:314.310000px;}
.y20{bottom:316.290000px;}
.y146{bottom:321.150000px;}
.y3f{bottom:321.330000px;}
.y12c{bottom:321.690000px;}
.yd5{bottom:322.770000px;}
.yf9{bottom:323.865000px;}
.y59{bottom:324.930000px;}
.y8a{bottom:329.970000px;}
.y72{bottom:330.510000px;}
.yac{bottom:345.630000px;}
.y1f{bottom:347.250000px;}
.y3e{bottom:352.290000px;}
.yd4{bottom:353.370000px;}
.y58{bottom:355.890000px;}
.y158{bottom:356.430000px;}
.y89{bottom:361.110000px;}
.y71{bottom:361.290000px;}
.yab{bottom:376.635000px;}
.y1e{bottom:378.435000px;}
.y3d{bottom:383.475000px;}
.y12b{bottom:383.655000px;}
.yd3{bottom:384.915000px;}
.y57{bottom:387.075000px;}
.y157{bottom:387.435000px;}
.yf3{bottom:390.135000px;}
.y88{bottom:392.115000px;}
.y70{bottom:392.295000px;}
.yaa{bottom:407.775000px;}
.y1d{bottom:409.395000px;}
.y3c{bottom:414.435000px;}
.y12a{bottom:415.695000px;}
.yd2{bottom:416.415000px;}
.y56{bottom:418.035000px;}
.y156{bottom:418.575000px;}
.y87{bottom:423.255000px;}
.y6f{bottom:423.615000px;}
.ya9{bottom:438.375000px;}
.y1c{bottom:440.535000px;}
.y3b{bottom:445.215000px;}
.y145{bottom:445.575000px;}
.y129{bottom:446.655000px;}
.yd1{bottom:447.555000px;}
.y55{bottom:449.175000px;}
.y155{bottom:449.535000px;}
.y86{bottom:454.215000px;}
.y6e{bottom:454.935000px;}
.ya8{bottom:469.875000px;}
.y1b{bottom:471.495000px;}
.y144{bottom:476.175000px;}
.y3a{bottom:476.535000px;}
.y128{bottom:477.435000px;}
.yd0{bottom:478.155000px;}
.y54{bottom:480.135000px;}
.y154{bottom:480.675000px;}
.y85{bottom:485.355000px;}
.y6d{bottom:486.075000px;}
.ya7{bottom:501.555000px;}
.y1a{bottom:502.635000px;}
.y143{bottom:507.675000px;}
.y39{bottom:508.395000px;}
.y127{bottom:508.935000px;}
.ycf{bottom:509.475000px;}
.y53{bottom:511.275000px;}
.y153{bottom:511.635000px;}
.y84{bottom:516.315000px;}
.y6c{bottom:517.035000px;}
.yf0{bottom:518.475000px;}
.ya6{bottom:532.695000px;}
.y19{bottom:533.595000px;}
.y142{bottom:538.635000px;}
.y38{bottom:539.355000px;}
.y117{bottom:540.255000px;}
.y126{bottom:540.615000px;}
.yce{bottom:541.155000px;}
.y152{bottom:542.775000px;}
.y83{bottom:547.455000px;}
.y6b{bottom:548.175000px;}
.y52{bottom:548.355000px;}
.ya5{bottom:563.655000px;}
.y18{bottom:564.735000px;}
.y141{bottom:569.775000px;}
.y37{bottom:570.495000px;}
.y116{bottom:571.395000px;}
.y125{bottom:571.575000px;}
.ycd{bottom:572.115000px;}
.y151{bottom:573.735000px;}
.y82{bottom:578.055000px;}
.y51{bottom:579.315000px;}
.y6a{bottom:579.675000px;}
.yea{bottom:584.715000px;}
.ya4{bottom:594.975000px;}
.y17{bottom:595.695000px;}
.y140{bottom:600.735000px;}
.y36{bottom:601.455000px;}
.y115{bottom:602.355000px;}
.y124{bottom:603.075000px;}
.ycc{bottom:603.255000px;}
.y150{bottom:604.875000px;}
.y81{bottom:609.195000px;}
.y50{bottom:610.455000px;}
.y69{bottom:610.635000px;}
.ya3{bottom:625.965000px;}
.y16{bottom:626.865000px;}
.y13f{bottom:631.905000px;}
.y35{bottom:632.625000px;}
.y114{bottom:633.165000px;}
.y123{bottom:634.065000px;}
.ycb{bottom:634.245000px;}
.y14f{bottom:635.865000px;}
.y80{bottom:640.905000px;}
.y4f{bottom:641.445000px;}
.y68{bottom:641.805000px;}
.ya2{bottom:657.105000px;}
.y15{bottom:657.825000px;}
.y13e{bottom:662.505000px;}
.y34{bottom:663.585000px;}
.y113{bottom:664.665000px;}
.y122{bottom:665.205000px;}
.yca{bottom:665.385000px;}
.y4e{bottom:672.045000px;}
.y67{bottom:672.765000px;}
.y14e{bottom:672.945000px;}
.ya1{bottom:688.425000px;}
.y14{bottom:688.965000px;}
.y13d{bottom:694.005000px;}
.y33{bottom:694.725000px;}
.y121{bottom:696.165000px;}
.yc9{bottom:696.345000px;}
.y112{bottom:702.105000px;}
.y7f{bottom:703.005000px;}
.y4d{bottom:703.545000px;}
.y66{bottom:703.905000px;}
.ye4{bottom:712.905000px;}
.ya0{bottom:719.205000px;}
.y13{bottom:719.925000px;}
.y32{bottom:725.685000px;}
.y120{bottom:726.945000px;}
.yc8{bottom:727.125000px;}
.y111{bottom:733.245000px;}
.y7e{bottom:734.145000px;}
.y65{bottom:734.865000px;}
.y4c{bottom:735.045000px;}
.y9f{bottom:750.705000px;}
.y12{bottom:751.065000px;}
.y31{bottom:756.825000px;}
.y110{bottom:757.185000px;}
.y11f{bottom:758.265000px;}
.yc7{bottom:758.625000px;}
.y7d{bottom:765.285000px;}
.y64{bottom:766.005000px;}
.y4b{bottom:766.185000px;}
.y11{bottom:781.665000px;}
.y9e{bottom:782.205000px;}
.y30{bottom:787.785000px;}
.yc6{bottom:790.125000px;}
.y10f{bottom:792.285000px;}
.yba{bottom:796.425000px;}
.y7c{bottom:796.605000px;}
.y63{bottom:796.965000px;}
.y4a{bottom:797.145000px;}
.y10{bottom:802.725000px;}
.y9d{bottom:813.165000px;}
.y2f{bottom:818.565000px;}
.y13c{bottom:818.925000px;}
.y11e{bottom:821.085000px;}
.yc5{bottom:821.265000px;}
.yb9{bottom:827.385000px;}
.y7b{bottom:827.565000px;}
.y62{bottom:828.105000px;}
.y49{bottom:828.285000px;}
.yf{bottom:839.985000px;}
.y9c{bottom:844.305000px;}
.y13b{bottom:849.885000px;}
.yc4{bottom:851.865000px;}
.ye3{bottom:852.225000px;}
.y2e{bottom:852.405000px;}
.yb8{bottom:858.525000px;}
.y61{bottom:858.705000px;}
.y48{bottom:858.885000px;}
.y14d{bottom:859.245000px;}
.y10e{bottom:862.665000px;}
.y9b{bottom:875.265000px;}
.ye{bottom:879.270000px;}
.y13a{bottom:880.710000px;}
.yc3{bottom:883.410000px;}
.y11d{bottom:883.590000px;}
.ye2{bottom:883.770000px;}
.yb7{bottom:889.530000px;}
.y7a{bottom:889.710000px;}
.y60{bottom:889.890000px;}
.y14c{bottom:890.250000px;}
.y2d{bottom:890.430000px;}
.y10d{bottom:897.810000px;}
.y9a{bottom:906.450000px;}
.yd{bottom:914.190000px;}
.ye1{bottom:914.730000px;}
.yc2{bottom:915.090000px;}
.y139{bottom:918.330000px;}
.ye0{bottom:920.490000px;}
.yb6{bottom:920.670000px;}
.y79{bottom:920.850000px;}
.y2c{bottom:921.390000px;}
.y10c{bottom:932.910000px;}
.y99{bottom:937.230000px;}
.y11c{bottom:945.690000px;}
.yc1{bottom:946.230000px;}
.y138{bottom:949.470000px;}
.yb5{bottom:951.270000px;}
.y78{bottom:952.170000px;}
.y14b{bottom:952.350000px;}
.y2b{bottom:952.530000px;}
.yc{bottom:953.430000px;}
.yb{bottom:966.030000px;}
.y10a{bottom:968.010000px;}
.y98{bottom:971.250000px;}
.y11b{bottom:976.470000px;}
.yc0{bottom:977.190000px;}
.y137{bottom:980.430000px;}
.ydf{bottom:982.590000px;}
.y77{bottom:982.770000px;}
.y2a{bottom:983.490000px;}
.ya{bottom:989.070000px;}
.y97{bottom:994.290000px;}
.y11a{bottom:1007.790000px;}
.ybf{bottom:1008.330000px;}
.y9{bottom:1009.590000px;}
.y136{bottom:1011.210000px;}
.y76{bottom:1013.910000px;}
.y109{bottom:1014.090000px;}
.y29{bottom:1014.270000px;}
.yb4{bottom:1014.450000px;}
.y47{bottom:1014.630000px;}
.y96{bottom:1027.230000px;}
.y8{bottom:1031.550000px;}
.ybe{bottom:1039.290000px;}
.y119{bottom:1039.650000px;}
.y108{bottom:1045.230000px;}
.yde{bottom:1045.410000px;}
.y28{bottom:1045.590000px;}
.y94{bottom:1060.170000px;}
.y7{bottom:1062.870000px;}
.ybd{bottom:1070.070000px;}
.y118{bottom:1070.790000px;}
.y46{bottom:1076.370000px;}
.y135{bottom:1076.550000px;}
.y27{bottom:1076.730000px;}
.y4{bottom:1097.070000px;}
.y3{bottom:1116.150000px;}
.y2{bottom:1137.240000px;}
.y1{bottom:1157.580000px;}
.hc{height:30.945000px;}
.hd{height:32.925000px;}
.he{height:32.932500px;}
.h17{height:34.365000px;}
.h1a{height:34.380000px;}
.h18{height:34.402500px;}
.h19{height:34.560000px;}
.h9{height:41.493516px;}
.h7{height:47.344922px;}
.h10{height:50.273438px;}
.hf{height:58.651172px;}
.ha{height:61.423863px;}
.h4{height:65.010937px;}
.h15{height:65.361000px;}
.h13{height:65.505000px;}
.h16{height:65.512500px;}
.hb{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h1b{height:74.004654px;}
.h8{height:74.953125px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h11{height:124.200000px;}
.h12{height:127.470000px;}
.h14{height:127.605000px;}
.h1{height:1263.750000px;}
.h0{height:1263.780000px;}
.wa{width:51.285000px;}
.wc{width:72.034500px;}
.wb{width:87.285000px;}
.w5{width:102.094500px;}
.w9{width:104.421000px;}
.wd{width:111.405000px;}
.we{width:111.621000px;}
.w10{width:111.765000px;}
.wf{width:111.816000px;}
.w7{width:115.200000px;}
.w11{width:115.590000px;}
.w6{width:121.161000px;}
.w8{width:133.596000px;}
.w3{width:138.060000px;}
.w2{width:185.419500px;}
.w4{width:314.895000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x15{left:2.340000px;}
.x13{left:3.769500px;}
.x30{left:7.740000px;}
.x2a{left:10.080000px;}
.x26{left:11.554500px;}
.x28{left:13.305000px;}
.x2f{left:14.580000px;}
.x25{left:87.841500px;}
.x1e{left:95.616000px;}
.x20{left:106.236000px;}
.x4{left:108.036000px;}
.x24{left:113.616000px;}
.x12{left:115.426500px;}
.xe{left:118.656000px;}
.x1a{left:120.996000px;}
.x21{left:124.416000px;}
.x19{left:126.936000px;}
.x18{left:131.976000px;}
.x22{left:133.056000px;}
.x17{left:136.836000px;}
.xa{left:138.096000px;}
.xc{left:140.256000px;}
.x36{left:143.496000px;}
.xf{left:145.656000px;}
.x7{left:148.356000px;}
.x10{left:152.490000px;}
.x23{left:160.230000px;}
.x11{left:172.650000px;}
.x27{left:190.845000px;}
.xd{left:203.430000px;}
.xb{left:223.950000px;}
.x2{left:225.390000px;}
.x3{left:248.610000px;}
.x6{left:251.310000px;}
.x1c{left:269.490000px;}
.x31{left:272.745000px;}
.x1d{left:292.755000px;}
.x14{left:300.855000px;}
.x29{left:312.735000px;}
.x1{left:351.255000px;}
.x32{left:385.095000px;}
.x1b{left:395.355000px;}
.x2b{left:428.655000px;}
.x8{left:431.175000px;}
.x5{left:433.515000px;}
.x16{left:438.915000px;}
.x9{left:447.015000px;}
.x1f{left:449.355000px;}
.x33{left:497.640000px;}
.x2c{left:562.980000px;}
.x34{left:610.140000px;}
.x2d{left:668.130000px;}
.x2e{left:720.150000px;}
.x35{left:722.490000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls18{letter-spacing:-1.984000pt;}
.ls19{letter-spacing:-1.408000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.088000pt;}
.ls16{letter-spacing:-1.024000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls14{letter-spacing:-0.832000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.131200pt;}
.ls1d{letter-spacing:0.174933pt;}
.lse{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.500267pt;}
.ls13{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.704000pt;}
.lsb{letter-spacing:0.768000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.ls2{letter-spacing:6.400000pt;}
.ls3{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:29.568000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls0{letter-spacing:600.480000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws6{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws19{word-spacing:-16.704000pt;}
.ws10{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.616000pt;}
.wsc{word-spacing:-15.360000pt;}
.ws11{word-spacing:-15.168000pt;}
.ws2{word-spacing:-15.104000pt;}
.ws16{word-spacing:-14.976000pt;}
.ws17{word-spacing:-14.912000pt;}
.ws12{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.592000pt;}
.ws14{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.280000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-3.470080pt;}
._3{margin-left:-2.395733pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._c{width:2.048000pt;}
._4{width:3.626667pt;}
._5{width:4.789333pt;}
._d{width:5.792000pt;}
._6{width:6.709333pt;}
._12{width:8.064000pt;}
._13{width:8.960000pt;}
._7{width:10.410667pt;}
._8{width:11.424000pt;}
._11{width:12.992000pt;}
._a{width:13.888000pt;}
._b{width:14.848000pt;}
._19{width:16.960000pt;}
._1c{width:17.962667pt;}
._e{width:18.922667pt;}
._9{width:20.480000pt;}
._10{width:21.440000pt;}
._f{width:22.592000pt;}
._14{width:23.808000pt;}
._15{width:24.768000pt;}
._1b{width:26.208000pt;}
._1a{width:27.584000pt;}
._18{width:30.090667pt;}
._17{width:31.040000pt;}
._20{width:32.618667pt;}
._21{width:34.026667pt;}
._1d{width:37.184000pt;}
._16{width:44.288000pt;}
._1e{width:149.984000pt;}
._1f{width:178.374400pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:3.520000pt;}
.y10b{bottom:12.640000pt;}
.ye8{bottom:12.800000pt;}
.y8e{bottom:12.946667pt;}
.y105{bottom:12.953333pt;}
.yf6{bottom:12.960000pt;}
.y90{bottom:13.106667pt;}
.y93{bottom:13.113333pt;}
.y95{bottom:13.120000pt;}
.ybb{bottom:20.800000pt;}
.ye7{bottom:40.320000pt;}
.yfb{bottom:40.506667pt;}
.y100{bottom:40.626667pt;}
.y104{bottom:40.628000pt;}
.yf2{bottom:40.640000pt;}
.yef{bottom:40.666667pt;}
.yfa{bottom:43.546667pt;}
.y103{bottom:43.668000pt;}
.yf1{bottom:43.680000pt;}
.y6{bottom:47.680000pt;}
.y101{bottom:59.026667pt;}
.yec{bottom:59.066667pt;}
.yf8{bottom:59.200000pt;}
.y107{bottom:63.520000pt;}
.y134{bottom:64.320000pt;}
.y14a{bottom:64.800000pt;}
.y5{bottom:64.960000pt;}
.ydd{bottom:65.600000pt;}
.ye6{bottom:68.000000pt;}
.yff{bottom:68.146667pt;}
.yf5{bottom:68.160000pt;}
.yee{bottom:68.346667pt;}
.yeb{bottom:86.586667pt;}
.yfd{bottom:86.706667pt;}
.yf7{bottom:86.720000pt;}
.ye9{bottom:87.200000pt;}
.y133{bottom:92.000000pt;}
.y149{bottom:92.320000pt;}
.ydc{bottom:93.280000pt;}
.y106{bottom:93.920000pt;}
.ye5{bottom:95.520000pt;}
.yf4{bottom:95.680000pt;}
.yfe{bottom:95.826667pt;}
.yed{bottom:95.866667pt;}
.y92{bottom:106.278667pt;}
.yb3{bottom:110.752000pt;}
.y102{bottom:114.918667pt;}
.y26{bottom:115.552000pt;}
.y45{bottom:119.232000pt;}
.y132{bottom:119.552000pt;}
.y148{bottom:119.872000pt;}
.ydb{bottom:120.832000pt;}
.y5f{bottom:122.912000pt;}
.y91{bottom:135.560000pt;}
.yb2{bottom:138.266667pt;}
.y25{bottom:143.066667pt;}
.y131{bottom:147.226667pt;}
.y44{bottom:147.546667pt;}
.yda{bottom:148.506667pt;}
.y5e{bottom:150.426667pt;}
.y8f{bottom:164.840000pt;}
.yb1{bottom:165.946667pt;}
.y24{bottom:170.746667pt;}
.yfc{bottom:173.800000pt;}
.y130{bottom:174.746667pt;}
.y43{bottom:175.066667pt;}
.yd9{bottom:176.506667pt;}
.y5d{bottom:178.106667pt;}
.y8d{bottom:194.120000pt;}
.yb0{bottom:195.546667pt;}
.y23{bottom:198.266667pt;}
.y12f{bottom:202.106667pt;}
.y42{bottom:202.746667pt;}
.yd8{bottom:204.026667pt;}
.y5c{bottom:205.306667pt;}
.y75{bottom:211.066667pt;}
.yaf{bottom:223.546667pt;}
.y22{bottom:225.946667pt;}
.y12e{bottom:230.106667pt;}
.y147{bottom:230.266667pt;}
.y41{bottom:230.426667pt;}
.yd7{bottom:231.706667pt;}
.y5b{bottom:232.986667pt;}
.y8c{bottom:237.786667pt;}
.y74{bottom:238.586667pt;}
.yae{bottom:251.866667pt;}
.y21{bottom:253.466667pt;}
.y40{bottom:257.946667pt;}
.y12d{bottom:258.266667pt;}
.yd6{bottom:259.226667pt;}
.y5a{bottom:260.826667pt;}
.y8b{bottom:265.466667pt;}
.y73{bottom:266.266667pt;}
.yad{bottom:279.386667pt;}
.y20{bottom:281.146667pt;}
.y146{bottom:285.466667pt;}
.y3f{bottom:285.626667pt;}
.y12c{bottom:285.946667pt;}
.yd5{bottom:286.906667pt;}
.yf9{bottom:287.880000pt;}
.y59{bottom:288.826667pt;}
.y8a{bottom:293.306667pt;}
.y72{bottom:293.786667pt;}
.yac{bottom:307.226667pt;}
.y1f{bottom:308.666667pt;}
.y3e{bottom:313.146667pt;}
.yd4{bottom:314.106667pt;}
.y58{bottom:316.346667pt;}
.y158{bottom:316.826667pt;}
.y89{bottom:320.986667pt;}
.y71{bottom:321.146667pt;}
.yab{bottom:334.786667pt;}
.y1e{bottom:336.386667pt;}
.y3d{bottom:340.866667pt;}
.y12b{bottom:341.026667pt;}
.yd3{bottom:342.146667pt;}
.y57{bottom:344.066667pt;}
.y157{bottom:344.386667pt;}
.yf3{bottom:346.786667pt;}
.y88{bottom:348.546667pt;}
.y70{bottom:348.706667pt;}
.yaa{bottom:362.466667pt;}
.y1d{bottom:363.906667pt;}
.y3c{bottom:368.386667pt;}
.y12a{bottom:369.506667pt;}
.yd2{bottom:370.146667pt;}
.y56{bottom:371.586667pt;}
.y156{bottom:372.066667pt;}
.y87{bottom:376.226667pt;}
.y6f{bottom:376.546667pt;}
.ya9{bottom:389.666667pt;}
.y1c{bottom:391.586667pt;}
.y3b{bottom:395.746667pt;}
.y145{bottom:396.066667pt;}
.y129{bottom:397.026667pt;}
.yd1{bottom:397.826667pt;}
.y55{bottom:399.266667pt;}
.y155{bottom:399.586667pt;}
.y86{bottom:403.746667pt;}
.y6e{bottom:404.386667pt;}
.ya8{bottom:417.666667pt;}
.y1b{bottom:419.106667pt;}
.y144{bottom:423.266667pt;}
.y3a{bottom:423.586667pt;}
.y128{bottom:424.386667pt;}
.yd0{bottom:425.026667pt;}
.y54{bottom:426.786667pt;}
.y154{bottom:427.266667pt;}
.y85{bottom:431.426667pt;}
.y6d{bottom:432.066667pt;}
.ya7{bottom:445.826667pt;}
.y1a{bottom:446.786667pt;}
.y143{bottom:451.266667pt;}
.y39{bottom:451.906667pt;}
.y127{bottom:452.386667pt;}
.ycf{bottom:452.866667pt;}
.y53{bottom:454.466667pt;}
.y153{bottom:454.786667pt;}
.y84{bottom:458.946667pt;}
.y6c{bottom:459.586667pt;}
.yf0{bottom:460.866667pt;}
.ya6{bottom:473.506667pt;}
.y19{bottom:474.306667pt;}
.y142{bottom:478.786667pt;}
.y38{bottom:479.426667pt;}
.y117{bottom:480.226667pt;}
.y126{bottom:480.546667pt;}
.yce{bottom:481.026667pt;}
.y152{bottom:482.466667pt;}
.y83{bottom:486.626667pt;}
.y6b{bottom:487.266667pt;}
.y52{bottom:487.426667pt;}
.ya5{bottom:501.026667pt;}
.y18{bottom:501.986667pt;}
.y141{bottom:506.466667pt;}
.y37{bottom:507.106667pt;}
.y116{bottom:507.906667pt;}
.y125{bottom:508.066667pt;}
.ycd{bottom:508.546667pt;}
.y151{bottom:509.986667pt;}
.y82{bottom:513.826667pt;}
.y51{bottom:514.946667pt;}
.y6a{bottom:515.266667pt;}
.yea{bottom:519.746667pt;}
.ya4{bottom:528.866667pt;}
.y17{bottom:529.506667pt;}
.y140{bottom:533.986667pt;}
.y36{bottom:534.626667pt;}
.y115{bottom:535.426667pt;}
.y124{bottom:536.066667pt;}
.ycc{bottom:536.226667pt;}
.y150{bottom:537.666667pt;}
.y81{bottom:541.506667pt;}
.y50{bottom:542.626667pt;}
.y69{bottom:542.786667pt;}
.ya3{bottom:556.413333pt;}
.y16{bottom:557.213333pt;}
.y13f{bottom:561.693333pt;}
.y35{bottom:562.333333pt;}
.y114{bottom:562.813333pt;}
.y123{bottom:563.613333pt;}
.ycb{bottom:563.773333pt;}
.y14f{bottom:565.213333pt;}
.y80{bottom:569.693333pt;}
.y4f{bottom:570.173333pt;}
.y68{bottom:570.493333pt;}
.ya2{bottom:584.093333pt;}
.y15{bottom:584.733333pt;}
.y13e{bottom:588.893333pt;}
.y34{bottom:589.853333pt;}
.y113{bottom:590.813333pt;}
.y122{bottom:591.293333pt;}
.yca{bottom:591.453333pt;}
.y4e{bottom:597.373333pt;}
.y67{bottom:598.013333pt;}
.y14e{bottom:598.173333pt;}
.ya1{bottom:611.933333pt;}
.y14{bottom:612.413333pt;}
.y13d{bottom:616.893333pt;}
.y33{bottom:617.533333pt;}
.y121{bottom:618.813333pt;}
.yc9{bottom:618.973333pt;}
.y112{bottom:624.093333pt;}
.y7f{bottom:624.893333pt;}
.y4d{bottom:625.373333pt;}
.y66{bottom:625.693333pt;}
.ye4{bottom:633.693333pt;}
.ya0{bottom:639.293333pt;}
.y13{bottom:639.933333pt;}
.y32{bottom:645.053333pt;}
.y120{bottom:646.173333pt;}
.yc8{bottom:646.333333pt;}
.y111{bottom:651.773333pt;}
.y7e{bottom:652.573333pt;}
.y65{bottom:653.213333pt;}
.y4c{bottom:653.373333pt;}
.y9f{bottom:667.293333pt;}
.y12{bottom:667.613333pt;}
.y31{bottom:672.733333pt;}
.y110{bottom:673.053333pt;}
.y11f{bottom:674.013333pt;}
.yc7{bottom:674.333333pt;}
.y7d{bottom:680.253333pt;}
.y64{bottom:680.893333pt;}
.y4b{bottom:681.053333pt;}
.y11{bottom:694.813333pt;}
.y9e{bottom:695.293333pt;}
.y30{bottom:700.253333pt;}
.yc6{bottom:702.333333pt;}
.y10f{bottom:704.253333pt;}
.yba{bottom:707.933333pt;}
.y7c{bottom:708.093333pt;}
.y63{bottom:708.413333pt;}
.y4a{bottom:708.573333pt;}
.y10{bottom:713.533333pt;}
.y9d{bottom:722.813333pt;}
.y2f{bottom:727.613333pt;}
.y13c{bottom:727.933333pt;}
.y11e{bottom:729.853333pt;}
.yc5{bottom:730.013333pt;}
.yb9{bottom:735.453333pt;}
.y7b{bottom:735.613333pt;}
.y62{bottom:736.093333pt;}
.y49{bottom:736.253333pt;}
.yf{bottom:746.653333pt;}
.y9c{bottom:750.493333pt;}
.y13b{bottom:755.453333pt;}
.yc4{bottom:757.213333pt;}
.ye3{bottom:757.533333pt;}
.y2e{bottom:757.693333pt;}
.yb8{bottom:763.133333pt;}
.y61{bottom:763.293333pt;}
.y48{bottom:763.453333pt;}
.y14d{bottom:763.773333pt;}
.y10e{bottom:766.813333pt;}
.y9b{bottom:778.013333pt;}
.ye{bottom:781.573333pt;}
.y13a{bottom:782.853333pt;}
.yc3{bottom:785.253333pt;}
.y11d{bottom:785.413333pt;}
.ye2{bottom:785.573333pt;}
.yb7{bottom:790.693333pt;}
.y7a{bottom:790.853333pt;}
.y60{bottom:791.013333pt;}
.y14c{bottom:791.333333pt;}
.y2d{bottom:791.493333pt;}
.y10d{bottom:798.053333pt;}
.y9a{bottom:805.733333pt;}
.yd{bottom:812.613333pt;}
.ye1{bottom:813.093333pt;}
.yc2{bottom:813.413333pt;}
.y139{bottom:816.293333pt;}
.ye0{bottom:818.213333pt;}
.yb6{bottom:818.373333pt;}
.y79{bottom:818.533333pt;}
.y2c{bottom:819.013333pt;}
.y10c{bottom:829.253333pt;}
.y99{bottom:833.093333pt;}
.y11c{bottom:840.613333pt;}
.yc1{bottom:841.093333pt;}
.y138{bottom:843.973333pt;}
.yb5{bottom:845.573333pt;}
.y78{bottom:846.373333pt;}
.y14b{bottom:846.533333pt;}
.y2b{bottom:846.693333pt;}
.yc{bottom:847.493333pt;}
.yb{bottom:858.693333pt;}
.y10a{bottom:860.453333pt;}
.y98{bottom:863.333333pt;}
.y11b{bottom:867.973333pt;}
.yc0{bottom:868.613333pt;}
.y137{bottom:871.493333pt;}
.ydf{bottom:873.413333pt;}
.y77{bottom:873.573333pt;}
.y2a{bottom:874.213333pt;}
.ya{bottom:879.173333pt;}
.y97{bottom:883.813333pt;}
.y11a{bottom:895.813333pt;}
.ybf{bottom:896.293333pt;}
.y9{bottom:897.413333pt;}
.y136{bottom:898.853333pt;}
.y76{bottom:901.253333pt;}
.y109{bottom:901.413333pt;}
.y29{bottom:901.573333pt;}
.yb4{bottom:901.733333pt;}
.y47{bottom:901.893333pt;}
.y96{bottom:913.093333pt;}
.y8{bottom:916.933333pt;}
.ybe{bottom:923.813333pt;}
.y119{bottom:924.133333pt;}
.y108{bottom:929.093333pt;}
.yde{bottom:929.253333pt;}
.y28{bottom:929.413333pt;}
.y94{bottom:942.373333pt;}
.y7{bottom:944.773333pt;}
.ybd{bottom:951.173333pt;}
.y118{bottom:951.813333pt;}
.y46{bottom:956.773333pt;}
.y135{bottom:956.933333pt;}
.y27{bottom:957.093333pt;}
.y4{bottom:975.173333pt;}
.y3{bottom:992.133333pt;}
.y2{bottom:1010.880000pt;}
.y1{bottom:1028.960000pt;}
.hc{height:27.506667pt;}
.hd{height:29.266667pt;}
.he{height:29.273333pt;}
.h17{height:30.546667pt;}
.h1a{height:30.560000pt;}
.h18{height:30.580000pt;}
.h19{height:30.720000pt;}
.h9{height:36.883125pt;}
.h7{height:42.084375pt;}
.h10{height:44.687500pt;}
.hf{height:52.134375pt;}
.ha{height:54.598989pt;}
.h4{height:57.787500pt;}
.h15{height:58.098667pt;}
.h13{height:58.226667pt;}
.h16{height:58.233333pt;}
.hb{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1b{height:65.781915pt;}
.h8{height:66.625000pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h11{height:110.400000pt;}
.h12{height:113.306667pt;}
.h14{height:113.426667pt;}
.h1{height:1123.333333pt;}
.h0{height:1123.360000pt;}
.wa{width:45.586667pt;}
.wc{width:64.030667pt;}
.wb{width:77.586667pt;}
.w5{width:90.750667pt;}
.w9{width:92.818667pt;}
.wd{width:99.026667pt;}
.we{width:99.218667pt;}
.w10{width:99.346667pt;}
.wf{width:99.392000pt;}
.w7{width:102.400000pt;}
.w11{width:102.746667pt;}
.w6{width:107.698667pt;}
.w8{width:118.752000pt;}
.w3{width:122.720000pt;}
.w2{width:164.817333pt;}
.w4{width:279.906667pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x15{left:2.080000pt;}
.x13{left:3.350667pt;}
.x30{left:6.880000pt;}
.x2a{left:8.960000pt;}
.x26{left:10.270667pt;}
.x28{left:11.826667pt;}
.x2f{left:12.960000pt;}
.x25{left:78.081333pt;}
.x1e{left:84.992000pt;}
.x20{left:94.432000pt;}
.x4{left:96.032000pt;}
.x24{left:100.992000pt;}
.x12{left:102.601333pt;}
.xe{left:105.472000pt;}
.x1a{left:107.552000pt;}
.x21{left:110.592000pt;}
.x19{left:112.832000pt;}
.x18{left:117.312000pt;}
.x22{left:118.272000pt;}
.x17{left:121.632000pt;}
.xa{left:122.752000pt;}
.xc{left:124.672000pt;}
.x36{left:127.552000pt;}
.xf{left:129.472000pt;}
.x7{left:131.872000pt;}
.x10{left:135.546667pt;}
.x23{left:142.426667pt;}
.x11{left:153.466667pt;}
.x27{left:169.640000pt;}
.xd{left:180.826667pt;}
.xb{left:199.066667pt;}
.x2{left:200.346667pt;}
.x3{left:220.986667pt;}
.x6{left:223.386667pt;}
.x1c{left:239.546667pt;}
.x31{left:242.440000pt;}
.x1d{left:260.226667pt;}
.x14{left:267.426667pt;}
.x29{left:277.986667pt;}
.x1{left:312.226667pt;}
.x32{left:342.306667pt;}
.x1b{left:351.426667pt;}
.x2b{left:381.026667pt;}
.x8{left:383.266667pt;}
.x5{left:385.346667pt;}
.x16{left:390.146667pt;}
.x9{left:397.346667pt;}
.x1f{left:399.426667pt;}
.x33{left:442.346667pt;}
.x2c{left:500.426667pt;}
.x34{left:542.346667pt;}
.x2d{left:593.893333pt;}
.x2e{left:640.133333pt;}
.x35{left:642.213333pt;}
}




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