
    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_3d1a72da998f9512d67964a8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_6c333f0918d46a583680555f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_d358b1c027e0a136dab8935c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_19f4d627f6ca25583385f248.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2295caec94237ff1ce136204.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_b0c2939206026aa14b59a2b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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_ce4e9c0701af08e99e9bc677.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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;}
.m3{transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249837,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,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;}
.ls17{letter-spacing:-2.141898px;}
.ls6{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-1.224403px;}
.ls16{letter-spacing:-0.701043px;}
.lsb{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls1a{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:41.682720px;}
.lsd{letter-spacing:44.562720px;}
.lsf{letter-spacing:51.042720px;}
.lsa{letter-spacing:64.026720px;}
.ls9{letter-spacing:71.202720px;}
.ls11{letter-spacing:71.370720px;}
.ls15{letter-spacing:93.170896px;}
.ls19{letter-spacing:196.712104px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.ws5{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.ws4{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws2{word-spacing:-13.500000px;}
.wse{word-spacing:-11.707312px;}
.ws11{word-spacing:-11.699691px;}
.wsd{word-spacing:-0.042085px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:71.738832px;}
.ws10{word-spacing:168.851116px;}
._19{margin-left:-4.142590px;}
._1a{margin-left:-3.122374px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._b{width:2.622480px;}
._2{width:4.245600px;}
._9{width:5.848800px;}
._a{width:7.112880px;}
._c{width:8.306640px;}
._d{width:9.593280px;}
._6{width:11.414160px;}
._7{width:12.653760px;}
._13{width:13.835280px;}
._8{width:15.948240px;}
._1f{width:17.644800px;}
._14{width:18.646800px;}
._15{width:20.071680px;}
._12{width:21.334320px;}
._11{width:22.350240px;}
._25{width:24.143040px;}
._f{width:25.270080px;}
._e{width:26.713440px;}
._10{width:28.010640px;}
._1d{width:30.059280px;}
._1c{width:31.075200px;}
._22{width:32.366880px;}
._24{width:35.011680px;}
._23{width:36.154800px;}
._26{width:37.290240px;}
._16{width:38.836320px;}
._28{width:42.840240px;}
._29{width:43.894560px;}
._1e{width:45.589200px;}
._1b{width:48.158880px;}
._2f{width:50.019120px;}
._18{width:61.549559px;}
._17{width:74.310488px;}
._2d{width:126.026160px;}
._2c{width:127.049760px;}
._2e{width:152.746560px;}
._21{width:165.026155px;}
._2b{width:174.678480px;}
._2a{width:175.993200px;}
._20{width:177.968038px;}
._5{width:193.656000px;}
._4{width:579.306000px;}
._3{width:748.236000px;}
._30{width:1119.603600px;}
._27{width:2264.298720px;}
.fca{color:rgb(19,19,20);}
.fc8{color:rgb(0,102,153);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc9{color:rgb(32,33,34);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc5{color:rgb(10,10,10);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.085221px;}
.fs5{font-size:42.112632px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.240000px;}
.ye7{bottom:3.270000px;}
.y119{bottom:3.285000px;}
.y10c{bottom:10.541808px;}
.y155{bottom:10.541842px;}
.yf4{bottom:20.340000px;}
.yd5{bottom:20.520000px;}
.y134{bottom:21.960000px;}
.y13f{bottom:22.140000px;}
.y105{bottom:24.314751px;}
.y149{bottom:24.314761px;}
.y106{bottom:33.220750px;}
.y14a{bottom:33.220759px;}
.yb{bottom:36.720000px;}
.y111{bottom:37.800000px;}
.y12b{bottom:38.340000px;}
.y133{bottom:39.240000px;}
.ya{bottom:55.260000px;}
.y14b{bottom:61.554867px;}
.y15d{bottom:63.978628px;}
.y9{bottom:70.776000px;}
.y107{bottom:89.077276px;}
.y14c{bottom:89.077283px;}
.y15e{bottom:94.755081px;}
.y103{bottom:111.816000px;}
.yb6{bottom:113.256000px;}
.yc2{bottom:115.236000px;}
.ybb{bottom:115.956000px;}
.y14d{bottom:116.626352px;}
.y191{bottom:118.836000px;}
.y1b0{bottom:120.456000px;}
.y131{bottom:125.136000px;}
.y15f{bottom:125.534765px;}
.y7f{bottom:126.936000px;}
.yb5{bottom:127.296000px;}
.y96{bottom:128.196000px;}
.y102{bottom:129.096000px;}
.yba{bottom:129.996000px;}
.yc1{bottom:132.516000px;}
.y190{bottom:136.116000px;}
.y1af{bottom:137.736000px;}
.y10d{bottom:140.096764px;}
.y95{bottom:142.236000px;}
.y59{bottom:142.596000px;}
.y130{bottom:143.136000px;}
.y108{bottom:144.151182px;}
.y14e{bottom:144.151191px;}
.y7e{bottom:144.216000px;}
.y101{bottom:146.376000px;}
.y165{bottom:146.574146px;}
.y156{bottom:146.574152px;}
.yc0{bottom:149.796000px;}
.y18f{bottom:153.390000px;}
.y1ae{bottom:155.010000px;}
.y160{bottom:156.290219px;}
.y58{bottom:159.870000px;}
.y12f{bottom:161.130000px;}
.y7d{bottom:161.310000px;}
.y100{bottom:163.470000px;}
.ybf{bottom:167.070000px;}
.y18e{bottom:170.490000px;}
.y14f{bottom:171.676030px;}
.y1ad{bottom:172.290000px;}
.y57{bottom:176.970000px;}
.y7c{bottom:178.590000px;}
.y12e{bottom:179.130000px;}
.yff{bottom:180.750000px;}
.ybe{bottom:181.110000px;}
.y180{bottom:182.730000px;}
.y161{bottom:187.069901px;}
.y18d{bottom:187.770000px;}
.y1ac{bottom:189.390000px;}
.ye1{bottom:193.170000px;}
.y56{bottom:194.250000px;}
.y7b{bottom:195.870000px;}
.y12d{bottom:197.130000px;}
.yfe{bottom:198.030000px;}
.y17f{bottom:200.010000px;}
.y109{bottom:200.016592px;}
.y150{bottom:200.016600px;}
.y18c{bottom:205.050000px;}
.y1ab{bottom:206.670000px;}
.ye0{bottom:210.450000px;}
.y55{bottom:211.530000px;}
.y7a{bottom:213.150000px;}
.y12a{bottom:215.130000px;}
.yfd{bottom:215.310000px;}
.y17e{bottom:217.290000px;}
.y16b{bottom:217.841484px;}
.y162{bottom:218.649164px;}
.y18b{bottom:222.330000px;}
.y1aa{bottom:223.950000px;}
.y15c{bottom:224.310824px;}
.y151{bottom:227.557592px;}
.ydf{bottom:227.730000px;}
.y54{bottom:228.810000px;}
.y79{bottom:231.510000px;}
.yfc{bottom:232.590000px;}
.y16a{bottom:233.211134px;}
.y17d{bottom:234.570000px;}
.y18a{bottom:239.610000px;}
.y15b{bottom:239.696628px;}
.y1a9{bottom:241.230000px;}
.yde{bottom:245.010000px;}
.y53{bottom:246.090000px;}
.y169{bottom:247.797361px;}
.y163{bottom:248.605041px;}
.y78{bottom:249.690000px;}
.yfb{bottom:249.870000px;}
.y12c{bottom:250.230000px;}
.y17c{bottom:251.670000px;}
.y15a{bottom:254.274777px;}
.y10a{bottom:255.082422px;}
.y152{bottom:255.082431px;}
.y189{bottom:256.890000px;}
.y1a8{bottom:258.510000px;}
.ydd{bottom:262.290000px;}
.y10f{bottom:262.375504px;}
.y168{bottom:263.183164px;}
.y52{bottom:263.370000px;}
.yfa{bottom:266.970000px;}
.y77{bottom:268.050000px;}
.y17b{bottom:268.950000px;}
.y159{bottom:269.668657px;}
.y129{bottom:271.470000px;}
.y188{bottom:273.990000px;}
.y1a7{bottom:275.790000px;}
.y10e{bottom:277.761308px;}
.y167{bottom:278.568968px;}
.y164{bottom:279.376648px;}
.ydc{bottom:279.390000px;}
.y51{bottom:280.470000px;}
.y76{bottom:282.090000px;}
.y153{bottom:282.607270px;}
.yf9{bottom:284.250000px;}
.y158{bottom:285.038308px;}
.y17a{bottom:286.230000px;}
.y128{bottom:288.750000px;}
.y187{bottom:291.270000px;}
.y1a6{bottom:292.890000px;}
.ydb{bottom:296.670000px;}
.y50{bottom:297.750000px;}
.yf8{bottom:301.530000px;}
.y179{bottom:303.510000px;}
.y127{bottom:306.030000px;}
.y186{bottom:308.550000px;}
.y36{bottom:309.090000px;}
.y10b{bottom:310.140179px;}
.y154{bottom:310.140186px;}
.y1a5{bottom:310.170000px;}
.yda{bottom:313.950000px;}
.y4f{bottom:315.030000px;}
.y147{bottom:315.570000px;}
.y148{bottom:315.720000px;}
.yf7{bottom:318.810000px;}
.y178{bottom:320.790000px;}
.y166{bottom:322.295346px;}
.y157{bottom:322.295375px;}
.y126{bottom:323.310000px;}
.y185{bottom:325.830000px;}
.y35{bottom:326.370000px;}
.y1a4{bottom:327.450000px;}
.yd9{bottom:331.230000px;}
.y4e{bottom:332.310000px;}
.y177{bottom:335.550000px;}
.yf6{bottom:336.090000px;}
.y125{bottom:340.635000px;}
.y184{bottom:343.155000px;}
.y34{bottom:343.695000px;}
.y1a3{bottom:344.775000px;}
.yd8{bottom:348.555000px;}
.y4d{bottom:349.635000px;}
.yf5{bottom:353.415000px;}
.y176{bottom:353.595000px;}
.y183{bottom:357.195000px;}
.y124{bottom:357.915000px;}
.y33{bottom:360.975000px;}
.y1a2{bottom:362.055000px;}
.yd7{bottom:365.655000px;}
.y4c{bottom:366.915000px;}
.yf3{bottom:368.175000px;}
.y175{bottom:371.595000px;}
.y123{bottom:375.015000px;}
.y9d{bottom:378.075000px;}
.y32{bottom:378.255000px;}
.y1a1{bottom:379.155000px;}
.yb4{bottom:381.495000px;}
.yd6{bottom:382.935000px;}
.y4b{bottom:384.015000px;}
.y122{bottom:389.055000px;}
.y174{bottom:389.595000px;}
.y31{bottom:395.355000px;}
.y1a0{bottom:396.435000px;}
.yd4{bottom:397.695000px;}
.yb3{bottom:398.775000px;}
.y4a{bottom:401.295000px;}
.yf2{bottom:403.275000px;}
.y173{bottom:407.595000px;}
.y30{bottom:412.635000px;}
.y19f{bottom:413.715000px;}
.yb2{bottom:415.875000px;}
.y49{bottom:418.575000px;}
.yf1{bottom:421.275000px;}
.y94{bottom:424.515000px;}
.y172{bottom:425.595000px;}
.y9c{bottom:429.915000px;}
.y19e{bottom:430.995000px;}
.y2f{bottom:432.075000px;}
.yd3{bottom:432.975000px;}
.yb1{bottom:433.155000px;}
.y48{bottom:435.855000px;}
.yf0{bottom:439.275000px;}
.y93{bottom:441.795000px;}
.yb9{bottom:444.855000px;}
.y171{bottom:446.835000px;}
.y9b{bottom:447.015000px;}
.y19d{bottom:448.275000px;}
.y2e{bottom:449.355000px;}
.yb0{bottom:450.435000px;}
.yd2{bottom:450.975000px;}
.y47{bottom:453.135000px;}
.yef{bottom:457.275000px;}
.yb8{bottom:458.895000px;}
.y92{bottom:459.075000px;}
.y170{bottom:463.935000px;}
.y9a{bottom:464.295000px;}
.y19c{bottom:465.555000px;}
.y2d{bottom:466.635000px;}
.yaf{bottom:467.715000px;}
.yd1{bottom:468.975000px;}
.y46{bottom:470.415000px;}
.yee{bottom:475.275000px;}
.y91{bottom:476.355000px;}
.y16f{bottom:481.215000px;}
.y99{bottom:481.575000px;}
.y19b{bottom:482.655000px;}
.y2c{bottom:483.915000px;}
.yae{bottom:484.995000px;}
.yd0{bottom:486.975000px;}
.y45{bottom:487.515000px;}
.yed{bottom:493.275000px;}
.y90{bottom:493.455000px;}
.y16e{bottom:495.255000px;}
.y98{bottom:498.855000px;}
.y19a{bottom:499.935000px;}
.y2b{bottom:501.195000px;}
.yad{bottom:502.275000px;}
.y44{bottom:504.795000px;}
.ycf{bottom:504.975000px;}
.y8f{bottom:510.735000px;}
.yec{bottom:511.275000px;}
.y97{bottom:512.895000px;}
.y199{bottom:517.215000px;}
.y2a{bottom:518.475000px;}
.yac{bottom:519.375000px;}
.y43{bottom:522.075000px;}
.yce{bottom:522.975000px;}
.y8e{bottom:528.015000px;}
.yeb{bottom:529.275000px;}
.y198{bottom:534.495000px;}
.y29{bottom:535.755000px;}
.yab{bottom:536.655000px;}
.y42{bottom:539.355000px;}
.ycd{bottom:540.975000px;}
.y8d{bottom:545.295000px;}
.yea{bottom:547.275000px;}
.y197{bottom:551.775000px;}
.y28{bottom:552.855000px;}
.yaa{bottom:553.935000px;}
.y41{bottom:556.635000px;}
.ycc{bottom:558.975000px;}
.y8c{bottom:562.575000px;}
.ye9{bottom:565.275000px;}
.y196{bottom:569.055000px;}
.y27{bottom:570.135000px;}
.ya9{bottom:571.215000px;}
.y40{bottom:573.735000px;}
.ycb{bottom:576.975000px;}
.y8b{bottom:579.675000px;}
.y75{bottom:582.915000px;}
.ye8{bottom:583.275000px;}
.y195{bottom:586.155000px;}
.y26{bottom:587.415000px;}
.ya8{bottom:588.495000px;}
.y3f{bottom:591.015000px;}
.yca{bottom:594.975000px;}
.y8a{bottom:596.955000px;}
.y74{bottom:600.195000px;}
.ye6{bottom:601.275000px;}
.y194{bottom:603.435000px;}
.y25{bottom:604.725000px;}
.ya7{bottom:605.805000px;}
.y3e{bottom:608.325000px;}
.ybd{bottom:609.585000px;}
.yc9{bottom:613.005000px;}
.y89{bottom:614.265000px;}
.y73{bottom:617.505000px;}
.ye5{bottom:619.305000px;}
.y193{bottom:620.745000px;}
.y24{bottom:622.005000px;}
.ya6{bottom:622.905000px;}
.ybc{bottom:623.625000px;}
.y3d{bottom:625.605000px;}
.y16d{bottom:626.865000px;}
.yc8{bottom:631.005000px;}
.y88{bottom:631.545000px;}
.y72{bottom:635.865000px;}
.ye4{bottom:637.305000px;}
.y192{bottom:638.025000px;}
.y23{bottom:639.285000px;}
.ya5{bottom:640.185000px;}
.y16c{bottom:640.725000px;}
.y3c{bottom:642.885000px;}
.yc7{bottom:649.005000px;}
.y87{bottom:649.905000px;}
.y71{bottom:654.225000px;}
.ye3{bottom:655.305000px;}
.y22{bottom:656.385000px;}
.ya4{bottom:657.465000px;}
.y146{bottom:659.085000px;}
.y3b{bottom:660.165000px;}
.yc6{bottom:667.005000px;}
.y86{bottom:668.265000px;}
.y70{bottom:672.585000px;}
.ye2{bottom:673.305000px;}
.y21{bottom:673.665000px;}
.ya3{bottom:674.745000px;}
.y3a{bottom:677.265000px;}
.yc5{bottom:685.005000px;}
.y85{bottom:686.445000px;}
.y6f{bottom:689.685000px;}
.y20{bottom:690.945000px;}
.y145{bottom:691.665000px;}
.ya2{bottom:692.025000px;}
.y39{bottom:694.545000px;}
.yc3{bottom:703.005000px;}
.y84{bottom:703.725000px;}
.y6e{bottom:706.965000px;}
.y1f{bottom:708.225000px;}
.ya1{bottom:709.305000px;}
.y144{bottom:709.665000px;}
.y38{bottom:711.825000px;}
.y83{bottom:721.005000px;}
.y6d{bottom:724.245000px;}
.y1e{bottom:725.505000px;}
.y37{bottom:725.865000px;}
.y104{bottom:725.940000px;}
.ya0{bottom:726.405000px;}
.y143{bottom:727.665000px;}
.y121{bottom:732.525000px;}
.y82{bottom:738.285000px;}
.y6c{bottom:741.525000px;}
.y1d{bottom:742.605000px;}
.y9f{bottom:743.685000px;}
.y142{bottom:745.665000px;}
.y120{bottom:749.805000px;}
.y81{bottom:756.645000px;}
.y9e{bottom:757.725000px;}
.y6b{bottom:758.805000px;}
.y1c{bottom:759.885000px;}
.y13e{bottom:763.665000px;}
.y11f{bottom:766.905000px;}
.y80{bottom:774.825000px;}
.y6a{bottom:775.905000px;}
.y1b{bottom:777.165000px;}
.y141{bottom:781.665000px;}
.y11e{bottom:784.185000px;}
.yb7{bottom:788.865000px;}
.y69{bottom:793.185000px;}
.y1a{bottom:794.445000px;}
.y140{bottom:799.665000px;}
.y11d{bottom:801.465000px;}
.y68{bottom:810.465000px;}
.y19{bottom:811.725000px;}
.y11c{bottom:816.225000px;}
.y13d{bottom:820.905000px;}
.y67{bottom:827.745000px;}
.y182{bottom:828.105000px;}
.y18{bottom:829.005000px;}
.y11b{bottom:834.225000px;}
.y13c{bottom:838.185000px;}
.y181{bottom:842.145000px;}
.y66{bottom:845.025000px;}
.y17{bottom:846.105000px;}
.y11a{bottom:852.225000px;}
.y13b{bottom:852.945000px;}
.y65{bottom:862.305000px;}
.y16{bottom:863.385000px;}
.y118{bottom:870.225000px;}
.y13a{bottom:870.990000px;}
.y64{bottom:879.450000px;}
.y15{bottom:880.710000px;}
.y117{bottom:888.270000px;}
.y139{bottom:888.990000px;}
.y63{bottom:896.730000px;}
.y14{bottom:900.150000px;}
.y116{bottom:906.270000px;}
.y138{bottom:906.990000px;}
.y62{bottom:914.010000px;}
.y13{bottom:917.970000px;}
.y115{bottom:924.270000px;}
.y137{bottom:924.990000px;}
.y61{bottom:931.290000px;}
.y12{bottom:936.870000px;}
.y114{bottom:942.270000px;}
.y132{bottom:942.990000px;}
.y60{bottom:948.570000px;}
.y11{bottom:955.770000px;}
.y113{bottom:960.270000px;}
.y136{bottom:960.990000px;}
.y5f{bottom:965.850000px;}
.y10{bottom:974.850000px;}
.y112{bottom:978.270000px;}
.y135{bottom:978.990000px;}
.y5e{bottom:982.950000px;}
.yf{bottom:993.750000px;}
.y110{bottom:996.270000px;}
.y5d{bottom:1000.230000px;}
.ye{bottom:1012.830000px;}
.y5c{bottom:1017.510000px;}
.yd{bottom:1031.370000px;}
.y5b{bottom:1034.790000px;}
.yc{bottom:1049.190000px;}
.y5a{bottom:1052.070000px;}
.y8{bottom:1070.430000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.810000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h14{height:17.100000px;}
.h18{height:17.136000px;}
.ha{height:17.280000px;}
.hb{height:17.316000px;}
.hf{height:30.639191px;}
.h10{height:31.646113px;}
.h11{height:31.666725px;}
.hd{height:34.380000px;}
.hc{height:34.560000px;}
.h5{height:42.164648px;}
.h9{height:45.024258px;}
.h6{height:45.035156px;}
.h8{height:46.736719px;}
.h16{height:49.255313px;}
.h2{height:49.838906px;}
.h4{height:50.800781px;}
.h12{height:51.660000px;}
.h13{height:52.380000px;}
.h15{height:53.280000px;}
.h3{height:55.243125px;}
.h7{height:65.884219px;}
.he{height:340.020000px;}
.h17{height:340.104139px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:114.156000px;}
.wd{width:114.300000px;}
.we{width:114.336000px;}
.wa{width:117.360000px;}
.w8{width:131.940000px;}
.w6{width:132.120000px;}
.w7{width:132.156000px;}
.wf{width:165.240000px;}
.w10{width:165.270000px;}
.w3{width:220.530000px;}
.w4{width:220.710000px;}
.w5{width:453.493546px;}
.w9{width:530.745000px;}
.wb{width:574.485000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.560000px;}
.x48{left:21.960000px;}
.x2f{left:32.393079px;}
.x42{left:35.640000px;}
.x2d{left:41.304881px;}
.x47{left:43.740000px;}
.x46{left:44.820000px;}
.x45{left:45.900000px;}
.x2c{left:50.216683px;}
.x2b{left:56.682929px;}
.x41{left:58.674000px;}
.x24{left:80.999987px;}
.x31{left:100.296000px;}
.x1{left:108.035987px;}
.x25{left:114.876000px;}
.x2{left:123.155987px;}
.x12{left:135.035987px;}
.x4{left:157.169987px;}
.x7{left:160.769987px;}
.x13{left:162.029987px;}
.x4a{left:183.828182px;}
.x2e{left:187.877179px;}
.x14{left:189.029987px;}
.x43{left:212.805000px;}
.x3c{left:218.370000px;}
.x2a{left:219.720374px;}
.x30{left:222.693548px;}
.x44{left:231.705000px;}
.x32{left:233.130000px;}
.x38{left:247.530000px;}
.x1c{left:260.669987px;}
.x4f{left:266.430000px;}
.x37{left:292.394987px;}
.x4e{left:296.354987px;}
.xe{left:297.434987px;}
.x3b{left:299.414987px;}
.xb{left:300.674987px;}
.x1f{left:308.054987px;}
.xa{left:316.694987px;}
.x19{left:319.934987px;}
.x1e{left:324.434987px;}
.x9{left:329.654987px;}
.x3d{left:333.255000px;}
.xc{left:335.054987px;}
.x27{left:336.315000px;}
.xd{left:337.934987px;}
.x49{left:347.834987px;}
.x16{left:354.134987px;}
.x11{left:360.434987px;}
.x4c{left:363.854987px;}
.x33{left:366.015000px;}
.x17{left:379.694987px;}
.x52{left:381.674987px;}
.x1a{left:384.374987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.x50{left:432.435000px;}
.x8{left:446.474987px;}
.x3e{left:448.275000px;}
.x34{left:498.885000px;}
.x39{left:513.285000px;}
.x3{left:518.324987px;}
.x28{left:557.565000px;}
.x3f{left:563.505000px;}
.x4d{left:595.004987px;}
.x51{left:598.605000px;}
.x35{left:631.725000px;}
.x3a{left:646.125000px;}
.x36{left:656.969987px;}
.x29{left:673.349987px;}
.x40{left:678.570000px;}
.x53{left:690.629987px;}
.x23{left:698.729987px;}
.x4b{left:700.709987px;}
.x22{left:708.089987px;}
.x10{left:716.549987px;}
.x18{left:725.009987px;}
.x1d{left:734.549987px;}
.x20{left:749.129987px;}
.x21{left:758.129987px;}
.x1b{left:771.629987px;}
.x15{left:772.709987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.903909pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-1.088358pt;}
.ls16{letter-spacing:-0.623150pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls1a{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:37.051307pt;}
.lsd{letter-spacing:39.611307pt;}
.lsf{letter-spacing:45.371307pt;}
.lsa{letter-spacing:56.912640pt;}
.ls9{letter-spacing:63.291307pt;}
.ls11{letter-spacing:63.440640pt;}
.ls15{letter-spacing:82.818574pt;}
.ls19{letter-spacing:174.855204pt;}
.ws7{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.ws4{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws2{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.406499pt;}
.ws11{word-spacing:-10.399726pt;}
.wsd{word-spacing:-0.037409pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:63.767850pt;}
.ws10{word-spacing:150.089881pt;}
._19{margin-left:-3.682302pt;}
._1a{margin-left:-2.775443pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._b{width:2.331093pt;}
._2{width:3.773867pt;}
._9{width:5.198933pt;}
._a{width:6.322560pt;}
._c{width:7.383680pt;}
._d{width:8.527360pt;}
._6{width:10.145920pt;}
._7{width:11.247787pt;}
._13{width:12.298027pt;}
._8{width:14.176213pt;}
._1f{width:15.684267pt;}
._14{width:16.574933pt;}
._15{width:17.841493pt;}
._12{width:18.963840pt;}
._11{width:19.866880pt;}
._25{width:21.460480pt;}
._f{width:22.462293pt;}
._e{width:23.745280pt;}
._10{width:24.898347pt;}
._1d{width:26.719360pt;}
._1c{width:27.622400pt;}
._22{width:28.770560pt;}
._24{width:31.121493pt;}
._23{width:32.137600pt;}
._26{width:33.146880pt;}
._16{width:34.521173pt;}
._28{width:38.080213pt;}
._29{width:39.017387pt;}
._1e{width:40.523733pt;}
._1b{width:42.807893pt;}
._2f{width:44.461440pt;}
._18{width:54.710719pt;}
._17{width:66.053767pt;}
._2d{width:112.023253pt;}
._2c{width:112.933120pt;}
._2e{width:135.774720pt;}
._21{width:146.689916pt;}
._2b{width:155.269760pt;}
._2a{width:156.438400pt;}
._20{width:158.193811pt;}
._5{width:172.138667pt;}
._4{width:514.938667pt;}
._3{width:665.098667pt;}
._30{width:995.203200pt;}
._27{width:2012.709973pt;}
.fs4{font-size:37.409085pt;}
.fs5{font-size:37.433451pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:2.880000pt;}
.ye7{bottom:2.906667pt;}
.y119{bottom:2.920000pt;}
.y10c{bottom:9.370496pt;}
.y155{bottom:9.370526pt;}
.yf4{bottom:18.080000pt;}
.yd5{bottom:18.240000pt;}
.y134{bottom:19.520000pt;}
.y13f{bottom:19.680000pt;}
.y105{bottom:21.613112pt;}
.y149{bottom:21.613121pt;}
.y106{bottom:29.529555pt;}
.y14a{bottom:29.529563pt;}
.yb{bottom:32.640000pt;}
.y111{bottom:33.600000pt;}
.y12b{bottom:34.080000pt;}
.y133{bottom:34.880000pt;}
.ya{bottom:49.120000pt;}
.y14b{bottom:54.715437pt;}
.y15d{bottom:56.869892pt;}
.y9{bottom:62.912000pt;}
.y107{bottom:79.179801pt;}
.y14c{bottom:79.179807pt;}
.y15e{bottom:84.226739pt;}
.y103{bottom:99.392000pt;}
.yb6{bottom:100.672000pt;}
.yc2{bottom:102.432000pt;}
.ybb{bottom:103.072000pt;}
.y14d{bottom:103.667868pt;}
.y191{bottom:105.632000pt;}
.y1b0{bottom:107.072000pt;}
.y131{bottom:111.232000pt;}
.y15f{bottom:111.586458pt;}
.y7f{bottom:112.832000pt;}
.yb5{bottom:113.152000pt;}
.y96{bottom:113.952000pt;}
.y102{bottom:114.752000pt;}
.yba{bottom:115.552000pt;}
.yc1{bottom:117.792000pt;}
.y190{bottom:120.992000pt;}
.y1af{bottom:122.432000pt;}
.y10d{bottom:124.530456pt;}
.y95{bottom:126.432000pt;}
.y59{bottom:126.752000pt;}
.y130{bottom:127.232000pt;}
.y108{bottom:128.134384pt;}
.y14e{bottom:128.134392pt;}
.y7e{bottom:128.192000pt;}
.y101{bottom:130.112000pt;}
.y165{bottom:130.288130pt;}
.y156{bottom:130.288135pt;}
.yc0{bottom:133.152000pt;}
.y18f{bottom:136.346667pt;}
.y1ae{bottom:137.786667pt;}
.y160{bottom:138.924639pt;}
.y58{bottom:142.106667pt;}
.y12f{bottom:143.226667pt;}
.y7d{bottom:143.386667pt;}
.y100{bottom:145.306667pt;}
.ybf{bottom:148.506667pt;}
.y18e{bottom:151.546667pt;}
.y14f{bottom:152.600916pt;}
.y1ad{bottom:153.146667pt;}
.y57{bottom:157.306667pt;}
.y7c{bottom:158.746667pt;}
.y12e{bottom:159.226667pt;}
.yff{bottom:160.666667pt;}
.ybe{bottom:160.986667pt;}
.y180{bottom:162.426667pt;}
.y161{bottom:166.284357pt;}
.y18d{bottom:166.906667pt;}
.y1ac{bottom:168.346667pt;}
.ye1{bottom:171.706667pt;}
.y56{bottom:172.666667pt;}
.y7b{bottom:174.106667pt;}
.y12d{bottom:175.226667pt;}
.yfe{bottom:176.026667pt;}
.y17f{bottom:177.786667pt;}
.y109{bottom:177.792526pt;}
.y150{bottom:177.792533pt;}
.y18c{bottom:182.266667pt;}
.y1ab{bottom:183.706667pt;}
.ye0{bottom:187.066667pt;}
.y55{bottom:188.026667pt;}
.y7a{bottom:189.466667pt;}
.y12a{bottom:191.226667pt;}
.yfd{bottom:191.386667pt;}
.y17e{bottom:193.146667pt;}
.y16b{bottom:193.636874pt;}
.y162{bottom:194.354812pt;}
.y18b{bottom:197.626667pt;}
.y1aa{bottom:199.066667pt;}
.y15c{bottom:199.387399pt;}
.y151{bottom:202.273415pt;}
.ydf{bottom:202.426667pt;}
.y54{bottom:203.386667pt;}
.y79{bottom:205.786667pt;}
.yfc{bottom:206.746667pt;}
.y16a{bottom:207.298786pt;}
.y17d{bottom:208.506667pt;}
.y18a{bottom:212.986667pt;}
.y15b{bottom:213.063669pt;}
.y1a9{bottom:214.426667pt;}
.yde{bottom:217.786667pt;}
.y53{bottom:218.746667pt;}
.y169{bottom:220.264321pt;}
.y163{bottom:220.982258pt;}
.y78{bottom:221.946667pt;}
.yfb{bottom:222.106667pt;}
.y12c{bottom:222.426667pt;}
.y17c{bottom:223.706667pt;}
.y15a{bottom:226.022024pt;}
.y10a{bottom:226.739931pt;}
.y152{bottom:226.739939pt;}
.y189{bottom:228.346667pt;}
.y1a8{bottom:229.786667pt;}
.ydd{bottom:233.146667pt;}
.y10f{bottom:233.222670pt;}
.y168{bottom:233.940590pt;}
.y52{bottom:234.106667pt;}
.yfa{bottom:237.306667pt;}
.y77{bottom:238.266667pt;}
.y17b{bottom:239.066667pt;}
.y159{bottom:239.705473pt;}
.y129{bottom:241.306667pt;}
.y188{bottom:243.546667pt;}
.y1a7{bottom:245.146667pt;}
.y10e{bottom:246.898940pt;}
.y167{bottom:247.616860pt;}
.y164{bottom:248.334798pt;}
.ydc{bottom:248.346667pt;}
.y51{bottom:249.306667pt;}
.y76{bottom:250.746667pt;}
.y153{bottom:251.206462pt;}
.yf9{bottom:252.666667pt;}
.y158{bottom:253.367385pt;}
.y17a{bottom:254.426667pt;}
.y128{bottom:256.666667pt;}
.y187{bottom:258.906667pt;}
.y1a6{bottom:260.346667pt;}
.ydb{bottom:263.706667pt;}
.y50{bottom:264.666667pt;}
.yf8{bottom:268.026667pt;}
.y179{bottom:269.786667pt;}
.y127{bottom:272.026667pt;}
.y186{bottom:274.266667pt;}
.y36{bottom:274.746667pt;}
.y10b{bottom:275.680159pt;}
.y154{bottom:275.680165pt;}
.y1a5{bottom:275.706667pt;}
.yda{bottom:279.066667pt;}
.y4f{bottom:280.026667pt;}
.y147{bottom:280.506667pt;}
.y148{bottom:280.640000pt;}
.yf7{bottom:283.386667pt;}
.y178{bottom:285.146667pt;}
.y166{bottom:286.484752pt;}
.y157{bottom:286.484777pt;}
.y126{bottom:287.386667pt;}
.y185{bottom:289.626667pt;}
.y35{bottom:290.106667pt;}
.y1a4{bottom:291.066667pt;}
.yd9{bottom:294.426667pt;}
.y4e{bottom:295.386667pt;}
.y177{bottom:298.266667pt;}
.yf6{bottom:298.746667pt;}
.y125{bottom:302.786667pt;}
.y184{bottom:305.026667pt;}
.y34{bottom:305.506667pt;}
.y1a3{bottom:306.466667pt;}
.yd8{bottom:309.826667pt;}
.y4d{bottom:310.786667pt;}
.yf5{bottom:314.146667pt;}
.y176{bottom:314.306667pt;}
.y183{bottom:317.506667pt;}
.y124{bottom:318.146667pt;}
.y33{bottom:320.866667pt;}
.y1a2{bottom:321.826667pt;}
.yd7{bottom:325.026667pt;}
.y4c{bottom:326.146667pt;}
.yf3{bottom:327.266667pt;}
.y175{bottom:330.306667pt;}
.y123{bottom:333.346667pt;}
.y9d{bottom:336.066667pt;}
.y32{bottom:336.226667pt;}
.y1a1{bottom:337.026667pt;}
.yb4{bottom:339.106667pt;}
.yd6{bottom:340.386667pt;}
.y4b{bottom:341.346667pt;}
.y122{bottom:345.826667pt;}
.y174{bottom:346.306667pt;}
.y31{bottom:351.426667pt;}
.y1a0{bottom:352.386667pt;}
.yd4{bottom:353.506667pt;}
.yb3{bottom:354.466667pt;}
.y4a{bottom:356.706667pt;}
.yf2{bottom:358.466667pt;}
.y173{bottom:362.306667pt;}
.y30{bottom:366.786667pt;}
.y19f{bottom:367.746667pt;}
.yb2{bottom:369.666667pt;}
.y49{bottom:372.066667pt;}
.yf1{bottom:374.466667pt;}
.y94{bottom:377.346667pt;}
.y172{bottom:378.306667pt;}
.y9c{bottom:382.146667pt;}
.y19e{bottom:383.106667pt;}
.y2f{bottom:384.066667pt;}
.yd3{bottom:384.866667pt;}
.yb1{bottom:385.026667pt;}
.y48{bottom:387.426667pt;}
.yf0{bottom:390.466667pt;}
.y93{bottom:392.706667pt;}
.yb9{bottom:395.426667pt;}
.y171{bottom:397.186667pt;}
.y9b{bottom:397.346667pt;}
.y19d{bottom:398.466667pt;}
.y2e{bottom:399.426667pt;}
.yb0{bottom:400.386667pt;}
.yd2{bottom:400.866667pt;}
.y47{bottom:402.786667pt;}
.yef{bottom:406.466667pt;}
.yb8{bottom:407.906667pt;}
.y92{bottom:408.066667pt;}
.y170{bottom:412.386667pt;}
.y9a{bottom:412.706667pt;}
.y19c{bottom:413.826667pt;}
.y2d{bottom:414.786667pt;}
.yaf{bottom:415.746667pt;}
.yd1{bottom:416.866667pt;}
.y46{bottom:418.146667pt;}
.yee{bottom:422.466667pt;}
.y91{bottom:423.426667pt;}
.y16f{bottom:427.746667pt;}
.y99{bottom:428.066667pt;}
.y19b{bottom:429.026667pt;}
.y2c{bottom:430.146667pt;}
.yae{bottom:431.106667pt;}
.yd0{bottom:432.866667pt;}
.y45{bottom:433.346667pt;}
.yed{bottom:438.466667pt;}
.y90{bottom:438.626667pt;}
.y16e{bottom:440.226667pt;}
.y98{bottom:443.426667pt;}
.y19a{bottom:444.386667pt;}
.y2b{bottom:445.506667pt;}
.yad{bottom:446.466667pt;}
.y44{bottom:448.706667pt;}
.ycf{bottom:448.866667pt;}
.y8f{bottom:453.986667pt;}
.yec{bottom:454.466667pt;}
.y97{bottom:455.906667pt;}
.y199{bottom:459.746667pt;}
.y2a{bottom:460.866667pt;}
.yac{bottom:461.666667pt;}
.y43{bottom:464.066667pt;}
.yce{bottom:464.866667pt;}
.y8e{bottom:469.346667pt;}
.yeb{bottom:470.466667pt;}
.y198{bottom:475.106667pt;}
.y29{bottom:476.226667pt;}
.yab{bottom:477.026667pt;}
.y42{bottom:479.426667pt;}
.ycd{bottom:480.866667pt;}
.y8d{bottom:484.706667pt;}
.yea{bottom:486.466667pt;}
.y197{bottom:490.466667pt;}
.y28{bottom:491.426667pt;}
.yaa{bottom:492.386667pt;}
.y41{bottom:494.786667pt;}
.ycc{bottom:496.866667pt;}
.y8c{bottom:500.066667pt;}
.ye9{bottom:502.466667pt;}
.y196{bottom:505.826667pt;}
.y27{bottom:506.786667pt;}
.ya9{bottom:507.746667pt;}
.y40{bottom:509.986667pt;}
.ycb{bottom:512.866667pt;}
.y8b{bottom:515.266667pt;}
.y75{bottom:518.146667pt;}
.ye8{bottom:518.466667pt;}
.y195{bottom:521.026667pt;}
.y26{bottom:522.146667pt;}
.ya8{bottom:523.106667pt;}
.y3f{bottom:525.346667pt;}
.yca{bottom:528.866667pt;}
.y8a{bottom:530.626667pt;}
.y74{bottom:533.506667pt;}
.ye6{bottom:534.466667pt;}
.y194{bottom:536.386667pt;}
.y25{bottom:537.533333pt;}
.ya7{bottom:538.493333pt;}
.y3e{bottom:540.733333pt;}
.ybd{bottom:541.853333pt;}
.yc9{bottom:544.893333pt;}
.y89{bottom:546.013333pt;}
.y73{bottom:548.893333pt;}
.ye5{bottom:550.493333pt;}
.y193{bottom:551.773333pt;}
.y24{bottom:552.893333pt;}
.ya6{bottom:553.693333pt;}
.ybc{bottom:554.333333pt;}
.y3d{bottom:556.093333pt;}
.y16d{bottom:557.213333pt;}
.yc8{bottom:560.893333pt;}
.y88{bottom:561.373333pt;}
.y72{bottom:565.213333pt;}
.ye4{bottom:566.493333pt;}
.y192{bottom:567.133333pt;}
.y23{bottom:568.253333pt;}
.ya5{bottom:569.053333pt;}
.y16c{bottom:569.533333pt;}
.y3c{bottom:571.453333pt;}
.yc7{bottom:576.893333pt;}
.y87{bottom:577.693333pt;}
.y71{bottom:581.533333pt;}
.ye3{bottom:582.493333pt;}
.y22{bottom:583.453333pt;}
.ya4{bottom:584.413333pt;}
.y146{bottom:585.853333pt;}
.y3b{bottom:586.813333pt;}
.yc6{bottom:592.893333pt;}
.y86{bottom:594.013333pt;}
.y70{bottom:597.853333pt;}
.ye2{bottom:598.493333pt;}
.y21{bottom:598.813333pt;}
.ya3{bottom:599.773333pt;}
.y3a{bottom:602.013333pt;}
.yc5{bottom:608.893333pt;}
.y85{bottom:610.173333pt;}
.y6f{bottom:613.053333pt;}
.y20{bottom:614.173333pt;}
.y145{bottom:614.813333pt;}
.ya2{bottom:615.133333pt;}
.y39{bottom:617.373333pt;}
.yc3{bottom:624.893333pt;}
.y84{bottom:625.533333pt;}
.y6e{bottom:628.413333pt;}
.y1f{bottom:629.533333pt;}
.ya1{bottom:630.493333pt;}
.y144{bottom:630.813333pt;}
.y38{bottom:632.733333pt;}
.y83{bottom:640.893333pt;}
.y6d{bottom:643.773333pt;}
.y1e{bottom:644.893333pt;}
.y37{bottom:645.213333pt;}
.y104{bottom:645.280000pt;}
.ya0{bottom:645.693333pt;}
.y143{bottom:646.813333pt;}
.y121{bottom:651.133333pt;}
.y82{bottom:656.253333pt;}
.y6c{bottom:659.133333pt;}
.y1d{bottom:660.093333pt;}
.y9f{bottom:661.053333pt;}
.y142{bottom:662.813333pt;}
.y120{bottom:666.493333pt;}
.y81{bottom:672.573333pt;}
.y9e{bottom:673.533333pt;}
.y6b{bottom:674.493333pt;}
.y1c{bottom:675.453333pt;}
.y13e{bottom:678.813333pt;}
.y11f{bottom:681.693333pt;}
.y80{bottom:688.733333pt;}
.y6a{bottom:689.693333pt;}
.y1b{bottom:690.813333pt;}
.y141{bottom:694.813333pt;}
.y11e{bottom:697.053333pt;}
.yb7{bottom:701.213333pt;}
.y69{bottom:705.053333pt;}
.y1a{bottom:706.173333pt;}
.y140{bottom:710.813333pt;}
.y11d{bottom:712.413333pt;}
.y68{bottom:720.413333pt;}
.y19{bottom:721.533333pt;}
.y11c{bottom:725.533333pt;}
.y13d{bottom:729.693333pt;}
.y67{bottom:735.773333pt;}
.y182{bottom:736.093333pt;}
.y18{bottom:736.893333pt;}
.y11b{bottom:741.533333pt;}
.y13c{bottom:745.053333pt;}
.y181{bottom:748.573333pt;}
.y66{bottom:751.133333pt;}
.y17{bottom:752.093333pt;}
.y11a{bottom:757.533333pt;}
.y13b{bottom:758.173333pt;}
.y65{bottom:766.493333pt;}
.y16{bottom:767.453333pt;}
.y118{bottom:773.533333pt;}
.y13a{bottom:774.213333pt;}
.y64{bottom:781.733333pt;}
.y15{bottom:782.853333pt;}
.y117{bottom:789.573333pt;}
.y139{bottom:790.213333pt;}
.y63{bottom:797.093333pt;}
.y14{bottom:800.133333pt;}
.y116{bottom:805.573333pt;}
.y138{bottom:806.213333pt;}
.y62{bottom:812.453333pt;}
.y13{bottom:815.973333pt;}
.y115{bottom:821.573333pt;}
.y137{bottom:822.213333pt;}
.y61{bottom:827.813333pt;}
.y12{bottom:832.773333pt;}
.y114{bottom:837.573333pt;}
.y132{bottom:838.213333pt;}
.y60{bottom:843.173333pt;}
.y11{bottom:849.573333pt;}
.y113{bottom:853.573333pt;}
.y136{bottom:854.213333pt;}
.y5f{bottom:858.533333pt;}
.y10{bottom:866.533333pt;}
.y112{bottom:869.573333pt;}
.y135{bottom:870.213333pt;}
.y5e{bottom:873.733333pt;}
.yf{bottom:883.333333pt;}
.y110{bottom:885.573333pt;}
.y5d{bottom:889.093333pt;}
.ye{bottom:900.293333pt;}
.y5c{bottom:904.453333pt;}
.yd{bottom:916.773333pt;}
.y5b{bottom:919.813333pt;}
.yc{bottom:932.613333pt;}
.y5a{bottom:935.173333pt;}
.y8{bottom:951.493333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.053333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h14{height:15.200000pt;}
.h18{height:15.232000pt;}
.ha{height:15.360000pt;}
.hb{height:15.392000pt;}
.hf{height:27.234837pt;}
.h10{height:28.129878pt;}
.h11{height:28.148200pt;}
.hd{height:30.560000pt;}
.hc{height:30.720000pt;}
.h5{height:37.479688pt;}
.h9{height:40.021563pt;}
.h6{height:40.031250pt;}
.h8{height:41.543750pt;}
.h16{height:43.782500pt;}
.h2{height:44.301250pt;}
.h4{height:45.156250pt;}
.h12{height:45.920000pt;}
.h13{height:46.560000pt;}
.h15{height:47.360000pt;}
.h3{height:49.105000pt;}
.h7{height:58.563750pt;}
.he{height:302.240000pt;}
.h17{height:302.314791pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:101.472000pt;}
.wd{width:101.600000pt;}
.we{width:101.632000pt;}
.wa{width:104.320000pt;}
.w8{width:117.280000pt;}
.w6{width:117.440000pt;}
.w7{width:117.472000pt;}
.wf{width:146.880000pt;}
.w10{width:146.906667pt;}
.w3{width:196.026667pt;}
.w4{width:196.186667pt;}
.w5{width:403.105375pt;}
.w9{width:471.773333pt;}
.wb{width:510.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.720000pt;}
.x48{left:19.520000pt;}
.x2f{left:28.793848pt;}
.x42{left:31.680000pt;}
.x2d{left:36.715450pt;}
.x47{left:38.880000pt;}
.x46{left:39.840000pt;}
.x45{left:40.800000pt;}
.x2c{left:44.637051pt;}
.x2b{left:50.384826pt;}
.x41{left:52.154667pt;}
.x24{left:71.999988pt;}
.x31{left:89.152000pt;}
.x1{left:96.031988pt;}
.x25{left:102.112000pt;}
.x2{left:109.471988pt;}
.x12{left:120.031988pt;}
.x4{left:139.706655pt;}
.x7{left:142.906655pt;}
.x13{left:144.026655pt;}
.x4a{left:163.402828pt;}
.x2e{left:167.001937pt;}
.x14{left:168.026655pt;}
.x43{left:189.160000pt;}
.x3c{left:194.106667pt;}
.x2a{left:195.306999pt;}
.x30{left:197.949820pt;}
.x44{left:205.960000pt;}
.x32{left:207.226667pt;}
.x38{left:220.026667pt;}
.x1c{left:231.706655pt;}
.x4f{left:236.826667pt;}
.x37{left:259.906655pt;}
.x4e{left:263.426655pt;}
.xe{left:264.386655pt;}
.x3b{left:266.146655pt;}
.xb{left:267.266655pt;}
.x1f{left:273.826655pt;}
.xa{left:281.506655pt;}
.x19{left:284.386655pt;}
.x1e{left:288.386655pt;}
.x9{left:293.026655pt;}
.x3d{left:296.226667pt;}
.xc{left:297.826655pt;}
.x27{left:298.946667pt;}
.xd{left:300.386655pt;}
.x49{left:309.186655pt;}
.x16{left:314.786655pt;}
.x11{left:320.386655pt;}
.x4c{left:323.426655pt;}
.x33{left:325.346667pt;}
.x17{left:337.506655pt;}
.x52{left:339.266655pt;}
.x1a{left:341.666655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.x50{left:384.386667pt;}
.x8{left:396.866655pt;}
.x3e{left:398.466667pt;}
.x34{left:443.453333pt;}
.x39{left:456.253333pt;}
.x3{left:460.733322pt;}
.x28{left:495.613333pt;}
.x3f{left:500.893333pt;}
.x4d{left:528.893322pt;}
.x51{left:532.093333pt;}
.x35{left:561.533333pt;}
.x3a{left:574.333333pt;}
.x36{left:583.973322pt;}
.x29{left:598.533322pt;}
.x40{left:603.173333pt;}
.x53{left:613.893322pt;}
.x23{left:621.093322pt;}
.x4b{left:622.853322pt;}
.x22{left:629.413322pt;}
.x10{left:636.933322pt;}
.x18{left:644.453322pt;}
.x1d{left:652.933322pt;}
.x20{left:665.893322pt;}
.x21{left:673.893322pt;}
.x1b{left:685.893322pt;}
.x15{left:686.853322pt;}
}




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