
    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_557b8ede9e6c165342493370.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3e1a1f11752c556e7828c451.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_99309e5df190b95ff8c864e3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_23395042de4eeea1b2f824cc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_1076414245cd78820d46ca8c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008789;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_5408ae9ec2730680b12b2be6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_e75af7c1f9d300d7eab96c7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_40c17984f6784a2785e9ef71.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9be9961db9d47816d7ac2645.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.ls5{letter-spacing:-0.457800px;}
.ls12{letter-spacing:-0.450600px;}
.ls11{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.072000px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.341280px;}
.lsc{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.880000px;}
.ls9{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.320000px;}
.ls14{letter-spacing:6.480000px;}
.ls15{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.ls7{letter-spacing:8.640000px;}
.ls16{letter-spacing:9.360000px;}
.ls8{letter-spacing:10.080000px;}
.ls17{letter-spacing:11.520000px;}
.lsb{letter-spacing:139.680000px;}
.lsd{letter-spacing:201.060000px;}
.lsf{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-15.226440px;}
.ws5{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.609400px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-17.376240px;}
._20{margin-left:-13.344240px;}
._21{margin-left:-9.384240px;}
._15{margin-left:-5.040000px;}
._c{margin-left:-3.960000px;}
._8{margin-left:-2.880000px;}
._0{margin-left:-1.267920px;}
._1{width:1.347840px;}
._9{width:2.393760px;}
._4{width:3.469920px;}
._a{width:5.472000px;}
._b{width:6.528000px;}
._7{width:8.208000px;}
._13{width:10.008000px;}
._14{width:11.304000px;}
._f{width:12.312000px;}
._e{width:13.464000px;}
._d{width:14.688000px;}
._11{width:15.696000px;}
._10{width:16.992000px;}
._6{width:19.819920px;}
._5{width:21.240000px;}
._12{width:22.536000px;}
._18{width:24.552000px;}
._19{width:26.064000px;}
._1a{width:27.500160px;}
._2{width:31.772160px;}
._29{width:36.936000px;}
._2a{width:38.520000px;}
._3{width:83.380080px;}
._16{width:89.976000px;}
._17{width:107.976000px;}
._27{width:119.352000px;}
._28{width:123.960000px;}
._22{width:134.543760px;}
._1c{width:139.968000px;}
._23{width:142.824000px;}
._1d{width:156.935760px;}
._26{width:159.672000px;}
._1f{width:198.000000px;}
._1b{width:204.455760px;}
._24{width:230.112000px;}
._25{width:846.156000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc6{color:rgb(13,13,13);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.ya{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.960000px;}
.ye5{bottom:4.005000px;}
.yb0{bottom:5.220000px;}
.yac{bottom:5.400000px;}
.y9{bottom:7.920000px;}
.yc7{bottom:14.400000px;}
.yb2{bottom:16.380000px;}
.y7{bottom:20.160000px;}
.yc0{bottom:24.660000px;}
.yae{bottom:27.360000px;}
.yb4{bottom:27.540000px;}
.ydd{bottom:27.720000px;}
.ye2{bottom:27.765000px;}
.y8{bottom:31.680000px;}
.ydc{bottom:48.420000px;}
.ye1{bottom:48.465000px;}
.yaf{bottom:49.500000px;}
.yb7{bottom:49.545000px;}
.yd8{bottom:52.200000px;}
.y6{bottom:58.896000px;}
.y102{bottom:76.134000px;}
.yfa{bottom:76.185000px;}
.y5{bottom:79.956000px;}
.y9e{bottom:113.076000px;}
.y101{bottom:114.156000px;}
.y5f{bottom:116.316000px;}
.y155{bottom:127.836000px;}
.y178{bottom:131.616000px;}
.y9d{bottom:133.776000px;}
.y5e{bottom:137.016000px;}
.y105{bottom:138.096000px;}
.y130{bottom:138.996000px;}
.y32{bottom:146.916000px;}
.y154{bottom:148.536000px;}
.y177{bottom:152.310000px;}
.y9c{bottom:154.470000px;}
.y5d{bottom:157.710000px;}
.y12f{bottom:159.690000px;}
.y104{bottom:162.210000px;}
.y31{bottom:167.610000px;}
.y153{bottom:169.230000px;}
.y15c{bottom:169.770000px;}
.yd4{bottom:172.470000px;}
.y176{bottom:173.010000px;}
.y9b{bottom:175.170000px;}
.y5c{bottom:178.410000px;}
.y12e{bottom:180.390000px;}
.y103{bottom:186.330000px;}
.y30{bottom:188.310000px;}
.y152{bottom:189.930000px;}
.y15b{bottom:190.470000px;}
.yd3{bottom:193.170000px;}
.y175{bottom:193.710000px;}
.y9a{bottom:195.870000px;}
.y5b{bottom:199.110000px;}
.y12d{bottom:201.090000px;}
.yaa{bottom:207.930000px;}
.y2f{bottom:209.010000px;}
.yff{bottom:210.450000px;}
.y151{bottom:210.630000px;}
.y15a{bottom:211.170000px;}
.yd2{bottom:213.870000px;}
.y174{bottom:214.410000px;}
.y99{bottom:216.570000px;}
.y5a{bottom:219.810000px;}
.y12c{bottom:221.790000px;}
.ya9{bottom:228.630000px;}
.y2e{bottom:229.710000px;}
.y159{bottom:231.870000px;}
.y100{bottom:234.390000px;}
.yd1{bottom:234.570000px;}
.y173{bottom:235.110000px;}
.y98{bottom:237.270000px;}
.y59{bottom:240.510000px;}
.y12b{bottom:242.490000px;}
.y150{bottom:243.210000px;}
.ya8{bottom:249.330000px;}
.y2d{bottom:250.410000px;}
.y158{bottom:252.570000px;}
.yd0{bottom:255.270000px;}
.y172{bottom:255.810000px;}
.y97{bottom:257.970000px;}
.y58{bottom:261.210000px;}
.y14f{bottom:263.910000px;}
.ya7{bottom:270.030000px;}
.y2c{bottom:271.110000px;}
.y157{bottom:273.270000px;}
.y12a{bottom:275.250000px;}
.ycf{bottom:275.970000px;}
.y171{bottom:276.510000px;}
.y96{bottom:278.670000px;}
.yfe{bottom:279.210000px;}
.y57{bottom:281.910000px;}
.y14e{bottom:284.610000px;}
.ya6{bottom:290.730000px;}
.y2b{bottom:291.810000px;}
.y156{bottom:293.970000px;}
.y129{bottom:295.950000px;}
.yce{bottom:296.670000px;}
.y170{bottom:297.210000px;}
.y78{bottom:302.610000px;}
.yf9{bottom:303.330000px;}
.y14d{bottom:305.310000px;}
.y95{bottom:311.475000px;}
.y2a{bottom:312.555000px;}
.y56{bottom:314.715000px;}
.y128{bottom:316.695000px;}
.ycd{bottom:317.415000px;}
.y16f{bottom:317.955000px;}
.y77{bottom:323.355000px;}
.y14c{bottom:326.055000px;}
.yfd{bottom:327.315000px;}
.y94{bottom:332.175000px;}
.y55{bottom:335.415000px;}
.y127{bottom:337.395000px;}
.ycc{bottom:338.115000px;}
.y16e{bottom:338.655000px;}
.y76{bottom:344.055000px;}
.y29{bottom:345.315000px;}
.y14b{bottom:346.755000px;}
.yfc{bottom:351.435000px;}
.y93{bottom:352.875000px;}
.y54{bottom:356.115000px;}
.y126{bottom:358.095000px;}
.ycb{bottom:358.815000px;}
.y16d{bottom:359.355000px;}
.y75{bottom:364.755000px;}
.y28{bottom:366.015000px;}
.y14a{bottom:367.455000px;}
.y92{bottom:373.575000px;}
.yfb{bottom:375.555000px;}
.y53{bottom:376.815000px;}
.y125{bottom:378.795000px;}
.yca{bottom:379.515000px;}
.y16c{bottom:380.055000px;}
.y74{bottom:385.455000px;}
.y27{bottom:386.715000px;}
.y149{bottom:388.155000px;}
.y91{bottom:394.275000px;}
.y52{bottom:397.515000px;}
.y124{bottom:399.495000px;}
.yf8{bottom:399.675000px;}
.yc9{bottom:400.215000px;}
.y16b{bottom:400.755000px;}
.ya5{bottom:406.155000px;}
.y26{bottom:407.415000px;}
.y148{bottom:408.855000px;}
.y90{bottom:414.975000px;}
.y51{bottom:418.215000px;}
.y123{bottom:420.195000px;}
.yc8{bottom:420.915000px;}
.y16a{bottom:421.455000px;}
.yf7{bottom:424.335000px;}
.ya4{bottom:426.855000px;}
.y25{bottom:428.115000px;}
.y147{bottom:429.555000px;}
.y8f{bottom:435.675000px;}
.y50{bottom:438.915000px;}
.yc6{bottom:441.075000px;}
.y169{bottom:442.155000px;}
.yf6{bottom:445.035000px;}
.ya3{bottom:447.555000px;}
.y24{bottom:448.815000px;}
.y146{bottom:450.255000px;}
.y122{bottom:452.775000px;}
.y8e{bottom:456.375000px;}
.y4f{bottom:459.615000px;}
.y168{bottom:462.855000px;}
.yf5{bottom:465.735000px;}
.ya2{bottom:468.255000px;}
.y23{bottom:469.515000px;}
.y145{bottom:470.955000px;}
.y121{bottom:473.475000px;}
.y8d{bottom:477.075000px;}
.y4e{bottom:480.315000px;}
.yc5{bottom:482.475000px;}
.y167{bottom:483.555000px;}
.yf4{bottom:486.435000px;}
.ya1{bottom:488.955000px;}
.y22{bottom:490.215000px;}
.y144{bottom:491.655000px;}
.y120{bottom:494.175000px;}
.y8c{bottom:497.775000px;}
.y4d{bottom:501.015000px;}
.yc4{bottom:503.175000px;}
.y166{bottom:504.255000px;}
.yf3{bottom:507.135000px;}
.ya0{bottom:509.655000px;}
.y21{bottom:510.915000px;}
.y143{bottom:512.355000px;}
.y6f{bottom:513.075000px;}
.y11f{bottom:514.875000px;}
.y4c{bottom:521.715000px;}
.yc3{bottom:523.875000px;}
.y165{bottom:524.955000px;}
.yf2{bottom:527.835000px;}
.y8b{bottom:530.355000px;}
.y20{bottom:531.615000px;}
.y142{bottom:533.055000px;}
.y6e{bottom:533.775000px;}
.y11e{bottom:535.575000px;}
.y4b{bottom:542.415000px;}
.yc2{bottom:544.575000px;}
.y164{bottom:545.655000px;}
.yf1{bottom:548.535000px;}
.y8a{bottom:551.055000px;}
.y1f{bottom:552.315000px;}
.y141{bottom:553.755000px;}
.y6d{bottom:554.475000px;}
.y11d{bottom:556.275000px;}
.y73{bottom:563.145000px;}
.yc1{bottom:565.305000px;}
.y163{bottom:566.385000px;}
.yf0{bottom:569.265000px;}
.y89{bottom:571.785000px;}
.y1e{bottom:572.865000px;}
.y140{bottom:574.485000px;}
.y4a{bottom:575.205000px;}
.y11c{bottom:577.005000px;}
.y72{bottom:583.845000px;}
.y162{bottom:587.085000px;}
.ybe{bottom:589.425000px;}
.yef{bottom:589.965000px;}
.y88{bottom:592.485000px;}
.y1d{bottom:593.565000px;}
.y13f{bottom:595.185000px;}
.y49{bottom:595.905000px;}
.y11b{bottom:597.705000px;}
.y71{bottom:604.545000px;}
.y161{bottom:607.785000px;}
.yee{bottom:610.665000px;}
.y87{bottom:613.185000px;}
.y1c{bottom:614.265000px;}
.y13e{bottom:615.885000px;}
.y48{bottom:616.605000px;}
.y70{bottom:625.245000px;}
.y160{bottom:628.485000px;}
.y11a{bottom:630.465000px;}
.yed{bottom:631.365000px;}
.y86{bottom:633.885000px;}
.ybf{bottom:634.065000px;}
.y1b{bottom:634.965000px;}
.y13d{bottom:636.585000px;}
.y47{bottom:637.305000px;}
.y15f{bottom:649.185000px;}
.y119{bottom:651.165000px;}
.yec{bottom:652.065000px;}
.y85{bottom:654.585000px;}
.y1a{bottom:655.665000px;}
.y13c{bottom:657.285000px;}
.y46{bottom:658.005000px;}
.ybc{bottom:658.185000px;}
.y15e{bottom:669.885000px;}
.y118{bottom:671.865000px;}
.ye9{bottom:672.045000px;}
.y84{bottom:675.285000px;}
.y19{bottom:676.365000px;}
.y45{bottom:678.705000px;}
.ybb{bottom:682.845000px;}
.y15d{bottom:690.585000px;}
.y117{bottom:692.565000px;}
.y9f{bottom:695.985000px;}
.yeb{bottom:696.165000px;}
.y18{bottom:697.065000px;}
.y13b{bottom:699.045000px;}
.y6c{bottom:699.405000px;}
.yba{bottom:703.545000px;}
.y83{bottom:708.045000px;}
.y44{bottom:711.285000px;}
.y179{bottom:712.365000px;}
.y116{bottom:713.265000px;}
.y17{bottom:717.765000px;}
.y13a{bottom:719.745000px;}
.y6b{bottom:719.925000px;}
.yea{bottom:720.285000px;}
.yb9{bottom:724.245000px;}
.y82{bottom:728.745000px;}
.y43{bottom:731.985000px;}
.y115{bottom:733.965000px;}
.y16{bottom:738.465000px;}
.y139{bottom:740.445000px;}
.y6a{bottom:740.625000px;}
.ye6{bottom:742.425000px;}
.yb8{bottom:744.945000px;}
.y81{bottom:749.445000px;}
.y42{bottom:752.685000px;}
.y114{bottom:754.665000px;}
.y15{bottom:759.165000px;}
.y138{bottom:761.145000px;}
.y69{bottom:761.325000px;}
.yb6{bottom:763.125000px;}
.ye8{bottom:764.565000px;}
.y80{bottom:770.145000px;}
.y41{bottom:773.385000px;}
.y113{bottom:775.365000px;}
.y14{bottom:779.865000px;}
.y137{bottom:781.845000px;}
.y68{bottom:782.025000px;}
.ye7{bottom:786.885000px;}
.y7f{bottom:790.845000px;}
.y40{bottom:794.085000px;}
.y13{bottom:800.565000px;}
.y136{bottom:802.545000px;}
.y67{bottom:802.725000px;}
.y112{bottom:808.125000px;}
.ye0{bottom:809.025000px;}
.y7e{bottom:811.590000px;}
.y3f{bottom:814.830000px;}
.y12{bottom:821.310000px;}
.y135{bottom:823.290000px;}
.y66{bottom:823.470000px;}
.y111{bottom:828.870000px;}
.yb5{bottom:831.030000px;}
.ye4{bottom:831.210000px;}
.y7d{bottom:832.290000px;}
.y3e{bottom:835.530000px;}
.y11{bottom:842.010000px;}
.y134{bottom:843.990000px;}
.y65{bottom:844.170000px;}
.y110{bottom:849.570000px;}
.y7c{bottom:852.990000px;}
.ye3{bottom:853.530000px;}
.y3d{bottom:856.230000px;}
.y10{bottom:862.710000px;}
.y133{bottom:864.690000px;}
.y64{bottom:864.870000px;}
.y10f{bottom:870.270000px;}
.y7b{bottom:873.690000px;}
.ydb{bottom:875.670000px;}
.yb3{bottom:876.570000px;}
.y3c{bottom:876.930000px;}
.yf{bottom:883.410000px;}
.y63{bottom:885.570000px;}
.y10e{bottom:890.970000px;}
.y7a{bottom:894.390000px;}
.y3b{bottom:897.630000px;}
.ydf{bottom:897.810000px;}
.ye{bottom:904.110000px;}
.y62{bottom:906.270000px;}
.y10d{bottom:911.670000px;}
.y3a{bottom:918.330000px;}
.yde{bottom:920.130000px;}
.yb1{bottom:922.290000px;}
.yd{bottom:924.810000px;}
.y61{bottom:926.970000px;}
.y10c{bottom:932.370000px;}
.y39{bottom:939.030000px;}
.yd7{bottom:942.270000px;}
.yc{bottom:945.510000px;}
.y60{bottom:947.670000px;}
.y10b{bottom:953.070000px;}
.y38{bottom:959.730000px;}
.yb{bottom:966.210000px;}
.yda{bottom:966.390000px;}
.yad{bottom:968.010000px;}
.y79{bottom:968.370000px;}
.y10a{bottom:973.770000px;}
.y37{bottom:980.430000px;}
.y132{bottom:989.070000px;}
.yd9{bottom:990.510000px;}
.y109{bottom:994.470000px;}
.y36{bottom:1001.130000px;}
.y4{bottom:1007.970000px;}
.y131{bottom:1009.770000px;}
.yd6{bottom:1014.450000px;}
.y108{bottom:1015.170000px;}
.y35{bottom:1021.830000px;}
.yab{bottom:1035.690000px;}
.y107{bottom:1035.870000px;}
.yd5{bottom:1038.570000px;}
.y34{bottom:1042.530000px;}
.y3{bottom:1050.270000px;}
.y106{bottom:1055.850000px;}
.y33{bottom:1063.260000px;}
.y2{bottom:1088.280000px;}
.y1{bottom:1114.380000px;}
.h11{height:20.700000px;}
.h14{height:20.736000px;}
.hc{height:22.140000px;}
.h13{height:41.400000px;}
.he{height:44.100000px;}
.hf{height:44.280000px;}
.hb{height:48.761719px;}
.h6{height:49.500000px;}
.h3{height:50.273438px;}
.h9{height:50.800781px;}
.h5{height:54.000000px;}
.h8{height:54.316406px;}
.h7{height:58.320000px;}
.ha{height:59.343750px;}
.h1{height:59.436914px;}
.h1a{height:61.043203px;}
.h16{height:65.160000px;}
.h17{height:65.196000px;}
.h12{height:65.340000px;}
.h4{height:65.884219px;}
.hd{height:66.240000px;}
.h10{height:66.276000px;}
.h2{height:67.824844px;}
.h15{height:68.940000px;}
.h19{height:92.880000px;}
.h18{height:92.916000px;}
.h0{height:1188.000000px;}
.w2{width:47.520000px;}
.w16{width:55.620000px;}
.w19{width:65.880000px;}
.w11{width:74.520000px;}
.w7{width:74.556000px;}
.wa{width:75.600000px;}
.wd{width:75.636000px;}
.we{width:78.120000px;}
.w14{width:79.416000px;}
.w8{width:84.240000px;}
.w24{width:87.120000px;}
.w23{width:88.200000px;}
.w12{width:90.396000px;}
.w9{width:91.116000px;}
.w13{width:92.880000px;}
.w15{width:98.820000px;}
.w21{width:104.760000px;}
.w22{width:104.796000px;}
.w1f{width:105.660000px;}
.w20{width:105.696000px;}
.wb{width:106.560000px;}
.w6{width:124.200000px;}
.wc{width:155.190000px;}
.w1d{width:175.140000px;}
.w17{width:184.170000px;}
.w1e{width:211.935000px;}
.w1b{width:219.630000px;}
.w3{width:220.890000px;}
.w10{width:239.610000px;}
.w1a{width:410.475000px;}
.w4{width:422.535000px;}
.wf{width:688.605000px;}
.w18{width:702.465000px;}
.w1c{width:714.525000px;}
.w5{width:725.685000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x16{left:4.500000px;}
.x13{left:7.380000px;}
.x6{left:10.799986px;}
.x7{left:23.219986px;}
.x5{left:108.035986px;}
.x17{left:109.656000px;}
.x12{left:117.576000px;}
.x2d{left:162.029986px;}
.x24{left:165.270000px;}
.x14{left:166.530000px;}
.x1{left:176.249986px;}
.x2b{left:197.850000px;}
.x9{left:217.469986px;}
.x18{left:237.270000px;}
.xd{left:239.069986px;}
.xc{left:250.949986px;}
.xb{left:258.509986px;}
.x10{left:266.609986px;}
.x11{left:277.409986px;}
.x2{left:282.449986px;}
.x26{left:288.210000px;}
.x19{left:313.275000px;}
.xf{left:329.474986px;}
.x1f{left:352.695000px;}
.x15{left:388.875000px;}
.x2a{left:394.455000px;}
.xe{left:395.534986px;}
.x1a{left:398.955000px;}
.x20{left:428.655000px;}
.x8{left:459.074986px;}
.xa{left:486.104986px;}
.x1b{left:491.685000px;}
.x27{left:501.765000px;}
.x21{left:520.665000px;}
.x1c{left:568.725000px;}
.x25{left:589.245000px;}
.x28{left:608.865000px;}
.x22{left:615.165000px;}
.x1d{left:676.905000px;}
.x23{left:696.210000px;}
.x29{left:716.190000px;}
.x1e{left:753.990000px;}
.x2c{left:793.409986px;}
.x4{left:801.869986px;}
.x3{left:810.149986px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls12{letter-spacing:-0.400533pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.303360pt;}
.lsc{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.560000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls7{letter-spacing:7.680000pt;}
.ls16{letter-spacing:8.320000pt;}
.ls8{letter-spacing:8.960000pt;}
.ls17{letter-spacing:10.240000pt;}
.lsb{letter-spacing:124.160000pt;}
.lsd{letter-spacing:178.720000pt;}
.lsf{letter-spacing:754.831787pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-13.534613pt;}
.ws5{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.319467pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-15.445547pt;}
._20{margin-left:-11.861547pt;}
._21{margin-left:-8.341547pt;}
._15{margin-left:-4.480000pt;}
._c{margin-left:-3.520000pt;}
._8{margin-left:-2.560000pt;}
._0{margin-left:-1.127040pt;}
._1{width:1.198080pt;}
._9{width:2.127787pt;}
._4{width:3.084373pt;}
._a{width:4.864000pt;}
._b{width:5.802667pt;}
._7{width:7.296000pt;}
._13{width:8.896000pt;}
._14{width:10.048000pt;}
._f{width:10.944000pt;}
._e{width:11.968000pt;}
._d{width:13.056000pt;}
._11{width:13.952000pt;}
._10{width:15.104000pt;}
._6{width:17.617707pt;}
._5{width:18.880000pt;}
._12{width:20.032000pt;}
._18{width:21.824000pt;}
._19{width:23.168000pt;}
._1a{width:24.444587pt;}
._2{width:28.241920pt;}
._29{width:32.832000pt;}
._2a{width:34.240000pt;}
._3{width:74.115627pt;}
._16{width:79.978667pt;}
._17{width:95.978667pt;}
._27{width:106.090667pt;}
._28{width:110.186667pt;}
._22{width:119.594453pt;}
._1c{width:124.416000pt;}
._23{width:126.954667pt;}
._1d{width:139.498453pt;}
._26{width:141.930667pt;}
._1f{width:176.000000pt;}
._1b{width:181.738453pt;}
._24{width:204.544000pt;}
._25{width:752.138667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.ya{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:3.520000pt;}
.ye5{bottom:3.560000pt;}
.yb0{bottom:4.640000pt;}
.yac{bottom:4.800000pt;}
.y9{bottom:7.040000pt;}
.yc7{bottom:12.800000pt;}
.yb2{bottom:14.560000pt;}
.y7{bottom:17.920000pt;}
.yc0{bottom:21.920000pt;}
.yae{bottom:24.320000pt;}
.yb4{bottom:24.480000pt;}
.ydd{bottom:24.640000pt;}
.ye2{bottom:24.680000pt;}
.y8{bottom:28.160000pt;}
.ydc{bottom:43.040000pt;}
.ye1{bottom:43.080000pt;}
.yaf{bottom:44.000000pt;}
.yb7{bottom:44.040000pt;}
.yd8{bottom:46.400000pt;}
.y6{bottom:52.352000pt;}
.y102{bottom:67.674667pt;}
.yfa{bottom:67.720000pt;}
.y5{bottom:71.072000pt;}
.y9e{bottom:100.512000pt;}
.y101{bottom:101.472000pt;}
.y5f{bottom:103.392000pt;}
.y155{bottom:113.632000pt;}
.y178{bottom:116.992000pt;}
.y9d{bottom:118.912000pt;}
.y5e{bottom:121.792000pt;}
.y105{bottom:122.752000pt;}
.y130{bottom:123.552000pt;}
.y32{bottom:130.592000pt;}
.y154{bottom:132.032000pt;}
.y177{bottom:135.386667pt;}
.y9c{bottom:137.306667pt;}
.y5d{bottom:140.186667pt;}
.y12f{bottom:141.946667pt;}
.y104{bottom:144.186667pt;}
.y31{bottom:148.986667pt;}
.y153{bottom:150.426667pt;}
.y15c{bottom:150.906667pt;}
.yd4{bottom:153.306667pt;}
.y176{bottom:153.786667pt;}
.y9b{bottom:155.706667pt;}
.y5c{bottom:158.586667pt;}
.y12e{bottom:160.346667pt;}
.y103{bottom:165.626667pt;}
.y30{bottom:167.386667pt;}
.y152{bottom:168.826667pt;}
.y15b{bottom:169.306667pt;}
.yd3{bottom:171.706667pt;}
.y175{bottom:172.186667pt;}
.y9a{bottom:174.106667pt;}
.y5b{bottom:176.986667pt;}
.y12d{bottom:178.746667pt;}
.yaa{bottom:184.826667pt;}
.y2f{bottom:185.786667pt;}
.yff{bottom:187.066667pt;}
.y151{bottom:187.226667pt;}
.y15a{bottom:187.706667pt;}
.yd2{bottom:190.106667pt;}
.y174{bottom:190.586667pt;}
.y99{bottom:192.506667pt;}
.y5a{bottom:195.386667pt;}
.y12c{bottom:197.146667pt;}
.ya9{bottom:203.226667pt;}
.y2e{bottom:204.186667pt;}
.y159{bottom:206.106667pt;}
.y100{bottom:208.346667pt;}
.yd1{bottom:208.506667pt;}
.y173{bottom:208.986667pt;}
.y98{bottom:210.906667pt;}
.y59{bottom:213.786667pt;}
.y12b{bottom:215.546667pt;}
.y150{bottom:216.186667pt;}
.ya8{bottom:221.626667pt;}
.y2d{bottom:222.586667pt;}
.y158{bottom:224.506667pt;}
.yd0{bottom:226.906667pt;}
.y172{bottom:227.386667pt;}
.y97{bottom:229.306667pt;}
.y58{bottom:232.186667pt;}
.y14f{bottom:234.586667pt;}
.ya7{bottom:240.026667pt;}
.y2c{bottom:240.986667pt;}
.y157{bottom:242.906667pt;}
.y12a{bottom:244.666667pt;}
.ycf{bottom:245.306667pt;}
.y171{bottom:245.786667pt;}
.y96{bottom:247.706667pt;}
.yfe{bottom:248.186667pt;}
.y57{bottom:250.586667pt;}
.y14e{bottom:252.986667pt;}
.ya6{bottom:258.426667pt;}
.y2b{bottom:259.386667pt;}
.y156{bottom:261.306667pt;}
.y129{bottom:263.066667pt;}
.yce{bottom:263.706667pt;}
.y170{bottom:264.186667pt;}
.y78{bottom:268.986667pt;}
.yf9{bottom:269.626667pt;}
.y14d{bottom:271.386667pt;}
.y95{bottom:276.866667pt;}
.y2a{bottom:277.826667pt;}
.y56{bottom:279.746667pt;}
.y128{bottom:281.506667pt;}
.ycd{bottom:282.146667pt;}
.y16f{bottom:282.626667pt;}
.y77{bottom:287.426667pt;}
.y14c{bottom:289.826667pt;}
.yfd{bottom:290.946667pt;}
.y94{bottom:295.266667pt;}
.y55{bottom:298.146667pt;}
.y127{bottom:299.906667pt;}
.ycc{bottom:300.546667pt;}
.y16e{bottom:301.026667pt;}
.y76{bottom:305.826667pt;}
.y29{bottom:306.946667pt;}
.y14b{bottom:308.226667pt;}
.yfc{bottom:312.386667pt;}
.y93{bottom:313.666667pt;}
.y54{bottom:316.546667pt;}
.y126{bottom:318.306667pt;}
.ycb{bottom:318.946667pt;}
.y16d{bottom:319.426667pt;}
.y75{bottom:324.226667pt;}
.y28{bottom:325.346667pt;}
.y14a{bottom:326.626667pt;}
.y92{bottom:332.066667pt;}
.yfb{bottom:333.826667pt;}
.y53{bottom:334.946667pt;}
.y125{bottom:336.706667pt;}
.yca{bottom:337.346667pt;}
.y16c{bottom:337.826667pt;}
.y74{bottom:342.626667pt;}
.y27{bottom:343.746667pt;}
.y149{bottom:345.026667pt;}
.y91{bottom:350.466667pt;}
.y52{bottom:353.346667pt;}
.y124{bottom:355.106667pt;}
.yf8{bottom:355.266667pt;}
.yc9{bottom:355.746667pt;}
.y16b{bottom:356.226667pt;}
.ya5{bottom:361.026667pt;}
.y26{bottom:362.146667pt;}
.y148{bottom:363.426667pt;}
.y90{bottom:368.866667pt;}
.y51{bottom:371.746667pt;}
.y123{bottom:373.506667pt;}
.yc8{bottom:374.146667pt;}
.y16a{bottom:374.626667pt;}
.yf7{bottom:377.186667pt;}
.ya4{bottom:379.426667pt;}
.y25{bottom:380.546667pt;}
.y147{bottom:381.826667pt;}
.y8f{bottom:387.266667pt;}
.y50{bottom:390.146667pt;}
.yc6{bottom:392.066667pt;}
.y169{bottom:393.026667pt;}
.yf6{bottom:395.586667pt;}
.ya3{bottom:397.826667pt;}
.y24{bottom:398.946667pt;}
.y146{bottom:400.226667pt;}
.y122{bottom:402.466667pt;}
.y8e{bottom:405.666667pt;}
.y4f{bottom:408.546667pt;}
.y168{bottom:411.426667pt;}
.yf5{bottom:413.986667pt;}
.ya2{bottom:416.226667pt;}
.y23{bottom:417.346667pt;}
.y145{bottom:418.626667pt;}
.y121{bottom:420.866667pt;}
.y8d{bottom:424.066667pt;}
.y4e{bottom:426.946667pt;}
.yc5{bottom:428.866667pt;}
.y167{bottom:429.826667pt;}
.yf4{bottom:432.386667pt;}
.ya1{bottom:434.626667pt;}
.y22{bottom:435.746667pt;}
.y144{bottom:437.026667pt;}
.y120{bottom:439.266667pt;}
.y8c{bottom:442.466667pt;}
.y4d{bottom:445.346667pt;}
.yc4{bottom:447.266667pt;}
.y166{bottom:448.226667pt;}
.yf3{bottom:450.786667pt;}
.ya0{bottom:453.026667pt;}
.y21{bottom:454.146667pt;}
.y143{bottom:455.426667pt;}
.y6f{bottom:456.066667pt;}
.y11f{bottom:457.666667pt;}
.y4c{bottom:463.746667pt;}
.yc3{bottom:465.666667pt;}
.y165{bottom:466.626667pt;}
.yf2{bottom:469.186667pt;}
.y8b{bottom:471.426667pt;}
.y20{bottom:472.546667pt;}
.y142{bottom:473.826667pt;}
.y6e{bottom:474.466667pt;}
.y11e{bottom:476.066667pt;}
.y4b{bottom:482.146667pt;}
.yc2{bottom:484.066667pt;}
.y164{bottom:485.026667pt;}
.yf1{bottom:487.586667pt;}
.y8a{bottom:489.826667pt;}
.y1f{bottom:490.946667pt;}
.y141{bottom:492.226667pt;}
.y6d{bottom:492.866667pt;}
.y11d{bottom:494.466667pt;}
.y73{bottom:500.573333pt;}
.yc1{bottom:502.493333pt;}
.y163{bottom:503.453333pt;}
.yf0{bottom:506.013333pt;}
.y89{bottom:508.253333pt;}
.y1e{bottom:509.213333pt;}
.y140{bottom:510.653333pt;}
.y4a{bottom:511.293333pt;}
.y11c{bottom:512.893333pt;}
.y72{bottom:518.973333pt;}
.y162{bottom:521.853333pt;}
.ybe{bottom:523.933333pt;}
.yef{bottom:524.413333pt;}
.y88{bottom:526.653333pt;}
.y1d{bottom:527.613333pt;}
.y13f{bottom:529.053333pt;}
.y49{bottom:529.693333pt;}
.y11b{bottom:531.293333pt;}
.y71{bottom:537.373333pt;}
.y161{bottom:540.253333pt;}
.yee{bottom:542.813333pt;}
.y87{bottom:545.053333pt;}
.y1c{bottom:546.013333pt;}
.y13e{bottom:547.453333pt;}
.y48{bottom:548.093333pt;}
.y70{bottom:555.773333pt;}
.y160{bottom:558.653333pt;}
.y11a{bottom:560.413333pt;}
.yed{bottom:561.213333pt;}
.y86{bottom:563.453333pt;}
.ybf{bottom:563.613333pt;}
.y1b{bottom:564.413333pt;}
.y13d{bottom:565.853333pt;}
.y47{bottom:566.493333pt;}
.y15f{bottom:577.053333pt;}
.y119{bottom:578.813333pt;}
.yec{bottom:579.613333pt;}
.y85{bottom:581.853333pt;}
.y1a{bottom:582.813333pt;}
.y13c{bottom:584.253333pt;}
.y46{bottom:584.893333pt;}
.ybc{bottom:585.053333pt;}
.y15e{bottom:595.453333pt;}
.y118{bottom:597.213333pt;}
.ye9{bottom:597.373333pt;}
.y84{bottom:600.253333pt;}
.y19{bottom:601.213333pt;}
.y45{bottom:603.293333pt;}
.ybb{bottom:606.973333pt;}
.y15d{bottom:613.853333pt;}
.y117{bottom:615.613333pt;}
.y9f{bottom:618.653333pt;}
.yeb{bottom:618.813333pt;}
.y18{bottom:619.613333pt;}
.y13b{bottom:621.373333pt;}
.y6c{bottom:621.693333pt;}
.yba{bottom:625.373333pt;}
.y83{bottom:629.373333pt;}
.y44{bottom:632.253333pt;}
.y179{bottom:633.213333pt;}
.y116{bottom:634.013333pt;}
.y17{bottom:638.013333pt;}
.y13a{bottom:639.773333pt;}
.y6b{bottom:639.933333pt;}
.yea{bottom:640.253333pt;}
.yb9{bottom:643.773333pt;}
.y82{bottom:647.773333pt;}
.y43{bottom:650.653333pt;}
.y115{bottom:652.413333pt;}
.y16{bottom:656.413333pt;}
.y139{bottom:658.173333pt;}
.y6a{bottom:658.333333pt;}
.ye6{bottom:659.933333pt;}
.yb8{bottom:662.173333pt;}
.y81{bottom:666.173333pt;}
.y42{bottom:669.053333pt;}
.y114{bottom:670.813333pt;}
.y15{bottom:674.813333pt;}
.y138{bottom:676.573333pt;}
.y69{bottom:676.733333pt;}
.yb6{bottom:678.333333pt;}
.ye8{bottom:679.613333pt;}
.y80{bottom:684.573333pt;}
.y41{bottom:687.453333pt;}
.y113{bottom:689.213333pt;}
.y14{bottom:693.213333pt;}
.y137{bottom:694.973333pt;}
.y68{bottom:695.133333pt;}
.ye7{bottom:699.453333pt;}
.y7f{bottom:702.973333pt;}
.y40{bottom:705.853333pt;}
.y13{bottom:711.613333pt;}
.y136{bottom:713.373333pt;}
.y67{bottom:713.533333pt;}
.y112{bottom:718.333333pt;}
.ye0{bottom:719.133333pt;}
.y7e{bottom:721.413333pt;}
.y3f{bottom:724.293333pt;}
.y12{bottom:730.053333pt;}
.y135{bottom:731.813333pt;}
.y66{bottom:731.973333pt;}
.y111{bottom:736.773333pt;}
.yb5{bottom:738.693333pt;}
.ye4{bottom:738.853333pt;}
.y7d{bottom:739.813333pt;}
.y3e{bottom:742.693333pt;}
.y11{bottom:748.453333pt;}
.y134{bottom:750.213333pt;}
.y65{bottom:750.373333pt;}
.y110{bottom:755.173333pt;}
.y7c{bottom:758.213333pt;}
.ye3{bottom:758.693333pt;}
.y3d{bottom:761.093333pt;}
.y10{bottom:766.853333pt;}
.y133{bottom:768.613333pt;}
.y64{bottom:768.773333pt;}
.y10f{bottom:773.573333pt;}
.y7b{bottom:776.613333pt;}
.ydb{bottom:778.373333pt;}
.yb3{bottom:779.173333pt;}
.y3c{bottom:779.493333pt;}
.yf{bottom:785.253333pt;}
.y63{bottom:787.173333pt;}
.y10e{bottom:791.973333pt;}
.y7a{bottom:795.013333pt;}
.y3b{bottom:797.893333pt;}
.ydf{bottom:798.053333pt;}
.ye{bottom:803.653333pt;}
.y62{bottom:805.573333pt;}
.y10d{bottom:810.373333pt;}
.y3a{bottom:816.293333pt;}
.yde{bottom:817.893333pt;}
.yb1{bottom:819.813333pt;}
.yd{bottom:822.053333pt;}
.y61{bottom:823.973333pt;}
.y10c{bottom:828.773333pt;}
.y39{bottom:834.693333pt;}
.yd7{bottom:837.573333pt;}
.yc{bottom:840.453333pt;}
.y60{bottom:842.373333pt;}
.y10b{bottom:847.173333pt;}
.y38{bottom:853.093333pt;}
.yb{bottom:858.853333pt;}
.yda{bottom:859.013333pt;}
.yad{bottom:860.453333pt;}
.y79{bottom:860.773333pt;}
.y10a{bottom:865.573333pt;}
.y37{bottom:871.493333pt;}
.y132{bottom:879.173333pt;}
.yd9{bottom:880.453333pt;}
.y109{bottom:883.973333pt;}
.y36{bottom:889.893333pt;}
.y4{bottom:895.973333pt;}
.y131{bottom:897.573333pt;}
.yd6{bottom:901.733333pt;}
.y108{bottom:902.373333pt;}
.y35{bottom:908.293333pt;}
.yab{bottom:920.613333pt;}
.y107{bottom:920.773333pt;}
.yd5{bottom:923.173333pt;}
.y34{bottom:926.693333pt;}
.y3{bottom:933.573333pt;}
.y106{bottom:938.533333pt;}
.y33{bottom:945.120000pt;}
.y2{bottom:967.360000pt;}
.y1{bottom:990.560000pt;}
.h11{height:18.400000pt;}
.h14{height:18.432000pt;}
.hc{height:19.680000pt;}
.h13{height:36.800000pt;}
.he{height:39.200000pt;}
.hf{height:39.360000pt;}
.hb{height:43.343750pt;}
.h6{height:44.000000pt;}
.h3{height:44.687500pt;}
.h9{height:45.156250pt;}
.h5{height:48.000000pt;}
.h8{height:48.281250pt;}
.h7{height:51.840000pt;}
.ha{height:52.750000pt;}
.h1{height:52.832812pt;}
.h1a{height:54.260625pt;}
.h16{height:57.920000pt;}
.h17{height:57.952000pt;}
.h12{height:58.080000pt;}
.h4{height:58.563750pt;}
.hd{height:58.880000pt;}
.h10{height:58.912000pt;}
.h2{height:60.288750pt;}
.h15{height:61.280000pt;}
.h19{height:82.560000pt;}
.h18{height:82.592000pt;}
.h0{height:1056.000000pt;}
.w2{width:42.240000pt;}
.w16{width:49.440000pt;}
.w19{width:58.560000pt;}
.w11{width:66.240000pt;}
.w7{width:66.272000pt;}
.wa{width:67.200000pt;}
.wd{width:67.232000pt;}
.we{width:69.440000pt;}
.w14{width:70.592000pt;}
.w8{width:74.880000pt;}
.w24{width:77.440000pt;}
.w23{width:78.400000pt;}
.w12{width:80.352000pt;}
.w9{width:80.992000pt;}
.w13{width:82.560000pt;}
.w15{width:87.840000pt;}
.w21{width:93.120000pt;}
.w22{width:93.152000pt;}
.w1f{width:93.920000pt;}
.w20{width:93.952000pt;}
.wb{width:94.720000pt;}
.w6{width:110.400000pt;}
.wc{width:137.946667pt;}
.w1d{width:155.680000pt;}
.w17{width:163.706667pt;}
.w1e{width:188.386667pt;}
.w1b{width:195.226667pt;}
.w3{width:196.346667pt;}
.w10{width:212.986667pt;}
.w1a{width:364.866667pt;}
.w4{width:375.586667pt;}
.wf{width:612.093333pt;}
.w18{width:624.413333pt;}
.w1c{width:635.133333pt;}
.w5{width:645.053333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x16{left:4.000000pt;}
.x13{left:6.560000pt;}
.x6{left:9.599988pt;}
.x7{left:20.639988pt;}
.x5{left:96.031988pt;}
.x17{left:97.472000pt;}
.x12{left:104.512000pt;}
.x2d{left:144.026655pt;}
.x24{left:146.906667pt;}
.x14{left:148.026667pt;}
.x1{left:156.666655pt;}
.x2b{left:175.866667pt;}
.x9{left:193.306655pt;}
.x18{left:210.906667pt;}
.xd{left:212.506655pt;}
.xc{left:223.066655pt;}
.xb{left:229.786655pt;}
.x10{left:236.986655pt;}
.x11{left:246.586655pt;}
.x2{left:251.066655pt;}
.x26{left:256.186667pt;}
.x19{left:278.466667pt;}
.xf{left:292.866655pt;}
.x1f{left:313.506667pt;}
.x15{left:345.666667pt;}
.x2a{left:350.626667pt;}
.xe{left:351.586655pt;}
.x1a{left:354.626667pt;}
.x20{left:381.026667pt;}
.x8{left:408.066655pt;}
.xa{left:432.093321pt;}
.x1b{left:437.053333pt;}
.x27{left:446.013333pt;}
.x21{left:462.813333pt;}
.x1c{left:505.533333pt;}
.x25{left:523.773333pt;}
.x28{left:541.213333pt;}
.x22{left:546.813333pt;}
.x1d{left:601.693333pt;}
.x23{left:618.853333pt;}
.x29{left:636.613333pt;}
.x1e{left:670.213333pt;}
.x2c{left:705.253321pt;}
.x4{left:712.773321pt;}
.x3{left:720.133321pt;}
}




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