
    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_367b77803537d1d53b907ec8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_0d27c25492c2a18bf03d2b9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a0f3ff3df930834fcee9b7ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_5e8e45c4b349a7023678eb21.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f30756d6ad8999d9b794dae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_796bd327be69559960202641.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_a93bcb3ddf836f01a251364c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_066af5421a14013d066a5653.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_4ee85a36e11385416818e58f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_c4dbb2918d49c03ad2adfbca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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);}
.v3{vertical-align:-33.120060px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls1e{letter-spacing:-0.050400px;}
.ls19{letter-spacing:-0.036000px;}
.ls37{letter-spacing:-0.028800px;}
.ls18{letter-spacing:-0.021600px;}
.ls4{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.014400px;}
.ls28{letter-spacing:0.021600px;}
.ls26{letter-spacing:0.036000px;}
.ls31{letter-spacing:0.050400px;}
.lsa{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.116928px;}
.ls1{letter-spacing:0.155376px;}
.ls2{letter-spacing:0.200448px;}
.ls2e{letter-spacing:0.224352px;}
.lsb{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.240600px;}
.ls10{letter-spacing:0.242064px;}
.ls0{letter-spacing:0.250992px;}
.ls24{letter-spacing:0.253872px;}
.ls6{letter-spacing:0.275616px;}
.ls27{letter-spacing:0.318816px;}
.ls2d{letter-spacing:0.319680px;}
.lsc{letter-spacing:0.320280px;}
.ls5{letter-spacing:0.322704px;}
.ls9{letter-spacing:0.359400px;}
.ls21{letter-spacing:0.383760px;}
.ls20{letter-spacing:0.419184px;}
.lsd{letter-spacing:0.478224px;}
.ls1a{letter-spacing:0.517200px;}
.ls2a{letter-spacing:0.542760px;}
.ls11{letter-spacing:0.543168px;}
.ls1b{letter-spacing:0.568800px;}
.ls29{letter-spacing:0.571200px;}
.lsf{letter-spacing:0.578592px;}
.ls23{letter-spacing:0.637632px;}
.ls12{letter-spacing:0.702576px;}
.ls22{letter-spacing:0.719280px;}
.ls1f{letter-spacing:0.722304px;}
.ls13{letter-spacing:0.802944px;}
.ls16{letter-spacing:0.850800px;}
.ls15{letter-spacing:0.853800px;}
.lse{letter-spacing:0.861984px;}
.ls14{letter-spacing:0.897408px;}
.ls1c{letter-spacing:0.928800px;}
.ls25{letter-spacing:1.752000px;}
.ls35{letter-spacing:3.895200px;}
.ls1d{letter-spacing:5.068800px;}
.ls30{letter-spacing:7.675200px;}
.ls2c{letter-spacing:9.571200px;}
.ls2f{letter-spacing:10.375200px;}
.ls34{letter-spacing:12.862800px;}
.ls36{letter-spacing:23.752800px;}
.ls33{letter-spacing:64.007400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-30.035376px;}
.ws12{word-spacing:-18.050400px;}
.wsf{word-spacing:-18.021600px;}
.ws6{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.985600px;}
.ws9{word-spacing:-15.562944px;}
.wse{word-spacing:-15.462576px;}
.ws10{word-spacing:-15.338592px;}
.ws8{word-spacing:-15.238224px;}
.wsb{word-spacing:-12.602304px;}
.wsa{word-spacing:-11.880000px;}
.wsc{word-spacing:-10.439280px;}
.ws11{word-spacing:-0.283392px;}
.ws7{word-spacing:-0.086400px;}
.ws4{word-spacing:-0.072000px;}
.wsd{word-spacing:-0.050400px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:1115.088000px;}
._18{margin-left:-7.992000px;}
._0{margin-left:-1.075680px;}
._1{width:1.002240px;}
._9{width:2.686680px;}
._11{width:3.776760px;}
._e{width:4.968000px;}
._6{width:6.105600px;}
._c{width:7.221720px;}
._4{width:8.445600px;}
._16{width:9.475200px;}
._5{width:10.476000px;}
._15{width:11.517000px;}
._3{width:12.687000px;}
._7{width:13.983120px;}
._13{width:15.429120px;}
._b{width:16.471920px;}
._19{width:19.053000px;}
._f{width:20.102520px;}
._1b{width:21.119880px;}
._10{width:22.125600px;}
._17{width:24.004800px;}
._1c{width:25.891200px;}
._d{width:27.540000px;}
._1a{width:28.814400px;}
._1d{width:29.817120px;}
._1e{width:31.483680px;}
._a{width:32.882520px;}
._2{width:34.041600px;}
._12{width:35.906400px;}
._8{width:37.441920px;}
._31{width:38.519640px;}
._23{width:40.298400px;}
._30{width:41.624400px;}
._28{width:42.861600px;}
._2e{width:47.383200px;}
._24{width:49.946400px;}
._2d{width:61.725600px;}
._27{width:62.798400px;}
._2f{width:67.442400px;}
._25{width:69.926400px;}
._2c{width:70.984800px;}
._2b{width:79.128000px;}
._26{width:87.804000px;}
._22{width:97.272720px;}
._32{width:98.279280px;}
._29{width:106.704000px;}
._2a{width:137.743200px;}
._1f{width:176.399520px;}
._14{width:194.399520px;}
._20{width:785.039160px;}
._21{width:843.348120px;}
.fc5{color:rgb(112,173,71);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:53.280000px;}
.fs5{font-size:59.040000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:119.520000px;}
.y2d{bottom:-4.679970px;}
.y0{bottom:0.000000px;}
.y8f{bottom:15.480015px;}
.y33{bottom:28.080000px;}
.y8e{bottom:36.000030px;}
.y3a{bottom:38.520000px;}
.y42{bottom:38.880000px;}
.yb2{bottom:47.880015px;}
.yb7{bottom:48.600030px;}
.y2c{bottom:48.960015px;}
.y8d{bottom:54.720015px;}
.y4c{bottom:56.160030px;}
.ya3{bottom:56.880015px;}
.yee{bottom:59.400015px;}
.y1{bottom:61.515015px;}
.y7a{bottom:63.360015px;}
.yac{bottom:65.160030px;}
.yad{bottom:65.880015px;}
.yba{bottom:69.120030px;}
.yb6{bottom:69.480015px;}
.y41{bottom:69.840000px;}
.y8c{bottom:72.000030px;}
.y4b{bottom:76.680030px;}
.ya2{bottom:77.400015px;}
.y2b{bottom:78.480015px;}
.ybe{bottom:82.440015px;}
.y9f{bottom:83.160030px;}
.y79{bottom:83.880015px;}
.y8b{bottom:89.279985px;}
.ybd{bottom:89.639985px;}
.y39{bottom:90.720000px;}
.ya4{bottom:94.319985px;}
.ya1{bottom:96.119985px;}
.y4a{bottom:97.559985px;}
.yed{bottom:97.919985px;}
.yab{bottom:99.719985px;}
.yae{bottom:100.079985px;}
.y40{bottom:100.800000px;}
.yd2{bottom:102.959985px;}
.y78{bottom:104.759985px;}
.y8a{bottom:106.559985px;}
.ya0{bottom:107.279985px;}
.y2a{bottom:108.359985px;}
.yb5{bottom:110.879985px;}
.yb9{bottom:112.679985px;}
.ybc{bottom:113.399985px;}
.yb8{bottom:115.199985px;}
.yb1{bottom:116.999985px;}
.y89{bottom:117.359985px;}
.y49{bottom:118.079985px;}
.y38{bottom:122.040000px;}
.yaa{bottom:123.839985px;}
.y77{bottom:125.279985px;}
.ybb{bottom:127.799985px;}
.y3f{bottom:131.760000px;}
.yd1{bottom:133.919985px;}
.ya9{bottom:134.279985px;}
.yb4{bottom:134.999985px;}
.yec{bottom:136.439985px;}
.y29{bottom:137.879985px;}
.y48{bottom:138.959985px;}
.y76{bottom:146.159985px;}
.ya8{bottom:151.199985px;}
.y37{bottom:153.000000px;}
.y9e{bottom:156.599985px;}
.yb0{bottom:158.039985px;}
.y28{bottom:158.759985px;}
.y47{bottom:159.479985px;}
.y3e{bottom:163.080000px;}
.yd0{bottom:165.239985px;}
.y75{bottom:166.679985px;}
.yb3{bottom:167.039985px;}
.ya7{bottom:168.479985px;}
.yaf{bottom:169.199985px;}
.yeb{bottom:173.159985px;}
.y88{bottom:177.119985px;}
.y27{bottom:179.279985px;}
.y46{bottom:180.359985px;}
.y36{bottom:183.960000px;}
.y74{bottom:187.559985px;}
.ya6{bottom:192.599985px;}
.ycf{bottom:196.199985px;}
.y26{bottom:200.159985px;}
.y45{bottom:200.879985px;}
.ya5{bottom:203.759985px;}
.y73{bottom:208.079985px;}
.yea{bottom:209.159985px;}
.y35{bottom:214.920000px;}
.y9d{bottom:218.519985px;}
.y25{bottom:220.679985px;}
.y44{bottom:221.759985px;}
.yce{bottom:227.159985px;}
.y72{bottom:228.959985px;}
.y87{bottom:239.399985px;}
.y24{bottom:241.559985px;}
.y43{bottom:242.279985px;}
.ye9{bottom:245.519985px;}
.y71{bottom:249.479985px;}
.ycd{bottom:258.119985px;}
.y23{bottom:262.079985px;}
.y70{bottom:270.359985px;}
.y9c{bottom:280.799985px;}
.ye8{bottom:281.879985px;}
.y22{bottom:282.959985px;}
.ycc{bottom:289.439985px;}
.y6f{bottom:290.879985px;}
.y86{bottom:301.319985px;}
.y21{bottom:303.479985px;}
.y6e{bottom:311.759985px;}
.ye7{bottom:317.879985px;}
.ycb{bottom:320.399985px;}
.y3d{bottom:323.955000px;}
.y20{bottom:324.359985px;}
.y6d{bottom:332.279985px;}
.y9b{bottom:342.719985px;}
.y1f{bottom:344.879985px;}
.yca{bottom:351.359985px;}
.y6c{bottom:353.159985px;}
.ye6{bottom:354.239985px;}
.y85{bottom:363.599985px;}
.y1e{bottom:365.759985px;}
.y6b{bottom:373.679985px;}
.yc9{bottom:382.319985px;}
.y1d{bottom:386.279985px;}
.ye5{bottom:390.239985px;}
.y6a{bottom:394.559985px;}
.y9a{bottom:404.999985px;}
.y1c{bottom:407.159985px;}
.yc8{bottom:413.279985px;}
.y69{bottom:415.079985px;}
.y84{bottom:425.519985px;}
.ye4{bottom:426.599985px;}
.y1b{bottom:427.679985px;}
.y68{bottom:435.959985px;}
.yc7{bottom:444.599985px;}
.y1a{bottom:448.559985px;}
.y67{bottom:456.479985px;}
.y102{bottom:458.999985px;}
.ye3{bottom:462.959985px;}
.y99{bottom:466.919985px;}
.y19{bottom:469.079985px;}
.yc6{bottom:475.559985px;}
.y66{bottom:477.359985px;}
.y83{bottom:487.799985px;}
.y101{bottom:489.959985px;}
.y18{bottom:490.319985px;}
.y65{bottom:497.879985px;}
.ye2{bottom:498.959985px;}
.yc5{bottom:506.519985px;}
.y3c{bottom:507.555000px;}
.y17{bottom:514.439985px;}
.y64{bottom:518.759985px;}
.y100{bottom:520.919985px;}
.y98{bottom:528.839985px;}
.y3b{bottom:533.519985px;}
.ye1{bottom:535.319985px;}
.yc4{bottom:537.479985px;}
.y16{bottom:538.559985px;}
.y63{bottom:539.279985px;}
.y82{bottom:549.719985px;}
.yff{bottom:551.879985px;}
.y62{bottom:560.159985px;}
.y15{bottom:564.839985px;}
.yc3{bottom:568.799985px;}
.ye0{bottom:571.319985px;}
.y61{bottom:580.679985px;}
.yfe{bottom:583.199985px;}
.y97{bottom:591.119985px;}
.y14{bottom:599.399985px;}
.yc2{bottom:599.759985px;}
.y60{bottom:601.559985px;}
.ydf{bottom:607.679985px;}
.y81{bottom:611.639985px;}
.yfd{bottom:614.159985px;}
.y34{bottom:615.195000px;}
.y5f{bottom:622.079985px;}
.yc1{bottom:630.719985px;}
.y13{bottom:633.959985px;}
.y5e{bottom:642.959985px;}
.yde{bottom:644.039985px;}
.yfc{bottom:645.119985px;}
.y96{bottom:653.039985px;}
.yc0{bottom:661.679985px;}
.y5d{bottom:663.479985px;}
.y12{bottom:668.519985px;}
.y80{bottom:673.919985px;}
.yfb{bottom:676.079985px;}
.ydd{bottom:680.039985px;}
.ybf{bottom:682.559985px;}
.y5c{bottom:684.359985px;}
.y11{bottom:700.199985px;}
.y5b{bottom:704.879985px;}
.yfa{bottom:707.399985px;}
.y95{bottom:715.319985px;}
.ydc{bottom:716.399985px;}
.y10{bottom:721.079985px;}
.y5a{bottom:725.759985px;}
.y7f{bottom:735.839985px;}
.yf9{bottom:738.359985px;}
.yf{bottom:741.599985px;}
.y59{bottom:746.279985px;}
.ydb{bottom:749.879985px;}
.ye{bottom:762.479985px;}
.y58{bottom:767.159985px;}
.yf8{bottom:769.319985px;}
.y94{bottom:777.239985px;}
.yda{bottom:780.839985px;}
.yd{bottom:782.999985px;}
.y57{bottom:787.679985px;}
.y7e{bottom:798.119985px;}
.yf7{bottom:800.279985px;}
.yc{bottom:803.879985px;}
.y56{bottom:808.559985px;}
.yd9{bottom:812.159985px;}
.yb{bottom:824.399985px;}
.y55{bottom:829.079985px;}
.yf6{bottom:831.599985px;}
.y93{bottom:839.519985px;}
.yd8{bottom:843.119985px;}
.ya{bottom:845.279985px;}
.y54{bottom:849.959985px;}
.y32{bottom:850.995000px;}
.y7d{bottom:860.039985px;}
.yf5{bottom:862.559985px;}
.y9{bottom:865.799985px;}
.y53{bottom:870.479985px;}
.yd7{bottom:874.079985px;}
.y8{bottom:886.679985px;}
.y52{bottom:891.359985px;}
.yf4{bottom:893.519985px;}
.y92{bottom:901.439985px;}
.yd6{bottom:905.039985px;}
.y7{bottom:907.199985px;}
.y51{bottom:911.879985px;}
.y7c{bottom:922.319985px;}
.yf3{bottom:924.479985px;}
.y6{bottom:928.079985px;}
.y50{bottom:932.759985px;}
.yd5{bottom:936.359985px;}
.y31{bottom:944.639985px;}
.y5{bottom:948.599985px;}
.y4f{bottom:953.279985px;}
.yf2{bottom:955.799985px;}
.y91{bottom:963.719985px;}
.yd4{bottom:967.319985px;}
.y4{bottom:969.479985px;}
.y4e{bottom:974.159985px;}
.y7b{bottom:984.239985px;}
.yf1{bottom:986.759985px;}
.y3{bottom:989.999985px;}
.y4d{bottom:994.679985px;}
.yd3{bottom:996.839985px;}
.y2{bottom:1006.919985px;}
.y30{bottom:1015.559985px;}
.yf0{bottom:1018.079985px;}
.y90{bottom:1025.639985px;}
.y2f{bottom:1036.079985px;}
.yef{bottom:1054.079985px;}
.y2e{bottom:1056.959985px;}
.h9{height:12.240022px;}
.hf{height:34.114922px;}
.h10{height:35.815781px;}
.h19{height:39.350391px;}
.h11{height:41.696016px;}
.ha{height:47.879970px;}
.hc{height:47.880015px;}
.h16{height:47.988281px;}
.h15{height:48.761719px;}
.h13{height:49.992188px;}
.h3{height:50.308594px;}
.h12{height:51.804141px;}
.h18{height:51.827344px;}
.h17{height:52.438359px;}
.h1a{height:55.666406px;}
.h8{height:57.990938px;}
.h4{height:63.175781px;}
.h5{height:63.949219px;}
.h14{height:66.114844px;}
.h7{height:74.181094px;}
.he{height:74.816016px;}
.h6{height:106.155703px;}
.hd{height:179.640000px;}
.hb{height:231.480000px;}
.h2{height:1194.840000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:10.080001px;}
.w6{width:20.160000px;}
.w4{width:551.160000px;}
.w5{width:565.920000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.079850px;}
.x1{left:13.500000px;}
.x3{left:135.359970px;}
.x5{left:149.580000px;}
.xb{left:162.360000px;}
.x9{left:188.459850px;}
.x6{left:228.346350px;}
.x8{left:239.662350px;}
.x17{left:247.946700px;}
.x16{left:275.935500px;}
.x14{left:278.422800px;}
.x11{left:297.205050px;}
.x1a{left:349.689000px;}
.x13{left:352.413600px;}
.x19{left:357.427650px;}
.x12{left:361.167450px;}
.x15{left:362.648400px;}
.x18{left:365.403750px;}
.xe{left:366.915450px;}
.xf{left:368.154750px;}
.x1b{left:370.659600px;}
.x10{left:375.414600px;}
.xd{left:381.158250px;}
.x2{left:405.360000px;}
.xa{left:446.580000px;}
.x4{left:451.620000px;}
.xc{left:484.200000px;}
@media print{
.v3{vertical-align:-29.440053pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls1e{letter-spacing:-0.044800pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls37{letter-spacing:-0.025600pt;}
.ls18{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.012800pt;}
.ls28{letter-spacing:0.019200pt;}
.ls26{letter-spacing:0.032000pt;}
.ls31{letter-spacing:0.044800pt;}
.lsa{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.103936pt;}
.ls1{letter-spacing:0.138112pt;}
.ls2{letter-spacing:0.178176pt;}
.ls2e{letter-spacing:0.199424pt;}
.lsb{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.213867pt;}
.ls10{letter-spacing:0.215168pt;}
.ls0{letter-spacing:0.223104pt;}
.ls24{letter-spacing:0.225664pt;}
.ls6{letter-spacing:0.244992pt;}
.ls27{letter-spacing:0.283392pt;}
.ls2d{letter-spacing:0.284160pt;}
.lsc{letter-spacing:0.284693pt;}
.ls5{letter-spacing:0.286848pt;}
.ls9{letter-spacing:0.319467pt;}
.ls21{letter-spacing:0.341120pt;}
.ls20{letter-spacing:0.372608pt;}
.lsd{letter-spacing:0.425088pt;}
.ls1a{letter-spacing:0.459733pt;}
.ls2a{letter-spacing:0.482453pt;}
.ls11{letter-spacing:0.482816pt;}
.ls1b{letter-spacing:0.505600pt;}
.ls29{letter-spacing:0.507733pt;}
.lsf{letter-spacing:0.514304pt;}
.ls23{letter-spacing:0.566784pt;}
.ls12{letter-spacing:0.624512pt;}
.ls22{letter-spacing:0.639360pt;}
.ls1f{letter-spacing:0.642048pt;}
.ls13{letter-spacing:0.713728pt;}
.ls16{letter-spacing:0.756267pt;}
.ls15{letter-spacing:0.758933pt;}
.lse{letter-spacing:0.766208pt;}
.ls14{letter-spacing:0.797696pt;}
.ls1c{letter-spacing:0.825600pt;}
.ls25{letter-spacing:1.557333pt;}
.ls35{letter-spacing:3.462400pt;}
.ls1d{letter-spacing:4.505600pt;}
.ls30{letter-spacing:6.822400pt;}
.ls2c{letter-spacing:8.507733pt;}
.ls2f{letter-spacing:9.222400pt;}
.ls34{letter-spacing:11.433600pt;}
.ls36{letter-spacing:21.113600pt;}
.ls33{letter-spacing:56.895467pt;}
.ws2{word-spacing:-26.698112pt;}
.ws12{word-spacing:-16.044800pt;}
.wsf{word-spacing:-16.019200pt;}
.ws6{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.987200pt;}
.ws9{word-spacing:-13.833728pt;}
.wse{word-spacing:-13.744512pt;}
.ws10{word-spacing:-13.634304pt;}
.ws8{word-spacing:-13.545088pt;}
.wsb{word-spacing:-11.202048pt;}
.wsa{word-spacing:-10.560000pt;}
.wsc{word-spacing:-9.279360pt;}
.ws11{word-spacing:-0.251904pt;}
.ws7{word-spacing:-0.076800pt;}
.ws4{word-spacing:-0.064000pt;}
.wsd{word-spacing:-0.044800pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:991.189333pt;}
._18{margin-left:-7.104000pt;}
._0{margin-left:-0.956160pt;}
._1{width:0.890880pt;}
._9{width:2.388160pt;}
._11{width:3.357120pt;}
._e{width:4.416000pt;}
._6{width:5.427200pt;}
._c{width:6.419307pt;}
._4{width:7.507200pt;}
._16{width:8.422400pt;}
._5{width:9.312000pt;}
._15{width:10.237333pt;}
._3{width:11.277333pt;}
._7{width:12.429440pt;}
._13{width:13.714773pt;}
._b{width:14.641707pt;}
._19{width:16.936000pt;}
._f{width:17.868907pt;}
._1b{width:18.773227pt;}
._10{width:19.667200pt;}
._17{width:21.337600pt;}
._1c{width:23.014400pt;}
._d{width:24.480000pt;}
._1a{width:25.612800pt;}
._1d{width:26.504107pt;}
._1e{width:27.985493pt;}
._a{width:29.228907pt;}
._2{width:30.259200pt;}
._12{width:31.916800pt;}
._8{width:33.281707pt;}
._31{width:34.239680pt;}
._23{width:35.820800pt;}
._30{width:36.999467pt;}
._28{width:38.099200pt;}
._2e{width:42.118400pt;}
._24{width:44.396800pt;}
._2d{width:54.867200pt;}
._27{width:55.820800pt;}
._2f{width:59.948800pt;}
._25{width:62.156800pt;}
._2c{width:63.097600pt;}
._2b{width:70.336000pt;}
._26{width:78.048000pt;}
._22{width:86.464640pt;}
._32{width:87.359360pt;}
._29{width:94.848000pt;}
._2a{width:122.438400pt;}
._1f{width:156.799573pt;}
._14{width:172.799573pt;}
._20{width:697.812587pt;}
._21{width:749.642773pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:47.360000pt;}
.fs5{font-size:52.480000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:106.240000pt;}
.y2d{bottom:-4.159973pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:13.760013pt;}
.y33{bottom:24.960000pt;}
.y8e{bottom:32.000027pt;}
.y3a{bottom:34.240000pt;}
.y42{bottom:34.560000pt;}
.yb2{bottom:42.560013pt;}
.yb7{bottom:43.200027pt;}
.y2c{bottom:43.520013pt;}
.y8d{bottom:48.640013pt;}
.y4c{bottom:49.920027pt;}
.ya3{bottom:50.560013pt;}
.yee{bottom:52.800013pt;}
.y1{bottom:54.680013pt;}
.y7a{bottom:56.320013pt;}
.yac{bottom:57.920027pt;}
.yad{bottom:58.560013pt;}
.yba{bottom:61.440027pt;}
.yb6{bottom:61.760013pt;}
.y41{bottom:62.080000pt;}
.y8c{bottom:64.000027pt;}
.y4b{bottom:68.160027pt;}
.ya2{bottom:68.800013pt;}
.y2b{bottom:69.760013pt;}
.ybe{bottom:73.280013pt;}
.y9f{bottom:73.920027pt;}
.y79{bottom:74.560013pt;}
.y8b{bottom:79.359987pt;}
.ybd{bottom:79.679987pt;}
.y39{bottom:80.640000pt;}
.ya4{bottom:83.839987pt;}
.ya1{bottom:85.439987pt;}
.y4a{bottom:86.719987pt;}
.yed{bottom:87.039987pt;}
.yab{bottom:88.639987pt;}
.yae{bottom:88.959987pt;}
.y40{bottom:89.600000pt;}
.yd2{bottom:91.519987pt;}
.y78{bottom:93.119987pt;}
.y8a{bottom:94.719987pt;}
.ya0{bottom:95.359987pt;}
.y2a{bottom:96.319987pt;}
.yb5{bottom:98.559987pt;}
.yb9{bottom:100.159987pt;}
.ybc{bottom:100.799987pt;}
.yb8{bottom:102.399987pt;}
.yb1{bottom:103.999987pt;}
.y89{bottom:104.319987pt;}
.y49{bottom:104.959987pt;}
.y38{bottom:108.480000pt;}
.yaa{bottom:110.079987pt;}
.y77{bottom:111.359987pt;}
.ybb{bottom:113.599987pt;}
.y3f{bottom:117.120000pt;}
.yd1{bottom:119.039987pt;}
.ya9{bottom:119.359987pt;}
.yb4{bottom:119.999987pt;}
.yec{bottom:121.279987pt;}
.y29{bottom:122.559987pt;}
.y48{bottom:123.519987pt;}
.y76{bottom:129.919987pt;}
.ya8{bottom:134.399987pt;}
.y37{bottom:136.000000pt;}
.y9e{bottom:139.199987pt;}
.yb0{bottom:140.479987pt;}
.y28{bottom:141.119987pt;}
.y47{bottom:141.759987pt;}
.y3e{bottom:144.960000pt;}
.yd0{bottom:146.879987pt;}
.y75{bottom:148.159987pt;}
.yb3{bottom:148.479987pt;}
.ya7{bottom:149.759987pt;}
.yaf{bottom:150.399987pt;}
.yeb{bottom:153.919987pt;}
.y88{bottom:157.439987pt;}
.y27{bottom:159.359987pt;}
.y46{bottom:160.319987pt;}
.y36{bottom:163.520000pt;}
.y74{bottom:166.719987pt;}
.ya6{bottom:171.199987pt;}
.ycf{bottom:174.399987pt;}
.y26{bottom:177.919987pt;}
.y45{bottom:178.559987pt;}
.ya5{bottom:181.119987pt;}
.y73{bottom:184.959987pt;}
.yea{bottom:185.919987pt;}
.y35{bottom:191.040000pt;}
.y9d{bottom:194.239987pt;}
.y25{bottom:196.159987pt;}
.y44{bottom:197.119987pt;}
.yce{bottom:201.919987pt;}
.y72{bottom:203.519987pt;}
.y87{bottom:212.799987pt;}
.y24{bottom:214.719987pt;}
.y43{bottom:215.359987pt;}
.ye9{bottom:218.239987pt;}
.y71{bottom:221.759987pt;}
.ycd{bottom:229.439987pt;}
.y23{bottom:232.959987pt;}
.y70{bottom:240.319987pt;}
.y9c{bottom:249.599987pt;}
.ye8{bottom:250.559987pt;}
.y22{bottom:251.519987pt;}
.ycc{bottom:257.279987pt;}
.y6f{bottom:258.559987pt;}
.y86{bottom:267.839987pt;}
.y21{bottom:269.759987pt;}
.y6e{bottom:277.119987pt;}
.ye7{bottom:282.559987pt;}
.ycb{bottom:284.799987pt;}
.y3d{bottom:287.960000pt;}
.y20{bottom:288.319987pt;}
.y6d{bottom:295.359987pt;}
.y9b{bottom:304.639987pt;}
.y1f{bottom:306.559987pt;}
.yca{bottom:312.319987pt;}
.y6c{bottom:313.919987pt;}
.ye6{bottom:314.879987pt;}
.y85{bottom:323.199987pt;}
.y1e{bottom:325.119987pt;}
.y6b{bottom:332.159987pt;}
.yc9{bottom:339.839987pt;}
.y1d{bottom:343.359987pt;}
.ye5{bottom:346.879987pt;}
.y6a{bottom:350.719987pt;}
.y9a{bottom:359.999987pt;}
.y1c{bottom:361.919987pt;}
.yc8{bottom:367.359987pt;}
.y69{bottom:368.959987pt;}
.y84{bottom:378.239987pt;}
.ye4{bottom:379.199987pt;}
.y1b{bottom:380.159987pt;}
.y68{bottom:387.519987pt;}
.yc7{bottom:395.199987pt;}
.y1a{bottom:398.719987pt;}
.y67{bottom:405.759987pt;}
.y102{bottom:407.999987pt;}
.ye3{bottom:411.519987pt;}
.y99{bottom:415.039987pt;}
.y19{bottom:416.959987pt;}
.yc6{bottom:422.719987pt;}
.y66{bottom:424.319987pt;}
.y83{bottom:433.599987pt;}
.y101{bottom:435.519987pt;}
.y18{bottom:435.839987pt;}
.y65{bottom:442.559987pt;}
.ye2{bottom:443.519987pt;}
.yc5{bottom:450.239987pt;}
.y3c{bottom:451.160000pt;}
.y17{bottom:457.279987pt;}
.y64{bottom:461.119987pt;}
.y100{bottom:463.039987pt;}
.y98{bottom:470.079987pt;}
.y3b{bottom:474.239987pt;}
.ye1{bottom:475.839987pt;}
.yc4{bottom:477.759987pt;}
.y16{bottom:478.719987pt;}
.y63{bottom:479.359987pt;}
.y82{bottom:488.639987pt;}
.yff{bottom:490.559987pt;}
.y62{bottom:497.919987pt;}
.y15{bottom:502.079987pt;}
.yc3{bottom:505.599987pt;}
.ye0{bottom:507.839987pt;}
.y61{bottom:516.159987pt;}
.yfe{bottom:518.399987pt;}
.y97{bottom:525.439987pt;}
.y14{bottom:532.799987pt;}
.yc2{bottom:533.119987pt;}
.y60{bottom:534.719987pt;}
.ydf{bottom:540.159987pt;}
.y81{bottom:543.679987pt;}
.yfd{bottom:545.919987pt;}
.y34{bottom:546.840000pt;}
.y5f{bottom:552.959987pt;}
.yc1{bottom:560.639987pt;}
.y13{bottom:563.519987pt;}
.y5e{bottom:571.519987pt;}
.yde{bottom:572.479987pt;}
.yfc{bottom:573.439987pt;}
.y96{bottom:580.479987pt;}
.yc0{bottom:588.159987pt;}
.y5d{bottom:589.759987pt;}
.y12{bottom:594.239987pt;}
.y80{bottom:599.039987pt;}
.yfb{bottom:600.959987pt;}
.ydd{bottom:604.479987pt;}
.ybf{bottom:606.719987pt;}
.y5c{bottom:608.319987pt;}
.y11{bottom:622.399987pt;}
.y5b{bottom:626.559987pt;}
.yfa{bottom:628.799987pt;}
.y95{bottom:635.839987pt;}
.ydc{bottom:636.799987pt;}
.y10{bottom:640.959987pt;}
.y5a{bottom:645.119987pt;}
.y7f{bottom:654.079987pt;}
.yf9{bottom:656.319987pt;}
.yf{bottom:659.199987pt;}
.y59{bottom:663.359987pt;}
.ydb{bottom:666.559987pt;}
.ye{bottom:677.759987pt;}
.y58{bottom:681.919987pt;}
.yf8{bottom:683.839987pt;}
.y94{bottom:690.879987pt;}
.yda{bottom:694.079987pt;}
.yd{bottom:695.999987pt;}
.y57{bottom:700.159987pt;}
.y7e{bottom:709.439987pt;}
.yf7{bottom:711.359987pt;}
.yc{bottom:714.559987pt;}
.y56{bottom:718.719987pt;}
.yd9{bottom:721.919987pt;}
.yb{bottom:732.799987pt;}
.y55{bottom:736.959987pt;}
.yf6{bottom:739.199987pt;}
.y93{bottom:746.239987pt;}
.yd8{bottom:749.439987pt;}
.ya{bottom:751.359987pt;}
.y54{bottom:755.519987pt;}
.y32{bottom:756.440000pt;}
.y7d{bottom:764.479987pt;}
.yf5{bottom:766.719987pt;}
.y9{bottom:769.599987pt;}
.y53{bottom:773.759987pt;}
.yd7{bottom:776.959987pt;}
.y8{bottom:788.159987pt;}
.y52{bottom:792.319987pt;}
.yf4{bottom:794.239987pt;}
.y92{bottom:801.279987pt;}
.yd6{bottom:804.479987pt;}
.y7{bottom:806.399987pt;}
.y51{bottom:810.559987pt;}
.y7c{bottom:819.839987pt;}
.yf3{bottom:821.759987pt;}
.y6{bottom:824.959987pt;}
.y50{bottom:829.119987pt;}
.yd5{bottom:832.319987pt;}
.y31{bottom:839.679987pt;}
.y5{bottom:843.199987pt;}
.y4f{bottom:847.359987pt;}
.yf2{bottom:849.599987pt;}
.y91{bottom:856.639987pt;}
.yd4{bottom:859.839987pt;}
.y4{bottom:861.759987pt;}
.y4e{bottom:865.919987pt;}
.y7b{bottom:874.879987pt;}
.yf1{bottom:877.119987pt;}
.y3{bottom:879.999987pt;}
.y4d{bottom:884.159987pt;}
.yd3{bottom:886.079987pt;}
.y2{bottom:895.039987pt;}
.y30{bottom:902.719987pt;}
.yf0{bottom:904.959987pt;}
.y90{bottom:911.679987pt;}
.y2f{bottom:920.959987pt;}
.yef{bottom:936.959987pt;}
.y2e{bottom:939.519987pt;}
.h9{height:10.880020pt;}
.hf{height:30.324375pt;}
.h10{height:31.836250pt;}
.h19{height:34.978125pt;}
.h11{height:37.063125pt;}
.ha{height:42.559973pt;}
.hc{height:42.560013pt;}
.h16{height:42.656250pt;}
.h15{height:43.343750pt;}
.h13{height:44.437500pt;}
.h3{height:44.718750pt;}
.h12{height:46.048125pt;}
.h18{height:46.068750pt;}
.h17{height:46.611875pt;}
.h1a{height:49.481250pt;}
.h8{height:51.547500pt;}
.h4{height:56.156250pt;}
.h5{height:56.843750pt;}
.h14{height:58.768750pt;}
.h7{height:65.938750pt;}
.he{height:66.503125pt;}
.h6{height:94.360625pt;}
.hd{height:159.680000pt;}
.hb{height:205.760000pt;}
.h2{height:1062.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:8.960001pt;}
.w6{width:17.920000pt;}
.w4{width:489.920000pt;}
.w5{width:503.040000pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:0.959867pt;}
.x1{left:12.000000pt;}
.x3{left:120.319973pt;}
.x5{left:132.960000pt;}
.xb{left:144.320000pt;}
.x9{left:167.519867pt;}
.x6{left:202.974533pt;}
.x8{left:213.033200pt;}
.x17{left:220.397067pt;}
.x16{left:245.276000pt;}
.x14{left:247.486933pt;}
.x11{left:264.182267pt;}
.x1a{left:310.834667pt;}
.x13{left:313.256533pt;}
.x19{left:317.713467pt;}
.x12{left:321.037733pt;}
.x15{left:322.354133pt;}
.x18{left:324.803333pt;}
.xe{left:326.147067pt;}
.xf{left:327.248667pt;}
.x1b{left:329.475200pt;}
.x10{left:333.701867pt;}
.xd{left:338.807333pt;}
.x2{left:360.320000pt;}
.xa{left:396.960000pt;}
.x4{left:401.440000pt;}
.xc{left:430.400000pt;}
}




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