
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6184d21fc4754546b4e6c9c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_4ae4d85644715a139b001697.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d8ff1777fadec2f0faa18d0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_bd6405db2a947c9194e48266.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_063c24b0f0fab1f9298b4856.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_db6adba5e885407e8995df5c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ec607fbb69e37b2e8c79431a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_d8de539e7fa9d44c52afa4ca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f063c3320b4fbb86d183df8a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b974c4cb5094dc693c367e70.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17b3b54e0b405600f0c26226.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.m2{transform:matrix(0.262562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262562,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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls11{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.095400px;}
.ls12{letter-spacing:0.124115px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.ls16{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:17.496117px;}
.ls18{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wsa{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-4.312680px;}
._11{margin-left:-3.246480px;}
._6{margin-left:-2.164200px;}
._0{margin-left:-1.110000px;}
._4{width:1.089480px;}
._3{width:2.152848px;}
._5{width:3.847800px;}
._7{width:5.290800px;}
._17{width:6.305160px;}
._8{width:7.334400px;}
._9{width:8.394963px;}
._19{width:9.400187px;}
._e{width:10.401000px;}
._15{width:12.069600px;}
._d{width:14.376598px;}
._c{width:15.478800px;}
._16{width:17.406840px;}
._f{width:18.757200px;}
._10{width:20.141402px;}
._14{width:21.731160px;}
._13{width:23.086080px;}
._a{width:25.130400px;}
._b{width:26.512199px;}
._18{width:29.647604px;}
._2{width:30.850584px;}
._1{width:31.891488px;}
._1d{width:47.254320px;}
._1e{width:48.424200px;}
._1c{width:54.375591px;}
._20{width:69.133560px;}
._1f{width:70.280280px;}
._1a{width:80.139600px;}
._1b{width:154.567850px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:46.198463px;}
.fs8{font-size:51.852604px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:57.368838px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.yc5{bottom:-19.513377px;}
.ybe{bottom:-12.101223px;}
.y0{bottom:0.000000px;}
.ybd{bottom:1.206405px;}
.yc4{bottom:2.930515px;}
.ye2{bottom:7.830000px;}
.ye0{bottom:7.920000px;}
.ybc{bottom:15.169370px;}
.yc3{bottom:22.788959px;}
.ybb{bottom:28.477289px;}
.yf3{bottom:35.220000px;}
.yba{bottom:42.474734px;}
.yc2{bottom:42.647403px;}
.yb9{bottom:56.610085px;}
.yc1{bottom:62.471370px;}
.yb8{bottom:70.607529px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yc0{bottom:75.779286px;}
.yb7{bottom:83.880969px;}
.yb6{bottom:97.016502px;}
.y1{bottom:101.640000px;}
.yef{bottom:111.810000px;}
.y60{bottom:117.840000px;}
.ya2{bottom:120.360000px;}
.yb4{bottom:120.839804px;}
.y15b{bottom:123.240000px;}
.y8e{bottom:125.040000px;}
.y11c{bottom:127.290000px;}
.yee{bottom:129.360000px;}
.y1a7{bottom:134.130000px;}
.y5f{bottom:135.390000px;}
.ya1{bottom:138.000000px;}
.y29{bottom:142.500000px;}
.y8d{bottom:142.680000px;}
.y11b{bottom:144.930000px;}
.y139{bottom:145.560000px;}
.yed{bottom:147.000000px;}
.y1a6{bottom:151.680000px;}
.y5e{bottom:152.940000px;}
.y15a{bottom:158.790000px;}
.y28{bottom:160.050000px;}
.y8c{bottom:160.230000px;}
.y11a{bottom:162.480000px;}
.y138{bottom:163.110000px;}
.ya0{bottom:164.550000px;}
.y187{bottom:165.990000px;}
.y1a5{bottom:169.320000px;}
.y5d{bottom:170.580000px;}
.y159{bottom:176.340000px;}
.y27{bottom:177.600000px;}
.y8b{bottom:177.780000px;}
.yec{bottom:179.940000px;}
.y119{bottom:180.030000px;}
.y137{bottom:180.750000px;}
.y186{bottom:183.630000px;}
.y5c{bottom:188.130000px;}
.yb2{bottom:188.940000px;}
.y158{bottom:193.980000px;}
.y26{bottom:195.240000px;}
.y1a4{bottom:195.870000px;}
.y9f{bottom:197.130000px;}
.y118{bottom:197.670000px;}
.y136{bottom:198.300000px;}
.y185{bottom:201.180000px;}
.y8a{bottom:204.420000px;}
.y5b{bottom:205.680000px;}
.yb1{bottom:206.490000px;}
.yeb{bottom:207.300000px;}
.y157{bottom:211.530000px;}
.y25{bottom:212.790000px;}
.y1a3{bottom:213.510000px;}
.y117{bottom:215.220000px;}
.y135{bottom:215.850000px;}
.yb0{bottom:224.040000px;}
.y184{bottom:227.820000px;}
.y24{bottom:230.340000px;}
.y1a2{bottom:231.060000px;}
.y5a{bottom:232.320000px;}
.y9e{bottom:232.680000px;}
.yea{bottom:234.660000px;}
.y156{bottom:238.440000px;}
.y89{bottom:239.970000px;}
.yaf{bottom:241.680000px;}
.y183{bottom:245.370000px;}
.y23{bottom:247.980000px;}
.y9d{bottom:250.320000px;}
.y116{bottom:250.860000px;}
.y134{bottom:251.490000px;}
.y88{bottom:257.610000px;}
.yae{bottom:259.230000px;}
.ye9{bottom:261.930000px;}
.y22{bottom:265.530000px;}
.y59{bottom:267.870000px;}
.y115{bottom:268.410000px;}
.y133{bottom:269.040000px;}
.y182{bottom:271.920000px;}
.y87{bottom:275.160000px;}
.y1a1{bottom:275.250000px;}
.y155{bottom:275.790000px;}
.y58{bottom:285.510000px;}
.yad{bottom:285.870000px;}
.y114{bottom:285.960000px;}
.y132{bottom:286.680000px;}
.y181{bottom:289.560000px;}
.y21{bottom:292.440000px;}
.y86{bottom:292.710000px;}
.y1a0{bottom:292.800000px;}
.y57{bottom:303.060000px;}
.y113{bottom:303.600000px;}
.y131{bottom:304.230000px;}
.y180{bottom:307.110000px;}
.y85{bottom:310.350000px;}
.ye8{bottom:310.620000px;}
.y19f{bottom:319.440000px;}
.y56{bottom:320.610000px;}
.y112{bottom:321.150000px;}
.yac{bottom:321.420000px;}
.y130{bottom:321.780000px;}
.y154{bottom:324.030000px;}
.y84{bottom:327.900000px;}
.y17f{bottom:333.750000px;}
.y19e{bottom:336.990000px;}
.ye7{bottom:337.260000px;}
.y55{bottom:338.250000px;}
.y111{bottom:338.790000px;}
.yab{bottom:338.970000px;}
.y12f{bottom:339.420000px;}
.y20{bottom:341.040000px;}
.y153{bottom:341.670000px;}
.y83{bottom:345.540000px;}
.y17e{bottom:351.300000px;}
.y54{bottom:355.800000px;}
.y110{bottom:356.340000px;}
.yaa{bottom:356.610000px;}
.y152{bottom:359.220000px;}
.y82{bottom:363.090000px;}
.y19d{bottom:363.540000px;}
.ye6{bottom:372.810000px;}
.y53{bottom:373.440000px;}
.y10f{bottom:373.890000px;}
.ya9{bottom:374.160000px;}
.y12e{bottom:374.970000px;}
.y17d{bottom:377.850000px;}
.y1f{bottom:378.120000px;}
.y81{bottom:380.640000px;}
.y19c{bottom:381.180000px;}
.ye5{bottom:390.450000px;}
.y52{bottom:390.990000px;}
.y12d{bottom:392.610000px;}
.y151{bottom:394.860000px;}
.y17c{bottom:395.490000px;}
.y1e{bottom:395.670000px;}
.y80{bottom:398.280000px;}
.y1bd{bottom:398.370000px;}
.ya8{bottom:400.710000px;}
.y19b{bottom:407.730000px;}
.ye4{bottom:408.000000px;}
.y9c{bottom:408.540000px;}
.y10e{bottom:409.530000px;}
.y150{bottom:412.410000px;}
.y1d{bottom:413.220000px;}
.y7f{bottom:415.830000px;}
.y1bc{bottom:415.920000px;}
.y51{bottom:417.540000px;}
.y12c{bottom:419.430000px;}
.y17b{bottom:422.040000px;}
.y19a{bottom:425.370000px;}
.ye3{bottom:425.550000px;}
.y9b{bottom:426.180000px;}
.y10d{bottom:427.080000px;}
.y14f{bottom:429.960000px;}
.y1c{bottom:430.860000px;}
.ya7{bottom:433.380000px;}
.y17a{bottom:439.590000px;}
.y7e{bottom:442.470000px;}
.y9a{bottom:443.730000px;}
.y10c{bottom:444.720000px;}
.y1b{bottom:448.410000px;}
.y199{bottom:451.920000px;}
.y50{bottom:453.180000px;}
.y12b{bottom:456.780000px;}
.y179{bottom:457.230000px;}
.ye1{bottom:458.580000px;}
.y1bb{bottom:460.110000px;}
.y99{bottom:461.370000px;}
.y10b{bottom:462.270000px;}
.y14e{bottom:465.600000px;}
.y1a{bottom:466.050000px;}
.ya6{bottom:469.290000px;}
.y198{bottom:469.470000px;}
.y4f{bottom:470.760000px;}
.y7d{bottom:478.320000px;}
.y10a{bottom:479.850000px;}
.y14d{bottom:483.180000px;}
.y19{bottom:483.630000px;}
.y178{bottom:483.810000px;}
.ydf{bottom:485.880000px;}
.y1ba{bottom:486.690000px;}
.y197{bottom:487.140000px;}
.y98{bottom:487.950000px;}
.y4e{bottom:488.400000px;}
.y109{bottom:497.490000px;}
.y14c{bottom:500.730000px;}
.y18{bottom:501.180000px;}
.y177{bottom:501.450000px;}
.y1b9{bottom:504.330000px;}
.y12a{bottom:505.140000px;}
.y4d{bottom:505.950000px;}
.y196{bottom:513.690000px;}
.y108{bottom:515.040000px;}
.ya5{bottom:517.560000px;}
.y14b{bottom:518.370000px;}
.y17{bottom:518.820000px;}
.y129{bottom:522.690000px;}
.y4c{bottom:523.500000px;}
.y7c{bottom:526.650000px;}
.y176{bottom:528.000000px;}
.y1b8{bottom:530.880000px;}
.y195{bottom:531.330000px;}
.y107{bottom:532.590000px;}
.yde{bottom:534.660000px;}
.y16{bottom:536.370000px;}
.y128{bottom:540.330000px;}
.y4b{bottom:541.140000px;}
.y7b{bottom:544.200000px;}
.y14a{bottom:545.280000px;}
.y175{bottom:545.550000px;}
.y1b7{bottom:548.430000px;}
.y194{bottom:548.880000px;}
.ya4{bottom:549.780000px;}
.y106{bottom:550.230000px;}
.yb3{bottom:552.248688px;}
.y15{bottom:553.920000px;}
.y127{bottom:557.880000px;}
.y4a{bottom:558.690000px;}
.ydd{bottom:561.210000px;}
.y7a{bottom:562.650000px;}
.yb5{bottom:566.246179px;}
.y193{bottom:566.430000px;}
.ybf{bottom:569.521177px;}
.y14{bottom:571.560000px;}
.y174{bottom:572.190000px;}
.y1b6{bottom:575.070000px;}
.y126{bottom:575.430000px;}
.y49{bottom:576.330000px;}
.y79{bottom:580.200000px;}
.y149{bottom:582.270000px;}
.y105{bottom:585.780000px;}
.y13{bottom:589.110000px;}
.y173{bottom:589.740000px;}
.y125{bottom:593.070000px;}
.y97{bottom:593.880000px;}
.ydc{bottom:597.120000px;}
.y78{bottom:598.650000px;}
.y148{bottom:599.910000px;}
.y1b5{bottom:601.620000px;}
.y48{bottom:602.880000px;}
.y104{bottom:603.420000px;}
.y12{bottom:606.750000px;}
.y172{bottom:607.380000px;}
.y192{bottom:610.620000px;}
.y96{bottom:611.430000px;}
.y77{bottom:616.200000px;}
.y147{bottom:617.460000px;}
.y1b4{bottom:619.260000px;}
.y103{bottom:620.970000px;}
.y11{bottom:624.300000px;}
.y124{bottom:628.620000px;}
.y95{bottom:629.070000px;}
.y171{bottom:633.930000px;}
.y76{bottom:634.650000px;}
.y1b3{bottom:636.810000px;}
.y191{bottom:637.260000px;}
.y47{bottom:638.430000px;}
.y102{bottom:638.520000px;}
.y10{bottom:641.850000px;}
.ydb{bottom:645.360000px;}
.y123{bottom:646.260000px;}
.y94{bottom:646.620000px;}
.y170{bottom:651.480000px;}
.y75{bottom:652.200000px;}
.y146{bottom:653.010000px;}
.y190{bottom:654.810000px;}
.y46{bottom:656.070000px;}
.y101{bottom:656.160000px;}
.yf{bottom:659.490000px;}
.yda{bottom:663.000000px;}
.y1b2{bottom:663.360000px;}
.y122{bottom:663.810000px;}
.y93{bottom:664.260000px;}
.y145{bottom:670.650000px;}
.y45{bottom:673.620000px;}
.y100{bottom:673.710000px;}
.ye{bottom:677.040000px;}
.y16f{bottom:678.390000px;}
.y74{bottom:679.920000px;}
.y1b1{bottom:681.000000px;}
.y121{bottom:681.360000px;}
.y92{bottom:681.810000px;}
.y144{bottom:688.200000px;}
.y44{bottom:691.260000px;}
.yff{bottom:691.350000px;}
.yd{bottom:694.680000px;}
.yd9{bottom:698.550000px;}
.y120{bottom:699.000000px;}
.y91{bottom:699.360000px;}
.y143{bottom:705.840000px;}
.y1b0{bottom:707.550000px;}
.ya3{bottom:708.360000px;}
.y43{bottom:708.810000px;}
.yfe{bottom:708.900000px;}
.yc{bottom:712.230000px;}
.yd8{bottom:716.190000px;}
.y11f{bottom:716.550000px;}
.y73{bottom:717.000000px;}
.y142{bottom:723.390000px;}
.y1af{bottom:725.190000px;}
.y90{bottom:726.000000px;}
.y42{bottom:726.360000px;}
.yfd{bottom:726.450000px;}
.y16e{bottom:726.720000px;}
.yd7{bottom:733.740000px;}
.y72{bottom:734.550000px;}
.yb{bottom:739.140000px;}
.y18f{bottom:743.190000px;}
.y41{bottom:744.000000px;}
.y16d{bottom:744.270000px;}
.yd6{bottom:751.290000px;}
.y1ae{bottom:751.740000px;}
.y71{bottom:752.190000px;}
.y141{bottom:758.940000px;}
.y18e{bottom:760.740000px;}
.y40{bottom:761.550000px;}
.y16c{bottom:761.910000px;}
.yfc{bottom:762.090000px;}
.yd5{bottom:768.930000px;}
.y1ad{bottom:769.290000px;}
.y70{bottom:769.740000px;}
.y140{bottom:776.580000px;}
.y3f{bottom:779.190000px;}
.y16b{bottom:779.460000px;}
.yfb{bottom:779.640000px;}
.yd4{bottom:786.480000px;}
.y6f{bottom:787.290000px;}
.ya{bottom:787.380000px;}
.y13f{bottom:794.130000px;}
.y1ac{bottom:795.930000px;}
.y3e{bottom:796.740000px;}
.yfa{bottom:797.280000px;}
.y11e{bottom:804.930000px;}
.y16a{bottom:806.370000px;}
.y13e{bottom:811.770000px;}
.yd3{bottom:813.030000px;}
.y3d{bottom:814.290000px;}
.yf9{bottom:814.830000px;}
.y11d{bottom:822.480000px;}
.y6e{bottom:822.930000px;}
.y9{bottom:823.200000px;}
.y13d{bottom:829.320000px;}
.y18d{bottom:831.480000px;}
.y3c{bottom:831.930000px;}
.y1ab{bottom:840.030000px;}
.y6d{bottom:840.480000px;}
.y169{bottom:843.360000px;}
.yf8{bottom:847.770000px;}
.yd2{bottom:848.670000px;}
.y18c{bottom:849.030000px;}
.y3b{bottom:849.480000px;}
.y6c{bottom:858.030000px;}
.y8{bottom:859.200000px;}
.y168{bottom:861.000000px;}
.y13c{bottom:864.870000px;}
.yd1{bottom:866.220000px;}
.y18b{bottom:866.670000px;}
.y3a{bottom:867.030000px;}
.yf7{bottom:875.130000px;}
.y6b{bottom:875.670000px;}
.y167{bottom:878.550000px;}
.y1aa{bottom:884.220000px;}
.y39{bottom:884.670000px;}
.y13b{bottom:891.780000px;}
.yd0{bottom:892.860000px;}
.y6a{bottom:893.220000px;}
.y7{bottom:895.200000px;}
.y166{bottom:896.100000px;}
.y38{bottom:902.220000px;}
.yf6{bottom:902.490000px;}
.y69{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y165{bottom:913.740000px;}
.y37{bottom:919.860000px;}
.ycf{bottom:928.410000px;}
.y13a{bottom:928.860000px;}
.yf5{bottom:929.850000px;}
.y8f{bottom:937.410000px;}
.y164{bottom:940.650000px;}
.yce{bottom:945.960000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y18a{bottom:954.960000px;}
.yf4{bottom:957.120000px;}
.ycd{bottom:963.600000px;}
.y68{bottom:963.960000px;}
.y1a9{bottom:972.600000px;}
.y163{bottom:977.640000px;}
.ycc{bottom:981.150000px;}
.y67{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.yf2{bottom:984.480000px;}
.y4{bottom:987.630000px;}
.y1a8{bottom:990.150000px;}
.y162{bottom:995.280000px;}
.ycb{bottom:998.790000px;}
.y66{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.yf1{bottom:1011.870000px;}
.y3{bottom:1012.320000px;}
.y161{bottom:1012.860000px;}
.yca{bottom:1016.370000px;}
.y65{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y64{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y160{bottom:1039.770000px;}
.yc9{bottom:1042.920000px;}
.y189{bottom:1043.370000px;}
.y63{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.yf0{bottom:1060.560000px;}
.y188{bottom:1060.920000px;}
.y62{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y15f{bottom:1076.760000px;}
.yc8{bottom:1078.560000px;}
.y61{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y15e{bottom:1094.400000px;}
.yc7{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y15d{bottom:1111.950000px;}
.yc6{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y15c{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h18{height:26.550000px;}
.h17{height:26.580000px;}
.h16{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h13{height:45.341265px;}
.h11{height:46.559389px;}
.h12{height:47.484740px;}
.hf{height:50.865176px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h19{height:53.940000px;}
.h8{height:55.779258px;}
.h15{height:56.304377px;}
.h5{height:57.323320px;}
.hd{height:60.589687px;}
.h9{height:60.960938px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h14{height:86.639373px;}
.h10{height:107.876877px;}
.he{height:141.560163px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.we{width:40.410000px;}
.w7{width:51.750000px;}
.w15{width:54.810000px;}
.w6{width:58.230000px;}
.wb{width:58.320000px;}
.w11{width:59.130000px;}
.w10{width:60.120000px;}
.w8{width:78.930000px;}
.w16{width:83.520000px;}
.wc{width:86.490000px;}
.wf{width:104.160000px;}
.wd{width:120.870000px;}
.w17{width:125.550000px;}
.w9{width:147.000000px;}
.w5{width:150.484061px;}
.w4{width:157.900845px;}
.wa{width:162.900000px;}
.w12{width:183.810000px;}
.w14{width:191.460000px;}
.w13{width:209.880000px;}
.w3{width:375.750000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xb{left:10.862661px;}
.x9{left:35.303648px;}
.xc{left:38.019313px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x1b{left:99.270000px;}
.x21{left:111.239987px;}
.x5{left:122.039987px;}
.x14{left:179.670000px;}
.xe{left:195.690000px;}
.x2{left:202.799987px;}
.x15{left:238.710000px;}
.x10{left:254.730000px;}
.x8{left:258.720000px;}
.xd{left:264.694463px;}
.x1c{left:283.800000px;}
.x11{left:307.200000px;}
.x16{left:325.920000px;}
.x7{left:341.489987px;}
.x20{left:368.130000px;}
.x12{left:386.850000px;}
.x17{left:447.510000px;}
.xa{left:456.495862px;}
.x18{left:488.730000px;}
.x1d{left:494.400000px;}
.x13{left:534.660000px;}
.x19{left:593.610000px;}
.x6{left:636.809987px;}
.x1a{left:654.450000px;}
.x1e{left:686.670000px;}
.x1f{left:739.140000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls11{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.084800pt;}
.ls12{letter-spacing:0.110325pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.ls16{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:15.552104pt;}
.ls18{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wsa{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-3.833494pt;}
._11{margin-left:-2.885760pt;}
._6{margin-left:-1.923733pt;}
._0{margin-left:-0.986667pt;}
._4{width:0.968427pt;}
._3{width:1.913642pt;}
._5{width:3.420267pt;}
._7{width:4.702934pt;}
._17{width:5.604586pt;}
._8{width:6.519466pt;}
._9{width:7.462189pt;}
._19{width:8.355722pt;}
._e{width:9.245334pt;}
._15{width:10.728533pt;}
._d{width:12.779198pt;}
._c{width:13.758934pt;}
._16{width:15.472746pt;}
._f{width:16.673066pt;}
._10{width:17.903469pt;}
._14{width:19.316587pt;}
._13{width:20.520960pt;}
._a{width:22.338134pt;}
._b{width:23.566399pt;}
._18{width:26.353425pt;}
._2{width:27.422742pt;}
._1{width:28.347989pt;}
._1d{width:42.003840pt;}
._1e{width:43.043733pt;}
._1c{width:48.333859pt;}
._20{width:61.452053pt;}
._1f{width:62.471360pt;}
._1a{width:71.235200pt;}
._1b{width:137.393645pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:41.065301pt;}
.fs8{font-size:46.091203pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:50.994523pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.yc5{bottom:-17.345224pt;}
.ybe{bottom:-10.756643pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:1.072360pt;}
.yc4{bottom:2.604902pt;}
.ye2{bottom:6.960000pt;}
.ye0{bottom:7.040000pt;}
.ybc{bottom:13.483885pt;}
.yc3{bottom:20.256852pt;}
.ybb{bottom:25.313146pt;}
.yf3{bottom:31.306667pt;}
.yba{bottom:37.755319pt;}
.yc2{bottom:37.908802pt;}
.yb9{bottom:50.320075pt;}
.yc1{bottom:55.530107pt;}
.yb8{bottom:62.762248pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yc0{bottom:67.359365pt;}
.yb7{bottom:74.560861pt;}
.yb6{bottom:86.236891pt;}
.y1{bottom:90.346667pt;}
.yef{bottom:99.386667pt;}
.y60{bottom:104.746667pt;}
.ya2{bottom:106.986667pt;}
.yb4{bottom:107.413159pt;}
.y15b{bottom:109.546667pt;}
.y8e{bottom:111.146667pt;}
.y11c{bottom:113.146667pt;}
.yee{bottom:114.986667pt;}
.y1a7{bottom:119.226667pt;}
.y5f{bottom:120.346667pt;}
.ya1{bottom:122.666667pt;}
.y29{bottom:126.666667pt;}
.y8d{bottom:126.826667pt;}
.y11b{bottom:128.826667pt;}
.y139{bottom:129.386667pt;}
.yed{bottom:130.666667pt;}
.y1a6{bottom:134.826667pt;}
.y5e{bottom:135.946667pt;}
.y15a{bottom:141.146667pt;}
.y28{bottom:142.266667pt;}
.y8c{bottom:142.426667pt;}
.y11a{bottom:144.426667pt;}
.y138{bottom:144.986667pt;}
.ya0{bottom:146.266667pt;}
.y187{bottom:147.546667pt;}
.y1a5{bottom:150.506667pt;}
.y5d{bottom:151.626667pt;}
.y159{bottom:156.746667pt;}
.y27{bottom:157.866667pt;}
.y8b{bottom:158.026667pt;}
.yec{bottom:159.946667pt;}
.y119{bottom:160.026667pt;}
.y137{bottom:160.666667pt;}
.y186{bottom:163.226667pt;}
.y5c{bottom:167.226667pt;}
.yb2{bottom:167.946667pt;}
.y158{bottom:172.426667pt;}
.y26{bottom:173.546667pt;}
.y1a4{bottom:174.106667pt;}
.y9f{bottom:175.226667pt;}
.y118{bottom:175.706667pt;}
.y136{bottom:176.266667pt;}
.y185{bottom:178.826667pt;}
.y8a{bottom:181.706667pt;}
.y5b{bottom:182.826667pt;}
.yb1{bottom:183.546667pt;}
.yeb{bottom:184.266667pt;}
.y157{bottom:188.026667pt;}
.y25{bottom:189.146667pt;}
.y1a3{bottom:189.786667pt;}
.y117{bottom:191.306667pt;}
.y135{bottom:191.866667pt;}
.yb0{bottom:199.146667pt;}
.y184{bottom:202.506667pt;}
.y24{bottom:204.746667pt;}
.y1a2{bottom:205.386667pt;}
.y5a{bottom:206.506667pt;}
.y9e{bottom:206.826667pt;}
.yea{bottom:208.586667pt;}
.y156{bottom:211.946667pt;}
.y89{bottom:213.306667pt;}
.yaf{bottom:214.826667pt;}
.y183{bottom:218.106667pt;}
.y23{bottom:220.426667pt;}
.y9d{bottom:222.506667pt;}
.y116{bottom:222.986667pt;}
.y134{bottom:223.546667pt;}
.y88{bottom:228.986667pt;}
.yae{bottom:230.426667pt;}
.ye9{bottom:232.826667pt;}
.y22{bottom:236.026667pt;}
.y59{bottom:238.106667pt;}
.y115{bottom:238.586667pt;}
.y133{bottom:239.146667pt;}
.y182{bottom:241.706667pt;}
.y87{bottom:244.586667pt;}
.y1a1{bottom:244.666667pt;}
.y155{bottom:245.146667pt;}
.y58{bottom:253.786667pt;}
.yad{bottom:254.106667pt;}
.y114{bottom:254.186667pt;}
.y132{bottom:254.826667pt;}
.y181{bottom:257.386667pt;}
.y21{bottom:259.946667pt;}
.y86{bottom:260.186667pt;}
.y1a0{bottom:260.266667pt;}
.y57{bottom:269.386667pt;}
.y113{bottom:269.866667pt;}
.y131{bottom:270.426667pt;}
.y180{bottom:272.986667pt;}
.y85{bottom:275.866667pt;}
.ye8{bottom:276.106667pt;}
.y19f{bottom:283.946667pt;}
.y56{bottom:284.986667pt;}
.y112{bottom:285.466667pt;}
.yac{bottom:285.706667pt;}
.y130{bottom:286.026667pt;}
.y154{bottom:288.026667pt;}
.y84{bottom:291.466667pt;}
.y17f{bottom:296.666667pt;}
.y19e{bottom:299.546667pt;}
.ye7{bottom:299.786667pt;}
.y55{bottom:300.666667pt;}
.y111{bottom:301.146667pt;}
.yab{bottom:301.306667pt;}
.y12f{bottom:301.706667pt;}
.y20{bottom:303.146667pt;}
.y153{bottom:303.706667pt;}
.y83{bottom:307.146667pt;}
.y17e{bottom:312.266667pt;}
.y54{bottom:316.266667pt;}
.y110{bottom:316.746667pt;}
.yaa{bottom:316.986667pt;}
.y152{bottom:319.306667pt;}
.y82{bottom:322.746667pt;}
.y19d{bottom:323.146667pt;}
.ye6{bottom:331.386667pt;}
.y53{bottom:331.946667pt;}
.y10f{bottom:332.346667pt;}
.ya9{bottom:332.586667pt;}
.y12e{bottom:333.306667pt;}
.y17d{bottom:335.866667pt;}
.y1f{bottom:336.106667pt;}
.y81{bottom:338.346667pt;}
.y19c{bottom:338.826667pt;}
.ye5{bottom:347.066667pt;}
.y52{bottom:347.546667pt;}
.y12d{bottom:348.986667pt;}
.y151{bottom:350.986667pt;}
.y17c{bottom:351.546667pt;}
.y1e{bottom:351.706667pt;}
.y80{bottom:354.026667pt;}
.y1bd{bottom:354.106667pt;}
.ya8{bottom:356.186667pt;}
.y19b{bottom:362.426667pt;}
.ye4{bottom:362.666667pt;}
.y9c{bottom:363.146667pt;}
.y10e{bottom:364.026667pt;}
.y150{bottom:366.586667pt;}
.y1d{bottom:367.306667pt;}
.y7f{bottom:369.626667pt;}
.y1bc{bottom:369.706667pt;}
.y51{bottom:371.146667pt;}
.y12c{bottom:372.826667pt;}
.y17b{bottom:375.146667pt;}
.y19a{bottom:378.106667pt;}
.ye3{bottom:378.266667pt;}
.y9b{bottom:378.826667pt;}
.y10d{bottom:379.626667pt;}
.y14f{bottom:382.186667pt;}
.y1c{bottom:382.986667pt;}
.ya7{bottom:385.226667pt;}
.y17a{bottom:390.746667pt;}
.y7e{bottom:393.306667pt;}
.y9a{bottom:394.426667pt;}
.y10c{bottom:395.306667pt;}
.y1b{bottom:398.586667pt;}
.y199{bottom:401.706667pt;}
.y50{bottom:402.826667pt;}
.y12b{bottom:406.026667pt;}
.y179{bottom:406.426667pt;}
.ye1{bottom:407.626667pt;}
.y1bb{bottom:408.986667pt;}
.y99{bottom:410.106667pt;}
.y10b{bottom:410.906667pt;}
.y14e{bottom:413.866667pt;}
.y1a{bottom:414.266667pt;}
.ya6{bottom:417.146667pt;}
.y198{bottom:417.306667pt;}
.y4f{bottom:418.453333pt;}
.y7d{bottom:425.173333pt;}
.y10a{bottom:426.533333pt;}
.y14d{bottom:429.493333pt;}
.y19{bottom:429.893333pt;}
.y178{bottom:430.053333pt;}
.ydf{bottom:431.893333pt;}
.y1ba{bottom:432.613333pt;}
.y197{bottom:433.013333pt;}
.y98{bottom:433.733333pt;}
.y4e{bottom:434.133333pt;}
.y109{bottom:442.213333pt;}
.y14c{bottom:445.093333pt;}
.y18{bottom:445.493333pt;}
.y177{bottom:445.733333pt;}
.y1b9{bottom:448.293333pt;}
.y12a{bottom:449.013333pt;}
.y4d{bottom:449.733333pt;}
.y196{bottom:456.613333pt;}
.y108{bottom:457.813333pt;}
.ya5{bottom:460.053333pt;}
.y14b{bottom:460.773333pt;}
.y17{bottom:461.173333pt;}
.y129{bottom:464.613333pt;}
.y4c{bottom:465.333333pt;}
.y7c{bottom:468.133333pt;}
.y176{bottom:469.333333pt;}
.y1b8{bottom:471.893333pt;}
.y195{bottom:472.293333pt;}
.y107{bottom:473.413333pt;}
.yde{bottom:475.253333pt;}
.y16{bottom:476.773333pt;}
.y128{bottom:480.293333pt;}
.y4b{bottom:481.013333pt;}
.y7b{bottom:483.733333pt;}
.y14a{bottom:484.693333pt;}
.y175{bottom:484.933333pt;}
.y1b7{bottom:487.493333pt;}
.y194{bottom:487.893333pt;}
.ya4{bottom:488.693333pt;}
.y106{bottom:489.093333pt;}
.yb3{bottom:490.887723pt;}
.y15{bottom:492.373333pt;}
.y127{bottom:495.893333pt;}
.y4a{bottom:496.613333pt;}
.ydd{bottom:498.853333pt;}
.y7a{bottom:500.133333pt;}
.yb5{bottom:503.329937pt;}
.y193{bottom:503.493333pt;}
.ybf{bottom:506.241046pt;}
.y14{bottom:508.053333pt;}
.y174{bottom:508.613333pt;}
.y1b6{bottom:511.173333pt;}
.y126{bottom:511.493333pt;}
.y49{bottom:512.293333pt;}
.y79{bottom:515.733333pt;}
.y149{bottom:517.573333pt;}
.y105{bottom:520.693333pt;}
.y13{bottom:523.653333pt;}
.y173{bottom:524.213333pt;}
.y125{bottom:527.173333pt;}
.y97{bottom:527.893333pt;}
.ydc{bottom:530.773333pt;}
.y78{bottom:532.133333pt;}
.y148{bottom:533.253333pt;}
.y1b5{bottom:534.773333pt;}
.y48{bottom:535.893333pt;}
.y104{bottom:536.373333pt;}
.y12{bottom:539.333333pt;}
.y172{bottom:539.893333pt;}
.y192{bottom:542.773333pt;}
.y96{bottom:543.493333pt;}
.y77{bottom:547.733333pt;}
.y147{bottom:548.853333pt;}
.y1b4{bottom:550.453333pt;}
.y103{bottom:551.973333pt;}
.y11{bottom:554.933333pt;}
.y124{bottom:558.773333pt;}
.y95{bottom:559.173333pt;}
.y171{bottom:563.493333pt;}
.y76{bottom:564.133333pt;}
.y1b3{bottom:566.053333pt;}
.y191{bottom:566.453333pt;}
.y47{bottom:567.493333pt;}
.y102{bottom:567.573333pt;}
.y10{bottom:570.533333pt;}
.ydb{bottom:573.653333pt;}
.y123{bottom:574.453333pt;}
.y94{bottom:574.773333pt;}
.y170{bottom:579.093333pt;}
.y75{bottom:579.733333pt;}
.y146{bottom:580.453333pt;}
.y190{bottom:582.053333pt;}
.y46{bottom:583.173333pt;}
.y101{bottom:583.253333pt;}
.yf{bottom:586.213333pt;}
.yda{bottom:589.333333pt;}
.y1b2{bottom:589.653333pt;}
.y122{bottom:590.053333pt;}
.y93{bottom:590.453333pt;}
.y145{bottom:596.133333pt;}
.y45{bottom:598.773333pt;}
.y100{bottom:598.853333pt;}
.ye{bottom:601.813333pt;}
.y16f{bottom:603.013333pt;}
.y74{bottom:604.373333pt;}
.y1b1{bottom:605.333333pt;}
.y121{bottom:605.653333pt;}
.y92{bottom:606.053333pt;}
.y144{bottom:611.733333pt;}
.y44{bottom:614.453333pt;}
.yff{bottom:614.533333pt;}
.yd{bottom:617.493333pt;}
.yd9{bottom:620.933333pt;}
.y120{bottom:621.333333pt;}
.y91{bottom:621.653333pt;}
.y143{bottom:627.413333pt;}
.y1b0{bottom:628.933333pt;}
.ya3{bottom:629.653333pt;}
.y43{bottom:630.053333pt;}
.yfe{bottom:630.133333pt;}
.yc{bottom:633.093333pt;}
.yd8{bottom:636.613333pt;}
.y11f{bottom:636.933333pt;}
.y73{bottom:637.333333pt;}
.y142{bottom:643.013333pt;}
.y1af{bottom:644.613333pt;}
.y90{bottom:645.333333pt;}
.y42{bottom:645.653333pt;}
.yfd{bottom:645.733333pt;}
.y16e{bottom:645.973333pt;}
.yd7{bottom:652.213333pt;}
.y72{bottom:652.933333pt;}
.yb{bottom:657.013333pt;}
.y18f{bottom:660.613333pt;}
.y41{bottom:661.333333pt;}
.y16d{bottom:661.573333pt;}
.yd6{bottom:667.813333pt;}
.y1ae{bottom:668.213333pt;}
.y71{bottom:668.613333pt;}
.y141{bottom:674.613333pt;}
.y18e{bottom:676.213333pt;}
.y40{bottom:676.933333pt;}
.y16c{bottom:677.253333pt;}
.yfc{bottom:677.413333pt;}
.yd5{bottom:683.493333pt;}
.y1ad{bottom:683.813333pt;}
.y70{bottom:684.213333pt;}
.y140{bottom:690.293333pt;}
.y3f{bottom:692.613333pt;}
.y16b{bottom:692.853333pt;}
.yfb{bottom:693.013333pt;}
.yd4{bottom:699.093333pt;}
.y6f{bottom:699.813333pt;}
.ya{bottom:699.893333pt;}
.y13f{bottom:705.893333pt;}
.y1ac{bottom:707.493333pt;}
.y3e{bottom:708.213333pt;}
.yfa{bottom:708.693333pt;}
.y11e{bottom:715.493333pt;}
.y16a{bottom:716.773333pt;}
.y13e{bottom:721.573333pt;}
.yd3{bottom:722.693333pt;}
.y3d{bottom:723.813333pt;}
.yf9{bottom:724.293333pt;}
.y11d{bottom:731.093333pt;}
.y6e{bottom:731.493333pt;}
.y9{bottom:731.733333pt;}
.y13d{bottom:737.173333pt;}
.y18d{bottom:739.093333pt;}
.y3c{bottom:739.493333pt;}
.y1ab{bottom:746.693333pt;}
.y6d{bottom:747.093333pt;}
.y169{bottom:749.653333pt;}
.yf8{bottom:753.573333pt;}
.yd2{bottom:754.373333pt;}
.y18c{bottom:754.693333pt;}
.y3b{bottom:755.093333pt;}
.y6c{bottom:762.693333pt;}
.y8{bottom:763.733333pt;}
.y168{bottom:765.333333pt;}
.y13c{bottom:768.773333pt;}
.yd1{bottom:769.973333pt;}
.y18b{bottom:770.373333pt;}
.y3a{bottom:770.693333pt;}
.yf7{bottom:777.893333pt;}
.y6b{bottom:778.373333pt;}
.y167{bottom:780.933333pt;}
.y1aa{bottom:785.973333pt;}
.y39{bottom:786.373333pt;}
.y13b{bottom:792.693333pt;}
.yd0{bottom:793.653333pt;}
.y6a{bottom:793.973333pt;}
.y7{bottom:795.733333pt;}
.y166{bottom:796.533333pt;}
.y38{bottom:801.973333pt;}
.yf6{bottom:802.213333pt;}
.y69{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y165{bottom:812.213333pt;}
.y37{bottom:817.653333pt;}
.ycf{bottom:825.253333pt;}
.y13a{bottom:825.653333pt;}
.yf5{bottom:826.533333pt;}
.y8f{bottom:833.253333pt;}
.y164{bottom:836.133333pt;}
.yce{bottom:840.853333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y18a{bottom:848.853333pt;}
.yf4{bottom:850.773333pt;}
.ycd{bottom:856.533333pt;}
.y68{bottom:856.853333pt;}
.y1a9{bottom:864.533333pt;}
.y163{bottom:869.013333pt;}
.ycc{bottom:872.133333pt;}
.y67{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.yf2{bottom:875.093333pt;}
.y4{bottom:877.893333pt;}
.y1a8{bottom:880.133333pt;}
.y162{bottom:884.693333pt;}
.ycb{bottom:887.813333pt;}
.y66{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.yf1{bottom:899.440000pt;}
.y3{bottom:899.840000pt;}
.y161{bottom:900.320000pt;}
.yca{bottom:903.440000pt;}
.y65{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y64{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y160{bottom:924.240000pt;}
.yc9{bottom:927.040000pt;}
.y189{bottom:927.440000pt;}
.y63{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.yf0{bottom:942.720000pt;}
.y188{bottom:943.040000pt;}
.y62{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y15f{bottom:957.120000pt;}
.yc8{bottom:958.720000pt;}
.y61{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y15e{bottom:972.800000pt;}
.yc7{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y15d{bottom:988.400000pt;}
.yc6{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y15c{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h18{height:23.600000pt;}
.h17{height:23.626667pt;}
.h16{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h13{height:40.303347pt;}
.h11{height:41.386123pt;}
.h12{height:42.208658pt;}
.hf{height:45.213490pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h19{height:47.946667pt;}
.h8{height:49.581562pt;}
.h15{height:50.048335pt;}
.h5{height:50.954062pt;}
.hd{height:53.857500pt;}
.h9{height:54.187500pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h14{height:77.012776pt;}
.h10{height:95.890557pt;}
.he{height:125.831256pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.we{width:35.920000pt;}
.w7{width:46.000000pt;}
.w15{width:48.720000pt;}
.w6{width:51.760000pt;}
.wb{width:51.840000pt;}
.w11{width:52.560000pt;}
.w10{width:53.440000pt;}
.w8{width:70.160000pt;}
.w16{width:74.240000pt;}
.wc{width:76.880000pt;}
.wf{width:92.586667pt;}
.wd{width:107.440000pt;}
.w17{width:111.600000pt;}
.w9{width:130.666667pt;}
.w5{width:133.763610pt;}
.w4{width:140.356306pt;}
.wa{width:144.800000pt;}
.w12{width:163.386667pt;}
.w14{width:170.186667pt;}
.w13{width:186.560000pt;}
.w3{width:334.000000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xb{left:9.655699pt;}
.x9{left:31.381020pt;}
.xc{left:33.794945pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x1b{left:88.240000pt;}
.x21{left:98.879988pt;}
.x5{left:108.479988pt;}
.x14{left:159.706667pt;}
.xe{left:173.946667pt;}
.x2{left:180.266655pt;}
.x15{left:212.186667pt;}
.x10{left:226.426667pt;}
.x8{left:229.973333pt;}
.xd{left:235.283968pt;}
.x1c{left:252.266667pt;}
.x11{left:273.066667pt;}
.x16{left:289.706667pt;}
.x7{left:303.546655pt;}
.x20{left:327.226667pt;}
.x12{left:343.866667pt;}
.x17{left:397.786667pt;}
.xa{left:405.774100pt;}
.x18{left:434.426667pt;}
.x1d{left:439.466667pt;}
.x13{left:475.253333pt;}
.x19{left:527.653333pt;}
.x6{left:566.053322pt;}
.x1a{left:581.733333pt;}
.x1e{left:610.373333pt;}
.x1f{left:657.013333pt;}
.x3{left:704.053322pt;}
}




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