
    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_92b9eec394edbe6678e3b799.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_26a4c5f03c0754b83d06a18f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_82614660c3fcdada954096e9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_c980867d5759921070fed26a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_b698fcf30702704e2d6234f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4621c0d78a657e259c69b3da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_723fb31f2bc7bbf8b7e28241.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136230;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_e067147ccbd66ae938a2e48f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136230;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035156;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_4de13666f6d7345b63c0a223.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.ls19{letter-spacing:-1.926000px;}
.ls15{letter-spacing:-1.458000px;}
.ls18{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.422000px;}
.ls1a{letter-spacing:-1.356000px;}
.ls26{letter-spacing:-0.990000px;}
.ls17{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.942000px;}
.lsa{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.518400px;}
.ls2d{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.486600px;}
.ls1b{letter-spacing:-0.466800px;}
.ls14{letter-spacing:-0.454800px;}
.ls2e{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.020160px;}
.lsc{letter-spacing:-0.015840px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000052px;}
.ls2{letter-spacing:0.015836px;}
.ls2c{letter-spacing:0.015840px;}
.ls10{letter-spacing:0.020160px;}
.ls23{letter-spacing:0.086400px;}
.lsd{letter-spacing:0.250800px;}
.ls12{letter-spacing:0.397440px;}
.ls25{letter-spacing:0.449400px;}
.lse{letter-spacing:0.466800px;}
.ls27{letter-spacing:0.486600px;}
.ls2b{letter-spacing:0.497280px;}
.ls7{letter-spacing:0.498000px;}
.ls16{letter-spacing:0.507000px;}
.lsf{letter-spacing:0.665280px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:6.226539px;}
.ls1c{letter-spacing:7.920000px;}
.ls22{letter-spacing:13.680000px;}
.ls1f{letter-spacing:18.011520px;}
.ls1{letter-spacing:29.266516px;}
.ls1d{letter-spacing:32.146560px;}
.ls20{letter-spacing:32.266560px;}
.ls1e{letter-spacing:36.586560px;}
.ls21{letter-spacing:39.466560px;}
.ls29{letter-spacing:40.786560px;}
.ls28{letter-spacing:42.226560px;}
.ls2a{letter-spacing:58.789440px;}
.ls11{letter-spacing:83.986560px;}
.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;}
}
.wsc{word-spacing:-60.480000px;}
.wse{word-spacing:-15.627000px;}
.ws12{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.586800px;}
.wsd{word-spacing:-15.140160px;}
.ws4{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.099840px;}
.ws10{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.ws13{word-spacing:-14.613000px;}
.wsf{word-spacing:-14.148000px;}
.wsb{word-spacing:-13.698000px;}
.ws2{word-spacing:-13.680000px;}
.ws1{word-spacing:-12.600000px;}
.wsa{word-spacing:-12.545280px;}
.ws6{word-spacing:-12.130800px;}
.ws0{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.864160px;}
.ws7{word-spacing:-11.160000px;}
.ws9{word-spacing:0.000000px;}
._22{margin-left:-3.688394px;}
._2{margin-left:-2.540801px;}
._0{margin-left:-1.451195px;}
._1{width:1.149285px;}
._3{width:2.486210px;}
._4{width:4.426386px;}
._d{width:5.946904px;}
._5{width:7.004143px;}
._6{width:8.074541px;}
._10{width:9.083514px;}
._f{width:10.836902px;}
._e{width:12.473539px;}
._20{width:13.770754px;}
._16{width:15.076525px;}
._b{width:16.194512px;}
._a{width:17.319994px;}
._c{width:18.711658px;}
._18{width:19.776986px;}
._19{width:21.732825px;}
._1b{width:23.072496px;}
._14{width:24.569299px;}
._17{width:26.432906px;}
._8{width:27.497787px;}
._7{width:29.436795px;}
._9{width:30.705770px;}
._1f{width:32.296180px;}
._1a{width:33.376471px;}
._12{width:34.830354px;}
._13{width:36.578613px;}
._11{width:37.616302px;}
._1c{width:38.950708px;}
._28{width:40.122716px;}
._26{width:41.730875px;}
._27{width:43.364476px;}
._29{width:44.372002px;}
._15{width:45.479187px;}
._23{width:50.833920px;}
._2b{width:51.938539px;}
._1e{width:53.251379px;}
._1d{width:54.431818px;}
._21{width:97.493786px;}
._2a{width:100.661760px;}
._25{width:102.219840px;}
._24{width:200.880000px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(51,51,255);}
.fc6{color:rgb(0,176,240);}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.719999px;}
.fs7{font-size:36.000000px;}
.fs1{font-size:47.520001px;}
.fs4{font-size:54.719999px;}
.fs0{font-size:60.479999px;}
.fs3{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:119.520001px;}
.fs2{font-size:144.000000px;}
.yc{bottom:-7.920000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.520000px;}
.yec{bottom:2.880000px;}
.y9e{bottom:3.240000px;}
.y98{bottom:3.960000px;}
.y8e{bottom:4.320000px;}
.y8c{bottom:5.040000px;}
.yb{bottom:6.120001px;}
.yea{bottom:9.360000px;}
.y8a{bottom:11.880000px;}
.y8{bottom:11.916000px;}
.y4{bottom:14.076000px;}
.y6{bottom:16.560000px;}
.y8b{bottom:18.720000px;}
.y3{bottom:19.116001px;}
.ya{bottom:19.799999px;}
.y80{bottom:19.800000px;}
.y10a{bottom:23.400000px;}
.y7f{bottom:30.240000px;}
.y5{bottom:30.240001px;}
.y9{bottom:33.480000px;}
.y123{bottom:82.836000px;}
.y4a{bottom:83.196001px;}
.y7c{bottom:85.355999px;}
.yc3{bottom:87.876000px;}
.y164{bottom:90.036000px;}
.y49{bottom:98.315998px;}
.y122{bottom:101.196000px;}
.y7b{bottom:103.355999px;}
.y163{bottom:103.716000px;}
.yc2{bottom:105.156000px;}
.ye4{bottom:107.676000px;}
.y48{bottom:112.355999px;}
.y162{bottom:117.756000px;}
.y121{bottom:119.196000px;}
.y7a{bottom:121.715996px;}
.yc1{bottom:122.436000px;}
.ye3{bottom:124.956000px;}
.y132{bottom:126.036000px;}
.y47{bottom:126.036003px;}
.y161{bottom:131.472000px;}
.y120{bottom:137.232000px;}
.y46{bottom:139.751999px;}
.yc0{bottom:139.752000px;}
.ye2{bottom:142.272000px;}
.y131{bottom:144.432000px;}
.y160{bottom:145.152000px;}
.y45{bottom:153.794998px;}
.y11f{bottom:155.595000px;}
.ybf{bottom:157.035000px;}
.y79{bottom:157.754997px;}
.y15f{bottom:159.195000px;}
.ye1{bottom:159.555000px;}
.y130{bottom:162.435000px;}
.y44{bottom:167.475002px;}
.y15e{bottom:172.875000px;}
.y11e{bottom:173.595000px;}
.ybe{bottom:174.315000px;}
.y78{bottom:176.115006px;}
.ye0{bottom:176.835000px;}
.y12f{bottom:180.435000px;}
.y43{bottom:181.154995px;}
.y15d{bottom:186.555000px;}
.ybd{bottom:191.595000px;}
.ydf{bottom:194.115000px;}
.y77{bottom:194.115006px;}
.y42{bottom:195.195007px;}
.y12e{bottom:198.435000px;}
.y15c{bottom:200.595000px;}
.ybc{bottom:208.515000px;}
.y41{bottom:209.235008px;}
.y11d{bottom:209.955000px;}
.yde{bottom:211.395000px;}
.y76{bottom:212.115006px;}
.y15b{bottom:214.275000px;}
.y12d{bottom:216.795000px;}
.y40{bottom:224.714996px;}
.ybb{bottom:225.795000px;}
.y11c{bottom:227.955000px;}
.ydd{bottom:229.395000px;}
.y75{bottom:230.115006px;}
.y12c{bottom:234.795000px;}
.y3f{bottom:240.195007px;}
.y15a{bottom:241.995000px;}
.yba{bottom:243.075000px;}
.ydc{bottom:247.395000px;}
.y74{bottom:248.474991px;}
.y12b{bottom:252.795000px;}
.y11b{bottom:254.235000px;}
.y3e{bottom:255.674995px;}
.y159{bottom:255.675000px;}
.yb9{bottom:260.355000px;}
.ydb{bottom:265.785000px;}
.y73{bottom:266.504997px;}
.y158{bottom:269.385000px;}
.y3d{bottom:271.184990px;}
.y12a{bottom:271.185000px;}
.yb8{bottom:277.665000px;}
.y157{bottom:283.425000px;}
.yda{bottom:283.785000px;}
.y72{bottom:284.504997px;}
.y3c{bottom:286.665001px;}
.y129{bottom:289.185000px;}
.y11a{bottom:290.265000px;}
.yb7{bottom:294.945000px;}
.y156{bottom:297.105000px;}
.y3b{bottom:300.344994px;}
.yd9{bottom:301.785000px;}
.y71{bottom:302.865006px;}
.y128{bottom:307.185000px;}
.y3a{bottom:307.905006px;}
.y119{bottom:308.265000px;}
.yb6{bottom:312.225000px;}
.yd8{bottom:319.785000px;}
.y155{bottom:320.505000px;}
.y70{bottom:320.865006px;}
.y39{bottom:325.184990px;}
.y127{bottom:325.545000px;}
.y118{bottom:326.625000px;}
.yb5{bottom:330.225000px;}
.yd7{bottom:338.145000px;}
.y6f{bottom:338.865006px;}
.y38{bottom:342.464996px;}
.y126{bottom:343.545000px;}
.y117{bottom:344.625000px;}
.yb4{bottom:348.225000px;}
.y154{bottom:355.065000px;}
.yd6{bottom:356.145000px;}
.y6e{bottom:357.224991px;}
.y37{bottom:359.745003px;}
.y125{bottom:361.545000px;}
.y116{bottom:362.625000px;}
.yb3{bottom:366.585000px;}
.y153{bottom:369.465000px;}
.yd5{bottom:374.145000px;}
.y6d{bottom:375.224991px;}
.y36{bottom:377.025009px;}
.y124{bottom:380.625000px;}
.y115{bottom:380.985000px;}
.y152{bottom:384.225000px;}
.yb2{bottom:384.585000px;}
.yd4{bottom:392.505000px;}
.y6c{bottom:393.224991px;}
.y35{bottom:394.304993px;}
.y151{bottom:398.265000px;}
.y114{bottom:399.030000px;}
.yb1{bottom:402.630000px;}
.yd3{bottom:410.550000px;}
.y34{bottom:411.630020px;}
.y113{bottom:417.030000px;}
.yb0{bottom:420.990000px;}
.y150{bottom:421.710000px;}
.yd2{bottom:428.550000px;}
.y33{bottom:428.910004px;}
.y6b{bottom:429.630020px;}
.y112{bottom:435.390000px;}
.yaf{bottom:438.990000px;}
.y32{bottom:446.189987px;}
.yd1{bottom:446.910000px;}
.y111{bottom:450.150000px;}
.y6a{bottom:455.910004px;}
.yae{bottom:456.990000px;}
.y14f{bottom:457.710000px;}
.y31{bottom:463.470016px;}
.y110{bottom:464.550000px;}
.yd0{bottom:464.910000px;}
.yad{bottom:475.350000px;}
.y14e{bottom:476.070000px;}
.y10f{bottom:478.950000px;}
.ycf{bottom:482.910000px;}
.y30{bottom:483.630020px;}
.y69{bottom:491.910004px;}
.yac{bottom:493.350000px;}
.y10e{bottom:493.710000px;}
.y14d{bottom:494.070000px;}
.yce{bottom:501.270000px;}
.y10d{bottom:508.110000px;}
.y68{bottom:509.910004px;}
.yab{bottom:511.350000px;}
.y14c{bottom:512.070000px;}
.ycd{bottom:519.270000px;}
.y10c{bottom:522.870000px;}
.y2f{bottom:523.949982px;}
.y67{bottom:528.269989px;}
.yaa{bottom:529.710000px;}
.y14b{bottom:530.430000px;}
.ycc{bottom:537.300000px;}
.y66{bottom:546.300018px;}
.ya9{bottom:547.740000px;}
.y14a{bottom:548.460000px;}
.y10b{bottom:552.060000px;}
.ycb{bottom:554.580000px;}
.y2e{bottom:558.900009px;}
.y65{bottom:564.300018px;}
.ya8{bottom:565.740000px;}
.y109{bottom:566.460000px;}
.yca{bottom:571.860000px;}
.y2d{bottom:574.380020px;}
.y64{bottom:582.660004px;}
.ya7{bottom:583.740000px;}
.y149{bottom:584.460000px;}
.yc9{bottom:589.140000px;}
.y2c{bottom:589.859985px;}
.y63{bottom:600.660004px;}
.ya6{bottom:602.100000px;}
.y148{bottom:602.820000px;}
.yc8{bottom:606.420000px;}
.y2b{bottom:611.460022px;}
.y108{bottom:617.940000px;}
.y62{bottom:618.660004px;}
.ya5{bottom:620.100000px;}
.y147{bottom:620.820000px;}
.yc7{bottom:623.700000px;}
.y2a{bottom:626.939987px;}
.y61{bottom:637.019989px;}
.ya4{bottom:638.100000px;}
.y107{bottom:638.820000px;}
.yc6{bottom:640.980000px;}
.y29{bottom:642.419998px;}
.y106{bottom:647.100000px;}
.y60{bottom:655.019989px;}
.ya3{bottom:656.460000px;}
.y146{bottom:657.180000px;}
.yc5{bottom:658.260000px;}
.y28{bottom:664.019989px;}
.y105{bottom:665.100000px;}
.y5f{bottom:673.050018px;}
.ya2{bottom:674.490000px;}
.y145{bottom:675.210000px;}
.yc4{bottom:675.570000px;}
.y27{bottom:679.890015px;}
.y104{bottom:683.490000px;}
.y5e{bottom:691.050018px;}
.ya1{bottom:692.490000px;}
.y144{bottom:693.210000px;}
.y26{bottom:695.369980px;}
.y103{bottom:701.490000px;}
.y5d{bottom:709.410004px;}
.y25{bottom:710.849991px;}
.ya0{bottom:710.850000px;}
.y143{bottom:711.570000px;}
.y102{bottom:719.490000px;}
.y9f{bottom:725.610000px;}
.y24{bottom:726.330002px;}
.y5c{bottom:727.410004px;}
.y142{bottom:729.570000px;}
.y101{bottom:737.850000px;}
.y23{bottom:741.810013px;}
.y9d{bottom:743.250000px;}
.y5b{bottom:745.410004px;}
.y141{bottom:746.850000px;}
.y100{bottom:755.850000px;}
.y22{bottom:757.289978px;}
.y9c{bottom:759.450000px;}
.y5a{bottom:763.769989px;}
.y140{bottom:764.130000px;}
.y21{bottom:772.769989px;}
.yff{bottom:773.850000px;}
.y9b{bottom:777.090000px;}
.y59{bottom:781.769989px;}
.y20{bottom:788.250000px;}
.yfe{bottom:791.850000px;}
.y13f{bottom:792.930000px;}
.y9a{bottom:794.730000px;}
.y58{bottom:799.815033px;}
.y1f{bottom:803.774963px;}
.yfd{bottom:810.255000px;}
.y99{bottom:812.415000px;}
.y57{bottom:818.175018px;}
.y1e{bottom:819.614960px;}
.yfc{bottom:828.255000px;}
.y13e{bottom:828.975000px;}
.y97{bottom:830.055000px;}
.y1d{bottom:835.094971px;}
.y56{bottom:836.175018px;}
.yfb{bottom:846.255000px;}
.y13d{bottom:846.975000px;}
.y96{bottom:847.335000px;}
.y1c{bottom:850.574982px;}
.y55{bottom:854.175018px;}
.yfa{bottom:864.615000px;}
.y95{bottom:864.975000px;}
.y13c{bottom:865.335000px;}
.y1b{bottom:866.054993px;}
.y54{bottom:872.535004px;}
.y1a{bottom:881.535004px;}
.y94{bottom:882.615000px;}
.y13b{bottom:883.335000px;}
.y53{bottom:890.535004px;}
.y19{bottom:897.015015px;}
.yf9{bottom:897.375000px;}
.y93{bottom:900.255000px;}
.y13a{bottom:901.335000px;}
.y52{bottom:908.535004px;}
.yf8{bottom:911.775000px;}
.y18{bottom:912.495026px;}
.y92{bottom:917.895000px;}
.y139{bottom:919.695000px;}
.yf7{bottom:926.535000px;}
.y51{bottom:926.535004px;}
.y17{bottom:927.975037px;}
.y91{bottom:935.565000px;}
.y138{bottom:937.725000px;}
.yf6{bottom:940.965000px;}
.y16{bottom:943.844971px;}
.y50{bottom:944.925018px;}
.y173{bottom:949.965000px;}
.y90{bottom:953.205000px;}
.yf5{bottom:955.725000px;}
.y15{bottom:959.324982px;}
.y4f{bottom:962.925018px;}
.y172{bottom:969.045000px;}
.yf4{bottom:970.125000px;}
.y8f{bottom:970.845000px;}
.y137{bottom:974.085000px;}
.y14{bottom:974.804993px;}
.y4e{bottom:980.925018px;}
.y171{bottom:983.445000px;}
.yf3{bottom:984.885000px;}
.y8d{bottom:988.485000px;}
.y13{bottom:990.285004px;}
.y136{bottom:992.085000px;}
.yf2{bottom:999.285000px;}
.y4d{bottom:999.285004px;}
.y170{bottom:1000.725000px;}
.y12{bottom:1005.765015px;}
.y89{bottom:1006.125000px;}
.y135{bottom:1010.085000px;}
.yf1{bottom:1013.685000px;}
.y4c{bottom:1017.285004px;}
.y16f{bottom:1018.005000px;}
.y11{bottom:1021.245026px;}
.yf0{bottom:1028.445000px;}
.y16e{bottom:1035.285000px;}
.y4b{bottom:1035.285004px;}
.y10{bottom:1036.725037px;}
.yef{bottom:1042.845000px;}
.y134{bottom:1046.445000px;}
.y88{bottom:1048.245000px;}
.y16d{bottom:1052.565000px;}
.yee{bottom:1057.605000px;}
.y133{bottom:1064.445000px;}
.y16c{bottom:1069.890000px;}
.y87{bottom:1070.250000px;}
.yf{bottom:1070.969971px;}
.yed{bottom:1072.050000px;}
.y86{bottom:1082.490000px;}
.yeb{bottom:1086.450000px;}
.y16b{bottom:1087.170000px;}
.y85{bottom:1100.850000px;}
.ye9{bottom:1101.210000px;}
.y16a{bottom:1104.090000px;}
.ye{bottom:1112.370026px;}
.y169{bottom:1118.490000px;}
.y84{bottom:1118.850000px;}
.y168{bottom:1134.690000px;}
.y83{bottom:1136.850000px;}
.ye8{bottom:1138.650000px;}
.y167{bottom:1148.370000px;}
.yd{bottom:1153.769989px;}
.y82{bottom:1155.210000px;}
.ye7{bottom:1155.930000px;}
.y166{bottom:1162.410000px;}
.y81{bottom:1173.210000px;}
.y165{bottom:1176.090000px;}
.y7e{bottom:1214.640000px;}
.y2{bottom:1217.519989px;}
.ye6{bottom:1217.520000px;}
.y7d{bottom:1233.360000px;}
.ye5{bottom:1234.800000px;}
.y1{bottom:1234.800018px;}
.hf{height:13.071093px;}
.h21{height:13.208203px;}
.h1e{height:13.680000px;}
.h1f{height:13.716000px;}
.h1d{height:14.040000px;}
.h18{height:15.480000px;}
.h16{height:16.560000px;}
.h17{height:16.596000px;}
.h14{height:16.920000px;}
.h15{height:16.956000px;}
.h12{height:25.400391px;}
.h1c{height:27.720000px;}
.h13{height:32.040000px;}
.h11{height:33.180469px;}
.hc{height:33.528516px;}
.h22{height:34.595859px;}
.h6{height:36.150469px;}
.hb{height:38.207812px;}
.h10{height:38.608593px;}
.ha{height:41.227031px;}
.h5{height:41.400001px;}
.h4{height:42.229687px;}
.h3{height:42.672656px;}
.hd{height:44.031093px;}
.h7{height:44.640000px;}
.h19{height:44.798906px;}
.h9{height:46.736719px;}
.h1a{height:47.264766px;}
.h20{height:48.656953px;}
.h23{height:50.273438px;}
.h1b{height:60.155156px;}
.he{height:83.453907px;}
.h8{height:100.546875px;}
.h2{height:1262.879974px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:38.880000px;}
.w6{width:48.960000px;}
.w14{width:56.880000px;}
.w16{width:63.396000px;}
.wf{width:66.636000px;}
.we{width:68.436000px;}
.w10{width:69.516000px;}
.w8{width:70.236000px;}
.w12{width:73.476000px;}
.w7{width:73.836000px;}
.w11{width:74.160000px;}
.w17{width:84.240000px;}
.w15{width:84.276000px;}
.w13{width:84.636000px;}
.w9{width:86.796000px;}
.wc{width:88.596000px;}
.wb{width:97.956000px;}
.wa{width:100.476000px;}
.w3{width:186.584999px;}
.w5{width:251.745000px;}
.w4{width:251.745003px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.280000px;}
.x27{left:9.720000px;}
.x4{left:10.830002px;}
.x23{left:12.990000px;}
.x1d{left:14.400000px;}
.x32{left:15.480000px;}
.x24{left:16.560000px;}
.x28{left:18.720000px;}
.x22{left:20.910000px;}
.x16{left:22.320000px;}
.x25{left:23.760000px;}
.x26{left:25.245000px;}
.x19{left:26.310000px;}
.x3a{left:27.765000px;}
.x20{left:28.845000px;}
.x18{left:30.990000px;}
.x39{left:32.445000px;}
.x1c{left:33.480000px;}
.xa{left:70.235989px;}
.x5{left:71.676001px;}
.x41{left:75.275987px;}
.x9{left:81.035984px;}
.x33{left:91.475987px;}
.x29{left:96.875987px;}
.xd{left:102.635992px;}
.x6{left:112.715982px;}
.x34{left:123.515987px;}
.x44{left:147.671987px;}
.x38{left:152.355000px;}
.x46{left:153.794987px;}
.x15{left:160.995000px;}
.x13{left:170.714987px;}
.x2b{left:171.795000px;}
.x45{left:178.274987px;}
.xc{left:182.234984px;}
.x40{left:185.474987px;}
.x14{left:195.554987px;}
.x17{left:210.675000px;}
.x7{left:216.074991px;}
.xb{left:265.424982px;}
.x2c{left:280.545000px;}
.x1a{left:285.225000px;}
.x37{left:328.109987px;}
.x2a{left:330.989987px;}
.x2d{left:347.910000px;}
.x1b{left:356.190000px;}
.x3b{left:359.070000px;}
.x8{left:371.669985px;}
.x2e{left:418.140000px;}
.xe{left:431.099991px;}
.x3c{left:433.620000px;}
.x2{left:442.979998px;}
.x12{left:446.579987px;}
.xf{left:457.380007px;}
.x43{left:462.419987px;}
.x10{left:468.179979px;}
.x3{left:471.419998px;}
.x2f{left:487.650000px;}
.x42{left:489.449987px;}
.x3d{left:507.810000px;}
.x36{left:511.409987px;}
.x11{left:534.449968px;}
.x48{left:538.409987px;}
.x1{left:540.929979px;}
.x1e{left:544.890000px;}
.x30{left:562.890000px;}
.x35{left:565.409987px;}
.x3e{left:592.815000px;}
.x31{left:637.095000px;}
.x21{left:643.575000px;}
.x3f{left:656.925000px;}
.x47{left:822.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-1.712000pt;}
.ls15{letter-spacing:-1.296000pt;}
.ls18{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.264000pt;}
.ls1a{letter-spacing:-1.205333pt;}
.ls26{letter-spacing:-0.880000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.837333pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.460800pt;}
.ls2d{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls1b{letter-spacing:-0.414933pt;}
.ls14{letter-spacing:-0.404267pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.017920pt;}
.lsc{letter-spacing:-0.014080pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000046pt;}
.ls2{letter-spacing:0.014077pt;}
.ls2c{letter-spacing:0.014080pt;}
.ls10{letter-spacing:0.017920pt;}
.ls23{letter-spacing:0.076800pt;}
.lsd{letter-spacing:0.222933pt;}
.ls12{letter-spacing:0.353280pt;}
.ls25{letter-spacing:0.399467pt;}
.lse{letter-spacing:0.414933pt;}
.ls27{letter-spacing:0.432533pt;}
.ls2b{letter-spacing:0.442027pt;}
.ls7{letter-spacing:0.442667pt;}
.ls16{letter-spacing:0.450667pt;}
.lsf{letter-spacing:0.591360pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:5.534701pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls22{letter-spacing:12.160000pt;}
.ls1f{letter-spacing:16.010240pt;}
.ls1{letter-spacing:26.014681pt;}
.ls1d{letter-spacing:28.574720pt;}
.ls20{letter-spacing:28.681387pt;}
.ls1e{letter-spacing:32.521387pt;}
.ls21{letter-spacing:35.081387pt;}
.ls29{letter-spacing:36.254720pt;}
.ls28{letter-spacing:37.534720pt;}
.ls2a{letter-spacing:52.257280pt;}
.ls11{letter-spacing:74.654720pt;}
.wsc{word-spacing:-53.760000pt;}
.wse{word-spacing:-13.890667pt;}
.ws12{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.854933pt;}
.wsd{word-spacing:-13.457920pt;}
.ws4{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.422080pt;}
.ws10{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.ws13{word-spacing:-12.989333pt;}
.wsf{word-spacing:-12.576000pt;}
.wsb{word-spacing:-12.176000pt;}
.ws2{word-spacing:-12.160000pt;}
.ws1{word-spacing:-11.200000pt;}
.wsa{word-spacing:-11.151360pt;}
.ws6{word-spacing:-10.782933pt;}
.ws0{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.545920pt;}
.ws7{word-spacing:-9.920000pt;}
.ws9{word-spacing:0.000000pt;}
._22{margin-left:-3.278572pt;}
._2{margin-left:-2.258489pt;}
._0{margin-left:-1.289951pt;}
._1{width:1.021587pt;}
._3{width:2.209965pt;}
._4{width:3.934566pt;}
._d{width:5.286137pt;}
._5{width:6.225905pt;}
._6{width:7.177370pt;}
._10{width:8.074235pt;}
._f{width:9.632802pt;}
._e{width:11.087590pt;}
._20{width:12.240670pt;}
._16{width:13.401355pt;}
._b{width:14.395122pt;}
._a{width:15.395550pt;}
._c{width:16.632585pt;}
._18{width:17.579543pt;}
._19{width:19.318066pt;}
._1b{width:20.508886pt;}
._14{width:21.839376pt;}
._17{width:23.495917pt;}
._8{width:24.442478pt;}
._7{width:26.166040pt;}
._9{width:27.294018pt;}
._1f{width:28.707716pt;}
._1a{width:29.667974pt;}
._12{width:30.960314pt;}
._13{width:32.514323pt;}
._11{width:33.436713pt;}
._1c{width:34.622852pt;}
._28{width:35.664636pt;}
._26{width:37.094111pt;}
._27{width:38.546201pt;}
._29{width:39.441780pt;}
._15{width:40.425944pt;}
._23{width:45.185707pt;}
._2b{width:46.167590pt;}
._1e{width:47.334559pt;}
._1d{width:48.383838pt;}
._21{width:86.661143pt;}
._2a{width:89.477120pt;}
._25{width:90.862080pt;}
._24{width:178.560000pt;}
.fs6{font-size:16.639999pt;}
.fs7{font-size:32.000000pt;}
.fs1{font-size:42.240001pt;}
.fs4{font-size:48.639999pt;}
.fs0{font-size:53.759999pt;}
.fs3{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:106.240001pt;}
.fs2{font-size:128.000000pt;}
.yc{bottom:-7.040000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.240000pt;}
.yec{bottom:2.560000pt;}
.y9e{bottom:2.880000pt;}
.y98{bottom:3.520000pt;}
.y8e{bottom:3.840000pt;}
.y8c{bottom:4.480000pt;}
.yb{bottom:5.440001pt;}
.yea{bottom:8.320000pt;}
.y8a{bottom:10.560000pt;}
.y8{bottom:10.592000pt;}
.y4{bottom:12.512000pt;}
.y6{bottom:14.720000pt;}
.y8b{bottom:16.640000pt;}
.y3{bottom:16.992001pt;}
.ya{bottom:17.599999pt;}
.y80{bottom:17.600000pt;}
.y10a{bottom:20.800000pt;}
.y7f{bottom:26.880000pt;}
.y5{bottom:26.880001pt;}
.y9{bottom:29.760000pt;}
.y123{bottom:73.632000pt;}
.y4a{bottom:73.952001pt;}
.y7c{bottom:75.871999pt;}
.yc3{bottom:78.112000pt;}
.y164{bottom:80.032000pt;}
.y49{bottom:87.391998pt;}
.y122{bottom:89.952000pt;}
.y7b{bottom:91.871999pt;}
.y163{bottom:92.192000pt;}
.yc2{bottom:93.472000pt;}
.ye4{bottom:95.712000pt;}
.y48{bottom:99.871999pt;}
.y162{bottom:104.672000pt;}
.y121{bottom:105.952000pt;}
.y7a{bottom:108.191996pt;}
.yc1{bottom:108.832000pt;}
.ye3{bottom:111.072000pt;}
.y132{bottom:112.032000pt;}
.y47{bottom:112.032003pt;}
.y161{bottom:116.864000pt;}
.y120{bottom:121.984000pt;}
.y46{bottom:124.223999pt;}
.yc0{bottom:124.224000pt;}
.ye2{bottom:126.464000pt;}
.y131{bottom:128.384000pt;}
.y160{bottom:129.024000pt;}
.y45{bottom:136.706665pt;}
.y11f{bottom:138.306667pt;}
.ybf{bottom:139.586667pt;}
.y79{bottom:140.226664pt;}
.y15f{bottom:141.506667pt;}
.ye1{bottom:141.826667pt;}
.y130{bottom:144.386667pt;}
.y44{bottom:148.866669pt;}
.y15e{bottom:153.666667pt;}
.y11e{bottom:154.306667pt;}
.ybe{bottom:154.946667pt;}
.y78{bottom:156.546672pt;}
.ye0{bottom:157.186667pt;}
.y12f{bottom:160.386667pt;}
.y43{bottom:161.026662pt;}
.y15d{bottom:165.826667pt;}
.ybd{bottom:170.306667pt;}
.ydf{bottom:172.546667pt;}
.y77{bottom:172.546672pt;}
.y42{bottom:173.506673pt;}
.y12e{bottom:176.386667pt;}
.y15c{bottom:178.306667pt;}
.ybc{bottom:185.346667pt;}
.y41{bottom:185.986674pt;}
.y11d{bottom:186.626667pt;}
.yde{bottom:187.906667pt;}
.y76{bottom:188.546672pt;}
.y15b{bottom:190.466667pt;}
.y12d{bottom:192.706667pt;}
.y40{bottom:199.746663pt;}
.ybb{bottom:200.706667pt;}
.y11c{bottom:202.626667pt;}
.ydd{bottom:203.906667pt;}
.y75{bottom:204.546672pt;}
.y12c{bottom:208.706667pt;}
.y3f{bottom:213.506673pt;}
.y15a{bottom:215.106667pt;}
.yba{bottom:216.066667pt;}
.ydc{bottom:219.906667pt;}
.y74{bottom:220.866659pt;}
.y12b{bottom:224.706667pt;}
.y11b{bottom:225.986667pt;}
.y3e{bottom:227.266663pt;}
.y159{bottom:227.266667pt;}
.yb9{bottom:231.426667pt;}
.ydb{bottom:236.253333pt;}
.y73{bottom:236.893331pt;}
.y158{bottom:239.453333pt;}
.y3d{bottom:241.053324pt;}
.y12a{bottom:241.053333pt;}
.yb8{bottom:246.813333pt;}
.y157{bottom:251.933333pt;}
.yda{bottom:252.253333pt;}
.y72{bottom:252.893331pt;}
.y3c{bottom:254.813334pt;}
.y129{bottom:257.053333pt;}
.y11a{bottom:258.013333pt;}
.yb7{bottom:262.173333pt;}
.y156{bottom:264.093333pt;}
.y3b{bottom:266.973328pt;}
.yd9{bottom:268.253333pt;}
.y71{bottom:269.213338pt;}
.y128{bottom:273.053333pt;}
.y3a{bottom:273.693339pt;}
.y119{bottom:274.013333pt;}
.yb6{bottom:277.533333pt;}
.yd8{bottom:284.253333pt;}
.y155{bottom:284.893333pt;}
.y70{bottom:285.213338pt;}
.y39{bottom:289.053324pt;}
.y127{bottom:289.373333pt;}
.y118{bottom:290.333333pt;}
.yb5{bottom:293.533333pt;}
.yd7{bottom:300.573333pt;}
.y6f{bottom:301.213338pt;}
.y38{bottom:304.413330pt;}
.y126{bottom:305.373333pt;}
.y117{bottom:306.333333pt;}
.yb4{bottom:309.533333pt;}
.y154{bottom:315.613333pt;}
.yd6{bottom:316.573333pt;}
.y6e{bottom:317.533325pt;}
.y37{bottom:319.773336pt;}
.y125{bottom:321.373333pt;}
.y116{bottom:322.333333pt;}
.yb3{bottom:325.853333pt;}
.y153{bottom:328.413333pt;}
.yd5{bottom:332.573333pt;}
.y6d{bottom:333.533325pt;}
.y36{bottom:335.133341pt;}
.y124{bottom:338.333333pt;}
.y115{bottom:338.653333pt;}
.y152{bottom:341.533333pt;}
.yb2{bottom:341.853333pt;}
.yd4{bottom:348.893333pt;}
.y6c{bottom:349.533325pt;}
.y35{bottom:350.493327pt;}
.y151{bottom:354.013333pt;}
.y114{bottom:354.693333pt;}
.yb1{bottom:357.893333pt;}
.yd3{bottom:364.933333pt;}
.y34{bottom:365.893351pt;}
.y113{bottom:370.693333pt;}
.yb0{bottom:374.213333pt;}
.y150{bottom:374.853333pt;}
.yd2{bottom:380.933333pt;}
.y33{bottom:381.253337pt;}
.y6b{bottom:381.893351pt;}
.y112{bottom:387.013333pt;}
.yaf{bottom:390.213333pt;}
.y32{bottom:396.613322pt;}
.yd1{bottom:397.253333pt;}
.y111{bottom:400.133333pt;}
.y6a{bottom:405.253337pt;}
.yae{bottom:406.213333pt;}
.y14f{bottom:406.853333pt;}
.y31{bottom:411.973348pt;}
.y110{bottom:412.933333pt;}
.yd0{bottom:413.253333pt;}
.yad{bottom:422.533333pt;}
.y14e{bottom:423.173333pt;}
.y10f{bottom:425.733333pt;}
.ycf{bottom:429.253333pt;}
.y30{bottom:429.893351pt;}
.y69{bottom:437.253337pt;}
.yac{bottom:438.533333pt;}
.y10e{bottom:438.853333pt;}
.y14d{bottom:439.173333pt;}
.yce{bottom:445.573333pt;}
.y10d{bottom:451.653333pt;}
.y68{bottom:453.253337pt;}
.yab{bottom:454.533333pt;}
.y14c{bottom:455.173333pt;}
.ycd{bottom:461.573333pt;}
.y10c{bottom:464.773333pt;}
.y2f{bottom:465.733317pt;}
.y67{bottom:469.573324pt;}
.yaa{bottom:470.853333pt;}
.y14b{bottom:471.493333pt;}
.ycc{bottom:477.600000pt;}
.y66{bottom:485.600016pt;}
.ya9{bottom:486.880000pt;}
.y14a{bottom:487.520000pt;}
.y10b{bottom:490.720000pt;}
.ycb{bottom:492.960000pt;}
.y2e{bottom:496.800008pt;}
.y65{bottom:501.600016pt;}
.ya8{bottom:502.880000pt;}
.y109{bottom:503.520000pt;}
.yca{bottom:508.320000pt;}
.y2d{bottom:510.560018pt;}
.y64{bottom:517.920003pt;}
.ya7{bottom:518.880000pt;}
.y149{bottom:519.520000pt;}
.yc9{bottom:523.680000pt;}
.y2c{bottom:524.319987pt;}
.y63{bottom:533.920003pt;}
.ya6{bottom:535.200000pt;}
.y148{bottom:535.840000pt;}
.yc8{bottom:539.040000pt;}
.y2b{bottom:543.520019pt;}
.y108{bottom:549.280000pt;}
.y62{bottom:549.920003pt;}
.ya5{bottom:551.200000pt;}
.y147{bottom:551.840000pt;}
.yc7{bottom:554.400000pt;}
.y2a{bottom:557.279989pt;}
.y61{bottom:566.239990pt;}
.ya4{bottom:567.200000pt;}
.y107{bottom:567.840000pt;}
.yc6{bottom:569.760000pt;}
.y29{bottom:571.039998pt;}
.y106{bottom:575.200000pt;}
.y60{bottom:582.239990pt;}
.ya3{bottom:583.520000pt;}
.y146{bottom:584.160000pt;}
.yc5{bottom:585.120000pt;}
.y28{bottom:590.239990pt;}
.y105{bottom:591.200000pt;}
.y5f{bottom:598.266683pt;}
.ya2{bottom:599.546667pt;}
.y145{bottom:600.186667pt;}
.yc4{bottom:600.506667pt;}
.y27{bottom:604.346680pt;}
.y104{bottom:607.546667pt;}
.y5e{bottom:614.266683pt;}
.ya1{bottom:615.546667pt;}
.y144{bottom:616.186667pt;}
.y26{bottom:618.106649pt;}
.y103{bottom:623.546667pt;}
.y5d{bottom:630.586670pt;}
.y25{bottom:631.866659pt;}
.ya0{bottom:631.866667pt;}
.y143{bottom:632.506667pt;}
.y102{bottom:639.546667pt;}
.y9f{bottom:644.986667pt;}
.y24{bottom:645.626668pt;}
.y5c{bottom:646.586670pt;}
.y142{bottom:648.506667pt;}
.y101{bottom:655.866667pt;}
.y23{bottom:659.386678pt;}
.y9d{bottom:660.666667pt;}
.y5b{bottom:662.586670pt;}
.y141{bottom:663.866667pt;}
.y100{bottom:671.866667pt;}
.y22{bottom:673.146647pt;}
.y9c{bottom:675.066667pt;}
.y5a{bottom:678.906657pt;}
.y140{bottom:679.226667pt;}
.y21{bottom:686.906657pt;}
.yff{bottom:687.866667pt;}
.y9b{bottom:690.746667pt;}
.y59{bottom:694.906657pt;}
.y20{bottom:700.666667pt;}
.yfe{bottom:703.866667pt;}
.y13f{bottom:704.826667pt;}
.y9a{bottom:706.426667pt;}
.y58{bottom:710.946696pt;}
.y1f{bottom:714.466634pt;}
.yfd{bottom:720.226667pt;}
.y99{bottom:722.146667pt;}
.y57{bottom:727.266683pt;}
.y1e{bottom:728.546631pt;}
.yfc{bottom:736.226667pt;}
.y13e{bottom:736.866667pt;}
.y97{bottom:737.826667pt;}
.y1d{bottom:742.306641pt;}
.y56{bottom:743.266683pt;}
.yfb{bottom:752.226667pt;}
.y13d{bottom:752.866667pt;}
.y96{bottom:753.186667pt;}
.y1c{bottom:756.066650pt;}
.y55{bottom:759.266683pt;}
.yfa{bottom:768.546667pt;}
.y95{bottom:768.866667pt;}
.y13c{bottom:769.186667pt;}
.y1b{bottom:769.826660pt;}
.y54{bottom:775.586670pt;}
.y1a{bottom:783.586670pt;}
.y94{bottom:784.546667pt;}
.y13b{bottom:785.186667pt;}
.y53{bottom:791.586670pt;}
.y19{bottom:797.346680pt;}
.yf9{bottom:797.666667pt;}
.y93{bottom:800.226667pt;}
.y13a{bottom:801.186667pt;}
.y52{bottom:807.586670pt;}
.yf8{bottom:810.466667pt;}
.y18{bottom:811.106689pt;}
.y92{bottom:815.906667pt;}
.y139{bottom:817.506667pt;}
.yf7{bottom:823.586667pt;}
.y51{bottom:823.586670pt;}
.y17{bottom:824.866699pt;}
.y91{bottom:831.613333pt;}
.y138{bottom:833.533333pt;}
.yf6{bottom:836.413333pt;}
.y16{bottom:838.973307pt;}
.y50{bottom:839.933350pt;}
.y173{bottom:844.413333pt;}
.y90{bottom:847.293333pt;}
.yf5{bottom:849.533333pt;}
.y15{bottom:852.733317pt;}
.y4f{bottom:855.933350pt;}
.y172{bottom:861.373333pt;}
.yf4{bottom:862.333333pt;}
.y8f{bottom:862.973333pt;}
.y137{bottom:865.853333pt;}
.y14{bottom:866.493327pt;}
.y4e{bottom:871.933350pt;}
.y171{bottom:874.173333pt;}
.yf3{bottom:875.453333pt;}
.y8d{bottom:878.653333pt;}
.y13{bottom:880.253337pt;}
.y136{bottom:881.853333pt;}
.yf2{bottom:888.253333pt;}
.y4d{bottom:888.253337pt;}
.y170{bottom:889.533333pt;}
.y12{bottom:894.013346pt;}
.y89{bottom:894.333333pt;}
.y135{bottom:897.853333pt;}
.yf1{bottom:901.053333pt;}
.y4c{bottom:904.253337pt;}
.y16f{bottom:904.893333pt;}
.y11{bottom:907.773356pt;}
.yf0{bottom:914.173333pt;}
.y16e{bottom:920.253333pt;}
.y4b{bottom:920.253337pt;}
.y10{bottom:921.533366pt;}
.yef{bottom:926.973333pt;}
.y134{bottom:930.173333pt;}
.y88{bottom:931.773333pt;}
.y16d{bottom:935.613333pt;}
.yee{bottom:940.093333pt;}
.y133{bottom:946.173333pt;}
.y16c{bottom:951.013333pt;}
.y87{bottom:951.333333pt;}
.yf{bottom:951.973307pt;}
.yed{bottom:952.933333pt;}
.y86{bottom:962.213333pt;}
.yeb{bottom:965.733333pt;}
.y16b{bottom:966.373333pt;}
.y85{bottom:978.533333pt;}
.ye9{bottom:978.853333pt;}
.y16a{bottom:981.413333pt;}
.ye{bottom:988.773356pt;}
.y169{bottom:994.213333pt;}
.y84{bottom:994.533333pt;}
.y168{bottom:1008.613333pt;}
.y83{bottom:1010.533333pt;}
.ye8{bottom:1012.133333pt;}
.y167{bottom:1020.773333pt;}
.yd{bottom:1025.573324pt;}
.y82{bottom:1026.853333pt;}
.ye7{bottom:1027.493333pt;}
.y166{bottom:1033.253333pt;}
.y81{bottom:1042.853333pt;}
.y165{bottom:1045.413333pt;}
.y7e{bottom:1079.680000pt;}
.y2{bottom:1082.239990pt;}
.ye6{bottom:1082.240000pt;}
.y7d{bottom:1096.320000pt;}
.ye5{bottom:1097.600000pt;}
.y1{bottom:1097.600016pt;}
.hf{height:11.618750pt;}
.h21{height:11.740625pt;}
.h1e{height:12.160000pt;}
.h1f{height:12.192000pt;}
.h1d{height:12.480000pt;}
.h18{height:13.760000pt;}
.h16{height:14.720000pt;}
.h17{height:14.752000pt;}
.h14{height:15.040000pt;}
.h15{height:15.072000pt;}
.h12{height:22.578125pt;}
.h1c{height:24.640000pt;}
.h13{height:28.480000pt;}
.h11{height:29.493750pt;}
.hc{height:29.803125pt;}
.h22{height:30.751875pt;}
.h6{height:32.133750pt;}
.hb{height:33.962500pt;}
.h10{height:34.318750pt;}
.ha{height:36.646250pt;}
.h5{height:36.800001pt;}
.h4{height:37.537500pt;}
.h3{height:37.931250pt;}
.hd{height:39.138750pt;}
.h7{height:39.680000pt;}
.h19{height:39.821250pt;}
.h9{height:41.543750pt;}
.h1a{height:42.013125pt;}
.h20{height:43.250625pt;}
.h23{height:44.687500pt;}
.h1b{height:53.471250pt;}
.he{height:74.181250pt;}
.h8{height:89.375000pt;}
.h2{height:1122.559977pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:34.560000pt;}
.w6{width:43.520000pt;}
.w14{width:50.560000pt;}
.w16{width:56.352000pt;}
.wf{width:59.232000pt;}
.we{width:60.832000pt;}
.w10{width:61.792000pt;}
.w8{width:62.432000pt;}
.w12{width:65.312000pt;}
.w7{width:65.632000pt;}
.w11{width:65.920000pt;}
.w17{width:74.880000pt;}
.w15{width:74.912000pt;}
.w13{width:75.232000pt;}
.w9{width:77.152000pt;}
.wc{width:78.752000pt;}
.wb{width:87.072000pt;}
.wa{width:89.312000pt;}
.w3{width:165.853333pt;}
.w5{width:223.773333pt;}
.w4{width:223.773336pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.360000pt;}
.x27{left:8.640000pt;}
.x4{left:9.626668pt;}
.x23{left:11.546667pt;}
.x1d{left:12.800000pt;}
.x32{left:13.760000pt;}
.x24{left:14.720000pt;}
.x28{left:16.640000pt;}
.x22{left:18.586667pt;}
.x16{left:19.840000pt;}
.x25{left:21.120000pt;}
.x26{left:22.440000pt;}
.x19{left:23.386667pt;}
.x3a{left:24.680000pt;}
.x20{left:25.640000pt;}
.x18{left:27.546667pt;}
.x39{left:28.840000pt;}
.x1c{left:29.760000pt;}
.xa{left:62.431990pt;}
.x5{left:63.712001pt;}
.x41{left:66.911988pt;}
.x9{left:72.031986pt;}
.x33{left:81.311988pt;}
.x29{left:86.111988pt;}
.xd{left:91.231993pt;}
.x6{left:100.191984pt;}
.x34{left:109.791988pt;}
.x44{left:131.263988pt;}
.x38{left:135.426667pt;}
.x46{left:136.706655pt;}
.x15{left:143.106667pt;}
.x13{left:151.746655pt;}
.x2b{left:152.706667pt;}
.x45{left:158.466655pt;}
.xc{left:161.986652pt;}
.x40{left:164.866655pt;}
.x14{left:173.826655pt;}
.x17{left:187.266667pt;}
.x7{left:192.066659pt;}
.xb{left:235.933317pt;}
.x2c{left:249.373333pt;}
.x1a{left:253.533333pt;}
.x37{left:291.653322pt;}
.x2a{left:294.213322pt;}
.x2d{left:309.253333pt;}
.x1b{left:316.613333pt;}
.x3b{left:319.173333pt;}
.x8{left:330.373320pt;}
.x2e{left:371.680000pt;}
.xe{left:383.199992pt;}
.x3c{left:385.440000pt;}
.x2{left:393.759998pt;}
.x12{left:396.959988pt;}
.xf{left:406.560006pt;}
.x43{left:411.039988pt;}
.x10{left:416.159982pt;}
.x3{left:419.039998pt;}
.x2f{left:433.466667pt;}
.x42{left:435.066655pt;}
.x3d{left:451.386667pt;}
.x36{left:454.586655pt;}
.x11{left:475.066639pt;}
.x48{left:478.586655pt;}
.x1{left:480.826648pt;}
.x1e{left:484.346667pt;}
.x30{left:500.346667pt;}
.x35{left:502.586655pt;}
.x3e{left:526.946667pt;}
.x31{left:566.306667pt;}
.x21{left:572.066667pt;}
.x3f{left:583.933333pt;}
.x47{left:731.493322pt;}
}




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