
    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_6877db882525fc03aeb9e63d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_7fcd8614a1b7d28c4e98a680.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cd3c108df3fc470a33aaabec.woff')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_696aa1590350f57cc4c633f9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ce812d563114c9836f86a51.woff')format("woff");}.ff6{font-family:ff6;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.262200px;}
.ls17{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.262200px;}
.ls16{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.696000px;}
.ls2{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.828000px;}
.ls1{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.440000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{letter-spacing:46.026720px;}
.ls10{letter-spacing:46.170720px;}
.ls0{letter-spacing:409.260000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.297800px;}
.ws8{word-spacing:-16.020000px;}
.wsa{word-spacing:-15.768000px;}
.wse{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1588.921920px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1095.079680px;}
._28{margin-left:-958.161600px;}
._29{margin-left:-137.520000px;}
._6{margin-left:-33.120000px;}
._6b{margin-left:-14.489280px;}
._1d{margin-left:-3.645360px;}
._d{margin-left:-2.399040px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._8{width:2.979120px;}
._7{width:4.431120px;}
._f{width:5.613120px;}
._9{width:6.633360px;}
._a{width:7.984560px;}
._e{width:8.987280px;}
._11{width:10.278720px;}
._18{width:11.457360px;}
._1c{width:12.529920px;}
._19{width:13.804560px;}
._10{width:16.146480px;}
._b{width:17.210880px;}
._c{width:18.243840px;}
._2a{width:19.541520px;}
._27{width:20.856240px;}
._26{width:21.991680px;}
._13{width:23.028480px;}
._12{width:24.156000px;}
._34{width:25.338240px;}
._35{width:26.342400px;}
._14{width:27.848160px;}
._15{width:28.969200px;}
._2b{width:30.021120px;}
._1b{width:31.254480px;}
._1f{width:32.628960px;}
._2c{width:34.601040px;}
._23{width:35.796240px;}
._24{width:36.924480px;}
._3a{width:37.963440px;}
._36{width:39.160800px;}
._17{width:40.379760px;}
._16{width:41.909760px;}
._22{width:43.146720px;}
._32{width:44.155440px;}
._30{width:45.178560px;}
._3b{width:46.679040px;}
._3c{width:47.808000px;}
._55{width:49.003200px;}
._3d{width:50.198400px;}
._39{width:51.991200px;}
._3e{width:53.544960px;}
._1a{width:54.979200px;}
._20{width:56.217600px;}
._21{width:57.498480px;}
._33{width:58.794480px;}
._2f{width:60.649200px;}
._37{width:62.449200px;}
._5a{width:64.242000px;}
._41{width:65.257920px;}
._42{width:66.871440px;}
._4b{width:67.947120px;}
._1e{width:70.038720px;}
._31{width:71.054640px;}
._67{width:73.062000px;}
._44{width:74.281680px;}
._64{width:75.775680px;}
._5d{width:77.030640px;}
._5e{width:78.345360px;}
._4c{width:79.361280px;}
._49{width:81.452880px;}
._61{width:84.440880px;}
._6c{width:90.818640px;}
._40{width:94.583520px;}
._3f{width:95.735520px;}
._63{width:97.707600px;}
._48{width:99.261360px;}
._56{width:105.715440px;}
._6f{width:108.285120px;}
._25{width:110.077920px;}
._4d{width:111.093840px;}
._5c{width:115.097760px;}
._57{width:121.635120px;}
._51{width:125.180640px;}
._59{width:129.798720px;}
._70{width:131.830560px;}
._2d{width:141.690960px;}
._4e{width:143.364240px;}
._62{width:149.698800px;}
._6a{width:163.622880px;}
._52{width:164.810880px;}
._5b{width:175.268880px;}
._54{width:191.702160px;}
._45{width:199.777680px;}
._2e{width:206.351280px;}
._50{width:209.219760px;}
._4a{width:253.972800px;}
._4f{width:255.354480px;}
._53{width:258.701040px;}
._47{width:261.748800px;}
._46{width:263.003760px;}
._6e{width:287.429040px;}
._60{width:329.695920px;}
._5f{width:330.771600px;}
._65{width:339.675840px;}
._68{width:350.671680px;}
._38{width:425.371680px;}
._43{width:478.438560px;}
._66{width:831.560400px;}
._58{width:857.689200px;}
._6d{width:861.244560px;}
._69{width:921.558960px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y120{bottom:5.760000px;}
.yc3{bottom:5.790000px;}
.ycd{bottom:6.120000px;}
.ydc{bottom:6.300000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.840000px;}
.ya{bottom:11.700000px;}
.y9{bottom:12.420000px;}
.y11e{bottom:15.660000px;}
.yc1{bottom:15.870000px;}
.yc8{bottom:16.020000px;}
.yda{bottom:16.200000px;}
.y11f{bottom:25.560000px;}
.yc2{bottom:25.770000px;}
.ycc{bottom:25.920000px;}
.ydb{bottom:26.100000px;}
.yd2{bottom:35.820000px;}
.yc6{bottom:36.000000px;}
.yb{bottom:37.116000px;}
.yd0{bottom:45.720000px;}
.yd4{bottom:45.765000px;}
.ycb{bottom:45.900000px;}
.y6{bottom:54.216000px;}
.yd1{bottom:55.620000px;}
.yd8{bottom:55.665000px;}
.yc5{bottom:55.800000px;}
.ycf{bottom:65.520000px;}
.yd6{bottom:65.565000px;}
.yca{bottom:65.700000px;}
.yd7{bottom:75.465000px;}
.yc7{bottom:75.600000px;}
.y3f{bottom:82.116000px;}
.y102{bottom:83.916000px;}
.yc9{bottom:85.500000px;}
.yd5{bottom:85.545000px;}
.y150{bottom:87.336000px;}
.yfa{bottom:88.416000px;}
.ybe{bottom:91.656000px;}
.y11b{bottom:92.916000px;}
.yab{bottom:94.716000px;}
.y140{bottom:96.336000px;}
.y3e{bottom:101.916000px;}
.y77{bottom:103.716000px;}
.yd3{bottom:105.300000px;}
.y14f{bottom:107.136000px;}
.yf9{bottom:108.216000px;}
.y38{bottom:110.916000px;}
.y11a{bottom:112.716000px;}
.yaa{bottom:114.696000px;}
.y13f{bottom:116.136000px;}
.y3d{bottom:121.356000px;}
.ybd{bottom:123.516000px;}
.y76{bottom:123.696000px;}
.y14e{bottom:126.936000px;}
.yf8{bottom:128.196000px;}
.y37{bottom:130.716000px;}
.y119{bottom:132.696000px;}
.ya9{bottom:134.496000px;}
.y13e{bottom:135.936000px;}
.y3c{bottom:141.336000px;}
.y75{bottom:143.496000px;}
.y14d{bottom:146.736000px;}
.yf7{bottom:147.996000px;}
.y36{bottom:150.690000px;}
.y118{bottom:152.490000px;}
.ya8{bottom:154.290000px;}
.y13d{bottom:155.730000px;}
.y74{bottom:163.290000px;}
.y14c{bottom:166.710000px;}
.yf6{bottom:167.790000px;}
.y35{bottom:170.490000px;}
.y117{bottom:172.290000px;}
.y106{bottom:173.730000px;}
.ya7{bottom:174.090000px;}
.y13c{bottom:175.710000px;}
.y73{bottom:183.090000px;}
.y14b{bottom:186.510000px;}
.yf5{bottom:187.590000px;}
.y34{bottom:190.290000px;}
.y116{bottom:192.090000px;}
.y105{bottom:193.530000px;}
.ya6{bottom:193.890000px;}
.y13b{bottom:195.510000px;}
.y72{bottom:202.890000px;}
.y14a{bottom:206.310000px;}
.yf4{bottom:207.390000px;}
.y33{bottom:210.090000px;}
.y115{bottom:211.890000px;}
.ya5{bottom:213.870000px;}
.y13a{bottom:215.310000px;}
.y71{bottom:222.870000px;}
.y149{bottom:226.110000px;}
.yf3{bottom:227.370000px;}
.y32{bottom:229.890000px;}
.y114{bottom:231.870000px;}
.ya4{bottom:233.670000px;}
.y139{bottom:235.110000px;}
.y70{bottom:242.670000px;}
.y148{bottom:245.910000px;}
.yf2{bottom:247.170000px;}
.y31{bottom:249.870000px;}
.y113{bottom:251.670000px;}
.ya3{bottom:253.470000px;}
.y138{bottom:254.910000px;}
.y6f{bottom:262.470000px;}
.y147{bottom:265.890000px;}
.yf1{bottom:266.970000px;}
.y30{bottom:269.670000px;}
.y112{bottom:271.470000px;}
.ya2{bottom:272.955000px;}
.y15d{bottom:273.315000px;}
.y137{bottom:274.935000px;}
.y15f{bottom:281.955000px;}
.y6e{bottom:282.315000px;}
.y146{bottom:285.735000px;}
.yf0{bottom:286.815000px;}
.y2f{bottom:289.515000px;}
.y111{bottom:291.315000px;}
.ya1{bottom:292.755000px;}
.y15c{bottom:293.115000px;}
.y161{bottom:293.295000px;}
.y136{bottom:294.735000px;}
.y15e{bottom:301.755000px;}
.y6d{bottom:302.115000px;}
.y145{bottom:305.535000px;}
.yef{bottom:306.615000px;}
.y2e{bottom:309.315000px;}
.y110{bottom:311.115000px;}
.ya0{bottom:312.735000px;}
.y15b{bottom:313.095000px;}
.y135{bottom:314.535000px;}
.y6c{bottom:322.095000px;}
.y144{bottom:324.975000px;}
.yee{bottom:326.595000px;}
.y2d{bottom:329.115000px;}
.y10f{bottom:331.095000px;}
.y160{bottom:331.275000px;}
.y9f{bottom:332.535000px;}
.y15a{bottom:332.895000px;}
.y134{bottom:334.335000px;}
.y6b{bottom:341.895000px;}
.y143{bottom:344.775000px;}
.yed{bottom:346.395000px;}
.y2c{bottom:349.095000px;}
.y10e{bottom:350.895000px;}
.y9e{bottom:352.695000px;}
.y133{bottom:354.135000px;}
.y6a{bottom:361.695000px;}
.yec{bottom:366.195000px;}
.y2b{bottom:368.895000px;}
.y10d{bottom:370.695000px;}
.y159{bottom:372.135000px;}
.y9d{bottom:372.495000px;}
.y132{bottom:374.115000px;}
.y69{bottom:381.495000px;}
.yeb{bottom:385.995000px;}
.y2a{bottom:388.695000px;}
.y10c{bottom:390.495000px;}
.y158{bottom:391.935000px;}
.y9c{bottom:392.295000px;}
.y131{bottom:393.915000px;}
.y68{bottom:401.295000px;}
.yea{bottom:405.795000px;}
.y29{bottom:408.495000px;}
.y10b{bottom:409.935000px;}
.y157{bottom:410.295000px;}
.y9b{bottom:412.275000px;}
.y130{bottom:413.715000px;}
.y67{bottom:421.275000px;}
.ye9{bottom:425.775000px;}
.y28{bottom:428.295000px;}
.y10a{bottom:429.915000px;}
.y156{bottom:430.275000px;}
.y9a{bottom:432.075000px;}
.y12f{bottom:433.515000px;}
.y66{bottom:441.075000px;}
.yff{bottom:445.215000px;}
.ye8{bottom:445.575000px;}
.y27{bottom:448.275000px;}
.y109{bottom:449.715000px;}
.y155{bottom:450.075000px;}
.y99{bottom:451.875000px;}
.y12e{bottom:453.315000px;}
.y65{bottom:460.875000px;}
.yfe{bottom:465.015000px;}
.ye7{bottom:465.375000px;}
.y26{bottom:468.075000px;}
.y108{bottom:469.515000px;}
.y154{bottom:469.875000px;}
.y98{bottom:471.675000px;}
.y12d{bottom:473.295000px;}
.y64{bottom:480.315000px;}
.yb1{bottom:480.675000px;}
.yfd{bottom:484.815000px;}
.ye6{bottom:485.175000px;}
.y25{bottom:487.515000px;}
.y3b{bottom:487.875000px;}
.y107{bottom:489.675000px;}
.y97{bottom:491.475000px;}
.y12c{bottom:493.095000px;}
.yb0{bottom:500.475000px;}
.ye5{bottom:504.975000px;}
.y24{bottom:507.315000px;}
.y3a{bottom:507.675000px;}
.y63{bottom:509.475000px;}
.y96{bottom:511.455000px;}
.y12b{bottom:512.895000px;}
.yaf{bottom:520.455000px;}
.ye4{bottom:524.955000px;}
.y23{bottom:527.115000px;}
.y39{bottom:527.475000px;}
.y153{bottom:529.095000px;}
.y62{bottom:529.455000px;}
.y95{bottom:531.255000px;}
.y12a{bottom:532.695000px;}
.yae{bottom:540.255000px;}
.ye3{bottom:544.755000px;}
.y22{bottom:547.455000px;}
.y152{bottom:548.895000px;}
.y61{bottom:549.255000px;}
.y94{bottom:551.055000px;}
.y129{bottom:552.495000px;}
.yad{bottom:559.725000px;}
.ybc{bottom:560.085000px;}
.ye2{bottom:564.585000px;}
.y21{bottom:567.285000px;}
.y151{bottom:568.725000px;}
.y60{bottom:569.085000px;}
.y93{bottom:570.885000px;}
.y128{bottom:572.505000px;}
.yac{bottom:579.525000px;}
.ybb{bottom:579.885000px;}
.ye1{bottom:584.385000px;}
.y5f{bottom:588.885000px;}
.y20{bottom:589.245000px;}
.y92{bottom:590.685000px;}
.y127{bottom:591.945000px;}
.y142{bottom:592.305000px;}
.yba{bottom:599.685000px;}
.ye0{bottom:604.185000px;}
.y5e{bottom:608.685000px;}
.y1f{bottom:609.225000px;}
.y91{bottom:610.665000px;}
.y126{bottom:611.745000px;}
.y141{bottom:612.105000px;}
.yb9{bottom:619.665000px;}
.ydf{bottom:624.165000px;}
.y5d{bottom:628.665000px;}
.y1e{bottom:629.025000px;}
.y90{bottom:630.465000px;}
.yb8{bottom:639.465000px;}
.yde{bottom:643.605000px;}
.yfc{bottom:643.965000px;}
.y125{bottom:644.145000px;}
.y5c{bottom:648.465000px;}
.y1d{bottom:648.825000px;}
.y8f{bottom:650.265000px;}
.y124{bottom:658.365000px;}
.yb7{bottom:659.265000px;}
.ydd{bottom:663.405000px;}
.yfb{bottom:663.765000px;}
.y5b{bottom:668.265000px;}
.y1c{bottom:668.625000px;}
.y8e{bottom:670.065000px;}
.yb6{bottom:679.065000px;}
.y5a{bottom:688.065000px;}
.y1b{bottom:688.425000px;}
.y8d{bottom:689.865000px;}
.yd9{bottom:697.965000px;}
.yb5{bottom:698.865000px;}
.y59{bottom:707.865000px;}
.y1a{bottom:708.405000px;}
.y8c{bottom:709.485000px;}
.yb4{bottom:718.845000px;}
.y58{bottom:727.845000px;}
.y19{bottom:728.205000px;}
.y101{bottom:738.285000px;}
.y8b{bottom:738.645000px;}
.y57{bottom:747.645000px;}
.y18{bottom:748.005000px;}
.y100{bottom:758.085000px;}
.y123{bottom:758.265000px;}
.y8a{bottom:758.445000px;}
.y56{bottom:767.445000px;}
.y17{bottom:767.805000px;}
.y89{bottom:778.245000px;}
.y55{bottom:787.245000px;}
.y16{bottom:787.605000px;}
.y88{bottom:798.045000px;}
.y54{bottom:807.045000px;}
.y15{bottom:807.585000px;}
.y87{bottom:818.025000px;}
.y53{bottom:827.025000px;}
.y14{bottom:827.385000px;}
.y86{bottom:837.825000px;}
.y52{bottom:846.870000px;}
.y13{bottom:847.410000px;}
.yb3{bottom:857.310000px;}
.y85{bottom:857.670000px;}
.y122{bottom:858.210000px;}
.y51{bottom:866.670000px;}
.y12{bottom:869.370000px;}
.yb2{bottom:877.110000px;}
.y84{bottom:877.470000px;}
.y50{bottom:886.470000px;}
.y11{bottom:894.390000px;}
.y83{bottom:897.270000px;}
.yce{bottom:897.990000px;}
.y4f{bottom:906.270000px;}
.y10{bottom:914.190000px;}
.y82{bottom:917.250000px;}
.y4e{bottom:926.250000px;}
.yf{bottom:933.990000px;}
.y81{bottom:937.050000px;}
.y4d{bottom:946.050000px;}
.y80{bottom:956.850000px;}
.y121{bottom:958.110000px;}
.y4c{bottom:965.850000px;}
.ye{bottom:970.170000px;}
.y104{bottom:976.290000px;}
.y7f{bottom:976.650000px;}
.y4b{bottom:985.650000px;}
.yd{bottom:993.570000px;}
.y103{bottom:996.090000px;}
.y7e{bottom:996.450000px;}
.y4a{bottom:1005.450000px;}
.y7d{bottom:1016.430000px;}
.yc4{bottom:1017.690000px;}
.yc{bottom:1025.250000px;}
.y49{bottom:1025.430000px;}
.y7c{bottom:1036.230000px;}
.y48{bottom:1045.230000px;}
.y5{bottom:1054.230000px;}
.y7b{bottom:1056.030000px;}
.y11d{bottom:1058.190000px;}
.y47{bottom:1065.030000px;}
.y7a{bottom:1075.830000px;}
.y46{bottom:1084.830000px;}
.y4{bottom:1088.070000px;}
.y79{bottom:1095.270000px;}
.y11c{bottom:1104.270000px;}
.y45{bottom:1104.630000px;}
.y78{bottom:1115.250000px;}
.yc0{bottom:1117.590000px;}
.y3{bottom:1119.030000px;}
.y44{bottom:1124.640000px;}
.y43{bottom:1144.440000px;}
.y2{bottom:1149.840000px;}
.ybf{bottom:1163.880000px;}
.y42{bottom:1164.240000px;}
.y1{bottom:1181.700000px;}
.y41{bottom:1193.400000px;}
.y40{bottom:1215.180000px;}
.h4{height:21.780000px;}
.ha{height:38.158594px;}
.h6{height:39.183750px;}
.h11{height:39.600000px;}
.hd{height:39.816000px;}
.hc{height:41.726953px;}
.h5{height:42.086250px;}
.hb{height:58.651172px;}
.h9{height:60.226875px;}
.h12{height:61.423863px;}
.h3{height:66.757500px;}
.h7{height:71.613281px;}
.h2{height:78.367500px;}
.h8{height:96.508125px;}
.he{height:99.180000px;}
.h10{height:99.216000px;}
.hf{height:118.980000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w5{width:155.370000px;}
.w7{width:156.990000px;}
.w9{width:174.450000px;}
.wa{width:174.630000px;}
.w8{width:186.330000px;}
.w6{width:199.470000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x17{left:80.999987px;}
.x11{left:96.300000px;}
.x18{left:108.035987px;}
.x4{left:118.296000px;}
.x9{left:233.849987px;}
.x12{left:252.390000px;}
.x15{left:271.470000px;}
.x8{left:279.219000px;}
.x7{left:284.259000px;}
.xc{left:320.294987px;}
.xa{left:351.434987px;}
.xb{left:367.454987px;}
.xf{left:419.294987px;}
.x6{left:428.829000px;}
.x5{left:442.329000px;}
.xd{left:446.474987px;}
.x13{left:452.775000px;}
.xe{left:473.474987px;}
.x10{left:476.709000px;}
.x1a{left:500.504987px;}
.x19{left:527.504987px;}
.x14{left:610.485000px;}
.x16{left:622.185000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.233067pt;}
.ls16{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.618667pt;}
.ls2{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.736000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ls10{letter-spacing:41.040640pt;}
.ls0{letter-spacing:363.786667pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.486933pt;}
.ws8{word-spacing:-14.240000pt;}
.wsa{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsd{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1412.375040pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-973.404160pt;}
._28{margin-left:-851.699200pt;}
._29{margin-left:-122.240000pt;}
._6{margin-left:-29.440000pt;}
._6b{margin-left:-12.879360pt;}
._1d{margin-left:-3.240320pt;}
._d{margin-left:-2.132480pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._8{width:2.648107pt;}
._7{width:3.938773pt;}
._f{width:4.989440pt;}
._9{width:5.896320pt;}
._a{width:7.097387pt;}
._e{width:7.988693pt;}
._11{width:9.136640pt;}
._18{width:10.184320pt;}
._1c{width:11.137707pt;}
._19{width:12.270720pt;}
._10{width:14.352427pt;}
._b{width:15.298560pt;}
._c{width:16.216747pt;}
._2a{width:17.370240pt;}
._27{width:18.538880pt;}
._26{width:19.548160pt;}
._13{width:20.469760pt;}
._12{width:21.472000pt;}
._34{width:22.522880pt;}
._35{width:23.415467pt;}
._14{width:24.753920pt;}
._15{width:25.750400pt;}
._2b{width:26.685440pt;}
._1b{width:27.781760pt;}
._1f{width:29.003520pt;}
._2c{width:30.756480pt;}
._23{width:31.818880pt;}
._24{width:32.821760pt;}
._3a{width:33.745280pt;}
._36{width:34.809600pt;}
._17{width:35.893120pt;}
._16{width:37.253120pt;}
._22{width:38.352640pt;}
._32{width:39.249280pt;}
._30{width:40.158720pt;}
._3b{width:41.492480pt;}
._3c{width:42.496000pt;}
._55{width:43.558400pt;}
._3d{width:44.620800pt;}
._39{width:46.214400pt;}
._3e{width:47.595520pt;}
._1a{width:48.870400pt;}
._20{width:49.971200pt;}
._21{width:51.109760pt;}
._33{width:52.261760pt;}
._2f{width:53.910400pt;}
._37{width:55.510400pt;}
._5a{width:57.104000pt;}
._41{width:58.007040pt;}
._42{width:59.441280pt;}
._4b{width:60.397440pt;}
._1e{width:62.256640pt;}
._31{width:63.159680pt;}
._67{width:64.944000pt;}
._44{width:66.028160pt;}
._64{width:67.356160pt;}
._5d{width:68.471680pt;}
._5e{width:69.640320pt;}
._4c{width:70.543360pt;}
._49{width:72.402560pt;}
._61{width:75.058560pt;}
._6c{width:80.727680pt;}
._40{width:84.074240pt;}
._3f{width:85.098240pt;}
._63{width:86.851200pt;}
._48{width:88.232320pt;}
._56{width:93.969280pt;}
._6f{width:96.253440pt;}
._25{width:97.847040pt;}
._4d{width:98.750080pt;}
._5c{width:102.309120pt;}
._57{width:108.120107pt;}
._51{width:111.271680pt;}
._59{width:115.376640pt;}
._70{width:117.182720pt;}
._2d{width:125.947520pt;}
._4e{width:127.434880pt;}
._62{width:133.065600pt;}
._6a{width:145.442560pt;}
._52{width:146.498560pt;}
._5b{width:155.794560pt;}
._54{width:170.401920pt;}
._45{width:177.580160pt;}
._2e{width:183.423360pt;}
._50{width:185.973120pt;}
._4a{width:225.753600pt;}
._4f{width:226.981760pt;}
._53{width:229.956480pt;}
._47{width:232.665600pt;}
._46{width:233.781120pt;}
._6e{width:255.492480pt;}
._60{width:293.063040pt;}
._5f{width:294.019200pt;}
._65{width:301.934080pt;}
._68{width:311.708160pt;}
._38{width:378.108160pt;}
._43{width:425.278720pt;}
._66{width:739.164800pt;}
._58{width:762.390400pt;}
._6d{width:765.550720pt;}
._69{width:819.163520pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y120{bottom:5.120000pt;}
.yc3{bottom:5.146667pt;}
.ycd{bottom:5.440000pt;}
.ydc{bottom:5.600000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:6.080000pt;}
.ya{bottom:10.400000pt;}
.y9{bottom:11.040000pt;}
.y11e{bottom:13.920000pt;}
.yc1{bottom:14.106667pt;}
.yc8{bottom:14.240000pt;}
.yda{bottom:14.400000pt;}
.y11f{bottom:22.720000pt;}
.yc2{bottom:22.906667pt;}
.ycc{bottom:23.040000pt;}
.ydb{bottom:23.200000pt;}
.yd2{bottom:31.840000pt;}
.yc6{bottom:32.000000pt;}
.yb{bottom:32.992000pt;}
.yd0{bottom:40.640000pt;}
.yd4{bottom:40.680000pt;}
.ycb{bottom:40.800000pt;}
.y6{bottom:48.192000pt;}
.yd1{bottom:49.440000pt;}
.yd8{bottom:49.480000pt;}
.yc5{bottom:49.600000pt;}
.ycf{bottom:58.240000pt;}
.yd6{bottom:58.280000pt;}
.yca{bottom:58.400000pt;}
.yd7{bottom:67.080000pt;}
.yc7{bottom:67.200000pt;}
.y3f{bottom:72.992000pt;}
.y102{bottom:74.592000pt;}
.yc9{bottom:76.000000pt;}
.yd5{bottom:76.040000pt;}
.y150{bottom:77.632000pt;}
.yfa{bottom:78.592000pt;}
.ybe{bottom:81.472000pt;}
.y11b{bottom:82.592000pt;}
.yab{bottom:84.192000pt;}
.y140{bottom:85.632000pt;}
.y3e{bottom:90.592000pt;}
.y77{bottom:92.192000pt;}
.yd3{bottom:93.600000pt;}
.y14f{bottom:95.232000pt;}
.yf9{bottom:96.192000pt;}
.y38{bottom:98.592000pt;}
.y11a{bottom:100.192000pt;}
.yaa{bottom:101.952000pt;}
.y13f{bottom:103.232000pt;}
.y3d{bottom:107.872000pt;}
.ybd{bottom:109.792000pt;}
.y76{bottom:109.952000pt;}
.y14e{bottom:112.832000pt;}
.yf8{bottom:113.952000pt;}
.y37{bottom:116.192000pt;}
.y119{bottom:117.952000pt;}
.ya9{bottom:119.552000pt;}
.y13e{bottom:120.832000pt;}
.y3c{bottom:125.632000pt;}
.y75{bottom:127.552000pt;}
.y14d{bottom:130.432000pt;}
.yf7{bottom:131.552000pt;}
.y36{bottom:133.946667pt;}
.y118{bottom:135.546667pt;}
.ya8{bottom:137.146667pt;}
.y13d{bottom:138.426667pt;}
.y74{bottom:145.146667pt;}
.y14c{bottom:148.186667pt;}
.yf6{bottom:149.146667pt;}
.y35{bottom:151.546667pt;}
.y117{bottom:153.146667pt;}
.y106{bottom:154.426667pt;}
.ya7{bottom:154.746667pt;}
.y13c{bottom:156.186667pt;}
.y73{bottom:162.746667pt;}
.y14b{bottom:165.786667pt;}
.yf5{bottom:166.746667pt;}
.y34{bottom:169.146667pt;}
.y116{bottom:170.746667pt;}
.y105{bottom:172.026667pt;}
.ya6{bottom:172.346667pt;}
.y13b{bottom:173.786667pt;}
.y72{bottom:180.346667pt;}
.y14a{bottom:183.386667pt;}
.yf4{bottom:184.346667pt;}
.y33{bottom:186.746667pt;}
.y115{bottom:188.346667pt;}
.ya5{bottom:190.106667pt;}
.y13a{bottom:191.386667pt;}
.y71{bottom:198.106667pt;}
.y149{bottom:200.986667pt;}
.yf3{bottom:202.106667pt;}
.y32{bottom:204.346667pt;}
.y114{bottom:206.106667pt;}
.ya4{bottom:207.706667pt;}
.y139{bottom:208.986667pt;}
.y70{bottom:215.706667pt;}
.y148{bottom:218.586667pt;}
.yf2{bottom:219.706667pt;}
.y31{bottom:222.106667pt;}
.y113{bottom:223.706667pt;}
.ya3{bottom:225.306667pt;}
.y138{bottom:226.586667pt;}
.y6f{bottom:233.306667pt;}
.y147{bottom:236.346667pt;}
.yf1{bottom:237.306667pt;}
.y30{bottom:239.706667pt;}
.y112{bottom:241.306667pt;}
.ya2{bottom:242.626667pt;}
.y15d{bottom:242.946667pt;}
.y137{bottom:244.386667pt;}
.y15f{bottom:250.626667pt;}
.y6e{bottom:250.946667pt;}
.y146{bottom:253.986667pt;}
.yf0{bottom:254.946667pt;}
.y2f{bottom:257.346667pt;}
.y111{bottom:258.946667pt;}
.ya1{bottom:260.226667pt;}
.y15c{bottom:260.546667pt;}
.y161{bottom:260.706667pt;}
.y136{bottom:261.986667pt;}
.y15e{bottom:268.226667pt;}
.y6d{bottom:268.546667pt;}
.y145{bottom:271.586667pt;}
.yef{bottom:272.546667pt;}
.y2e{bottom:274.946667pt;}
.y110{bottom:276.546667pt;}
.ya0{bottom:277.986667pt;}
.y15b{bottom:278.306667pt;}
.y135{bottom:279.586667pt;}
.y6c{bottom:286.306667pt;}
.y144{bottom:288.866667pt;}
.yee{bottom:290.306667pt;}
.y2d{bottom:292.546667pt;}
.y10f{bottom:294.306667pt;}
.y160{bottom:294.466667pt;}
.y9f{bottom:295.586667pt;}
.y15a{bottom:295.906667pt;}
.y134{bottom:297.186667pt;}
.y6b{bottom:303.906667pt;}
.y143{bottom:306.466667pt;}
.yed{bottom:307.906667pt;}
.y2c{bottom:310.306667pt;}
.y10e{bottom:311.906667pt;}
.y9e{bottom:313.506667pt;}
.y133{bottom:314.786667pt;}
.y6a{bottom:321.506667pt;}
.yec{bottom:325.506667pt;}
.y2b{bottom:327.906667pt;}
.y10d{bottom:329.506667pt;}
.y159{bottom:330.786667pt;}
.y9d{bottom:331.106667pt;}
.y132{bottom:332.546667pt;}
.y69{bottom:339.106667pt;}
.yeb{bottom:343.106667pt;}
.y2a{bottom:345.506667pt;}
.y10c{bottom:347.106667pt;}
.y158{bottom:348.386667pt;}
.y9c{bottom:348.706667pt;}
.y131{bottom:350.146667pt;}
.y68{bottom:356.706667pt;}
.yea{bottom:360.706667pt;}
.y29{bottom:363.106667pt;}
.y10b{bottom:364.386667pt;}
.y157{bottom:364.706667pt;}
.y9b{bottom:366.466667pt;}
.y130{bottom:367.746667pt;}
.y67{bottom:374.466667pt;}
.ye9{bottom:378.466667pt;}
.y28{bottom:380.706667pt;}
.y10a{bottom:382.146667pt;}
.y156{bottom:382.466667pt;}
.y9a{bottom:384.066667pt;}
.y12f{bottom:385.346667pt;}
.y66{bottom:392.066667pt;}
.yff{bottom:395.746667pt;}
.ye8{bottom:396.066667pt;}
.y27{bottom:398.466667pt;}
.y109{bottom:399.746667pt;}
.y155{bottom:400.066667pt;}
.y99{bottom:401.666667pt;}
.y12e{bottom:402.946667pt;}
.y65{bottom:409.666667pt;}
.yfe{bottom:413.346667pt;}
.ye7{bottom:413.666667pt;}
.y26{bottom:416.066667pt;}
.y108{bottom:417.346667pt;}
.y154{bottom:417.666667pt;}
.y98{bottom:419.266667pt;}
.y12d{bottom:420.706667pt;}
.y64{bottom:426.946667pt;}
.yb1{bottom:427.266667pt;}
.yfd{bottom:430.946667pt;}
.ye6{bottom:431.266667pt;}
.y25{bottom:433.346667pt;}
.y3b{bottom:433.666667pt;}
.y107{bottom:435.266667pt;}
.y97{bottom:436.866667pt;}
.y12c{bottom:438.306667pt;}
.yb0{bottom:444.866667pt;}
.ye5{bottom:448.866667pt;}
.y24{bottom:450.946667pt;}
.y3a{bottom:451.266667pt;}
.y63{bottom:452.866667pt;}
.y96{bottom:454.626667pt;}
.y12b{bottom:455.906667pt;}
.yaf{bottom:462.626667pt;}
.ye4{bottom:466.626667pt;}
.y23{bottom:468.546667pt;}
.y39{bottom:468.866667pt;}
.y153{bottom:470.306667pt;}
.y62{bottom:470.626667pt;}
.y95{bottom:472.226667pt;}
.y12a{bottom:473.506667pt;}
.yae{bottom:480.226667pt;}
.ye3{bottom:484.226667pt;}
.y22{bottom:486.626667pt;}
.y152{bottom:487.906667pt;}
.y61{bottom:488.226667pt;}
.y94{bottom:489.826667pt;}
.y129{bottom:491.106667pt;}
.yad{bottom:497.533333pt;}
.ybc{bottom:497.853333pt;}
.ye2{bottom:501.853333pt;}
.y21{bottom:504.253333pt;}
.y151{bottom:505.533333pt;}
.y60{bottom:505.853333pt;}
.y93{bottom:507.453333pt;}
.y128{bottom:508.893333pt;}
.yac{bottom:515.133333pt;}
.ybb{bottom:515.453333pt;}
.ye1{bottom:519.453333pt;}
.y5f{bottom:523.453333pt;}
.y20{bottom:523.773333pt;}
.y92{bottom:525.053333pt;}
.y127{bottom:526.173333pt;}
.y142{bottom:526.493333pt;}
.yba{bottom:533.053333pt;}
.ye0{bottom:537.053333pt;}
.y5e{bottom:541.053333pt;}
.y1f{bottom:541.533333pt;}
.y91{bottom:542.813333pt;}
.y126{bottom:543.773333pt;}
.y141{bottom:544.093333pt;}
.yb9{bottom:550.813333pt;}
.ydf{bottom:554.813333pt;}
.y5d{bottom:558.813333pt;}
.y1e{bottom:559.133333pt;}
.y90{bottom:560.413333pt;}
.yb8{bottom:568.413333pt;}
.yde{bottom:572.093333pt;}
.yfc{bottom:572.413333pt;}
.y125{bottom:572.573333pt;}
.y5c{bottom:576.413333pt;}
.y1d{bottom:576.733333pt;}
.y8f{bottom:578.013333pt;}
.y124{bottom:585.213333pt;}
.yb7{bottom:586.013333pt;}
.ydd{bottom:589.693333pt;}
.yfb{bottom:590.013333pt;}
.y5b{bottom:594.013333pt;}
.y1c{bottom:594.333333pt;}
.y8e{bottom:595.613333pt;}
.yb6{bottom:603.613333pt;}
.y5a{bottom:611.613333pt;}
.y1b{bottom:611.933333pt;}
.y8d{bottom:613.213333pt;}
.yd9{bottom:620.413333pt;}
.yb5{bottom:621.213333pt;}
.y59{bottom:629.213333pt;}
.y1a{bottom:629.693333pt;}
.y8c{bottom:630.653333pt;}
.yb4{bottom:638.973333pt;}
.y58{bottom:646.973333pt;}
.y19{bottom:647.293333pt;}
.y101{bottom:656.253333pt;}
.y8b{bottom:656.573333pt;}
.y57{bottom:664.573333pt;}
.y18{bottom:664.893333pt;}
.y100{bottom:673.853333pt;}
.y123{bottom:674.013333pt;}
.y8a{bottom:674.173333pt;}
.y56{bottom:682.173333pt;}
.y17{bottom:682.493333pt;}
.y89{bottom:691.773333pt;}
.y55{bottom:699.773333pt;}
.y16{bottom:700.093333pt;}
.y88{bottom:709.373333pt;}
.y54{bottom:717.373333pt;}
.y15{bottom:717.853333pt;}
.y87{bottom:727.133333pt;}
.y53{bottom:735.133333pt;}
.y14{bottom:735.453333pt;}
.y86{bottom:744.733333pt;}
.y52{bottom:752.773333pt;}
.y13{bottom:753.253333pt;}
.yb3{bottom:762.053333pt;}
.y85{bottom:762.373333pt;}
.y122{bottom:762.853333pt;}
.y51{bottom:770.373333pt;}
.y12{bottom:772.773333pt;}
.yb2{bottom:779.653333pt;}
.y84{bottom:779.973333pt;}
.y50{bottom:787.973333pt;}
.y11{bottom:795.013333pt;}
.y83{bottom:797.573333pt;}
.yce{bottom:798.213333pt;}
.y4f{bottom:805.573333pt;}
.y10{bottom:812.613333pt;}
.y82{bottom:815.333333pt;}
.y4e{bottom:823.333333pt;}
.yf{bottom:830.213333pt;}
.y81{bottom:832.933333pt;}
.y4d{bottom:840.933333pt;}
.y80{bottom:850.533333pt;}
.y121{bottom:851.653333pt;}
.y4c{bottom:858.533333pt;}
.ye{bottom:862.373333pt;}
.y104{bottom:867.813333pt;}
.y7f{bottom:868.133333pt;}
.y4b{bottom:876.133333pt;}
.yd{bottom:883.173333pt;}
.y103{bottom:885.413333pt;}
.y7e{bottom:885.733333pt;}
.y4a{bottom:893.733333pt;}
.y7d{bottom:903.493333pt;}
.yc4{bottom:904.613333pt;}
.yc{bottom:911.333333pt;}
.y49{bottom:911.493333pt;}
.y7c{bottom:921.093333pt;}
.y48{bottom:929.093333pt;}
.y5{bottom:937.093333pt;}
.y7b{bottom:938.693333pt;}
.y11d{bottom:940.613333pt;}
.y47{bottom:946.693333pt;}
.y7a{bottom:956.293333pt;}
.y46{bottom:964.293333pt;}
.y4{bottom:967.173333pt;}
.y79{bottom:973.573333pt;}
.y11c{bottom:981.573333pt;}
.y45{bottom:981.893333pt;}
.y78{bottom:991.333333pt;}
.yc0{bottom:993.413333pt;}
.y3{bottom:994.693333pt;}
.y44{bottom:999.680000pt;}
.y43{bottom:1017.280000pt;}
.y2{bottom:1022.080000pt;}
.ybf{bottom:1034.560000pt;}
.y42{bottom:1034.880000pt;}
.y1{bottom:1050.400000pt;}
.y41{bottom:1060.800000pt;}
.y40{bottom:1080.160000pt;}
.h4{height:19.360000pt;}
.ha{height:33.918750pt;}
.h6{height:34.830000pt;}
.h11{height:35.200000pt;}
.hd{height:35.392000pt;}
.hc{height:37.090625pt;}
.h5{height:37.410000pt;}
.hb{height:52.134375pt;}
.h9{height:53.535000pt;}
.h12{height:54.598989pt;}
.h3{height:59.340000pt;}
.h7{height:63.656250pt;}
.h2{height:69.660000pt;}
.h8{height:85.785000pt;}
.he{height:88.160000pt;}
.h10{height:88.192000pt;}
.hf{height:105.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w5{width:138.106667pt;}
.w7{width:139.546667pt;}
.w9{width:155.066667pt;}
.wa{width:155.226667pt;}
.w8{width:165.626667pt;}
.w6{width:177.306667pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x17{left:71.999988pt;}
.x11{left:85.600000pt;}
.x18{left:96.031988pt;}
.x4{left:105.152000pt;}
.x9{left:207.866655pt;}
.x12{left:224.346667pt;}
.x15{left:241.306667pt;}
.x8{left:248.194667pt;}
.x7{left:252.674667pt;}
.xc{left:284.706655pt;}
.xa{left:312.386655pt;}
.xb{left:326.626655pt;}
.xf{left:372.706655pt;}
.x6{left:381.181333pt;}
.x5{left:393.181333pt;}
.xd{left:396.866655pt;}
.x13{left:402.466667pt;}
.xe{left:420.866655pt;}
.x10{left:423.741333pt;}
.x1a{left:444.893322pt;}
.x19{left:468.893322pt;}
.x14{left:542.653333pt;}
.x16{left:553.053333pt;}
}




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