
    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_52ad1225452fca7369141f42.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87993b38ca8ab0d881ccbb05.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_131c2b2eb5a0a98f10324f47.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_cbc17cba5d46181b139ba365.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2fc9a2a22f8333d3405e6e84.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b15df50a7c97e8d17a727d2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2bacb95bd60bd52f84c1c35f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3cc79428fce6fdb2f5b87909.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ccb3fcc39f3d3ce161da162.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_9fc54e4201b11f2da95090da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_429eeb9b1d5f68ea91ae4cfb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_e6f924d2f13b3f214df98829.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.020996;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_fce7ccfe50d2b00e6c23c891.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.091797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249874,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,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);}
.v2{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.065443px;}
.v5{vertical-align:5.714393px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:29.845656px;}
.ls19{letter-spacing:-1.260000px;}
.lse{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.531600px;}
.ls9{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.377400px;}
.ls1c{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.274200px;}
.lsb{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.208200px;}
.ls1b{letter-spacing:-0.188400px;}
.ls15{letter-spacing:-0.152400px;}
.ls7{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.262080px;}
.lsd{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:6.761280px;}
.ls10{letter-spacing:67.265280px;}
.ls1{letter-spacing:493.896000px;}
.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;}
}
.ws1{word-spacing:-24.300000px;}
.ws0{word-spacing:-23.940000px;}
.ws17{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.ws6{word-spacing:-16.297800px;}
.wsa{word-spacing:-16.254600px;}
.ws15{word-spacing:-16.145400px;}
.wsd{word-spacing:-16.102200px;}
.ws16{word-spacing:-15.948000px;}
.wsc{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.146400px;}
.ws3{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.680200px;}
.ws1b{word-spacing:-13.140000px;}
.ws18{word-spacing:-12.780000px;}
.ws1a{word-spacing:-12.591600px;}
.ws19{word-spacing:-12.505800px;}
.ws1d{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.248400px;}
.ws14{word-spacing:-9.811269px;}
.ws12{word-spacing:-8.402471px;}
.wse{word-spacing:-8.385700px;}
.ws13{word-spacing:-0.743560px;}
.ws8{word-spacing:0.000000px;}
.ws11{word-spacing:0.041309px;}
.ws10{word-spacing:0.110157px;}
.wsf{word-spacing:713.569078px;}
._17{margin-left:-5.463360px;}
._e{margin-left:-4.081920px;}
._d{margin-left:-2.537280px;}
._1{margin-left:-1.157760px;}
._2{width:1.627920px;}
._7{width:3.391920px;}
._4{width:4.789440px;}
._3{width:6.120480px;}
._5{width:7.819920px;}
._8{width:9.501840px;}
._f{width:10.803360px;}
._13{width:12.069840px;}
._14{width:13.115520px;}
._c{width:14.215200px;}
._b{width:15.424320px;}
._6{width:16.971840px;}
._a{width:18.928800px;}
._9{width:19.987200px;}
._12{width:22.072800px;}
._11{width:34.187520px;}
._10{width:46.670400px;}
._15{width:72.155938px;}
._16{width:484.647284px;}
._0{width:1477.613760px;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(78,167,46);}
.fc2{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:37.762504px;}
.fsa{font-size:37.853498px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.308866px;}
.fs8{font-size:41.391484px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:48.331373px;}
.fsc{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs9{font-size:61.963299px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9{bottom:5.040000px;}
.y6{bottom:12.240000px;}
.y8{bottom:19.800000px;}
.y93{bottom:64.246548px;}
.y8e{bottom:64.907490px;}
.y91{bottom:65.237961px;}
.y8d{bottom:77.300150px;}
.y90{bottom:77.630620px;}
.y4{bottom:84.996000px;}
.y8c{bottom:89.711743px;}
.y8f{bottom:90.047377px;}
.y5{bottom:92.736000px;}
.yab{bottom:96.301956px;}
.y8a{bottom:102.646581px;}
.y8b{bottom:107.947886px;}
.y89{bottom:113.799975px;}
.y3{bottom:114.156000px;}
.y3a{bottom:160.410000px;}
.ya8{bottom:162.930000px;}
.yfd{bottom:163.110000px;}
.y12f{bottom:166.170000px;}
.yaa{bottom:174.717922px;}
.y87{bottom:177.150000px;}
.y39{bottom:177.690000px;}
.y12e{bottom:180.930000px;}
.ya7{bottom:181.830000px;}
.yfc{bottom:182.010000px;}
.yd1{bottom:183.090000px;}
.y38{bottom:194.970000px;}
.y68{bottom:195.510000px;}
.y86{bottom:196.230000px;}
.y37{bottom:200.190000px;}
.ya6{bottom:200.910000px;}
.yfb{bottom:201.090000px;}
.yd0{bottom:201.990000px;}
.y12d{bottom:210.270000px;}
.y67{bottom:214.590000px;}
.y85{bottom:215.310000px;}
.ya5{bottom:219.810000px;}
.yfa{bottom:219.990000px;}
.ycf{bottom:221.070000px;}
.y36{bottom:221.790000px;}
.y12c{bottom:224.850000px;}
.y168{bottom:228.990000px;}
.y66{bottom:233.490000px;}
.y84{bottom:234.210000px;}
.y92{bottom:236.091431px;}
.ya4{bottom:238.710000px;}
.yf9{bottom:238.890000px;}
.y12b{bottom:239.430000px;}
.yce{bottom:239.970000px;}
.y167{bottom:243.570000px;}
.y65{bottom:252.390000px;}
.y83{bottom:253.290000px;}
.y12a{bottom:254.190000px;}
.ya3{bottom:257.790000px;}
.yf8{bottom:257.970000px;}
.y166{bottom:258.330000px;}
.ycd{bottom:259.050000px;}
.y35{bottom:263.370000px;}
.y129{bottom:268.770000px;}
.y64{bottom:271.470000px;}
.y82{bottom:272.190000px;}
.y165{bottom:272.910000px;}
.ya2{bottom:276.690000px;}
.ycc{bottom:277.950000px;}
.y34{bottom:282.270000px;}
.y128{bottom:283.530000px;}
.yf7{bottom:287.310000px;}
.y164{bottom:287.670000px;}
.y63{bottom:290.370000px;}
.ya1{bottom:295.230000px;}
.ycb{bottom:297.030000px;}
.y127{bottom:298.110000px;}
.y81{bottom:299.910000px;}
.y33{bottom:301.350000px;}
.y163{bottom:302.250000px;}
.y126{bottom:312.870000px;}
.yca{bottom:315.930000px;}
.y162{bottom:316.830000px;}
.y62{bottom:318.270000px;}
.ya0{bottom:318.450000px;}
.y80{bottom:319.170000px;}
.yf6{bottom:319.710000px;}
.y32{bottom:320.250000px;}
.y125{bottom:327.450000px;}
.y161{bottom:331.590000px;}
.yc9{bottom:334.830000px;}
.y9f{bottom:335.730000px;}
.y61{bottom:337.395000px;}
.yf5{bottom:338.835000px;}
.y31{bottom:339.375000px;}
.y124{bottom:342.255000px;}
.y160{bottom:346.215000px;}
.y7f{bottom:346.935000px;}
.yc8{bottom:353.955000px;}
.y60{bottom:356.295000px;}
.y123{bottom:356.835000px;}
.yf4{bottom:357.915000px;}
.y30{bottom:358.275000px;}
.y9e{bottom:358.815000px;}
.ya9{bottom:358.920000px;}
.y15f{bottom:360.975000px;}
.y7e{bottom:366.195000px;}
.y122{bottom:371.595000px;}
.yc7{bottom:372.855000px;}
.y5f{bottom:375.375000px;}
.y15e{bottom:375.555000px;}
.y2f{bottom:377.175000px;}
.y7d{bottom:385.095000px;}
.yf3{bottom:385.635000px;}
.y121{bottom:386.175000px;}
.y15d{bottom:390.315000px;}
.y5e{bottom:394.275000px;}
.y2e{bottom:396.255000px;}
.yc6{bottom:400.755000px;}
.y7c{bottom:403.995000px;}
.yf2{bottom:404.895000px;}
.y5d{bottom:413.355000px;}
.y2d{bottom:415.155000px;}
.y120{bottom:415.515000px;}
.y15c{bottom:419.655000px;}
.yc5{bottom:419.835000px;}
.y7b{bottom:423.075000px;}
.yf1{bottom:423.795000px;}
.y11f{bottom:430.095000px;}
.y2c{bottom:434.235000px;}
.yc4{bottom:438.735000px;}
.y7a{bottom:441.975000px;}
.y5c{bottom:442.515000px;}
.yf0{bottom:442.695000px;}
.y11e{bottom:444.855000px;}
.y15b{bottom:448.815000px;}
.y2b{bottom:453.135000px;}
.yc3{bottom:457.815000px;}
.y11d{bottom:459.435000px;}
.y79{bottom:461.055000px;}
.yef{bottom:461.775000px;}
.y15a{bottom:463.575000px;}
.y2a{bottom:472.035000px;}
.y11c{bottom:474.195000px;}
.y5b{bottom:475.275000px;}
.yc2{bottom:476.715000px;}
.y159{bottom:478.155000px;}
.y78{bottom:479.955000px;}
.yee{bottom:480.675000px;}
.y11b{bottom:488.775000px;}
.y29{bottom:491.115000px;}
.y158{bottom:492.915000px;}
.y5a{bottom:494.175000px;}
.yc1{bottom:495.795000px;}
.y77{bottom:498.855000px;}
.yed{bottom:499.755000px;}
.y11a{bottom:503.535000px;}
.y157{bottom:507.495000px;}
.y28{bottom:510.015000px;}
.y59{bottom:513.255000px;}
.y76{bottom:517.935000px;}
.y119{bottom:518.115000px;}
.yec{bottom:518.655000px;}
.y156{bottom:522.255000px;}
.yc0{bottom:523.515000px;}
.y27{bottom:529.095000px;}
.y58{bottom:532.155000px;}
.y118{bottom:532.695000px;}
.y75{bottom:536.835000px;}
.yeb{bottom:537.735000px;}
.ybf{bottom:542.595000px;}
.y117{bottom:547.455000px;}
.y26{bottom:547.995000px;}
.y57{bottom:551.235000px;}
.y155{bottom:551.595000px;}
.y74{bottom:555.915000px;}
.yea{bottom:556.635000px;}
.ybe{bottom:561.675000px;}
.y116{bottom:562.035000px;}
.y154{bottom:566.175000px;}
.y25{bottom:566.895000px;}
.y56{bottom:570.135000px;}
.y73{bottom:574.815000px;}
.ye9{bottom:575.535000px;}
.y115{bottom:576.795000px;}
.ybd{bottom:580.575000px;}
.y153{bottom:580.935000px;}
.y24{bottom:585.975000px;}
.y55{bottom:589.035000px;}
.y114{bottom:591.375000px;}
.y72{bottom:593.715000px;}
.ye8{bottom:594.615000px;}
.y152{bottom:595.515000px;}
.ybc{bottom:599.655000px;}
.y23{bottom:604.905000px;}
.y113{bottom:606.165000px;}
.y54{bottom:608.145000px;}
.y151{bottom:610.125000px;}
.y71{bottom:612.825000px;}
.ye7{bottom:613.545000px;}
.ybb{bottom:618.585000px;}
.y112{bottom:620.745000px;}
.y22{bottom:623.985000px;}
.y150{bottom:624.885000px;}
.y53{bottom:627.045000px;}
.y70{bottom:631.725000px;}
.ye6{bottom:632.625000px;}
.y111{bottom:635.505000px;}
.yba{bottom:637.485000px;}
.y14f{bottom:639.465000px;}
.y21{bottom:642.885000px;}
.y52{bottom:646.125000px;}
.y110{bottom:650.085000px;}
.y6f{bottom:650.805000px;}
.ye5{bottom:651.525000px;}
.y14e{bottom:654.225000px;}
.yb9{bottom:656.565000px;}
.y20{bottom:661.785000px;}
.y10f{bottom:664.845000px;}
.y51{bottom:665.025000px;}
.y14d{bottom:668.805000px;}
.y6e{bottom:669.705000px;}
.yb8{bottom:675.465000px;}
.ye4{bottom:679.245000px;}
.y10e{bottom:679.425000px;}
.y14c{bottom:683.565000px;}
.y50{bottom:683.925000px;}
.y6d{bottom:688.605000px;}
.y1f{bottom:691.125000px;}
.y10d{bottom:694.005000px;}
.yb7{bottom:694.545000px;}
.y14b{bottom:698.145000px;}
.ye3{bottom:698.505000px;}
.y4f{bottom:703.005000px;}
.y10c{bottom:708.765000px;}
.y14a{bottom:712.905000px;}
.yb6{bottom:713.445000px;}
.ye2{bottom:717.405000px;}
.y6c{bottom:717.945000px;}
.y4e{bottom:721.905000px;}
.y10b{bottom:723.345000px;}
.y1e{bottom:723.885000px;}
.y149{bottom:727.485000px;}
.yb5{bottom:732.525000px;}
.ye1{bottom:736.485000px;}
.y10a{bottom:738.105000px;}
.y4d{bottom:740.985000px;}
.y148{bottom:742.245000px;}
.y1d{bottom:742.785000px;}
.y6b{bottom:750.525000px;}
.yb4{bottom:751.425000px;}
.y109{bottom:752.685000px;}
.ye0{bottom:755.385000px;}
.y147{bottom:756.825000px;}
.y4c{bottom:759.885000px;}
.y1c{bottom:761.325000px;}
.y108{bottom:767.445000px;}
.yb3{bottom:770.325000px;}
.y146{bottom:771.405000px;}
.ydf{bottom:774.285000px;}
.y1b{bottom:778.605000px;}
.y4b{bottom:778.785000px;}
.y107{bottom:782.025000px;}
.y6a{bottom:782.745000px;}
.y145{bottom:786.165000px;}
.yb2{bottom:789.405000px;}
.yde{bottom:793.365000px;}
.y1a{bottom:795.885000px;}
.y106{bottom:796.785000px;}
.y4a{bottom:797.865000px;}
.y144{bottom:800.745000px;}
.y69{bottom:802.725000px;}
.y88{bottom:802.803981px;}
.y105{bottom:811.365000px;}
.ydd{bottom:812.265000px;}
.y19{bottom:812.985000px;}
.y143{bottom:815.505000px;}
.y49{bottom:816.765000px;}
.yb1{bottom:817.125000px;}
.y104{bottom:825.945000px;}
.y142{bottom:830.085000px;}
.y18{bottom:830.265000px;}
.ydc{bottom:831.345000px;}
.yb0{bottom:836.385000px;}
.y103{bottom:840.705000px;}
.y141{bottom:844.845000px;}
.y48{bottom:846.105000px;}
.y17{bottom:847.545000px;}
.ydb{bottom:850.245000px;}
.yaf{bottom:855.285000px;}
.y140{bottom:859.425000px;}
.y16{bottom:864.825000px;}
.y102{bottom:865.005000px;}
.y9d{bottom:874.050000px;}
.yae{bottom:874.230000px;}
.yda{bottom:878.010000px;}
.y47{bottom:878.550000px;}
.y15{bottom:882.150000px;}
.y13f{bottom:888.810000px;}
.y101{bottom:893.130000px;}
.y9c{bottom:893.310000px;}
.yd9{bottom:897.270000px;}
.y14{bottom:899.430000px;}
.y13e{bottom:903.390000px;}
.y46{bottom:911.310000px;}
.y9b{bottom:912.210000px;}
.yd8{bottom:916.170000px;}
.y13{bottom:916.530000px;}
.y13d{bottom:918.150000px;}
.y45{bottom:930.210000px;}
.y9a{bottom:931.290000px;}
.y13c{bottom:932.730000px;}
.yd7{bottom:935.250000px;}
.y13b{bottom:947.490000px;}
.y44{bottom:949.290000px;}
.y99{bottom:950.190000px;}
.y12{bottom:951.450000px;}
.yad{bottom:959.010000px;}
.y13a{bottom:962.070000px;}
.yd6{bottom:964.410000px;}
.y43{bottom:968.190000px;}
.y100{bottom:969.090000px;}
.y11{bottom:970.530000px;}
.y139{bottom:976.830000px;}
.y98{bottom:977.910000px;}
.yac{bottom:986.910000px;}
.y42{bottom:987.090000px;}
.yff{bottom:988.170000px;}
.y10{bottom:989.430000px;}
.y138{bottom:991.410000px;}
.yd5{bottom:996.990000px;}
.y97{bottom:997.170000px;}
.y41{bottom:1006.170000px;}
.ye{bottom:1008.870000px;}
.yf{bottom:1015.710000px;}
.yfe{bottom:1015.890000px;}
.y96{bottom:1016.070000px;}
.y137{bottom:1020.750000px;}
.y40{bottom:1025.070000px;}
.y95{bottom:1035.150000px;}
.y136{bottom:1035.510000px;}
.y3f{bottom:1044.150000px;}
.yd{bottom:1045.770000px;}
.y135{bottom:1050.090000px;}
.yd4{bottom:1054.050000px;}
.y94{bottom:1062.870000px;}
.y3e{bottom:1063.050000px;}
.y134{bottom:1064.670000px;}
.yd3{bottom:1072.950000px;}
.yc{bottom:1073.310000px;}
.y133{bottom:1079.430000px;}
.y3d{bottom:1081.950000px;}
.y132{bottom:1094.010000px;}
.yd2{bottom:1100.850000px;}
.y3c{bottom:1101.030000px;}
.yb{bottom:1106.970000px;}
.y131{bottom:1108.770000px;}
.y3b{bottom:1119.930000px;}
.y130{bottom:1123.350000px;}
.y2{bottom:1155.600000px;}
.ya{bottom:1184.040000px;}
.y7{bottom:1184.220000px;}
.y1{bottom:1198.260000px;}
.h8{height:31.140000px;}
.h1c{height:32.784049px;}
.h1b{height:32.863046px;}
.h15{height:34.914867px;}
.h17{height:34.984697px;}
.h6{height:35.280000px;}
.hf{height:38.158594px;}
.h19{height:40.850394px;}
.h1e{height:45.828281px;}
.hb{height:47.344922px;}
.h2{height:47.980898px;}
.h1d{height:50.171484px;}
.h3{height:50.218594px;}
.h18{height:58.086693px;}
.h13{height:58.621992px;}
.h7{height:58.651172px;}
.h12{height:59.383125px;}
.h4{height:61.423863px;}
.h11{height:64.978594px;}
.hd{height:65.010937px;}
.he{height:66.757500px;}
.h16{height:66.825966px;}
.h10{height:68.084282px;}
.ha{height:70.664062px;}
.h5{height:74.004654px;}
.hc{height:74.704922px;}
.h9{height:96.508125px;}
.h14{height:256.528059px;}
.h1a{height:502.645087px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:25.020000px;}
.w5{width:292.350000px;}
.w4{width:292.530000px;}
.w8{width:590.862136px;}
.w7{width:637.694423px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:9.340520px;}
.x7{left:10.800000px;}
.x4{left:38.700000px;}
.x14{left:64.480757px;}
.x5{left:75.960000px;}
.x19{left:94.725999px;}
.x13{left:115.989359px;}
.x6{left:117.216000px;}
.x12{left:118.982745px;}
.x1{left:127.655987px;}
.xd{left:132.515987px;}
.x1b{left:143.675987px;}
.x1d{left:150.680647px;}
.xe{left:154.649987px;}
.xb{left:159.689987px;}
.x1e{left:170.684920px;}
.xf{left:181.649987px;}
.x8{left:235.109973px;}
.x9{left:241.229987px;}
.xa{left:255.269987px;}
.x11{left:265.709987px;}
.x16{left:272.901272px;}
.x17{left:295.093616px;}
.x15{left:305.931736px;}
.xc{left:343.694987px;}
.x2{left:434.055000px;}
.x3{left:482.145000px;}
.x1c{left:502.484987px;}
.x1a{left:742.469987px;}
.x10{left:765.509987px;}
@media print{
.v2{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.835950pt;}
.v5{vertical-align:5.079461pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:26.529472pt;}
.ls19{letter-spacing:-1.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.472533pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.335467pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.243733pt;}
.lsb{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls1b{letter-spacing:-0.167467pt;}
.ls15{letter-spacing:-0.135467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.232960pt;}
.lsd{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:6.010027pt;}
.ls10{letter-spacing:59.791360pt;}
.ls1{letter-spacing:439.018667pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws17{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.ws6{word-spacing:-14.486933pt;}
.wsa{word-spacing:-14.448533pt;}
.ws15{word-spacing:-14.351467pt;}
.wsd{word-spacing:-14.313067pt;}
.ws16{word-spacing:-14.176000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.463467pt;}
.ws3{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.049067pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws18{word-spacing:-11.360000pt;}
.ws1a{word-spacing:-11.192533pt;}
.ws19{word-spacing:-11.116267pt;}
.ws1d{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.887467pt;}
.ws14{word-spacing:-8.721128pt;}
.ws12{word-spacing:-7.468863pt;}
.wse{word-spacing:-7.453955pt;}
.ws13{word-spacing:-0.660942pt;}
.ws8{word-spacing:0.000000pt;}
.ws11{word-spacing:0.036719pt;}
.ws10{word-spacing:0.097917pt;}
.wsf{word-spacing:634.283625pt;}
._17{margin-left:-4.856320pt;}
._e{margin-left:-3.628373pt;}
._d{margin-left:-2.255360pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.447040pt;}
._7{width:3.015040pt;}
._4{width:4.257280pt;}
._3{width:5.440427pt;}
._5{width:6.951040pt;}
._8{width:8.446080pt;}
._f{width:9.602987pt;}
._13{width:10.728747pt;}
._14{width:11.658240pt;}
._c{width:12.635733pt;}
._b{width:13.710507pt;}
._6{width:15.086080pt;}
._a{width:16.825600pt;}
._9{width:17.766400pt;}
._12{width:19.620267pt;}
._11{width:30.388907pt;}
._10{width:41.484800pt;}
._15{width:64.138612pt;}
._16{width:430.797586pt;}
._0{width:1313.434453pt;}
.fsb{font-size:33.566670pt;}
.fsa{font-size:33.647554pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:36.718992pt;}
.fs8{font-size:36.792430pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:42.961221pt;}
.fsc{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs9{font-size:55.078488pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.480000pt;}
.y6{bottom:10.880000pt;}
.y8{bottom:17.600000pt;}
.y93{bottom:57.108043pt;}
.y8e{bottom:57.695546pt;}
.y91{bottom:57.989298pt;}
.y8d{bottom:68.711244pt;}
.y90{bottom:69.004996pt;}
.y4{bottom:75.552000pt;}
.y8c{bottom:79.743771pt;}
.y8f{bottom:80.042113pt;}
.y5{bottom:82.432000pt;}
.yab{bottom:85.601739pt;}
.y8a{bottom:91.241406pt;}
.y8b{bottom:95.953676pt;}
.y89{bottom:101.155533pt;}
.y3{bottom:101.472000pt;}
.y3a{bottom:142.586667pt;}
.ya8{bottom:144.826667pt;}
.yfd{bottom:144.986667pt;}
.y12f{bottom:147.706667pt;}
.yaa{bottom:155.304820pt;}
.y87{bottom:157.466667pt;}
.y39{bottom:157.946667pt;}
.y12e{bottom:160.826667pt;}
.ya7{bottom:161.626667pt;}
.yfc{bottom:161.786667pt;}
.yd1{bottom:162.746667pt;}
.y38{bottom:173.306667pt;}
.y68{bottom:173.786667pt;}
.y86{bottom:174.426667pt;}
.y37{bottom:177.946667pt;}
.ya6{bottom:178.586667pt;}
.yfb{bottom:178.746667pt;}
.yd0{bottom:179.546667pt;}
.y12d{bottom:186.906667pt;}
.y67{bottom:190.746667pt;}
.y85{bottom:191.386667pt;}
.ya5{bottom:195.386667pt;}
.yfa{bottom:195.546667pt;}
.ycf{bottom:196.506667pt;}
.y36{bottom:197.146667pt;}
.y12c{bottom:199.866667pt;}
.y168{bottom:203.546667pt;}
.y66{bottom:207.546667pt;}
.y84{bottom:208.186667pt;}
.y92{bottom:209.859050pt;}
.ya4{bottom:212.186667pt;}
.yf9{bottom:212.346667pt;}
.y12b{bottom:212.826667pt;}
.yce{bottom:213.306667pt;}
.y167{bottom:216.506667pt;}
.y65{bottom:224.346667pt;}
.y83{bottom:225.146667pt;}
.y12a{bottom:225.946667pt;}
.ya3{bottom:229.146667pt;}
.yf8{bottom:229.306667pt;}
.y166{bottom:229.626667pt;}
.ycd{bottom:230.266667pt;}
.y35{bottom:234.106667pt;}
.y129{bottom:238.906667pt;}
.y64{bottom:241.306667pt;}
.y82{bottom:241.946667pt;}
.y165{bottom:242.586667pt;}
.ya2{bottom:245.946667pt;}
.ycc{bottom:247.066667pt;}
.y34{bottom:250.906667pt;}
.y128{bottom:252.026667pt;}
.yf7{bottom:255.386667pt;}
.y164{bottom:255.706667pt;}
.y63{bottom:258.106667pt;}
.ya1{bottom:262.426667pt;}
.ycb{bottom:264.026667pt;}
.y127{bottom:264.986667pt;}
.y81{bottom:266.586667pt;}
.y33{bottom:267.866667pt;}
.y163{bottom:268.666667pt;}
.y126{bottom:278.106667pt;}
.yca{bottom:280.826667pt;}
.y162{bottom:281.626667pt;}
.y62{bottom:282.906667pt;}
.ya0{bottom:283.066667pt;}
.y80{bottom:283.706667pt;}
.yf6{bottom:284.186667pt;}
.y32{bottom:284.666667pt;}
.y125{bottom:291.066667pt;}
.y161{bottom:294.746667pt;}
.yc9{bottom:297.626667pt;}
.y9f{bottom:298.426667pt;}
.y61{bottom:299.906667pt;}
.yf5{bottom:301.186667pt;}
.y31{bottom:301.666667pt;}
.y124{bottom:304.226667pt;}
.y160{bottom:307.746667pt;}
.y7f{bottom:308.386667pt;}
.yc8{bottom:314.626667pt;}
.y60{bottom:316.706667pt;}
.y123{bottom:317.186667pt;}
.yf4{bottom:318.146667pt;}
.y30{bottom:318.466667pt;}
.y9e{bottom:318.946667pt;}
.ya9{bottom:319.040000pt;}
.y15f{bottom:320.866667pt;}
.y7e{bottom:325.506667pt;}
.y122{bottom:330.306667pt;}
.yc7{bottom:331.426667pt;}
.y5f{bottom:333.666667pt;}
.y15e{bottom:333.826667pt;}
.y2f{bottom:335.266667pt;}
.y7d{bottom:342.306667pt;}
.yf3{bottom:342.786667pt;}
.y121{bottom:343.266667pt;}
.y15d{bottom:346.946667pt;}
.y5e{bottom:350.466667pt;}
.y2e{bottom:352.226667pt;}
.yc6{bottom:356.226667pt;}
.y7c{bottom:359.106667pt;}
.yf2{bottom:359.906667pt;}
.y5d{bottom:367.426667pt;}
.y2d{bottom:369.026667pt;}
.y120{bottom:369.346667pt;}
.y15c{bottom:373.026667pt;}
.yc5{bottom:373.186667pt;}
.y7b{bottom:376.066667pt;}
.yf1{bottom:376.706667pt;}
.y11f{bottom:382.306667pt;}
.y2c{bottom:385.986667pt;}
.yc4{bottom:389.986667pt;}
.y7a{bottom:392.866667pt;}
.y5c{bottom:393.346667pt;}
.yf0{bottom:393.506667pt;}
.y11e{bottom:395.426667pt;}
.y15b{bottom:398.946667pt;}
.y2b{bottom:402.786667pt;}
.yc3{bottom:406.946667pt;}
.y11d{bottom:408.386667pt;}
.y79{bottom:409.826667pt;}
.yef{bottom:410.466667pt;}
.y15a{bottom:412.066667pt;}
.y2a{bottom:419.586667pt;}
.y11c{bottom:421.506667pt;}
.y5b{bottom:422.466667pt;}
.yc2{bottom:423.746667pt;}
.y159{bottom:425.026667pt;}
.y78{bottom:426.626667pt;}
.yee{bottom:427.266667pt;}
.y11b{bottom:434.466667pt;}
.y29{bottom:436.546667pt;}
.y158{bottom:438.146667pt;}
.y5a{bottom:439.266667pt;}
.yc1{bottom:440.706667pt;}
.y77{bottom:443.426667pt;}
.yed{bottom:444.226667pt;}
.y11a{bottom:447.586667pt;}
.y157{bottom:451.106667pt;}
.y28{bottom:453.346667pt;}
.y59{bottom:456.226667pt;}
.y76{bottom:460.386667pt;}
.y119{bottom:460.546667pt;}
.yec{bottom:461.026667pt;}
.y156{bottom:464.226667pt;}
.yc0{bottom:465.346667pt;}
.y27{bottom:470.306667pt;}
.y58{bottom:473.026667pt;}
.y118{bottom:473.506667pt;}
.y75{bottom:477.186667pt;}
.yeb{bottom:477.986667pt;}
.ybf{bottom:482.306667pt;}
.y117{bottom:486.626667pt;}
.y26{bottom:487.106667pt;}
.y57{bottom:489.986667pt;}
.y155{bottom:490.306667pt;}
.y74{bottom:494.146667pt;}
.yea{bottom:494.786667pt;}
.ybe{bottom:499.266667pt;}
.y116{bottom:499.586667pt;}
.y154{bottom:503.266667pt;}
.y25{bottom:503.906667pt;}
.y56{bottom:506.786667pt;}
.y73{bottom:510.946667pt;}
.ye9{bottom:511.586667pt;}
.y115{bottom:512.706667pt;}
.ybd{bottom:516.066667pt;}
.y153{bottom:516.386667pt;}
.y24{bottom:520.866667pt;}
.y55{bottom:523.586667pt;}
.y114{bottom:525.666667pt;}
.y72{bottom:527.746667pt;}
.ye8{bottom:528.546667pt;}
.y152{bottom:529.346667pt;}
.ybc{bottom:533.026667pt;}
.y23{bottom:537.693333pt;}
.y113{bottom:538.813333pt;}
.y54{bottom:540.573333pt;}
.y151{bottom:542.333333pt;}
.y71{bottom:544.733333pt;}
.ye7{bottom:545.373333pt;}
.ybb{bottom:549.853333pt;}
.y112{bottom:551.773333pt;}
.y22{bottom:554.653333pt;}
.y150{bottom:555.453333pt;}
.y53{bottom:557.373333pt;}
.y70{bottom:561.533333pt;}
.ye6{bottom:562.333333pt;}
.y111{bottom:564.893333pt;}
.yba{bottom:566.653333pt;}
.y14f{bottom:568.413333pt;}
.y21{bottom:571.453333pt;}
.y52{bottom:574.333333pt;}
.y110{bottom:577.853333pt;}
.y6f{bottom:578.493333pt;}
.ye5{bottom:579.133333pt;}
.y14e{bottom:581.533333pt;}
.yb9{bottom:583.613333pt;}
.y20{bottom:588.253333pt;}
.y10f{bottom:590.973333pt;}
.y51{bottom:591.133333pt;}
.y14d{bottom:594.493333pt;}
.y6e{bottom:595.293333pt;}
.yb8{bottom:600.413333pt;}
.ye4{bottom:603.773333pt;}
.y10e{bottom:603.933333pt;}
.y14c{bottom:607.613333pt;}
.y50{bottom:607.933333pt;}
.y6d{bottom:612.093333pt;}
.y1f{bottom:614.333333pt;}
.y10d{bottom:616.893333pt;}
.yb7{bottom:617.373333pt;}
.y14b{bottom:620.573333pt;}
.ye3{bottom:620.893333pt;}
.y4f{bottom:624.893333pt;}
.y10c{bottom:630.013333pt;}
.y14a{bottom:633.693333pt;}
.yb6{bottom:634.173333pt;}
.ye2{bottom:637.693333pt;}
.y6c{bottom:638.173333pt;}
.y4e{bottom:641.693333pt;}
.y10b{bottom:642.973333pt;}
.y1e{bottom:643.453333pt;}
.y149{bottom:646.653333pt;}
.yb5{bottom:651.133333pt;}
.ye1{bottom:654.653333pt;}
.y10a{bottom:656.093333pt;}
.y4d{bottom:658.653333pt;}
.y148{bottom:659.773333pt;}
.y1d{bottom:660.253333pt;}
.y6b{bottom:667.133333pt;}
.yb4{bottom:667.933333pt;}
.y109{bottom:669.053333pt;}
.ye0{bottom:671.453333pt;}
.y147{bottom:672.733333pt;}
.y4c{bottom:675.453333pt;}
.y1c{bottom:676.733333pt;}
.y108{bottom:682.173333pt;}
.yb3{bottom:684.733333pt;}
.y146{bottom:685.693333pt;}
.ydf{bottom:688.253333pt;}
.y1b{bottom:692.093333pt;}
.y4b{bottom:692.253333pt;}
.y107{bottom:695.133333pt;}
.y6a{bottom:695.773333pt;}
.y145{bottom:698.813333pt;}
.yb2{bottom:701.693333pt;}
.yde{bottom:705.213333pt;}
.y1a{bottom:707.453333pt;}
.y106{bottom:708.253333pt;}
.y4a{bottom:709.213333pt;}
.y144{bottom:711.773333pt;}
.y69{bottom:713.533333pt;}
.y88{bottom:713.603539pt;}
.y105{bottom:721.213333pt;}
.ydd{bottom:722.013333pt;}
.y19{bottom:722.653333pt;}
.y143{bottom:724.893333pt;}
.y49{bottom:726.013333pt;}
.yb1{bottom:726.333333pt;}
.y104{bottom:734.173333pt;}
.y142{bottom:737.853333pt;}
.y18{bottom:738.013333pt;}
.ydc{bottom:738.973333pt;}
.yb0{bottom:743.453333pt;}
.y103{bottom:747.293333pt;}
.y141{bottom:750.973333pt;}
.y48{bottom:752.093333pt;}
.y17{bottom:753.373333pt;}
.ydb{bottom:755.773333pt;}
.yaf{bottom:760.253333pt;}
.y140{bottom:763.933333pt;}
.y16{bottom:768.733333pt;}
.y102{bottom:768.893333pt;}
.y9d{bottom:776.933333pt;}
.yae{bottom:777.093333pt;}
.yda{bottom:780.453333pt;}
.y47{bottom:780.933333pt;}
.y15{bottom:784.133333pt;}
.y13f{bottom:790.053333pt;}
.y101{bottom:793.893333pt;}
.y9c{bottom:794.053333pt;}
.yd9{bottom:797.573333pt;}
.y14{bottom:799.493333pt;}
.y13e{bottom:803.013333pt;}
.y46{bottom:810.053333pt;}
.y9b{bottom:810.853333pt;}
.yd8{bottom:814.373333pt;}
.y13{bottom:814.693333pt;}
.y13d{bottom:816.133333pt;}
.y45{bottom:826.853333pt;}
.y9a{bottom:827.813333pt;}
.y13c{bottom:829.093333pt;}
.yd7{bottom:831.333333pt;}
.y13b{bottom:842.213333pt;}
.y44{bottom:843.813333pt;}
.y99{bottom:844.613333pt;}
.y12{bottom:845.733333pt;}
.yad{bottom:852.453333pt;}
.y13a{bottom:855.173333pt;}
.yd6{bottom:857.253333pt;}
.y43{bottom:860.613333pt;}
.y100{bottom:861.413333pt;}
.y11{bottom:862.693333pt;}
.y139{bottom:868.293333pt;}
.y98{bottom:869.253333pt;}
.yac{bottom:877.253333pt;}
.y42{bottom:877.413333pt;}
.yff{bottom:878.373333pt;}
.y10{bottom:879.493333pt;}
.y138{bottom:881.253333pt;}
.yd5{bottom:886.213333pt;}
.y97{bottom:886.373333pt;}
.y41{bottom:894.373333pt;}
.ye{bottom:896.773333pt;}
.yf{bottom:902.853333pt;}
.yfe{bottom:903.013333pt;}
.y96{bottom:903.173333pt;}
.y137{bottom:907.333333pt;}
.y40{bottom:911.173333pt;}
.y95{bottom:920.133333pt;}
.y136{bottom:920.453333pt;}
.y3f{bottom:928.133333pt;}
.yd{bottom:929.573333pt;}
.y135{bottom:933.413333pt;}
.yd4{bottom:936.933333pt;}
.y94{bottom:944.773333pt;}
.y3e{bottom:944.933333pt;}
.y134{bottom:946.373333pt;}
.yd3{bottom:953.733333pt;}
.yc{bottom:954.053333pt;}
.y133{bottom:959.493333pt;}
.y3d{bottom:961.733333pt;}
.y132{bottom:972.453333pt;}
.yd2{bottom:978.533333pt;}
.y3c{bottom:978.693333pt;}
.yb{bottom:983.973333pt;}
.y131{bottom:985.573333pt;}
.y3b{bottom:995.493333pt;}
.y130{bottom:998.533333pt;}
.y2{bottom:1027.200000pt;}
.ya{bottom:1052.480000pt;}
.y7{bottom:1052.640000pt;}
.y1{bottom:1065.120000pt;}
.h8{height:27.680000pt;}
.h1c{height:29.141377pt;}
.h1b{height:29.211597pt;}
.h15{height:31.035437pt;}
.h17{height:31.097508pt;}
.h6{height:31.360000pt;}
.hf{height:33.918750pt;}
.h19{height:36.311462pt;}
.h1e{height:40.736250pt;}
.hb{height:42.084375pt;}
.h2{height:42.649687pt;}
.h1d{height:44.596875pt;}
.h3{height:44.638750pt;}
.h18{height:51.632616pt;}
.h13{height:52.108438pt;}
.h7{height:52.134375pt;}
.h12{height:52.785000pt;}
.h4{height:54.598989pt;}
.h11{height:57.758750pt;}
.hd{height:57.787500pt;}
.he{height:59.340000pt;}
.h16{height:59.400859pt;}
.h10{height:60.519362pt;}
.ha{height:62.812500pt;}
.h5{height:65.781915pt;}
.hc{height:66.404375pt;}
.h9{height:85.785000pt;}
.h14{height:228.024941pt;}
.h1a{height:446.795633pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:22.240000pt;}
.w5{width:259.866667pt;}
.w4{width:260.026667pt;}
.w8{width:525.210787pt;}
.w7{width:566.839487pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:8.302684pt;}
.x7{left:9.600000pt;}
.x4{left:34.400000pt;}
.x14{left:57.316229pt;}
.x5{left:67.520000pt;}
.x19{left:84.200888pt;}
.x13{left:103.101653pt;}
.x6{left:104.192000pt;}
.x12{left:105.762440pt;}
.x1{left:113.471988pt;}
.xd{left:117.791988pt;}
.x1b{left:127.711988pt;}
.x1d{left:133.938353pt;}
.xe{left:137.466655pt;}
.xb{left:141.946655pt;}
.x1e{left:151.719929pt;}
.xf{left:161.466655pt;}
.x8{left:208.986643pt;}
.x9{left:214.426655pt;}
.xa{left:226.906655pt;}
.x11{left:236.186655pt;}
.x16{left:242.578908pt;}
.x17{left:262.305436pt;}
.x15{left:271.939321pt;}
.xc{left:305.506655pt;}
.x2{left:385.826667pt;}
.x3{left:428.573333pt;}
.x1c{left:446.653322pt;}
.x1a{left:659.973322pt;}
.x10{left:680.453322pt;}
}




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