
    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_013efa2e5548b848913afc7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958008;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_bd902d65d7a9415131e3b681.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.716309;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_2bec88dcb1a1d2b870b8cd3c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_925205d0189034f1125c4dcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031738;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_79eb34b05cf6b3c4c9f33169.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_74760ad719244910ac1e2af9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_72bb63c55abd690e5bed99d2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_251042aa9d02a1480b83fbb4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_631ed0647e4f45c176f60660.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_85179bb00c5eda391896fad3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_c8caba5ee073b66b0f57ce5b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c299f98f607166775c79b170.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_27d42711605a001f7ecb5987.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_dcb72f2bc7b3dc20e7015b8a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.031738;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_ba87fcfa17d40c643c2c3913.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.420200px;}
.ls2{letter-spacing:-60.000000px;}
.ls3{letter-spacing:-4.350000px;}
.ls1{letter-spacing:-2.760000px;}
.ls2a{letter-spacing:-1.308000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.636000px;}
.ls5{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.472200px;}
.ls16{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.322800px;}
.lsd{letter-spacing:-0.250800px;}
.ls20{letter-spacing:-0.229800px;}
.lsb{letter-spacing:-0.144600px;}
.ls29{letter-spacing:-0.141000px;}
.ls12{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.115200px;}
.ls1a{letter-spacing:-0.048960px;}
.ls26{letter-spacing:-0.025920px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.042480px;}
.ls8{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.069000px;}
.ls7{letter-spacing:0.074880px;}
.ls21{letter-spacing:0.089400px;}
.ls11{letter-spacing:0.149760px;}
.ls25{letter-spacing:0.150000px;}
.ls2c{letter-spacing:0.247680px;}
.ls2b{letter-spacing:0.247800px;}
.lse{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.256320px;}
.ls15{letter-spacing:0.269760px;}
.ls18{letter-spacing:0.285000px;}
.ls6{letter-spacing:0.285840px;}
.ls9{letter-spacing:0.302400px;}
.ls24{letter-spacing:0.313800px;}
.ls22{letter-spacing:0.371400px;}
.ls1c{letter-spacing:0.409680px;}
.ls2e{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.380000px;}
.ls17{letter-spacing:39.185280px;}
.ls1e{letter-spacing:42.101280px;}
.ls1d{letter-spacing:54.018720px;}
.ls1b{letter-spacing:59.345280px;}
.lsf{letter-spacing:82.368000px;}
.ls10{letter-spacing:98.184000px;}
.ls13{letter-spacing:108.984000px;}
.ls14{letter-spacing:134.184000px;}
.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;}
}
.ws1a{word-spacing:-66.240000px;}
.ws1{word-spacing:-38.802000px;}
.wse{word-spacing:-35.310240px;}
.ws2{word-spacing:-26.784000px;}
.ws17{word-spacing:-21.641760px;}
.ws1d{word-spacing:-19.038240px;}
.ws1c{word-spacing:-18.808440px;}
.ws1f{word-spacing:-15.341640px;}
.ws10{word-spacing:-15.272640px;}
.ws16{word-spacing:-15.255240px;}
.ws14{word-spacing:-15.226560px;}
.ws12{word-spacing:-15.226440px;}
.ws1e{word-spacing:-15.059640px;}
.wsf{word-spacing:-14.970240px;}
.ws19{word-spacing:-14.921280px;}
.ws1b{word-spacing:-14.855040px;}
.ws13{word-spacing:-14.837640px;}
.ws20{word-spacing:-14.829240px;}
.ws11{word-spacing:-14.719440px;}
.ws15{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.334240px;}
.ws21{word-spacing:-13.662240px;}
.wsd{word-spacing:-10.293840px;}
.wsc{word-spacing:-10.106760px;}
.ws3{word-spacing:0.000000px;}
.ws27{word-spacing:1.116000px;}
.ws28{word-spacing:1.440000px;}
.wsa{word-spacing:1.920000px;}
.ws6{word-spacing:3.216000px;}
.ws23{word-spacing:4.824000px;}
.ws26{word-spacing:5.220000px;}
.ws25{word-spacing:6.912000px;}
.ws5{word-spacing:7.584000px;}
.ws24{word-spacing:7.848000px;}
.ws7{word-spacing:10.848000px;}
.ws8{word-spacing:12.336000px;}
.ws9{word-spacing:12.768000px;}
.ws4{word-spacing:27.744000px;}
.ws0{word-spacing:59.250000px;}
.wsb{word-spacing:101.376000px;}
.ws22{word-spacing:730.473000px;}
._6{margin-left:-39.715200px;}
._7{margin-left:-23.607600px;}
._10{margin-left:-14.723760px;}
._11{margin-left:-13.688640px;}
._e{margin-left:-10.511520px;}
._f{margin-left:-8.261760px;}
._4{margin-left:-6.393600px;}
._b{margin-left:-5.251200px;}
._0{margin-left:-4.195200px;}
._5{margin-left:-2.526000px;}
._1{margin-left:-1.352400px;}
._8{width:1.190400px;}
._13{width:2.234160px;}
._17{width:3.290640px;}
._3{width:4.315200px;}
._16{width:5.996880px;}
._19{width:7.266960px;}
._1b{width:9.055920px;}
._1c{width:10.134720px;}
._21{width:11.180640px;}
._18{width:12.242640px;}
._14{width:13.534800px;}
._15{width:16.066560px;}
._27{width:17.289360px;}
._20{width:18.347040px;}
._1f{width:19.458000px;}
._25{width:20.595120px;}
._24{width:22.019280px;}
._1d{width:23.184000px;}
._1e{width:24.589440px;}
._23{width:30.212400px;}
._22{width:31.265280px;}
._26{width:32.777760px;}
._28{width:36.156000px;}
._12{width:40.572000px;}
._29{width:43.519680px;}
._2a{width:44.919600px;}
._2{width:60.375000px;}
._9{width:180.288000px;}
._a{width:192.192000px;}
._1a{width:198.864960px;}
._d{width:849.185760px;}
._c{width:1127.183280px;}
.fca{color:rgb(124,0,53);}
.fc3{color:rgb(104,103,108);}
.fc8{color:rgb(9,102,84);}
.fc6{color:rgb(226,0,26);}
.fc2{color:transparent;}
.fc5{color:rgb(105,20,56);}
.fc1{color:rgb(0,163,111);}
.fc9{color:rgb(6,63,52);}
.fc7{color:rgb(50,50,50);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fse{font-size:36.000000px;}
.fs5{font-size:45.360000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fsc{font-size:84.240000px;}
.fsd{font-size:90.000000px;}
.fs9{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:156.240000px;}
.fs2{font-size:174.000000px;}
.fs0{font-size:276.000000px;}
.fs1{font-size:750.000000px;}
.y37{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y39{bottom:3.240000px;}
.y24{bottom:8.820000px;}
.y28{bottom:9.000000px;}
.y2b{bottom:9.030000px;}
.y161{bottom:9.045000px;}
.y157{bottom:22.860000px;}
.y26{bottom:29.880000px;}
.y27{bottom:30.060000px;}
.y159{bottom:33.480000px;}
.y130{bottom:38.874000px;}
.y11f{bottom:38.880000px;}
.y12b{bottom:39.060000px;}
.y160{bottom:39.105000px;}
.y16e{bottom:41.631000px;}
.y156{bottom:43.920000px;}
.y31{bottom:50.940000px;}
.y152{bottom:51.120000px;}
.y16d{bottom:52.431000px;}
.y158{bottom:53.640000px;}
.y12f{bottom:59.934000px;}
.y11e{bottom:59.940000px;}
.y142{bottom:59.970000px;}
.y154{bottom:59.985000px;}
.y147{bottom:60.120000px;}
.y12a{bottom:60.165000px;}
.y1a{bottom:61.416000px;}
.y16c{bottom:63.231000px;}
.y126{bottom:64.440000px;}
.y14c{bottom:68.940000px;}
.y151{bottom:72.000000px;}
.y16b{bottom:74.031000px;}
.y13b{bottom:80.820000px;}
.y12e{bottom:80.994000px;}
.y11d{bottom:81.000000px;}
.y141{bottom:81.030000px;}
.y129{bottom:81.045000px;}
.y12{bottom:83.367000px;}
.y133{bottom:85.320000px;}
.y125{bottom:90.000000px;}
.y16a{bottom:95.028000px;}
.y3{bottom:95.885250px;}
.yb0{bottom:97.416000px;}
.y11{bottom:97.767000px;}
.y13a{bottom:101.880000px;}
.y140{bottom:101.910000px;}
.y12d{bottom:102.054000px;}
.y11c{bottom:102.060000px;}
.y103{bottom:102.096000px;}
.y128{bottom:102.105000px;}
.y13e{bottom:103.710000px;}
.y145{bottom:103.860000px;}
.y169{bottom:105.828000px;}
.y132{bottom:106.380000px;}
.y86{bottom:107.136000px;}
.y14b{bottom:111.060000px;}
.y12c{bottom:115.056000px;}
.y124{bottom:115.560000px;}
.y168{bottom:116.628000px;}
.yaf{bottom:118.476000px;}
.y11b{bottom:122.940000px;}
.y13f{bottom:122.970000px;}
.y146{bottom:123.120000px;}
.y102{bottom:123.156000px;}
.y13d{bottom:123.870000px;}
.y144{bottom:124.020000px;}
.y166{bottom:127.372950px;}
.y167{bottom:127.428000px;}
.y138{bottom:127.485000px;}
.y14d{bottom:128.736000px;}
.y14a{bottom:131.985000px;}
.y85{bottom:136.296000px;}
.yae{bottom:139.356000px;}
.y123{bottom:140.940000px;}
.y11a{bottom:144.000000px;}
.y15d{bottom:144.030000px;}
.y101{bottom:144.216000px;}
.y137{bottom:148.545000px;}
.yd7{bottom:148.896000px;}
.y136{bottom:153.045000px;}
.yad{bottom:160.410000px;}
.y122{bottom:162.000000px;}
.y15c{bottom:164.910000px;}
.y119{bottom:165.060000px;}
.y100{bottom:165.090000px;}
.y84{bottom:165.450000px;}
.y18{bottom:166.504500px;}
.yd6{bottom:169.050000px;}
.y135{bottom:174.105000px;}
.y149{bottom:174.825000px;}
.y148{bottom:175.170000px;}
.y121{bottom:183.060000px;}
.y118{bottom:185.940000px;}
.y15b{bottom:185.970000px;}
.yff{bottom:186.150000px;}
.yd5{bottom:190.110000px;}
.yac{bottom:191.550000px;}
.y83{bottom:194.610000px;}
.y17{bottom:195.304500px;}
.y6{bottom:205.566300px;}
.y16{bottom:209.704500px;}
.yd4{bottom:210.990000px;}
.yfe{bottom:216.210000px;}
.y15{bottom:224.104500px;}
.y82{bottom:224.670000px;}
.yab{bottom:225.030000px;}
.yd3{bottom:232.050000px;}
.yfd{bottom:237.090000px;}
.y65{bottom:238.350000px;}
.y14{bottom:238.504500px;}
.y127{bottom:243.210000px;}
.y81{bottom:245.550000px;}
.yd2{bottom:253.110000px;}
.yaa{bottom:255.090000px;}
.yfc{bottom:258.150000px;}
.y64{bottom:258.510000px;}
.y80{bottom:266.610000px;}
.y34{bottom:267.150000px;}
.yd1{bottom:273.990000px;}
.ya9{bottom:275.970000px;}
.y162{bottom:276.690000px;}
.y4{bottom:277.311750px;}
.yfb{bottom:279.210000px;}
.y33{bottom:283.530000px;}
.y63{bottom:288.570000px;}
.y15f{bottom:293.970000px;}
.yd0{bottom:295.050000px;}
.y7f{bottom:296.715000px;}
.ya8{bottom:297.075000px;}
.yfa{bottom:300.135000px;}
.y13{bottom:309.754800px;}
.ycf{bottom:316.155000px;}
.ya7{bottom:318.135000px;}
.y62{bottom:318.675000px;}
.y32{bottom:318.855000px;}
.yf9{bottom:321.195000px;}
.y7e{bottom:326.055000px;}
.yce{bottom:337.035000px;}
.ya6{bottom:339.015000px;}
.y10{bottom:342.004800px;}
.yf8{bottom:342.255000px;}
.y61{bottom:348.555000px;}
.y7d{bottom:352.155000px;}
.y30{bottom:354.135000px;}
.yf{bottom:356.404800px;}
.ycd{bottom:358.095000px;}
.ya5{bottom:360.075000px;}
.yf7{bottom:363.135000px;}
.ye{bottom:370.804800px;}
.y120{bottom:371.595000px;}
.y143{bottom:375.375000px;}
.y60{bottom:378.615000px;}
.ycc{bottom:379.155000px;}
.y15e{bottom:380.235000px;}
.ya4{bottom:381.135000px;}
.yd{bottom:385.204800px;}
.yf6{bottom:393.195000px;}
.ycb{bottom:400.035000px;}
.ya3{bottom:402.015000px;}
.yc{bottom:406.204800px;}
.y5f{bottom:408.675000px;}
.yf5{bottom:414.255000px;}
.yb{bottom:420.604800px;}
.yca{bottom:421.095000px;}
.ya2{bottom:423.075000px;}
.y2f{bottom:431.355000px;}
.ya{bottom:435.004800px;}
.yf4{bottom:435.135000px;}
.y5e{bottom:438.555000px;}
.yc9{bottom:442.155000px;}
.ya1{bottom:444.135000px;}
.y9{bottom:449.404800px;}
.yc8{bottom:463.035000px;}
.y8{bottom:463.804800px;}
.ya0{bottom:465.015000px;}
.yf3{bottom:466.455000px;}
.y2e{bottom:466.635000px;}
.y5d{bottom:470.595000px;}
.y7c{bottom:473.655000px;}
.y7{bottom:478.204800px;}
.y5{bottom:478.827900px;}
.yc7{bottom:484.095000px;}
.y9f{bottom:486.075000px;}
.yf2{bottom:499.935000px;}
.y2d{bottom:501.915000px;}
.y7b{bottom:503.715000px;}
.yc6{bottom:505.155000px;}
.y5c{bottom:515.955000px;}
.y9e{bottom:517.215000px;}
.y7a{bottom:524.595000px;}
.y13c{bottom:524.775000px;}
.y15a{bottom:529.635000px;}
.yf1{bottom:529.815000px;}
.yc5{bottom:535.035000px;}
.y2c{bottom:537.195000px;}
.y9d{bottom:542.955000px;}
.y79{bottom:545.655000px;}
.y5b{bottom:545.835000px;}
.y2{bottom:549.785100px;}
.yf0{bottom:550.875000px;}
.yc4{bottom:556.095000px;}
.y78{bottom:566.715000px;}
.yef{bottom:571.935000px;}
.y5a{bottom:572.115000px;}
.y2a{bottom:572.295000px;}
.yc3{bottom:577.185000px;}
.y9c{bottom:578.265000px;}
.y10b{bottom:579.525000px;}
.y117{bottom:580.965000px;}
.yee{bottom:592.845000px;}
.y77{bottom:596.625000px;}
.yc2{bottom:598.065000px;}
.y10a{bottom:599.685000px;}
.y59{bottom:607.425000px;}
.y29{bottom:607.605000px;}
.yed{bottom:613.905000px;}
.y76{bottom:617.685000px;}
.y109{bottom:620.745000px;}
.y9b{bottom:623.625000px;}
.yc1{bottom:629.205000px;}
.y1{bottom:629.273100px;}
.yec{bottom:634.965000px;}
.y75{bottom:638.745000px;}
.y108{bottom:641.805000px;}
.y58{bottom:642.705000px;}
.y25{bottom:642.885000px;}
.y9a{bottom:653.685000px;}
.yeb{bottom:655.845000px;}
.y74{bottom:659.625000px;}
.yc0{bottom:662.685000px;}
.y139{bottom:674.025000px;}
.y99{bottom:674.745000px;}
.yea{bottom:676.905000px;}
.y73{bottom:680.685000px;}
.ybf{bottom:692.745000px;}
.y98{bottom:695.625000px;}
.y57{bottom:696.525000px;}
.y23{bottom:699.225000px;}
.y72{bottom:701.745000px;}
.y49{bottom:703.365000px;}
.ye9{bottom:706.965000px;}
.ybe{bottom:713.805000px;}
.y97{bottom:716.685000px;}
.y71{bottom:722.625000px;}
.y56{bottom:722.985000px;}
.y48{bottom:723.345000px;}
.ye8{bottom:727.845000px;}
.ybd{bottom:734.685000px;}
.y96{bottom:737.745000px;}
.y22{bottom:738.825000px;}
.y155{bottom:741.885000px;}
.y70{bottom:743.685000px;}
.ye7{bottom:748.905000px;}
.y47{bottom:753.405000px;}
.y55{bottom:754.845000px;}
.ybc{bottom:755.745000px;}
.y6f{bottom:764.745000px;}
.y95{bottom:767.625000px;}
.y21{bottom:768.885000px;}
.y107{bottom:776.805000px;}
.ye6{bottom:778.965000px;}
.y46{bottom:781.845000px;}
.y6e{bottom:785.625000px;}
.ybb{bottom:785.805000px;}
.y94{bottom:788.685000px;}
.y116{bottom:793.185000px;}
.ye5{bottom:799.845000px;}
.y54{bottom:800.205000px;}
.y134{bottom:802.185000px;}
.y20{bottom:804.885000px;}
.yba{bottom:806.685000px;}
.y93{bottom:809.745000px;}
.y45{bottom:811.905000px;}
.y153{bottom:812.085000px;}
.y6d{bottom:817.665000px;}
.ye4{bottom:820.905000px;}
.y165{bottom:823.425000px;}
.yb9{bottom:827.745000px;}
.y53{bottom:829.365000px;}
.y92{bottom:830.625000px;}
.y44{bottom:841.965000px;}
.y164{bottom:843.405000px;}
.y115{bottom:847.005000px;}
.yb8{bottom:848.805000px;}
.y91{bottom:851.685000px;}
.y52{bottom:858.390000px;}
.y1f{bottom:861.630000px;}
.ye3{bottom:862.890000px;}
.y6c{bottom:863.070000px;}
.yb7{bottom:869.730000px;}
.y43{bottom:871.890000px;}
.y90{bottom:872.790000px;}
.y114{bottom:873.510000px;}
.y51{bottom:883.950000px;}
.y6b{bottom:889.170000px;}
.y106{bottom:890.790000px;}
.y8f{bottom:893.670000px;}
.yb6{bottom:899.790000px;}
.y42{bottom:901.950000px;}
.y113{bottom:903.390000px;}
.ye2{bottom:905.010000px;}
.y50{bottom:909.510000px;}
.y105{bottom:911.850000px;}
.y8e{bottom:914.730000px;}
.y1e{bottom:918.150000px;}
.y150{bottom:919.230000px;}
.yb5{bottom:920.850000px;}
.y6a{bottom:924.450000px;}
.ye1{bottom:925.890000px;}
.y41{bottom:927.330000px;}
.y4f{bottom:934.890000px;}
.yb4{bottom:941.730000px;}
.y8d{bottom:944.790000px;}
.ye0{bottom:946.950000px;}
.y40{bottom:952.890000px;}
.y112{bottom:954.510000px;}
.y69{bottom:959.730000px;}
.yb3{bottom:962.790000px;}
.y4e{bottom:966.930000px;}
.ydf{bottom:968.010000px;}
.y1d{bottom:968.730000px;}
.y8c{bottom:974.670000px;}
.y111{bottom:975.390000px;}
.y3f{bottom:978.450000px;}
.yb2{bottom:983.850000px;}
.yde{bottom:988.890000px;}
.y1c{bottom:994.290000px;}
.y68{bottom:995.010000px;}
.y110{bottom:996.450000px;}
.y131{bottom:1002.570000px;}
.y3e{bottom:1003.830000px;}
.y8b{bottom:1004.730000px;}
.y163{bottom:1007.070000px;}
.y4d{bottom:1012.290000px;}
.y10f{bottom:1017.510000px;}
.ydd{bottom:1018.950000px;}
.y8a{bottom:1025.790000px;}
.y3d{bottom:1029.390000px;}
.y67{bottom:1030.290000px;}
.y10e{bottom:1038.390000px;}
.ydc{bottom:1039.110000px;}
.y4c{bottom:1041.450000px;}
.yb1{bottom:1046.850000px;}
.y3c{bottom:1054.950000px;}
.y89{bottom:1055.850000px;}
.ydb{bottom:1059.270000px;}
.y10d{bottom:1059.450000px;}
.y104{bottom:1067.730000px;}
.y14f{bottom:1068.630000px;}
.y4b{bottom:1073.490000px;}
.y88{bottom:1076.730000px;}
.yda{bottom:1079.430000px;}
.y3b{bottom:1080.330000px;}
.y10c{bottom:1080.510000px;}
.y66{bottom:1083.930000px;}
.y87{bottom:1097.790000px;}
.yd9{bottom:1099.410000px;}
.y1b{bottom:1109.850000px;}
.y3a{bottom:1112.370000px;}
.y4a{bottom:1118.850000px;}
.yd8{bottom:1119.570000px;}
.y14e{bottom:1122.270000px;}
.y35{bottom:1153.080000px;}
.y38{bottom:1212.120000px;}
.y19{bottom:1222.920000px;}
.y36{bottom:1236.240000px;}
.h11{height:7.380000px;}
.h12{height:24.120000px;}
.h2a{height:28.880859px;}
.hc{height:34.380000px;}
.he{height:34.560000px;}
.hf{height:34.596000px;}
.h7{height:38.507812px;}
.h9{height:45.116367px;}
.h15{height:47.223633px;}
.h17{height:52.260820px;}
.hd{height:55.440000px;}
.h1a{height:57.927656px;}
.ha{height:65.884219px;}
.h16{height:67.824844px;}
.h24{height:69.300000px;}
.h14{height:71.613281px;}
.h29{height:72.301059px;}
.h10{height:76.500000px;}
.h26{height:85.536000px;}
.h18{height:86.255508px;}
.h6{height:86.642578px;}
.h13{height:98.051133px;}
.h23{height:106.416000px;}
.h1d{height:127.440000px;}
.h27{height:127.476000px;}
.h1c{height:127.656000px;}
.h1e{height:131.976000px;}
.h28{height:136.620000px;}
.h5{height:139.590820px;}
.h21{height:148.500000px;}
.h20{height:148.536000px;}
.hb{height:159.978164px;}
.h22{height:199.470000px;}
.h1f{height:199.650000px;}
.h2{height:207.000000px;}
.h1b{height:208.650000px;}
.h19{height:211.500000px;}
.h25{height:211.530000px;}
.h3{height:515.783250px;}
.h4{height:533.203125px;}
.h0{height:1262.835000px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:0.540000px;}
.w9{width:74.160000px;}
.wc{width:116.640000px;}
.we{width:179.130000px;}
.wa{width:180.030000px;}
.w5{width:244.110000px;}
.w6{width:371.805000px;}
.wb{width:403.665000px;}
.wf{width:496.365000px;}
.wd{width:541.770000px;}
.w2{width:602.398500px;}
.w8{width:659.310000px;}
.w0{width:892.914000px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x16{left:15.480000px;}
.xf{left:19.620000px;}
.x1e{left:26.820000px;}
.x23{left:34.740000px;}
.x25{left:41.456700px;}
.x17{left:42.690000px;}
.xe{left:54.570000px;}
.x7{left:84.995987px;}
.xa{left:86.975987px;}
.x10{left:90.030000px;}
.x11{left:92.370000px;}
.x15{left:101.370000px;}
.x18{left:108.390000px;}
.x21{left:111.995987px;}
.x1a{left:117.395987px;}
.xb{left:127.475987px;}
.x14{left:148.890000px;}
.x1c{left:159.870000px;}
.x13{left:162.750000px;}
.x5{left:165.118200px;}
.x12{left:169.950000px;}
.x19{left:172.470000px;}
.x1f{left:202.530000px;}
.x1b{left:253.839000px;}
.x22{left:265.035000px;}
.x3{left:270.300450px;}
.x2{left:290.515500px;}
.x1{left:309.862200px;}
.x6{left:314.645700px;}
.x1d{left:340.635000px;}
.xd{left:372.675000px;}
.x9{left:382.754987px;}
.x26{left:416.692950px;}
.x4{left:434.763750px;}
.x24{left:682.529987px;}
.x8{left:688.289987px;}
.x20{left:744.299987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.595733pt;}
.ls2{letter-spacing:-53.333333pt;}
.ls3{letter-spacing:-3.866667pt;}
.ls1{letter-spacing:-2.453333pt;}
.ls2a{letter-spacing:-1.162667pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.565333pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.419733pt;}
.ls16{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.286933pt;}
.lsd{letter-spacing:-0.222933pt;}
.ls20{letter-spacing:-0.204267pt;}
.lsb{letter-spacing:-0.128533pt;}
.ls29{letter-spacing:-0.125333pt;}
.ls12{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.102400pt;}
.ls1a{letter-spacing:-0.043520pt;}
.ls26{letter-spacing:-0.023040pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.037760pt;}
.ls8{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.061333pt;}
.ls7{letter-spacing:0.066560pt;}
.ls21{letter-spacing:0.079467pt;}
.ls11{letter-spacing:0.133120pt;}
.ls25{letter-spacing:0.133333pt;}
.ls2c{letter-spacing:0.220160pt;}
.ls2b{letter-spacing:0.220267pt;}
.lse{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.227840pt;}
.ls15{letter-spacing:0.239787pt;}
.ls18{letter-spacing:0.253333pt;}
.ls6{letter-spacing:0.254080pt;}
.ls9{letter-spacing:0.268800pt;}
.ls24{letter-spacing:0.278933pt;}
.ls22{letter-spacing:0.330133pt;}
.ls1c{letter-spacing:0.364160pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.226667pt;}
.ls17{letter-spacing:34.831360pt;}
.ls1e{letter-spacing:37.423360pt;}
.ls1d{letter-spacing:48.016640pt;}
.ls1b{letter-spacing:52.751360pt;}
.lsf{letter-spacing:73.216000pt;}
.ls10{letter-spacing:87.274667pt;}
.ls13{letter-spacing:96.874667pt;}
.ls14{letter-spacing:119.274667pt;}
.ws1a{word-spacing:-58.880000pt;}
.ws1{word-spacing:-34.490667pt;}
.wse{word-spacing:-31.386880pt;}
.ws2{word-spacing:-23.808000pt;}
.ws17{word-spacing:-19.237120pt;}
.ws1d{word-spacing:-16.922880pt;}
.ws1c{word-spacing:-16.718613pt;}
.ws1f{word-spacing:-13.637013pt;}
.ws10{word-spacing:-13.575680pt;}
.ws16{word-spacing:-13.560213pt;}
.ws14{word-spacing:-13.534720pt;}
.ws12{word-spacing:-13.534613pt;}
.ws1e{word-spacing:-13.386347pt;}
.wsf{word-spacing:-13.306880pt;}
.ws19{word-spacing:-13.263360pt;}
.ws1b{word-spacing:-13.204480pt;}
.ws13{word-spacing:-13.189013pt;}
.ws20{word-spacing:-13.181547pt;}
.ws11{word-spacing:-13.083947pt;}
.ws15{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.741547pt;}
.ws21{word-spacing:-12.144213pt;}
.wsd{word-spacing:-9.150080pt;}
.wsc{word-spacing:-8.983787pt;}
.ws3{word-spacing:0.000000pt;}
.ws27{word-spacing:0.992000pt;}
.ws28{word-spacing:1.280000pt;}
.wsa{word-spacing:1.706667pt;}
.ws6{word-spacing:2.858667pt;}
.ws23{word-spacing:4.288000pt;}
.ws26{word-spacing:4.640000pt;}
.ws25{word-spacing:6.144000pt;}
.ws5{word-spacing:6.741333pt;}
.ws24{word-spacing:6.976000pt;}
.ws7{word-spacing:9.642667pt;}
.ws8{word-spacing:10.965333pt;}
.ws9{word-spacing:11.349333pt;}
.ws4{word-spacing:24.661333pt;}
.ws0{word-spacing:52.666667pt;}
.wsb{word-spacing:90.112000pt;}
.ws22{word-spacing:649.309333pt;}
._6{margin-left:-35.302400pt;}
._7{margin-left:-20.984533pt;}
._10{margin-left:-13.087787pt;}
._11{margin-left:-12.167680pt;}
._e{margin-left:-9.343573pt;}
._f{margin-left:-7.343787pt;}
._4{margin-left:-5.683200pt;}
._b{margin-left:-4.667733pt;}
._0{margin-left:-3.729067pt;}
._5{margin-left:-2.245333pt;}
._1{margin-left:-1.202133pt;}
._8{width:1.058133pt;}
._13{width:1.985920pt;}
._17{width:2.925013pt;}
._3{width:3.835733pt;}
._16{width:5.330560pt;}
._19{width:6.459520pt;}
._1b{width:8.049707pt;}
._1c{width:9.008640pt;}
._21{width:9.938347pt;}
._18{width:10.882347pt;}
._14{width:12.030933pt;}
._15{width:14.281387pt;}
._27{width:15.368320pt;}
._20{width:16.308480pt;}
._1f{width:17.296000pt;}
._25{width:18.306773pt;}
._24{width:19.572693pt;}
._1d{width:20.608000pt;}
._1e{width:21.857280pt;}
._23{width:26.855467pt;}
._22{width:27.791360pt;}
._26{width:29.135787pt;}
._28{width:32.138667pt;}
._12{width:36.064000pt;}
._29{width:38.684160pt;}
._2a{width:39.928533pt;}
._2{width:53.666667pt;}
._9{width:160.256000pt;}
._a{width:170.837333pt;}
._1a{width:176.768853pt;}
._d{width:754.831787pt;}
._c{width:1001.940693pt;}
.fse{font-size:32.000000pt;}
.fs5{font-size:40.320000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fsc{font-size:74.880000pt;}
.fsd{font-size:80.000000pt;}
.fs9{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:138.880000pt;}
.fs2{font-size:154.666667pt;}
.fs0{font-size:245.333333pt;}
.fs1{font-size:666.666667pt;}
.y37{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:2.880000pt;}
.y24{bottom:7.840000pt;}
.y28{bottom:8.000000pt;}
.y2b{bottom:8.026667pt;}
.y161{bottom:8.040000pt;}
.y157{bottom:20.320000pt;}
.y26{bottom:26.560000pt;}
.y27{bottom:26.720000pt;}
.y159{bottom:29.760000pt;}
.y130{bottom:34.554667pt;}
.y11f{bottom:34.560000pt;}
.y12b{bottom:34.720000pt;}
.y160{bottom:34.760000pt;}
.y16e{bottom:37.005333pt;}
.y156{bottom:39.040000pt;}
.y31{bottom:45.280000pt;}
.y152{bottom:45.440000pt;}
.y16d{bottom:46.605333pt;}
.y158{bottom:47.680000pt;}
.y12f{bottom:53.274667pt;}
.y11e{bottom:53.280000pt;}
.y142{bottom:53.306667pt;}
.y154{bottom:53.320000pt;}
.y147{bottom:53.440000pt;}
.y12a{bottom:53.480000pt;}
.y1a{bottom:54.592000pt;}
.y16c{bottom:56.205333pt;}
.y126{bottom:57.280000pt;}
.y14c{bottom:61.280000pt;}
.y151{bottom:64.000000pt;}
.y16b{bottom:65.805333pt;}
.y13b{bottom:71.840000pt;}
.y12e{bottom:71.994667pt;}
.y11d{bottom:72.000000pt;}
.y141{bottom:72.026667pt;}
.y129{bottom:72.040000pt;}
.y12{bottom:74.104000pt;}
.y133{bottom:75.840000pt;}
.y125{bottom:80.000000pt;}
.y16a{bottom:84.469333pt;}
.y3{bottom:85.231333pt;}
.yb0{bottom:86.592000pt;}
.y11{bottom:86.904000pt;}
.y13a{bottom:90.560000pt;}
.y140{bottom:90.586667pt;}
.y12d{bottom:90.714667pt;}
.y11c{bottom:90.720000pt;}
.y103{bottom:90.752000pt;}
.y128{bottom:90.760000pt;}
.y13e{bottom:92.186667pt;}
.y145{bottom:92.320000pt;}
.y169{bottom:94.069333pt;}
.y132{bottom:94.560000pt;}
.y86{bottom:95.232000pt;}
.y14b{bottom:98.720000pt;}
.y12c{bottom:102.272000pt;}
.y124{bottom:102.720000pt;}
.y168{bottom:103.669333pt;}
.yaf{bottom:105.312000pt;}
.y11b{bottom:109.280000pt;}
.y13f{bottom:109.306667pt;}
.y146{bottom:109.440000pt;}
.y102{bottom:109.472000pt;}
.y13d{bottom:110.106667pt;}
.y144{bottom:110.240000pt;}
.y166{bottom:113.220400pt;}
.y167{bottom:113.269333pt;}
.y138{bottom:113.320000pt;}
.y14d{bottom:114.432000pt;}
.y14a{bottom:117.320000pt;}
.y85{bottom:121.152000pt;}
.yae{bottom:123.872000pt;}
.y123{bottom:125.280000pt;}
.y11a{bottom:128.000000pt;}
.y15d{bottom:128.026667pt;}
.y101{bottom:128.192000pt;}
.y137{bottom:132.040000pt;}
.yd7{bottom:132.352000pt;}
.y136{bottom:136.040000pt;}
.yad{bottom:142.586667pt;}
.y122{bottom:144.000000pt;}
.y15c{bottom:146.586667pt;}
.y119{bottom:146.720000pt;}
.y100{bottom:146.746667pt;}
.y84{bottom:147.066667pt;}
.y18{bottom:148.004000pt;}
.yd6{bottom:150.266667pt;}
.y135{bottom:154.760000pt;}
.y149{bottom:155.400000pt;}
.y148{bottom:155.706667pt;}
.y121{bottom:162.720000pt;}
.y118{bottom:165.280000pt;}
.y15b{bottom:165.306667pt;}
.yff{bottom:165.466667pt;}
.yd5{bottom:168.986667pt;}
.yac{bottom:170.266667pt;}
.y83{bottom:172.986667pt;}
.y17{bottom:173.604000pt;}
.y6{bottom:182.725600pt;}
.y16{bottom:186.404000pt;}
.yd4{bottom:187.546667pt;}
.yfe{bottom:192.186667pt;}
.y15{bottom:199.204000pt;}
.y82{bottom:199.706667pt;}
.yab{bottom:200.026667pt;}
.yd3{bottom:206.266667pt;}
.yfd{bottom:210.746667pt;}
.y65{bottom:211.866667pt;}
.y14{bottom:212.004000pt;}
.y127{bottom:216.186667pt;}
.y81{bottom:218.266667pt;}
.yd2{bottom:224.986667pt;}
.yaa{bottom:226.746667pt;}
.yfc{bottom:229.466667pt;}
.y64{bottom:229.786667pt;}
.y80{bottom:236.986667pt;}
.y34{bottom:237.466667pt;}
.yd1{bottom:243.546667pt;}
.ya9{bottom:245.306667pt;}
.y162{bottom:245.946667pt;}
.y4{bottom:246.499333pt;}
.yfb{bottom:248.186667pt;}
.y33{bottom:252.026667pt;}
.y63{bottom:256.506667pt;}
.y15f{bottom:261.306667pt;}
.yd0{bottom:262.266667pt;}
.y7f{bottom:263.746667pt;}
.ya8{bottom:264.066667pt;}
.yfa{bottom:266.786667pt;}
.y13{bottom:275.337600pt;}
.ycf{bottom:281.026667pt;}
.ya7{bottom:282.786667pt;}
.y62{bottom:283.266667pt;}
.y32{bottom:283.426667pt;}
.yf9{bottom:285.506667pt;}
.y7e{bottom:289.826667pt;}
.yce{bottom:299.586667pt;}
.ya6{bottom:301.346667pt;}
.y10{bottom:304.004267pt;}
.yf8{bottom:304.226667pt;}
.y61{bottom:309.826667pt;}
.y7d{bottom:313.026667pt;}
.y30{bottom:314.786667pt;}
.yf{bottom:316.804267pt;}
.ycd{bottom:318.306667pt;}
.ya5{bottom:320.066667pt;}
.yf7{bottom:322.786667pt;}
.ye{bottom:329.604267pt;}
.y120{bottom:330.306667pt;}
.y143{bottom:333.666667pt;}
.y60{bottom:336.546667pt;}
.ycc{bottom:337.026667pt;}
.y15e{bottom:337.986667pt;}
.ya4{bottom:338.786667pt;}
.yd{bottom:342.404267pt;}
.yf6{bottom:349.506667pt;}
.ycb{bottom:355.586667pt;}
.ya3{bottom:357.346667pt;}
.yc{bottom:361.070933pt;}
.y5f{bottom:363.266667pt;}
.yf5{bottom:368.226667pt;}
.yb{bottom:373.870933pt;}
.yca{bottom:374.306667pt;}
.ya2{bottom:376.066667pt;}
.y2f{bottom:383.426667pt;}
.ya{bottom:386.670933pt;}
.yf4{bottom:386.786667pt;}
.y5e{bottom:389.826667pt;}
.yc9{bottom:393.026667pt;}
.ya1{bottom:394.786667pt;}
.y9{bottom:399.470933pt;}
.yc8{bottom:411.586667pt;}
.y8{bottom:412.270933pt;}
.ya0{bottom:413.346667pt;}
.yf3{bottom:414.626667pt;}
.y2e{bottom:414.786667pt;}
.y5d{bottom:418.306667pt;}
.y7c{bottom:421.026667pt;}
.y7{bottom:425.070933pt;}
.y5{bottom:425.624800pt;}
.yc7{bottom:430.306667pt;}
.y9f{bottom:432.066667pt;}
.yf2{bottom:444.386667pt;}
.y2d{bottom:446.146667pt;}
.y7b{bottom:447.746667pt;}
.yc6{bottom:449.026667pt;}
.y5c{bottom:458.626667pt;}
.y9e{bottom:459.746667pt;}
.y7a{bottom:466.306667pt;}
.y13c{bottom:466.466667pt;}
.y15a{bottom:470.786667pt;}
.yf1{bottom:470.946667pt;}
.yc5{bottom:475.586667pt;}
.y2c{bottom:477.506667pt;}
.y9d{bottom:482.626667pt;}
.y79{bottom:485.026667pt;}
.y5b{bottom:485.186667pt;}
.y2{bottom:488.697867pt;}
.yf0{bottom:489.666667pt;}
.yc4{bottom:494.306667pt;}
.y78{bottom:503.746667pt;}
.yef{bottom:508.386667pt;}
.y5a{bottom:508.546667pt;}
.y2a{bottom:508.706667pt;}
.yc3{bottom:513.053333pt;}
.y9c{bottom:514.013333pt;}
.y10b{bottom:515.133333pt;}
.y117{bottom:516.413333pt;}
.yee{bottom:526.973333pt;}
.y77{bottom:530.333333pt;}
.yc2{bottom:531.613333pt;}
.y10a{bottom:533.053333pt;}
.y59{bottom:539.933333pt;}
.y29{bottom:540.093333pt;}
.yed{bottom:545.693333pt;}
.y76{bottom:549.053333pt;}
.y109{bottom:551.773333pt;}
.y9b{bottom:554.333333pt;}
.yc1{bottom:559.293333pt;}
.y1{bottom:559.353867pt;}
.yec{bottom:564.413333pt;}
.y75{bottom:567.773333pt;}
.y108{bottom:570.493333pt;}
.y58{bottom:571.293333pt;}
.y25{bottom:571.453333pt;}
.y9a{bottom:581.053333pt;}
.yeb{bottom:582.973333pt;}
.y74{bottom:586.333333pt;}
.yc0{bottom:589.053333pt;}
.y139{bottom:599.133333pt;}
.y99{bottom:599.773333pt;}
.yea{bottom:601.693333pt;}
.y73{bottom:605.053333pt;}
.ybf{bottom:615.773333pt;}
.y98{bottom:618.333333pt;}
.y57{bottom:619.133333pt;}
.y23{bottom:621.533333pt;}
.y72{bottom:623.773333pt;}
.y49{bottom:625.213333pt;}
.ye9{bottom:628.413333pt;}
.ybe{bottom:634.493333pt;}
.y97{bottom:637.053333pt;}
.y71{bottom:642.333333pt;}
.y56{bottom:642.653333pt;}
.y48{bottom:642.973333pt;}
.ye8{bottom:646.973333pt;}
.ybd{bottom:653.053333pt;}
.y96{bottom:655.773333pt;}
.y22{bottom:656.733333pt;}
.y155{bottom:659.453333pt;}
.y70{bottom:661.053333pt;}
.ye7{bottom:665.693333pt;}
.y47{bottom:669.693333pt;}
.y55{bottom:670.973333pt;}
.ybc{bottom:671.773333pt;}
.y6f{bottom:679.773333pt;}
.y95{bottom:682.333333pt;}
.y21{bottom:683.453333pt;}
.y107{bottom:690.493333pt;}
.ye6{bottom:692.413333pt;}
.y46{bottom:694.973333pt;}
.y6e{bottom:698.333333pt;}
.ybb{bottom:698.493333pt;}
.y94{bottom:701.053333pt;}
.y116{bottom:705.053333pt;}
.ye5{bottom:710.973333pt;}
.y54{bottom:711.293333pt;}
.y134{bottom:713.053333pt;}
.y20{bottom:715.453333pt;}
.yba{bottom:717.053333pt;}
.y93{bottom:719.773333pt;}
.y45{bottom:721.693333pt;}
.y153{bottom:721.853333pt;}
.y6d{bottom:726.813333pt;}
.ye4{bottom:729.693333pt;}
.y165{bottom:731.933333pt;}
.yb9{bottom:735.773333pt;}
.y53{bottom:737.213333pt;}
.y92{bottom:738.333333pt;}
.y44{bottom:748.413333pt;}
.y164{bottom:749.693333pt;}
.y115{bottom:752.893333pt;}
.yb8{bottom:754.493333pt;}
.y91{bottom:757.053333pt;}
.y52{bottom:763.013333pt;}
.y1f{bottom:765.893333pt;}
.ye3{bottom:767.013333pt;}
.y6c{bottom:767.173333pt;}
.yb7{bottom:773.093333pt;}
.y43{bottom:775.013333pt;}
.y90{bottom:775.813333pt;}
.y114{bottom:776.453333pt;}
.y51{bottom:785.733333pt;}
.y6b{bottom:790.373333pt;}
.y106{bottom:791.813333pt;}
.y8f{bottom:794.373333pt;}
.yb6{bottom:799.813333pt;}
.y42{bottom:801.733333pt;}
.y113{bottom:803.013333pt;}
.ye2{bottom:804.453333pt;}
.y50{bottom:808.453333pt;}
.y105{bottom:810.533333pt;}
.y8e{bottom:813.093333pt;}
.y1e{bottom:816.133333pt;}
.y150{bottom:817.093333pt;}
.yb5{bottom:818.533333pt;}
.y6a{bottom:821.733333pt;}
.ye1{bottom:823.013333pt;}
.y41{bottom:824.293333pt;}
.y4f{bottom:831.013333pt;}
.yb4{bottom:837.093333pt;}
.y8d{bottom:839.813333pt;}
.ye0{bottom:841.733333pt;}
.y40{bottom:847.013333pt;}
.y112{bottom:848.453333pt;}
.y69{bottom:853.093333pt;}
.yb3{bottom:855.813333pt;}
.y4e{bottom:859.493333pt;}
.ydf{bottom:860.453333pt;}
.y1d{bottom:861.093333pt;}
.y8c{bottom:866.373333pt;}
.y111{bottom:867.013333pt;}
.y3f{bottom:869.733333pt;}
.yb2{bottom:874.533333pt;}
.yde{bottom:879.013333pt;}
.y1c{bottom:883.813333pt;}
.y68{bottom:884.453333pt;}
.y110{bottom:885.733333pt;}
.y131{bottom:891.173333pt;}
.y3e{bottom:892.293333pt;}
.y8b{bottom:893.093333pt;}
.y163{bottom:895.173333pt;}
.y4d{bottom:899.813333pt;}
.y10f{bottom:904.453333pt;}
.ydd{bottom:905.733333pt;}
.y8a{bottom:911.813333pt;}
.y3d{bottom:915.013333pt;}
.y67{bottom:915.813333pt;}
.y10e{bottom:923.013333pt;}
.ydc{bottom:923.653333pt;}
.y4c{bottom:925.733333pt;}
.yb1{bottom:930.533333pt;}
.y3c{bottom:937.733333pt;}
.y89{bottom:938.533333pt;}
.ydb{bottom:941.573333pt;}
.y10d{bottom:941.733333pt;}
.y104{bottom:949.093333pt;}
.y14f{bottom:949.893333pt;}
.y4b{bottom:954.213333pt;}
.y88{bottom:957.093333pt;}
.yda{bottom:959.493333pt;}
.y3b{bottom:960.293333pt;}
.y10c{bottom:960.453333pt;}
.y66{bottom:963.493333pt;}
.y87{bottom:975.813333pt;}
.yd9{bottom:977.253333pt;}
.y1b{bottom:986.533333pt;}
.y3a{bottom:988.773333pt;}
.y4a{bottom:994.533333pt;}
.yd8{bottom:995.173333pt;}
.y14e{bottom:997.573333pt;}
.y35{bottom:1024.960000pt;}
.y38{bottom:1077.440000pt;}
.y19{bottom:1087.040000pt;}
.y36{bottom:1098.880000pt;}
.h11{height:6.560000pt;}
.h12{height:21.440000pt;}
.h2a{height:25.671875pt;}
.hc{height:30.560000pt;}
.he{height:30.720000pt;}
.hf{height:30.752000pt;}
.h7{height:34.229167pt;}
.h9{height:40.103437pt;}
.h15{height:41.976562pt;}
.h17{height:46.454062pt;}
.hd{height:49.280000pt;}
.h1a{height:51.491250pt;}
.ha{height:58.563750pt;}
.h16{height:60.288750pt;}
.h24{height:61.600000pt;}
.h14{height:63.656250pt;}
.h29{height:64.267608pt;}
.h10{height:68.000000pt;}
.h26{height:76.032000pt;}
.h18{height:76.671562pt;}
.h6{height:77.015625pt;}
.h13{height:87.156562pt;}
.h23{height:94.592000pt;}
.h1d{height:113.280000pt;}
.h27{height:113.312000pt;}
.h1c{height:113.472000pt;}
.h1e{height:117.312000pt;}
.h28{height:121.440000pt;}
.h5{height:124.080729pt;}
.h21{height:132.000000pt;}
.h20{height:132.032000pt;}
.hb{height:142.202812pt;}
.h22{height:177.306667pt;}
.h1f{height:177.466667pt;}
.h2{height:184.000000pt;}
.h1b{height:185.466667pt;}
.h19{height:188.000000pt;}
.h25{height:188.026667pt;}
.h3{height:458.474000pt;}
.h4{height:473.958333pt;}
.h0{height:1122.520000pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:0.480000pt;}
.w9{width:65.920000pt;}
.wc{width:103.680000pt;}
.we{width:159.226667pt;}
.wa{width:160.026667pt;}
.w5{width:216.986667pt;}
.w6{width:330.493333pt;}
.wb{width:358.813333pt;}
.wf{width:441.213333pt;}
.wd{width:481.573333pt;}
.w2{width:535.465333pt;}
.w8{width:586.053333pt;}
.w0{width:793.701333pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x16{left:13.760000pt;}
.xf{left:17.440000pt;}
.x1e{left:23.840000pt;}
.x23{left:30.880000pt;}
.x25{left:36.850400pt;}
.x17{left:37.946667pt;}
.xe{left:48.506667pt;}
.x7{left:75.551988pt;}
.xa{left:77.311988pt;}
.x10{left:80.026667pt;}
.x11{left:82.106667pt;}
.x15{left:90.106667pt;}
.x18{left:96.346667pt;}
.x21{left:99.551988pt;}
.x1a{left:104.351988pt;}
.xb{left:113.311988pt;}
.x14{left:132.346667pt;}
.x1c{left:142.106667pt;}
.x13{left:144.666667pt;}
.x5{left:146.771733pt;}
.x12{left:151.066667pt;}
.x19{left:153.306667pt;}
.x1f{left:180.026667pt;}
.x1b{left:225.634667pt;}
.x22{left:235.586667pt;}
.x3{left:240.267067pt;}
.x2{left:258.236000pt;}
.x1{left:275.433067pt;}
.x6{left:279.685067pt;}
.x1d{left:302.786667pt;}
.xd{left:331.266667pt;}
.x9{left:340.226655pt;}
.x26{left:370.393733pt;}
.x4{left:386.456667pt;}
.x24{left:606.693322pt;}
.x8{left:611.813322pt;}
.x20{left:661.599988pt;}
}




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