
    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_15e7bc3aa9be99083eec240e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_609806e7260a4abe01e08fe6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_ef3171d61a971b8db2399146.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_508ea8f49bd585fed50f2410.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_99c953c97ab27d177113ead9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_86b52fc130895789a0f294c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_51b4c5c93b1fdf5afbf29aec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_18809d2e9a0246b414284320.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_0657099d67c385dd7bff9b71.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854492;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_1b463a82169dd5cd95f64114.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5e2c5b906a02a3da403bfe43.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.039062;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);}
.m2{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251128,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251353,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251763,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.120000px;}
.v3{vertical-align:33.120000px;}
.v1{vertical-align:35.042400px;}
.v4{vertical-align:37.124086px;}
.v2{vertical-align:38.314669px;}
.ls24{letter-spacing:-1.315712px;}
.ls7{letter-spacing:-0.870000px;}
.ls27{letter-spacing:-0.822000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls22{letter-spacing:-0.630000px;}
.ls19{letter-spacing:-0.618000px;}
.ls25{letter-spacing:-0.612628px;}
.ls10{letter-spacing:-0.529200px;}
.ls13{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.403200px;}
.ls9{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270600px;}
.ls1e{letter-spacing:-0.255000px;}
.lsc{letter-spacing:-0.240000px;}
.ls2a{letter-spacing:-0.103800px;}
.lse{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.036000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.038880px;}
.ls1{letter-spacing:0.046080px;}
.ls26{letter-spacing:0.084960px;}
.ls18{letter-spacing:0.100800px;}
.ls15{letter-spacing:0.106800px;}
.ls28{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.122400px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.187200px;}
.ls1f{letter-spacing:0.224767px;}
.ls29{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.328200px;}
.ls3{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.371711px;}
.ls1d{letter-spacing:0.813930px;}
.ls1c{letter-spacing:0.874339px;}
.ls12{letter-spacing:1.029467px;}
.ls14{letter-spacing:1.085821px;}
.ls21{letter-spacing:1.114890px;}
.ls20{letter-spacing:1.159739px;}
.ls17{letter-spacing:5.587200px;}
.ls1a{letter-spacing:6.307200px;}
.ls1b{letter-spacing:201.403200px;}
.ls2{letter-spacing:202.852800px;}
.ls4{letter-spacing:378.163200px;}
.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;}
}
.ws2{word-spacing:-17.153280px;}
.ws1{word-spacing:-17.107200px;}
.ws2a{word-spacing:-14.878200px;}
.ws19{word-spacing:-14.821475px;}
.ws11{word-spacing:-14.679600px;}
.wsc{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.572800px;}
.ws2b{word-spacing:-14.469000px;}
.ws2c{word-spacing:-13.780800px;}
.ws10{word-spacing:-13.274703px;}
.ws25{word-spacing:-13.233973px;}
.ws4{word-spacing:-13.186080px;}
.ws5{word-spacing:-13.147200px;}
.ws14{word-spacing:-12.263216px;}
.wsf{word-spacing:-12.245236px;}
.ws0{word-spacing:-12.060000px;}
.wsa{word-spacing:-10.612800px;}
.ws12{word-spacing:-10.357800px;}
.ws9{word-spacing:-10.342200px;}
.wsb{word-spacing:-9.092400px;}
.ws6{word-spacing:-7.884000px;}
.ws7{word-spacing:-7.632000px;}
.ws8{word-spacing:0.000000px;}
.ws16{word-spacing:19.691247px;}
.ws18{word-spacing:26.967480px;}
.ws17{word-spacing:31.287480px;}
.ws1c{word-spacing:33.791259px;}
.ws15{word-spacing:52.380190px;}
.ws22{word-spacing:54.740884px;}
.ws26{word-spacing:65.617084px;}
.ws1e{word-spacing:69.842159px;}
.wse{word-spacing:76.623188px;}
.wsd{word-spacing:80.228735px;}
.ws1a{word-spacing:87.694948px;}
.ws1b{word-spacing:95.337330px;}
.ws28{word-spacing:107.835334px;}
.ws21{word-spacing:114.458154px;}
.ws1d{word-spacing:133.721714px;}
.ws20{word-spacing:172.674258px;}
.ws24{word-spacing:187.924218px;}
.ws27{word-spacing:191.203904px;}
.ws13{word-spacing:210.027480px;}
.ws1f{word-spacing:233.274892px;}
.ws23{word-spacing:252.389768px;}
.ws29{word-spacing:258.689923px;}
._5{margin-left:-202.672800px;}
._4{margin-left:-8.390160px;}
._2b{margin-left:-4.901760px;}
._c{margin-left:-3.458640px;}
._12{margin-left:-2.379840px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._a{width:2.249760px;}
._10{width:3.279360px;}
._f{width:4.369920px;}
._16{width:5.677200px;}
._19{width:6.697680px;}
._8{width:7.768800px;}
._d{width:9.681120px;}
._11{width:10.823760px;}
._b{width:12.011760px;}
._1c{width:13.046400px;}
._25{width:15.915120px;}
._13{width:17.091360px;}
._6{width:18.353760px;}
._7{width:19.510560px;}
._18{width:20.606400px;}
._14{width:22.058880px;}
._15{width:23.068080px;}
._21{width:24.111360px;}
._2a{width:25.381440px;}
._26{width:26.429760px;}
._24{width:28.078320px;}
._23{width:29.079360px;}
._9{width:30.238560px;}
._27{width:31.589520px;}
._1d{width:32.656320px;}
._1e{width:34.464240px;}
._1f{width:35.968320px;}
._20{width:37.088640px;}
._22{width:38.853360px;}
._28{width:40.671360px;}
._29{width:42.346800px;}
._1a{width:47.608920px;}
._35{width:50.762400px;}
._34{width:52.481520px;}
._33{width:57.956852px;}
._2f{width:60.212160px;}
._30{width:61.532160px;}
._2e{width:64.950960px;}
._36{width:71.624400px;}
._0{width:75.000000px;}
._e{width:96.818640px;}
._2d{width:118.054742px;}
._2c{width:121.551627px;}
._48{width:162.800987px;}
._3c{width:174.625909px;}
._3e{width:177.680640px;}
._3{width:181.620000px;}
._3f{width:192.253440px;}
._32{width:197.316166px;}
._17{width:201.403200px;}
._37{width:215.241657px;}
._44{width:233.735013px;}
._3a{width:235.541087px;}
._39{width:243.797342px;}
._46{width:261.158459px;}
._47{width:271.141636px;}
._45{width:281.835907px;}
._49{width:289.771294px;}
._31{width:292.228057px;}
._3b{width:304.200042px;}
._40{width:311.389736px;}
._43{width:344.707087px;}
._3d{width:350.940043px;}
._42{width:365.980503px;}
._41{width:396.601183px;}
._38{width:407.908461px;}
._1b{width:1069.687200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:54.182460px;}
.fsb{font-size:54.262016px;}
.fsd{font-size:58.557402px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:65.581748px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y51{bottom:-7.020000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.575743px;}
.yb6{bottom:3.575755px;}
.y98{bottom:3.966022px;}
.y8d{bottom:3.996561px;}
.y120{bottom:4.016022px;}
.yb9{bottom:4.283488px;}
.y123{bottom:4.639323px;}
.y125{bottom:4.651262px;}
.yf4{bottom:4.815890px;}
.yeb{bottom:4.815922px;}
.y11a{bottom:4.815952px;}
.ye2{bottom:4.815957px;}
.ye5{bottom:5.762710px;}
.yee{bottom:5.762711px;}
.yf7{bottom:5.762713px;}
.yf9{bottom:5.771931px;}
.yf0{bottom:5.771969px;}
.y11c{bottom:5.771994px;}
.ye7{bottom:5.772001px;}
.y50{bottom:6.300000px;}
.ybb{bottom:11.409494px;}
.yb1{bottom:12.856794px;}
.y8c{bottom:13.575228px;}
.y95{bottom:14.327899px;}
.y4f{bottom:16.740000px;}
.yb3{bottom:21.427939px;}
.yb5{bottom:21.427950px;}
.yb8{bottom:22.134468px;}
.y97{bottom:22.331941px;}
.y92{bottom:22.332126px;}
.y8e{bottom:22.335828px;}
.y122{bottom:23.929509px;}
.y4e{bottom:27.360000px;}
.ye4{bottom:27.930375px;}
.yed{bottom:27.930377px;}
.yf6{bottom:27.930379px;}
.yb7{bottom:39.959063px;}
.y121{bottom:43.219079px;}
.y4d{bottom:44.820000px;}
.ye3{bottom:50.097744px;}
.yec{bottom:50.097745px;}
.yf5{bottom:50.097747px;}
.y93{bottom:51.029877px;}
.y7{bottom:56.340000px;}
.y53{bottom:56.520000px;}
.y11e{bottom:62.535374px;}
.yaf{bottom:67.091175px;}
.y6{bottom:70.056000px;}
.ye0{bottom:72.303771px;}
.ye9{bottom:72.303772px;}
.yf2{bottom:72.303774px;}
.y90{bottom:87.699774px;}
.y4c{bottom:88.200000px;}
.y4b{bottom:102.240000px;}
.y3b{bottom:111.456000px;}
.y117{bottom:114.876000px;}
.yad{bottom:115.236000px;}
.y4a{bottom:116.280000px;}
.y82{bottom:117.216000px;}
.y146{bottom:117.756000px;}
.yde{bottom:118.656000px;}
.y9b{bottom:120.276000px;}
.y8a{bottom:121.536000px;}
.y49{bottom:130.320000px;}
.y3a{bottom:133.596000px;}
.y116{bottom:137.016000px;}
.yac{bottom:137.556000px;}
.y81{bottom:139.536000px;}
.y145{bottom:140.076000px;}
.ydd{bottom:140.976000px;}
.y9a{bottom:142.596000px;}
.y89{bottom:143.856000px;}
.y48{bottom:144.360000px;}
.y39{bottom:155.910000px;}
.y47{bottom:158.400000px;}
.y115{bottom:159.330000px;}
.yab{bottom:159.690000px;}
.yf1{bottom:160.485000px;}
.y99{bottom:161.310000px;}
.y80{bottom:161.670000px;}
.y144{bottom:162.210000px;}
.y88{bottom:165.990000px;}
.y46{bottom:172.440000px;}
.y38{bottom:178.050000px;}
.y114{bottom:181.650000px;}
.yaa{bottom:182.010000px;}
.y7f{bottom:183.990000px;}
.y143{bottom:184.530000px;}
.y45{bottom:186.660000px;}
.y87{bottom:188.310000px;}
.y44{bottom:199.260000px;}
.y37{bottom:200.370000px;}
.y113{bottom:203.790000px;}
.ya9{bottom:204.150000px;}
.y7e{bottom:206.310000px;}
.y142{bottom:206.850000px;}
.y43{bottom:207.720000px;}
.y86{bottom:210.630000px;}
.y42{bottom:221.760000px;}
.y36{bottom:222.510000px;}
.y112{bottom:226.110000px;}
.ya8{bottom:226.470000px;}
.yf3{bottom:227.972883px;}
.y7d{bottom:228.450000px;}
.y141{bottom:228.990000px;}
.y85{bottom:232.770000px;}
.y41{bottom:235.800000px;}
.y35{bottom:244.830000px;}
.y111{bottom:248.250000px;}
.ya7{bottom:248.610000px;}
.y40{bottom:249.885000px;}
.yf8{bottom:250.140252px;}
.y7c{bottom:250.770000px;}
.y140{bottom:251.310000px;}
.y84{bottom:251.490000px;}
.y8f{bottom:252.660000px;}
.y96{bottom:253.442470px;}
.y3f{bottom:263.925000px;}
.y110{bottom:266.970000px;}
.y34{bottom:267.150000px;}
.y11d{bottom:267.210000px;}
.ya6{bottom:270.930000px;}
.y7b{bottom:272.910000px;}
.y13f{bottom:273.450000px;}
.y3e{bottom:276.705000px;}
.ydc{bottom:278.490000px;}
.y3d{bottom:287.685000px;}
.y33{bottom:289.290000px;}
.y94{bottom:290.113415px;}
.ya5{bottom:293.250000px;}
.y7a{bottom:295.230000px;}
.y13e{bottom:295.770000px;}
.ydb{bottom:299.730000px;}
.yda{bottom:308.010000px;}
.y32{bottom:311.610000px;}
.ya4{bottom:315.390000px;}
.y79{bottom:317.370000px;}
.y13d{bottom:317.910000px;}
.y11f{bottom:325.729349px;}
.y91{bottom:326.814160px;}
.y31{bottom:333.750000px;}
.yd9{bottom:334.830000px;}
.ya3{bottom:337.755000px;}
.y78{bottom:339.735000px;}
.y13c{bottom:340.275000px;}
.y124{bottom:345.044616px;}
.y30{bottom:356.115000px;}
.yd8{bottom:357.015000px;}
.ya2{bottom:359.895000px;}
.y77{bottom:362.055000px;}
.y13b{bottom:362.595000px;}
.y8b{bottom:363.485290px;}
.y10f{bottom:370.695000px;}
.y2f{bottom:378.435000px;}
.yd7{bottom:379.335000px;}
.ya1{bottom:382.215000px;}
.y76{bottom:384.195000px;}
.y13a{bottom:384.735000px;}
.y10e{bottom:392.835000px;}
.y2e{bottom:400.575000px;}
.ya0{bottom:400.935000px;}
.yd6{bottom:401.475000px;}
.yae{bottom:402.045000px;}
.y75{bottom:406.515000px;}
.y139{bottom:407.055000px;}
.y10d{bottom:415.155000px;}
.y2d{bottom:422.895000px;}
.yd5{bottom:423.795000px;}
.y74{bottom:428.655000px;}
.y138{bottom:429.195000px;}
.y10c{bottom:437.295000px;}
.y2c{bottom:445.035000px;}
.yd4{bottom:445.935000px;}
.y73{bottom:450.975000px;}
.y137{bottom:451.515000px;}
.yb0{bottom:456.279376px;}
.yb2{bottom:456.279396px;}
.y10b{bottom:459.615000px;}
.y2b{bottom:467.355000px;}
.yd3{bottom:468.255000px;}
.y72{bottom:473.295000px;}
.y136{bottom:473.835000px;}
.y10a{bottom:481.935000px;}
.y2a{bottom:489.135000px;}
.yd2{bottom:490.575000px;}
.yba{bottom:491.982660px;}
.y71{bottom:495.435000px;}
.y135{bottom:495.975000px;}
.y109{bottom:504.075000px;}
.y29{bottom:509.475000px;}
.yd1{bottom:512.715000px;}
.y70{bottom:517.755000px;}
.y134{bottom:518.295000px;}
.y108{bottom:526.395000px;}
.y28{bottom:529.275000px;}
.y9f{bottom:531.075000px;}
.yd0{bottom:535.035000px;}
.y6f{bottom:539.895000px;}
.y133{bottom:540.435000px;}
.y27{bottom:546.915000px;}
.y107{bottom:548.535000px;}
.y9e{bottom:553.395000px;}
.ycf{bottom:553.755000px;}
.ye8{bottom:554.520000px;}
.y6e{bottom:562.215000px;}
.y132{bottom:562.755000px;}
.y147{bottom:563.835000px;}
.y26{bottom:564.555000px;}
.y106{bottom:570.855000px;}
.y9d{bottom:572.295000px;}
.y9c{bottom:580.575000px;}
.y25{bottom:582.015000px;}
.y6d{bottom:584.535000px;}
.y131{bottom:585.075000px;}
.y105{bottom:593.175000px;}
.y24{bottom:599.655000px;}
.y6c{bottom:606.705000px;}
.y130{bottom:607.245000px;}
.y104{bottom:615.345000px;}
.y23{bottom:617.325000px;}
.yea{bottom:622.007843px;}
.y6b{bottom:629.025000px;}
.y12f{bottom:629.565000px;}
.y3c{bottom:631.185000px;}
.y22{bottom:634.785000px;}
.y103{bottom:637.665000px;}
.yef{bottom:644.175211px;}
.y6a{bottom:651.165000px;}
.y12e{bottom:651.705000px;}
.y21{bottom:652.425000px;}
.y102{bottom:659.805000px;}
.y20{bottom:670.065000px;}
.yce{bottom:672.585000px;}
.y69{bottom:673.485000px;}
.y12d{bottom:674.025000px;}
.y101{bottom:682.125000px;}
.y1f{bottom:687.525000px;}
.ycd{bottom:694.905000px;}
.y68{bottom:695.625000px;}
.y12c{bottom:696.165000px;}
.y100{bottom:704.265000px;}
.y1e{bottom:705.165000px;}
.ycc{bottom:713.805000px;}
.y67{bottom:717.945000px;}
.y12b{bottom:718.485000px;}
.ycb{bottom:722.085000px;}
.y1d{bottom:724.965000px;}
.yff{bottom:726.585000px;}
.y66{bottom:740.265000px;}
.y12a{bottom:740.805000px;}
.y1c{bottom:742.605000px;}
.yfe{bottom:745.305000px;}
.y118{bottom:746.085000px;}
.yca{bottom:748.905000px;}
.y1b{bottom:760.245000px;}
.y65{bottom:762.405000px;}
.y129{bottom:762.945000px;}
.yc9{bottom:771.045000px;}
.y1a{bottom:777.705000px;}
.y64{bottom:784.725000px;}
.y128{bottom:785.265000px;}
.yc8{bottom:793.365000px;}
.y19{bottom:795.345000px;}
.y63{bottom:806.865000px;}
.y127{bottom:807.405000px;}
.y18{bottom:812.985000px;}
.y119{bottom:813.572802px;}
.yc7{bottom:815.505000px;}
.y126{bottom:826.125000px;}
.y62{bottom:829.185000px;}
.y17{bottom:830.445000px;}
.y11b{bottom:835.740171px;}
.yc6{bottom:837.825000px;}
.y16{bottom:848.085000px;}
.y61{bottom:851.505000px;}
.yc5{bottom:860.145000px;}
.yfd{bottom:864.285000px;}
.y15{bottom:865.725000px;}
.y60{bottom:873.690000px;}
.yc4{bottom:882.330000px;}
.y14{bottom:883.410000px;}
.yfc{bottom:886.470000px;}
.y5f{bottom:896.010000px;}
.y13{bottom:900.870000px;}
.yc3{bottom:904.650000px;}
.yfb{bottom:905.370000px;}
.yfa{bottom:913.650000px;}
.y5e{bottom:918.150000px;}
.y12{bottom:918.510000px;}
.yc2{bottom:926.790000px;}
.y11{bottom:936.150000px;}
.y5d{bottom:940.470000px;}
.yc1{bottom:949.110000px;}
.y10{bottom:953.250000px;}
.y5c{bottom:962.610000px;}
.yc0{bottom:967.830000px;}
.ydf{bottom:968.535000px;}
.yf{bottom:969.090000px;}
.y5b{bottom:984.930000px;}
.ye{bottom:985.650000px;}
.yd{bottom:1004.910000px;}
.y5a{bottom:1007.250000px;}
.yc{bottom:1024.350000px;}
.y59{bottom:1029.390000px;}
.ye1{bottom:1036.022802px;}
.yb{bottom:1043.610000px;}
.y58{bottom:1051.710000px;}
.ye6{bottom:1058.190171px;}
.ya{bottom:1063.590000px;}
.y57{bottom:1073.850000px;}
.y9{bottom:1086.450000px;}
.ybf{bottom:1086.810000px;}
.y56{bottom:1096.170000px;}
.ybe{bottom:1108.950000px;}
.y8{bottom:1110.930000px;}
.y55{bottom:1118.490000px;}
.ybd{bottom:1127.850000px;}
.y5{bottom:1131.990000px;}
.ybc{bottom:1136.130000px;}
.y54{bottom:1140.660000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y83{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y52{bottom:1197.540000px;}
.h26{height:18.629678px;}
.h25{height:18.654348px;}
.hb{height:20.117109px;}
.h22{height:21.211327px;}
.h21{height:21.211368px;}
.h20{height:21.211409px;}
.hc{height:30.480469px;}
.h1c{height:32.127587px;}
.h5{height:33.683203px;}
.h1a{height:34.993444px;}
.h19{height:34.993477px;}
.h14{height:35.877741px;}
.hf{height:35.908588px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.h2{height:45.720703px;}
.he{height:50.273438px;}
.h6{height:50.597578px;}
.h12{height:53.891440px;}
.h18{height:53.970569px;}
.h8{height:56.084062px;}
.h24{height:58.242884px;}
.hd{height:58.819922px;}
.h9{height:60.960938px;}
.h1f{height:65.229503px;}
.h7{height:65.837812px;}
.h15{height:79.535391px;}
.h1d{height:79.655391px;}
.h10{height:88.933840px;}
.h16{height:89.204063px;}
.h1b{height:91.094655px;}
.h23{height:96.463978px;}
.h1e{height:110.866436px;}
.h17{height:122.063302px;}
.h11{height:127.248509px;}
.h13{height:146.735467px;}
.ha{height:300.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:70.123373px;}
.w6{width:73.337020px;}
.wa{width:74.102057px;}
.w9{width:75.694025px;}
.wb{width:80.468693px;}
.w5{width:81.294388px;}
.we{width:121.329851px;}
.w3{width:221.970000px;}
.w12{width:530.368408px;}
.w11{width:531.312444px;}
.w10{width:531.312448px;}
.wf{width:593.840907px;}
.w15{width:593.941235px;}
.w4{width:594.462872px;}
.w7{width:594.462880px;}
.wd{width:594.550634px;}
.wc{width:594.550641px;}
.w14{width:594.610036px;}
.w13{width:594.610038px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:3.978685px;}
.x1f{left:6.375303px;}
.x17{left:11.970715px;}
.x12{left:14.355127px;}
.x2b{left:17.111047px;}
.x1a{left:18.333636px;}
.x35{left:21.212861px;}
.x16{left:26.330617px;}
.x24{left:31.901271px;}
.x21{left:39.861114px;}
.x23{left:43.030196px;}
.x25{left:46.211657px;}
.x36{left:77.153011px;}
.x29{left:85.657410px;}
.x34{left:95.478803px;}
.x3c{left:101.086214px;}
.xa{left:106.415987px;}
.x1{left:108.035987px;}
.x2{left:114.155987px;}
.x3b{left:120.542570px;}
.x3a{left:124.393696px;}
.x4{left:130.715987px;}
.x3f{left:138.455987px;}
.x2c{left:139.890444px;}
.x11{left:149.183301px;}
.x37{left:151.049987px;}
.x13{left:152.211440px;}
.xb{left:160.409987px;}
.x3d{left:168.926826px;}
.x2d{left:173.909987px;}
.x39{left:175.349987px;}
.x2f{left:179.669987px;}
.x33{left:180.842552px;}
.x31{left:197.129987px;}
.xd{left:208.109987px;}
.x3{left:209.729987px;}
.x1b{left:212.940211px;}
.x32{left:218.189987px;}
.x8{left:224.129987px;}
.x30{left:255.809987px;}
.x5{left:278.534987px;}
.x7{left:282.314987px;}
.x1d{left:283.853376px;}
.x14{left:297.234086px;}
.x28{left:311.114987px;}
.x2a{left:328.258631px;}
.x26{left:341.354987px;}
.x9{left:344.414987px;}
.x38{left:350.354987px;}
.x1e{left:354.773968px;}
.xe{left:357.374987px;}
.x10{left:362.954987px;}
.x20{left:431.265213px;}
.x6{left:446.474987px;}
.x18{left:467.745561px;}
.xc{left:478.004987px;}
.x15{left:506.159535px;}
.x22{left:588.258573px;}
.x19{left:669.515818px;}
.x3e{left:675.149987px;}
.x27{left:702.689987px;}
.x2e{left:713.309987px;}
.xf{left:744.809987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.440000pt;}
.v3{vertical-align:29.440000pt;}
.v1{vertical-align:31.148800pt;}
.v4{vertical-align:32.999187pt;}
.v2{vertical-align:34.057483pt;}
.ls24{letter-spacing:-1.169522pt;}
.ls7{letter-spacing:-0.773333pt;}
.ls27{letter-spacing:-0.730667pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls22{letter-spacing:-0.560000pt;}
.ls19{letter-spacing:-0.549333pt;}
.ls25{letter-spacing:-0.544559pt;}
.ls10{letter-spacing:-0.470400pt;}
.ls13{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.358400pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240533pt;}
.ls1e{letter-spacing:-0.226667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls2a{letter-spacing:-0.092267pt;}
.lse{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.034560pt;}
.ls1{letter-spacing:0.040960pt;}
.ls26{letter-spacing:0.075520pt;}
.ls18{letter-spacing:0.089600pt;}
.ls15{letter-spacing:0.094933pt;}
.ls28{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.108800pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.166400pt;}
.ls1f{letter-spacing:0.199793pt;}
.ls29{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.291733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.330410pt;}
.ls1d{letter-spacing:0.723494pt;}
.ls1c{letter-spacing:0.777190pt;}
.ls12{letter-spacing:0.915082pt;}
.ls14{letter-spacing:0.965174pt;}
.ls21{letter-spacing:0.991013pt;}
.ls20{letter-spacing:1.030879pt;}
.ls17{letter-spacing:4.966400pt;}
.ls1a{letter-spacing:5.606400pt;}
.ls1b{letter-spacing:179.025067pt;}
.ls2{letter-spacing:180.313600pt;}
.ls4{letter-spacing:336.145067pt;}
.ws2{word-spacing:-15.247360pt;}
.ws1{word-spacing:-15.206400pt;}
.ws2a{word-spacing:-13.225067pt;}
.ws19{word-spacing:-13.174645pt;}
.ws11{word-spacing:-13.048533pt;}
.wsc{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.953600pt;}
.ws2b{word-spacing:-12.861333pt;}
.ws2c{word-spacing:-12.249600pt;}
.ws10{word-spacing:-11.799736pt;}
.ws25{word-spacing:-11.763531pt;}
.ws4{word-spacing:-11.720960pt;}
.ws5{word-spacing:-11.686400pt;}
.ws14{word-spacing:-10.900636pt;}
.wsf{word-spacing:-10.884654pt;}
.ws0{word-spacing:-10.720000pt;}
.wsa{word-spacing:-9.433600pt;}
.ws12{word-spacing:-9.206933pt;}
.ws9{word-spacing:-9.193067pt;}
.wsb{word-spacing:-8.082133pt;}
.ws6{word-spacing:-7.008000pt;}
.ws7{word-spacing:-6.784000pt;}
.ws8{word-spacing:0.000000pt;}
.ws16{word-spacing:17.503331pt;}
.ws18{word-spacing:23.971093pt;}
.ws17{word-spacing:27.811093pt;}
.ws1c{word-spacing:30.036675pt;}
.ws15{word-spacing:46.560169pt;}
.ws22{word-spacing:48.658563pt;}
.ws26{word-spacing:58.326297pt;}
.ws1e{word-spacing:62.081919pt;}
.wse{word-spacing:68.109500pt;}
.wsd{word-spacing:71.314431pt;}
.ws1a{word-spacing:77.951065pt;}
.ws1b{word-spacing:84.744293pt;}
.ws28{word-spacing:95.853630pt;}
.ws21{word-spacing:101.740581pt;}
.ws1d{word-spacing:118.863746pt;}
.ws20{word-spacing:153.488229pt;}
.ws24{word-spacing:167.043749pt;}
.ws27{word-spacing:169.959025pt;}
.ws13{word-spacing:186.691093pt;}
.ws1f{word-spacing:207.355459pt;}
.ws23{word-spacing:224.346460pt;}
.ws29{word-spacing:229.946598pt;}
._5{margin-left:-180.153600pt;}
._4{margin-left:-7.457920pt;}
._2b{margin-left:-4.357120pt;}
._c{margin-left:-3.074347pt;}
._12{margin-left:-2.115413pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._a{width:1.999787pt;}
._10{width:2.914987pt;}
._f{width:3.884373pt;}
._16{width:5.046400pt;}
._19{width:5.953493pt;}
._8{width:6.905600pt;}
._d{width:8.605440pt;}
._11{width:9.621120pt;}
._b{width:10.677120pt;}
._1c{width:11.596800pt;}
._25{width:14.146773pt;}
._13{width:15.192320pt;}
._6{width:16.314453pt;}
._7{width:17.342720pt;}
._18{width:18.316800pt;}
._14{width:19.607893pt;}
._15{width:20.504960pt;}
._21{width:21.432320pt;}
._2a{width:22.561280pt;}
._26{width:23.493120pt;}
._24{width:24.958507pt;}
._23{width:25.848320pt;}
._9{width:26.878720pt;}
._27{width:28.079573pt;}
._1d{width:29.027840pt;}
._1e{width:30.634880pt;}
._1f{width:31.971840pt;}
._20{width:32.967680pt;}
._22{width:34.536320pt;}
._28{width:36.152320pt;}
._29{width:37.641600pt;}
._1a{width:42.319040pt;}
._35{width:45.122133pt;}
._34{width:46.650240pt;}
._33{width:51.517202pt;}
._2f{width:53.521920pt;}
._30{width:54.695253pt;}
._2e{width:57.734187pt;}
._36{width:63.666133pt;}
._0{width:66.666667pt;}
._e{width:86.061013pt;}
._2d{width:104.937548pt;}
._2c{width:108.045891pt;}
._48{width:144.711988pt;}
._3c{width:155.223030pt;}
._3e{width:157.938347pt;}
._3{width:161.440000pt;}
._3f{width:170.891947pt;}
._32{width:175.392148pt;}
._17{width:179.025067pt;}
._37{width:191.325917pt;}
._44{width:207.764456pt;}
._3a{width:209.369855pt;}
._39{width:216.708749pt;}
._46{width:232.140852pt;}
._47{width:241.014788pt;}
._45{width:250.520806pt;}
._49{width:257.574484pt;}
._31{width:259.758273pt;}
._3b{width:270.400038pt;}
._40{width:276.790876pt;}
._43{width:306.406299pt;}
._3d{width:311.946705pt;}
._42{width:325.316003pt;}
._41{width:352.534385pt;}
._38{width:362.585299pt;}
._1b{width:950.833067pt;}
.fs6{font-size:21.120000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:48.162186pt;}
.fsb{font-size:48.232903pt;}
.fsd{font-size:52.051024pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:58.294887pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y51{bottom:-6.240000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.178439pt;}
.yb6{bottom:3.178449pt;}
.y98{bottom:3.525353pt;}
.y8d{bottom:3.552499pt;}
.y120{bottom:3.569797pt;}
.yb9{bottom:3.807545pt;}
.y123{bottom:4.123843pt;}
.y125{bottom:4.134455pt;}
.yf4{bottom:4.280791pt;}
.yeb{bottom:4.280820pt;}
.y11a{bottom:4.280847pt;}
.ye2{bottom:4.280851pt;}
.ye5{bottom:5.122408pt;}
.yee{bottom:5.122410pt;}
.yf7{bottom:5.122411pt;}
.yf9{bottom:5.130606pt;}
.yf0{bottom:5.130639pt;}
.y11c{bottom:5.130661pt;}
.ye7{bottom:5.130667pt;}
.y50{bottom:5.600000pt;}
.ybb{bottom:10.141773pt;}
.yb1{bottom:11.428261pt;}
.y8c{bottom:12.066869pt;}
.y95{bottom:12.735911pt;}
.y4f{bottom:14.880000pt;}
.yb3{bottom:19.047057pt;}
.yb5{bottom:19.047067pt;}
.yb8{bottom:19.675082pt;}
.y97{bottom:19.850615pt;}
.y92{bottom:19.850779pt;}
.y8e{bottom:19.854069pt;}
.y122{bottom:21.270675pt;}
.y4e{bottom:24.320000pt;}
.ye4{bottom:24.827000pt;}
.yed{bottom:24.827002pt;}
.yf6{bottom:24.827003pt;}
.yb7{bottom:35.519167pt;}
.y121{bottom:38.416959pt;}
.y4d{bottom:39.840000pt;}
.ye3{bottom:44.531328pt;}
.yec{bottom:44.531329pt;}
.yf5{bottom:44.531331pt;}
.y93{bottom:45.359891pt;}
.y7{bottom:50.080000pt;}
.y53{bottom:50.240000pt;}
.y11e{bottom:55.586999pt;}
.yaf{bottom:59.636600pt;}
.y6{bottom:62.272000pt;}
.ye0{bottom:64.270018pt;}
.ye9{bottom:64.270020pt;}
.yf2{bottom:64.270021pt;}
.y90{bottom:77.955355pt;}
.y4c{bottom:78.400000pt;}
.y4b{bottom:90.880000pt;}
.y3b{bottom:99.072000pt;}
.y117{bottom:102.112000pt;}
.yad{bottom:102.432000pt;}
.y4a{bottom:103.360000pt;}
.y82{bottom:104.192000pt;}
.y146{bottom:104.672000pt;}
.yde{bottom:105.472000pt;}
.y9b{bottom:106.912000pt;}
.y8a{bottom:108.032000pt;}
.y49{bottom:115.840000pt;}
.y3a{bottom:118.752000pt;}
.y116{bottom:121.792000pt;}
.yac{bottom:122.272000pt;}
.y81{bottom:124.032000pt;}
.y145{bottom:124.512000pt;}
.ydd{bottom:125.312000pt;}
.y9a{bottom:126.752000pt;}
.y89{bottom:127.872000pt;}
.y48{bottom:128.320000pt;}
.y39{bottom:138.586667pt;}
.y47{bottom:140.800000pt;}
.y115{bottom:141.626667pt;}
.yab{bottom:141.946667pt;}
.yf1{bottom:142.653333pt;}
.y99{bottom:143.386667pt;}
.y80{bottom:143.706667pt;}
.y144{bottom:144.186667pt;}
.y88{bottom:147.546667pt;}
.y46{bottom:153.280000pt;}
.y38{bottom:158.266667pt;}
.y114{bottom:161.466667pt;}
.yaa{bottom:161.786667pt;}
.y7f{bottom:163.546667pt;}
.y143{bottom:164.026667pt;}
.y45{bottom:165.920000pt;}
.y87{bottom:167.386667pt;}
.y44{bottom:177.120000pt;}
.y37{bottom:178.106667pt;}
.y113{bottom:181.146667pt;}
.ya9{bottom:181.466667pt;}
.y7e{bottom:183.386667pt;}
.y142{bottom:183.866667pt;}
.y43{bottom:184.640000pt;}
.y86{bottom:187.226667pt;}
.y42{bottom:197.120000pt;}
.y36{bottom:197.786667pt;}
.y112{bottom:200.986667pt;}
.ya8{bottom:201.306667pt;}
.yf3{bottom:202.642563pt;}
.y7d{bottom:203.066667pt;}
.y141{bottom:203.546667pt;}
.y85{bottom:206.906667pt;}
.y41{bottom:209.600000pt;}
.y35{bottom:217.626667pt;}
.y111{bottom:220.666667pt;}
.ya7{bottom:220.986667pt;}
.y40{bottom:222.120000pt;}
.yf8{bottom:222.346891pt;}
.y7c{bottom:222.906667pt;}
.y140{bottom:223.386667pt;}
.y84{bottom:223.546667pt;}
.y8f{bottom:224.586667pt;}
.y96{bottom:225.282195pt;}
.y3f{bottom:234.600000pt;}
.y110{bottom:237.306667pt;}
.y34{bottom:237.466667pt;}
.y11d{bottom:237.520000pt;}
.ya6{bottom:240.826667pt;}
.y7b{bottom:242.586667pt;}
.y13f{bottom:243.066667pt;}
.y3e{bottom:245.960000pt;}
.ydc{bottom:247.546667pt;}
.y3d{bottom:255.720000pt;}
.y33{bottom:257.146667pt;}
.y94{bottom:257.878591pt;}
.ya5{bottom:260.666667pt;}
.y7a{bottom:262.426667pt;}
.y13e{bottom:262.906667pt;}
.ydb{bottom:266.426667pt;}
.yda{bottom:273.786667pt;}
.y32{bottom:276.986667pt;}
.ya4{bottom:280.346667pt;}
.y79{bottom:282.106667pt;}
.y13d{bottom:282.586667pt;}
.y11f{bottom:289.537199pt;}
.y91{bottom:290.501475pt;}
.y31{bottom:296.666667pt;}
.yd9{bottom:297.626667pt;}
.ya3{bottom:300.226667pt;}
.y78{bottom:301.986667pt;}
.y13c{bottom:302.466667pt;}
.y124{bottom:306.706325pt;}
.y30{bottom:316.546667pt;}
.yd8{bottom:317.346667pt;}
.ya2{bottom:319.906667pt;}
.y77{bottom:321.826667pt;}
.y13b{bottom:322.306667pt;}
.y8b{bottom:323.098036pt;}
.y10f{bottom:329.506667pt;}
.y2f{bottom:336.386667pt;}
.yd7{bottom:337.186667pt;}
.ya1{bottom:339.746667pt;}
.y76{bottom:341.506667pt;}
.y13a{bottom:341.986667pt;}
.y10e{bottom:349.186667pt;}
.y2e{bottom:356.066667pt;}
.ya0{bottom:356.386667pt;}
.yd6{bottom:356.866667pt;}
.yae{bottom:357.373333pt;}
.y75{bottom:361.346667pt;}
.y139{bottom:361.826667pt;}
.y10d{bottom:369.026667pt;}
.y2d{bottom:375.906667pt;}
.yd5{bottom:376.706667pt;}
.y74{bottom:381.026667pt;}
.y138{bottom:381.506667pt;}
.y10c{bottom:388.706667pt;}
.y2c{bottom:395.586667pt;}
.yd4{bottom:396.386667pt;}
.y73{bottom:400.866667pt;}
.y137{bottom:401.346667pt;}
.yb0{bottom:405.581667pt;}
.yb2{bottom:405.581685pt;}
.y10b{bottom:408.546667pt;}
.y2b{bottom:415.426667pt;}
.yd3{bottom:416.226667pt;}
.y72{bottom:420.706667pt;}
.y136{bottom:421.186667pt;}
.y10a{bottom:428.386667pt;}
.y2a{bottom:434.786667pt;}
.yd2{bottom:436.066667pt;}
.yba{bottom:437.317920pt;}
.y71{bottom:440.386667pt;}
.y135{bottom:440.866667pt;}
.y109{bottom:448.066667pt;}
.y29{bottom:452.866667pt;}
.yd1{bottom:455.746667pt;}
.y70{bottom:460.226667pt;}
.y134{bottom:460.706667pt;}
.y108{bottom:467.906667pt;}
.y28{bottom:470.466667pt;}
.y9f{bottom:472.066667pt;}
.yd0{bottom:475.586667pt;}
.y6f{bottom:479.906667pt;}
.y133{bottom:480.386667pt;}
.y27{bottom:486.146667pt;}
.y107{bottom:487.586667pt;}
.y9e{bottom:491.906667pt;}
.ycf{bottom:492.226667pt;}
.ye8{bottom:492.906667pt;}
.y6e{bottom:499.746667pt;}
.y132{bottom:500.226667pt;}
.y147{bottom:501.186667pt;}
.y26{bottom:501.826667pt;}
.y106{bottom:507.426667pt;}
.y9d{bottom:508.706667pt;}
.y9c{bottom:516.066667pt;}
.y25{bottom:517.346667pt;}
.y6d{bottom:519.586667pt;}
.y131{bottom:520.066667pt;}
.y105{bottom:527.266667pt;}
.y24{bottom:533.026667pt;}
.y6c{bottom:539.293333pt;}
.y130{bottom:539.773333pt;}
.y104{bottom:546.973333pt;}
.y23{bottom:548.733333pt;}
.yea{bottom:552.895860pt;}
.y6b{bottom:559.133333pt;}
.y12f{bottom:559.613333pt;}
.y3c{bottom:561.053333pt;}
.y22{bottom:564.253333pt;}
.y103{bottom:566.813333pt;}
.yef{bottom:572.600188pt;}
.y6a{bottom:578.813333pt;}
.y12e{bottom:579.293333pt;}
.y21{bottom:579.933333pt;}
.y102{bottom:586.493333pt;}
.y20{bottom:595.613333pt;}
.yce{bottom:597.853333pt;}
.y69{bottom:598.653333pt;}
.y12d{bottom:599.133333pt;}
.y101{bottom:606.333333pt;}
.y1f{bottom:611.133333pt;}
.ycd{bottom:617.693333pt;}
.y68{bottom:618.333333pt;}
.y12c{bottom:618.813333pt;}
.y100{bottom:626.013333pt;}
.y1e{bottom:626.813333pt;}
.ycc{bottom:634.493333pt;}
.y67{bottom:638.173333pt;}
.y12b{bottom:638.653333pt;}
.ycb{bottom:641.853333pt;}
.y1d{bottom:644.413333pt;}
.yff{bottom:645.853333pt;}
.y66{bottom:658.013333pt;}
.y12a{bottom:658.493333pt;}
.y1c{bottom:660.093333pt;}
.yfe{bottom:662.493333pt;}
.y118{bottom:663.186667pt;}
.yca{bottom:665.693333pt;}
.y1b{bottom:675.773333pt;}
.y65{bottom:677.693333pt;}
.y129{bottom:678.173333pt;}
.yc9{bottom:685.373333pt;}
.y1a{bottom:691.293333pt;}
.y64{bottom:697.533333pt;}
.y128{bottom:698.013333pt;}
.yc8{bottom:705.213333pt;}
.y19{bottom:706.973333pt;}
.y63{bottom:717.213333pt;}
.y127{bottom:717.693333pt;}
.y18{bottom:722.653333pt;}
.y119{bottom:723.175824pt;}
.yc7{bottom:724.893333pt;}
.y126{bottom:734.333333pt;}
.y62{bottom:737.053333pt;}
.y17{bottom:738.173333pt;}
.y11b{bottom:742.880152pt;}
.yc6{bottom:744.733333pt;}
.y16{bottom:753.853333pt;}
.y61{bottom:756.893333pt;}
.yc5{bottom:764.573333pt;}
.yfd{bottom:768.253333pt;}
.y15{bottom:769.533333pt;}
.y60{bottom:776.613333pt;}
.yc4{bottom:784.293333pt;}
.y14{bottom:785.253333pt;}
.yfc{bottom:787.973333pt;}
.y5f{bottom:796.453333pt;}
.y13{bottom:800.773333pt;}
.yc3{bottom:804.133333pt;}
.yfb{bottom:804.773333pt;}
.yfa{bottom:812.133333pt;}
.y5e{bottom:816.133333pt;}
.y12{bottom:816.453333pt;}
.yc2{bottom:823.813333pt;}
.y11{bottom:832.133333pt;}
.y5d{bottom:835.973333pt;}
.yc1{bottom:843.653333pt;}
.y10{bottom:847.333333pt;}
.y5c{bottom:855.653333pt;}
.yc0{bottom:860.293333pt;}
.ydf{bottom:860.920000pt;}
.yf{bottom:861.413333pt;}
.y5b{bottom:875.493333pt;}
.ye{bottom:876.133333pt;}
.yd{bottom:893.253333pt;}
.y5a{bottom:895.333333pt;}
.yc{bottom:910.533333pt;}
.y59{bottom:915.013333pt;}
.ye1{bottom:920.909157pt;}
.yb{bottom:927.653333pt;}
.y58{bottom:934.853333pt;}
.ye6{bottom:940.613485pt;}
.ya{bottom:945.413333pt;}
.y57{bottom:954.533333pt;}
.y9{bottom:965.733333pt;}
.ybf{bottom:966.053333pt;}
.y56{bottom:974.373333pt;}
.ybe{bottom:985.733333pt;}
.y8{bottom:987.493333pt;}
.y55{bottom:994.213333pt;}
.ybd{bottom:1002.533333pt;}
.y5{bottom:1006.213333pt;}
.ybc{bottom:1009.893333pt;}
.y54{bottom:1013.920000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y83{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y52{bottom:1064.480000pt;}
.h26{height:16.559714pt;}
.h25{height:16.581642pt;}
.hb{height:17.881875pt;}
.h22{height:18.854513pt;}
.h21{height:18.854549pt;}
.h20{height:18.854585pt;}
.hc{height:27.093750pt;}
.h1c{height:28.557855pt;}
.h5{height:29.940625pt;}
.h1a{height:31.105284pt;}
.h19{height:31.105313pt;}
.h14{height:31.891326pt;}
.hf{height:31.918745pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.h2{height:40.640625pt;}
.he{height:44.687500pt;}
.h6{height:44.975625pt;}
.h12{height:47.903503pt;}
.h18{height:47.973839pt;}
.h8{height:49.852500pt;}
.h24{height:51.771453pt;}
.hd{height:52.284375pt;}
.h9{height:54.187500pt;}
.h1f{height:57.981780pt;}
.h7{height:58.522500pt;}
.h15{height:70.698125pt;}
.h1d{height:70.804792pt;}
.h10{height:79.052302pt;}
.h16{height:79.292500pt;}
.h1b{height:80.973026pt;}
.h23{height:85.745759pt;}
.h1e{height:98.547943pt;}
.h17{height:108.500713pt;}
.h11{height:113.109786pt;}
.h13{height:130.431526pt;}
.ha{height:267.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:62.331887pt;}
.w6{width:65.188462pt;}
.wa{width:65.868495pt;}
.w9{width:67.283578pt;}
.wb{width:71.527727pt;}
.w5{width:72.261678pt;}
.we{width:107.848756pt;}
.w3{width:197.306667pt;}
.w12{width:471.438585pt;}
.w11{width:472.277728pt;}
.w10{width:472.277732pt;}
.wf{width:527.858584pt;}
.w15{width:527.947765pt;}
.w4{width:528.411442pt;}
.w7{width:528.411449pt;}
.wd{width:528.489452pt;}
.wc{width:528.489458pt;}
.w14{width:528.542255pt;}
.w13{width:528.542256pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:3.536608pt;}
.x1f{left:5.666936pt;}
.x17{left:10.640635pt;}
.x12{left:12.760113pt;}
.x2b{left:15.209820pt;}
.x1a{left:16.296566pt;}
.x35{left:18.855876pt;}
.x16{left:23.404993pt;}
.x24{left:28.356685pt;}
.x21{left:35.432101pt;}
.x23{left:38.249063pt;}
.x25{left:41.077029pt;}
.x36{left:68.580454pt;}
.x29{left:76.139920pt;}
.x34{left:84.870047pt;}
.x3c{left:89.854412pt;}
.xa{left:94.591988pt;}
.x1{left:96.031988pt;}
.x2{left:101.471988pt;}
.x3b{left:107.148951pt;}
.x3a{left:110.572175pt;}
.x4{left:116.191988pt;}
.x3f{left:123.071988pt;}
.x2c{left:124.347061pt;}
.x11{left:132.607379pt;}
.x37{left:134.266655pt;}
.x13{left:135.299057pt;}
.xb{left:142.586655pt;}
.x3d{left:150.157179pt;}
.x2d{left:154.586655pt;}
.x39{left:155.866655pt;}
.x2f{left:159.706655pt;}
.x33{left:160.748935pt;}
.x31{left:175.226655pt;}
.xd{left:184.986655pt;}
.x3{left:186.426655pt;}
.x1b{left:189.280187pt;}
.x32{left:193.946655pt;}
.x8{left:199.226655pt;}
.x30{left:227.386655pt;}
.x5{left:247.586655pt;}
.x7{left:250.946655pt;}
.x1d{left:252.314112pt;}
.x14{left:264.208077pt;}
.x28{left:276.546655pt;}
.x2a{left:291.785450pt;}
.x26{left:303.426655pt;}
.x9{left:306.146655pt;}
.x38{left:311.426655pt;}
.x1e{left:315.354639pt;}
.xe{left:317.666655pt;}
.x10{left:322.626655pt;}
.x20{left:383.346856pt;}
.x6{left:396.866655pt;}
.x18{left:415.773832pt;}
.xc{left:424.893322pt;}
.x15{left:449.919587pt;}
.x22{left:522.896509pt;}
.x19{left:595.125171pt;}
.x3e{left:600.133322pt;}
.x27{left:624.613322pt;}
.x2e{left:634.053322pt;}
.xf{left:662.053322pt;}
}




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