
    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_9ec14de3d06df7974b21edd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128418;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_1f9c6db16f4d5ebf75e640e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d0f1dabfe64d90636060d2ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_b4aeed6a7e0cc875fd548d7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_9dc1468d282a6e81f5ca0038.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_36bc4f0c8d0a360e22261246.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_b73c70024d4b2e2266edde98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a3b4eb1cf47b08c491c76b0e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_2b91d7ee4ff3650cf4a21a00.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.731445;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_b93fb330db37da893570edcb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_42c5b9bdad36df6f00dcb98a.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4ea581c73302a75cc92d6842.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a0502f1ad11fbef8ce87ea3b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_16bf50d9d2c746c2f14cfafc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.080566;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);}
.v6{vertical-align:-76.320000px;}
.v5{vertical-align:-74.880000px;}
.v4{vertical-align:-67.680000px;}
.v2{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:21.600000px;}
.v7{vertical-align:24.480000px;}
.ls19{letter-spacing:-2.268000px;}
.ls13{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.266000px;}
.lse{letter-spacing:-0.942000px;}
.ls12{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.810000px;}
.ls10{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.472200px;}
.ls1a{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.184200px;}
.ls8{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.152640px;}
.lsd{letter-spacing:0.184200px;}
.ls18{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.305400px;}
.ls21{letter-spacing:0.457800px;}
.ls20{letter-spacing:0.457920px;}
.ls3{letter-spacing:0.483840px;}
.ls7{letter-spacing:0.498240px;}
.ls11{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.627840px;}
.ls5{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.756000px;}
.lsc{letter-spacing:1.080000px;}
.ls1b{letter-spacing:7.505280px;}
.ls2{letter-spacing:19.800000px;}
.ls16{letter-spacing:40.625280px;}
.ls15{letter-spacing:87.480000px;}
.ls1f{letter-spacing:91.440000px;}
.ls0{letter-spacing:196.829760px;}
.ls14{letter-spacing:199.800000px;}
.ls1d{letter-spacing:2564.916000px;}
.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;}
}
.ws1{word-spacing:-54.720000px;}
.ws9{word-spacing:-22.680000px;}
.ws14{word-spacing:-17.280000px;}
.wsb{word-spacing:-17.172000px;}
.ws13{word-spacing:-17.017800px;}
.ws12{word-spacing:-16.865400px;}
.wsc{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.102200px;}
.wsd{word-spacing:-15.732000px;}
.wsf{word-spacing:-15.408000px;}
.ws3{word-spacing:-15.212160px;}
.wse{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.027960px;}
.ws2{word-spacing:-14.402160px;}
.ws10{word-spacing:-14.292000px;}
.ws8{word-spacing:-13.680000px;}
.ws6{word-spacing:-12.003960px;}
.ws7{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.160000px;}
.ws5{word-spacing:-10.440000px;}
.ws15{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
._16{margin-left:-4.522560px;}
._7{margin-left:-3.481920px;}
._2{margin-left:-2.185440px;}
._0{margin-left:-1.152000px;}
._1{width:1.212000px;}
._4{width:2.246400px;}
._8{width:3.418560px;}
._b{width:4.702560px;}
._c{width:5.746560px;}
._9{width:6.883200px;}
._a{width:8.028960px;}
._e{width:9.492480px;}
._d{width:11.323680px;}
._10{width:12.338400px;}
._15{width:13.406400px;}
._23{width:14.423040px;}
._f{width:15.427680px;}
._11{width:17.389440px;}
._12{width:18.555360px;}
._14{width:20.243520px;}
._1f{width:21.377280px;}
._19{width:22.880160px;}
._18{width:24.156960px;}
._17{width:25.283520px;}
._20{width:27.135840px;}
._21{width:28.442880px;}
._25{width:30.180480px;}
._24{width:31.184640px;}
._1b{width:32.987520px;}
._1c{width:34.669440px;}
._3{width:152.778240px;}
._22{width:195.120000px;}
._6{width:197.865120px;}
._5{width:199.104960px;}
._1e{width:206.762400px;}
._1a{width:847.716000px;}
._13{width:948.665760px;}
._1d{width:2046.265440px;}
.fc5{color:transparent;}
.fc6{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:11.520000px;}
.fs3{font-size:18.720000px;}
.fsc{font-size:24.480000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs8{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsd{font-size:83.520000px;}
.fs7{font-size:90.720000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.080000px;}
.y16{bottom:1.440000px;}
.y49{bottom:1.443000px;}
.y28{bottom:2.880000px;}
.y4d{bottom:2.910000px;}
.y47{bottom:3.240000px;}
.yfb{bottom:3.285000px;}
.y12{bottom:3.600000px;}
.y2d{bottom:4.680000px;}
.y106{bottom:4.710000px;}
.y3b{bottom:5.040000px;}
.y39{bottom:7.200000px;}
.y1a{bottom:7.560000px;}
.y7{bottom:7.920000px;}
.y1d{bottom:9.360000px;}
.y14{bottom:9.720000px;}
.y2b{bottom:10.440000px;}
.y8f{bottom:11.880000px;}
.y27{bottom:18.360000px;}
.y46{bottom:18.720000px;}
.y4b{bottom:18.756000px;}
.y99{bottom:19.080000px;}
.y9c{bottom:20.160000px;}
.y8d{bottom:20.520000px;}
.y91{bottom:20.550000px;}
.y19{bottom:21.270000px;}
.y88{bottom:21.600000px;}
.y3d{bottom:23.400000px;}
.y6{bottom:23.760000px;}
.y2f{bottom:30.240000px;}
.y18{bottom:30.270000px;}
.y26{bottom:33.840000px;}
.y45{bottom:34.200000px;}
.y98{bottom:36.360000px;}
.y5{bottom:37.080000px;}
.yf9{bottom:37.800000px;}
.y87{bottom:38.925000px;}
.y4{bottom:45.000000px;}
.y25{bottom:49.320000px;}
.y11{bottom:49.680000px;}
.y97{bottom:53.640000px;}
.yf8{bottom:54.720000px;}
.y86{bottom:54.756000px;}
.yb{bottom:55.116000px;}
.y51{bottom:55.476000px;}
.y2{bottom:60.120000px;}
.y36{bottom:64.800000px;}
.y44{bottom:65.160000px;}
.y24{bottom:65.205000px;}
.y3{bottom:65.880000px;}
.ya{bottom:68.796000px;}
.y96{bottom:70.920000px;}
.yf7{bottom:72.000000px;}
.y10{bottom:75.645000px;}
.y43{bottom:80.640000px;}
.y35{bottom:80.670000px;}
.y23{bottom:80.685000px;}
.y95{bottom:88.200000px;}
.y11d{bottom:90.396000px;}
.y157{bottom:91.116000px;}
.y42{bottom:96.120000px;}
.y34{bottom:96.150000px;}
.y22{bottom:96.165000px;}
.yf4{bottom:98.316000px;}
.ye{bottom:102.636000px;}
.y94{bottom:105.480000px;}
.yc0{bottom:105.876000px;}
.y156{bottom:108.396000px;}
.y11c{bottom:109.476000px;}
.y33{bottom:111.630000px;}
.y21{bottom:111.645000px;}
.yf3{bottom:117.396000px;}
.y4a{bottom:117.756000px;}
.y93{bottom:122.790000px;}
.ybf{bottom:124.596000px;}
.y155{bottom:125.676000px;}
.y32{bottom:127.110000px;}
.y20{bottom:127.125000px;}
.y41{bottom:127.470000px;}
.y11b{bottom:128.592000px;}
.yf2{bottom:136.152000px;}
.y31{bottom:142.590000px;}
.y154{bottom:142.632000px;}
.y40{bottom:142.950000px;}
.ybe{bottom:143.712000px;}
.y11a{bottom:147.312000px;}
.y48{bottom:149.112000px;}
.y3e{bottom:152.715000px;}
.yf1{bottom:155.235000px;}
.y3f{bottom:158.430000px;}
.y153{bottom:159.915000px;}
.ybd{bottom:162.795000px;}
.y119{bottom:166.395000px;}
.yf0{bottom:174.315000px;}
.y152{bottom:177.195000px;}
.y85{bottom:181.155000px;}
.ybc{bottom:181.875000px;}
.y118{bottom:185.475000px;}
.yef{bottom:193.035000px;}
.y151{bottom:194.475000px;}
.y84{bottom:200.235000px;}
.ybb{bottom:200.595000px;}
.y117{bottom:204.195000px;}
.y150{bottom:211.755000px;}
.yee{bottom:212.115000px;}
.y83{bottom:218.955000px;}
.yba{bottom:219.675000px;}
.y116{bottom:223.275000px;}
.y14f{bottom:229.035000px;}
.yed{bottom:231.195000px;}
.y82{bottom:238.035000px;}
.yb9{bottom:238.755000px;}
.y115{bottom:242.355000px;}
.y14e{bottom:246.315000px;}
.yec{bottom:250.275000px;}
.y81{bottom:257.115000px;}
.yb8{bottom:257.475000px;}
.y114{bottom:261.465000px;}
.y14d{bottom:263.985000px;}
.yeb{bottom:269.025000px;}
.y80{bottom:275.865000px;}
.yb7{bottom:276.585000px;}
.y113{bottom:280.185000px;}
.y14c{bottom:283.065000px;}
.yea{bottom:288.105000px;}
.y7f{bottom:294.945000px;}
.yb6{bottom:295.665000px;}
.y112{bottom:299.265000px;}
.y14b{bottom:301.785000px;}
.ye9{bottom:307.185000px;}
.y7e{bottom:314.025000px;}
.yb5{bottom:314.385000px;}
.y111{bottom:318.345000px;}
.y14a{bottom:320.865000px;}
.y3c{bottom:323.745000px;}
.ye8{bottom:325.905000px;}
.y7d{bottom:333.105000px;}
.yb4{bottom:333.465000px;}
.y110{bottom:337.065000px;}
.y149{bottom:339.945000px;}
.ye7{bottom:344.985000px;}
.y7c{bottom:351.825000px;}
.yb3{bottom:352.545000px;}
.y10f{bottom:356.145000px;}
.y148{bottom:358.665000px;}
.ye6{bottom:364.065000px;}
.y7b{bottom:370.905000px;}
.yb2{bottom:371.625000px;}
.y10e{bottom:375.225000px;}
.y147{bottom:377.745000px;}
.ye5{bottom:382.785000px;}
.y7a{bottom:389.985000px;}
.yb1{bottom:390.345000px;}
.y10d{bottom:393.945000px;}
.y146{bottom:396.870000px;}
.ye4{bottom:401.910000px;}
.y79{bottom:408.750000px;}
.yb0{bottom:409.470000px;}
.y3a{bottom:412.350000px;}
.y10c{bottom:413.070000px;}
.y145{bottom:415.950000px;}
.ye3{bottom:420.990000px;}
.y78{bottom:427.830000px;}
.yaf{bottom:428.550000px;}
.y38{bottom:431.790000px;}
.y10b{bottom:432.150000px;}
.y144{bottom:434.670000px;}
.ye2{bottom:440.070000px;}
.y77{bottom:446.910000px;}
.yae{bottom:447.270000px;}
.y10a{bottom:451.230000px;}
.y143{bottom:453.750000px;}
.y37{bottom:455.910000px;}
.ye1{bottom:458.790000px;}
.y30{bottom:459.510000px;}
.y76{bottom:465.630000px;}
.yad{bottom:466.350000px;}
.y109{bottom:469.950000px;}
.y142{bottom:472.830000px;}
.ye0{bottom:477.870000px;}
.y75{bottom:484.710000px;}
.yac{bottom:485.430000px;}
.y108{bottom:489.030000px;}
.y141{bottom:491.550000px;}
.ydf{bottom:496.950000px;}
.y74{bottom:503.790000px;}
.yab{bottom:504.510000px;}
.y107{bottom:505.230000px;}
.y140{bottom:510.630000px;}
.yde{bottom:515.670000px;}
.y11e{bottom:520.710000px;}
.y73{bottom:522.870000px;}
.yaa{bottom:523.230000px;}
.y105{bottom:525.030000px;}
.y13f{bottom:529.740000px;}
.ydd{bottom:534.780000px;}
.y72{bottom:541.620000px;}
.ya9{bottom:542.340000px;}
.y104{bottom:544.500000px;}
.y13e{bottom:548.460000px;}
.ydc{bottom:553.860000px;}
.y71{bottom:560.700000px;}
.ya8{bottom:561.420000px;}
.y103{bottom:564.300000px;}
.y13d{bottom:567.540000px;}
.ydb{bottom:572.940000px;}
.y70{bottom:579.780000px;}
.ya7{bottom:580.140000px;}
.y102{bottom:584.100000px;}
.y13c{bottom:586.620000px;}
.yda{bottom:591.660000px;}
.y6f{bottom:598.500000px;}
.ya6{bottom:599.220000px;}
.y101{bottom:603.900000px;}
.y13b{bottom:605.700000px;}
.yd9{bottom:610.740000px;}
.y2e{bottom:614.700000px;}
.y6e{bottom:617.580000px;}
.ya5{bottom:618.300000px;}
.y100{bottom:623.700000px;}
.y13a{bottom:624.420000px;}
.yd8{bottom:629.820000px;}
.y6d{bottom:636.660000px;}
.ya4{bottom:637.020000px;}
.yff{bottom:643.140000px;}
.y139{bottom:643.500000px;}
.yd7{bottom:648.540000px;}
.y6c{bottom:655.380000px;}
.ya3{bottom:656.100000px;}
.y138{bottom:662.610000px;}
.yfe{bottom:662.970000px;}
.yd6{bottom:667.650000px;}
.y6b{bottom:674.490000px;}
.ya2{bottom:675.210000px;}
.y137{bottom:681.330000px;}
.yd5{bottom:686.730000px;}
.y2c{bottom:691.050000px;}
.y6a{bottom:693.570000px;}
.ya1{bottom:694.290000px;}
.y136{bottom:700.410000px;}
.yd4{bottom:705.450000px;}
.y2a{bottom:710.130000px;}
.y69{bottom:712.650000px;}
.ya0{bottom:713.010000px;}
.y135{bottom:719.490000px;}
.yd3{bottom:724.530000px;}
.y68{bottom:731.370000px;}
.y134{bottom:738.210000px;}
.y29{bottom:740.730000px;}
.yfd{bottom:743.250000px;}
.yd2{bottom:743.610000px;}
.y1f{bottom:744.690000px;}
.y9f{bottom:749.010000px;}
.y67{bottom:750.450000px;}
.y133{bottom:757.290000px;}
.y9e{bottom:758.010000px;}
.yfc{bottom:759.450000px;}
.yd1{bottom:762.690000px;}
.y66{bottom:769.530000px;}
.y9d{bottom:774.210000px;}
.y132{bottom:776.370000px;}
.yd0{bottom:781.410000px;}
.y65{bottom:788.250000px;}
.yfa{bottom:794.730000px;}
.y131{bottom:795.495000px;}
.ycf{bottom:800.535000px;}
.y64{bottom:807.375000px;}
.y92{bottom:809.535000px;}
.yf6{bottom:812.775000px;}
.y130{bottom:814.215000px;}
.yce{bottom:819.615000px;}
.y63{bottom:826.455000px;}
.y12f{bottom:833.295000px;}
.ycd{bottom:838.335000px;}
.y9b{bottom:844.455000px;}
.y62{bottom:845.535000px;}
.y12e{bottom:852.375000px;}
.ycc{bottom:857.415000px;}
.y61{bottom:864.255000px;}
.y12d{bottom:871.095000px;}
.ycb{bottom:876.495000px;}
.y9a{bottom:879.735000px;}
.y60{bottom:883.335000px;}
.y1e{bottom:884.415000px;}
.y1c{bottom:888.015000px;}
.y12c{bottom:890.175000px;}
.yca{bottom:895.215000px;}
.yf5{bottom:899.535000px;}
.y5f{bottom:902.415000px;}
.y12b{bottom:909.255000px;}
.y1b{bottom:911.415000px;}
.yc9{bottom:914.295000px;}
.y17{bottom:915.015000px;}
.y5e{bottom:921.135000px;}
.y12a{bottom:928.335000px;}
.yc8{bottom:933.405000px;}
.y5d{bottom:940.245000px;}
.y90{bottom:947.085000px;}
.yc7{bottom:952.485000px;}
.y15{bottom:956.445000px;}
.y5c{bottom:959.325000px;}
.y13{bottom:960.045000px;}
.y8e{bottom:965.085000px;}
.y129{bottom:966.165000px;}
.yc6{bottom:971.205000px;}
.y5b{bottom:978.045000px;}
.y128{bottom:985.245000px;}
.yc5{bottom:990.285000px;}
.yf{bottom:990.645000px;}
.y5a{bottom:997.125000px;}
.y8c{bottom:1000.005000px;}
.y127{bottom:1003.965000px;}
.yc4{bottom:1009.365000px;}
.y59{bottom:1016.205000px;}
.y126{bottom:1023.045000px;}
.yc3{bottom:1028.085000px;}
.y58{bottom:1035.285000px;}
.y125{bottom:1042.125000px;}
.yc2{bottom:1047.165000px;}
.y8b{bottom:1053.285000px;}
.y57{bottom:1054.005000px;}
.y124{bottom:1060.845000px;}
.y8a{bottom:1071.330000px;}
.y56{bottom:1073.130000px;}
.y123{bottom:1079.970000px;}
.yc1{bottom:1083.210000px;}
.y89{bottom:1089.330000px;}
.y55{bottom:1092.210000px;}
.yd{bottom:1094.370000px;}
.y122{bottom:1099.050000px;}
.y54{bottom:1110.930000px;}
.yc{bottom:1112.730000px;}
.y121{bottom:1118.130000px;}
.y9{bottom:1125.690000px;}
.y1{bottom:1127.130000px;}
.y53{bottom:1130.010000px;}
.y120{bottom:1134.690000px;}
.y11f{bottom:1145.130000px;}
.y52{bottom:1149.090000px;}
.y50{bottom:1168.890000px;}
.y4f{bottom:1189.770000px;}
.y4e{bottom:1191.930000px;}
.y4c{bottom:1194.810000px;}
.h10{height:3.600000px;}
.h1a{height:3.960000px;}
.h15{height:5.650313px;}
.h8{height:5.729063px;}
.h11{height:5.805000px;}
.h28{height:11.458125px;}
.h26{height:15.156000px;}
.h2d{height:17.280000px;}
.h2e{height:17.316000px;}
.h7{height:18.372656px;}
.h5{height:18.674297px;}
.h39{height:18.720000px;}
.h3a{height:18.756000px;}
.h1b{height:19.080000px;}
.h38{height:19.116000px;}
.h20{height:19.440000px;}
.h16{height:23.400000px;}
.h35{height:24.025781px;}
.h1f{height:24.120000px;}
.h3c{height:24.671250px;}
.h14{height:29.664141px;}
.hf{height:30.600000px;}
.h24{height:31.356000px;}
.h31{height:34.200000px;}
.h34{height:34.236000px;}
.h30{height:34.560000px;}
.h1e{height:38.368125px;}
.hb{height:39.330000px;}
.h9{height:40.985156px;}
.h12{height:41.436000px;}
.h29{height:46.445625px;}
.h13{height:46.615078px;}
.h27{height:46.638281px;}
.h32{height:49.356000px;}
.h25{height:53.677969px;}
.h19{height:53.704687px;}
.h18{height:55.147500px;}
.h6{height:57.071250px;}
.h3e{height:59.328281px;}
.h2f{height:59.357813px;}
.h2c{height:60.952500px;}
.h3d{height:63.663750px;}
.h2a{height:64.978594px;}
.hc{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:66.757500px;}
.h36{height:69.086250px;}
.h2b{height:71.316000px;}
.h4{height:75.093750px;}
.h1c{height:76.356000px;}
.h22{height:78.449766px;}
.h2{height:82.836000px;}
.h3b{height:84.172500px;}
.h37{height:86.040000px;}
.h21{height:88.596000px;}
.he{height:91.428750px;}
.hd{height:96.516000px;}
.h33{height:136.836000px;}
.h17{height:139.716000px;}
.h1d{height:155.190000px;}
.h23{height:171.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:54.396000px;}
.w12{width:59.760000px;}
.w10{width:60.156000px;}
.w11{width:67.680000px;}
.wf{width:67.716000px;}
.w19{width:75.996000px;}
.w17{width:86.436000px;}
.w13{width:96.876000px;}
.wa{width:136.476000px;}
.wd{width:189.075000px;}
.w15{width:190.875000px;}
.wc{width:196.995000px;}
.we{width:197.025000px;}
.w7{width:212.145000px;}
.w9{width:222.945000px;}
.w16{width:241.995000px;}
.w14{width:242.745000px;}
.w1a{width:267.945000px;}
.w2{width:287.385000px;}
.w3{width:435.060000px;}
.w8{width:499.500000px;}
.w6{width:510.300000px;}
.wb{width:584.535000px;}
.w5{width:722.445000px;}
.w1{width:892.500000px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2e{left:9.000000px;}
.x3b{left:10.110000px;}
.x39{left:11.565000px;}
.x27{left:12.960000px;}
.x28{left:16.230000px;}
.x2a{left:17.280000px;}
.x29{left:20.550000px;}
.x32{left:22.680000px;}
.x21{left:24.120000px;}
.x1f{left:28.110000px;}
.x9{left:31.680000px;}
.x17{left:34.560000px;}
.x16{left:42.120000px;}
.x2d{left:44.640000px;}
.x2c{left:46.440000px;}
.xa{left:59.076000px;}
.x2b{left:68.079000px;}
.x1a{left:79.590000px;}
.x1c{left:82.110000px;}
.x1{left:84.636000px;}
.x15{left:85.716000px;}
.x35{left:104.070000px;}
.x7{left:107.319000px;}
.x5{left:108.395987px;}
.x2f{left:111.995987px;}
.x2{left:117.399000px;}
.x30{left:138.995987px;}
.x37{left:140.795987px;}
.x31{left:164.234987px;}
.x33{left:183.315000px;}
.xd{left:203.835000px;}
.x1e{left:206.025000px;}
.x10{left:214.995000px;}
.x18{left:222.915000px;}
.x19{left:227.625000px;}
.x13{left:240.944987px;}
.x8{left:287.034000px;}
.x20{left:291.345000px;}
.xb{left:308.634000px;}
.x38{left:328.425000px;}
.x22{left:352.230000px;}
.x6{left:361.224000px;}
.x3e{left:369.869987px;}
.x3{left:372.030000px;}
.x34{left:373.110000px;}
.x3a{left:415.590000px;}
.x1b{left:420.630000px;}
.x3f{left:446.579987px;}
.x14{left:467.819987px;}
.x3c{left:470.700000px;}
.x23{left:489.060000px;}
.x3d{left:547.410000px;}
.x24{left:549.930000px;}
.xf{left:584.490000px;}
.xc{left:595.290000px;}
.x1d{left:610.410000px;}
.x36{left:616.575000px;}
.x11{left:636.734987px;}
.x25{left:678.855000px;}
.x26{left:739.725000px;}
.x12{left:758.084987px;}
.xe{left:795.884987px;}
@media print{
.v6{vertical-align:-67.840000pt;}
.v5{vertical-align:-66.560000pt;}
.v4{vertical-align:-60.160000pt;}
.v2{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:19.200000pt;}
.v7{vertical-align:21.760000pt;}
.ls19{letter-spacing:-2.016000pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.125333pt;}
.lse{letter-spacing:-0.837333pt;}
.ls12{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.720000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.419733pt;}
.ls1a{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.163733pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.135680pt;}
.lsd{letter-spacing:0.163733pt;}
.ls18{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls21{letter-spacing:0.406933pt;}
.ls20{letter-spacing:0.407040pt;}
.ls3{letter-spacing:0.430080pt;}
.ls7{letter-spacing:0.442880pt;}
.ls11{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.558080pt;}
.ls5{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.672000pt;}
.lsc{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:6.671360pt;}
.ls2{letter-spacing:17.600000pt;}
.ls16{letter-spacing:36.111360pt;}
.ls15{letter-spacing:77.760000pt;}
.ls1f{letter-spacing:81.280000pt;}
.ls0{letter-spacing:174.959787pt;}
.ls14{letter-spacing:177.600000pt;}
.ls1d{letter-spacing:2279.925333pt;}
.ws1{word-spacing:-48.640000pt;}
.ws9{word-spacing:-20.160000pt;}
.ws14{word-spacing:-15.360000pt;}
.wsb{word-spacing:-15.264000pt;}
.ws13{word-spacing:-15.126933pt;}
.ws12{word-spacing:-14.991467pt;}
.wsc{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.313067pt;}
.wsd{word-spacing:-13.984000pt;}
.wsf{word-spacing:-13.696000pt;}
.ws3{word-spacing:-13.521920pt;}
.wse{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.358187pt;}
.ws2{word-spacing:-12.801920pt;}
.ws10{word-spacing:-12.704000pt;}
.ws8{word-spacing:-12.160000pt;}
.ws6{word-spacing:-10.670187pt;}
.ws7{word-spacing:-10.560000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws15{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
._16{margin-left:-4.020053pt;}
._7{margin-left:-3.095040pt;}
._2{margin-left:-1.942613pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.077333pt;}
._4{width:1.996800pt;}
._8{width:3.038720pt;}
._b{width:4.180053pt;}
._c{width:5.108053pt;}
._9{width:6.118400pt;}
._a{width:7.136853pt;}
._e{width:8.437760pt;}
._d{width:10.065493pt;}
._10{width:10.967467pt;}
._15{width:11.916800pt;}
._23{width:12.820480pt;}
._f{width:13.713493pt;}
._11{width:15.457280pt;}
._12{width:16.493653pt;}
._14{width:17.994240pt;}
._1f{width:19.002027pt;}
._19{width:20.337920pt;}
._18{width:21.472853pt;}
._17{width:22.474240pt;}
._20{width:24.120747pt;}
._21{width:25.282560pt;}
._25{width:26.827093pt;}
._24{width:27.719680pt;}
._1b{width:29.322240pt;}
._1c{width:30.817280pt;}
._3{width:135.802880pt;}
._22{width:173.440000pt;}
._6{width:175.880107pt;}
._5{width:176.982187pt;}
._1e{width:183.788800pt;}
._1a{width:753.525333pt;}
._13{width:843.258453pt;}
._1d{width:1818.902613pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.240000pt;}
.fs3{font-size:16.640000pt;}
.fsc{font-size:21.760000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs8{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsd{font-size:74.240000pt;}
.fs7{font-size:80.640000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.960000pt;}
.y16{bottom:1.280000pt;}
.y49{bottom:1.282667pt;}
.y28{bottom:2.560000pt;}
.y4d{bottom:2.586667pt;}
.y47{bottom:2.880000pt;}
.yfb{bottom:2.920000pt;}
.y12{bottom:3.200000pt;}
.y2d{bottom:4.160000pt;}
.y106{bottom:4.186667pt;}
.y3b{bottom:4.480000pt;}
.y39{bottom:6.400000pt;}
.y1a{bottom:6.720000pt;}
.y7{bottom:7.040000pt;}
.y1d{bottom:8.320000pt;}
.y14{bottom:8.640000pt;}
.y2b{bottom:9.280000pt;}
.y8f{bottom:10.560000pt;}
.y27{bottom:16.320000pt;}
.y46{bottom:16.640000pt;}
.y4b{bottom:16.672000pt;}
.y99{bottom:16.960000pt;}
.y9c{bottom:17.920000pt;}
.y8d{bottom:18.240000pt;}
.y91{bottom:18.266667pt;}
.y19{bottom:18.906667pt;}
.y88{bottom:19.200000pt;}
.y3d{bottom:20.800000pt;}
.y6{bottom:21.120000pt;}
.y2f{bottom:26.880000pt;}
.y18{bottom:26.906667pt;}
.y26{bottom:30.080000pt;}
.y45{bottom:30.400000pt;}
.y98{bottom:32.320000pt;}
.y5{bottom:32.960000pt;}
.yf9{bottom:33.600000pt;}
.y87{bottom:34.600000pt;}
.y4{bottom:40.000000pt;}
.y25{bottom:43.840000pt;}
.y11{bottom:44.160000pt;}
.y97{bottom:47.680000pt;}
.yf8{bottom:48.640000pt;}
.y86{bottom:48.672000pt;}
.yb{bottom:48.992000pt;}
.y51{bottom:49.312000pt;}
.y2{bottom:53.440000pt;}
.y36{bottom:57.600000pt;}
.y44{bottom:57.920000pt;}
.y24{bottom:57.960000pt;}
.y3{bottom:58.560000pt;}
.ya{bottom:61.152000pt;}
.y96{bottom:63.040000pt;}
.yf7{bottom:64.000000pt;}
.y10{bottom:67.240000pt;}
.y43{bottom:71.680000pt;}
.y35{bottom:71.706667pt;}
.y23{bottom:71.720000pt;}
.y95{bottom:78.400000pt;}
.y11d{bottom:80.352000pt;}
.y157{bottom:80.992000pt;}
.y42{bottom:85.440000pt;}
.y34{bottom:85.466667pt;}
.y22{bottom:85.480000pt;}
.yf4{bottom:87.392000pt;}
.ye{bottom:91.232000pt;}
.y94{bottom:93.760000pt;}
.yc0{bottom:94.112000pt;}
.y156{bottom:96.352000pt;}
.y11c{bottom:97.312000pt;}
.y33{bottom:99.226667pt;}
.y21{bottom:99.240000pt;}
.yf3{bottom:104.352000pt;}
.y4a{bottom:104.672000pt;}
.y93{bottom:109.146667pt;}
.ybf{bottom:110.752000pt;}
.y155{bottom:111.712000pt;}
.y32{bottom:112.986667pt;}
.y20{bottom:113.000000pt;}
.y41{bottom:113.306667pt;}
.y11b{bottom:114.304000pt;}
.yf2{bottom:121.024000pt;}
.y31{bottom:126.746667pt;}
.y154{bottom:126.784000pt;}
.y40{bottom:127.066667pt;}
.ybe{bottom:127.744000pt;}
.y11a{bottom:130.944000pt;}
.y48{bottom:132.544000pt;}
.y3e{bottom:135.746667pt;}
.yf1{bottom:137.986667pt;}
.y3f{bottom:140.826667pt;}
.y153{bottom:142.146667pt;}
.ybd{bottom:144.706667pt;}
.y119{bottom:147.906667pt;}
.yf0{bottom:154.946667pt;}
.y152{bottom:157.506667pt;}
.y85{bottom:161.026667pt;}
.ybc{bottom:161.666667pt;}
.y118{bottom:164.866667pt;}
.yef{bottom:171.586667pt;}
.y151{bottom:172.866667pt;}
.y84{bottom:177.986667pt;}
.ybb{bottom:178.306667pt;}
.y117{bottom:181.506667pt;}
.y150{bottom:188.226667pt;}
.yee{bottom:188.546667pt;}
.y83{bottom:194.626667pt;}
.yba{bottom:195.266667pt;}
.y116{bottom:198.466667pt;}
.y14f{bottom:203.586667pt;}
.yed{bottom:205.506667pt;}
.y82{bottom:211.586667pt;}
.yb9{bottom:212.226667pt;}
.y115{bottom:215.426667pt;}
.y14e{bottom:218.946667pt;}
.yec{bottom:222.466667pt;}
.y81{bottom:228.546667pt;}
.yb8{bottom:228.866667pt;}
.y114{bottom:232.413333pt;}
.y14d{bottom:234.653333pt;}
.yeb{bottom:239.133333pt;}
.y80{bottom:245.213333pt;}
.yb7{bottom:245.853333pt;}
.y113{bottom:249.053333pt;}
.y14c{bottom:251.613333pt;}
.yea{bottom:256.093333pt;}
.y7f{bottom:262.173333pt;}
.yb6{bottom:262.813333pt;}
.y112{bottom:266.013333pt;}
.y14b{bottom:268.253333pt;}
.ye9{bottom:273.053333pt;}
.y7e{bottom:279.133333pt;}
.yb5{bottom:279.453333pt;}
.y111{bottom:282.973333pt;}
.y14a{bottom:285.213333pt;}
.y3c{bottom:287.773333pt;}
.ye8{bottom:289.693333pt;}
.y7d{bottom:296.093333pt;}
.yb4{bottom:296.413333pt;}
.y110{bottom:299.613333pt;}
.y149{bottom:302.173333pt;}
.ye7{bottom:306.653333pt;}
.y7c{bottom:312.733333pt;}
.yb3{bottom:313.373333pt;}
.y10f{bottom:316.573333pt;}
.y148{bottom:318.813333pt;}
.ye6{bottom:323.613333pt;}
.y7b{bottom:329.693333pt;}
.yb2{bottom:330.333333pt;}
.y10e{bottom:333.533333pt;}
.y147{bottom:335.773333pt;}
.ye5{bottom:340.253333pt;}
.y7a{bottom:346.653333pt;}
.yb1{bottom:346.973333pt;}
.y10d{bottom:350.173333pt;}
.y146{bottom:352.773333pt;}
.ye4{bottom:357.253333pt;}
.y79{bottom:363.333333pt;}
.yb0{bottom:363.973333pt;}
.y3a{bottom:366.533333pt;}
.y10c{bottom:367.173333pt;}
.y145{bottom:369.733333pt;}
.ye3{bottom:374.213333pt;}
.y78{bottom:380.293333pt;}
.yaf{bottom:380.933333pt;}
.y38{bottom:383.813333pt;}
.y10b{bottom:384.133333pt;}
.y144{bottom:386.373333pt;}
.ye2{bottom:391.173333pt;}
.y77{bottom:397.253333pt;}
.yae{bottom:397.573333pt;}
.y10a{bottom:401.093333pt;}
.y143{bottom:403.333333pt;}
.y37{bottom:405.253333pt;}
.ye1{bottom:407.813333pt;}
.y30{bottom:408.453333pt;}
.y76{bottom:413.893333pt;}
.yad{bottom:414.533333pt;}
.y109{bottom:417.733333pt;}
.y142{bottom:420.293333pt;}
.ye0{bottom:424.773333pt;}
.y75{bottom:430.853333pt;}
.yac{bottom:431.493333pt;}
.y108{bottom:434.693333pt;}
.y141{bottom:436.933333pt;}
.ydf{bottom:441.733333pt;}
.y74{bottom:447.813333pt;}
.yab{bottom:448.453333pt;}
.y107{bottom:449.093333pt;}
.y140{bottom:453.893333pt;}
.yde{bottom:458.373333pt;}
.y11e{bottom:462.853333pt;}
.y73{bottom:464.773333pt;}
.yaa{bottom:465.093333pt;}
.y105{bottom:466.693333pt;}
.y13f{bottom:470.880000pt;}
.ydd{bottom:475.360000pt;}
.y72{bottom:481.440000pt;}
.ya9{bottom:482.080000pt;}
.y104{bottom:484.000000pt;}
.y13e{bottom:487.520000pt;}
.ydc{bottom:492.320000pt;}
.y71{bottom:498.400000pt;}
.ya8{bottom:499.040000pt;}
.y103{bottom:501.600000pt;}
.y13d{bottom:504.480000pt;}
.ydb{bottom:509.280000pt;}
.y70{bottom:515.360000pt;}
.ya7{bottom:515.680000pt;}
.y102{bottom:519.200000pt;}
.y13c{bottom:521.440000pt;}
.yda{bottom:525.920000pt;}
.y6f{bottom:532.000000pt;}
.ya6{bottom:532.640000pt;}
.y101{bottom:536.800000pt;}
.y13b{bottom:538.400000pt;}
.yd9{bottom:542.880000pt;}
.y2e{bottom:546.400000pt;}
.y6e{bottom:548.960000pt;}
.ya5{bottom:549.600000pt;}
.y100{bottom:554.400000pt;}
.y13a{bottom:555.040000pt;}
.yd8{bottom:559.840000pt;}
.y6d{bottom:565.920000pt;}
.ya4{bottom:566.240000pt;}
.yff{bottom:571.680000pt;}
.y139{bottom:572.000000pt;}
.yd7{bottom:576.480000pt;}
.y6c{bottom:582.560000pt;}
.ya3{bottom:583.200000pt;}
.y138{bottom:588.986667pt;}
.yfe{bottom:589.306667pt;}
.yd6{bottom:593.466667pt;}
.y6b{bottom:599.546667pt;}
.ya2{bottom:600.186667pt;}
.y137{bottom:605.626667pt;}
.yd5{bottom:610.426667pt;}
.y2c{bottom:614.266667pt;}
.y6a{bottom:616.506667pt;}
.ya1{bottom:617.146667pt;}
.y136{bottom:622.586667pt;}
.yd4{bottom:627.066667pt;}
.y2a{bottom:631.226667pt;}
.y69{bottom:633.466667pt;}
.ya0{bottom:633.786667pt;}
.y135{bottom:639.546667pt;}
.yd3{bottom:644.026667pt;}
.y68{bottom:650.106667pt;}
.y134{bottom:656.186667pt;}
.y29{bottom:658.426667pt;}
.yfd{bottom:660.666667pt;}
.yd2{bottom:660.986667pt;}
.y1f{bottom:661.946667pt;}
.y9f{bottom:665.786667pt;}
.y67{bottom:667.066667pt;}
.y133{bottom:673.146667pt;}
.y9e{bottom:673.786667pt;}
.yfc{bottom:675.066667pt;}
.yd1{bottom:677.946667pt;}
.y66{bottom:684.026667pt;}
.y9d{bottom:688.186667pt;}
.y132{bottom:690.106667pt;}
.yd0{bottom:694.586667pt;}
.y65{bottom:700.666667pt;}
.yfa{bottom:706.426667pt;}
.y131{bottom:707.106667pt;}
.ycf{bottom:711.586667pt;}
.y64{bottom:717.666667pt;}
.y92{bottom:719.586667pt;}
.yf6{bottom:722.466667pt;}
.y130{bottom:723.746667pt;}
.yce{bottom:728.546667pt;}
.y63{bottom:734.626667pt;}
.y12f{bottom:740.706667pt;}
.ycd{bottom:745.186667pt;}
.y9b{bottom:750.626667pt;}
.y62{bottom:751.586667pt;}
.y12e{bottom:757.666667pt;}
.ycc{bottom:762.146667pt;}
.y61{bottom:768.226667pt;}
.y12d{bottom:774.306667pt;}
.ycb{bottom:779.106667pt;}
.y9a{bottom:781.986667pt;}
.y60{bottom:785.186667pt;}
.y1e{bottom:786.146667pt;}
.y1c{bottom:789.346667pt;}
.y12c{bottom:791.266667pt;}
.yca{bottom:795.746667pt;}
.yf5{bottom:799.586667pt;}
.y5f{bottom:802.146667pt;}
.y12b{bottom:808.226667pt;}
.y1b{bottom:810.146667pt;}
.yc9{bottom:812.706667pt;}
.y17{bottom:813.346667pt;}
.y5e{bottom:818.786667pt;}
.y12a{bottom:825.186667pt;}
.yc8{bottom:829.693333pt;}
.y5d{bottom:835.773333pt;}
.y90{bottom:841.853333pt;}
.yc7{bottom:846.653333pt;}
.y15{bottom:850.173333pt;}
.y5c{bottom:852.733333pt;}
.y13{bottom:853.373333pt;}
.y8e{bottom:857.853333pt;}
.y129{bottom:858.813333pt;}
.yc6{bottom:863.293333pt;}
.y5b{bottom:869.373333pt;}
.y128{bottom:875.773333pt;}
.yc5{bottom:880.253333pt;}
.yf{bottom:880.573333pt;}
.y5a{bottom:886.333333pt;}
.y8c{bottom:888.893333pt;}
.y127{bottom:892.413333pt;}
.yc4{bottom:897.213333pt;}
.y59{bottom:903.293333pt;}
.y126{bottom:909.373333pt;}
.yc3{bottom:913.853333pt;}
.y58{bottom:920.253333pt;}
.y125{bottom:926.333333pt;}
.yc2{bottom:930.813333pt;}
.y8b{bottom:936.253333pt;}
.y57{bottom:936.893333pt;}
.y124{bottom:942.973333pt;}
.y8a{bottom:952.293333pt;}
.y56{bottom:953.893333pt;}
.y123{bottom:959.973333pt;}
.yc1{bottom:962.853333pt;}
.y89{bottom:968.293333pt;}
.y55{bottom:970.853333pt;}
.yd{bottom:972.773333pt;}
.y122{bottom:976.933333pt;}
.y54{bottom:987.493333pt;}
.yc{bottom:989.093333pt;}
.y121{bottom:993.893333pt;}
.y9{bottom:1000.613333pt;}
.y1{bottom:1001.893333pt;}
.y53{bottom:1004.453333pt;}
.y120{bottom:1008.613333pt;}
.y11f{bottom:1017.893333pt;}
.y52{bottom:1021.413333pt;}
.y50{bottom:1039.013333pt;}
.y4f{bottom:1057.573333pt;}
.y4e{bottom:1059.493333pt;}
.y4c{bottom:1062.053333pt;}
.h10{height:3.200000pt;}
.h1a{height:3.520000pt;}
.h15{height:5.022500pt;}
.h8{height:5.092500pt;}
.h11{height:5.160000pt;}
.h28{height:10.185000pt;}
.h26{height:13.472000pt;}
.h2d{height:15.360000pt;}
.h2e{height:15.392000pt;}
.h7{height:16.331250pt;}
.h5{height:16.599375pt;}
.h39{height:16.640000pt;}
.h3a{height:16.672000pt;}
.h1b{height:16.960000pt;}
.h38{height:16.992000pt;}
.h20{height:17.280000pt;}
.h16{height:20.800000pt;}
.h35{height:21.356250pt;}
.h1f{height:21.440000pt;}
.h3c{height:21.930000pt;}
.h14{height:26.368125pt;}
.hf{height:27.200000pt;}
.h24{height:27.872000pt;}
.h31{height:30.400000pt;}
.h34{height:30.432000pt;}
.h30{height:30.720000pt;}
.h1e{height:34.105000pt;}
.hb{height:34.960000pt;}
.h9{height:36.431250pt;}
.h12{height:36.832000pt;}
.h29{height:41.285000pt;}
.h13{height:41.435625pt;}
.h27{height:41.456250pt;}
.h32{height:43.872000pt;}
.h25{height:47.713750pt;}
.h19{height:47.737500pt;}
.h18{height:49.020000pt;}
.h6{height:50.730000pt;}
.h3e{height:52.736250pt;}
.h2f{height:52.762500pt;}
.h2c{height:54.180000pt;}
.h3d{height:56.590000pt;}
.h2a{height:57.758750pt;}
.hc{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:59.340000pt;}
.h36{height:61.410000pt;}
.h2b{height:63.392000pt;}
.h4{height:66.750000pt;}
.h1c{height:67.872000pt;}
.h22{height:69.733125pt;}
.h2{height:73.632000pt;}
.h3b{height:74.820000pt;}
.h37{height:76.480000pt;}
.h21{height:78.752000pt;}
.he{height:81.270000pt;}
.hd{height:85.792000pt;}
.h33{height:121.632000pt;}
.h17{height:124.192000pt;}
.h1d{height:137.946667pt;}
.h23{height:152.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:48.352000pt;}
.w12{width:53.120000pt;}
.w10{width:53.472000pt;}
.w11{width:60.160000pt;}
.wf{width:60.192000pt;}
.w19{width:67.552000pt;}
.w17{width:76.832000pt;}
.w13{width:86.112000pt;}
.wa{width:121.312000pt;}
.wd{width:168.066667pt;}
.w15{width:169.666667pt;}
.wc{width:175.106667pt;}
.we{width:175.133333pt;}
.w7{width:188.573333pt;}
.w9{width:198.173333pt;}
.w16{width:215.106667pt;}
.w14{width:215.773333pt;}
.w1a{width:238.173333pt;}
.w2{width:255.453333pt;}
.w3{width:386.720000pt;}
.w8{width:444.000000pt;}
.w6{width:453.600000pt;}
.wb{width:519.586667pt;}
.w5{width:642.173333pt;}
.w1{width:793.333333pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2e{left:8.000000pt;}
.x3b{left:8.986667pt;}
.x39{left:10.280000pt;}
.x27{left:11.520000pt;}
.x28{left:14.426667pt;}
.x2a{left:15.360000pt;}
.x29{left:18.266667pt;}
.x32{left:20.160000pt;}
.x21{left:21.440000pt;}
.x1f{left:24.986667pt;}
.x9{left:28.160000pt;}
.x17{left:30.720000pt;}
.x16{left:37.440000pt;}
.x2d{left:39.680000pt;}
.x2c{left:41.280000pt;}
.xa{left:52.512000pt;}
.x2b{left:60.514667pt;}
.x1a{left:70.746667pt;}
.x1c{left:72.986667pt;}
.x1{left:75.232000pt;}
.x15{left:76.192000pt;}
.x35{left:92.506667pt;}
.x7{left:95.394667pt;}
.x5{left:96.351988pt;}
.x2f{left:99.551988pt;}
.x2{left:104.354667pt;}
.x30{left:123.551988pt;}
.x37{left:125.151988pt;}
.x31{left:145.986655pt;}
.x33{left:162.946667pt;}
.xd{left:181.186667pt;}
.x1e{left:183.133333pt;}
.x10{left:191.106667pt;}
.x18{left:198.146667pt;}
.x19{left:202.333333pt;}
.x13{left:214.173322pt;}
.x8{left:255.141333pt;}
.x20{left:258.973333pt;}
.xb{left:274.341333pt;}
.x38{left:291.933333pt;}
.x22{left:313.093333pt;}
.x6{left:321.088000pt;}
.x3e{left:328.773322pt;}
.x3{left:330.693333pt;}
.x34{left:331.653333pt;}
.x3a{left:369.413333pt;}
.x1b{left:373.893333pt;}
.x3f{left:396.959988pt;}
.x14{left:415.839988pt;}
.x3c{left:418.400000pt;}
.x23{left:434.720000pt;}
.x3d{left:486.586667pt;}
.x24{left:488.826667pt;}
.xf{left:519.546667pt;}
.xc{left:529.146667pt;}
.x1d{left:542.586667pt;}
.x36{left:548.066667pt;}
.x11{left:565.986655pt;}
.x25{left:603.426667pt;}
.x26{left:657.533333pt;}
.x12{left:673.853322pt;}
.xe{left:707.453322pt;}
}




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