
    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_9c9c5ff68a3a13bf8665a915.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_8f078451b1b475d11fbead23.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_4245f3643185746e00029511.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2a0b7f7e709eafafd2d8ff21.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_2ff569bea90d3fb6b030d1bf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21d901c06a06162032ffdcc0.woff2')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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_79fb441eae295efc51c3a99c.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.014760px;}
.ls5{letter-spacing:-0.008400px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.045360px;}
.lsb{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.065520px;}
.ls7{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.ls9{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180600px;}
.lsc{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:47.726640px;}
.lsf{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;}
}
.wsb{word-spacing:-60.120000px;}
.ws3{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.424400px;}
.wsa{word-spacing:-13.407000px;}
.ws5{word-spacing:-13.399800px;}
.ws8{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws6{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:4.304880px;}
._e{margin-left:-3.487200px;}
._3{margin-left:-2.247000px;}
._0{margin-left:-1.020000px;}
._2{width:1.121280px;}
._b{width:2.368680px;}
._12{width:3.411959px;}
._8{width:4.749600px;}
._1{width:5.871600px;}
._10{width:7.184176px;}
._f{width:8.212673px;}
._7{width:9.492604px;}
._6{width:10.641000px;}
._11{width:12.082080px;}
._a{width:14.262600px;}
._9{width:15.871800px;}
._4{width:17.735400px;}
._5{width:19.005600px;}
._c{width:20.080200px;}
._d{width:21.102000px;}
._15{width:22.602120px;}
._14{width:23.688240px;}
._13{width:24.828600px;}
._19{width:25.914480px;}
._16{width:27.054000px;}
._17{width:28.256400px;}
._18{width:30.180240px;}
._1a{width:850.893600px;}
.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;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y11e{bottom:111.720000px;}
.y5b{bottom:112.170000px;}
.y82{bottom:120.720000px;}
.ye8{bottom:121.170000px;}
.y5a{bottom:129.720000px;}
.y148{bottom:130.440000px;}
.y16e{bottom:131.610000px;}
.yc7{bottom:134.130000px;}
.y81{bottom:138.270000px;}
.ye7{bottom:138.720000px;}
.y28{bottom:140.790000px;}
.y59{bottom:147.270000px;}
.y147{bottom:148.080000px;}
.yc6{bottom:151.680000px;}
.y80{bottom:155.910000px;}
.yb6{bottom:156.270000px;}
.y16d{bottom:158.250000px;}
.y27{bottom:158.340000px;}
.ya2{bottom:164.910000px;}
.yc5{bottom:169.320000px;}
.y7f{bottom:173.460000px;}
.yb5{bottom:173.910000px;}
.y146{bottom:174.630000px;}
.ya1{bottom:182.460000px;}
.y58{bottom:182.910000px;}
.y16c{bottom:184.800000px;}
.yc4{bottom:186.870000px;}
.y7e{bottom:191.100000px;}
.yb4{bottom:191.460000px;}
.y26{bottom:193.980000px;}
.ya0{bottom:200.100000px;}
.y57{bottom:200.460000px;}
.y145{bottom:201.180000px;}
.y16b{bottom:202.440000px;}
.y7d{bottom:208.650000px;}
.yb3{bottom:209.100000px;}
.y25{bottom:211.530000px;}
.y9f{bottom:217.650000px;}
.y56{bottom:218.100000px;}
.y144{bottom:218.820000px;}
.yc3{bottom:222.510000px;}
.yb2{bottom:226.650000px;}
.y103{bottom:227.100000px;}
.y16a{bottom:228.990000px;}
.y24{bottom:229.170000px;}
.y55{bottom:235.650000px;}
.yc2{bottom:240.060000px;}
.y7c{bottom:244.200000px;}
.ye6{bottom:244.650000px;}
.y143{bottom:245.370000px;}
.y169{bottom:246.540000px;}
.y23{bottom:246.720000px;}
.y54{bottom:253.200000px;}
.yb1{bottom:253.560000px;}
.yc1{bottom:257.610000px;}
.y7b{bottom:261.840000px;}
.ye5{bottom:262.200000px;}
.y22{bottom:264.270000px;}
.y53{bottom:270.840000px;}
.y142{bottom:272.010000px;}
.y168{bottom:273.180000px;}
.yc0{bottom:275.250000px;}
.y7a{bottom:279.390000px;}
.y9e{bottom:279.840000px;}
.y11d{bottom:288.840000px;}
.y21{bottom:291.180000px;}
.ybf{bottom:292.800000px;}
.y79{bottom:296.940000px;}
.y9d{bottom:297.390000px;}
.y141{bottom:298.560000px;}
.y167{bottom:299.730000px;}
.yb0{bottom:301.800000px;}
.y52{bottom:306.390000px;}
.ybe{bottom:310.440000px;}
.y78{bottom:314.580000px;}
.y9c{bottom:314.940000px;}
.y140{bottom:316.110000px;}
.yaf{bottom:319.440000px;}
.y51{bottom:323.940000px;}
.y166{bottom:326.370000px;}
.y77{bottom:332.130000px;}
.y9b{bottom:332.580000px;}
.y102{bottom:332.940000px;}
.y13f{bottom:333.750000px;}
.yae{bottom:336.990000px;}
.y20{bottom:339.510000px;}
.y50{bottom:341.580000px;}
.y9a{bottom:350.130000px;}
.y101{bottom:350.580000px;}
.y165{bottom:352.920000px;}
.yad{bottom:354.540000px;}
.y1f{bottom:357.420000px;}
.y76{bottom:358.770000px;}
.y4f{bottom:359.130000px;}
.y13e{bottom:360.300000px;}
.y187{bottom:362.370000px;}
.y100{bottom:368.130000px;}
.yac{bottom:372.180000px;}
.ybd{bottom:372.540000px;}
.y4e{bottom:376.770000px;}
.y99{bottom:377.040000px;}
.y13d{bottom:377.940000px;}
.y164{bottom:379.470000px;}
.y186{bottom:379.920000px;}
.yff{bottom:385.770000px;}
.yab{bottom:389.730000px;}
.ybc{bottom:390.180000px;}
.y4d{bottom:394.320000px;}
.y1e{bottom:394.410000px;}
.ye4{bottom:394.770000px;}
.y163{bottom:397.110000px;}
.y13c{bottom:404.490000px;}
.y185{bottom:406.470000px;}
.ybb{bottom:407.730000px;}
.y75{bottom:411.870000px;}
.y1d{bottom:412.050000px;}
.ye3{bottom:412.320000px;}
.yfe{bottom:421.320000px;}
.y13b{bottom:422.040000px;}
.y162{bottom:423.660000px;}
.y98{bottom:425.370000px;}
.y74{bottom:429.510000px;}
.y1c{bottom:429.600000px;}
.y4c{bottom:429.870000px;}
.y184{bottom:433.110000px;}
.yfd{bottom:438.870000px;}
.y97{bottom:442.920000px;}
.y73{bottom:447.060000px;}
.y1b{bottom:447.150000px;}
.y4b{bottom:447.510000px;}
.y13a{bottom:448.680000px;}
.y161{bottom:450.300000px;}
.y183{bottom:450.660000px;}
.yfc{bottom:456.510000px;}
.y96{bottom:460.470000px;}
.y72{bottom:464.700000px;}
.y1a{bottom:464.790000px;}
.y4a{bottom:465.060000px;}
.y139{bottom:466.230000px;}
.y160{bottom:467.850000px;}
.yfb{bottom:474.090000px;}
.y182{bottom:477.330000px;}
.y95{bottom:478.140000px;}
.y19{bottom:482.370000px;}
.y49{bottom:482.730000px;}
.y11c{bottom:483.090000px;}
.y71{bottom:491.640000px;}
.yfa{bottom:491.730000px;}
.y138{bottom:492.900000px;}
.y15f{bottom:494.430000px;}
.y94{bottom:495.690000px;}
.yba{bottom:496.140000px;}
.y18{bottom:499.920000px;}
.ye2{bottom:500.280000px;}
.y11b{bottom:500.730000px;}
.y181{bottom:503.880000px;}
.y48{bottom:509.640000px;}
.y15e{bottom:512.070000px;}
.yb9{bottom:513.690000px;}
.y17{bottom:517.560000px;}
.ye1{bottom:517.830000px;}
.y11a{bottom:518.280000px;}
.y137{bottom:519.450000px;}
.y180{bottom:521.430000px;}
.yaa{bottom:522.330000px;}
.yf9{bottom:527.280000px;}
.y93{bottom:531.330000px;}
.y16{bottom:535.110000px;}
.y119{bottom:535.830000px;}
.y136{bottom:537.000000px;}
.y15d{bottom:538.620000px;}
.y70{bottom:539.880000px;}
.yf8{bottom:544.830000px;}
.y17f{bottom:548.070000px;}
.y92{bottom:548.880000px;}
.y15{bottom:552.750000px;}
.ye0{bottom:553.470000px;}
.y6f{bottom:557.430000px;}
.y47{bottom:557.880000px;}
.yf7{bottom:562.470000px;}
.y135{bottom:563.640000px;}
.y15c{bottom:565.260000px;}
.y17e{bottom:565.620000px;}
.y91{bottom:566.430000px;}
.y14{bottom:570.300000px;}
.ydf{bottom:571.020000px;}
.y6e{bottom:575.070000px;}
.y46{bottom:575.430000px;}
.yf6{bottom:580.020000px;}
.y90{bottom:584.070000px;}
.y13{bottom:587.850000px;}
.yde{bottom:588.660000px;}
.y118{bottom:589.020000px;}
.y134{bottom:590.190000px;}
.y15b{bottom:591.810000px;}
.y17d{bottom:592.260000px;}
.y6d{bottom:592.620000px;}
.y45{bottom:593.070000px;}
.yf5{bottom:597.660000px;}
.y8f{bottom:601.620000px;}
.y12{bottom:605.490000px;}
.ydd{bottom:606.210000px;}
.y117{bottom:606.660000px;}
.y15a{bottom:609.360000px;}
.y44{bottom:610.620000px;}
.yf4{bottom:615.210000px;}
.y133{bottom:616.830000px;}
.y17c{bottom:618.810000px;}
.y11{bottom:623.040000px;}
.ydc{bottom:623.760000px;}
.y116{bottom:624.210000px;}
.y6c{bottom:628.260000px;}
.y132{bottom:634.380000px;}
.y159{bottom:636.000000px;}
.y17b{bottom:636.360000px;}
.y10{bottom:640.680000px;}
.ydb{bottom:641.400000px;}
.y115{bottom:641.760000px;}
.y6b{bottom:645.810000px;}
.y43{bottom:646.260000px;}
.yf3{bottom:650.760000px;}
.y158{bottom:653.550000px;}
.yf{bottom:658.230000px;}
.yda{bottom:658.950000px;}
.y114{bottom:659.400000px;}
.y131{bottom:660.930000px;}
.y17a{bottom:663.000000px;}
.y6a{bottom:663.360000px;}
.y42{bottom:663.810000px;}
.yf2{bottom:668.400000px;}
.y113{bottom:676.950000px;}
.y130{bottom:678.570000px;}
.y157{bottom:680.190000px;}
.y179{bottom:680.550000px;}
.y69{bottom:681.000000px;}
.y41{bottom:681.360000px;}
.ye{bottom:685.140000px;}
.yd9{bottom:685.590000px;}
.yf1{bottom:685.950000px;}
.y156{bottom:697.740000px;}
.y68{bottom:698.550000px;}
.y40{bottom:699.000000px;}
.yf0{bottom:703.590000px;}
.y12f{bottom:705.120000px;}
.y178{bottom:707.190000px;}
.y112{bottom:712.590000px;}
.y3f{bottom:716.550000px;}
.yd8{bottom:721.140000px;}
.y155{bottom:724.290000px;}
.y177{bottom:724.740000px;}
.y111{bottom:730.140000px;}
.yef{bottom:730.500000px;}
.y12e{bottom:731.670000px;}
.yd{bottom:733.380000px;}
.y67{bottom:734.190000px;}
.yd7{bottom:738.690000px;}
.y110{bottom:747.690000px;}
.y12d{bottom:749.310000px;}
.y154{bottom:750.930000px;}
.y176{bottom:751.290000px;}
.y66{bottom:751.740000px;}
.y3e{bottom:752.190000px;}
.yd6{bottom:756.330000px;}
.y10f{bottom:765.330000px;}
.yc{bottom:769.200000px;}
.y65{bottom:769.290000px;}
.y3d{bottom:769.740000px;}
.yd5{bottom:773.880000px;}
.y12c{bottom:775.860000px;}
.y153{bottom:777.480000px;}
.y175{bottom:777.930000px;}
.ya9{bottom:778.290000px;}
.yee{bottom:778.740000px;}
.y10e{bottom:782.880000px;}
.y64{bottom:786.930000px;}
.y3c{bottom:787.290000px;}
.yd4{bottom:791.520000px;}
.y152{bottom:795.030000px;}
.y174{bottom:795.480000px;}
.yed{bottom:796.290000px;}
.y12b{bottom:802.500000px;}
.y3b{bottom:804.930000px;}
.yb{bottom:805.200000px;}
.yd3{bottom:809.070000px;}
.ya8{bottom:813.930000px;}
.y10d{bottom:818.520000px;}
.y12a{bottom:820.050000px;}
.y151{bottom:821.670000px;}
.y173{bottom:822.030000px;}
.y3a{bottom:822.480000px;}
.ya7{bottom:831.480000px;}
.y10c{bottom:836.070000px;}
.y172{bottom:839.670000px;}
.y63{bottom:840.030000px;}
.yd2{bottom:844.620000px;}
.ya{bottom:844.980000px;}
.y129{bottom:846.600000px;}
.y150{bottom:848.220000px;}
.ya6{bottom:849.030000px;}
.y10b{bottom:853.620000px;}
.y62{bottom:857.670000px;}
.y39{bottom:858.030000px;}
.yd1{bottom:862.260000px;}
.y9{bottom:862.980000px;}
.y171{bottom:866.220000px;}
.ya5{bottom:866.670000px;}
.y10a{bottom:871.260000px;}
.y128{bottom:873.240000px;}
.y14f{bottom:874.860000px;}
.y61{bottom:875.220000px;}
.y38{bottom:875.670000px;}
.yd0{bottom:879.810000px;}
.y8{bottom:880.980000px;}
.y8e{bottom:884.220000px;}
.y109{bottom:888.810000px;}
.y127{bottom:890.790000px;}
.y14e{bottom:892.410000px;}
.y60{bottom:892.860000px;}
.y37{bottom:893.220000px;}
.ycf{bottom:897.450000px;}
.y7{bottom:898.980000px;}
.yec{bottom:901.860000px;}
.yb8{bottom:902.220000px;}
.y108{bottom:906.450000px;}
.y170{bottom:910.410000px;}
.y36{bottom:910.860000px;}
.yce{bottom:915.000000px;}
.y6{bottom:916.980000px;}
.y126{bottom:917.430000px;}
.y14d{bottom:918.960000px;}
.yeb{bottom:919.410000px;}
.y8d{bottom:919.860000px;}
.y35{bottom:928.410000px;}
.ycd{bottom:932.550000px;}
.y125{bottom:934.980000px;}
.y14c{bottom:936.600000px;}
.y16f{bottom:936.960000px;}
.y8c{bottom:937.410000px;}
.y107{bottom:942.000000px;}
.y5f{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y8b{bottom:954.960000px;}
.ycc{bottom:959.190000px;}
.y106{bottom:959.550000px;}
.y124{bottom:961.530000px;}
.y14b{bottom:963.150000px;}
.y5e{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y8a{bottom:972.600000px;}
.y105{bottom:977.190000px;}
.y5d{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.y123{bottom:988.170000px;}
.y14a{bottom:989.790000px;}
.y89{bottom:990.150000px;}
.ycb{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y88{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y122{bottom:1015.110000px;}
.y149{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.yea{bottom:1025.370000px;}
.yb7{bottom:1025.820000px;}
.yca{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.y104{bottom:1039.230000px;}
.ye9{bottom:1042.920000px;}
.y87{bottom:1043.370000px;}
.yc9{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.ya4{bottom:1052.370000px;}
.y86{bottom:1060.920000px;}
.y121{bottom:1063.350000px;}
.y5c{bottom:1069.560000px;}
.ya3{bottom:1069.920000px;}
.yc8{bottom:1074.420000px;}
.y85{bottom:1078.560000px;}
.y2e{bottom:1087.560000px;}
.y120{bottom:1090.260000px;}
.y84{bottom:1096.110000px;}
.y2d{bottom:1105.110000px;}
.y83{bottom:1113.750000px;}
.y2c{bottom:1122.750000px;}
.y11f{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:111.239987px;}
.x2{left:251.759987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:-0.007467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.040320pt;}
.lsb{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.058240pt;}
.ls7{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls9{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160533pt;}
.lsc{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:42.423680pt;}
.lsf{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws3{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.932800pt;}
.wsa{word-spacing:-11.917333pt;}
.ws5{word-spacing:-11.910933pt;}
.ws8{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws6{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:3.826560pt;}
._e{margin-left:-3.099734pt;}
._3{margin-left:-1.997334pt;}
._0{margin-left:-0.906667pt;}
._2{width:0.996693pt;}
._b{width:2.105494pt;}
._12{width:3.032852pt;}
._8{width:4.221867pt;}
._1{width:5.219200pt;}
._10{width:6.385934pt;}
._f{width:7.300153pt;}
._7{width:8.437870pt;}
._6{width:9.458666pt;}
._11{width:10.739627pt;}
._a{width:12.677866pt;}
._9{width:14.108267pt;}
._4{width:15.764800pt;}
._5{width:16.893866pt;}
._c{width:17.849067pt;}
._d{width:18.757333pt;}
._15{width:20.090773pt;}
._14{width:21.056213pt;}
._13{width:22.069867pt;}
._19{width:23.035093pt;}
._16{width:24.048000pt;}
._17{width:25.116800pt;}
._18{width:26.826880pt;}
._1a{width:756.349867pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y11e{bottom:99.306667pt;}
.y5b{bottom:99.706667pt;}
.y82{bottom:107.306667pt;}
.ye8{bottom:107.706667pt;}
.y5a{bottom:115.306667pt;}
.y148{bottom:115.946667pt;}
.y16e{bottom:116.986667pt;}
.yc7{bottom:119.226667pt;}
.y81{bottom:122.906667pt;}
.ye7{bottom:123.306667pt;}
.y28{bottom:125.146667pt;}
.y59{bottom:130.906667pt;}
.y147{bottom:131.626667pt;}
.yc6{bottom:134.826667pt;}
.y80{bottom:138.586667pt;}
.yb6{bottom:138.906667pt;}
.y16d{bottom:140.666667pt;}
.y27{bottom:140.746667pt;}
.ya2{bottom:146.586667pt;}
.yc5{bottom:150.506667pt;}
.y7f{bottom:154.186667pt;}
.yb5{bottom:154.586667pt;}
.y146{bottom:155.226667pt;}
.ya1{bottom:162.186667pt;}
.y58{bottom:162.586667pt;}
.y16c{bottom:164.266667pt;}
.yc4{bottom:166.106667pt;}
.y7e{bottom:169.866667pt;}
.yb4{bottom:170.186667pt;}
.y26{bottom:172.426667pt;}
.ya0{bottom:177.866667pt;}
.y57{bottom:178.186667pt;}
.y145{bottom:178.826667pt;}
.y16b{bottom:179.946667pt;}
.y7d{bottom:185.466667pt;}
.yb3{bottom:185.866667pt;}
.y25{bottom:188.026667pt;}
.y9f{bottom:193.466667pt;}
.y56{bottom:193.866667pt;}
.y144{bottom:194.506667pt;}
.yc3{bottom:197.786667pt;}
.yb2{bottom:201.466667pt;}
.y103{bottom:201.866667pt;}
.y16a{bottom:203.546667pt;}
.y24{bottom:203.706667pt;}
.y55{bottom:209.466667pt;}
.yc2{bottom:213.386667pt;}
.y7c{bottom:217.066667pt;}
.ye6{bottom:217.466667pt;}
.y143{bottom:218.106667pt;}
.y169{bottom:219.146667pt;}
.y23{bottom:219.306667pt;}
.y54{bottom:225.066667pt;}
.yb1{bottom:225.386667pt;}
.yc1{bottom:228.986667pt;}
.y7b{bottom:232.746667pt;}
.ye5{bottom:233.066667pt;}
.y22{bottom:234.906667pt;}
.y53{bottom:240.746667pt;}
.y142{bottom:241.786667pt;}
.y168{bottom:242.826667pt;}
.yc0{bottom:244.666667pt;}
.y7a{bottom:248.346667pt;}
.y9e{bottom:248.746667pt;}
.y11d{bottom:256.746667pt;}
.y21{bottom:258.826667pt;}
.ybf{bottom:260.266667pt;}
.y79{bottom:263.946667pt;}
.y9d{bottom:264.346667pt;}
.y141{bottom:265.386667pt;}
.y167{bottom:266.426667pt;}
.yb0{bottom:268.266667pt;}
.y52{bottom:272.346667pt;}
.ybe{bottom:275.946667pt;}
.y78{bottom:279.626667pt;}
.y9c{bottom:279.946667pt;}
.y140{bottom:280.986667pt;}
.yaf{bottom:283.946667pt;}
.y51{bottom:287.946667pt;}
.y166{bottom:290.106667pt;}
.y77{bottom:295.226667pt;}
.y9b{bottom:295.626667pt;}
.y102{bottom:295.946667pt;}
.y13f{bottom:296.666667pt;}
.yae{bottom:299.546667pt;}
.y20{bottom:301.786667pt;}
.y50{bottom:303.626667pt;}
.y9a{bottom:311.226667pt;}
.y101{bottom:311.626667pt;}
.y165{bottom:313.706667pt;}
.yad{bottom:315.146667pt;}
.y1f{bottom:317.706667pt;}
.y76{bottom:318.906667pt;}
.y4f{bottom:319.226667pt;}
.y13e{bottom:320.266667pt;}
.y187{bottom:322.106667pt;}
.y100{bottom:327.226667pt;}
.yac{bottom:330.826667pt;}
.ybd{bottom:331.146667pt;}
.y4e{bottom:334.906667pt;}
.y99{bottom:335.146667pt;}
.y13d{bottom:335.946667pt;}
.y164{bottom:337.306667pt;}
.y186{bottom:337.706667pt;}
.yff{bottom:342.906667pt;}
.yab{bottom:346.426667pt;}
.ybc{bottom:346.826667pt;}
.y4d{bottom:350.506667pt;}
.y1e{bottom:350.586667pt;}
.ye4{bottom:350.906667pt;}
.y163{bottom:352.986667pt;}
.y13c{bottom:359.546667pt;}
.y185{bottom:361.306667pt;}
.ybb{bottom:362.426667pt;}
.y75{bottom:366.106667pt;}
.y1d{bottom:366.266667pt;}
.ye3{bottom:366.506667pt;}
.yfe{bottom:374.506667pt;}
.y13b{bottom:375.146667pt;}
.y162{bottom:376.586667pt;}
.y98{bottom:378.106667pt;}
.y74{bottom:381.786667pt;}
.y1c{bottom:381.866667pt;}
.y4c{bottom:382.106667pt;}
.y184{bottom:384.986667pt;}
.yfd{bottom:390.106667pt;}
.y97{bottom:393.706667pt;}
.y73{bottom:397.386667pt;}
.y1b{bottom:397.466667pt;}
.y4b{bottom:397.786667pt;}
.y13a{bottom:398.826667pt;}
.y161{bottom:400.266667pt;}
.y183{bottom:400.586667pt;}
.yfc{bottom:405.786667pt;}
.y96{bottom:409.306667pt;}
.y72{bottom:413.066667pt;}
.y1a{bottom:413.146667pt;}
.y4a{bottom:413.386667pt;}
.y139{bottom:414.426667pt;}
.y160{bottom:415.866667pt;}
.yfb{bottom:421.413333pt;}
.y182{bottom:424.293333pt;}
.y95{bottom:425.013333pt;}
.y19{bottom:428.773333pt;}
.y49{bottom:429.093333pt;}
.y11c{bottom:429.413333pt;}
.y71{bottom:437.013333pt;}
.yfa{bottom:437.093333pt;}
.y138{bottom:438.133333pt;}
.y15f{bottom:439.493333pt;}
.y94{bottom:440.613333pt;}
.yba{bottom:441.013333pt;}
.y18{bottom:444.373333pt;}
.ye2{bottom:444.693333pt;}
.y11b{bottom:445.093333pt;}
.y181{bottom:447.893333pt;}
.y48{bottom:453.013333pt;}
.y15e{bottom:455.173333pt;}
.yb9{bottom:456.613333pt;}
.y17{bottom:460.053333pt;}
.ye1{bottom:460.293333pt;}
.y11a{bottom:460.693333pt;}
.y137{bottom:461.733333pt;}
.y180{bottom:463.493333pt;}
.yaa{bottom:464.293333pt;}
.yf9{bottom:468.693333pt;}
.y93{bottom:472.293333pt;}
.y16{bottom:475.653333pt;}
.y119{bottom:476.293333pt;}
.y136{bottom:477.333333pt;}
.y15d{bottom:478.773333pt;}
.y70{bottom:479.893333pt;}
.yf8{bottom:484.293333pt;}
.y17f{bottom:487.173333pt;}
.y92{bottom:487.893333pt;}
.y15{bottom:491.333333pt;}
.ye0{bottom:491.973333pt;}
.y6f{bottom:495.493333pt;}
.y47{bottom:495.893333pt;}
.yf7{bottom:499.973333pt;}
.y135{bottom:501.013333pt;}
.y15c{bottom:502.453333pt;}
.y17e{bottom:502.773333pt;}
.y91{bottom:503.493333pt;}
.y14{bottom:506.933333pt;}
.ydf{bottom:507.573333pt;}
.y6e{bottom:511.173333pt;}
.y46{bottom:511.493333pt;}
.yf6{bottom:515.573333pt;}
.y90{bottom:519.173333pt;}
.y13{bottom:522.533333pt;}
.yde{bottom:523.253333pt;}
.y118{bottom:523.573333pt;}
.y134{bottom:524.613333pt;}
.y15b{bottom:526.053333pt;}
.y17d{bottom:526.453333pt;}
.y6d{bottom:526.773333pt;}
.y45{bottom:527.173333pt;}
.yf5{bottom:531.253333pt;}
.y8f{bottom:534.773333pt;}
.y12{bottom:538.213333pt;}
.ydd{bottom:538.853333pt;}
.y117{bottom:539.253333pt;}
.y15a{bottom:541.653333pt;}
.y44{bottom:542.773333pt;}
.yf4{bottom:546.853333pt;}
.y133{bottom:548.293333pt;}
.y17c{bottom:550.053333pt;}
.y11{bottom:553.813333pt;}
.ydc{bottom:554.453333pt;}
.y116{bottom:554.853333pt;}
.y6c{bottom:558.453333pt;}
.y132{bottom:563.893333pt;}
.y159{bottom:565.333333pt;}
.y17b{bottom:565.653333pt;}
.y10{bottom:569.493333pt;}
.ydb{bottom:570.133333pt;}
.y115{bottom:570.453333pt;}
.y6b{bottom:574.053333pt;}
.y43{bottom:574.453333pt;}
.yf3{bottom:578.453333pt;}
.y158{bottom:580.933333pt;}
.yf{bottom:585.093333pt;}
.yda{bottom:585.733333pt;}
.y114{bottom:586.133333pt;}
.y131{bottom:587.493333pt;}
.y17a{bottom:589.333333pt;}
.y6a{bottom:589.653333pt;}
.y42{bottom:590.053333pt;}
.yf2{bottom:594.133333pt;}
.y113{bottom:601.733333pt;}
.y130{bottom:603.173333pt;}
.y157{bottom:604.613333pt;}
.y179{bottom:604.933333pt;}
.y69{bottom:605.333333pt;}
.y41{bottom:605.653333pt;}
.ye{bottom:609.013333pt;}
.yd9{bottom:609.413333pt;}
.yf1{bottom:609.733333pt;}
.y156{bottom:620.213333pt;}
.y68{bottom:620.933333pt;}
.y40{bottom:621.333333pt;}
.yf0{bottom:625.413333pt;}
.y12f{bottom:626.773333pt;}
.y178{bottom:628.613333pt;}
.y112{bottom:633.413333pt;}
.y3f{bottom:636.933333pt;}
.yd8{bottom:641.013333pt;}
.y155{bottom:643.813333pt;}
.y177{bottom:644.213333pt;}
.y111{bottom:649.013333pt;}
.yef{bottom:649.333333pt;}
.y12e{bottom:650.373333pt;}
.yd{bottom:651.893333pt;}
.y67{bottom:652.613333pt;}
.yd7{bottom:656.613333pt;}
.y110{bottom:664.613333pt;}
.y12d{bottom:666.053333pt;}
.y154{bottom:667.493333pt;}
.y176{bottom:667.813333pt;}
.y66{bottom:668.213333pt;}
.y3e{bottom:668.613333pt;}
.yd6{bottom:672.293333pt;}
.y10f{bottom:680.293333pt;}
.yc{bottom:683.733333pt;}
.y65{bottom:683.813333pt;}
.y3d{bottom:684.213333pt;}
.yd5{bottom:687.893333pt;}
.y12c{bottom:689.653333pt;}
.y153{bottom:691.093333pt;}
.y175{bottom:691.493333pt;}
.ya9{bottom:691.813333pt;}
.yee{bottom:692.213333pt;}
.y10e{bottom:695.893333pt;}
.y64{bottom:699.493333pt;}
.y3c{bottom:699.813333pt;}
.yd4{bottom:703.573333pt;}
.y152{bottom:706.693333pt;}
.y174{bottom:707.093333pt;}
.yed{bottom:707.813333pt;}
.y12b{bottom:713.333333pt;}
.y3b{bottom:715.493333pt;}
.yb{bottom:715.733333pt;}
.yd3{bottom:719.173333pt;}
.ya8{bottom:723.493333pt;}
.y10d{bottom:727.573333pt;}
.y12a{bottom:728.933333pt;}
.y151{bottom:730.373333pt;}
.y173{bottom:730.693333pt;}
.y3a{bottom:731.093333pt;}
.ya7{bottom:739.093333pt;}
.y10c{bottom:743.173333pt;}
.y172{bottom:746.373333pt;}
.y63{bottom:746.693333pt;}
.yd2{bottom:750.773333pt;}
.ya{bottom:751.093333pt;}
.y129{bottom:752.533333pt;}
.y150{bottom:753.973333pt;}
.ya6{bottom:754.693333pt;}
.y10b{bottom:758.773333pt;}
.y62{bottom:762.373333pt;}
.y39{bottom:762.693333pt;}
.yd1{bottom:766.453333pt;}
.y9{bottom:767.093333pt;}
.y171{bottom:769.973333pt;}
.ya5{bottom:770.373333pt;}
.y10a{bottom:774.453333pt;}
.y128{bottom:776.213333pt;}
.y14f{bottom:777.653333pt;}
.y61{bottom:777.973333pt;}
.y38{bottom:778.373333pt;}
.yd0{bottom:782.053333pt;}
.y8{bottom:783.093333pt;}
.y8e{bottom:785.973333pt;}
.y109{bottom:790.053333pt;}
.y127{bottom:791.813333pt;}
.y14e{bottom:793.253333pt;}
.y60{bottom:793.653333pt;}
.y37{bottom:793.973333pt;}
.ycf{bottom:797.733333pt;}
.y7{bottom:799.093333pt;}
.yec{bottom:801.653333pt;}
.yb8{bottom:801.973333pt;}
.y108{bottom:805.733333pt;}
.y170{bottom:809.253333pt;}
.y36{bottom:809.653333pt;}
.yce{bottom:813.333333pt;}
.y6{bottom:815.093333pt;}
.y126{bottom:815.493333pt;}
.y14d{bottom:816.853333pt;}
.yeb{bottom:817.253333pt;}
.y8d{bottom:817.653333pt;}
.y35{bottom:825.253333pt;}
.ycd{bottom:828.933333pt;}
.y125{bottom:831.093333pt;}
.y14c{bottom:832.533333pt;}
.y16f{bottom:832.853333pt;}
.y8c{bottom:833.253333pt;}
.y107{bottom:837.333333pt;}
.y5f{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y8b{bottom:848.853333pt;}
.ycc{bottom:852.613333pt;}
.y106{bottom:852.933333pt;}
.y124{bottom:854.693333pt;}
.y14b{bottom:856.133333pt;}
.y5e{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y8a{bottom:864.533333pt;}
.y105{bottom:868.613333pt;}
.y5d{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.y123{bottom:878.373333pt;}
.y14a{bottom:879.813333pt;}
.y89{bottom:880.133333pt;}
.ycb{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y88{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y122{bottom:902.320000pt;}
.y149{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.yea{bottom:911.440000pt;}
.yb7{bottom:911.840000pt;}
.yca{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.y104{bottom:923.760000pt;}
.ye9{bottom:927.040000pt;}
.y87{bottom:927.440000pt;}
.yc9{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.ya4{bottom:935.440000pt;}
.y86{bottom:943.040000pt;}
.y121{bottom:945.200000pt;}
.y5c{bottom:950.720000pt;}
.ya3{bottom:951.040000pt;}
.yc8{bottom:955.040000pt;}
.y85{bottom:958.720000pt;}
.y2e{bottom:966.720000pt;}
.y120{bottom:969.120000pt;}
.y84{bottom:974.320000pt;}
.y2d{bottom:982.320000pt;}
.y83{bottom:990.000000pt;}
.y2c{bottom:998.000000pt;}
.y11f{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:98.879988pt;}
.x2{left:223.786655pt;}
.x3{left:711.413322pt;}
}




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