
    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_b618ab20889515057f470438.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1075971db53dea95ba2a8995.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_185df68a05014c72c28afe7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_db7e9fae698ebf6f9c776330.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_394af5db522805c3dafe63ce.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.333984;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_ae66a361635076faef1bb3ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_48c712db5af8e51208e4f426.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_58c4dab849e16cbeba45f23f.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.ve{vertical-align:-34.560000px;}
.v3{vertical-align:-23.040000px;}
.vd{vertical-align:-15.840000px;}
.v15{vertical-align:-13.680000px;}
.v5{vertical-align:-12.240000px;}
.v4{vertical-align:-10.800000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:2.160000px;}
.v8{vertical-align:5.040000px;}
.v2{vertical-align:10.800000px;}
.v7{vertical-align:12.240000px;}
.v17{vertical-align:14.400000px;}
.v14{vertical-align:19.440000px;}
.v19{vertical-align:22.320000px;}
.v10{vertical-align:38.160000px;}
.vf{vertical-align:40.320000px;}
.v9{vertical-align:43.320000px;}
.v1{vertical-align:46.080000px;}
.v16{vertical-align:48.240000px;}
.v6{vertical-align:52.560000px;}
.vb{vertical-align:58.440000px;}
.v18{vertical-align:59.760000px;}
.v11{vertical-align:111.600000px;}
.v13{vertical-align:145.440000px;}
.v12{vertical-align:157.680000px;}
.ls30{letter-spacing:-15.660000px;}
.ls35{letter-spacing:-0.774000px;}
.ls2d{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls34{letter-spacing:-0.253200px;}
.ls1{letter-spacing:-0.208200px;}
.lsc{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.ls2c{letter-spacing:0.089400px;}
.lsa{letter-spacing:0.106800px;}
.lse{letter-spacing:0.120000px;}
.ls31{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls16{letter-spacing:0.257760px;}
.ls29{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.363600px;}
.ls19{letter-spacing:0.399600px;}
.ls1a{letter-spacing:0.437760px;}
.ls10{letter-spacing:0.866880px;}
.ls28{letter-spacing:1.572480px;}
.ls2b{letter-spacing:1.830960px;}
.ls1c{letter-spacing:1.936080px;}
.lsf{letter-spacing:2.059200px;}
.ls2a{letter-spacing:2.082240px;}
.ls21{letter-spacing:2.460960px;}
.ls12{letter-spacing:3.252960px;}
.ls24{letter-spacing:4.030560px;}
.ls22{letter-spacing:4.062240px;}
.ls1b{letter-spacing:4.782240px;}
.ls32{letter-spacing:8.100000px;}
.ls23{letter-spacing:10.260000px;}
.ls2e{letter-spacing:12.420000px;}
.ls18{letter-spacing:13.679280px;}
.ls33{letter-spacing:16.506720px;}
.ls26{letter-spacing:16.739280px;}
.ls14{letter-spacing:17.279280px;}
.ls13{letter-spacing:19.812960px;}
.ls25{letter-spacing:20.590560px;}
.ls1d{letter-spacing:20.802240px;}
.lsd{letter-spacing:21.546720px;}
.ls20{letter-spacing:23.039280px;}
.ls1f{letter-spacing:32.142240px;}
.ls1e{letter-spacing:39.599280px;}
.ls17{letter-spacing:42.060960px;}
.ls2f{letter-spacing:46.026720px;}
.ls27{letter-spacing:81.470160px;}
.ls11{letter-spacing:140.952960px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws11{word-spacing:-41.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.146400px;}
.ws15{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.686800px;}
.ws8{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.166000px;}
.wsd{word-spacing:-10.529400px;}
.wsc{word-spacing:-10.440000px;}
.ws2{word-spacing:0.000000px;}
.wsf{word-spacing:4.727160px;}
.wsb{word-spacing:5.447160px;}
.wse{word-spacing:6.108480px;}
.ws12{word-spacing:39.180960px;}
.ws13{word-spacing:61.500960px;}
.ws14{word-spacing:88.693680px;}
.ws10{word-spacing:169.932960px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1165.366080px;}
._45{margin-left:-378.657360px;}
._43{margin-left:-276.940080px;}
._3d{margin-left:-203.405040px;}
._3e{margin-left:-183.549120px;}
._42{margin-left:-112.366800px;}
._47{margin-left:-106.916160px;}
._37{margin-left:-23.818080px;}
._39{margin-left:-19.656720px;}
._3b{margin-left:-11.560080px;}
._38{margin-left:-6.437040px;}
._14{margin-left:-4.300320px;}
._e{margin-left:-2.395440px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.679120px;}
._d{width:3.705120px;}
._12{width:5.516640px;}
._13{width:6.633360px;}
._9{width:8.104560px;}
._24{width:9.561600px;}
._1b{width:10.876320px;}
._2e{width:11.929200px;}
._8{width:12.967920px;}
._7{width:16.052640px;}
._16{width:17.785680px;}
._18{width:18.943920px;}
._17{width:20.916000px;}
._10{width:21.991680px;}
._f{width:23.007600px;}
._c{width:24.156720px;}
._b{width:25.205040px;}
._1f{width:26.225520px;}
._32{width:27.429840px;}
._1a{width:28.445760px;}
._19{width:29.783280px;}
._a{width:30.932880px;}
._15{width:32.031360px;}
._1d{width:33.681840px;}
._11{width:34.720560px;}
._1c{width:35.975520px;}
._26{width:37.042560px;}
._29{width:38.434320px;}
._23{width:39.776640px;}
._22{width:41.294160px;}
._31{width:43.266240px;}
._33{width:44.820000px;}
._2a{width:45.895680px;}
._4a{width:47.250720px;}
._40{width:49.743120px;}
._2d{width:50.832960px;}
._3a{width:51.888240px;}
._21{width:53.388480px;}
._20{width:54.597840px;}
._2b{width:56.234160px;}
._36{width:57.758160px;}
._25{width:60.357600px;}
._35{width:62.127600px;}
._4f{width:63.641520px;}
._34{width:66.788880px;}
._1e{width:71.629440px;}
._3f{width:72.787680px;}
._48{width:73.982880px;}
._30{width:77.807520px;}
._28{width:79.358880px;}
._27{width:80.436960px;}
._2f{width:89.318400px;}
._4c{width:100.553280px;}
._4b{width:101.592000px;}
._49{width:111.691440px;}
._44{width:113.480640px;}
._2c{width:116.113680px;}
._4e{width:119.921760px;}
._4d{width:122.841120px;}
._3c{width:124.257360px;}
._41{width:279.450000px;}
._46{width:363.780000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.ya5{bottom:5.805000px;}
.y5e{bottom:5.940000px;}
.y9{bottom:10.980000px;}
.y8{bottom:11.700000px;}
.ya8{bottom:19.800000px;}
.ya4{bottom:19.845000px;}
.y61{bottom:25.560000px;}
.y65{bottom:25.740000px;}
.ya{bottom:37.260000px;}
.y60{bottom:45.360000px;}
.y63{bottom:45.540000px;}
.y6a{bottom:45.570000px;}
.y6{bottom:54.180000px;}
.y128{bottom:82.080000px;}
.yda{bottom:83.700000px;}
.y13c{bottom:92.700000px;}
.ydd{bottom:94.500000px;}
.yb5{bottom:97.020000px;}
.y68{bottom:101.520000px;}
.y127{bottom:101.880000px;}
.yd9{bottom:103.500000px;}
.y38{bottom:104.760000px;}
.y13b{bottom:112.500000px;}
.ydc{bottom:114.300000px;}
.yb4{bottom:116.820000px;}
.y126{bottom:121.680000px;}
.yd8{bottom:123.300000px;}
.y37{bottom:124.560000px;}
.y13a{bottom:132.300000px;}
.ydb{bottom:134.280000px;}
.yb3{bottom:136.620000px;}
.y125{bottom:141.480000px;}
.yd7{bottom:143.280000px;}
.y36{bottom:144.360000px;}
.y139{bottom:152.310000px;}
.yb2{bottom:156.450000px;}
.y124{bottom:161.490000px;}
.y67{bottom:161.850000px;}
.yd6{bottom:163.110000px;}
.y35{bottom:164.190000px;}
.y138{bottom:172.110000px;}
.yb1{bottom:176.250000px;}
.y123{bottom:181.290000px;}
.yd5{bottom:182.910000px;}
.y34{bottom:183.990000px;}
.y137{bottom:191.910000px;}
.yb0{bottom:196.230000px;}
.y122{bottom:201.090000px;}
.yd4{bottom:202.710000px;}
.y33{bottom:203.970000px;}
.y136{bottom:211.710000px;}
.yaf{bottom:216.030000px;}
.y121{bottom:220.890000px;}
.y66{bottom:221.970000px;}
.yd3{bottom:222.510000px;}
.y32{bottom:223.770000px;}
.y135{bottom:231.510000px;}
.yae{bottom:235.830000px;}
.y120{bottom:240.690000px;}
.yd2{bottom:242.490000px;}
.y31{bottom:243.570000px;}
.yad{bottom:250.590000px;}
.y134{bottom:251.490000px;}
.y11f{bottom:260.670000px;}
.yd1{bottom:262.290000px;}
.y30{bottom:263.370000px;}
.yac{bottom:271.110000px;}
.y133{bottom:271.290000px;}
.y11e{bottom:280.470000px;}
.yd0{bottom:282.090000px;}
.y64{bottom:282.270000px;}
.y2f{bottom:283.170000px;}
.y132{bottom:291.090000px;}
.yab{bottom:291.810000px;}
.y11d{bottom:300.270000px;}
.ycf{bottom:301.890000px;}
.y2e{bottom:303.150000px;}
.y93{bottom:309.450000px;}
.y131{bottom:310.890000px;}
.yaa{bottom:312.330000px;}
.y11c{bottom:320.070000px;}
.yce{bottom:321.690000px;}
.y2d{bottom:322.950000px;}
.y92{bottom:329.250000px;}
.y130{bottom:330.690000px;}
.ya9{bottom:333.030000px;}
.y11b{bottom:339.870000px;}
.ycd{bottom:341.670000px;}
.y62{bottom:342.570000px;}
.y2c{bottom:342.750000px;}
.y91{bottom:349.050000px;}
.y12f{bottom:350.670000px;}
.ya7{bottom:353.550000px;}
.y11a{bottom:359.850000px;}
.ycc{bottom:361.470000px;}
.y2b{bottom:362.550000px;}
.y90{bottom:368.850000px;}
.y12e{bottom:370.470000px;}
.ya6{bottom:374.070000px;}
.y119{bottom:379.650000px;}
.ycb{bottom:381.270000px;}
.y2a{bottom:382.350000px;}
.ye4{bottom:383.070000px;}
.y8f{bottom:388.830000px;}
.y12d{bottom:390.270000px;}
.ya3{bottom:394.770000px;}
.y118{bottom:399.450000px;}
.yca{bottom:401.115000px;}
.y29{bottom:402.375000px;}
.y5f{bottom:402.915000px;}
.ye3{bottom:404.895000px;}
.y8e{bottom:408.675000px;}
.y12c{bottom:410.115000px;}
.ya2{bottom:415.335000px;}
.y10a{bottom:417.675000px;}
.y117{bottom:419.295000px;}
.yc9{bottom:420.915000px;}
.y28{bottom:422.175000px;}
.ye2{bottom:425.055000px;}
.y8d{bottom:428.475000px;}
.y12b{bottom:429.915000px;}
.y109{bottom:437.475000px;}
.y116{bottom:439.095000px;}
.yc8{bottom:440.895000px;}
.y27{bottom:441.975000px;}
.ye1{bottom:447.375000px;}
.y8c{bottom:448.275000px;}
.y12a{bottom:449.895000px;}
.ya1{bottom:455.835000px;}
.y108{bottom:457.275000px;}
.ye0{bottom:457.455000px;}
.y115{bottom:459.075000px;}
.yc7{bottom:460.695000px;}
.y26{bottom:461.775000px;}
.y5d{bottom:463.035000px;}
.y8b{bottom:468.075000px;}
.y129{bottom:469.695000px;}
.y107{bottom:477.075000px;}
.y114{bottom:478.875000px;}
.yc6{bottom:480.495000px;}
.y25{bottom:481.575000px;}
.y8a{bottom:488.055000px;}
.ydf{bottom:489.135000px;}
.y5c{bottom:489.495000px;}
.y106{bottom:496.875000px;}
.y113{bottom:498.675000px;}
.yc5{bottom:500.295000px;}
.y24{bottom:501.555000px;}
.ya0{bottom:501.915000px;}
.y89{bottom:507.855000px;}
.yde{bottom:509.115000px;}
.y5b{bottom:509.295000px;}
.y105{bottom:516.855000px;}
.y112{bottom:518.475000px;}
.yc4{bottom:520.095000px;}
.y23{bottom:521.355000px;}
.y9f{bottom:521.895000px;}
.y88{bottom:527.655000px;}
.y5a{bottom:529.095000px;}
.y104{bottom:536.655000px;}
.y111{bottom:538.275000px;}
.yc3{bottom:540.075000px;}
.y22{bottom:541.155000px;}
.y9e{bottom:541.695000px;}
.y87{bottom:547.455000px;}
.y59{bottom:549.075000px;}
.y103{bottom:556.455000px;}
.y110{bottom:558.255000px;}
.yc2{bottom:559.875000px;}
.y21{bottom:560.955000px;}
.y9d{bottom:561.495000px;}
.y86{bottom:567.255000px;}
.y58{bottom:568.875000px;}
.y102{bottom:576.255000px;}
.y10f{bottom:578.055000px;}
.yc1{bottom:579.675000px;}
.y20{bottom:580.755000px;}
.y9c{bottom:581.295000px;}
.y85{bottom:587.235000px;}
.y57{bottom:588.675000px;}
.y101{bottom:596.055000px;}
.y10e{bottom:597.855000px;}
.yc0{bottom:599.475000px;}
.y1f{bottom:600.735000px;}
.y9b{bottom:601.095000px;}
.y84{bottom:607.035000px;}
.y56{bottom:608.475000px;}
.y100{bottom:616.035000px;}
.y10d{bottom:617.655000px;}
.ybf{bottom:619.275000px;}
.y1e{bottom:620.535000px;}
.y9a{bottom:621.075000px;}
.y83{bottom:626.835000px;}
.y55{bottom:628.275000px;}
.yff{bottom:635.835000px;}
.y10c{bottom:637.455000px;}
.ybe{bottom:639.255000px;}
.y1d{bottom:640.335000px;}
.y99{bottom:640.875000px;}
.y82{bottom:646.635000px;}
.y54{bottom:648.255000px;}
.y10b{bottom:654.225000px;}
.yfe{bottom:655.665000px;}
.ybd{bottom:659.085000px;}
.y1c{bottom:660.165000px;}
.y98{bottom:660.705000px;}
.y81{bottom:666.465000px;}
.y53{bottom:668.085000px;}
.yfd{bottom:675.465000px;}
.ybc{bottom:678.885000px;}
.y1b{bottom:679.965000px;}
.y97{bottom:680.505000px;}
.y80{bottom:686.445000px;}
.y52{bottom:687.885000px;}
.yfc{bottom:695.265000px;}
.ybb{bottom:698.685000px;}
.y1a{bottom:699.945000px;}
.y96{bottom:700.305000px;}
.y7f{bottom:706.245000px;}
.y51{bottom:707.685000px;}
.yfb{bottom:715.245000px;}
.yba{bottom:718.485000px;}
.y19{bottom:719.745000px;}
.y95{bottom:720.285000px;}
.y7e{bottom:726.045000px;}
.y50{bottom:727.485000px;}
.yfa{bottom:735.045000px;}
.y94{bottom:736.845000px;}
.yb9{bottom:738.465000px;}
.y18{bottom:738.825000px;}
.y7d{bottom:745.845000px;}
.y4f{bottom:747.465000px;}
.yb8{bottom:758.265000px;}
.y17{bottom:763.845000px;}
.y7c{bottom:765.645000px;}
.y4e{bottom:767.265000px;}
.yb7{bottom:778.065000px;}
.y16{bottom:783.645000px;}
.y7b{bottom:785.625000px;}
.y4d{bottom:787.065000px;}
.yb6{bottom:797.865000px;}
.y15{bottom:803.445000px;}
.y7a{bottom:805.425000px;}
.y4c{bottom:806.865000px;}
.y14{bottom:823.245000px;}
.yf9{bottom:823.425000px;}
.y79{bottom:825.225000px;}
.y4b{bottom:826.665000px;}
.y13{bottom:843.045000px;}
.yf8{bottom:843.405000px;}
.y78{bottom:845.025000px;}
.y4a{bottom:846.645000px;}
.y12{bottom:863.025000px;}
.yf7{bottom:863.565000px;}
.y77{bottom:864.825000px;}
.y49{bottom:866.445000px;}
.y11{bottom:882.645000px;}
.yf6{bottom:883.905000px;}
.y76{bottom:884.805000px;}
.y48{bottom:886.245000px;}
.yf5{bottom:904.110000px;}
.y75{bottom:904.650000px;}
.y10{bottom:905.010000px;}
.y47{bottom:906.090000px;}
.yf4{bottom:921.030000px;}
.y74{bottom:924.450000px;}
.yf{bottom:924.810000px;}
.yf2{bottom:925.530000px;}
.y46{bottom:925.890000px;}
.yf3{bottom:930.750000px;}
.yef{bottom:935.970000px;}
.yf1{bottom:943.890000px;}
.y73{bottom:944.250000px;}
.ye{bottom:945.150000px;}
.y45{bottom:945.870000px;}
.yf0{bottom:953.430000px;}
.y72{bottom:964.050000px;}
.yd{bottom:964.410000px;}
.y44{bottom:965.670000px;}
.yee{bottom:968.370000px;}
.y71{bottom:984.030000px;}
.y43{bottom:985.470000px;}
.yed{bottom:990.330000px;}
.yc{bottom:990.690000px;}
.y70{bottom:1003.830000px;}
.y42{bottom:1005.270000px;}
.yec{bottom:1010.850000px;}
.yb{bottom:1022.550000px;}
.y6f{bottom:1023.630000px;}
.y41{bottom:1025.070000px;}
.yeb{bottom:1028.310000px;}
.yea{bottom:1038.750000px;}
.y6e{bottom:1043.430000px;}
.y40{bottom:1045.050000px;}
.y5{bottom:1050.630000px;}
.y6d{bottom:1063.230000px;}
.y3f{bottom:1064.850000px;}
.ye9{bottom:1068.270000px;}
.y4{bottom:1081.950000px;}
.y6c{bottom:1083.210000px;}
.y3e{bottom:1084.650000px;}
.ye8{bottom:1088.250000px;}
.y6b{bottom:1103.010000px;}
.y3d{bottom:1104.450000px;}
.ye7{bottom:1108.230000px;}
.y3{bottom:1112.730000px;}
.y69{bottom:1117.770000px;}
.y3c{bottom:1124.250000px;}
.ye6{bottom:1133.610000px;}
.y2{bottom:1143.690000px;}
.y3b{bottom:1144.230000px;}
.ye5{bottom:1160.820000px;}
.y3a{bottom:1164.060000px;}
.y1{bottom:1177.560000px;}
.y39{bottom:1193.400000px;}
.h15{height:19.800000px;}
.h14{height:19.836000px;}
.hd{height:19.980000px;}
.h5{height:21.240000px;}
.h8{height:27.432422px;}
.h7{height:29.464453px;}
.h13{height:39.600000px;}
.h12{height:40.472227px;}
.h24{height:41.493516px;}
.hb{height:42.164648px;}
.h3{height:46.736719px;}
.h25{height:49.255313px;}
.ha{height:52.417969px;}
.h4{height:53.573906px;}
.h6{height:59.383125px;}
.he{height:59.400000px;}
.h11{height:59.436000px;}
.hc{height:59.439023px;}
.h10{height:59.580000px;}
.hf{height:59.616000px;}
.h9{height:60.855469px;}
.h2{height:67.565039px;}
.h1c{height:83.254922px;}
.h1b{height:98.980664px;}
.h16{height:119.140664px;}
.h19{height:129.940664px;}
.h20{height:132.100664px;}
.h22{height:133.540664px;}
.h18{height:159.460664px;}
.h1f{height:160.900664px;}
.h1d{height:165.220664px;}
.h21{height:167.380664px;}
.h1a{height:167.500664px;}
.h17{height:176.020664px;}
.h23{height:178.900664px;}
.h1e{height:276.820664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:55.656000px;}
.w3{width:57.816000px;}
.w9{width:111.276000px;}
.w7{width:117.936000px;}
.w6{width:130.536000px;}
.w5{width:182.550000px;}
.w8{width:350.175000px;}
.wa{width:615.345000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x28{left:79.559987px;}
.x11{left:80.999987px;}
.x9{left:94.715987px;}
.x29{left:106.595987px;}
.x27{left:108.035987px;}
.xe{left:109.655987px;}
.x4{left:120.636000px;}
.x16{left:166.710000px;}
.x18{left:178.949987px;}
.xc{left:238.529987px;}
.x19{left:242.129987px;}
.x8{left:245.379000px;}
.x7{left:250.419000px;}
.x25{left:279.434987px;}
.xa{left:291.854987px;}
.x14{left:355.574987px;}
.xb{left:364.934987px;}
.xf{left:369.435000px;}
.x6{left:413.709000px;}
.x5{left:427.029000px;}
.x15{left:446.504987px;}
.xd{left:473.504987px;}
.x10{left:488.265000px;}
.x12{left:500.504987px;}
.x1a{left:519.764987px;}
.x26{left:527.504987px;}
.x13{left:576.284987px;}
.x1e{left:609.764987px;}
.x1d{left:623.264987px;}
.x1b{left:638.069987px;}
.x24{left:645.089987px;}
.x1f{left:646.169987px;}
.x20{left:647.609987px;}
.x22{left:648.689987px;}
.x23{left:656.609987px;}
.x21{left:683.429987px;}
.x1c{left:758.849987px;}
.x17{left:782.790000px;}
@media print{
.ve{vertical-align:-30.720000pt;}
.v3{vertical-align:-20.480000pt;}
.vd{vertical-align:-14.080000pt;}
.v15{vertical-align:-12.160000pt;}
.v5{vertical-align:-10.880000pt;}
.v4{vertical-align:-9.600000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:1.920000pt;}
.v8{vertical-align:4.480000pt;}
.v2{vertical-align:9.600000pt;}
.v7{vertical-align:10.880000pt;}
.v17{vertical-align:12.800000pt;}
.v14{vertical-align:17.280000pt;}
.v19{vertical-align:19.840000pt;}
.v10{vertical-align:33.920000pt;}
.vf{vertical-align:35.840000pt;}
.v9{vertical-align:38.506667pt;}
.v1{vertical-align:40.960000pt;}
.v16{vertical-align:42.880000pt;}
.v6{vertical-align:46.720000pt;}
.vb{vertical-align:51.946667pt;}
.v18{vertical-align:53.120000pt;}
.v11{vertical-align:99.200000pt;}
.v13{vertical-align:129.280000pt;}
.v12{vertical-align:140.160000pt;}
.ls30{letter-spacing:-13.920000pt;}
.ls35{letter-spacing:-0.688000pt;}
.ls2d{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls34{letter-spacing:-0.225067pt;}
.ls1{letter-spacing:-0.185067pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls2c{letter-spacing:0.079467pt;}
.lsa{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106667pt;}
.ls31{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls16{letter-spacing:0.229120pt;}
.ls29{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.323200pt;}
.ls19{letter-spacing:0.355200pt;}
.ls1a{letter-spacing:0.389120pt;}
.ls10{letter-spacing:0.770560pt;}
.ls28{letter-spacing:1.397760pt;}
.ls2b{letter-spacing:1.627520pt;}
.ls1c{letter-spacing:1.720960pt;}
.lsf{letter-spacing:1.830400pt;}
.ls2a{letter-spacing:1.850880pt;}
.ls21{letter-spacing:2.187520pt;}
.ls12{letter-spacing:2.891520pt;}
.ls24{letter-spacing:3.582720pt;}
.ls22{letter-spacing:3.610880pt;}
.ls1b{letter-spacing:4.250880pt;}
.ls32{letter-spacing:7.200000pt;}
.ls23{letter-spacing:9.120000pt;}
.ls2e{letter-spacing:11.040000pt;}
.ls18{letter-spacing:12.159360pt;}
.ls33{letter-spacing:14.672640pt;}
.ls26{letter-spacing:14.879360pt;}
.ls14{letter-spacing:15.359360pt;}
.ls13{letter-spacing:17.611520pt;}
.ls25{letter-spacing:18.302720pt;}
.ls1d{letter-spacing:18.490880pt;}
.lsd{letter-spacing:19.152640pt;}
.ls20{letter-spacing:20.479360pt;}
.ls1f{letter-spacing:28.570880pt;}
.ls1e{letter-spacing:35.199360pt;}
.ls17{letter-spacing:37.387520pt;}
.ls2f{letter-spacing:40.912640pt;}
.ls27{letter-spacing:72.417920pt;}
.ls11{letter-spacing:125.291520pt;}
.wsa{word-spacing:-53.120000pt;}
.ws11{word-spacing:-37.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.463467pt;}
.ws15{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.096533pt;}
.ws16{word-spacing:-13.054933pt;}
.ws8{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.592000pt;}
.wsd{word-spacing:-9.359467pt;}
.wsc{word-spacing:-9.280000pt;}
.ws2{word-spacing:0.000000pt;}
.wsf{word-spacing:4.201920pt;}
.wsb{word-spacing:4.841920pt;}
.wse{word-spacing:5.429760pt;}
.ws12{word-spacing:34.827520pt;}
.ws13{word-spacing:54.667520pt;}
.ws14{word-spacing:78.838827pt;}
.ws10{word-spacing:151.051520pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1035.880960pt;}
._45{margin-left:-336.584320pt;}
._43{margin-left:-246.168960pt;}
._3d{margin-left:-180.804480pt;}
._3e{margin-left:-163.154773pt;}
._42{margin-left:-99.881600pt;}
._47{margin-left:-95.036587pt;}
._37{margin-left:-21.171627pt;}
._39{margin-left:-17.472640pt;}
._3b{margin-left:-10.275627pt;}
._38{margin-left:-5.721813pt;}
._14{margin-left:-3.822507pt;}
._e{margin-left:-2.129280pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.381440pt;}
._d{width:3.293440pt;}
._12{width:4.903680pt;}
._13{width:5.896320pt;}
._9{width:7.204053pt;}
._24{width:8.499200pt;}
._1b{width:9.667840pt;}
._2e{width:10.603733pt;}
._8{width:11.527040pt;}
._7{width:14.269013pt;}
._16{width:15.809493pt;}
._18{width:16.839040pt;}
._17{width:18.592000pt;}
._10{width:19.548160pt;}
._f{width:20.451200pt;}
._c{width:21.472640pt;}
._b{width:22.404480pt;}
._1f{width:23.311573pt;}
._32{width:24.382080pt;}
._1a{width:25.285120pt;}
._19{width:26.474027pt;}
._a{width:27.495893pt;}
._15{width:28.472320pt;}
._1d{width:29.939413pt;}
._11{width:30.862720pt;}
._1c{width:31.978240pt;}
._26{width:32.926720pt;}
._29{width:34.163840pt;}
._23{width:35.357013pt;}
._22{width:36.705920pt;}
._31{width:38.458880pt;}
._33{width:39.840000pt;}
._2a{width:40.796160pt;}
._4a{width:42.000640pt;}
._40{width:44.216107pt;}
._2d{width:45.184853pt;}
._3a{width:46.122880pt;}
._21{width:47.456427pt;}
._20{width:48.531413pt;}
._2b{width:49.985920pt;}
._36{width:51.340587pt;}
._25{width:53.651200pt;}
._35{width:55.224533pt;}
._4f{width:56.570240pt;}
._34{width:59.367893pt;}
._1e{width:63.670613pt;}
._3f{width:64.700160pt;}
._48{width:65.762560pt;}
._30{width:69.162240pt;}
._28{width:70.541227pt;}
._27{width:71.499520pt;}
._2f{width:79.394133pt;}
._4c{width:89.380693pt;}
._4b{width:90.304000pt;}
._49{width:99.281280pt;}
._44{width:100.871680pt;}
._2c{width:103.212160pt;}
._4e{width:106.597120pt;}
._4d{width:109.192107pt;}
._3c{width:110.450987pt;}
._41{width:248.400000pt;}
._46{width:323.360000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.ya5{bottom:5.160000pt;}
.y5e{bottom:5.280000pt;}
.y9{bottom:9.760000pt;}
.y8{bottom:10.400000pt;}
.ya8{bottom:17.600000pt;}
.ya4{bottom:17.640000pt;}
.y61{bottom:22.720000pt;}
.y65{bottom:22.880000pt;}
.ya{bottom:33.120000pt;}
.y60{bottom:40.320000pt;}
.y63{bottom:40.480000pt;}
.y6a{bottom:40.506667pt;}
.y6{bottom:48.160000pt;}
.y128{bottom:72.960000pt;}
.yda{bottom:74.400000pt;}
.y13c{bottom:82.400000pt;}
.ydd{bottom:84.000000pt;}
.yb5{bottom:86.240000pt;}
.y68{bottom:90.240000pt;}
.y127{bottom:90.560000pt;}
.yd9{bottom:92.000000pt;}
.y38{bottom:93.120000pt;}
.y13b{bottom:100.000000pt;}
.ydc{bottom:101.600000pt;}
.yb4{bottom:103.840000pt;}
.y126{bottom:108.160000pt;}
.yd8{bottom:109.600000pt;}
.y37{bottom:110.720000pt;}
.y13a{bottom:117.600000pt;}
.ydb{bottom:119.360000pt;}
.yb3{bottom:121.440000pt;}
.y125{bottom:125.760000pt;}
.yd7{bottom:127.360000pt;}
.y36{bottom:128.320000pt;}
.y139{bottom:135.386667pt;}
.yb2{bottom:139.066667pt;}
.y124{bottom:143.546667pt;}
.y67{bottom:143.866667pt;}
.yd6{bottom:144.986667pt;}
.y35{bottom:145.946667pt;}
.y138{bottom:152.986667pt;}
.yb1{bottom:156.666667pt;}
.y123{bottom:161.146667pt;}
.yd5{bottom:162.586667pt;}
.y34{bottom:163.546667pt;}
.y137{bottom:170.586667pt;}
.yb0{bottom:174.426667pt;}
.y122{bottom:178.746667pt;}
.yd4{bottom:180.186667pt;}
.y33{bottom:181.306667pt;}
.y136{bottom:188.186667pt;}
.yaf{bottom:192.026667pt;}
.y121{bottom:196.346667pt;}
.y66{bottom:197.306667pt;}
.yd3{bottom:197.786667pt;}
.y32{bottom:198.906667pt;}
.y135{bottom:205.786667pt;}
.yae{bottom:209.626667pt;}
.y120{bottom:213.946667pt;}
.yd2{bottom:215.546667pt;}
.y31{bottom:216.506667pt;}
.yad{bottom:222.746667pt;}
.y134{bottom:223.546667pt;}
.y11f{bottom:231.706667pt;}
.yd1{bottom:233.146667pt;}
.y30{bottom:234.106667pt;}
.yac{bottom:240.986667pt;}
.y133{bottom:241.146667pt;}
.y11e{bottom:249.306667pt;}
.yd0{bottom:250.746667pt;}
.y64{bottom:250.906667pt;}
.y2f{bottom:251.706667pt;}
.y132{bottom:258.746667pt;}
.yab{bottom:259.386667pt;}
.y11d{bottom:266.906667pt;}
.ycf{bottom:268.346667pt;}
.y2e{bottom:269.466667pt;}
.y93{bottom:275.066667pt;}
.y131{bottom:276.346667pt;}
.yaa{bottom:277.626667pt;}
.y11c{bottom:284.506667pt;}
.yce{bottom:285.946667pt;}
.y2d{bottom:287.066667pt;}
.y92{bottom:292.666667pt;}
.y130{bottom:293.946667pt;}
.ya9{bottom:296.026667pt;}
.y11b{bottom:302.106667pt;}
.ycd{bottom:303.706667pt;}
.y62{bottom:304.506667pt;}
.y2c{bottom:304.666667pt;}
.y91{bottom:310.266667pt;}
.y12f{bottom:311.706667pt;}
.ya7{bottom:314.266667pt;}
.y11a{bottom:319.866667pt;}
.ycc{bottom:321.306667pt;}
.y2b{bottom:322.266667pt;}
.y90{bottom:327.866667pt;}
.y12e{bottom:329.306667pt;}
.ya6{bottom:332.506667pt;}
.y119{bottom:337.466667pt;}
.ycb{bottom:338.906667pt;}
.y2a{bottom:339.866667pt;}
.ye4{bottom:340.506667pt;}
.y8f{bottom:345.626667pt;}
.y12d{bottom:346.906667pt;}
.ya3{bottom:350.906667pt;}
.y118{bottom:355.066667pt;}
.yca{bottom:356.546667pt;}
.y29{bottom:357.666667pt;}
.y5f{bottom:358.146667pt;}
.ye3{bottom:359.906667pt;}
.y8e{bottom:363.266667pt;}
.y12c{bottom:364.546667pt;}
.ya2{bottom:369.186667pt;}
.y10a{bottom:371.266667pt;}
.y117{bottom:372.706667pt;}
.yc9{bottom:374.146667pt;}
.y28{bottom:375.266667pt;}
.ye2{bottom:377.826667pt;}
.y8d{bottom:380.866667pt;}
.y12b{bottom:382.146667pt;}
.y109{bottom:388.866667pt;}
.y116{bottom:390.306667pt;}
.yc8{bottom:391.906667pt;}
.y27{bottom:392.866667pt;}
.ye1{bottom:397.666667pt;}
.y8c{bottom:398.466667pt;}
.y12a{bottom:399.906667pt;}
.ya1{bottom:405.186667pt;}
.y108{bottom:406.466667pt;}
.ye0{bottom:406.626667pt;}
.y115{bottom:408.066667pt;}
.yc7{bottom:409.506667pt;}
.y26{bottom:410.466667pt;}
.y5d{bottom:411.586667pt;}
.y8b{bottom:416.066667pt;}
.y129{bottom:417.506667pt;}
.y107{bottom:424.066667pt;}
.y114{bottom:425.666667pt;}
.yc6{bottom:427.106667pt;}
.y25{bottom:428.066667pt;}
.y8a{bottom:433.826667pt;}
.ydf{bottom:434.786667pt;}
.y5c{bottom:435.106667pt;}
.y106{bottom:441.666667pt;}
.y113{bottom:443.266667pt;}
.yc5{bottom:444.706667pt;}
.y24{bottom:445.826667pt;}
.ya0{bottom:446.146667pt;}
.y89{bottom:451.426667pt;}
.yde{bottom:452.546667pt;}
.y5b{bottom:452.706667pt;}
.y105{bottom:459.426667pt;}
.y112{bottom:460.866667pt;}
.yc4{bottom:462.306667pt;}
.y23{bottom:463.426667pt;}
.y9f{bottom:463.906667pt;}
.y88{bottom:469.026667pt;}
.y5a{bottom:470.306667pt;}
.y104{bottom:477.026667pt;}
.y111{bottom:478.466667pt;}
.yc3{bottom:480.066667pt;}
.y22{bottom:481.026667pt;}
.y9e{bottom:481.506667pt;}
.y87{bottom:486.626667pt;}
.y59{bottom:488.066667pt;}
.y103{bottom:494.626667pt;}
.y110{bottom:496.226667pt;}
.yc2{bottom:497.666667pt;}
.y21{bottom:498.626667pt;}
.y9d{bottom:499.106667pt;}
.y86{bottom:504.226667pt;}
.y58{bottom:505.666667pt;}
.y102{bottom:512.226667pt;}
.y10f{bottom:513.826667pt;}
.yc1{bottom:515.266667pt;}
.y20{bottom:516.226667pt;}
.y9c{bottom:516.706667pt;}
.y85{bottom:521.986667pt;}
.y57{bottom:523.266667pt;}
.y101{bottom:529.826667pt;}
.y10e{bottom:531.426667pt;}
.yc0{bottom:532.866667pt;}
.y1f{bottom:533.986667pt;}
.y9b{bottom:534.306667pt;}
.y84{bottom:539.586667pt;}
.y56{bottom:540.866667pt;}
.y100{bottom:547.586667pt;}
.y10d{bottom:549.026667pt;}
.ybf{bottom:550.466667pt;}
.y1e{bottom:551.586667pt;}
.y9a{bottom:552.066667pt;}
.y83{bottom:557.186667pt;}
.y55{bottom:558.466667pt;}
.yff{bottom:565.186667pt;}
.y10c{bottom:566.626667pt;}
.ybe{bottom:568.226667pt;}
.y1d{bottom:569.186667pt;}
.y99{bottom:569.666667pt;}
.y82{bottom:574.786667pt;}
.y54{bottom:576.226667pt;}
.y10b{bottom:581.533333pt;}
.yfe{bottom:582.813333pt;}
.ybd{bottom:585.853333pt;}
.y1c{bottom:586.813333pt;}
.y98{bottom:587.293333pt;}
.y81{bottom:592.413333pt;}
.y53{bottom:593.853333pt;}
.yfd{bottom:600.413333pt;}
.ybc{bottom:603.453333pt;}
.y1b{bottom:604.413333pt;}
.y97{bottom:604.893333pt;}
.y80{bottom:610.173333pt;}
.y52{bottom:611.453333pt;}
.yfc{bottom:618.013333pt;}
.ybb{bottom:621.053333pt;}
.y1a{bottom:622.173333pt;}
.y96{bottom:622.493333pt;}
.y7f{bottom:627.773333pt;}
.y51{bottom:629.053333pt;}
.yfb{bottom:635.773333pt;}
.yba{bottom:638.653333pt;}
.y19{bottom:639.773333pt;}
.y95{bottom:640.253333pt;}
.y7e{bottom:645.373333pt;}
.y50{bottom:646.653333pt;}
.yfa{bottom:653.373333pt;}
.y94{bottom:654.973333pt;}
.yb9{bottom:656.413333pt;}
.y18{bottom:656.733333pt;}
.y7d{bottom:662.973333pt;}
.y4f{bottom:664.413333pt;}
.yb8{bottom:674.013333pt;}
.y17{bottom:678.973333pt;}
.y7c{bottom:680.573333pt;}
.y4e{bottom:682.013333pt;}
.yb7{bottom:691.613333pt;}
.y16{bottom:696.573333pt;}
.y7b{bottom:698.333333pt;}
.y4d{bottom:699.613333pt;}
.yb6{bottom:709.213333pt;}
.y15{bottom:714.173333pt;}
.y7a{bottom:715.933333pt;}
.y4c{bottom:717.213333pt;}
.y14{bottom:731.773333pt;}
.yf9{bottom:731.933333pt;}
.y79{bottom:733.533333pt;}
.y4b{bottom:734.813333pt;}
.y13{bottom:749.373333pt;}
.yf8{bottom:749.693333pt;}
.y78{bottom:751.133333pt;}
.y4a{bottom:752.573333pt;}
.y12{bottom:767.133333pt;}
.yf7{bottom:767.613333pt;}
.y77{bottom:768.733333pt;}
.y49{bottom:770.173333pt;}
.y11{bottom:784.573333pt;}
.yf6{bottom:785.693333pt;}
.y76{bottom:786.493333pt;}
.y48{bottom:787.773333pt;}
.yf5{bottom:803.653333pt;}
.y75{bottom:804.133333pt;}
.y10{bottom:804.453333pt;}
.y47{bottom:805.413333pt;}
.yf4{bottom:818.693333pt;}
.y74{bottom:821.733333pt;}
.yf{bottom:822.053333pt;}
.yf2{bottom:822.693333pt;}
.y46{bottom:823.013333pt;}
.yf3{bottom:827.333333pt;}
.yef{bottom:831.973333pt;}
.yf1{bottom:839.013333pt;}
.y73{bottom:839.333333pt;}
.ye{bottom:840.133333pt;}
.y45{bottom:840.773333pt;}
.yf0{bottom:847.493333pt;}
.y72{bottom:856.933333pt;}
.yd{bottom:857.253333pt;}
.y44{bottom:858.373333pt;}
.yee{bottom:860.773333pt;}
.y71{bottom:874.693333pt;}
.y43{bottom:875.973333pt;}
.yed{bottom:880.293333pt;}
.yc{bottom:880.613333pt;}
.y70{bottom:892.293333pt;}
.y42{bottom:893.573333pt;}
.yec{bottom:898.533333pt;}
.yb{bottom:908.933333pt;}
.y6f{bottom:909.893333pt;}
.y41{bottom:911.173333pt;}
.yeb{bottom:914.053333pt;}
.yea{bottom:923.333333pt;}
.y6e{bottom:927.493333pt;}
.y40{bottom:928.933333pt;}
.y5{bottom:933.893333pt;}
.y6d{bottom:945.093333pt;}
.y3f{bottom:946.533333pt;}
.ye9{bottom:949.573333pt;}
.y4{bottom:961.733333pt;}
.y6c{bottom:962.853333pt;}
.y3e{bottom:964.133333pt;}
.ye8{bottom:967.333333pt;}
.y6b{bottom:980.453333pt;}
.y3d{bottom:981.733333pt;}
.ye7{bottom:985.093333pt;}
.y3{bottom:989.093333pt;}
.y69{bottom:993.573333pt;}
.y3c{bottom:999.333333pt;}
.ye6{bottom:1007.653333pt;}
.y2{bottom:1016.613333pt;}
.y3b{bottom:1017.093333pt;}
.ye5{bottom:1031.840000pt;}
.y3a{bottom:1034.720000pt;}
.y1{bottom:1046.720000pt;}
.y39{bottom:1060.800000pt;}
.h15{height:17.600000pt;}
.h14{height:17.632000pt;}
.hd{height:17.760000pt;}
.h5{height:18.880000pt;}
.h8{height:24.384375pt;}
.h7{height:26.190625pt;}
.h13{height:35.200000pt;}
.h12{height:35.975313pt;}
.h24{height:36.883125pt;}
.hb{height:37.479688pt;}
.h3{height:41.543750pt;}
.h25{height:43.782500pt;}
.ha{height:46.593750pt;}
.h4{height:47.621250pt;}
.h6{height:52.785000pt;}
.he{height:52.800000pt;}
.h11{height:52.832000pt;}
.hc{height:52.834688pt;}
.h10{height:52.960000pt;}
.hf{height:52.992000pt;}
.h9{height:54.093750pt;}
.h2{height:60.057813pt;}
.h1c{height:74.004375pt;}
.h1b{height:87.982813pt;}
.h16{height:105.902812pt;}
.h19{height:115.502812pt;}
.h20{height:117.422812pt;}
.h22{height:118.702813pt;}
.h18{height:141.742812pt;}
.h1f{height:143.022813pt;}
.h1d{height:146.862812pt;}
.h21{height:148.782812pt;}
.h1a{height:148.889479pt;}
.h17{height:156.462813pt;}
.h23{height:159.022813pt;}
.h1e{height:246.062813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:49.472000pt;}
.w3{width:51.392000pt;}
.w9{width:98.912000pt;}
.w7{width:104.832000pt;}
.w6{width:116.032000pt;}
.w5{width:162.266667pt;}
.w8{width:311.266667pt;}
.wa{width:546.973333pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x28{left:70.719988pt;}
.x11{left:71.999988pt;}
.x9{left:84.191988pt;}
.x29{left:94.751988pt;}
.x27{left:96.031988pt;}
.xe{left:97.471988pt;}
.x4{left:107.232000pt;}
.x16{left:148.186667pt;}
.x18{left:159.066655pt;}
.xc{left:212.026655pt;}
.x19{left:215.226655pt;}
.x8{left:218.114667pt;}
.x7{left:222.594667pt;}
.x25{left:248.386655pt;}
.xa{left:259.426655pt;}
.x14{left:316.066655pt;}
.xb{left:324.386655pt;}
.xf{left:328.386667pt;}
.x6{left:367.741333pt;}
.x5{left:379.581333pt;}
.x15{left:396.893322pt;}
.xd{left:420.893322pt;}
.x10{left:434.013333pt;}
.x12{left:444.893322pt;}
.x1a{left:462.013322pt;}
.x26{left:468.893322pt;}
.x13{left:512.253322pt;}
.x1e{left:542.013322pt;}
.x1d{left:554.013322pt;}
.x1b{left:567.173322pt;}
.x24{left:573.413322pt;}
.x1f{left:574.373322pt;}
.x20{left:575.653322pt;}
.x22{left:576.613322pt;}
.x23{left:583.653322pt;}
.x21{left:607.493322pt;}
.x1c{left:674.533322pt;}
.x17{left:695.813333pt;}
}




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