
    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_aa75bdc4e8a30a390c2e9b4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165039;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_9eb432b56aa68637acd3f494.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.157227;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_a7dc8f97a11ad967f6da5e98.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.991211;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_c7f67299c2546d2e8d0e4bfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.153809;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_0186753b4b0f3588f85671a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_08f1eea037f729d3f9f0777f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_be5b96f467e0b1f03a749b47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939000;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_04632b0120e93405cc785d44.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939000;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_ca231242c631eb0720605f45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_251da70e08d9c5c719faf0ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093000;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_2cffaf1c3bb453ed22d0e8f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.199992px;}
.v1{vertical-align:-15.359994px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.199992px;}
.ls8{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.004200px;}
.ls7{letter-spacing:0.006000px;}
.lse{letter-spacing:0.007837px;}
.ls14{letter-spacing:0.009000px;}
.ls13{letter-spacing:0.015000px;}
.ls6{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.057600px;}
.ls19{letter-spacing:0.069000px;}
.ls9{letter-spacing:0.147600px;}
.ls16{letter-spacing:0.199200px;}
.ls17{letter-spacing:0.685200px;}
.ls1a{letter-spacing:0.871200px;}
.ls3{letter-spacing:1.140000px;}
.ls15{letter-spacing:1.144800px;}
.ls2{letter-spacing:1.158000px;}
.ls12{letter-spacing:1.162200px;}
.ls11{letter-spacing:1.167000px;}
.lsf{letter-spacing:8.147997px;}
.ls10{letter-spacing:9.191996px;}
.lsc{letter-spacing:11.319595px;}
.lsd{letter-spacing:16.653593px;}
.lsa{letter-spacing:20.535592px;}
.ls0{letter-spacing:23.849990px;}
.ls1{letter-spacing:25.169990px;}
.ls4{letter-spacing:26.633989px;}
.ls5{letter-spacing:32.484467px;}
.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:-17.039993px;}
.ws12{word-spacing:-16.379993px;}
.ws27{word-spacing:-14.758749px;}
.ws7{word-spacing:-14.483994px;}
.ws32{word-spacing:-13.922994px;}
.ws8{word-spacing:-13.631995px;}
.ws10{word-spacing:-12.779995px;}
.ws28{word-spacing:-12.299995px;}
.ws1b{word-spacing:-11.587195px;}
.ws22{word-spacing:-11.228955px;}
.ws30{word-spacing:-10.862996px;}
.ws24{word-spacing:-8.506813px;}
.wsd{word-spacing:-3.509999px;}
.wsb{word-spacing:-3.496276px;}
.ws36{word-spacing:-2.917760px;}
.ws38{word-spacing:-2.895779px;}
.ws1{word-spacing:-2.606396px;}
.ws1c{word-spacing:-1.272480px;}
.ws14{word-spacing:-0.742980px;}
.ws2d{word-spacing:-0.372480px;}
.ws19{word-spacing:-0.100500px;}
.ws25{word-spacing:-0.004443px;}
.ws23{word-spacing:-0.004282px;}
.wse{word-spacing:0.000000px;}
.ws20{word-spacing:0.000780px;}
.ws2e{word-spacing:0.659519px;}
.ws1f{word-spacing:0.671519px;}
.ws17{word-spacing:0.685230px;}
.ws0{word-spacing:0.976541px;}
.ws16{word-spacing:2.747999px;}
.ws31{word-spacing:3.129192px;}
.ws15{word-spacing:3.372863px;}
.ws2c{word-spacing:3.448859px;}
.ws35{word-spacing:3.794389px;}
.ws34{word-spacing:3.831192px;}
.ws2b{word-spacing:3.934956px;}
.ws18{word-spacing:4.219627px;}
.ws9{word-spacing:4.274998px;}
.wsc{word-spacing:4.286998px;}
.ws29{word-spacing:4.452068px;}
.ws13{word-spacing:4.548238px;}
.ws1a{word-spacing:4.673972px;}
.ws33{word-spacing:6.129191px;}
.ws2f{word-spacing:6.178798px;}
.ws37{word-spacing:6.440124px;}
.ws11{word-spacing:7.076903px;}
.ws2a{word-spacing:7.470711px;}
.ws1e{word-spacing:9.351965px;}
.ws1d{word-spacing:9.355131px;}
.ws2{word-spacing:10.588359px;}
.ws5{word-spacing:11.779733px;}
.ws6{word-spacing:11.884964px;}
.ws4{word-spacing:14.295511px;}
.ws3{word-spacing:14.313259px;}
.ws26{word-spacing:18.247940px;}
.wsf{word-spacing:76.848569px;}
.ws21{word-spacing:170.938876px;}
._20{margin-left:-870.186852px;}
._22{margin-left:-10.190208px;}
._15{margin-left:-7.828291px;}
._11{margin-left:-6.529513px;}
._3{margin-left:-4.461139px;}
._9{margin-left:-3.129764px;}
._2{margin-left:-1.910479px;}
._0{width:1.951472px;}
._1{width:3.155713px;}
._a{width:4.177313px;}
._14{width:5.411773px;}
._5{width:6.644255px;}
._17{width:8.103714px;}
._d{width:9.312659px;}
._12{width:10.789227px;}
._7{width:12.433357px;}
._6{width:13.447651px;}
._c{width:14.608871px;}
._10{width:15.629288px;}
._16{width:17.281059px;}
._19{width:18.531713px;}
._b{width:20.219045px;}
._18{width:21.306411px;}
._4{width:23.648875px;}
._e{width:26.689948px;}
._8{width:27.879955px;}
._f{width:32.560370px;}
._21{width:34.924231px;}
._1a{width:43.608583px;}
._1e{width:67.372113px;}
._13{width:68.748573px;}
._1b{width:177.812563px;}
._1c{width:187.653519px;}
._1d{width:195.408780px;}
._1f{width:269.494916px;}
.fc2{color:rgb(31,26,23);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:29.375988px;}
.fsf{font-size:29.519988px;}
.fsc{font-size:30.600048px;}
.fs2{font-size:32.639987px;}
.fs8{font-size:33.047987px;}
.fs1{font-size:38.249985px;}
.fsb{font-size:40.391924px;}
.fs7{font-size:40.799984px;}
.fs6{font-size:44.999982px;}
.fsa{font-size:46.511981px;}
.fs3{font-size:47.999981px;}
.fse{font-size:49.199980px;}
.fs0{font-size:50.999980px;}
.fsd{font-size:59.034996px;}
.fs5{font-size:59.999976px;}
.fs4{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.ye2{bottom:1.223437px;}
.yfd{bottom:1.885707px;}
.ye4{bottom:3.059436px;}
.yed{bottom:3.087873px;}
.yf6{bottom:3.365461px;}
.yfb{bottom:4.215207px;}
.ydd{bottom:4.895315px;}
.yf8{bottom:4.895336px;}
.ydb{bottom:4.895435px;}
.yf0{bottom:6.119060px;}
.ye7{bottom:8.261343px;}
.yea{bottom:8.567419px;}
.yf2{bottom:10.234111px;}
.yec{bottom:14.716153px;}
.yf5{bottom:14.993741px;}
.yef{bottom:17.747340px;}
.yfc{bottom:21.657650px;}
.yfa{bottom:21.795500px;}
.y19{bottom:24.090531px;}
.yc6{bottom:24.104031px;}
.yd0{bottom:24.797031px;}
.yab{bottom:24.798231px;}
.y136{bottom:24.798531px;}
.yd9{bottom:25.534229px;}
.yf4{bottom:26.621317px;}
.y97{bottom:26.883980px;}
.yd2{bottom:33.796225px;}
.yc5{bottom:39.404025px;}
.y135{bottom:42.846974px;}
.y18{bottom:43.230524px;}
.yaa{bottom:43.314374px;}
.y96{bottom:45.303673px;}
.yfe{bottom:50.759138px;}
.ycf{bottom:51.722020px;}
.y17{bottom:54.690519px;}
.yc4{bottom:58.544018px;}
.y107{bottom:58.964285px;}
.y103{bottom:60.174484px;}
.y134{bottom:60.894817px;}
.ya9{bottom:61.833066px;}
.y95{bottom:63.723365px;}
.ydf{bottom:73.738210px;}
.y16{bottom:73.830511px;}
.yd3{bottom:76.023758px;}
.y133{bottom:78.944009px;}
.ya8{bottom:80.349209px;}
.ye8{bottom:81.694207px;}
.y94{bottom:82.143808px;}
.y10a{bottom:95.124470px;}
.y10b{bottom:95.616657px;}
.y132{bottom:96.991852px;}
.ya7{bottom:98.865351px;}
.yc3{bottom:100.562451px;}
.y93{bottom:100.562601px;}
.ye0{bottom:106.786197px;}
.y10c{bottom:109.136347px;}
.y131{bottom:115.041795px;}
.ya6{bottom:117.381494px;}
.yd4{bottom:118.557891px;}
.yc2{bottom:118.982143px;}
.y92{bottom:118.982293px;}
.y130{bottom:133.090388px;}
.ya5{bottom:135.897637px;}
.yc1{bottom:137.401836px;}
.y91{bottom:137.402286px;}
.y102{bottom:140.295452px;}
.y1{bottom:147.542400px;}
.ya4{bottom:154.413029px;}
.y15{bottom:155.467979px;}
.yc0{bottom:155.821529px;}
.y90{bottom:155.821979px;}
.yd5{bottom:160.786174px;}
.y108{bottom:163.676393px;}
.y104{bottom:164.885992px;}
.y105{bottom:164.886442px;}
.y12f{bottom:169.188773px;}
.yff{bottom:170.256440px;}
.y14{bottom:171.217972px;}
.y4a{bottom:171.632931px;}
.y6c{bottom:171.641931px;}
.y80{bottom:172.343331px;}
.ya3{bottom:172.929172px;}
.ybf{bottom:174.241971px;}
.y49{bottom:186.932925px;}
.y6b{bottom:186.941925px;}
.y7f{bottom:190.787624px;}
.ya2{bottom:191.445314px;}
.ybe{bottom:192.661664px;}
.y8f{bottom:192.661964px;}
.y6a{bottom:202.241919px;}
.y13{bottom:202.717960px;}
.yd6{bottom:203.013708px;}
.y12e{bottom:205.285809px;}
.y48{bottom:206.072918px;}
.y7e{bottom:209.231316px;}
.ya1{bottom:209.962807px;}
.ybd{bottom:211.081357px;}
.y12{bottom:218.467954px;}
.y69{bottom:221.381911px;}
.y12d{bottom:223.333652px;}
.y7d{bottom:227.675609px;}
.ya0{bottom:228.478950px;}
.yf9{bottom:229.388400px;}
.ybc{bottom:229.501799px;}
.y8e{bottom:229.502849px;}
.y100{bottom:229.680266px;}
.y11{bottom:234.217947px;}
.y68{bottom:236.681905px;}
.y12c{bottom:241.383594px;}
.yd7{bottom:245.547841px;}
.y7c{bottom:246.119902px;}
.y8d{bottom:247.922542px;}
.y46{bottom:248.105001px;}
.y10{bottom:249.967941px;}
.y12b{bottom:259.431437px;}
.y7b{bottom:264.563594px;}
.y9f{bottom:265.512435px;}
.yf{bottom:265.719285px;}
.y109{bottom:265.968402px;}
.y8c{bottom:266.342234px;}
.y45{bottom:266.524693px;}
.y106{bottom:267.179201px;}
.y101{bottom:271.116100px;}
.ye5{bottom:271.721631px;}
.y12a{bottom:277.481380px;}
.ye{bottom:281.469278px;}
.y7a{bottom:283.007287px;}
.yca{bottom:284.091727px;}
.y8b{bottom:284.762677px;}
.y67{bottom:284.944686px;}
.y44{bottom:284.945136px;}
.yd8{bottom:287.776124px;}
.y129{bottom:295.529223px;}
.yd{bottom:297.217922px;}
.y79{bottom:301.450229px;}
.yc9{bottom:302.511420px;}
.y8a{bottom:303.182370px;}
.y43{bottom:303.364229px;}
.y66{bottom:303.364529px;}
.yc{bottom:312.967916px;}
.y128{bottom:313.577066px;}
.y78{bottom:319.894522px;}
.y9e{bottom:321.060113px;}
.y89{bottom:321.602062px;}
.y42{bottom:321.784671px;}
.y65{bottom:321.784971px;}
.yc8{bottom:329.435209px;}
.y127{bottom:331.626258px;}
.y156{bottom:333.512867px;}
.y77{bottom:338.339565px;}
.y9d{bottom:339.577605px;}
.y88{bottom:340.022505px;}
.y41{bottom:340.204664px;}
.yc7{bottom:347.854902px;}
.y155{bottom:349.262860px;}
.y126{bottom:349.674701px;}
.y76{bottom:356.783257px;}
.y9c{bottom:358.093748px;}
.y40{bottom:358.624507px;}
.y64{bottom:358.624957px;}
.yb{bottom:360.217897px;}
.y154{bottom:365.012704px;}
.y125{bottom:367.724044px;}
.y75{bottom:375.226950px;}
.ya{bottom:375.967891px;}
.y9b{bottom:376.609890px;}
.y63{bottom:377.044649px;}
.y3f{bottom:377.044949px;}
.y124{bottom:385.771587px;}
.y153{bottom:389.266344px;}
.y74{bottom:393.670643px;}
.y9a{bottom:395.127383px;}
.y62{bottom:395.464342px;}
.y3e{bottom:395.464642px;}
.y123{bottom:403.821529px;}
.y152{bottom:405.017688px;}
.y9{bottom:407.469228px;}
.yce{bottom:411.101177px;}
.y73{bottom:412.114335px;}
.y61{bottom:413.884034px;}
.y3d{bottom:413.884484px;}
.y99{bottom:414.489375px;}
.y122{bottom:421.869222px;}
.y8{bottom:423.219222px;}
.y151{bottom:429.271178px;}
.ycd{bottom:429.520869px;}
.y72{bottom:430.558628px;}
.y60{bottom:432.304477px;}
.y3c{bottom:432.304927px;}
.y7{bottom:438.969215px;}
.y121{bottom:439.918415px;}
.y98{bottom:441.414364px;}
.y71{bottom:449.002320px;}
.y5f{bottom:450.724170px;}
.y3b{bottom:450.724620px;}
.y150{bottom:453.524819px;}
.y6{bottom:454.719209px;}
.ycc{bottom:456.443908px;}
.y120{bottom:457.966858px;}
.y70{bottom:467.446013px;}
.y3a{bottom:469.143862px;}
.y14f{bottom:469.274662px;}
.yb0{bottom:470.465153px;}
.y5{bottom:470.469203px;}
.ycb{bottom:474.864351px;}
.y11f{bottom:476.016051px;}
.y6f{bottom:485.891806px;}
.y4{bottom:486.219196px;}
.y5e{bottom:487.564305px;}
.y39{bottom:487.564605px;}
.yaf{bottom:488.884845px;}
.y14e{bottom:493.528303px;}
.y11e{bottom:494.063893px;}
.y3{bottom:501.969190px;}
.y6e{bottom:504.336098px;}
.y38{bottom:505.984298px;}
.y14d{bottom:509.278296px;}
.y11d{bottom:512.113536px;}
.yae{bottom:515.808185px;}
.y2{bottom:517.717834px;}
.y5d{bottom:521.404291px;}
.y6d{bottom:522.779791px;}
.y37{bottom:524.403990px;}
.y14c{bottom:525.028290px;}
.y11c{bottom:530.161379px;}
.yad{bottom:534.228627px;}
.y36{bottom:542.824433px;}
.y11b{bottom:548.210572px;}
.y14b{bottom:549.283280px;}
.yac{bottom:552.648320px;}
.y5c{bottom:558.244727px;}
.y35{bottom:561.244126px;}
.y14a{bottom:565.033274px;}
.y11a{bottom:566.259764px;}
.y5b{bottom:576.665169px;}
.y34{bottom:579.663818px;}
.y149{bottom:580.783118px;}
.y119{bottom:584.308957px;}
.y83{bottom:586.906265px;}
.y5a{bottom:595.084862px;}
.ybb{bottom:597.901652px;}
.y33{bottom:598.084711px;}
.y118{bottom:602.356050px;}
.y148{bottom:605.036758px;}
.y59{bottom:613.504555px;}
.y82{bottom:613.829304px;}
.yba{bottom:616.322094px;}
.y32{bottom:616.504403px;}
.y117{bottom:620.405993px;}
.y147{bottom:620.786752px;}
.y58{bottom:631.924997px;}
.y81{bottom:632.249747px;}
.yb9{bottom:634.741937px;}
.y31{bottom:634.924096px;}
.y146{bottom:636.536595px;}
.y116{bottom:638.453836px;}
.yde{bottom:651.960000px;}
.yd1{bottom:653.040000px;}
.yb8{bottom:653.161630px;}
.y30{bottom:653.344539px;}
.ye3{bottom:656.236800px;}
.y115{bottom:656.503028px;}
.ye1{bottom:657.460800px;}
.yda{bottom:658.684800px;}
.y145{bottom:660.790236px;}
.y1f{bottom:662.098776px;}
.yb7{bottom:671.582072px;}
.y2f{bottom:671.762731px;}
.y57{bottom:671.764681px;}
.y114{bottom:674.551471px;}
.y144{bottom:676.540229px;}
.y1e{bottom:687.598766px;}
.yb6{bottom:690.002215px;}
.y2e{bottom:690.183174px;}
.y113{bottom:692.599314px;}
.ye9{bottom:694.486800px;}
.y143{bottom:700.795220px;}
.yb5{bottom:708.421908px;}
.y2d{bottom:708.603617px;}
.y112{bottom:710.649257px;}
.y142{bottom:716.545813px;}
.yb4{bottom:726.842350px;}
.y2c{bottom:727.023309px;}
.y56{bottom:727.024659px;}
.y111{bottom:728.697700px;}
.y1d{bottom:738.597846px;}
.y141{bottom:740.798704px;}
.yb3{bottom:745.262043px;}
.y2b{bottom:745.443002px;}
.y55{bottom:745.444352px;}
.y110{bottom:746.746892px;}
.y140{bottom:756.548697px;}
.yb2{bottom:763.681736px;}
.y2a{bottom:763.863444px;}
.y54{bottom:763.864794px;}
.y1c{bottom:764.098735px;}
.y10f{bottom:764.794735px;}
.y13f{bottom:772.298541px;}
.yb1{bottom:782.102178px;}
.y87{bottom:782.102328px;}
.y29{bottom:782.283887px;}
.y53{bottom:782.284487px;}
.y10e{bottom:782.844678px;}
.y1b{bottom:789.598725px;}
.y13e{bottom:796.552181px;}
.y86{bottom:800.522021px;}
.y52{bottom:800.703730px;}
.y28{bottom:800.704330px;}
.y10d{bottom:800.892521px;}
.y13d{bottom:812.302175px;}
.y85{bottom:818.941713px;}
.y51{bottom:819.124322px;}
.y27{bottom:819.124772px;}
.y13c{bottom:836.557165px;}
.y50{bottom:837.544015px;}
.y26{bottom:837.544465px;}
.y13b{bottom:852.307009px;}
.yeb{bottom:852.660000px;}
.y25{bottom:855.963708px;}
.y84{bottom:857.209698px;}
.y1a{bottom:860.098697px;}
.y24{bottom:874.384450px;}
.y4f{bottom:874.384900px;}
.y13a{bottom:876.560649px;}
.yee{bottom:882.064800px;}
.ye6{bottom:883.288800px;}
.y139{bottom:892.310493px;}
.y23{bottom:892.804443px;}
.y4e{bottom:892.804593px;}
.yf7{bottom:906.238800px;}
.y22{bottom:911.224136px;}
.y4d{bottom:911.224286px;}
.y138{bottom:916.564133px;}
.y21{bottom:929.644578px;}
.y4c{bottom:929.644728px;}
.yf3{bottom:931.636800px;}
.y137{bottom:932.314127px;}
.y4b{bottom:948.064421px;}
.ydc{bottom:958.258800px;}
.yf1{bottom:962.100000px;}
.y20{bottom:966.484113px;}
.y47{bottom:1004.752098px;}
.h1c{height:10.404000px;}
.h1d{height:12.852000px;}
.h1f{height:15.300000px;}
.h20{height:15.606000px;}
.h25{height:16.524000px;}
.h18{height:17.442000px;}
.h23{height:18.900000px;}
.h17{height:21.356343px;}
.h29{height:21.431511px;}
.h1e{height:22.246235px;}
.h16{height:24.025886px;}
.h21{height:24.300000px;}
.h22{height:26.928000px;}
.h1b{height:29.364929px;}
.h4{height:30.329050px;}
.h19{height:33.814210px;}
.h24{height:35.802000px;}
.h28{height:43.148383px;}
.h5{height:44.601545px;}
.h3{height:47.389141px;}
.h2f{height:47.389741px;}
.h2{height:47.737774px;}
.h27{height:51.773692px;}
.h10{height:55.664040px;}
.hc{height:55.750731px;}
.h2d{height:55.751331px;}
.h8{height:55.751931px;}
.h2c{height:55.752531px;}
.h2b{height:55.753131px;}
.h9{height:55.753731px;}
.h2a{height:55.754931px;}
.h11{height:55.755531px;}
.ha{height:55.757931px;}
.hd{height:56.162087px;}
.h12{height:57.050340px;}
.h14{height:57.051540px;}
.he{height:57.108905px;}
.h13{height:57.109505px;}
.hf{height:57.110105px;}
.hb{height:57.110705px;}
.h7{height:57.111305px;}
.h2e{height:57.113705px;}
.h6{height:67.394504px;}
.h26{height:283.816800px;}
.h15{height:327.960000px;}
.h1a{height:329.040000px;}
.h1{height:892.913400px;}
.h0{height:1188.000000px;}
.w6{width:32.740200px;}
.w7{width:32.742000px;}
.w3{width:33.048000px;}
.w4{width:57.222000px;}
.w8{width:76.806000px;}
.wc{width:111.996000px;}
.wa{width:129.744000px;}
.wb{width:131.040000px;}
.wd{width:146.266200px;}
.w9{width:191.340000px;}
.we{width:466.462800px;}
.w5{width:531.540000px;}
.w2{width:536.220000px;}
.w1{width:595.274940px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:1.835821px;}
.x29{left:12.238275px;}
.x14{left:16.289920px;}
.x21{left:17.801781px;}
.x24{left:19.651265px;}
.x5{left:21.259967px;}
.x22{left:29.123491px;}
.x15{left:33.425763px;}
.x4{left:55.275153px;}
.x2c{left:61.117835px;}
.x27{left:70.181745px;}
.x12{left:73.009646px;}
.x11{left:74.134646px;}
.x3a{left:76.793278px;}
.x2b{left:81.431877px;}
.x31{left:87.271374px;}
.x3{left:89.291090px;}
.x39{left:97.195220px;}
.x34{left:108.388816px;}
.x32{left:110.810865px;}
.x38{left:115.384363px;}
.x9{left:117.504835px;}
.x2{left:123.307626px;}
.x7{left:129.361624px;}
.x8{left:130.407170px;}
.x2f{left:150.100649px;}
.x1{left:161.362260px;}
.xc{left:182.621927px;}
.x13{left:184.860000px;}
.x1c{left:189.109351px;}
.x30{left:195.749681px;}
.x18{left:199.926000px;}
.x33{left:212.496724px;}
.xd{left:216.637713px;}
.x2a{left:227.268000px;}
.xf{left:234.371786px;}
.x1e{left:242.963829px;}
.x10{left:284.859062px;}
.x2e{left:313.858584px;}
.x1a{left:324.469800px;}
.x2d{left:329.392727px;}
.x6{left:342.951038px;}
.x37{left:353.523818px;}
.x35{left:355.947217px;}
.x1d{left:376.488000px;}
.x1f{left:431.263800px;}
.x16{left:444.726000px;}
.xe{left:446.221322px;}
.x36{left:457.633076px;}
.xa{left:463.576490px;}
.xb{left:478.960484px;}
.x19{left:492.659729px;}
.x20{left:529.740000px;}
.x28{left:550.296000px;}
.x25{left:560.340000px;}
.x26{left:566.820000px;}
.x23{left:568.044000px;}
.x1b{left:603.846000px;}
@media print{
.v3{vertical-align:-17.066660pt;}
.v1{vertical-align:-13.653328pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.066660pt;}
.ls8{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.003733pt;}
.ls7{letter-spacing:0.005333pt;}
.lse{letter-spacing:0.006966pt;}
.ls14{letter-spacing:0.008000pt;}
.ls13{letter-spacing:0.013333pt;}
.ls6{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.051200pt;}
.ls19{letter-spacing:0.061333pt;}
.ls9{letter-spacing:0.131200pt;}
.ls16{letter-spacing:0.177067pt;}
.ls17{letter-spacing:0.609066pt;}
.ls1a{letter-spacing:0.774400pt;}
.ls3{letter-spacing:1.013333pt;}
.ls15{letter-spacing:1.017600pt;}
.ls2{letter-spacing:1.029333pt;}
.ls12{letter-spacing:1.033066pt;}
.ls11{letter-spacing:1.037333pt;}
.lsf{letter-spacing:7.242664pt;}
.ls10{letter-spacing:8.170663pt;}
.lsc{letter-spacing:10.061863pt;}
.lsd{letter-spacing:14.803194pt;}
.lsa{letter-spacing:18.253859pt;}
.ls0{letter-spacing:21.199992pt;}
.ls1{letter-spacing:22.373324pt;}
.ls4{letter-spacing:23.674657pt;}
.ls5{letter-spacing:28.875082pt;}
.wsa{word-spacing:-15.146661pt;}
.ws12{word-spacing:-14.559994pt;}
.ws27{word-spacing:-13.118888pt;}
.ws7{word-spacing:-12.874662pt;}
.ws32{word-spacing:-12.375995pt;}
.ws8{word-spacing:-12.117328pt;}
.ws10{word-spacing:-11.359995pt;}
.ws28{word-spacing:-10.933329pt;}
.ws1b{word-spacing:-10.299729pt;}
.ws22{word-spacing:-9.981293pt;}
.ws30{word-spacing:-9.655996pt;}
.ws24{word-spacing:-7.561612pt;}
.wsd{word-spacing:-3.119999pt;}
.wsb{word-spacing:-3.107801pt;}
.ws36{word-spacing:-2.593564pt;}
.ws38{word-spacing:-2.574026pt;}
.ws1{word-spacing:-2.316797pt;}
.ws1c{word-spacing:-1.131093pt;}
.ws14{word-spacing:-0.660426pt;}
.ws2d{word-spacing:-0.331094pt;}
.ws19{word-spacing:-0.089333pt;}
.ws25{word-spacing:-0.003949pt;}
.ws23{word-spacing:-0.003806pt;}
.wse{word-spacing:0.000000pt;}
.ws20{word-spacing:0.000693pt;}
.ws2e{word-spacing:0.586239pt;}
.ws1f{word-spacing:0.596906pt;}
.ws17{word-spacing:0.609094pt;}
.ws0{word-spacing:0.868036pt;}
.ws16{word-spacing:2.442666pt;}
.ws31{word-spacing:2.781504pt;}
.ws15{word-spacing:2.998100pt;}
.ws2c{word-spacing:3.065652pt;}
.ws35{word-spacing:3.372790pt;}
.ws34{word-spacing:3.405504pt;}
.ws2b{word-spacing:3.497738pt;}
.ws18{word-spacing:3.750780pt;}
.ws9{word-spacing:3.799998pt;}
.wsc{word-spacing:3.810665pt;}
.ws29{word-spacing:3.957394pt;}
.ws13{word-spacing:4.042878pt;}
.ws1a{word-spacing:4.154642pt;}
.ws33{word-spacing:5.448170pt;}
.ws2f{word-spacing:5.492264pt;}
.ws37{word-spacing:5.724555pt;}
.ws11{word-spacing:6.290581pt;}
.ws2a{word-spacing:6.640632pt;}
.ws1e{word-spacing:8.312858pt;}
.ws1d{word-spacing:8.315672pt;}
.ws2{word-spacing:9.411875pt;}
.ws5{word-spacing:10.470874pt;}
.ws6{word-spacing:10.564412pt;}
.ws4{word-spacing:12.707121pt;}
.ws3{word-spacing:12.722897pt;}
.ws26{word-spacing:16.220391pt;}
.wsf{word-spacing:68.309839pt;}
.ws21{word-spacing:151.945667pt;}
._20{margin-left:-773.499424pt;}
._22{margin-left:-9.057963pt;}
._15{margin-left:-6.958481pt;}
._11{margin-left:-5.804011pt;}
._3{margin-left:-3.965457pt;}
._9{margin-left:-2.782013pt;}
._2{margin-left:-1.698204pt;}
._0{width:1.734642pt;}
._1{width:2.805078pt;}
._a{width:3.713167pt;}
._14{width:4.810465pt;}
._5{width:5.906004pt;}
._17{width:7.203301pt;}
._d{width:8.277919pt;}
._12{width:9.590424pt;}
._7{width:11.051873pt;}
._6{width:11.953467pt;}
._c{width:12.985663pt;}
._10{width:13.892700pt;}
._16{width:15.360942pt;}
._19{width:16.472633pt;}
._b{width:17.972484pt;}
._18{width:18.939032pt;}
._4{width:21.021222pt;}
._e{width:23.724398pt;}
._8{width:24.782182pt;}
._f{width:28.942551pt;}
._21{width:31.043761pt;}
._1a{width:38.763184pt;}
._1e{width:59.886323pt;}
._13{width:61.109842pt;}
._1b{width:158.055612pt;}
._1c{width:166.803128pt;}
._1d{width:173.696693pt;}
._1f{width:239.551036pt;}
.fs9{font-size:26.111990pt;}
.fsf{font-size:26.239990pt;}
.fsc{font-size:27.200042pt;}
.fs2{font-size:29.013322pt;}
.fs8{font-size:29.375988pt;}
.fs1{font-size:33.999986pt;}
.fsb{font-size:35.903932pt;}
.fs7{font-size:36.266652pt;}
.fs6{font-size:39.999984pt;}
.fsa{font-size:41.343983pt;}
.fs3{font-size:42.666650pt;}
.fse{font-size:43.733316pt;}
.fs0{font-size:45.333315pt;}
.fsd{font-size:52.475552pt;}
.fs5{font-size:53.333312pt;}
.fs4{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:1.087499pt;}
.yfd{bottom:1.676184pt;}
.ye4{bottom:2.719499pt;}
.yed{bottom:2.744776pt;}
.yf6{bottom:2.991521pt;}
.yfb{bottom:3.746850pt;}
.ydd{bottom:4.351391pt;}
.yf8{bottom:4.351409pt;}
.ydb{bottom:4.351497pt;}
.yf0{bottom:5.439164pt;}
.ye7{bottom:7.343416pt;}
.yea{bottom:7.615483pt;}
.yf2{bottom:9.096988pt;}
.yec{bottom:13.081025pt;}
.yf5{bottom:13.327770pt;}
.yef{bottom:15.775413pt;}
.yfc{bottom:19.251244pt;}
.yfa{bottom:19.373777pt;}
.y19{bottom:21.413806pt;}
.yc6{bottom:21.425806pt;}
.yd0{bottom:22.041805pt;}
.yab{bottom:22.042872pt;}
.y136{bottom:22.043139pt;}
.yd9{bottom:22.697092pt;}
.yf4{bottom:23.663393pt;}
.y97{bottom:23.896871pt;}
.yd2{bottom:30.041089pt;}
.yc5{bottom:35.025800pt;}
.y135{bottom:38.086199pt;}
.y18{bottom:38.427132pt;}
.yaa{bottom:38.501665pt;}
.y96{bottom:40.269931pt;}
.yfe{bottom:45.119234pt;}
.ycf{bottom:45.975129pt;}
.y17{bottom:48.613795pt;}
.yc4{bottom:52.039127pt;}
.y107{bottom:52.412697pt;}
.y103{bottom:53.488430pt;}
.y134{bottom:54.128726pt;}
.ya9{bottom:54.962726pt;}
.y95{bottom:56.642992pt;}
.ydf{bottom:65.545075pt;}
.y16{bottom:65.627121pt;}
.yd3{bottom:67.576674pt;}
.y133{bottom:70.172453pt;}
.ya8{bottom:71.421519pt;}
.ye8{bottom:72.617072pt;}
.y94{bottom:73.016718pt;}
.y10a{bottom:84.555085pt;}
.y10b{bottom:84.992584pt;}
.y132{bottom:86.214980pt;}
.ya7{bottom:87.880312pt;}
.yc3{bottom:89.388845pt;}
.y93{bottom:89.388978pt;}
.ye0{bottom:94.921064pt;}
.y10c{bottom:97.010086pt;}
.y131{bottom:102.259373pt;}
.ya6{bottom:104.339106pt;}
.yd4{bottom:105.384792pt;}
.yc2{bottom:105.761905pt;}
.y92{bottom:105.762039pt;}
.y130{bottom:118.302567pt;}
.ya5{bottom:120.797899pt;}
.yc1{bottom:122.134965pt;}
.y91{bottom:122.135365pt;}
.y102{bottom:124.707069pt;}
.y1{bottom:131.148800pt;}
.ya4{bottom:137.256026pt;}
.y15{bottom:138.193759pt;}
.yc0{bottom:138.508025pt;}
.y90{bottom:138.508425pt;}
.yd5{bottom:142.921044pt;}
.y108{bottom:145.490127pt;}
.y104{bottom:146.565326pt;}
.y105{bottom:146.565726pt;}
.y12f{bottom:150.390021pt;}
.yff{bottom:151.339058pt;}
.y14{bottom:152.193753pt;}
.y4a{bottom:152.562606pt;}
.y6c{bottom:152.570606pt;}
.y80{bottom:153.194072pt;}
.ya3{bottom:153.714819pt;}
.ybf{bottom:154.881752pt;}
.y49{bottom:166.162600pt;}
.y6b{bottom:166.170600pt;}
.y7f{bottom:169.588999pt;}
.ya2{bottom:170.173613pt;}
.ybe{bottom:171.254812pt;}
.y8f{bottom:171.255079pt;}
.y6a{bottom:179.770595pt;}
.y13{bottom:180.193742pt;}
.yd6{bottom:180.456629pt;}
.y12e{bottom:182.476275pt;}
.y48{bottom:183.175927pt;}
.y7e{bottom:185.983392pt;}
.ya1{bottom:186.633606pt;}
.ybd{bottom:187.627872pt;}
.y12{bottom:194.193737pt;}
.y69{bottom:196.783921pt;}
.y12d{bottom:198.518801pt;}
.y7d{bottom:202.378319pt;}
.ya0{bottom:203.092400pt;}
.yf9{bottom:203.900800pt;}
.ybc{bottom:204.001599pt;}
.y8e{bottom:204.002533pt;}
.y100{bottom:204.160237pt;}
.y11{bottom:208.193731pt;}
.y68{bottom:210.383916pt;}
.y12c{bottom:214.563195pt;}
.yd7{bottom:218.264747pt;}
.y7c{bottom:218.773246pt;}
.y8d{bottom:220.375593pt;}
.y46{bottom:220.537778pt;}
.y10{bottom:222.193725pt;}
.y12b{bottom:230.605722pt;}
.y7b{bottom:235.167639pt;}
.y9f{bottom:236.011053pt;}
.yf{bottom:236.194920pt;}
.y109{bottom:236.416357pt;}
.y8c{bottom:236.748653pt;}
.y45{bottom:236.910839pt;}
.y106{bottom:237.492623pt;}
.y101{bottom:240.992089pt;}
.ye5{bottom:241.530338pt;}
.y12a{bottom:246.650116pt;}
.ye{bottom:250.194914pt;}
.y7a{bottom:251.562033pt;}
.yca{bottom:252.525980pt;}
.y8b{bottom:253.122380pt;}
.y67{bottom:253.284165pt;}
.y44{bottom:253.284565pt;}
.yd8{bottom:255.800999pt;}
.y129{bottom:262.692642pt;}
.yd{bottom:264.193709pt;}
.y79{bottom:267.955759pt;}
.yc9{bottom:268.899040pt;}
.y8a{bottom:269.495440pt;}
.y43{bottom:269.657092pt;}
.y66{bottom:269.657359pt;}
.yc{bottom:278.193703pt;}
.y128{bottom:278.735169pt;}
.y78{bottom:284.350686pt;}
.y9e{bottom:285.386767pt;}
.y89{bottom:285.868500pt;}
.y42{bottom:286.030819pt;}
.y65{bottom:286.031086pt;}
.yc8{bottom:292.831297pt;}
.y127{bottom:294.778896pt;}
.y156{bottom:296.455881pt;}
.y77{bottom:300.746280pt;}
.y9d{bottom:301.846760pt;}
.y88{bottom:302.242227pt;}
.y41{bottom:302.404146pt;}
.yc7{bottom:309.204357pt;}
.y155{bottom:310.455876pt;}
.y126{bottom:310.821957pt;}
.y76{bottom:317.140673pt;}
.y9c{bottom:318.305554pt;}
.y40{bottom:318.777339pt;}
.y64{bottom:318.777739pt;}
.yb{bottom:320.193686pt;}
.y154{bottom:324.455737pt;}
.y125{bottom:326.865817pt;}
.y75{bottom:333.535067pt;}
.ya{bottom:334.193681pt;}
.y9b{bottom:334.764347pt;}
.y63{bottom:335.150799pt;}
.y3f{bottom:335.151066pt;}
.y124{bottom:342.908077pt;}
.y153{bottom:346.014528pt;}
.y74{bottom:349.929460pt;}
.y9a{bottom:351.224340pt;}
.y62{bottom:351.523859pt;}
.y3e{bottom:351.524126pt;}
.y123{bottom:358.952471pt;}
.y152{bottom:360.015723pt;}
.y9{bottom:362.194869pt;}
.yce{bottom:365.423268pt;}
.y73{bottom:366.323853pt;}
.y61{bottom:367.896920pt;}
.y3d{bottom:367.897320pt;}
.y99{bottom:368.435000pt;}
.y122{bottom:374.994864pt;}
.y8{bottom:376.194864pt;}
.y151{bottom:381.574381pt;}
.ycd{bottom:381.796328pt;}
.y72{bottom:382.718780pt;}
.y60{bottom:384.270646pt;}
.y3c{bottom:384.271046pt;}
.y7{bottom:390.194858pt;}
.y121{bottom:391.038591pt;}
.y98{bottom:392.368324pt;}
.y71{bottom:399.113174pt;}
.y5f{bottom:400.643706pt;}
.y3b{bottom:400.644106pt;}
.y150{bottom:403.133172pt;}
.y6{bottom:404.194853pt;}
.ycc{bottom:405.727919pt;}
.y120{bottom:407.081651pt;}
.y70{bottom:415.507567pt;}
.y3a{bottom:417.016767pt;}
.y14f{bottom:417.133033pt;}
.yb0{bottom:418.191247pt;}
.y5{bottom:418.194847pt;}
.ycb{bottom:422.101645pt;}
.y11f{bottom:423.125378pt;}
.y6f{bottom:431.903827pt;}
.y4{bottom:432.194841pt;}
.y5e{bottom:433.390493pt;}
.y39{bottom:433.390760pt;}
.yaf{bottom:434.564307pt;}
.y14e{bottom:438.691825pt;}
.y11e{bottom:439.167905pt;}
.y3{bottom:446.194836pt;}
.y6e{bottom:448.298754pt;}
.y38{bottom:449.763820pt;}
.y14d{bottom:452.691819pt;}
.y11d{bottom:455.212032pt;}
.yae{bottom:458.496164pt;}
.y2{bottom:460.193630pt;}
.y5d{bottom:463.470481pt;}
.y6d{bottom:464.693147pt;}
.y37{bottom:466.136880pt;}
.y14c{bottom:466.691813pt;}
.y11c{bottom:471.254559pt;}
.yad{bottom:474.869891pt;}
.y36{bottom:482.510607pt;}
.y11b{bottom:487.298286pt;}
.y14b{bottom:488.251805pt;}
.yac{bottom:491.242951pt;}
.y5c{bottom:496.217535pt;}
.y35{bottom:498.883667pt;}
.y14a{bottom:502.251799pt;}
.y11a{bottom:503.342013pt;}
.y5b{bottom:512.591262pt;}
.y34{bottom:515.256727pt;}
.y149{bottom:516.251660pt;}
.y119{bottom:519.385740pt;}
.y83{bottom:521.694458pt;}
.y5a{bottom:528.964322pt;}
.ybb{bottom:531.468135pt;}
.y33{bottom:531.630854pt;}
.y118{bottom:535.427600pt;}
.y148{bottom:537.810452pt;}
.y59{bottom:545.337382pt;}
.y82{bottom:545.626048pt;}
.yba{bottom:547.841862pt;}
.y32{bottom:548.003914pt;}
.y117{bottom:551.471994pt;}
.y147{bottom:551.810446pt;}
.y58{bottom:561.711109pt;}
.y81{bottom:561.999775pt;}
.yb9{bottom:564.215055pt;}
.y31{bottom:564.376974pt;}
.y146{bottom:565.810307pt;}
.y116{bottom:567.514521pt;}
.yde{bottom:579.520000pt;}
.yd1{bottom:580.480000pt;}
.yb8{bottom:580.588115pt;}
.y30{bottom:580.750701pt;}
.ye3{bottom:583.321600pt;}
.y115{bottom:583.558247pt;}
.ye1{bottom:584.409600pt;}
.yda{bottom:585.497600pt;}
.y145{bottom:587.369098pt;}
.y1f{bottom:588.532245pt;}
.yb7{bottom:596.961842pt;}
.y2f{bottom:597.122428pt;}
.y57{bottom:597.124161pt;}
.y114{bottom:599.601308pt;}
.y144{bottom:601.369093pt;}
.y1e{bottom:611.198903pt;}
.yb6{bottom:613.335302pt;}
.y2e{bottom:613.496155pt;}
.y113{bottom:615.643835pt;}
.ye9{bottom:617.321600pt;}
.y143{bottom:622.929084pt;}
.yb5{bottom:629.708362pt;}
.y2d{bottom:629.869881pt;}
.y112{bottom:631.688228pt;}
.y142{bottom:636.929612pt;}
.yb4{bottom:646.082089pt;}
.y2c{bottom:646.242942pt;}
.y56{bottom:646.244142pt;}
.y111{bottom:647.731288pt;}
.y1d{bottom:656.531418pt;}
.y141{bottom:658.487737pt;}
.yb3{bottom:662.455149pt;}
.y2b{bottom:662.616002pt;}
.y55{bottom:662.617202pt;}
.y110{bottom:663.775015pt;}
.y140{bottom:672.487731pt;}
.yb2{bottom:678.828209pt;}
.y2a{bottom:678.989728pt;}
.y54{bottom:678.990928pt;}
.y1c{bottom:679.198876pt;}
.y10f{bottom:679.817542pt;}
.y13f{bottom:686.487592pt;}
.yb1{bottom:695.201936pt;}
.y87{bottom:695.202069pt;}
.y29{bottom:695.363455pt;}
.y53{bottom:695.363989pt;}
.y10e{bottom:695.861936pt;}
.y1b{bottom:701.865533pt;}
.y13e{bottom:708.046383pt;}
.y86{bottom:711.575130pt;}
.y52{bottom:711.736649pt;}
.y28{bottom:711.737182pt;}
.y10d{bottom:711.904463pt;}
.y13d{bottom:722.046378pt;}
.y85{bottom:727.948190pt;}
.y51{bottom:728.110509pt;}
.y27{bottom:728.110909pt;}
.y13c{bottom:743.606369pt;}
.y50{bottom:744.483569pt;}
.y26{bottom:744.483969pt;}
.y13b{bottom:757.606230pt;}
.yeb{bottom:757.920000pt;}
.y25{bottom:760.856629pt;}
.y84{bottom:761.964176pt;}
.y1a{bottom:764.532175pt;}
.y24{bottom:777.230622pt;}
.y4f{bottom:777.231022pt;}
.y13a{bottom:779.165022pt;}
.yee{bottom:784.057600pt;}
.ye6{bottom:785.145600pt;}
.y139{bottom:793.164883pt;}
.y23{bottom:793.603949pt;}
.y4e{bottom:793.604083pt;}
.yf7{bottom:805.545600pt;}
.y22{bottom:809.977009pt;}
.y4d{bottom:809.977143pt;}
.y138{bottom:814.723674pt;}
.y21{bottom:826.350736pt;}
.y4c{bottom:826.350869pt;}
.yf3{bottom:828.121600pt;}
.y137{bottom:828.723669pt;}
.y4b{bottom:842.723930pt;}
.ydc{bottom:851.785600pt;}
.yf1{bottom:855.200000pt;}
.y20{bottom:859.096990pt;}
.y47{bottom:893.112976pt;}
.h1c{height:9.248000pt;}
.h1d{height:11.424000pt;}
.h1f{height:13.600000pt;}
.h20{height:13.872000pt;}
.h25{height:14.688000pt;}
.h18{height:15.504000pt;}
.h23{height:16.800000pt;}
.h17{height:18.983416pt;}
.h29{height:19.050232pt;}
.h1e{height:19.774431pt;}
.h16{height:21.356343pt;}
.h21{height:21.600000pt;}
.h22{height:23.936000pt;}
.h1b{height:26.102159pt;}
.h4{height:26.959156pt;}
.h19{height:30.057076pt;}
.h24{height:31.824000pt;}
.h28{height:38.354118pt;}
.h5{height:39.645817pt;}
.h3{height:42.123681pt;}
.h2f{height:42.124214pt;}
.h2{height:42.433577pt;}
.h27{height:46.021059pt;}
.h10{height:49.479147pt;}
.hc{height:49.556205pt;}
.h2d{height:49.556739pt;}
.h8{height:49.557272pt;}
.h2c{height:49.557805pt;}
.h2b{height:49.558339pt;}
.h9{height:49.558872pt;}
.h2a{height:49.559939pt;}
.h11{height:49.560472pt;}
.ha{height:49.562605pt;}
.hd{height:49.921855pt;}
.h12{height:50.711413pt;}
.h14{height:50.712480pt;}
.he{height:50.763471pt;}
.h13{height:50.764005pt;}
.hf{height:50.764538pt;}
.hb{height:50.765071pt;}
.h7{height:50.765605pt;}
.h2e{height:50.767738pt;}
.h6{height:59.906226pt;}
.h26{height:252.281600pt;}
.h15{height:291.520000pt;}
.h1a{height:292.480000pt;}
.h1{height:793.700800pt;}
.h0{height:1056.000000pt;}
.w6{width:29.102400pt;}
.w7{width:29.104000pt;}
.w3{width:29.376000pt;}
.w4{width:50.864000pt;}
.w8{width:68.272000pt;}
.wc{width:99.552000pt;}
.wa{width:115.328000pt;}
.wb{width:116.480000pt;}
.wd{width:130.014400pt;}
.w9{width:170.080000pt;}
.we{width:414.633600pt;}
.w5{width:472.480000pt;}
.w2{width:476.640000pt;}
.w1{width:529.133280pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:1.631841pt;}
.x29{left:10.878467pt;}
.x14{left:14.479928pt;}
.x21{left:15.823805pt;}
.x24{left:17.467791pt;}
.x5{left:18.897748pt;}
.x22{left:25.887548pt;}
.x15{left:29.711789pt;}
.x4{left:49.133470pt;}
.x2c{left:54.326964pt;}
.x27{left:62.383774pt;}
.x12{left:64.897463pt;}
.x11{left:65.897463pt;}
.x3a{left:68.260692pt;}
.x2b{left:72.383890pt;}
.x31{left:77.574555pt;}
.x3{left:79.369858pt;}
.x39{left:86.395751pt;}
.x34{left:96.345614pt;}
.x32{left:98.498546pt;}
.x38{left:102.563878pt;}
.x9{left:104.448742pt;}
.x2{left:109.606779pt;}
.x7{left:114.988110pt;}
.x8{left:115.917484pt;}
.x2f{left:133.422799pt;}
.x1{left:143.433120pt;}
.xc{left:162.330602pt;}
.x13{left:164.320000pt;}
.x1c{left:168.097201pt;}
.x30{left:173.999716pt;}
.x18{left:177.712000pt;}
.x33{left:188.885977pt;}
.xd{left:192.566856pt;}
.x2a{left:202.016000pt;}
.xf{left:208.330477pt;}
.x1e{left:215.967848pt;}
.x10{left:253.208055pt;}
.x2e{left:278.985408pt;}
.x1a{left:288.417600pt;}
.x2d{left:292.793535pt;}
.x6{left:304.845367pt;}
.x37{left:314.243393pt;}
.x35{left:316.397526pt;}
.x1d{left:334.656000pt;}
.x1f{left:383.345600pt;}
.x16{left:395.312000pt;}
.xe{left:396.641175pt;}
.x36{left:406.784956pt;}
.xa{left:412.067991pt;}
.xb{left:425.742652pt;}
.x19{left:437.919759pt;}
.x20{left:470.880000pt;}
.x28{left:489.152000pt;}
.x25{left:498.080000pt;}
.x26{left:503.840000pt;}
.x23{left:504.928000pt;}
.x1b{left:536.752000pt;}
}




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