
    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_c1016fd0a93b6feb59b16155.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dc0c49ec63ea4d0ecf7c957d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_c02f64ea816799a5f99e227e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9836da4e5f051349dcd74a04.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_bff086102ddc61b43419bed7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_a03235424a6c34e85da91aa0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_6872eb7186b909e43930b193.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_acbcd72c5ea2b2490df2496d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_7931a074139038af88dfd8d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738770;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_51495a0aaf2a742e5d4668b4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.196289;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;}
.lsb{letter-spacing:-0.846000px;}
.ls10{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.594000px;}
.ls15{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls1c{letter-spacing:-0.175800px;}
.ls8{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.106800px;}
.ls1d{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.119520px;}
.ls16{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.144720px;}
.ls6{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.720000px;}
.ls5{letter-spacing:3.060000px;}
.lsf{letter-spacing:4.469760px;}
.ls19{letter-spacing:5.040000px;}
.ls1b{letter-spacing:19.440000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{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);}
.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(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.640280px;}
.ws18{word-spacing:-18.576000px;}
.ws17{word-spacing:-18.072000px;}
.ws13{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.ws15{word-spacing:-15.300000px;}
.ws16{word-spacing:-14.833200px;}
.ws6{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.284000px;}
.wse{word-spacing:-13.248000px;}
.ws3{word-spacing:-13.229520px;}
.wsb{word-spacing:-13.140000px;}
.wsd{word-spacing:-12.906000px;}
.ws7{word-spacing:-12.888000px;}
.wsc{word-spacing:-12.654000px;}
.ws19{word-spacing:-12.186000px;}
.ws10{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._14{margin-left:-4.478160px;}
._11{margin-left:-3.186000px;}
._f{margin-left:-2.021040px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._d{width:3.514320px;}
._10{width:4.855680px;}
._e{width:6.021600px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._12{width:13.536000px;}
._13{width:14.723760px;}
._9{width:16.314480px;}
._1f{width:18.086880px;}
._5{width:19.744800px;}
._19{width:20.777040px;}
._16{width:22.397040px;}
._15{width:23.688000px;}
._1a{width:24.810720px;}
._1d{width:26.079120px;}
._17{width:27.360000px;}
._18{width:28.406400px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1b{width:35.712000px;}
._1c{width:37.008000px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._1e{width:137.042640px;}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y18e{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y18d{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y18c{bottom:-32.760000px;}
.y18b{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y109{bottom:3.234000px;}
.y8d{bottom:3.240000px;}
.y9{bottom:3.780000px;}
.y157{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.y18a{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y29{bottom:22.755000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y189{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y188{bottom:65.190000px;}
.y73{bottom:68.940000px;}
.y10d{bottom:72.360000px;}
.y12c{bottom:72.540000px;}
.y1c{bottom:73.125000px;}
.y72{bottom:73.440000px;}
.yb3{bottom:74.160000px;}
.y187{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yca{bottom:82.800000px;}
.y71{bottom:84.240000px;}
.y100{bottom:85.500000px;}
.y70{bottom:88.740000px;}
.y8b{bottom:91.080000px;}
.y14d{bottom:92.700000px;}
.y12b{bottom:93.240000px;}
.y93{bottom:93.420000px;}
.yef{bottom:94.500000px;}
.y6f{bottom:99.540000px;}
.y10c{bottom:99.720000px;}
.y156{bottom:100.800000px;}
.y186{bottom:103.530000px;}
.y6e{bottom:104.040000px;}
.yb2{bottom:105.300000px;}
.y92{bottom:106.200000px;}
.y16d{bottom:107.100000px;}
.y1b{bottom:109.305000px;}
.y10b{bottom:113.220000px;}
.y14c{bottom:113.400000px;}
.yc9{bottom:113.940000px;}
.y6d{bottom:114.840000px;}
.yff{bottom:116.640000px;}
.y6c{bottom:119.340000px;}
.y8a{bottom:122.040000px;}
.ye2{bottom:123.300000px;}
.y91{bottom:123.480000px;}
.yee{bottom:125.460000px;}
.y185{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.y6b{bottom:130.140000px;}
.y10a{bottom:130.320000px;}
.y12a{bottom:131.940000px;}
.y6a{bottom:134.676000px;}
.yb1{bottom:136.296000px;}
.y155{bottom:139.536000px;}
.y90{bottom:140.796000px;}
.yc8{bottom:144.936000px;}
.y19{bottom:146.025000px;}
.y69{bottom:146.916000px;}
.yfe{bottom:147.636000px;}
.y184{bottom:150.690000px;}
.y14b{bottom:152.130000px;}
.y129{bottom:152.670000px;}
.y89{bottom:153.210000px;}
.ye1{bottom:154.290000px;}
.yd{bottom:156.090000px;}
.yed{bottom:156.630000px;}
.y8f{bottom:158.070000px;}
.y18{bottom:164.205000px;}
.y108{bottom:164.910000px;}
.yb0{bottom:167.430000px;}
.y14a{bottom:172.830000px;}
.y183{bottom:174.450000px;}
.y8e{bottom:175.350000px;}
.y68{bottom:175.710000px;}
.yc7{bottom:176.070000px;}
.y154{bottom:178.230000px;}
.yfd{bottom:178.770000px;}
.y107{bottom:182.190000px;}
.y17{bottom:182.565000px;}
.y88{bottom:184.170000px;}
.ye0{bottom:185.430000px;}
.yec{bottom:187.590000px;}
.y182{bottom:189.030000px;}
.y128{bottom:191.370000px;}
.y8c{bottom:193.350000px;}
.yaf{bottom:198.390000px;}
.y106{bottom:199.470000px;}
.y67{bottom:200.190000px;}
.yc6{bottom:207.030000px;}
.yfc{bottom:209.730000px;}
.y149{bottom:211.530000px;}
.y127{bottom:212.070000px;}
.y181{bottom:212.790000px;}
.y87{bottom:215.310000px;}
.y66{bottom:215.850000px;}
.ydf{bottom:216.390000px;}
.y105{bottom:216.750000px;}
.y153{bottom:216.930000px;}
.yeb{bottom:218.550000px;}
.y16{bottom:218.925000px;}
.yae{bottom:229.530000px;}
.y65{bottom:231.330000px;}
.y148{bottom:232.230000px;}
.y126{bottom:232.770000px;}
.y104{bottom:233.850000px;}
.y180{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.yc5{bottom:238.170000px;}
.yfb{bottom:240.870000px;}
.y86{bottom:246.270000px;}
.y64{bottom:246.810000px;}
.yde{bottom:247.530000px;}
.yea{bottom:249.690000px;}
.y17f{bottom:250.950000px;}
.y103{bottom:251.130000px;}
.y14{bottom:255.465000px;}
.y152{bottom:255.630000px;}
.yad{bottom:260.490000px;}
.y63{bottom:262.290000px;}
.y102{bottom:268.410000px;}
.yc4{bottom:269.130000px;}
.y147{bottom:270.930000px;}
.y125{bottom:271.470000px;}
.yfa{bottom:271.830000px;}
.y13{bottom:273.855000px;}
.y17e{bottom:274.890000px;}
.y85{bottom:277.230000px;}
.y62{bottom:277.950000px;}
.ydd{bottom:278.490000px;}
.ye9{bottom:280.650000px;}
.y101{bottom:286.410000px;}
.yac{bottom:291.630000px;}
.y124{bottom:292.170000px;}
.y61{bottom:293.430000px;}
.y151{bottom:294.330000px;}
.yc3{bottom:300.270000px;}
.yf9{bottom:302.970000px;}
.y84{bottom:308.370000px;}
.y60{bottom:308.910000px;}
.y17d{bottom:309.135000px;}
.ydc{bottom:309.630000px;}
.ye8{bottom:311.790000px;}
.yab{bottom:322.590000px;}
.y17c{bottom:323.895000px;}
.y5f{bottom:324.390000px;}
.y146{bottom:330.330000px;}
.y123{bottom:330.870000px;}
.yc2{bottom:331.230000px;}
.y150{bottom:333.030000px;}
.yf8{bottom:333.930000px;}
.y83{bottom:339.330000px;}
.y5e{bottom:340.050000px;}
.ydb{bottom:340.590000px;}
.ye7{bottom:342.750000px;}
.y17b{bottom:347.475000px;}
.y145{bottom:351.030000px;}
.y122{bottom:351.570000px;}
.yaa{bottom:353.730000px;}
.y5d{bottom:355.530000px;}
.y2a{bottom:360.210000px;}
.yc1{bottom:362.370000px;}
.yf7{bottom:365.070000px;}
.y82{bottom:370.470000px;}
.y5c{bottom:371.010000px;}
.y17a{bottom:371.055000px;}
.yda{bottom:371.730000px;}
.ye6{bottom:373.890000px;}
.ya9{bottom:384.690000px;}
.y5b{bottom:386.490000px;}
.y144{bottom:389.775000px;}
.y121{bottom:390.315000px;}
.ye5{bottom:393.195000px;}
.yc0{bottom:393.375000px;}
.y179{bottom:394.815000px;}
.yf6{bottom:396.075000px;}
.y81{bottom:401.475000px;}
.y5a{bottom:402.195000px;}
.yd9{bottom:402.735000px;}
.y16c{bottom:406.875000px;}
.ye4{bottom:407.055000px;}
.y143{bottom:410.475000px;}
.y120{bottom:411.015000px;}
.ya8{bottom:415.875000px;}
.y59{bottom:417.675000px;}
.ye3{bottom:418.215000px;}
.y178{bottom:418.395000px;}
.ybf{bottom:424.515000px;}
.yf5{bottom:427.215000px;}
.y80{bottom:432.615000px;}
.y177{bottom:432.975000px;}
.y58{bottom:433.155000px;}
.yd8{bottom:433.875000px;}
.y16b{bottom:437.835000px;}
.ya7{bottom:446.835000px;}
.y142{bottom:449.175000px;}
.y11f{bottom:449.715000px;}
.ybe{bottom:455.475000px;}
.y176{bottom:456.735000px;}
.y57{bottom:457.635000px;}
.y16a{bottom:457.815000px;}
.yf4{bottom:458.175000px;}
.y7f{bottom:463.575000px;}
.yd7{bottom:464.835000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y141{bottom:469.875000px;}
.y11e{bottom:470.415000px;}
.y56{bottom:474.195000px;}
.ya6{bottom:477.975000px;}
.y175{bottom:480.675000px;}
.yc{bottom:486.615000px;}
.yf3{bottom:489.315000px;}
.y11d{bottom:491.115000px;}
.y169{bottom:493.815000px;}
.y7e{bottom:494.715000px;}
.y55{bottom:495.255000px;}
.yd6{bottom:495.975000px;}
.y140{bottom:508.575000px;}
.ya5{bottom:508.935000px;}
.y174{bottom:514.875000px;}
.ybd{bottom:517.575000px;}
.y54{bottom:519.915000px;}
.yf2{bottom:520.275000px;}
.y7d{bottom:525.675000px;}
.yd5{bottom:526.935000px;}
.y13f{bottom:529.275000px;}
.y11c{bottom:529.815000px;}
.y168{bottom:533.775000px;}
.y53{bottom:535.395000px;}
.y173{bottom:539.205000px;}
.ya4{bottom:540.075000px;}
.yf1{bottom:546.375000px;}
.ybc{bottom:548.715000px;}
.y11b{bottom:550.515000px;}
.y52{bottom:550.875000px;}
.y25{bottom:552.420000px;}
.yd4{bottom:553.035000px;}
.y7c{bottom:556.815000px;}
.yf0{bottom:557.715000px;}
.y167{bottom:564.915000px;}
.yd3{bottom:565.095000px;}
.y51{bottom:566.355000px;}
.y13e{bottom:567.975000px;}
.ya3{bottom:571.035000px;}
.y172{bottom:575.205000px;}
.ybb{bottom:579.675000px;}
.y50{bottom:582.015000px;}
.yd2{bottom:582.375000px;}
.y7b{bottom:587.775000px;}
.y13d{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.y166{bottom:595.875000px;}
.y4f{bottom:597.495000px;}
.yd1{bottom:599.655000px;}
.ya2{bottom:601.995000px;}
.y23{bottom:605.340000px;}
.y14f{bottom:609.375000px;}
.y11a{bottom:609.915000px;}
.y171{bottom:609.945000px;}
.yba{bottom:610.815000px;}
.y4e{bottom:612.975000px;}
.ya{bottom:616.395000px;}
.yd0{bottom:616.935000px;}
.y7a{bottom:618.915000px;}
.y158{bottom:619.635150px;}
.y165{bottom:627.015000px;}
.y13c{bottom:627.375000px;}
.y4d{bottom:628.455000px;}
.ya1{bottom:633.135000px;}
.ycf{bottom:634.035000px;}
.yb9{bottom:641.805000px;}
.y4c{bottom:644.145000px;}
.y33{bottom:644.685000px;}
.y170{bottom:646.305000px;}
.y13b{bottom:648.105000px;}
.y119{bottom:648.645000px;}
.y79{bottom:649.905000px;}
.yce{bottom:651.345000px;}
.y164{bottom:658.005000px;}
.y4b{bottom:659.625000px;}
.ya0{bottom:664.125000px;}
.ycd{bottom:668.625000px;}
.y14e{bottom:668.805000px;}
.y118{bottom:669.345000px;}
.yb8{bottom:672.945000px;}
.y4a{bottom:675.105000px;}
.y78{bottom:681.045000px;}
.y16f{bottom:682.305000px;}
.ycc{bottom:685.905000px;}
.y13a{bottom:686.805000px;}
.y163{bottom:689.145000px;}
.y9f{bottom:690.225000px;}
.y49{bottom:690.585000px;}
.y9e{bottom:703.185000px;}
.yb7{bottom:703.905000px;}
.y48{bottom:706.245000px;}
.y139{bottom:707.505000px;}
.y117{bottom:708.045000px;}
.y77{bottom:712.005000px;}
.y16e{bottom:718.305000px;}
.y162{bottom:720.105000px;}
.y9d{bottom:720.465000px;}
.ycb{bottom:721.185000px;}
.y47{bottom:721.725000px;}
.y138{bottom:728.205000px;}
.y116{bottom:728.745000px;}
.yb6{bottom:735.045000px;}
.y46{bottom:737.205000px;}
.y9c{bottom:737.565000px;}
.y76{bottom:743.145000px;}
.y115{bottom:749.445000px;}
.y161{bottom:751.245000px;}
.y45{bottom:752.685000px;}
.y9b{bottom:754.845000px;}
.yb5{bottom:761.145000px;}
.y137{bottom:766.905000px;}
.y44{bottom:768.345000px;}
.y9a{bottom:772.125000px;}
.yb4{bottom:772.485000px;}
.y75{bottom:774.105000px;}
.y160{bottom:782.205000px;}
.y43{bottom:783.825000px;}
.y136{bottom:787.605000px;}
.y114{bottom:788.145000px;}
.y99{bottom:789.405000px;}
.y74{bottom:805.245000px;}
.y98{bottom:806.685000px;}
.y42{bottom:807.045000px;}
.y113{bottom:808.845000px;}
.y15f{bottom:813.345000px;}
.y97{bottom:823.965000px;}
.y135{bottom:826.305000px;}
.y41{bottom:836.205000px;}
.y96{bottom:841.065000px;}
.y15e{bottom:844.305000px;}
.y134{bottom:847.005000px;}
.y112{bottom:847.545000px;}
.y95{bottom:858.345000px;}
.y3f{bottom:867.345000px;}
.y111{bottom:868.245000px;}
.y40{bottom:874.185000px;}
.y15d{bottom:875.445000px;}
.y94{bottom:876.345000px;}
.y133{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.y3d{bottom:898.350000px;}
.y3e{bottom:905.190000px;}
.y132{bottom:906.450000px;}
.y110{bottom:906.990000px;}
.y18f{bottom:912.210000px;}
.y10f{bottom:927.690000px;}
.y3b{bottom:929.490000px;}
.y3c{bottom:936.330000px;}
.y15c{bottom:937.590000px;}
.y131{bottom:945.150000px;}
.y39{bottom:960.450000px;}
.y130{bottom:965.850000px;}
.y3a{bottom:967.290000px;}
.y10e{bottom:967.650000px;}
.y15b{bottom:968.550000px;}
.y37{bottom:991.590000px;}
.y38{bottom:998.430000px;}
.y12f{bottom:1004.550000px;}
.y15a{bottom:1007.250000px;}
.y36{bottom:1022.550000px;}
.y12e{bottom:1025.250000px;}
.y159{bottom:1045.950000px;}
.y35{bottom:1053.690000px;}
.y12d{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1e{height:17.100000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.h1a{height:23.004844px;}
.h5{height:24.156000px;}
.h1b{height:27.109688px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h12{height:35.261367px;}
.h17{height:36.698203px;}
.h1c{height:43.246406px;}
.h18{height:47.961914px;}
.h26{height:47.980898px;}
.h19{height:48.410156px;}
.h1f{height:53.077852px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h16{height:54.773438px;}
.h27{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h25{height:61.189805px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h24{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h28{height:189.000000px;}
.hb{height:306.255000px;}
.h23{height:754.845000px;}
.h9{height:1188.900000px;}
.h22{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w15{width:81.396000px;}
.w13{width:85.176000px;}
.w6{width:88.560000px;}
.w1c{width:106.200000px;}
.w1b{width:106.416000px;}
.w14{width:110.880000px;}
.w1e{width:117.036000px;}
.w12{width:127.476000px;}
.w1d{width:138.276000px;}
.w18{width:146.376000px;}
.w16{width:147.456000px;}
.w20{width:148.716000px;}
.w17{width:163.470000px;}
.w1f{width:170.130000px;}
.w19{width:180.750000px;}
.w1a{width:191.370000px;}
.wf{width:198.210000px;}
.w11{width:212.790000px;}
.w22{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w21{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x11{left:-2.055000px;}
.x0{left:0.000000px;}
.x6{left:8.676000px;}
.xa{left:9.900000px;}
.x2f{left:13.500000px;}
.x35{left:15.300000px;}
.x29{left:16.920000px;}
.x4f{left:18.720000px;}
.xd{left:22.320000px;}
.x3b{left:23.940000px;}
.x2d{left:25.380000px;}
.x2b{left:27.360000px;}
.x33{left:29.340000px;}
.x43{left:31.500000px;}
.xc{left:33.120000px;}
.x39{left:34.965000px;}
.x53{left:36.540000px;}
.x17{left:37.620000px;}
.x31{left:40.320000px;}
.x34{left:42.300000px;}
.x48{left:44.640000px;}
.x36{left:48.810000px;}
.x32{left:50.610000px;}
.x30{left:52.590000px;}
.x47{left:53.820000px;}
.x58{left:55.080000px;}
.x54{left:58.680000px;}
.x4{left:64.439987px;}
.x24{left:68.219987px;}
.x3f{left:71.145000px;}
.x5{left:73.080000px;}
.x3d{left:74.925000px;}
.x55{left:77.760000px;}
.x3e{left:79.230000px;}
.x56{left:81.180000px;}
.x18{left:82.800000px;}
.x57{left:85.320000px;}
.x45{left:86.754000px;}
.x46{left:90.180000px;}
.x42{left:100.656000px;}
.x59{left:106.955987px;}
.x19{left:113.400000px;}
.x25{left:117.575987px;}
.x15{left:133.125000px;}
.x8{left:137.385000px;}
.x27{left:153.210000px;}
.x4c{left:155.009987px;}
.x14{left:160.410000px;}
.xf{left:163.110000px;}
.x1b{left:176.609987px;}
.x1a{left:187.245000px;}
.x4e{left:191.369987px;}
.x26{left:201.629987px;}
.x4b{left:223.949987px;}
.x38{left:233.490000px;}
.x37{left:248.834987px;}
.x50{left:270.795000px;}
.x23{left:280.514987px;}
.x40{left:301.214987px;}
.x49{left:348.374987px;}
.x28{left:366.015000px;}
.x3a{left:380.955000px;}
.x3{left:388.694987px;}
.x13{left:406.155000px;}
.xe{left:408.135000px;}
.x16{left:411.945000px;}
.x12{left:419.760000px;}
.x10{left:439.560000px;}
.x51{left:440.925000px;}
.x22{left:442.004987px;}
.x5a{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x44{left:472.785000px;}
.x2a{left:493.485000px;}
.x3c{left:544.425000px;}
.x2c{left:578.670000px;}
.x52{left:589.650000px;}
.x1f{left:591.089987px;}
.x1d{left:593.969987px;}
.x21{left:597.029987px;}
.x20{left:631.049987px;}
.x4a{left:671.549987px;}
.x41{left:686.129987px;}
.x2e{left:689.550000px;}
.x4d{left:745.919987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1e{left:813.599973px;}
.x1c{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.752000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls1c{letter-spacing:-0.156267pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.106240pt;}
.ls16{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.128640pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls5{letter-spacing:2.720000pt;}
.lsf{letter-spacing:3.973120pt;}
.ls19{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:17.280000pt;}
.ws12{word-spacing:-64.000000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.458027pt;}
.ws18{word-spacing:-16.512000pt;}
.ws17{word-spacing:-16.064000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.776000pt;}
.ws3{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.680000pt;}
.wsd{word-spacing:-11.472000pt;}
.ws7{word-spacing:-11.456000pt;}
.wsc{word-spacing:-11.248000pt;}
.ws19{word-spacing:-10.832000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._14{margin-left:-3.980587pt;}
._11{margin-left:-2.832000pt;}
._f{margin-left:-1.796480pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._d{width:3.123840pt;}
._10{width:4.316160pt;}
._e{width:5.352533pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._12{width:12.032000pt;}
._13{width:13.087787pt;}
._9{width:14.501760pt;}
._1f{width:16.077227pt;}
._5{width:17.550933pt;}
._19{width:18.468480pt;}
._16{width:19.908480pt;}
._15{width:21.056000pt;}
._1a{width:22.053973pt;}
._1d{width:23.181440pt;}
._17{width:24.320000pt;}
._18{width:25.250133pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1b{width:31.744000pt;}
._1c{width:32.896000pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._1e{width:121.815680pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y18e{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y18d{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y18c{bottom:-29.120000pt;}
.y18b{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y109{bottom:2.874667pt;}
.y8d{bottom:2.880000pt;}
.y9{bottom:3.360000pt;}
.y157{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.y18a{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y29{bottom:20.226667pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y189{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y188{bottom:57.946667pt;}
.y73{bottom:61.280000pt;}
.y10d{bottom:64.320000pt;}
.y12c{bottom:64.480000pt;}
.y1c{bottom:65.000000pt;}
.y72{bottom:65.280000pt;}
.yb3{bottom:65.920000pt;}
.y187{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yca{bottom:73.600000pt;}
.y71{bottom:74.880000pt;}
.y100{bottom:76.000000pt;}
.y70{bottom:78.880000pt;}
.y8b{bottom:80.960000pt;}
.y14d{bottom:82.400000pt;}
.y12b{bottom:82.880000pt;}
.y93{bottom:83.040000pt;}
.yef{bottom:84.000000pt;}
.y6f{bottom:88.480000pt;}
.y10c{bottom:88.640000pt;}
.y156{bottom:89.600000pt;}
.y186{bottom:92.026667pt;}
.y6e{bottom:92.480000pt;}
.yb2{bottom:93.600000pt;}
.y92{bottom:94.400000pt;}
.y16d{bottom:95.200000pt;}
.y1b{bottom:97.160000pt;}
.y10b{bottom:100.640000pt;}
.y14c{bottom:100.800000pt;}
.yc9{bottom:101.280000pt;}
.y6d{bottom:102.080000pt;}
.yff{bottom:103.680000pt;}
.y6c{bottom:106.080000pt;}
.y8a{bottom:108.480000pt;}
.ye2{bottom:109.600000pt;}
.y91{bottom:109.760000pt;}
.yee{bottom:111.520000pt;}
.y185{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.y6b{bottom:115.680000pt;}
.y10a{bottom:115.840000pt;}
.y12a{bottom:117.280000pt;}
.y6a{bottom:119.712000pt;}
.yb1{bottom:121.152000pt;}
.y155{bottom:124.032000pt;}
.y90{bottom:125.152000pt;}
.yc8{bottom:128.832000pt;}
.y19{bottom:129.800000pt;}
.y69{bottom:130.592000pt;}
.yfe{bottom:131.232000pt;}
.y184{bottom:133.946667pt;}
.y14b{bottom:135.226667pt;}
.y129{bottom:135.706667pt;}
.y89{bottom:136.186667pt;}
.ye1{bottom:137.146667pt;}
.yd{bottom:138.746667pt;}
.yed{bottom:139.226667pt;}
.y8f{bottom:140.506667pt;}
.y18{bottom:145.960000pt;}
.y108{bottom:146.586667pt;}
.yb0{bottom:148.826667pt;}
.y14a{bottom:153.626667pt;}
.y183{bottom:155.066667pt;}
.y8e{bottom:155.866667pt;}
.y68{bottom:156.186667pt;}
.yc7{bottom:156.506667pt;}
.y154{bottom:158.426667pt;}
.yfd{bottom:158.906667pt;}
.y107{bottom:161.946667pt;}
.y17{bottom:162.280000pt;}
.y88{bottom:163.706667pt;}
.ye0{bottom:164.826667pt;}
.yec{bottom:166.746667pt;}
.y182{bottom:168.026667pt;}
.y128{bottom:170.106667pt;}
.y8c{bottom:171.866667pt;}
.yaf{bottom:176.346667pt;}
.y106{bottom:177.306667pt;}
.y67{bottom:177.946667pt;}
.yc6{bottom:184.026667pt;}
.yfc{bottom:186.426667pt;}
.y149{bottom:188.026667pt;}
.y127{bottom:188.506667pt;}
.y181{bottom:189.146667pt;}
.y87{bottom:191.386667pt;}
.y66{bottom:191.866667pt;}
.ydf{bottom:192.346667pt;}
.y105{bottom:192.666667pt;}
.y153{bottom:192.826667pt;}
.yeb{bottom:194.266667pt;}
.y16{bottom:194.600000pt;}
.yae{bottom:204.026667pt;}
.y65{bottom:205.626667pt;}
.y148{bottom:206.426667pt;}
.y126{bottom:206.906667pt;}
.y104{bottom:207.866667pt;}
.y180{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.yc5{bottom:211.706667pt;}
.yfb{bottom:214.106667pt;}
.y86{bottom:218.906667pt;}
.y64{bottom:219.386667pt;}
.yde{bottom:220.026667pt;}
.yea{bottom:221.946667pt;}
.y17f{bottom:223.066667pt;}
.y103{bottom:223.226667pt;}
.y14{bottom:227.080000pt;}
.y152{bottom:227.226667pt;}
.yad{bottom:231.546667pt;}
.y63{bottom:233.146667pt;}
.y102{bottom:238.586667pt;}
.yc4{bottom:239.226667pt;}
.y147{bottom:240.826667pt;}
.y125{bottom:241.306667pt;}
.yfa{bottom:241.626667pt;}
.y13{bottom:243.426667pt;}
.y17e{bottom:244.346667pt;}
.y85{bottom:246.426667pt;}
.y62{bottom:247.066667pt;}
.ydd{bottom:247.546667pt;}
.ye9{bottom:249.466667pt;}
.y101{bottom:254.586667pt;}
.yac{bottom:259.226667pt;}
.y124{bottom:259.706667pt;}
.y61{bottom:260.826667pt;}
.y151{bottom:261.626667pt;}
.yc3{bottom:266.906667pt;}
.yf9{bottom:269.306667pt;}
.y84{bottom:274.106667pt;}
.y60{bottom:274.586667pt;}
.y17d{bottom:274.786667pt;}
.ydc{bottom:275.226667pt;}
.ye8{bottom:277.146667pt;}
.yab{bottom:286.746667pt;}
.y17c{bottom:287.906667pt;}
.y5f{bottom:288.346667pt;}
.y146{bottom:293.626667pt;}
.y123{bottom:294.106667pt;}
.yc2{bottom:294.426667pt;}
.y150{bottom:296.026667pt;}
.yf8{bottom:296.826667pt;}
.y83{bottom:301.626667pt;}
.y5e{bottom:302.266667pt;}
.ydb{bottom:302.746667pt;}
.ye7{bottom:304.666667pt;}
.y17b{bottom:308.866667pt;}
.y145{bottom:312.026667pt;}
.y122{bottom:312.506667pt;}
.yaa{bottom:314.426667pt;}
.y5d{bottom:316.026667pt;}
.y2a{bottom:320.186667pt;}
.yc1{bottom:322.106667pt;}
.yf7{bottom:324.506667pt;}
.y82{bottom:329.306667pt;}
.y5c{bottom:329.786667pt;}
.y17a{bottom:329.826667pt;}
.yda{bottom:330.426667pt;}
.ye6{bottom:332.346667pt;}
.ya9{bottom:341.946667pt;}
.y5b{bottom:343.546667pt;}
.y144{bottom:346.466667pt;}
.y121{bottom:346.946667pt;}
.ye5{bottom:349.506667pt;}
.yc0{bottom:349.666667pt;}
.y179{bottom:350.946667pt;}
.yf6{bottom:352.066667pt;}
.y81{bottom:356.866667pt;}
.y5a{bottom:357.506667pt;}
.yd9{bottom:357.986667pt;}
.y16c{bottom:361.666667pt;}
.ye4{bottom:361.826667pt;}
.y143{bottom:364.866667pt;}
.y120{bottom:365.346667pt;}
.ya8{bottom:369.666667pt;}
.y59{bottom:371.266667pt;}
.ye3{bottom:371.746667pt;}
.y178{bottom:371.906667pt;}
.ybf{bottom:377.346667pt;}
.yf5{bottom:379.746667pt;}
.y80{bottom:384.546667pt;}
.y177{bottom:384.866667pt;}
.y58{bottom:385.026667pt;}
.yd8{bottom:385.666667pt;}
.y16b{bottom:389.186667pt;}
.ya7{bottom:397.186667pt;}
.y142{bottom:399.266667pt;}
.y11f{bottom:399.746667pt;}
.ybe{bottom:404.866667pt;}
.y176{bottom:405.986667pt;}
.y57{bottom:406.786667pt;}
.y16a{bottom:406.946667pt;}
.yf4{bottom:407.266667pt;}
.y7f{bottom:412.066667pt;}
.yd7{bottom:413.186667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y141{bottom:417.666667pt;}
.y11e{bottom:418.146667pt;}
.y56{bottom:421.506667pt;}
.ya6{bottom:424.866667pt;}
.y175{bottom:427.266667pt;}
.yc{bottom:432.546667pt;}
.yf3{bottom:434.946667pt;}
.y11d{bottom:436.546667pt;}
.y169{bottom:438.946667pt;}
.y7e{bottom:439.746667pt;}
.y55{bottom:440.226667pt;}
.yd6{bottom:440.866667pt;}
.y140{bottom:452.066667pt;}
.ya5{bottom:452.386667pt;}
.y174{bottom:457.666667pt;}
.ybd{bottom:460.066667pt;}
.y54{bottom:462.146667pt;}
.yf2{bottom:462.466667pt;}
.y7d{bottom:467.266667pt;}
.yd5{bottom:468.386667pt;}
.y13f{bottom:470.466667pt;}
.y11c{bottom:470.946667pt;}
.y168{bottom:474.466667pt;}
.y53{bottom:475.906667pt;}
.y173{bottom:479.293333pt;}
.ya4{bottom:480.066667pt;}
.yf1{bottom:485.666667pt;}
.ybc{bottom:487.746667pt;}
.y11b{bottom:489.346667pt;}
.y52{bottom:489.666667pt;}
.y25{bottom:491.040000pt;}
.yd4{bottom:491.586667pt;}
.y7c{bottom:494.946667pt;}
.yf0{bottom:495.746667pt;}
.y167{bottom:502.146667pt;}
.yd3{bottom:502.306667pt;}
.y51{bottom:503.426667pt;}
.y13e{bottom:504.866667pt;}
.ya3{bottom:507.586667pt;}
.y172{bottom:511.293333pt;}
.ybb{bottom:515.266667pt;}
.y50{bottom:517.346667pt;}
.yd2{bottom:517.666667pt;}
.y7b{bottom:522.466667pt;}
.y13d{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.y166{bottom:529.666667pt;}
.y4f{bottom:531.106667pt;}
.yd1{bottom:533.026667pt;}
.ya2{bottom:535.106667pt;}
.y23{bottom:538.080000pt;}
.y14f{bottom:541.666667pt;}
.y11a{bottom:542.146667pt;}
.y171{bottom:542.173333pt;}
.yba{bottom:542.946667pt;}
.y4e{bottom:544.866667pt;}
.ya{bottom:547.906667pt;}
.yd0{bottom:548.386667pt;}
.y7a{bottom:550.146667pt;}
.y158{bottom:550.786800pt;}
.y165{bottom:557.346667pt;}
.y13c{bottom:557.666667pt;}
.y4d{bottom:558.626667pt;}
.ya1{bottom:562.786667pt;}
.ycf{bottom:563.586667pt;}
.yb9{bottom:570.493333pt;}
.y4c{bottom:572.573333pt;}
.y33{bottom:573.053333pt;}
.y170{bottom:574.493333pt;}
.y13b{bottom:576.093333pt;}
.y119{bottom:576.573333pt;}
.y79{bottom:577.693333pt;}
.yce{bottom:578.973333pt;}
.y164{bottom:584.893333pt;}
.y4b{bottom:586.333333pt;}
.ya0{bottom:590.333333pt;}
.ycd{bottom:594.333333pt;}
.y14e{bottom:594.493333pt;}
.y118{bottom:594.973333pt;}
.yb8{bottom:598.173333pt;}
.y4a{bottom:600.093333pt;}
.y78{bottom:605.373333pt;}
.y16f{bottom:606.493333pt;}
.ycc{bottom:609.693333pt;}
.y13a{bottom:610.493333pt;}
.y163{bottom:612.573333pt;}
.y9f{bottom:613.533333pt;}
.y49{bottom:613.853333pt;}
.y9e{bottom:625.053333pt;}
.yb7{bottom:625.693333pt;}
.y48{bottom:627.773333pt;}
.y139{bottom:628.893333pt;}
.y117{bottom:629.373333pt;}
.y77{bottom:632.893333pt;}
.y16e{bottom:638.493333pt;}
.y162{bottom:640.093333pt;}
.y9d{bottom:640.413333pt;}
.ycb{bottom:641.053333pt;}
.y47{bottom:641.533333pt;}
.y138{bottom:647.293333pt;}
.y116{bottom:647.773333pt;}
.yb6{bottom:653.373333pt;}
.y46{bottom:655.293333pt;}
.y9c{bottom:655.613333pt;}
.y76{bottom:660.573333pt;}
.y115{bottom:666.173333pt;}
.y161{bottom:667.773333pt;}
.y45{bottom:669.053333pt;}
.y9b{bottom:670.973333pt;}
.yb5{bottom:676.573333pt;}
.y137{bottom:681.693333pt;}
.y44{bottom:682.973333pt;}
.y9a{bottom:686.333333pt;}
.yb4{bottom:686.653333pt;}
.y75{bottom:688.093333pt;}
.y160{bottom:695.293333pt;}
.y43{bottom:696.733333pt;}
.y136{bottom:700.093333pt;}
.y114{bottom:700.573333pt;}
.y99{bottom:701.693333pt;}
.y74{bottom:715.773333pt;}
.y98{bottom:717.053333pt;}
.y42{bottom:717.373333pt;}
.y113{bottom:718.973333pt;}
.y15f{bottom:722.973333pt;}
.y97{bottom:732.413333pt;}
.y135{bottom:734.493333pt;}
.y41{bottom:743.293333pt;}
.y96{bottom:747.613333pt;}
.y15e{bottom:750.493333pt;}
.y134{bottom:752.893333pt;}
.y112{bottom:753.373333pt;}
.y95{bottom:762.973333pt;}
.y3f{bottom:770.973333pt;}
.y111{bottom:771.773333pt;}
.y40{bottom:777.053333pt;}
.y15d{bottom:778.173333pt;}
.y94{bottom:778.973333pt;}
.y133{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.y3d{bottom:798.533333pt;}
.y3e{bottom:804.613333pt;}
.y132{bottom:805.733333pt;}
.y110{bottom:806.213333pt;}
.y18f{bottom:810.853333pt;}
.y10f{bottom:824.613333pt;}
.y3b{bottom:826.213333pt;}
.y3c{bottom:832.293333pt;}
.y15c{bottom:833.413333pt;}
.y131{bottom:840.133333pt;}
.y39{bottom:853.733333pt;}
.y130{bottom:858.533333pt;}
.y3a{bottom:859.813333pt;}
.y10e{bottom:860.133333pt;}
.y15b{bottom:860.933333pt;}
.y37{bottom:881.413333pt;}
.y38{bottom:887.493333pt;}
.y12f{bottom:892.933333pt;}
.y15a{bottom:895.333333pt;}
.y36{bottom:908.933333pt;}
.y12e{bottom:911.333333pt;}
.y159{bottom:929.733333pt;}
.y35{bottom:936.613333pt;}
.y12d{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1e{height:15.200000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.h1a{height:20.448750pt;}
.h5{height:21.472000pt;}
.h1b{height:24.097500pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h12{height:31.343437pt;}
.h17{height:32.620625pt;}
.h1c{height:38.441250pt;}
.h18{height:42.632812pt;}
.h26{height:42.649687pt;}
.h19{height:43.031250pt;}
.h1f{height:47.180312pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h16{height:48.687500pt;}
.h27{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h25{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h24{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h28{height:168.000000pt;}
.hb{height:272.226667pt;}
.h23{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h22{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w15{width:72.352000pt;}
.w13{width:75.712000pt;}
.w6{width:78.720000pt;}
.w1c{width:94.400000pt;}
.w1b{width:94.592000pt;}
.w14{width:98.560000pt;}
.w1e{width:104.032000pt;}
.w12{width:113.312000pt;}
.w1d{width:122.912000pt;}
.w18{width:130.112000pt;}
.w16{width:131.072000pt;}
.w20{width:132.192000pt;}
.w17{width:145.306667pt;}
.w1f{width:151.226667pt;}
.w19{width:160.666667pt;}
.w1a{width:170.106667pt;}
.wf{width:176.186667pt;}
.w11{width:189.146667pt;}
.w22{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w21{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x11{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x6{left:7.712000pt;}
.xa{left:8.800000pt;}
.x2f{left:12.000000pt;}
.x35{left:13.600000pt;}
.x29{left:15.040000pt;}
.x4f{left:16.640000pt;}
.xd{left:19.840000pt;}
.x3b{left:21.280000pt;}
.x2d{left:22.560000pt;}
.x2b{left:24.320000pt;}
.x33{left:26.080000pt;}
.x43{left:28.000000pt;}
.xc{left:29.440000pt;}
.x39{left:31.080000pt;}
.x53{left:32.480000pt;}
.x17{left:33.440000pt;}
.x31{left:35.840000pt;}
.x34{left:37.600000pt;}
.x48{left:39.680000pt;}
.x36{left:43.386667pt;}
.x32{left:44.986667pt;}
.x30{left:46.746667pt;}
.x47{left:47.840000pt;}
.x58{left:48.960000pt;}
.x54{left:52.160000pt;}
.x4{left:57.279988pt;}
.x24{left:60.639988pt;}
.x3f{left:63.240000pt;}
.x5{left:64.960000pt;}
.x3d{left:66.600000pt;}
.x55{left:69.120000pt;}
.x3e{left:70.426667pt;}
.x56{left:72.160000pt;}
.x18{left:73.600000pt;}
.x57{left:75.840000pt;}
.x45{left:77.114667pt;}
.x46{left:80.160000pt;}
.x42{left:89.472000pt;}
.x59{left:95.071988pt;}
.x19{left:100.800000pt;}
.x25{left:104.511988pt;}
.x15{left:118.333333pt;}
.x8{left:122.120000pt;}
.x27{left:136.186667pt;}
.x4c{left:137.786655pt;}
.x14{left:142.586667pt;}
.xf{left:144.986667pt;}
.x1b{left:156.986655pt;}
.x1a{left:166.440000pt;}
.x4e{left:170.106655pt;}
.x26{left:179.226655pt;}
.x4b{left:199.066655pt;}
.x38{left:207.546667pt;}
.x37{left:221.186655pt;}
.x50{left:240.706667pt;}
.x23{left:249.346655pt;}
.x40{left:267.746655pt;}
.x49{left:309.666655pt;}
.x28{left:325.346667pt;}
.x3a{left:338.626667pt;}
.x3{left:345.506655pt;}
.x13{left:361.026667pt;}
.xe{left:362.786667pt;}
.x16{left:366.173333pt;}
.x12{left:373.120000pt;}
.x10{left:390.720000pt;}
.x51{left:391.933333pt;}
.x22{left:392.893322pt;}
.x5a{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x44{left:420.253333pt;}
.x2a{left:438.653333pt;}
.x3c{left:483.933333pt;}
.x2c{left:514.373333pt;}
.x52{left:524.133333pt;}
.x1f{left:525.413322pt;}
.x1d{left:527.973322pt;}
.x21{left:530.693322pt;}
.x20{left:560.933322pt;}
.x4a{left:596.933322pt;}
.x41{left:609.893322pt;}
.x2e{left:612.933333pt;}
.x4d{left:663.039988pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1e{left:723.199976pt;}
.x1c{left:728.639988pt;}
.x9{left:745.440000pt;}
}




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