
    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_ca3eaa1ac4301069f0cf9120.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_8b529ad914a5927bc10dcc43.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_9ab398a722ded58f102133cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fb9d7f161f9cb1209cd30b1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_80efeb175fc0eee973f4c72f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bfa6a69a8e10225221cc39a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79ceffe5f1d7d2e71f1cafc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_803e2273729f107f3a252adb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_4e294612cd80639ca42073e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d2dc0132b8781894ce043308.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.773926;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2804295282e6c83264c1373a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4a31d5e53c768c33b4c6c716.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_afd737040a7085a383a9370a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3da2925598d174f5a9c04aa2.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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:ff10;src:url('chunks/assets/font_c586371d289e590bded89fa0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.979004;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:ff11;src:url('chunks/assets/font_6fb9db6ff4da029a22920e7d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.764160;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:ff12;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.v2{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls12{letter-spacing:-2.250000px;}
.ls14{letter-spacing:-1.476000px;}
.ls20{letter-spacing:-1.188000px;}
.ls19{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.045000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.075000px;}
.ls1f{letter-spacing:0.084000px;}
.ls18{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.204000px;}
.ls1d{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.468000px;}
.lsf{letter-spacing:0.948000px;}
.lsb{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.068000px;}
.lse{letter-spacing:1.128000px;}
.lsc{letter-spacing:1.188000px;}
.ls15{letter-spacing:1.405950px;}
.ls6{letter-spacing:1.516500px;}
.ls8{letter-spacing:1.576500px;}
.ls21{letter-spacing:1.590000px;}
.ls26{letter-spacing:1.860000px;}
.ls4{letter-spacing:2.052000px;}
.ls7{letter-spacing:2.178000px;}
.ls1{letter-spacing:2.250000px;}
.ls24{letter-spacing:2.349000px;}
.ls2{letter-spacing:2.370000px;}
.ls5{letter-spacing:2.430000px;}
.ls25{letter-spacing:2.529000px;}
.ls1b{letter-spacing:4.356000px;}
.ls22{letter-spacing:4.440000px;}
.lsa{letter-spacing:4.680000px;}
.ls23{letter-spacing:9.000000px;}
.ls11{letter-spacing:18.000000px;}
.ls1c{letter-spacing:109.848000px;}
.ls27{letter-spacing:845.214000px;}
.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;}
}
.ws5{word-spacing:-23.662500px;}
.ws7{word-spacing:-19.008000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.862000px;}
.ws9{word-spacing:-16.524000px;}
.wsb{word-spacing:-16.272000px;}
.wsa{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.621000px;}
.wsc{word-spacing:-15.084000px;}
.ws3{word-spacing:-14.625000px;}
.ws4{word-spacing:-14.553000px;}
.wse{word-spacing:-13.761000px;}
.ws6{word-spacing:-13.657500px;}
.ws2{word-spacing:-12.375000px;}
.ws8{word-spacing:-10.125000px;}
.ws1{word-spacing:0.000000px;}
._15{margin-left:-9.828000px;}
._13{margin-left:-8.253000px;}
._44{margin-left:-7.149000px;}
._16{margin-left:-5.404500px;}
._b{margin-left:-4.306500px;}
._5{margin-left:-2.983500px;}
._1{margin-left:-1.287000px;}
._0{width:1.111500px;}
._2{width:2.164500px;}
._8{width:3.276000px;}
._4{width:5.206500px;}
._6{width:6.435000px;}
._17{width:7.609500px;}
._10{width:8.707500px;}
._7{width:10.471500px;}
._18{width:12.492000px;}
._f{width:13.599000px;}
._3{width:14.683500px;}
._e{width:16.992000px;}
._2d{width:18.699000px;}
._a{width:19.887000px;}
._c{width:21.622500px;}
._12{width:22.810500px;}
._9{width:23.985000px;}
._1d{width:26.019000px;}
._d{width:27.045000px;}
._57{width:28.048500px;}
._32{width:29.079000px;}
._19{width:30.555000px;}
._11{width:31.608000px;}
._34{width:33.412500px;}
._1f{width:35.010000px;}
._14{width:36.013500px;}
._31{width:37.809000px;}
._1a{width:40.468500px;}
._2e{width:42.354000px;}
._38{width:43.357500px;}
._1b{width:45.072000px;}
._2f{width:46.876500px;}
._21{width:48.816000px;}
._1e{width:50.323500px;}
._54{width:52.146000px;}
._1c{width:54.468000px;}
._30{width:56.766000px;}
._20{width:58.693500px;}
._4f{width:60.648000px;}
._4e{width:61.950000px;}
._4d{width:65.295000px;}
._4c{width:69.088500px;}
._42{width:74.565000px;}
._43{width:76.495500px;}
._3f{width:78.148500px;}
._3e{width:80.175000px;}
._3d{width:82.431000px;}
._3c{width:83.736000px;}
._40{width:87.502500px;}
._29{width:91.215000px;}
._2a{width:95.436000px;}
._28{width:96.574500px;}
._2c{width:98.179500px;}
._49{width:100.345500px;}
._2b{width:101.466000px;}
._52{width:105.159000px;}
._53{width:109.050000px;}
._33{width:110.358000px;}
._51{width:112.798500px;}
._50{width:114.147000px;}
._55{width:115.548000px;}
._41{width:118.264500px;}
._56{width:119.691000px;}
._27{width:123.957000px;}
._23{width:126.976500px;}
._24{width:128.074500px;}
._26{width:132.781500px;}
._25{width:134.698500px;}
._3a{width:135.856500px;}
._3b{width:140.652000px;}
._39{width:142.101000px;}
._22{width:146.358000px;}
._45{width:159.984000px;}
._46{width:161.613000px;}
._47{width:163.008000px;}
._48{width:164.407500px;}
._59{width:204.457500px;}
._5a{width:209.358000px;}
._5b{width:217.971000px;}
._58{width:219.144000px;}
._36{width:389.205000px;}
._35{width:402.799500px;}
._37{width:407.115000px;}
._4a{width:632.074500px;}
._4b{width:636.939000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:85.650000px;}
.fs7{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fs5{font-size:330.001502px;}
.y0{bottom:0.000000px;}
.y169{bottom:7.875000px;}
.y16c{bottom:7.890000px;}
.y167{bottom:27.045000px;}
.y5{bottom:66.450000px;}
.y4{bottom:103.612500px;}
.y166{bottom:108.112500px;}
.y3b{bottom:111.487500px;}
.ybd{bottom:113.737500px;}
.y7c{bottom:117.112500px;}
.y58{bottom:119.362500px;}
.y108{bottom:122.737500px;}
.y6d{bottom:123.862500px;}
.y14b{bottom:126.112500px;}
.yda{bottom:129.525000px;}
.y91{bottom:130.650000px;}
.y3{bottom:131.775000px;}
.yad{bottom:132.900000px;}
.y13e{bottom:135.150000px;}
.y165{bottom:139.650000px;}
.y15d{bottom:143.025000px;}
.yf2{bottom:144.150000px;}
.ybc{bottom:145.275000px;}
.y7b{bottom:148.650000px;}
.y57{bottom:150.900000px;}
.y3a{bottom:152.025000px;}
.y107{bottom:153.150000px;}
.y6c{bottom:155.400000px;}
.y2{bottom:158.775000px;}
.y90{bottom:161.025000px;}
.yac{bottom:164.400000px;}
.y13d{bottom:167.805000px;}
.yd9{bottom:170.055000px;}
.y119{bottom:172.305000px;}
.y15c{bottom:173.430000px;}
.ybb{bottom:175.680000px;}
.yc8{bottom:180.180000px;}
.y39{bottom:182.430000px;}
.y106{bottom:184.680000px;}
.y6b{bottom:185.805000px;}
.y1{bottom:186.930000px;}
.y7a{bottom:188.055000px;}
.y14f{bottom:191.430000px;}
.y8f{bottom:192.570000px;}
.y12a{bottom:197.070000px;}
.yd8{bottom:200.445000px;}
.y164{bottom:201.570000px;}
.yab{bottom:203.820000px;}
.y15b{bottom:204.945000px;}
.yf1{bottom:206.070000px;}
.yba{bottom:207.195000px;}
.yc7{bottom:210.600000px;}
.y118{bottom:211.725000px;}
.y56{bottom:212.850000px;}
.y105{bottom:215.100000px;}
.y79{bottom:219.600000px;}
.y38{bottom:222.975000px;}
.y8e{bottom:224.100000px;}
.y150{bottom:225.225000px;}
.yd7{bottom:231.975000px;}
.y163{bottom:233.100000px;}
.y14a{bottom:234.225000px;}
.y6a{bottom:235.350000px;}
.y15a{bottom:236.475000px;}
.yb9{bottom:237.600000px;}
.y1d{bottom:238.725000px;}
.y129{bottom:239.850000px;}
.yc6{bottom:242.100000px;}
.y117{bottom:243.225000px;}
.y104{bottom:246.600000px;}
.y1e{bottom:248.010000px;}
.y78{bottom:251.130000px;}
.y55{bottom:253.395000px;}
.y8d{bottom:254.505000px;}
.y37{bottom:262.380000px;}
.yd6{bottom:263.520000px;}
.yaa{bottom:265.755000px;}
.y149{bottom:266.895000px;}
.yf0{bottom:269.130000px;}
.y1c{bottom:270.270000px;}
.yc5{bottom:272.505000px;}
.y116{bottom:274.755000px;}
.y13c{bottom:275.880000px;}
.y103{bottom:278.130000px;}
.y69{bottom:281.505000px;}
.y54{bottom:283.770000px;}
.y159{bottom:284.880000px;}
.yd5{bottom:293.925000px;}
.y8c{bottom:295.050000px;}
.ya9{bottom:297.300000px;}
.yef{bottom:299.550000px;}
.y1b{bottom:301.800000px;}
.y36{bottom:302.925000px;}
.yc4{bottom:304.050000px;}
.y115{bottom:305.175000px;}
.y177{bottom:306.300000px;}
.y13b{bottom:308.550000px;}
.y77{bottom:313.050000px;}
.y53{bottom:315.300000px;}
.y102{bottom:317.550000px;}
.y68{bottom:322.050000px;}
.y174{bottom:324.300000px;}
.y8b{bottom:325.425000px;}
.ya8{bottom:328.830000px;}
.yee{bottom:331.095000px;}
.y158{bottom:332.205000px;}
.y155{bottom:333.330000px;}
.yc3{bottom:335.580000px;}
.y114{bottom:336.705000px;}
.y10e{bottom:340.080000px;}
.y1a{bottom:341.220000px;}
.y148{bottom:342.330000px;}
.y35{bottom:343.455000px;}
.y176{bottom:345.705000px;}
.y52{bottom:346.830000px;}
.y128{bottom:347.970000px;}
.y101{bottom:349.080000px;}
.y13a{bottom:351.345000px;}
.y67{bottom:352.455000px;}
.yd4{bottom:355.830000px;}
.y8a{bottom:356.955000px;}
.ya7{bottom:359.205000px;}
.yed{bottom:361.470000px;}
.y173{bottom:363.705000px;}
.yc2{bottom:365.955000px;}
.y10d{bottom:370.500000px;}
.y19{bottom:372.750000px;}
.y34{bottom:373.875000px;}
.y76{bottom:375.000000px;}
.y51{bottom:377.250000px;}
.y100{bottom:379.500000px;}
.y127{bottom:380.625000px;}
.y66{bottom:384.000000px;}
.y113{bottom:385.125000px;}
.yd3{bottom:387.375000px;}
.y89{bottom:388.500000px;}
.ya6{bottom:390.750000px;}
.yec{bottom:393.000000px;}
.y172{bottom:394.125000px;}
.yc1{bottom:397.500000px;}
.y10c{bottom:402.000000px;}
.y18{bottom:403.125000px;}
.y75{bottom:406.500000px;}
.y147{bottom:407.625000px;}
.y50{bottom:408.795000px;}
.yff{bottom:411.045000px;}
.y126{bottom:413.280000px;}
.y33{bottom:414.420000px;}
.y65{bottom:415.545000px;}
.y139{bottom:416.655000px;}
.yd2{bottom:417.795000px;}
.ya5{bottom:421.170000px;}
.yeb{bottom:424.545000px;}
.y88{bottom:427.920000px;}
.y112{bottom:432.405000px;}
.y10b{bottom:433.530000px;}
.y17{bottom:434.670000px;}
.ye1{bottom:436.905000px;}
.y4f{bottom:439.155000px;}
.yb8{bottom:440.280000px;}
.yfe{bottom:442.530000px;}
.y64{bottom:445.905000px;}
.y14e{bottom:449.325000px;}
.ya4{bottom:452.700000px;}
.y32{bottom:453.825000px;}
.yea{bottom:454.950000px;}
.y125{bottom:456.075000px;}
.yd1{bottom:457.200000px;}
.y138{bottom:458.325000px;}
.y87{bottom:459.450000px;}
.y10a{bottom:463.950000px;}
.y16{bottom:466.200000px;}
.ye0{bottom:468.450000px;}
.y179{bottom:469.575000px;}
.y4e{bottom:470.700000px;}
.y111{bottom:471.825000px;}
.yfd{bottom:472.950000px;}
.y154{bottom:474.075000px;}
.y175{bottom:476.325000px;}
.y63{bottom:477.450000px;}
.y146{bottom:483.075000px;}
.ya3{bottom:484.200000px;}
.ye9{bottom:486.450000px;}
.y124{bottom:488.745000px;}
.y86{bottom:489.855000px;}
.y137{bottom:492.120000px;}
.y31{bottom:494.370000px;}
.y109{bottom:495.495000px;}
.y15{bottom:496.605000px;}
.y162{bottom:498.870000px;}
.ydf{bottom:499.980000px;}
.y4d{bottom:502.245000px;}
.y110{bottom:503.355000px;}
.yfc{bottom:504.495000px;}
.y62{bottom:507.870000px;}
.ya2{bottom:514.620000px;}
.y145{bottom:515.745000px;}
.ye8{bottom:516.855000px;}
.y123{bottom:521.370000px;}
.y136{bottom:524.745000px;}
.y30{bottom:525.870000px;}
.y85{bottom:530.400000px;}
.y4c{bottom:532.650000px;}
.yfb{bottom:534.900000px;}
.y14{bottom:537.150000px;}
.y178{bottom:538.275000px;}
.y61{bottom:539.400000px;}
.yf3{bottom:548.400000px;}
.y10f{bottom:551.775000px;}
.ya1{bottom:555.150000px;}
.yd0{bottom:556.275000px;}
.ye7{bottom:557.400000px;}
.y84{bottom:561.900000px;}
.y122{bottom:563.025000px;}
.y4b{bottom:564.150000px;}
.y2f{bottom:565.275000px;}
.yfa{bottom:566.400000px;}
.y13{bottom:567.525000px;}
.y74{bottom:570.945000px;}
.y60{bottom:579.945000px;}
.y144{bottom:582.195000px;}
.ya0{bottom:585.570000px;}
.ycf{bottom:587.820000px;}
.ye6{bottom:588.945000px;}
.y14d{bottom:591.195000px;}
.y161{bottom:592.320000px;}
.y4a{bottom:594.570000px;}
.yc0{bottom:595.695000px;}
.y121{bottom:596.820000px;}
.yf9{bottom:597.945000px;}
.y12{bottom:599.070000px;}
.y135{bottom:600.195000px;}
.y83{bottom:601.320000px;}
.yb7{bottom:604.695000px;}
.y2e{bottom:605.820000px;}
.y5f{bottom:610.350000px;}
.y9f{bottom:617.100000px;}
.yce{bottom:618.225000px;}
.ye5{bottom:619.350000px;}
.y143{bottom:623.850000px;}
.y49{bottom:626.100000px;}
.yf8{bottom:628.350000px;}
.y120{bottom:629.475000px;}
.y82{bottom:632.850000px;}
.yb6{bottom:635.100000px;}
.y2d{bottom:636.225000px;}
.y11{bottom:639.600000px;}
.y5e{bottom:641.850000px;}
.y9e{bottom:648.630000px;}
.ycd{bottom:649.755000px;}
.ye4{bottom:650.895000px;}
.y160{bottom:654.270000px;}
.y142{bottom:656.505000px;}
.y48{bottom:657.645000px;}
.yf7{bottom:659.880000px;}
.y134{bottom:665.505000px;}
.yb5{bottom:666.630000px;}
.y10{bottom:670.005000px;}
.y11f{bottom:671.145000px;}
.y5d{bottom:672.255000px;}
.y157{bottom:674.520000px;}
.y2c{bottom:676.755000px;}
.y9d{bottom:679.005000px;}
.ye3{bottom:681.270000px;}
.y47{bottom:688.050000px;}
.ybf{bottom:689.175000px;}
.ycc{bottom:690.300000px;}
.y15f{bottom:694.800000px;}
.yde{bottom:697.050000px;}
.y141{bottom:699.300000px;}
.yf{bottom:701.550000px;}
.y5c{bottom:703.800000px;}
.y11e{bottom:704.925000px;}
.yb4{bottom:706.050000px;}
.y133{bottom:708.300000px;}
.y9c{bottom:710.550000px;}
.ye2{bottom:712.800000px;}
.y2b{bottom:717.300000px;}
.y46{bottom:719.550000px;}
.yf6{bottom:721.800000px;}
.ydd{bottom:728.595000px;}
.ycb{bottom:729.705000px;}
.ye{bottom:731.970000px;}
.ybe{bottom:734.220000px;}
.y5b{bottom:735.345000px;}
.yb3{bottom:737.595000px;}
.y9b{bottom:740.970000px;}
.y81{bottom:744.345000px;}
.y2a{bottom:747.720000px;}
.y45{bottom:749.955000px;}
.yf5{bottom:753.330000px;}
.ydc{bottom:760.095000px;}
.yca{bottom:761.220000px;}
.yd{bottom:763.470000px;}
.y153{bottom:764.595000px;}
.y5a{bottom:765.720000px;}
.yb2{bottom:769.125000px;}
.y132{bottom:773.625000px;}
.y73{bottom:774.750000px;}
.y156{bottom:782.625000px;}
.yf4{bottom:783.750000px;}
.y11d{bottom:784.875000px;}
.y9a{bottom:786.000000px;}
.y29{bottom:788.250000px;}
.y44{bottom:790.500000px;}
.yc9{bottom:791.625000px;}
.yc{bottom:795.000000px;}
.y59{bottom:797.250000px;}
.yb1{bottom:799.500000px;}
.y72{bottom:806.250000px;}
.y80{bottom:815.295000px;}
.y171{bottom:818.670000px;}
.y43{bottom:822.045000px;}
.yb{bottom:825.420000px;}
.y99{bottom:826.545000px;}
.y28{bottom:827.670000px;}
.yb0{bottom:831.045000px;}
.y11c{bottom:832.170000px;}
.y71{bottom:836.670000px;}
.y170{bottom:837.795000px;}
.y152{bottom:840.045000px;}
.y7f{bottom:845.670000px;}
.y131{bottom:849.075000px;}
.y16f{bottom:851.325000px;}
.y42{bottom:852.450000px;}
.y98{bottom:858.075000px;}
.y15e{bottom:859.200000px;}
.yaf{bottom:861.450000px;}
.y16e{bottom:864.825000px;}
.y27{bottom:868.200000px;}
.y11b{bottom:872.700000px;}
.ya{bottom:874.950000px;}
.y7e{bottom:877.200000px;}
.y140{bottom:881.700000px;}
.y41{bottom:883.950000px;}
.ydb{bottom:885.075000px;}
.y97{bottom:888.495000px;}
.y130{bottom:890.745000px;}
.yae{bottom:894.120000px;}
.y16d{bottom:897.495000px;}
.y26{bottom:899.745000px;}
.y7d{bottom:908.745000px;}
.y40{bottom:914.370000px;}
.y16b{bottom:916.605000px;}
.y96{bottom:919.995000px;}
.y9{bottom:921.120000px;}
.y12f{bottom:923.370000px;}
.y25{bottom:930.150000px;}
.y16a{bottom:936.900000px;}
.y70{bottom:939.150000px;}
.y3f{bottom:945.900000px;}
.y151{bottom:948.150000px;}
.y95{bottom:951.525000px;}
.y8{bottom:952.650000px;}
.y12e{bottom:957.150000px;}
.y24{bottom:961.650000px;}
.y11a{bottom:968.445000px;}
.y6f{bottom:970.695000px;}
.y168{bottom:976.320000px;}
.y3e{bottom:977.445000px;}
.y94{bottom:981.945000px;}
.y13f{bottom:989.820000px;}
.y23{bottom:992.070000px;}
.y12d{bottom:998.820000px;}
.y7{bottom:1001.070000px;}
.y3d{bottom:1007.820000px;}
.y93{bottom:1013.475000px;}
.y14c{bottom:1022.475000px;}
.y22{bottom:1023.600000px;}
.y12c{bottom:1031.475000px;}
.y6e{bottom:1032.600000px;}
.y6{bottom:1048.380000px;}
.y3c{bottom:1057.380000px;}
.y92{bottom:1059.630000px;}
.y21{bottom:1064.130000px;}
.y12b{bottom:1065.255000px;}
.y1f{bottom:1087.650000px;}
.y20{bottom:1118.175000px;}
.h19{height:19.110000px;}
.h16{height:19.125000px;}
.h17{height:19.162500px;}
.h8{height:34.945312px;}
.h14{height:37.125000px;}
.h15{height:38.287500px;}
.h11{height:41.317383px;}
.h18{height:49.234131px;}
.h1b{height:49.992188px;}
.h1a{height:50.625000px;}
.h1{height:50.701904px;}
.h9{height:50.800781px;}
.h1c{height:52.417969px;}
.h2{height:58.502197px;}
.hf{height:60.431763px;}
.h4{height:62.402344px;}
.h6{height:64.546875px;}
.hd{height:66.781860px;}
.ha{height:66.815977px;}
.h5{height:66.875977px;}
.hb{height:66.935977px;}
.hc{height:66.995977px;}
.h12{height:67.055977px;}
.h13{height:71.613281px;}
.h3{height:76.307007px;}
.he{height:76.783887px;}
.h10{height:84.852246px;}
.h7{height:323.878427px;}
.h0{height:1188.000000px;}
.w3{width:137.400000px;}
.w5{width:177.975000px;}
.w6{width:192.600000px;}
.w7{width:193.755000px;}
.w4{width:566.580000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:7.875000px;}
.x15{left:47.325000px;}
.x16{left:56.325000px;}
.x9{left:58.574973px;}
.x11{left:61.950000px;}
.x17{left:64.200000px;}
.x4{left:68.699973px;}
.x14{left:70.995000px;}
.x5{left:78.862486px;}
.x1{left:105.862486px;}
.xd{left:107.025000px;}
.xa{left:113.010000px;}
.x7{left:118.274986px;}
.x3{left:165.554986px;}
.x8{left:220.769986px;}
.x6{left:230.924986px;}
.xf{left:245.550000px;}
.x10{left:253.425000px;}
.x1c{left:378.449986px;}
.x1a{left:387.494986px;}
.x12{left:424.650000px;}
.x19{left:426.899986px;}
.x13{left:618.375000px;}
.x18{left:649.904986px;}
.x1d{left:727.649986px;}
.x1e{left:779.474986px;}
.xc{left:794.099986px;}
.x2{left:803.099986px;}
.xb{left:884.745000px;}
.x1b{left:901.124986px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls12{letter-spacing:-2.000000pt;}
.ls14{letter-spacing:-1.312000pt;}
.ls20{letter-spacing:-1.056000pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.040000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.066667pt;}
.ls1f{letter-spacing:0.074667pt;}
.ls18{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.181333pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.416000pt;}
.lsf{letter-spacing:0.842667pt;}
.lsb{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.949333pt;}
.lse{letter-spacing:1.002667pt;}
.lsc{letter-spacing:1.056000pt;}
.ls15{letter-spacing:1.249733pt;}
.ls6{letter-spacing:1.348000pt;}
.ls8{letter-spacing:1.401333pt;}
.ls21{letter-spacing:1.413333pt;}
.ls26{letter-spacing:1.653333pt;}
.ls4{letter-spacing:1.824000pt;}
.ls7{letter-spacing:1.936000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls24{letter-spacing:2.088000pt;}
.ls2{letter-spacing:2.106667pt;}
.ls5{letter-spacing:2.160000pt;}
.ls25{letter-spacing:2.248000pt;}
.ls1b{letter-spacing:3.872000pt;}
.ls22{letter-spacing:3.946667pt;}
.lsa{letter-spacing:4.160000pt;}
.ls23{letter-spacing:8.000000pt;}
.ls11{letter-spacing:16.000000pt;}
.ls1c{letter-spacing:97.642667pt;}
.ls27{letter-spacing:751.301333pt;}
.ws5{word-spacing:-21.033333pt;}
.ws7{word-spacing:-16.896000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.877333pt;}
.ws9{word-spacing:-14.688000pt;}
.wsb{word-spacing:-14.464000pt;}
.wsa{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.885333pt;}
.wsc{word-spacing:-13.408000pt;}
.ws3{word-spacing:-13.000000pt;}
.ws4{word-spacing:-12.936000pt;}
.wse{word-spacing:-12.232000pt;}
.ws6{word-spacing:-12.140000pt;}
.ws2{word-spacing:-11.000000pt;}
.ws8{word-spacing:-9.000000pt;}
.ws1{word-spacing:0.000000pt;}
._15{margin-left:-8.736000pt;}
._13{margin-left:-7.336000pt;}
._44{margin-left:-6.354667pt;}
._16{margin-left:-4.804000pt;}
._b{margin-left:-3.828000pt;}
._5{margin-left:-2.652000pt;}
._1{margin-left:-1.144000pt;}
._0{width:0.988000pt;}
._2{width:1.924000pt;}
._8{width:2.912000pt;}
._4{width:4.628000pt;}
._6{width:5.720000pt;}
._17{width:6.764000pt;}
._10{width:7.740000pt;}
._7{width:9.308000pt;}
._18{width:11.104000pt;}
._f{width:12.088000pt;}
._3{width:13.052000pt;}
._e{width:15.104000pt;}
._2d{width:16.621333pt;}
._a{width:17.677333pt;}
._c{width:19.220000pt;}
._12{width:20.276000pt;}
._9{width:21.320000pt;}
._1d{width:23.128000pt;}
._d{width:24.040000pt;}
._57{width:24.932000pt;}
._32{width:25.848000pt;}
._19{width:27.160000pt;}
._11{width:28.096000pt;}
._34{width:29.700000pt;}
._1f{width:31.120000pt;}
._14{width:32.012000pt;}
._31{width:33.608000pt;}
._1a{width:35.972000pt;}
._2e{width:37.648000pt;}
._38{width:38.540000pt;}
._1b{width:40.064000pt;}
._2f{width:41.668000pt;}
._21{width:43.392000pt;}
._1e{width:44.732000pt;}
._54{width:46.352000pt;}
._1c{width:48.416000pt;}
._30{width:50.458667pt;}
._20{width:52.172000pt;}
._4f{width:53.909333pt;}
._4e{width:55.066667pt;}
._4d{width:58.040000pt;}
._4c{width:61.412000pt;}
._42{width:66.280000pt;}
._43{width:67.996000pt;}
._3f{width:69.465333pt;}
._3e{width:71.266667pt;}
._3d{width:73.272000pt;}
._3c{width:74.432000pt;}
._40{width:77.780000pt;}
._29{width:81.080000pt;}
._2a{width:84.832000pt;}
._28{width:85.844000pt;}
._2c{width:87.270667pt;}
._49{width:89.196000pt;}
._2b{width:90.192000pt;}
._52{width:93.474667pt;}
._53{width:96.933333pt;}
._33{width:98.096000pt;}
._51{width:100.265333pt;}
._50{width:101.464000pt;}
._55{width:102.709333pt;}
._41{width:105.124000pt;}
._56{width:106.392000pt;}
._27{width:110.184000pt;}
._23{width:112.868000pt;}
._24{width:113.844000pt;}
._26{width:118.028000pt;}
._25{width:119.732000pt;}
._3a{width:120.761333pt;}
._3b{width:125.024000pt;}
._39{width:126.312000pt;}
._22{width:130.096000pt;}
._45{width:142.208000pt;}
._46{width:143.656000pt;}
._47{width:144.896000pt;}
._48{width:146.140000pt;}
._59{width:181.740000pt;}
._5a{width:186.096000pt;}
._5b{width:193.752000pt;}
._58{width:194.794667pt;}
._36{width:345.960000pt;}
._35{width:358.044000pt;}
._37{width:361.880000pt;}
._4a{width:561.844000pt;}
._4b{width:566.168000pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:76.133333pt;}
.fs7{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fs5{font-size:293.334669pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:7.000000pt;}
.y16c{bottom:7.013333pt;}
.y167{bottom:24.040000pt;}
.y5{bottom:59.066667pt;}
.y4{bottom:92.100000pt;}
.y166{bottom:96.100000pt;}
.y3b{bottom:99.100000pt;}
.ybd{bottom:101.100000pt;}
.y7c{bottom:104.100000pt;}
.y58{bottom:106.100000pt;}
.y108{bottom:109.100000pt;}
.y6d{bottom:110.100000pt;}
.y14b{bottom:112.100000pt;}
.yda{bottom:115.133333pt;}
.y91{bottom:116.133333pt;}
.y3{bottom:117.133333pt;}
.yad{bottom:118.133333pt;}
.y13e{bottom:120.133333pt;}
.y165{bottom:124.133333pt;}
.y15d{bottom:127.133333pt;}
.yf2{bottom:128.133333pt;}
.ybc{bottom:129.133333pt;}
.y7b{bottom:132.133333pt;}
.y57{bottom:134.133333pt;}
.y3a{bottom:135.133333pt;}
.y107{bottom:136.133333pt;}
.y6c{bottom:138.133333pt;}
.y2{bottom:141.133333pt;}
.y90{bottom:143.133333pt;}
.yac{bottom:146.133333pt;}
.y13d{bottom:149.160000pt;}
.yd9{bottom:151.160000pt;}
.y119{bottom:153.160000pt;}
.y15c{bottom:154.160000pt;}
.ybb{bottom:156.160000pt;}
.yc8{bottom:160.160000pt;}
.y39{bottom:162.160000pt;}
.y106{bottom:164.160000pt;}
.y6b{bottom:165.160000pt;}
.y1{bottom:166.160000pt;}
.y7a{bottom:167.160000pt;}
.y14f{bottom:170.160000pt;}
.y8f{bottom:171.173333pt;}
.y12a{bottom:175.173333pt;}
.yd8{bottom:178.173333pt;}
.y164{bottom:179.173333pt;}
.yab{bottom:181.173333pt;}
.y15b{bottom:182.173333pt;}
.yf1{bottom:183.173333pt;}
.yba{bottom:184.173333pt;}
.yc7{bottom:187.200000pt;}
.y118{bottom:188.200000pt;}
.y56{bottom:189.200000pt;}
.y105{bottom:191.200000pt;}
.y79{bottom:195.200000pt;}
.y38{bottom:198.200000pt;}
.y8e{bottom:199.200000pt;}
.y150{bottom:200.200000pt;}
.yd7{bottom:206.200000pt;}
.y163{bottom:207.200000pt;}
.y14a{bottom:208.200000pt;}
.y6a{bottom:209.200000pt;}
.y15a{bottom:210.200000pt;}
.yb9{bottom:211.200000pt;}
.y1d{bottom:212.200000pt;}
.y129{bottom:213.200000pt;}
.yc6{bottom:215.200000pt;}
.y117{bottom:216.200000pt;}
.y104{bottom:219.200000pt;}
.y1e{bottom:220.453333pt;}
.y78{bottom:223.226667pt;}
.y55{bottom:225.240000pt;}
.y8d{bottom:226.226667pt;}
.y37{bottom:233.226667pt;}
.yd6{bottom:234.240000pt;}
.yaa{bottom:236.226667pt;}
.y149{bottom:237.240000pt;}
.yf0{bottom:239.226667pt;}
.y1c{bottom:240.240000pt;}
.yc5{bottom:242.226667pt;}
.y116{bottom:244.226667pt;}
.y13c{bottom:245.226667pt;}
.y103{bottom:247.226667pt;}
.y69{bottom:250.226667pt;}
.y54{bottom:252.240000pt;}
.y159{bottom:253.226667pt;}
.yd5{bottom:261.266667pt;}
.y8c{bottom:262.266667pt;}
.ya9{bottom:264.266667pt;}
.yef{bottom:266.266667pt;}
.y1b{bottom:268.266667pt;}
.y36{bottom:269.266667pt;}
.yc4{bottom:270.266667pt;}
.y115{bottom:271.266667pt;}
.y177{bottom:272.266667pt;}
.y13b{bottom:274.266667pt;}
.y77{bottom:278.266667pt;}
.y53{bottom:280.266667pt;}
.y102{bottom:282.266667pt;}
.y68{bottom:286.266667pt;}
.y174{bottom:288.266667pt;}
.y8b{bottom:289.266667pt;}
.ya8{bottom:292.293333pt;}
.yee{bottom:294.306667pt;}
.y158{bottom:295.293333pt;}
.y155{bottom:296.293333pt;}
.yc3{bottom:298.293333pt;}
.y114{bottom:299.293333pt;}
.y10e{bottom:302.293333pt;}
.y1a{bottom:303.306667pt;}
.y148{bottom:304.293333pt;}
.y35{bottom:305.293333pt;}
.y176{bottom:307.293333pt;}
.y52{bottom:308.293333pt;}
.y128{bottom:309.306667pt;}
.y101{bottom:310.293333pt;}
.y13a{bottom:312.306667pt;}
.y67{bottom:313.293333pt;}
.yd4{bottom:316.293333pt;}
.y8a{bottom:317.293333pt;}
.ya7{bottom:319.293333pt;}
.yed{bottom:321.306667pt;}
.y173{bottom:323.293333pt;}
.yc2{bottom:325.293333pt;}
.y10d{bottom:329.333333pt;}
.y19{bottom:331.333333pt;}
.y34{bottom:332.333333pt;}
.y76{bottom:333.333333pt;}
.y51{bottom:335.333333pt;}
.y100{bottom:337.333333pt;}
.y127{bottom:338.333333pt;}
.y66{bottom:341.333333pt;}
.y113{bottom:342.333333pt;}
.yd3{bottom:344.333333pt;}
.y89{bottom:345.333333pt;}
.ya6{bottom:347.333333pt;}
.yec{bottom:349.333333pt;}
.y172{bottom:350.333333pt;}
.yc1{bottom:353.333333pt;}
.y10c{bottom:357.333333pt;}
.y18{bottom:358.333333pt;}
.y75{bottom:361.333333pt;}
.y147{bottom:362.333333pt;}
.y50{bottom:363.373333pt;}
.yff{bottom:365.373333pt;}
.y126{bottom:367.360000pt;}
.y33{bottom:368.373333pt;}
.y65{bottom:369.373333pt;}
.y139{bottom:370.360000pt;}
.yd2{bottom:371.373333pt;}
.ya5{bottom:374.373333pt;}
.yeb{bottom:377.373333pt;}
.y88{bottom:380.373333pt;}
.y112{bottom:384.360000pt;}
.y10b{bottom:385.360000pt;}
.y17{bottom:386.373333pt;}
.ye1{bottom:388.360000pt;}
.y4f{bottom:390.360000pt;}
.yb8{bottom:391.360000pt;}
.yfe{bottom:393.360000pt;}
.y64{bottom:396.360000pt;}
.y14e{bottom:399.400000pt;}
.ya4{bottom:402.400000pt;}
.y32{bottom:403.400000pt;}
.yea{bottom:404.400000pt;}
.y125{bottom:405.400000pt;}
.yd1{bottom:406.400000pt;}
.y138{bottom:407.400000pt;}
.y87{bottom:408.400000pt;}
.y10a{bottom:412.400000pt;}
.y16{bottom:414.400000pt;}
.ye0{bottom:416.400000pt;}
.y179{bottom:417.400000pt;}
.y4e{bottom:418.400000pt;}
.y111{bottom:419.400000pt;}
.yfd{bottom:420.400000pt;}
.y154{bottom:421.400000pt;}
.y175{bottom:423.400000pt;}
.y63{bottom:424.400000pt;}
.y146{bottom:429.400000pt;}
.ya3{bottom:430.400000pt;}
.ye9{bottom:432.400000pt;}
.y124{bottom:434.440000pt;}
.y86{bottom:435.426667pt;}
.y137{bottom:437.440000pt;}
.y31{bottom:439.440000pt;}
.y109{bottom:440.440000pt;}
.y15{bottom:441.426667pt;}
.y162{bottom:443.440000pt;}
.ydf{bottom:444.426667pt;}
.y4d{bottom:446.440000pt;}
.y110{bottom:447.426667pt;}
.yfc{bottom:448.440000pt;}
.y62{bottom:451.440000pt;}
.ya2{bottom:457.440000pt;}
.y145{bottom:458.440000pt;}
.ye8{bottom:459.426667pt;}
.y123{bottom:463.440000pt;}
.y136{bottom:466.440000pt;}
.y30{bottom:467.440000pt;}
.y85{bottom:471.466667pt;}
.y4c{bottom:473.466667pt;}
.yfb{bottom:475.466667pt;}
.y14{bottom:477.466667pt;}
.y178{bottom:478.466667pt;}
.y61{bottom:479.466667pt;}
.yf3{bottom:487.466667pt;}
.y10f{bottom:490.466667pt;}
.ya1{bottom:493.466667pt;}
.yd0{bottom:494.466667pt;}
.ye7{bottom:495.466667pt;}
.y84{bottom:499.466667pt;}
.y122{bottom:500.466667pt;}
.y4b{bottom:501.466667pt;}
.y2f{bottom:502.466667pt;}
.yfa{bottom:503.466667pt;}
.y13{bottom:504.466667pt;}
.y74{bottom:507.506667pt;}
.y60{bottom:515.506667pt;}
.y144{bottom:517.506667pt;}
.ya0{bottom:520.506667pt;}
.ycf{bottom:522.506667pt;}
.ye6{bottom:523.506667pt;}
.y14d{bottom:525.506667pt;}
.y161{bottom:526.506667pt;}
.y4a{bottom:528.506667pt;}
.yc0{bottom:529.506667pt;}
.y121{bottom:530.506667pt;}
.yf9{bottom:531.506667pt;}
.y12{bottom:532.506667pt;}
.y135{bottom:533.506667pt;}
.y83{bottom:534.506667pt;}
.yb7{bottom:537.506667pt;}
.y2e{bottom:538.506667pt;}
.y5f{bottom:542.533333pt;}
.y9f{bottom:548.533333pt;}
.yce{bottom:549.533333pt;}
.ye5{bottom:550.533333pt;}
.y143{bottom:554.533333pt;}
.y49{bottom:556.533333pt;}
.yf8{bottom:558.533333pt;}
.y120{bottom:559.533333pt;}
.y82{bottom:562.533333pt;}
.yb6{bottom:564.533333pt;}
.y2d{bottom:565.533333pt;}
.y11{bottom:568.533333pt;}
.y5e{bottom:570.533333pt;}
.y9e{bottom:576.560000pt;}
.ycd{bottom:577.560000pt;}
.ye4{bottom:578.573333pt;}
.y160{bottom:581.573333pt;}
.y142{bottom:583.560000pt;}
.y48{bottom:584.573333pt;}
.yf7{bottom:586.560000pt;}
.y134{bottom:591.560000pt;}
.yb5{bottom:592.560000pt;}
.y10{bottom:595.560000pt;}
.y11f{bottom:596.573333pt;}
.y5d{bottom:597.560000pt;}
.y157{bottom:599.573333pt;}
.y2c{bottom:601.560000pt;}
.y9d{bottom:603.560000pt;}
.ye3{bottom:605.573333pt;}
.y47{bottom:611.600000pt;}
.ybf{bottom:612.600000pt;}
.ycc{bottom:613.600000pt;}
.y15f{bottom:617.600000pt;}
.yde{bottom:619.600000pt;}
.y141{bottom:621.600000pt;}
.yf{bottom:623.600000pt;}
.y5c{bottom:625.600000pt;}
.y11e{bottom:626.600000pt;}
.yb4{bottom:627.600000pt;}
.y133{bottom:629.600000pt;}
.y9c{bottom:631.600000pt;}
.ye2{bottom:633.600000pt;}
.y2b{bottom:637.600000pt;}
.y46{bottom:639.600000pt;}
.yf6{bottom:641.600000pt;}
.ydd{bottom:647.640000pt;}
.ycb{bottom:648.626667pt;}
.ye{bottom:650.640000pt;}
.ybe{bottom:652.640000pt;}
.y5b{bottom:653.640000pt;}
.yb3{bottom:655.640000pt;}
.y9b{bottom:658.640000pt;}
.y81{bottom:661.640000pt;}
.y2a{bottom:664.640000pt;}
.y45{bottom:666.626667pt;}
.yf5{bottom:669.626667pt;}
.ydc{bottom:675.640000pt;}
.yca{bottom:676.640000pt;}
.yd{bottom:678.640000pt;}
.y153{bottom:679.640000pt;}
.y5a{bottom:680.640000pt;}
.yb2{bottom:683.666667pt;}
.y132{bottom:687.666667pt;}
.y73{bottom:688.666667pt;}
.y156{bottom:695.666667pt;}
.yf4{bottom:696.666667pt;}
.y11d{bottom:697.666667pt;}
.y9a{bottom:698.666667pt;}
.y29{bottom:700.666667pt;}
.y44{bottom:702.666667pt;}
.yc9{bottom:703.666667pt;}
.yc{bottom:706.666667pt;}
.y59{bottom:708.666667pt;}
.yb1{bottom:710.666667pt;}
.y72{bottom:716.666667pt;}
.y80{bottom:724.706667pt;}
.y171{bottom:727.706667pt;}
.y43{bottom:730.706667pt;}
.yb{bottom:733.706667pt;}
.y99{bottom:734.706667pt;}
.y28{bottom:735.706667pt;}
.yb0{bottom:738.706667pt;}
.y11c{bottom:739.706667pt;}
.y71{bottom:743.706667pt;}
.y170{bottom:744.706667pt;}
.y152{bottom:746.706667pt;}
.y7f{bottom:751.706667pt;}
.y131{bottom:754.733333pt;}
.y16f{bottom:756.733333pt;}
.y42{bottom:757.733333pt;}
.y98{bottom:762.733333pt;}
.y15e{bottom:763.733333pt;}
.yaf{bottom:765.733333pt;}
.y16e{bottom:768.733333pt;}
.y27{bottom:771.733333pt;}
.y11b{bottom:775.733333pt;}
.ya{bottom:777.733333pt;}
.y7e{bottom:779.733333pt;}
.y140{bottom:783.733333pt;}
.y41{bottom:785.733333pt;}
.ydb{bottom:786.733333pt;}
.y97{bottom:789.773333pt;}
.y130{bottom:791.773333pt;}
.yae{bottom:794.773333pt;}
.y16d{bottom:797.773333pt;}
.y26{bottom:799.773333pt;}
.y7d{bottom:807.773333pt;}
.y40{bottom:812.773333pt;}
.y16b{bottom:814.760000pt;}
.y96{bottom:817.773333pt;}
.y9{bottom:818.773333pt;}
.y12f{bottom:820.773333pt;}
.y25{bottom:826.800000pt;}
.y16a{bottom:832.800000pt;}
.y70{bottom:834.800000pt;}
.y3f{bottom:840.800000pt;}
.y151{bottom:842.800000pt;}
.y95{bottom:845.800000pt;}
.y8{bottom:846.800000pt;}
.y12e{bottom:850.800000pt;}
.y24{bottom:854.800000pt;}
.y11a{bottom:860.840000pt;}
.y6f{bottom:862.840000pt;}
.y168{bottom:867.840000pt;}
.y3e{bottom:868.840000pt;}
.y94{bottom:872.840000pt;}
.y13f{bottom:879.840000pt;}
.y23{bottom:881.840000pt;}
.y12d{bottom:887.840000pt;}
.y7{bottom:889.840000pt;}
.y3d{bottom:895.840000pt;}
.y93{bottom:900.866667pt;}
.y14c{bottom:908.866667pt;}
.y22{bottom:909.866667pt;}
.y12c{bottom:916.866667pt;}
.y6e{bottom:917.866667pt;}
.y6{bottom:931.893333pt;}
.y3c{bottom:939.893333pt;}
.y92{bottom:941.893333pt;}
.y21{bottom:945.893333pt;}
.y12b{bottom:946.893333pt;}
.y1f{bottom:966.800000pt;}
.y20{bottom:993.933333pt;}
.h19{height:16.986667pt;}
.h16{height:17.000000pt;}
.h17{height:17.033333pt;}
.h8{height:31.062500pt;}
.h14{height:33.000000pt;}
.h15{height:34.033333pt;}
.h11{height:36.726562pt;}
.h18{height:43.763672pt;}
.h1b{height:44.437500pt;}
.h1a{height:45.000000pt;}
.h1{height:45.068359pt;}
.h9{height:45.156250pt;}
.h1c{height:46.593750pt;}
.h2{height:52.001953pt;}
.hf{height:53.717122pt;}
.h4{height:55.468750pt;}
.h6{height:57.375000pt;}
.hd{height:59.361654pt;}
.ha{height:59.391979pt;}
.h5{height:59.445312pt;}
.hb{height:59.498646pt;}
.hc{height:59.551979pt;}
.h12{height:59.605313pt;}
.h13{height:63.656250pt;}
.h3{height:67.828451pt;}
.he{height:68.252344pt;}
.h10{height:75.424219pt;}
.h7{height:287.891936pt;}
.h0{height:1056.000000pt;}
.w3{width:122.133333pt;}
.w5{width:158.200000pt;}
.w6{width:171.200000pt;}
.w7{width:172.226667pt;}
.w4{width:503.626667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:7.000000pt;}
.x15{left:42.066667pt;}
.x16{left:50.066667pt;}
.x9{left:52.066642pt;}
.x11{left:55.066667pt;}
.x17{left:57.066667pt;}
.x4{left:61.066642pt;}
.x14{left:63.106667pt;}
.x5{left:70.099988pt;}
.x1{left:94.099988pt;}
.xd{left:95.133333pt;}
.xa{left:100.453333pt;}
.x7{left:105.133321pt;}
.x3{left:147.159988pt;}
.x8{left:196.239988pt;}
.x6{left:205.266655pt;}
.xf{left:218.266667pt;}
.x10{left:225.266667pt;}
.x1c{left:336.399988pt;}
.x1a{left:344.439988pt;}
.x12{left:377.466667pt;}
.x19{left:379.466655pt;}
.x13{left:549.666667pt;}
.x18{left:577.693321pt;}
.x1d{left:646.799988pt;}
.x1e{left:692.866655pt;}
.xc{left:705.866655pt;}
.x2{left:713.866655pt;}
.xb{left:786.440000pt;}
.x1b{left:800.999988pt;}
}




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