
    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_5de7d9c3fd87d0d6a5a5c827.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3ff5664a0a757bd80ef48196.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b01f7a4da826ceaba12f940.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708008;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_08420f251d7701ce94e1d39b.woff')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_4d5720460a235aa547168ebf.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_810b7e2434fc775b5cd45ee4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_429eca8f34e04c90afe226d9.woff')format("woff");}.ff8{font-family:ff8;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lse{letter-spacing:-0.299400px;}
.ls17{letter-spacing:-0.243600px;}
.lsc{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls11{letter-spacing:-0.011160px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls5{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048960px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.113400px;}
.ls10{letter-spacing:0.116400px;}
.ls15{letter-spacing:0.116760px;}
.ls7{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.181200px;}
.lsf{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:6.026400px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-65.880000px;}
.ws4{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.wsf{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.339800px;}
.wsc{word-spacing:-13.324800px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.215240px;}
.ws10{word-spacing:-13.065600px;}
.ws6{word-spacing:-13.039800px;}
.wse{word-spacing:-12.982800px;}
.ws8{word-spacing:-12.927000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
._18{margin-left:-4.276377px;}
._a{margin-left:-3.250816px;}
._9{margin-left:-2.224200px;}
._0{margin-left:-1.032000px;}
._2{width:1.054212px;}
._3{width:2.093245px;}
._7{width:3.367655px;}
._8{width:4.422514px;}
._6{width:5.530800px;}
._e{width:6.733440px;}
._b{width:8.356800px;}
._4{width:9.679200px;}
._5{width:11.295240px;}
._14{width:14.739120px;}
._13{width:15.871680px;}
._16{width:17.670960px;}
._d{width:19.159560px;}
._12{width:20.219040px;}
._1a{width:21.402720px;}
._19{width:22.424760px;}
._15{width:24.528960px;}
._c{width:26.955720px;}
._17{width:30.323400px;}
._1{width:40.946400px;}
._11{width:54.620988px;}
._10{width:133.492668px;}
._f{width:134.505720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs6{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.830000px;}
.y64{bottom:7.860000px;}
.y61{bottom:7.920000px;}
.y4{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y3{bottom:101.640000px;}
.y5d{bottom:126.570000px;}
.y100{bottom:130.170000px;}
.y128{bottom:136.740000px;}
.y5c{bottom:144.120000px;}
.yff{bottom:147.720000px;}
.y98{bottom:151.770000px;}
.y127{bottom:154.290000px;}
.yd3{bottom:161.220000px;}
.y5b{bottom:161.670000px;}
.yfe{bottom:165.270000px;}
.yb9{bottom:168.510000px;}
.y29{bottom:174.090000px;}
.yd2{bottom:178.860000px;}
.y5a{bottom:179.310000px;}
.y126{bottom:180.840000px;}
.yfd{bottom:182.910000px;}
.y7c{bottom:185.160000px;}
.y97{bottom:187.410000px;}
.y28{bottom:191.730000px;}
.yd1{bottom:196.410000px;}
.y59{bottom:196.860000px;}
.y125{bottom:198.480000px;}
.yfc{bottom:200.460000px;}
.yb8{bottom:204.150000px;}
.y27{bottom:209.280000px;}
.yd0{bottom:214.050000px;}
.y58{bottom:214.500000px;}
.y7b{bottom:217.380000px;}
.yfb{bottom:218.100000px;}
.y148{bottom:221.250000px;}
.yb7{bottom:221.700000px;}
.y96{bottom:222.960000px;}
.y124{bottom:225.030000px;}
.y26{bottom:226.830000px;}
.ycf{bottom:231.600000px;}
.y57{bottom:232.050000px;}
.yfa{bottom:235.650000px;}
.y147{bottom:238.800000px;}
.yb6{bottom:239.250000px;}
.y25{bottom:244.470000px;}
.y56{bottom:249.600000px;}
.y123{bottom:251.580000px;}
.yb5{bottom:256.890000px;}
.y95{bottom:258.510000px;}
.y146{bottom:265.440000px;}
.yce{bottom:267.150000px;}
.y122{bottom:269.220000px;}
.yf9{bottom:271.200000px;}
.yb4{bottom:274.440000px;}
.y94{bottom:276.150000px;}
.y55{bottom:276.510000px;}
.y24{bottom:280.020000px;}
.y145{bottom:282.990000px;}
.ycd{bottom:284.790000px;}
.yf8{bottom:288.840000px;}
.yb3{bottom:292.080000px;}
.y93{bottom:293.700000px;}
.y121{bottom:295.770000px;}
.y23{bottom:297.660000px;}
.ycc{bottom:302.340000px;}
.yf7{bottom:306.390000px;}
.y144{bottom:309.540000px;}
.y92{bottom:311.340000px;}
.y120{bottom:313.410000px;}
.y22{bottom:315.210000px;}
.ycb{bottom:319.980000px;}
.yf6{bottom:323.940000px;}
.y54{bottom:324.840000px;}
.yb2{bottom:325.020000px;}
.y143{bottom:327.180000px;}
.y91{bottom:328.890000px;}
.y21{bottom:332.760000px;}
.yca{bottom:337.530000px;}
.y11f{bottom:340.320000px;}
.yf5{bottom:341.580000px;}
.y53{bottom:342.390000px;}
.y90{bottom:346.440000px;}
.y20{bottom:350.400000px;}
.yb1{bottom:352.380000px;}
.y142{bottom:353.730000px;}
.yf4{bottom:359.130000px;}
.y52{bottom:359.940000px;}
.y1f{bottom:367.950000px;}
.yc9{bottom:370.470000px;}
.y141{bottom:371.370000px;}
.yf3{bottom:376.770000px;}
.y51{bottom:377.580000px;}
.yb0{bottom:379.650000px;}
.y8f{bottom:382.080000px;}
.y1e{bottom:385.590000px;}
.y11e{bottom:388.560000px;}
.yf2{bottom:394.320000px;}
.yc8{bottom:397.830000px;}
.y140{bottom:397.920000px;}
.y8e{bottom:399.630000px;}
.yaf{bottom:407.010000px;}
.yf1{bottom:411.870000px;}
.y1d{bottom:412.410000px;}
.y50{bottom:413.130000px;}
.y11d{bottom:415.470000px;}
.y8d{bottom:417.270000px;}
.yc7{bottom:425.190000px;}
.y4f{bottom:430.770000px;}
.yae{bottom:434.370000px;}
.y8c{bottom:434.820000px;}
.y13f{bottom:442.110000px;}
.yf0{bottom:447.510000px;}
.y4e{bottom:448.320000px;}
.yc6{bottom:452.550000px;}
.y11c{bottom:452.820000px;}
.y13e{bottom:459.660000px;}
.y1c{bottom:461.010000px;}
.yad{bottom:461.730000px;}
.yef{bottom:465.060000px;}
.y8b{bottom:469.650000px;}
.yc5{bottom:479.850000px;}
.y8a{bottom:481.920000px;}
.yee{bottom:482.730000px;}
.y4d{bottom:483.900000px;}
.y13d{bottom:486.330000px;}
.y1b{bottom:498.120000px;}
.yed{bottom:500.280000px;}
.y11b{bottom:501.090000px;}
.y4c{bottom:501.540000px;}
.y13c{bottom:503.880000px;}
.y89{bottom:509.190000px;}
.yac{bottom:510.450000px;}
.y7a{bottom:514.860000px;}
.y1a{bottom:515.670000px;}
.yec{bottom:517.830000px;}
.y11a{bottom:518.730000px;}
.y4b{bottom:519.090000px;}
.yc4{bottom:528.540000px;}
.y13b{bottom:530.430000px;}
.y79{bottom:532.410000px;}
.y19{bottom:533.310000px;}
.yeb{bottom:535.470000px;}
.y119{bottom:536.280000px;}
.y88{bottom:536.550000px;}
.y4a{bottom:536.730000px;}
.yab{bottom:545.280000px;}
.y13a{bottom:548.070000px;}
.y78{bottom:549.960000px;}
.y18{bottom:550.860000px;}
.yea{bottom:553.020000px;}
.y118{bottom:553.830000px;}
.y49{bottom:554.280000px;}
.yaa{bottom:557.430000px;}
.y87{bottom:563.910000px;}
.yc3{bottom:564.180000px;}
.y77{bottom:567.600000px;}
.y17{bottom:568.410000px;}
.ye9{bottom:570.660000px;}
.y117{bottom:571.470000px;}
.y48{bottom:571.830000px;}
.y139{bottom:574.620000px;}
.yc2{bottom:581.730000px;}
.ya9{bottom:584.790000px;}
.y76{bottom:585.150000px;}
.y16{bottom:586.050000px;}
.ye8{bottom:588.210000px;}
.y116{bottom:589.020000px;}
.y47{bottom:589.470000px;}
.y86{bottom:591.180000px;}
.y138{bottom:592.260000px;}
.yc1{bottom:599.370000px;}
.y75{bottom:602.700000px;}
.y15{bottom:603.600000px;}
.ye7{bottom:605.760000px;}
.y115{bottom:606.660000px;}
.y46{bottom:607.020000px;}
.ya8{bottom:612.150000px;}
.yc0{bottom:616.920000px;}
.y85{bottom:618.540000px;}
.y137{bottom:618.810000px;}
.y74{bottom:620.340000px;}
.y14{bottom:621.240000px;}
.ye6{bottom:623.400000px;}
.y114{bottom:624.210000px;}
.y45{bottom:624.660000px;}
.ybf{bottom:634.470000px;}
.y136{bottom:636.360000px;}
.y73{bottom:637.890000px;}
.y13{bottom:638.790000px;}
.ya7{bottom:639.420000px;}
.ye5{bottom:640.950000px;}
.y113{bottom:641.760000px;}
.y44{bottom:642.210000px;}
.y84{bottom:645.900000px;}
.y12{bottom:656.340000px;}
.y135{bottom:663.000000px;}
.ye4{bottom:667.860000px;}
.y112{bottom:668.670000px;}
.ybe{bottom:669.390000px;}
.y83{bottom:673.260000px;}
.y72{bottom:673.530000px;}
.y11{bottom:673.980000px;}
.y43{bottom:677.760000px;}
.ybd{bottom:681.540000px;}
.ya6{bottom:688.200000px;}
.y134{bottom:689.550000px;}
.y71{bottom:691.080000px;}
.y10{bottom:691.530000px;}
.y42{bottom:695.400000px;}
.y82{bottom:700.530000px;}
.y133{bottom:707.190000px;}
.y70{bottom:708.630000px;}
.ybc{bottom:708.900000px;}
.y41{bottom:712.950000px;}
.ye3{bottom:716.190000px;}
.y111{bottom:717.000000px;}
.yf{bottom:718.440000px;}
.ya5{bottom:723.750000px;}
.y6f{bottom:726.270000px;}
.y81{bottom:727.890000px;}
.y40{bottom:730.590000px;}
.ye2{bottom:733.740000px;}
.y110{bottom:734.550000px;}
.ybb{bottom:736.170000px;}
.ya4{bottom:741.300000px;}
.y6e{bottom:743.820000px;}
.y3f{bottom:748.140000px;}
.ye1{bottom:751.290000px;}
.y10f{bottom:752.190000px;}
.ya3{bottom:758.940000px;}
.y132{bottom:760.290000px;}
.yba{bottom:763.530000px;}
.y3e{bottom:765.690000px;}
.ye{bottom:766.680000px;}
.y10e{bottom:769.740000px;}
.ya2{bottom:776.490000px;}
.y80{bottom:776.580000px;}
.y131{bottom:777.930000px;}
.y6d{bottom:778.740000px;}
.y3d{bottom:783.330000px;}
.ye0{bottom:786.930000px;}
.y10d{bottom:787.290000px;}
.y6c{bottom:790.890000px;}
.ya1{bottom:794.130000px;}
.yd{bottom:802.500000px;}
.ydf{bottom:804.480000px;}
.ya0{bottom:811.680000px;}
.y7f{bottom:812.220000px;}
.y6b{bottom:818.250000px;}
.y3c{bottom:818.880000px;}
.yde{bottom:822.030000px;}
.y10c{bottom:822.930000px;}
.y9f{bottom:829.230000px;}
.y3b{bottom:836.520000px;}
.yc{bottom:838.500000px;}
.ydd{bottom:839.670000px;}
.y10b{bottom:840.480000px;}
.y6a{bottom:845.520000px;}
.y9e{bottom:846.870000px;}
.y7e{bottom:847.770000px;}
.y130{bottom:848.670000px;}
.y3a{bottom:854.070000px;}
.y10a{bottom:858.030000px;}
.y12f{bottom:866.220000px;}
.y39{bottom:871.620000px;}
.y69{bottom:872.880000px;}
.yb{bottom:874.500000px;}
.ydc{bottom:875.220000px;}
.y109{bottom:875.670000px;}
.y7d{bottom:879.990000px;}
.y9d{bottom:882.420000px;}
.y38{bottom:889.260000px;}
.ydb{bottom:892.860000px;}
.y108{bottom:893.220000px;}
.y9c{bottom:900.060000px;}
.y68{bottom:900.240000px;}
.y37{bottom:906.810000px;}
.yda{bottom:910.410000px;}
.ya{bottom:910.590000px;}
.y107{bottom:910.860000px;}
.y9b{bottom:917.610000px;}
.y36{bottom:924.450000px;}
.y67{bottom:927.600000px;}
.y106{bottom:928.410000px;}
.y9{bottom:929.940000px;}
.y9a{bottom:935.160000px;}
.y12e{bottom:936.960000px;}
.y35{bottom:942.000000px;}
.yd9{bottom:945.960000px;}
.y8{bottom:949.290000px;}
.y12d{bottom:954.600000px;}
.y66{bottom:954.870000px;}
.y34{bottom:959.550000px;}
.yd8{bottom:963.600000px;}
.y105{bottom:963.960000px;}
.y99{bottom:970.080000px;}
.y33{bottom:977.190000px;}
.yd7{bottom:981.150000px;}
.y104{bottom:981.600000px;}
.y65{bottom:982.230000px;}
.y7{bottom:987.630000px;}
.y12c{bottom:998.790000px;}
.y103{bottom:999.150000px;}
.y32{bottom:1004.100000px;}
.y63{bottom:1009.590000px;}
.y6{bottom:1012.320000px;}
.yd6{bottom:1016.820000px;}
.y12b{bottom:1025.370000px;}
.yd5{bottom:1034.370000px;}
.y62{bottom:1036.890000px;}
.y12a{bottom:1042.920000px;}
.y5{bottom:1050.210000px;}
.yd4{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y60{bottom:1064.250000px;}
.y102{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y2{bottom:1071.450000px;}
.y1{bottom:1075.770000px;}
.y101{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y5e{bottom:1091.610000px;}
.y2e{bottom:1105.110000px;}
.y129{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:15.662109px;}
.hb{height:26.550000px;}
.he{height:26.580000px;}
.hd{height:26.640000px;}
.h3{height:30.022383px;}
.h4{height:39.155273px;}
.hf{height:41.661211px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h10{height:61.793886px;}
.ha{height:68.582109px;}
.h6{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w10{width:43.470000px;}
.wb{width:43.560000px;}
.w3{width:51.390000px;}
.wd{width:67.050000px;}
.w5{width:79.200000px;}
.wc{width:88.410000px;}
.wa{width:89.370000px;}
.w12{width:89.910000px;}
.w13{width:99.540000px;}
.w15{width:104.850000px;}
.w4{width:105.750000px;}
.w11{width:107.190000px;}
.w17{width:108.180000px;}
.w14{width:118.290000px;}
.w6{width:122.610000px;}
.w9{width:134.100000px;}
.w7{width:141.210000px;}
.wf{width:145.710000px;}
.w18{width:147.180000px;}
.w16{width:306.930000px;}
.we{width:425.370000px;}
.w8{width:503.130000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x2{left:68.040000px;}
.x23{left:111.239987px;}
.xe{left:123.659987px;}
.x1e{left:186.060000px;}
.x4{left:192.719987px;}
.x6{left:195.060000px;}
.x3{left:212.070000px;}
.x10{left:233.940000px;}
.xc{left:242.489987px;}
.x8{left:247.170000px;}
.x16{left:273.180000px;}
.x1a{left:292.440000px;}
.x15{left:319.169987px;}
.x9{left:353.730000px;}
.x11{left:368.760000px;}
.x1f{left:383.160000px;}
.x1b{left:400.350000px;}
.x17{left:419.700000px;}
.x22{left:427.530000px;}
.xa{left:433.650000px;}
.x1c{left:444.630000px;}
.x12{left:458.850000px;}
.x18{left:463.890000px;}
.x20{left:483.420000px;}
.x13{left:503.130000px;}
.x1d{left:533.760000px;}
.x19{left:553.020000px;}
.xb{left:556.980000px;}
.x14{left:592.260000px;}
.x21{left:602.430000px;}
.x5{left:800.339987px;}
.xd{left:811.139987px;}
.xf{left:817.889987px;}
.x1{left:826.350000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lse{letter-spacing:-0.266133pt;}
.ls17{letter-spacing:-0.216533pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls11{letter-spacing:-0.009920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls5{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.043520pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.100800pt;}
.ls10{letter-spacing:0.103467pt;}
.ls15{letter-spacing:0.103787pt;}
.ls7{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.161067pt;}
.lsf{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:5.356800pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws2{word-spacing:-58.560000pt;}
.ws4{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.wsf{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.857600pt;}
.wsc{word-spacing:-11.844267pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.746880pt;}
.ws10{word-spacing:-11.613867pt;}
.ws6{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.540267pt;}
.ws8{word-spacing:-11.490667pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
._18{margin-left:-3.801224pt;}
._a{margin-left:-2.889614pt;}
._9{margin-left:-1.977066pt;}
._0{margin-left:-0.917333pt;}
._2{width:0.937077pt;}
._3{width:1.860662pt;}
._7{width:2.993471pt;}
._8{width:3.931123pt;}
._6{width:4.916266pt;}
._e{width:5.985280pt;}
._b{width:7.428267pt;}
._4{width:8.603733pt;}
._5{width:10.040214pt;}
._14{width:13.101440pt;}
._13{width:14.108160pt;}
._16{width:15.707520pt;}
._d{width:17.030720pt;}
._12{width:17.972480pt;}
._1a{width:19.024640pt;}
._19{width:19.933120pt;}
._15{width:21.803520pt;}
._c{width:23.960640pt;}
._17{width:26.954133pt;}
._1{width:36.396800pt;}
._11{width:48.551989pt;}
._10{width:118.660149pt;}
._f{width:119.560640pt;}
.fs0{font-size:16.000000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs6{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.960000pt;}
.y64{bottom:6.986667pt;}
.y61{bottom:7.040000pt;}
.y4{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y3{bottom:90.346667pt;}
.y5d{bottom:112.506667pt;}
.y100{bottom:115.706667pt;}
.y128{bottom:121.546667pt;}
.y5c{bottom:128.106667pt;}
.yff{bottom:131.306667pt;}
.y98{bottom:134.906667pt;}
.y127{bottom:137.146667pt;}
.yd3{bottom:143.306667pt;}
.y5b{bottom:143.706667pt;}
.yfe{bottom:146.906667pt;}
.yb9{bottom:149.786667pt;}
.y29{bottom:154.746667pt;}
.yd2{bottom:158.986667pt;}
.y5a{bottom:159.386667pt;}
.y126{bottom:160.746667pt;}
.yfd{bottom:162.586667pt;}
.y7c{bottom:164.586667pt;}
.y97{bottom:166.586667pt;}
.y28{bottom:170.426667pt;}
.yd1{bottom:174.586667pt;}
.y59{bottom:174.986667pt;}
.y125{bottom:176.426667pt;}
.yfc{bottom:178.186667pt;}
.yb8{bottom:181.466667pt;}
.y27{bottom:186.026667pt;}
.yd0{bottom:190.266667pt;}
.y58{bottom:190.666667pt;}
.y7b{bottom:193.226667pt;}
.yfb{bottom:193.866667pt;}
.y148{bottom:196.666667pt;}
.yb7{bottom:197.066667pt;}
.y96{bottom:198.186667pt;}
.y124{bottom:200.026667pt;}
.y26{bottom:201.626667pt;}
.ycf{bottom:205.866667pt;}
.y57{bottom:206.266667pt;}
.yfa{bottom:209.466667pt;}
.y147{bottom:212.266667pt;}
.yb6{bottom:212.666667pt;}
.y25{bottom:217.306667pt;}
.y56{bottom:221.866667pt;}
.y123{bottom:223.626667pt;}
.yb5{bottom:228.346667pt;}
.y95{bottom:229.786667pt;}
.y146{bottom:235.946667pt;}
.yce{bottom:237.466667pt;}
.y122{bottom:239.306667pt;}
.yf9{bottom:241.066667pt;}
.yb4{bottom:243.946667pt;}
.y94{bottom:245.466667pt;}
.y55{bottom:245.786667pt;}
.y24{bottom:248.906667pt;}
.y145{bottom:251.546667pt;}
.ycd{bottom:253.146667pt;}
.yf8{bottom:256.746667pt;}
.yb3{bottom:259.626667pt;}
.y93{bottom:261.066667pt;}
.y121{bottom:262.906667pt;}
.y23{bottom:264.586667pt;}
.ycc{bottom:268.746667pt;}
.yf7{bottom:272.346667pt;}
.y144{bottom:275.146667pt;}
.y92{bottom:276.746667pt;}
.y120{bottom:278.586667pt;}
.y22{bottom:280.186667pt;}
.ycb{bottom:284.426667pt;}
.yf6{bottom:287.946667pt;}
.y54{bottom:288.746667pt;}
.yb2{bottom:288.906667pt;}
.y143{bottom:290.826667pt;}
.y91{bottom:292.346667pt;}
.y21{bottom:295.786667pt;}
.yca{bottom:300.026667pt;}
.y11f{bottom:302.506667pt;}
.yf5{bottom:303.626667pt;}
.y53{bottom:304.346667pt;}
.y90{bottom:307.946667pt;}
.y20{bottom:311.466667pt;}
.yb1{bottom:313.226667pt;}
.y142{bottom:314.426667pt;}
.yf4{bottom:319.226667pt;}
.y52{bottom:319.946667pt;}
.y1f{bottom:327.066667pt;}
.yc9{bottom:329.306667pt;}
.y141{bottom:330.106667pt;}
.yf3{bottom:334.906667pt;}
.y51{bottom:335.626667pt;}
.yb0{bottom:337.466667pt;}
.y8f{bottom:339.626667pt;}
.y1e{bottom:342.746667pt;}
.y11e{bottom:345.386667pt;}
.yf2{bottom:350.506667pt;}
.yc8{bottom:353.626667pt;}
.y140{bottom:353.706667pt;}
.y8e{bottom:355.226667pt;}
.yaf{bottom:361.786667pt;}
.yf1{bottom:366.106667pt;}
.y1d{bottom:366.586667pt;}
.y50{bottom:367.226667pt;}
.y11d{bottom:369.306667pt;}
.y8d{bottom:370.906667pt;}
.yc7{bottom:377.946667pt;}
.y4f{bottom:382.906667pt;}
.yae{bottom:386.106667pt;}
.y8c{bottom:386.506667pt;}
.y13f{bottom:392.986667pt;}
.yf0{bottom:397.786667pt;}
.y4e{bottom:398.506667pt;}
.yc6{bottom:402.266667pt;}
.y11c{bottom:402.506667pt;}
.y13e{bottom:408.586667pt;}
.y1c{bottom:409.786667pt;}
.yad{bottom:410.426667pt;}
.yef{bottom:413.386667pt;}
.y8b{bottom:417.466667pt;}
.yc5{bottom:426.533333pt;}
.y8a{bottom:428.373333pt;}
.yee{bottom:429.093333pt;}
.y4d{bottom:430.133333pt;}
.y13d{bottom:432.293333pt;}
.y1b{bottom:442.773333pt;}
.yed{bottom:444.693333pt;}
.y11b{bottom:445.413333pt;}
.y4c{bottom:445.813333pt;}
.y13c{bottom:447.893333pt;}
.y89{bottom:452.613333pt;}
.yac{bottom:453.733333pt;}
.y7a{bottom:457.653333pt;}
.y1a{bottom:458.373333pt;}
.yec{bottom:460.293333pt;}
.y11a{bottom:461.093333pt;}
.y4b{bottom:461.413333pt;}
.yc4{bottom:469.813333pt;}
.y13b{bottom:471.493333pt;}
.y79{bottom:473.253333pt;}
.y19{bottom:474.053333pt;}
.yeb{bottom:475.973333pt;}
.y119{bottom:476.693333pt;}
.y88{bottom:476.933333pt;}
.y4a{bottom:477.093333pt;}
.yab{bottom:484.693333pt;}
.y13a{bottom:487.173333pt;}
.y78{bottom:488.853333pt;}
.y18{bottom:489.653333pt;}
.yea{bottom:491.573333pt;}
.y118{bottom:492.293333pt;}
.y49{bottom:492.693333pt;}
.yaa{bottom:495.493333pt;}
.y87{bottom:501.253333pt;}
.yc3{bottom:501.493333pt;}
.y77{bottom:504.533333pt;}
.y17{bottom:505.253333pt;}
.ye9{bottom:507.253333pt;}
.y117{bottom:507.973333pt;}
.y48{bottom:508.293333pt;}
.y139{bottom:510.773333pt;}
.yc2{bottom:517.093333pt;}
.ya9{bottom:519.813333pt;}
.y76{bottom:520.133333pt;}
.y16{bottom:520.933333pt;}
.ye8{bottom:522.853333pt;}
.y116{bottom:523.573333pt;}
.y47{bottom:523.973333pt;}
.y86{bottom:525.493333pt;}
.y138{bottom:526.453333pt;}
.yc1{bottom:532.773333pt;}
.y75{bottom:535.733333pt;}
.y15{bottom:536.533333pt;}
.ye7{bottom:538.453333pt;}
.y115{bottom:539.253333pt;}
.y46{bottom:539.573333pt;}
.ya8{bottom:544.133333pt;}
.yc0{bottom:548.373333pt;}
.y85{bottom:549.813333pt;}
.y137{bottom:550.053333pt;}
.y74{bottom:551.413333pt;}
.y14{bottom:552.213333pt;}
.ye6{bottom:554.133333pt;}
.y114{bottom:554.853333pt;}
.y45{bottom:555.253333pt;}
.ybf{bottom:563.973333pt;}
.y136{bottom:565.653333pt;}
.y73{bottom:567.013333pt;}
.y13{bottom:567.813333pt;}
.ya7{bottom:568.373333pt;}
.ye5{bottom:569.733333pt;}
.y113{bottom:570.453333pt;}
.y44{bottom:570.853333pt;}
.y84{bottom:574.133333pt;}
.y12{bottom:583.413333pt;}
.y135{bottom:589.333333pt;}
.ye4{bottom:593.653333pt;}
.y112{bottom:594.373333pt;}
.ybe{bottom:595.013333pt;}
.y83{bottom:598.453333pt;}
.y72{bottom:598.693333pt;}
.y11{bottom:599.093333pt;}
.y43{bottom:602.453333pt;}
.ybd{bottom:605.813333pt;}
.ya6{bottom:611.733333pt;}
.y134{bottom:612.933333pt;}
.y71{bottom:614.293333pt;}
.y10{bottom:614.693333pt;}
.y42{bottom:618.133333pt;}
.y82{bottom:622.693333pt;}
.y133{bottom:628.613333pt;}
.y70{bottom:629.893333pt;}
.ybc{bottom:630.133333pt;}
.y41{bottom:633.733333pt;}
.ye3{bottom:636.613333pt;}
.y111{bottom:637.333333pt;}
.yf{bottom:638.613333pt;}
.ya5{bottom:643.333333pt;}
.y6f{bottom:645.573333pt;}
.y81{bottom:647.013333pt;}
.y40{bottom:649.413333pt;}
.ye2{bottom:652.213333pt;}
.y110{bottom:652.933333pt;}
.ybb{bottom:654.373333pt;}
.ya4{bottom:658.933333pt;}
.y6e{bottom:661.173333pt;}
.y3f{bottom:665.013333pt;}
.ye1{bottom:667.813333pt;}
.y10f{bottom:668.613333pt;}
.ya3{bottom:674.613333pt;}
.y132{bottom:675.813333pt;}
.yba{bottom:678.693333pt;}
.y3e{bottom:680.613333pt;}
.ye{bottom:681.493333pt;}
.y10e{bottom:684.213333pt;}
.ya2{bottom:690.213333pt;}
.y80{bottom:690.293333pt;}
.y131{bottom:691.493333pt;}
.y6d{bottom:692.213333pt;}
.y3d{bottom:696.293333pt;}
.ye0{bottom:699.493333pt;}
.y10d{bottom:699.813333pt;}
.y6c{bottom:703.013333pt;}
.ya1{bottom:705.893333pt;}
.yd{bottom:713.333333pt;}
.ydf{bottom:715.093333pt;}
.ya0{bottom:721.493333pt;}
.y7f{bottom:721.973333pt;}
.y6b{bottom:727.333333pt;}
.y3c{bottom:727.893333pt;}
.yde{bottom:730.693333pt;}
.y10c{bottom:731.493333pt;}
.y9f{bottom:737.093333pt;}
.y3b{bottom:743.573333pt;}
.yc{bottom:745.333333pt;}
.ydd{bottom:746.373333pt;}
.y10b{bottom:747.093333pt;}
.y6a{bottom:751.573333pt;}
.y9e{bottom:752.773333pt;}
.y7e{bottom:753.573333pt;}
.y130{bottom:754.373333pt;}
.y3a{bottom:759.173333pt;}
.y10a{bottom:762.693333pt;}
.y12f{bottom:769.973333pt;}
.y39{bottom:774.773333pt;}
.y69{bottom:775.893333pt;}
.yb{bottom:777.333333pt;}
.ydc{bottom:777.973333pt;}
.y109{bottom:778.373333pt;}
.y7d{bottom:782.213333pt;}
.y9d{bottom:784.373333pt;}
.y38{bottom:790.453333pt;}
.ydb{bottom:793.653333pt;}
.y108{bottom:793.973333pt;}
.y9c{bottom:800.053333pt;}
.y68{bottom:800.213333pt;}
.y37{bottom:806.053333pt;}
.yda{bottom:809.253333pt;}
.ya{bottom:809.413333pt;}
.y107{bottom:809.653333pt;}
.y9b{bottom:815.653333pt;}
.y36{bottom:821.733333pt;}
.y67{bottom:824.533333pt;}
.y106{bottom:825.253333pt;}
.y9{bottom:826.613333pt;}
.y9a{bottom:831.253333pt;}
.y12e{bottom:832.853333pt;}
.y35{bottom:837.333333pt;}
.yd9{bottom:840.853333pt;}
.y8{bottom:843.813333pt;}
.y12d{bottom:848.533333pt;}
.y66{bottom:848.773333pt;}
.y34{bottom:852.933333pt;}
.yd8{bottom:856.533333pt;}
.y105{bottom:856.853333pt;}
.y99{bottom:862.293333pt;}
.y33{bottom:868.613333pt;}
.yd7{bottom:872.133333pt;}
.y104{bottom:872.533333pt;}
.y65{bottom:873.093333pt;}
.y7{bottom:877.893333pt;}
.y12c{bottom:887.813333pt;}
.y103{bottom:888.133333pt;}
.y32{bottom:892.533333pt;}
.y63{bottom:897.413333pt;}
.y6{bottom:899.840000pt;}
.yd6{bottom:903.840000pt;}
.y12b{bottom:911.440000pt;}
.yd5{bottom:919.440000pt;}
.y62{bottom:921.680000pt;}
.y12a{bottom:927.040000pt;}
.y5{bottom:933.520000pt;}
.yd4{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y60{bottom:946.000000pt;}
.y102{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y2{bottom:952.400000pt;}
.y1{bottom:956.240000pt;}
.y101{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y5e{bottom:970.320000pt;}
.y2e{bottom:982.320000pt;}
.y129{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:13.921875pt;}
.hb{height:23.600000pt;}
.he{height:23.626667pt;}
.hd{height:23.680000pt;}
.h3{height:26.686562pt;}
.h4{height:34.804688pt;}
.hf{height:37.032187pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h10{height:54.927899pt;}
.ha{height:60.961875pt;}
.h6{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w10{width:38.640000pt;}
.wb{width:38.720000pt;}
.w3{width:45.680000pt;}
.wd{width:59.600000pt;}
.w5{width:70.400000pt;}
.wc{width:78.586667pt;}
.wa{width:79.440000pt;}
.w12{width:79.920000pt;}
.w13{width:88.480000pt;}
.w15{width:93.200000pt;}
.w4{width:94.000000pt;}
.w11{width:95.280000pt;}
.w17{width:96.160000pt;}
.w14{width:105.146667pt;}
.w6{width:108.986667pt;}
.w9{width:119.200000pt;}
.w7{width:125.520000pt;}
.wf{width:129.520000pt;}
.w18{width:130.826667pt;}
.w16{width:272.826667pt;}
.we{width:378.106667pt;}
.w8{width:447.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x2{left:60.480000pt;}
.x23{left:98.879988pt;}
.xe{left:109.919988pt;}
.x1e{left:165.386667pt;}
.x4{left:171.306655pt;}
.x6{left:173.386667pt;}
.x3{left:188.506667pt;}
.x10{left:207.946667pt;}
.xc{left:215.546655pt;}
.x8{left:219.706667pt;}
.x16{left:242.826667pt;}
.x1a{left:259.946667pt;}
.x15{left:283.706655pt;}
.x9{left:314.426667pt;}
.x11{left:327.786667pt;}
.x1f{left:340.586667pt;}
.x1b{left:355.866667pt;}
.x17{left:373.066667pt;}
.x22{left:380.026667pt;}
.xa{left:385.466667pt;}
.x1c{left:395.226667pt;}
.x12{left:407.866667pt;}
.x18{left:412.346667pt;}
.x20{left:429.706667pt;}
.x13{left:447.226667pt;}
.x1d{left:474.453333pt;}
.x19{left:491.573333pt;}
.xb{left:495.093333pt;}
.x14{left:526.453333pt;}
.x21{left:535.493333pt;}
.x5{left:711.413322pt;}
.xd{left:721.013322pt;}
.xf{left:727.013322pt;}
.x1{left:734.533333pt;}
}




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