
    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_98d7c679caa3deb501e5568c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ed3ee1276e56eee24a6c6b26.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fb4701ce20c532cd71b73bbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_f62d3199a741daab4379df96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_72fc3f8ca8e741ac933f098b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9e8f2a3e5040a0ae265ddae6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894531;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_c4075545b62e239cf10fd56e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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_df7ca1f19132e78b3ee44646.woff2')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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_150f656f1b8d5bc130b62542.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3ceee35b173082ccc138a622.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.lsa{letter-spacing:-1.008000px;}
.ls8{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.018000px;}
.lsf{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.008640px;}
.ls5{letter-spacing:0.017280px;}
.ls15{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.696000px;}
.ls4{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.049760px;}
.lsc{letter-spacing:28.062720px;}
.ls16{letter-spacing:45.468000px;}
.lsd{letter-spacing:52.668000px;}
.ls14{letter-spacing:68.508000px;}
.ls13{letter-spacing:68.652000px;}
.lse{letter-spacing:108.108000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(32,33,36),0 0.015em rgb(32,33,36),0.015em 0 rgb(32,33,36),0 -0.015em  rgb(32,33,36);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(32,33,36);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-54.000000px;}
.ws7{word-spacing:-48.240000px;}
.ws9{word-spacing:-19.457280px;}
.wsb{word-spacing:-19.440000px;}
.wsc{word-spacing:-19.431360px;}
.ws2{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.ws6{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws4{word-spacing:-10.440000px;}
.wsa{word-spacing:0.000000px;}
._1a{margin-left:-2.106000px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._a{width:2.344560px;}
._9{width:3.515280px;}
._8{width:5.139360px;}
._d{width:6.622800px;}
._b{width:7.709040px;}
._24{width:8.754000px;}
._4{width:9.799200px;}
._3{width:10.995840px;}
._f{width:12.250320px;}
._e{width:13.744800px;}
._12{width:14.904000px;}
._13{width:16.681200px;}
._14{width:17.973600px;}
._27{width:19.049760px;}
._6{width:20.128560px;}
._5{width:21.274560px;}
._7{width:23.220720px;}
._10{width:24.660000px;}
._11{width:25.967040px;}
._17{width:27.378000px;}
._16{width:28.620000px;}
._19{width:29.862000px;}
._15{width:31.644000px;}
._2a{width:32.724000px;}
._c{width:33.764400px;}
._25{width:35.454000px;}
._18{width:36.936000px;}
._26{width:38.610000px;}
._21{width:40.230000px;}
._22{width:41.364000px;}
._28{width:42.588000px;}
._20{width:44.388000px;}
._1f{width:45.414000px;}
._1e{width:47.466000px;}
._1b{width:61.938000px;}
._1c{width:65.502000px;}
._1d{width:67.164000px;}
._23{width:76.356000px;}
._29{width:86.076000px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y43{bottom:7.200000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y42{bottom:27.180000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y3f{bottom:75.780000px;}
.y3e{bottom:95.580000px;}
.y106{bottom:101.700000px;}
.y94{bottom:108.000000px;}
.ycc{bottom:109.080000px;}
.y30{bottom:110.520000px;}
.y13c{bottom:111.240000px;}
.y3d{bottom:115.590000px;}
.y2f{bottom:116.820000px;}
.y161{bottom:117.000000px;}
.y105{bottom:119.520000px;}
.y7a{bottom:126.000000px;}
.ycb{bottom:127.080000px;}
.y13b{bottom:129.060000px;}
.y2e{bottom:134.640000px;}
.y160{bottom:134.820000px;}
.y3c{bottom:135.390000px;}
.y104{bottom:137.340000px;}
.y41{bottom:137.700000px;}
.y79{bottom:143.820000px;}
.yca{bottom:145.800000px;}
.y13a{bottom:147.060000px;}
.y2d{bottom:152.460000px;}
.y15f{bottom:152.820000px;}
.y103{bottom:155.160000px;}
.y3b{bottom:155.190000px;}
.y78{bottom:161.640000px;}
.yc9{bottom:163.620000px;}
.y139{bottom:164.880000px;}
.y40{bottom:166.500000px;}
.y2c{bottom:170.280000px;}
.y15e{bottom:170.640000px;}
.y102{bottom:172.980000px;}
.y3a{bottom:174.990000px;}
.y77{bottom:179.460000px;}
.yc8{bottom:181.440000px;}
.y138{bottom:182.700000px;}
.y2b{bottom:188.100000px;}
.y15d{bottom:188.460000px;}
.y101{bottom:190.980000px;}
.y39{bottom:194.790000px;}
.y93{bottom:197.280000px;}
.yc7{bottom:199.260000px;}
.y137{bottom:200.520000px;}
.y2a{bottom:206.130000px;}
.y76{bottom:206.310000px;}
.y100{bottom:208.830000px;}
.y38{bottom:214.770000px;}
.y92{bottom:215.310000px;}
.yc6{bottom:217.290000px;}
.y136{bottom:219.450000px;}
.y75{bottom:224.310000px;}
.yff{bottom:226.650000px;}
.y29{bottom:232.950000px;}
.y91{bottom:233.130000px;}
.y37{bottom:234.570000px;}
.yc5{bottom:235.110000px;}
.y135{bottom:237.270000px;}
.y74{bottom:242.130000px;}
.yfe{bottom:244.650000px;}
.y15c{bottom:250.950000px;}
.yc4{bottom:252.930000px;}
.y36{bottom:254.370000px;}
.y134{bottom:255.090000px;}
.y28{bottom:259.770000px;}
.y73{bottom:259.950000px;}
.yfd{bottom:263.370000px;}
.y15b{bottom:268.950000px;}
.yc3{bottom:270.750000px;}
.y133{bottom:272.910000px;}
.y35{bottom:274.170000px;}
.y72{bottom:277.770000px;}
.yfc{bottom:281.190000px;}
.y27{bottom:286.590000px;}
.y15a{bottom:286.770000px;}
.yc2{bottom:288.570000px;}
.y132{bottom:290.730000px;}
.y34{bottom:293.970000px;}
.y71{bottom:295.590000px;}
.yfb{bottom:299.010000px;}
.y159{bottom:304.590000px;}
.yc1{bottom:306.570000px;}
.y131{bottom:308.730000px;}
.y26{bottom:313.410000px;}
.y33{bottom:313.950000px;}
.yfa{bottom:316.830000px;}
.y158{bottom:322.410000px;}
.yc0{bottom:325.290000px;}
.y130{bottom:326.550000px;}
.y70{bottom:331.410000px;}
.y32{bottom:333.750000px;}
.yf9{bottom:334.650000px;}
.y157{bottom:340.230000px;}
.y25{bottom:340.410000px;}
.ybf{bottom:343.110000px;}
.y12f{bottom:344.370000px;}
.y90{bottom:349.230000px;}
.yf8{bottom:352.650000px;}
.y31{bottom:355.035000px;}
.y6f{bottom:358.230000px;}
.ybe{bottom:360.930000px;}
.y12e{bottom:362.730000px;}
.y8f{bottom:367.050000px;}
.yf7{bottom:371.370000px;}
.y24{bottom:376.050000px;}
.y156{bottom:378.030000px;}
.ybd{bottom:378.930000px;}
.y12d{bottom:381.090000px;}
.y8e{bottom:384.870000px;}
.yf6{bottom:389.190000px;}
.y23{bottom:393.870000px;}
.ybc{bottom:396.750000px;}
.y12c{bottom:398.910000px;}
.yf5{bottom:407.190000px;}
.y155{bottom:410.790000px;}
.y6e{bottom:411.690000px;}
.y22{bottom:413.490000px;}
.ybb{bottom:414.210000px;}
.y12b{bottom:416.730000px;}
.yf4{bottom:425.010000px;}
.y154{bottom:428.610000px;}
.y6d{bottom:429.690000px;}
.yba{bottom:432.390000px;}
.y12a{bottom:434.550000px;}
.y21{bottom:437.430000px;}
.yf3{bottom:442.875000px;}
.y153{bottom:446.475000px;}
.y6c{bottom:447.555000px;}
.yb9{bottom:450.255000px;}
.y129{bottom:452.415000px;}
.y20{bottom:461.235000px;}
.yf2{bottom:461.595000px;}
.y152{bottom:464.475000px;}
.y6b{bottom:465.375000px;}
.yb8{bottom:468.075000px;}
.y128{bottom:470.415000px;}
.yf1{bottom:479.595000px;}
.y151{bottom:482.295000px;}
.y6a{bottom:483.195000px;}
.y1f{bottom:484.995000px;}
.yb7{bottom:486.075000px;}
.y127{bottom:488.235000px;}
.yf0{bottom:497.415000px;}
.y150{bottom:500.115000px;}
.y8d{bottom:501.015000px;}
.yb6{bottom:504.795000px;}
.y126{bottom:506.055000px;}
.y1e{bottom:506.415000px;}
.y69{bottom:510.015000px;}
.yef{bottom:514.875000px;}
.y14f{bottom:517.935000px;}
.y8c{bottom:518.835000px;}
.yb5{bottom:522.615000px;}
.y125{bottom:523.875000px;}
.y1d{bottom:524.235000px;}
.y68{bottom:527.835000px;}
.yee{bottom:533.055000px;}
.y14e{bottom:535.755000px;}
.y8b{bottom:536.835000px;}
.yb4{bottom:540.615000px;}
.y124{bottom:542.775000px;}
.y67{bottom:545.835000px;}
.y1c{bottom:547.635000px;}
.yed{bottom:550.875000px;}
.y181{bottom:554.475000px;}
.y8a{bottom:554.655000px;}
.yb3{bottom:558.435000px;}
.y123{bottom:560.595000px;}
.y14d{bottom:562.575000px;}
.y66{bottom:563.655000px;}
.yec{bottom:568.875000px;}
.y1b{bottom:569.415000px;}
.y89{bottom:572.475000px;}
.y16c{bottom:572.655000px;}
.yb2{bottom:575.895000px;}
.y122{bottom:578.415000px;}
.y14c{bottom:580.575000px;}
.y65{bottom:581.475000px;}
.yeb{bottom:586.695000px;}
.y88{bottom:589.935000px;}
.y16b{bottom:590.475000px;}
.yb1{bottom:594.975000px;}
.y1a{bottom:595.695000px;}
.y121{bottom:596.235000px;}
.y14b{bottom:598.395000px;}
.y64{bottom:599.295000px;}
.yea{bottom:604.515000px;}
.y180{bottom:605.775000px;}
.y16a{bottom:608.295000px;}
.yb0{bottom:612.975000px;}
.y120{bottom:614.235000px;}
.y14a{bottom:616.215000px;}
.y63{bottom:617.115000px;}
.ye9{bottom:622.335000px;}
.y169{bottom:626.115000px;}
.y19{bottom:626.655000px;}
.yaf{bottom:630.795000px;}
.y17f{bottom:632.595000px;}
.y11f{bottom:632.955000px;}
.y149{bottom:634.035000px;}
.y62{bottom:635.115000px;}
.ye8{bottom:640.155000px;}
.y168{bottom:644.115000px;}
.yae{bottom:648.615000px;}
.y11e{bottom:650.775000px;}
.y148{bottom:651.855000px;}
.y61{bottom:652.935000px;}
.ye7{bottom:657.975000px;}
.y17e{bottom:659.415000px;}
.y167{bottom:661.935000px;}
.y18{bottom:666.435000px;}
.y11d{bottom:668.595000px;}
.y147{bottom:669.675000px;}
.y60{bottom:670.755000px;}
.ye6{bottom:676.005000px;}
.y166{bottom:679.785000px;}
.yad{bottom:684.285000px;}
.y11c{bottom:686.445000px;}
.y146{bottom:687.705000px;}
.y5f{bottom:688.605000px;}
.ye5{bottom:693.825000px;}
.y17{bottom:695.805000px;}
.y165{bottom:697.605000px;}
.yac{bottom:702.285000px;}
.y11b{bottom:704.445000px;}
.y5e{bottom:706.425000px;}
.ye4{bottom:712.545000px;}
.y17d{bottom:713.265000px;}
.y16{bottom:714.525000px;}
.y164{bottom:715.425000px;}
.yab{bottom:720.105000px;}
.y11a{bottom:722.265000px;}
.y5d{bottom:724.245000px;}
.ye3{bottom:730.545000px;}
.y145{bottom:732.345000px;}
.y163{bottom:733.245000px;}
.yaa{bottom:737.925000px;}
.y17c{bottom:740.085000px;}
.y119{bottom:740.625000px;}
.y87{bottom:742.245000px;}
.y15{bottom:743.865000px;}
.ye2{bottom:748.365000px;}
.y144{bottom:750.165000px;}
.y5c{bottom:751.245000px;}
.ya9{bottom:755.385000px;}
.y86{bottom:760.065000px;}
.ye1{bottom:766.185000px;}
.y17b{bottom:766.905000px;}
.y118{bottom:767.985000px;}
.y5b{bottom:769.065000px;}
.ya8{bottom:774.645000px;}
.y14{bottom:775.905000px;}
.y85{bottom:777.885000px;}
.ye0{bottom:784.005000px;}
.y117{bottom:785.805000px;}
.y143{bottom:785.985000px;}
.y5a{bottom:786.885000px;}
.ya7{bottom:792.465000px;}
.y17a{bottom:793.725000px;}
.ydf{bottom:801.825000px;}
.y116{bottom:803.625000px;}
.y142{bottom:803.805000px;}
.y59{bottom:804.705000px;}
.y13{bottom:808.665000px;}
.ya6{bottom:810.285000px;}
.yde{bottom:819.645000px;}
.y179{bottom:820.545000px;}
.y141{bottom:821.625000px;}
.y58{bottom:822.525000px;}
.y115{bottom:823.425000px;}
.ya5{bottom:828.105000px;}
.y12{bottom:837.465000px;}
.ydd{bottom:837.645000px;}
.y57{bottom:840.345000px;}
.y140{bottom:841.425000px;}
.ya4{bottom:845.925000px;}
.y178{bottom:847.545000px;}
.ydc{bottom:855.105000px;}
.y114{bottom:856.185000px;}
.y56{bottom:858.345000px;}
.ya3{bottom:863.565000px;}
.y11{bottom:866.445000px;}
.ydb{bottom:874.185000px;}
.y177{bottom:874.365000px;}
.y55{bottom:876.165000px;}
.ya2{bottom:882.645000px;}
.y10{bottom:889.125000px;}
.y113{bottom:892.005000px;}
.yda{bottom:892.185000px;}
.y54{bottom:893.985000px;}
.ya1{bottom:900.645000px;}
.y176{bottom:901.185000px;}
.y112{bottom:909.825000px;}
.yd9{bottom:910.005000px;}
.yf{bottom:910.950000px;}
.y53{bottom:911.850000px;}
.y111{bottom:927.690000px;}
.yd8{bottom:927.870000px;}
.y175{bottom:928.050000px;}
.ya0{bottom:929.490000px;}
.y52{bottom:929.670000px;}
.ye{bottom:932.730000px;}
.y110{bottom:945.510000px;}
.yd7{bottom:945.690000px;}
.y51{bottom:947.670000px;}
.y9f{bottom:948.210000px;}
.yd{bottom:954.150000px;}
.y174{bottom:954.870000px;}
.y10f{bottom:963.330000px;}
.yd6{bottom:963.510000px;}
.y50{bottom:965.490000px;}
.y9e{bottom:975.390000px;}
.yc{bottom:976.290000px;}
.yd5{bottom:981.330000px;}
.y173{bottom:981.870000px;}
.y4f{bottom:983.310000px;}
.y9d{bottom:993.210000px;}
.y10e{bottom:998.790000px;}
.yd4{bottom:999.330000px;}
.y4e{bottom:1001.130000px;}
.y172{bottom:1008.690000px;}
.y9c{bottom:1011.030000px;}
.y13f{bottom:1016.790000px;}
.yd3{bottom:1017.150000px;}
.yb{bottom:1017.510000px;}
.y84{bottom:1018.950000px;}
.y10d{bottom:1026.870000px;}
.y4d{bottom:1027.950000px;}
.y9b{bottom:1028.850000px;}
.ya{bottom:1029.570000px;}
.yd2{bottom:1034.970000px;}
.y171{bottom:1035.510000px;}
.y13e{bottom:1035.870000px;}
.y83{bottom:1036.770000px;}
.y9{bottom:1041.630000px;}
.y10c{bottom:1044.870000px;}
.y4c{bottom:1045.770000px;}
.y9a{bottom:1046.850000px;}
.yd1{bottom:1052.970000px;}
.y8{bottom:1053.690000px;}
.y13d{bottom:1053.870000px;}
.y82{bottom:1054.770000px;}
.y162{bottom:1056.750000px;}
.y170{bottom:1062.330000px;}
.y10b{bottom:1062.690000px;}
.y4b{bottom:1063.770000px;}
.y99{bottom:1066.650000px;}
.y7{bottom:1068.270000px;}
.yd0{bottom:1071.690000px;}
.y81{bottom:1072.590000px;}
.y10a{bottom:1080.510000px;}
.y4a{bottom:1081.590000px;}
.y16f{bottom:1089.150000px;}
.ycf{bottom:1089.510000px;}
.y80{bottom:1090.410000px;}
.y98{bottom:1092.390000px;}
.y6{bottom:1093.830000px;}
.y109{bottom:1098.330000px;}
.y49{bottom:1099.410000px;}
.yce{bottom:1107.330000px;}
.y7f{bottom:1108.230000px;}
.y16e{bottom:1115.970000px;}
.y108{bottom:1116.150000px;}
.y48{bottom:1117.230000px;}
.ycd{bottom:1124.790000px;}
.y97{bottom:1125.150000px;}
.y7e{bottom:1125.690000px;}
.y107{bottom:1133.970000px;}
.y47{bottom:1135.050000px;}
.y96{bottom:1142.970000px;}
.y7d{bottom:1146.060000px;}
.y46{bottom:1153.080000px;}
.y95{bottom:1161.000000px;}
.y16d{bottom:1169.820000px;}
.y45{bottom:1170.900000px;}
.y7c{bottom:1178.820000px;}
.y44{bottom:1190.700000px;}
.y7b{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h7{height:40.985156px;}
.h10{height:48.616875px;}
.h3{height:52.998047px;}
.h12{height:54.421875px;}
.h18{height:55.503491px;}
.h19{height:56.214844px;}
.h15{height:58.621992px;}
.h8{height:58.651172px;}
.h16{height:58.763250px;}
.hf{height:59.383125px;}
.h9{height:60.226875px;}
.hd{height:65.010937px;}
.h4{height:65.884219px;}
.he{height:66.757500px;}
.hc{height:72.326250px;}
.h11{height:72.562500px;}
.h14{height:78.367500px;}
.h17{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:87.800625px;}
.h6{height:90.703125px;}
.h13{height:373.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x15{left:10.800000px;}
.x14{left:39.240000px;}
.x1{left:45.364500px;}
.x16{left:50.040000px;}
.x6{left:54.000000px;}
.x10{left:59.220000px;}
.xf{left:68.580000px;}
.x17{left:80.856000px;}
.xc{left:86.040000px;}
.x1d{left:106.236000px;}
.x18{left:108.036000px;}
.x1b{left:128.736000px;}
.x11{left:212.790000px;}
.x2{left:222.370500px;}
.xd{left:269.535000px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:288.435000px;}
.x7{left:300.495000px;}
.x12{left:314.355000px;}
.xe{left:354.315000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x13{left:473.505000px;}
.x19{left:500.505000px;}
.x1c{left:527.505000px;}
.x1a{left:548.205000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls8{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.007680pt;}
.ls5{letter-spacing:0.015360pt;}
.ls15{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.618667pt;}
.ls4{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.933120pt;}
.lsc{letter-spacing:24.944640pt;}
.ls16{letter-spacing:40.416000pt;}
.lsd{letter-spacing:46.816000pt;}
.ls14{letter-spacing:60.896000pt;}
.ls13{letter-spacing:61.024000pt;}
.lse{letter-spacing:96.096000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws7{word-spacing:-42.880000pt;}
.ws9{word-spacing:-17.295360pt;}
.wsb{word-spacing:-17.280000pt;}
.wsc{word-spacing:-17.272320pt;}
.ws2{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws4{word-spacing:-9.280000pt;}
.wsa{word-spacing:0.000000pt;}
._1a{margin-left:-1.872000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._a{width:2.084053pt;}
._9{width:3.124693pt;}
._8{width:4.568320pt;}
._d{width:5.886933pt;}
._b{width:6.852480pt;}
._24{width:7.781333pt;}
._4{width:8.710400pt;}
._3{width:9.774080pt;}
._f{width:10.889173pt;}
._e{width:12.217600pt;}
._12{width:13.248000pt;}
._13{width:14.827733pt;}
._14{width:15.976533pt;}
._27{width:16.933120pt;}
._6{width:17.892053pt;}
._5{width:18.910720pt;}
._7{width:20.640640pt;}
._10{width:21.920000pt;}
._11{width:23.081813pt;}
._17{width:24.336000pt;}
._16{width:25.440000pt;}
._19{width:26.544000pt;}
._15{width:28.128000pt;}
._2a{width:29.088000pt;}
._c{width:30.012800pt;}
._25{width:31.514667pt;}
._18{width:32.832000pt;}
._26{width:34.320000pt;}
._21{width:35.760000pt;}
._22{width:36.768000pt;}
._28{width:37.856000pt;}
._20{width:39.456000pt;}
._1f{width:40.368000pt;}
._1e{width:42.192000pt;}
._1b{width:55.056000pt;}
._1c{width:58.224000pt;}
._1d{width:59.701333pt;}
._23{width:67.872000pt;}
._29{width:76.512000pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y43{bottom:6.400000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y42{bottom:24.160000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y3f{bottom:67.360000pt;}
.y3e{bottom:84.960000pt;}
.y106{bottom:90.400000pt;}
.y94{bottom:96.000000pt;}
.ycc{bottom:96.960000pt;}
.y30{bottom:98.240000pt;}
.y13c{bottom:98.880000pt;}
.y3d{bottom:102.746667pt;}
.y2f{bottom:103.840000pt;}
.y161{bottom:104.000000pt;}
.y105{bottom:106.240000pt;}
.y7a{bottom:112.000000pt;}
.ycb{bottom:112.960000pt;}
.y13b{bottom:114.720000pt;}
.y2e{bottom:119.680000pt;}
.y160{bottom:119.840000pt;}
.y3c{bottom:120.346667pt;}
.y104{bottom:122.080000pt;}
.y41{bottom:122.400000pt;}
.y79{bottom:127.840000pt;}
.yca{bottom:129.600000pt;}
.y13a{bottom:130.720000pt;}
.y2d{bottom:135.520000pt;}
.y15f{bottom:135.840000pt;}
.y103{bottom:137.920000pt;}
.y3b{bottom:137.946667pt;}
.y78{bottom:143.680000pt;}
.yc9{bottom:145.440000pt;}
.y139{bottom:146.560000pt;}
.y40{bottom:148.000000pt;}
.y2c{bottom:151.360000pt;}
.y15e{bottom:151.680000pt;}
.y102{bottom:153.760000pt;}
.y3a{bottom:155.546667pt;}
.y77{bottom:159.520000pt;}
.yc8{bottom:161.280000pt;}
.y138{bottom:162.400000pt;}
.y2b{bottom:167.200000pt;}
.y15d{bottom:167.520000pt;}
.y101{bottom:169.760000pt;}
.y39{bottom:173.146667pt;}
.y93{bottom:175.360000pt;}
.yc7{bottom:177.120000pt;}
.y137{bottom:178.240000pt;}
.y2a{bottom:183.226667pt;}
.y76{bottom:183.386667pt;}
.y100{bottom:185.626667pt;}
.y38{bottom:190.906667pt;}
.y92{bottom:191.386667pt;}
.yc6{bottom:193.146667pt;}
.y136{bottom:195.066667pt;}
.y75{bottom:199.386667pt;}
.yff{bottom:201.466667pt;}
.y29{bottom:207.066667pt;}
.y91{bottom:207.226667pt;}
.y37{bottom:208.506667pt;}
.yc5{bottom:208.986667pt;}
.y135{bottom:210.906667pt;}
.y74{bottom:215.226667pt;}
.yfe{bottom:217.466667pt;}
.y15c{bottom:223.066667pt;}
.yc4{bottom:224.826667pt;}
.y36{bottom:226.106667pt;}
.y134{bottom:226.746667pt;}
.y28{bottom:230.906667pt;}
.y73{bottom:231.066667pt;}
.yfd{bottom:234.106667pt;}
.y15b{bottom:239.066667pt;}
.yc3{bottom:240.666667pt;}
.y133{bottom:242.586667pt;}
.y35{bottom:243.706667pt;}
.y72{bottom:246.906667pt;}
.yfc{bottom:249.946667pt;}
.y27{bottom:254.746667pt;}
.y15a{bottom:254.906667pt;}
.yc2{bottom:256.506667pt;}
.y132{bottom:258.426667pt;}
.y34{bottom:261.306667pt;}
.y71{bottom:262.746667pt;}
.yfb{bottom:265.786667pt;}
.y159{bottom:270.746667pt;}
.yc1{bottom:272.506667pt;}
.y131{bottom:274.426667pt;}
.y26{bottom:278.586667pt;}
.y33{bottom:279.066667pt;}
.yfa{bottom:281.626667pt;}
.y158{bottom:286.586667pt;}
.yc0{bottom:289.146667pt;}
.y130{bottom:290.266667pt;}
.y70{bottom:294.586667pt;}
.y32{bottom:296.666667pt;}
.yf9{bottom:297.466667pt;}
.y157{bottom:302.426667pt;}
.y25{bottom:302.586667pt;}
.ybf{bottom:304.986667pt;}
.y12f{bottom:306.106667pt;}
.y90{bottom:310.426667pt;}
.yf8{bottom:313.466667pt;}
.y31{bottom:315.586667pt;}
.y6f{bottom:318.426667pt;}
.ybe{bottom:320.826667pt;}
.y12e{bottom:322.426667pt;}
.y8f{bottom:326.266667pt;}
.yf7{bottom:330.106667pt;}
.y24{bottom:334.266667pt;}
.y156{bottom:336.026667pt;}
.ybd{bottom:336.826667pt;}
.y12d{bottom:338.746667pt;}
.y8e{bottom:342.106667pt;}
.yf6{bottom:345.946667pt;}
.y23{bottom:350.106667pt;}
.ybc{bottom:352.666667pt;}
.y12c{bottom:354.586667pt;}
.yf5{bottom:361.946667pt;}
.y155{bottom:365.146667pt;}
.y6e{bottom:365.946667pt;}
.y22{bottom:367.546667pt;}
.ybb{bottom:368.186667pt;}
.y12b{bottom:370.426667pt;}
.yf4{bottom:377.786667pt;}
.y154{bottom:380.986667pt;}
.y6d{bottom:381.946667pt;}
.yba{bottom:384.346667pt;}
.y12a{bottom:386.266667pt;}
.y21{bottom:388.826667pt;}
.yf3{bottom:393.666667pt;}
.y153{bottom:396.866667pt;}
.y6c{bottom:397.826667pt;}
.yb9{bottom:400.226667pt;}
.y129{bottom:402.146667pt;}
.y20{bottom:409.986667pt;}
.yf2{bottom:410.306667pt;}
.y152{bottom:412.866667pt;}
.y6b{bottom:413.666667pt;}
.yb8{bottom:416.066667pt;}
.y128{bottom:418.146667pt;}
.yf1{bottom:426.306667pt;}
.y151{bottom:428.706667pt;}
.y6a{bottom:429.506667pt;}
.y1f{bottom:431.106667pt;}
.yb7{bottom:432.066667pt;}
.y127{bottom:433.986667pt;}
.yf0{bottom:442.146667pt;}
.y150{bottom:444.546667pt;}
.y8d{bottom:445.346667pt;}
.yb6{bottom:448.706667pt;}
.y126{bottom:449.826667pt;}
.y1e{bottom:450.146667pt;}
.y69{bottom:453.346667pt;}
.yef{bottom:457.666667pt;}
.y14f{bottom:460.386667pt;}
.y8c{bottom:461.186667pt;}
.yb5{bottom:464.546667pt;}
.y125{bottom:465.666667pt;}
.y1d{bottom:465.986667pt;}
.y68{bottom:469.186667pt;}
.yee{bottom:473.826667pt;}
.y14e{bottom:476.226667pt;}
.y8b{bottom:477.186667pt;}
.yb4{bottom:480.546667pt;}
.y124{bottom:482.466667pt;}
.y67{bottom:485.186667pt;}
.y1c{bottom:486.786667pt;}
.yed{bottom:489.666667pt;}
.y181{bottom:492.866667pt;}
.y8a{bottom:493.026667pt;}
.yb3{bottom:496.386667pt;}
.y123{bottom:498.306667pt;}
.y14d{bottom:500.066667pt;}
.y66{bottom:501.026667pt;}
.yec{bottom:505.666667pt;}
.y1b{bottom:506.146667pt;}
.y89{bottom:508.866667pt;}
.y16c{bottom:509.026667pt;}
.yb2{bottom:511.906667pt;}
.y122{bottom:514.146667pt;}
.y14c{bottom:516.066667pt;}
.y65{bottom:516.866667pt;}
.yeb{bottom:521.506667pt;}
.y88{bottom:524.386667pt;}
.y16b{bottom:524.866667pt;}
.yb1{bottom:528.866667pt;}
.y1a{bottom:529.506667pt;}
.y121{bottom:529.986667pt;}
.y14b{bottom:531.906667pt;}
.y64{bottom:532.706667pt;}
.yea{bottom:537.346667pt;}
.y180{bottom:538.466667pt;}
.y16a{bottom:540.706667pt;}
.yb0{bottom:544.866667pt;}
.y120{bottom:545.986667pt;}
.y14a{bottom:547.746667pt;}
.y63{bottom:548.546667pt;}
.ye9{bottom:553.186667pt;}
.y169{bottom:556.546667pt;}
.y19{bottom:557.026667pt;}
.yaf{bottom:560.706667pt;}
.y17f{bottom:562.306667pt;}
.y11f{bottom:562.626667pt;}
.y149{bottom:563.586667pt;}
.y62{bottom:564.546667pt;}
.ye8{bottom:569.026667pt;}
.y168{bottom:572.546667pt;}
.yae{bottom:576.546667pt;}
.y11e{bottom:578.466667pt;}
.y148{bottom:579.426667pt;}
.y61{bottom:580.386667pt;}
.ye7{bottom:584.866667pt;}
.y17e{bottom:586.146667pt;}
.y167{bottom:588.386667pt;}
.y18{bottom:592.386667pt;}
.y11d{bottom:594.306667pt;}
.y147{bottom:595.266667pt;}
.y60{bottom:596.226667pt;}
.ye6{bottom:600.893333pt;}
.y166{bottom:604.253333pt;}
.yad{bottom:608.253333pt;}
.y11c{bottom:610.173333pt;}
.y146{bottom:611.293333pt;}
.y5f{bottom:612.093333pt;}
.ye5{bottom:616.733333pt;}
.y17{bottom:618.493333pt;}
.y165{bottom:620.093333pt;}
.yac{bottom:624.253333pt;}
.y11b{bottom:626.173333pt;}
.y5e{bottom:627.933333pt;}
.ye4{bottom:633.373333pt;}
.y17d{bottom:634.013333pt;}
.y16{bottom:635.133333pt;}
.y164{bottom:635.933333pt;}
.yab{bottom:640.093333pt;}
.y11a{bottom:642.013333pt;}
.y5d{bottom:643.773333pt;}
.ye3{bottom:649.373333pt;}
.y145{bottom:650.973333pt;}
.y163{bottom:651.773333pt;}
.yaa{bottom:655.933333pt;}
.y17c{bottom:657.853333pt;}
.y119{bottom:658.333333pt;}
.y87{bottom:659.773333pt;}
.y15{bottom:661.213333pt;}
.ye2{bottom:665.213333pt;}
.y144{bottom:666.813333pt;}
.y5c{bottom:667.773333pt;}
.ya9{bottom:671.453333pt;}
.y86{bottom:675.613333pt;}
.ye1{bottom:681.053333pt;}
.y17b{bottom:681.693333pt;}
.y118{bottom:682.653333pt;}
.y5b{bottom:683.613333pt;}
.ya8{bottom:688.573333pt;}
.y14{bottom:689.693333pt;}
.y85{bottom:691.453333pt;}
.ye0{bottom:696.893333pt;}
.y117{bottom:698.493333pt;}
.y143{bottom:698.653333pt;}
.y5a{bottom:699.453333pt;}
.ya7{bottom:704.413333pt;}
.y17a{bottom:705.533333pt;}
.ydf{bottom:712.733333pt;}
.y116{bottom:714.333333pt;}
.y142{bottom:714.493333pt;}
.y59{bottom:715.293333pt;}
.y13{bottom:718.813333pt;}
.ya6{bottom:720.253333pt;}
.yde{bottom:728.573333pt;}
.y179{bottom:729.373333pt;}
.y141{bottom:730.333333pt;}
.y58{bottom:731.133333pt;}
.y115{bottom:731.933333pt;}
.ya5{bottom:736.093333pt;}
.y12{bottom:744.413333pt;}
.ydd{bottom:744.573333pt;}
.y57{bottom:746.973333pt;}
.y140{bottom:747.933333pt;}
.ya4{bottom:751.933333pt;}
.y178{bottom:753.373333pt;}
.ydc{bottom:760.093333pt;}
.y114{bottom:761.053333pt;}
.y56{bottom:762.973333pt;}
.ya3{bottom:767.613333pt;}
.y11{bottom:770.173333pt;}
.ydb{bottom:777.053333pt;}
.y177{bottom:777.213333pt;}
.y55{bottom:778.813333pt;}
.ya2{bottom:784.573333pt;}
.y10{bottom:790.333333pt;}
.y113{bottom:792.893333pt;}
.yda{bottom:793.053333pt;}
.y54{bottom:794.653333pt;}
.ya1{bottom:800.573333pt;}
.y176{bottom:801.053333pt;}
.y112{bottom:808.733333pt;}
.yd9{bottom:808.893333pt;}
.yf{bottom:809.733333pt;}
.y53{bottom:810.533333pt;}
.y111{bottom:824.613333pt;}
.yd8{bottom:824.773333pt;}
.y175{bottom:824.933333pt;}
.ya0{bottom:826.213333pt;}
.y52{bottom:826.373333pt;}
.ye{bottom:829.093333pt;}
.y110{bottom:840.453333pt;}
.yd7{bottom:840.613333pt;}
.y51{bottom:842.373333pt;}
.y9f{bottom:842.853333pt;}
.yd{bottom:848.133333pt;}
.y174{bottom:848.773333pt;}
.y10f{bottom:856.293333pt;}
.yd6{bottom:856.453333pt;}
.y50{bottom:858.213333pt;}
.y9e{bottom:867.013333pt;}
.yc{bottom:867.813333pt;}
.yd5{bottom:872.293333pt;}
.y173{bottom:872.773333pt;}
.y4f{bottom:874.053333pt;}
.y9d{bottom:882.853333pt;}
.y10e{bottom:887.813333pt;}
.yd4{bottom:888.293333pt;}
.y4e{bottom:889.893333pt;}
.y172{bottom:896.613333pt;}
.y9c{bottom:898.693333pt;}
.y13f{bottom:903.813333pt;}
.yd3{bottom:904.133333pt;}
.yb{bottom:904.453333pt;}
.y84{bottom:905.733333pt;}
.y10d{bottom:912.773333pt;}
.y4d{bottom:913.733333pt;}
.y9b{bottom:914.533333pt;}
.ya{bottom:915.173333pt;}
.yd2{bottom:919.973333pt;}
.y171{bottom:920.453333pt;}
.y13e{bottom:920.773333pt;}
.y83{bottom:921.573333pt;}
.y9{bottom:925.893333pt;}
.y10c{bottom:928.773333pt;}
.y4c{bottom:929.573333pt;}
.y9a{bottom:930.533333pt;}
.yd1{bottom:935.973333pt;}
.y8{bottom:936.613333pt;}
.y13d{bottom:936.773333pt;}
.y82{bottom:937.573333pt;}
.y162{bottom:939.333333pt;}
.y170{bottom:944.293333pt;}
.y10b{bottom:944.613333pt;}
.y4b{bottom:945.573333pt;}
.y99{bottom:948.133333pt;}
.y7{bottom:949.573333pt;}
.yd0{bottom:952.613333pt;}
.y81{bottom:953.413333pt;}
.y10a{bottom:960.453333pt;}
.y4a{bottom:961.413333pt;}
.y16f{bottom:968.133333pt;}
.ycf{bottom:968.453333pt;}
.y80{bottom:969.253333pt;}
.y98{bottom:971.013333pt;}
.y6{bottom:972.293333pt;}
.y109{bottom:976.293333pt;}
.y49{bottom:977.253333pt;}
.yce{bottom:984.293333pt;}
.y7f{bottom:985.093333pt;}
.y16e{bottom:991.973333pt;}
.y108{bottom:992.133333pt;}
.y48{bottom:993.093333pt;}
.ycd{bottom:999.813333pt;}
.y97{bottom:1000.133333pt;}
.y7e{bottom:1000.613333pt;}
.y107{bottom:1007.973333pt;}
.y47{bottom:1008.933333pt;}
.y96{bottom:1015.973333pt;}
.y7d{bottom:1018.720000pt;}
.y46{bottom:1024.960000pt;}
.y95{bottom:1032.000000pt;}
.y16d{bottom:1039.840000pt;}
.y45{bottom:1040.800000pt;}
.y7c{bottom:1047.840000pt;}
.y44{bottom:1058.400000pt;}
.y7b{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h7{height:36.431250pt;}
.h10{height:43.215000pt;}
.h3{height:47.109375pt;}
.h12{height:48.375000pt;}
.h18{height:49.336436pt;}
.h19{height:49.968750pt;}
.h15{height:52.108438pt;}
.h8{height:52.134375pt;}
.h16{height:52.234000pt;}
.hf{height:52.785000pt;}
.h9{height:53.535000pt;}
.hd{height:57.787500pt;}
.h4{height:58.563750pt;}
.he{height:59.340000pt;}
.hc{height:64.290000pt;}
.h11{height:64.500000pt;}
.h14{height:69.660000pt;}
.h17{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:78.045000pt;}
.h6{height:80.625000pt;}
.h13{height:331.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x15{left:9.600000pt;}
.x14{left:34.880000pt;}
.x1{left:40.324000pt;}
.x16{left:44.480000pt;}
.x6{left:48.000000pt;}
.x10{left:52.640000pt;}
.xf{left:60.960000pt;}
.x17{left:71.872000pt;}
.xc{left:76.480000pt;}
.x1d{left:94.432000pt;}
.x18{left:96.032000pt;}
.x1b{left:114.432000pt;}
.x11{left:189.146667pt;}
.x2{left:197.662667pt;}
.xd{left:239.586667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:256.386667pt;}
.x7{left:267.106667pt;}
.x12{left:279.426667pt;}
.xe{left:314.946667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x13{left:420.893333pt;}
.x19{left:444.893333pt;}
.x1c{left:468.893333pt;}
.x1a{left:487.293333pt;}
.x4{left:682.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; }
  