
    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_07322af83d33cee2571c8ae4.woff2')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_58646861252d99e08d00861e.woff2')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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f1cccef97eb0075f359ba2fe.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_751efbfdaffa28a0d825f334.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fa5b11904ea18d33b46f9e7d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_66a7b7eb0cc3c1ee029b44ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.v2{vertical-align:-21.060000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsc{letter-spacing:-1.386000px;}
.lsd{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.174240px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.554000px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._8{margin-left:-5.841360px;}
._c{margin-left:-3.466080px;}
._1b{margin-left:-2.431680px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._13{width:2.701920px;}
._b{width:4.242960px;}
._10{width:5.860080px;}
._11{width:6.991920px;}
._12{width:8.127360px;}
._a{width:9.681120px;}
._d{width:10.816560px;}
._e{width:11.892240px;}
._f{width:13.261440px;}
._6{width:14.308320px;}
._9{width:16.135200px;}
._14{width:18.047520px;}
._4{width:19.723680px;}
._7{width:20.978640px;}
._5{width:22.216320px;}
._16{width:23.306400px;}
._18{width:24.765120px;}
._26{width:26.534160px;}
._17{width:27.549360px;}
._15{width:28.804320px;}
._22{width:30.119040px;}
._21{width:31.194720px;}
._24{width:32.270400px;}
._23{width:33.346080px;}
._28{width:34.780320px;}
._1e{width:36.095040px;}
._1d{width:37.170720px;}
._1a{width:38.903760px;}
._19{width:39.979440px;}
._1f{width:41.891760px;}
._27{width:43.863840px;}
._2d{width:45.115200px;}
._1c{width:47.210400px;}
._2b{width:48.823920px;}
._2a{width:50.258160px;}
._25{width:51.991200px;}
._20{width:57.847680px;}
._2{width:64.800000px;}
._2e{width:73.624320px;}
._2f{width:79.540560px;}
._30{width:81.580080px;}
._2c{width:112.826880px;}
._3{width:674.100000px;}
._29{width:1661.640000px;}
.fc3{color:rgb(24,23,23);}
.fc4{color:rgb(0,78,154);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y30{bottom:5.940000px;}
.yff{bottom:6.300000px;}
.y11{bottom:6.480000px;}
.yf9{bottom:7.200000px;}
.yfb{bottom:7.380000px;}
.ydf{bottom:7.560000px;}
.y8{bottom:7.920000px;}
.y1c{bottom:9.000000px;}
.ydd{bottom:10.260000px;}
.ydb{bottom:14.220000px;}
.y123{bottom:15.660000px;}
.y127{bottom:15.840000px;}
.yd{bottom:25.560000px;}
.y2f{bottom:25.740000px;}
.y2{bottom:26.640000px;}
.y7{bottom:27.720000px;}
.y2e{bottom:45.540000px;}
.y6{bottom:47.520000px;}
.yc{bottom:54.360000px;}
.y13{bottom:57.420000px;}
.y2d{bottom:65.340000px;}
.y5{bottom:69.660000px;}
.y10{bottom:73.080000px;}
.yb{bottom:74.340000px;}
.y2c{bottom:85.140000px;}
.y4{bottom:97.590000px;}
.y50{bottom:99.720000px;}
.y14d{bottom:100.260000px;}
.y87{bottom:102.420000px;}
.ya{bottom:103.170000px;}
.yb9{bottom:104.220000px;}
.y2b{bottom:105.120000px;}
.y16c{bottom:109.260000px;}
.y121{bottom:111.420000px;}
.y10f{bottom:114.840000px;}
.y42{bottom:117.720000px;}
.y4f{bottom:119.520000px;}
.y14c{bottom:120.060000px;}
.y86{bottom:122.220000px;}
.y9{bottom:122.970000px;}
.yb8{bottom:124.200000px;}
.y2a{bottom:124.920000px;}
.y16b{bottom:129.060000px;}
.y120{bottom:131.220000px;}
.y3{bottom:131.970000px;}
.y10e{bottom:134.820000px;}
.yda{bottom:137.160000px;}
.y41{bottom:137.520000px;}
.y4e{bottom:139.320000px;}
.y14b{bottom:139.860000px;}
.y85{bottom:142.200000px;}
.yb7{bottom:144.000000px;}
.y29{bottom:144.720000px;}
.y16a{bottom:148.860000px;}
.y11f{bottom:151.200000px;}
.y10d{bottom:154.650000px;}
.y40{bottom:157.350000px;}
.y14a{bottom:159.690000px;}
.y84{bottom:162.030000px;}
.yb6{bottom:163.830000px;}
.y28{bottom:164.520000px;}
.yd9{bottom:165.450000px;}
.y4d{bottom:168.150000px;}
.y169{bottom:168.690000px;}
.y11e{bottom:171.030000px;}
.y10c{bottom:174.450000px;}
.y3f{bottom:177.150000px;}
.y149{bottom:179.670000px;}
.y83{bottom:181.830000px;}
.yb5{bottom:183.630000px;}
.y27{bottom:184.350000px;}
.yd8{bottom:185.430000px;}
.y4c{bottom:188.130000px;}
.y168{bottom:188.670000px;}
.y11d{bottom:190.830000px;}
.y10b{bottom:194.250000px;}
.y3e{bottom:197.130000px;}
.y148{bottom:199.470000px;}
.y82{bottom:201.630000px;}
.yb4{bottom:203.430000px;}
.y26{bottom:204.330000px;}
.yd7{bottom:205.950000px;}
.y4b{bottom:207.930000px;}
.y167{bottom:208.470000px;}
.y11c{bottom:210.630000px;}
.y10a{bottom:214.050000px;}
.y3d{bottom:216.930000px;}
.y147{bottom:219.270000px;}
.y81{bottom:221.430000px;}
.yb3{bottom:223.410000px;}
.y25{bottom:224.130000px;}
.y4a{bottom:227.730000px;}
.y166{bottom:228.270000px;}
.y11b{bottom:230.430000px;}
.yd6{bottom:232.410000px;}
.y109{bottom:233.850000px;}
.y3c{bottom:236.730000px;}
.y146{bottom:239.070000px;}
.y80{bottom:241.410000px;}
.yb2{bottom:243.210000px;}
.y24{bottom:243.930000px;}
.y49{bottom:247.530000px;}
.y165{bottom:248.070000px;}
.y11a{bottom:250.410000px;}
.yd5{bottom:252.210000px;}
.y108{bottom:253.830000px;}
.y3b{bottom:256.530000px;}
.y145{bottom:258.870000px;}
.y7f{bottom:261.210000px;}
.yb1{bottom:263.010000px;}
.y23{bottom:263.730000px;}
.y48{bottom:267.330000px;}
.y164{bottom:267.870000px;}
.y119{bottom:270.210000px;}
.ycb{bottom:272.010000px;}
.y107{bottom:273.630000px;}
.y3a{bottom:276.330000px;}
.y144{bottom:278.850000px;}
.y7e{bottom:281.010000px;}
.yb0{bottom:282.810000px;}
.y22{bottom:283.530000px;}
.y47{bottom:287.310000px;}
.y163{bottom:287.850000px;}
.y118{bottom:290.010000px;}
.yca{bottom:291.810000px;}
.y106{bottom:293.430000px;}
.y39{bottom:296.310000px;}
.y143{bottom:298.650000px;}
.y7d{bottom:300.810000px;}
.yaf{bottom:302.610000px;}
.y21{bottom:303.510000px;}
.y46{bottom:307.110000px;}
.y162{bottom:307.650000px;}
.y117{bottom:309.810000px;}
.yc9{bottom:311.610000px;}
.y105{bottom:313.230000px;}
.y38{bottom:316.110000px;}
.y142{bottom:318.450000px;}
.y7c{bottom:320.610000px;}
.yae{bottom:322.590000px;}
.y20{bottom:323.310000px;}
.y45{bottom:326.910000px;}
.y161{bottom:327.450000px;}
.y116{bottom:329.610000px;}
.yd4{bottom:331.590000px;}
.y104{bottom:333.030000px;}
.y37{bottom:335.910000px;}
.y141{bottom:338.250000px;}
.y7b{bottom:340.590000px;}
.yad{bottom:342.390000px;}
.y1f{bottom:343.110000px;}
.y44{bottom:346.710000px;}
.y160{bottom:347.250000px;}
.y115{bottom:349.590000px;}
.y103{bottom:353.010000px;}
.y36{bottom:355.710000px;}
.y140{bottom:358.050000px;}
.y7a{bottom:360.390000px;}
.yac{bottom:362.190000px;}
.y1e{bottom:362.910000px;}
.y43{bottom:366.510000px;}
.y15f{bottom:367.050000px;}
.y114{bottom:369.390000px;}
.y102{bottom:372.810000px;}
.y35{bottom:375.510000px;}
.y13f{bottom:377.850000px;}
.y79{bottom:380.190000px;}
.yab{bottom:381.990000px;}
.y15e{bottom:386.850000px;}
.y113{bottom:389.190000px;}
.y101{bottom:392.610000px;}
.y34{bottom:395.490000px;}
.y13e{bottom:397.830000px;}
.y78{bottom:399.990000px;}
.yaa{bottom:401.835000px;}
.y15d{bottom:406.875000px;}
.y100{bottom:407.415000px;}
.y112{bottom:409.035000px;}
.y33{bottom:415.335000px;}
.y13d{bottom:417.675000px;}
.y77{bottom:419.835000px;}
.ya9{bottom:421.815000px;}
.y15c{bottom:426.675000px;}
.yfe{bottom:427.215000px;}
.y111{bottom:428.835000px;}
.y32{bottom:435.135000px;}
.y13c{bottom:437.475000px;}
.y76{bottom:439.815000px;}
.ya8{bottom:441.615000px;}
.y15b{bottom:446.475000px;}
.yfd{bottom:447.555000px;}
.y110{bottom:448.815000px;}
.y31{bottom:449.895000px;}
.y13b{bottom:457.275000px;}
.y75{bottom:459.615000px;}
.ya7{bottom:461.415000px;}
.y15a{bottom:466.275000px;}
.yfc{bottom:467.355000px;}
.yc8{bottom:468.615000px;}
.y1d{bottom:470.415000px;}
.y13a{bottom:477.075000px;}
.y74{bottom:479.415000px;}
.ya6{bottom:481.215000px;}
.y159{bottom:486.075000px;}
.yfa{bottom:487.155000px;}
.yc7{bottom:488.415000px;}
.y139{bottom:497.055000px;}
.y73{bottom:499.215000px;}
.ya5{bottom:501.015000px;}
.y158{bottom:506.055000px;}
.yc6{bottom:508.215000px;}
.yf8{bottom:509.295000px;}
.y138{bottom:516.855000px;}
.y72{bottom:519.015000px;}
.ya4{bottom:520.995000px;}
.y157{bottom:525.855000px;}
.yc5{bottom:528.015000px;}
.y137{bottom:536.655000px;}
.yf7{bottom:537.015000px;}
.y71{bottom:538.995000px;}
.ya3{bottom:540.795000px;}
.y156{bottom:545.655000px;}
.yc4{bottom:547.995000px;}
.y136{bottom:556.455000px;}
.yf6{bottom:556.815000px;}
.y70{bottom:558.795000px;}
.ya2{bottom:560.595000px;}
.y155{bottom:565.455000px;}
.yc3{bottom:567.795000px;}
.y135{bottom:576.255000px;}
.yf5{bottom:576.615000px;}
.y6f{bottom:578.595000px;}
.ya1{bottom:580.395000px;}
.y154{bottom:585.255000px;}
.yc2{bottom:587.595000px;}
.y134{bottom:596.235000px;}
.yf4{bottom:596.595000px;}
.y6e{bottom:598.395000px;}
.ya0{bottom:600.195000px;}
.y153{bottom:605.235000px;}
.yc1{bottom:607.395000px;}
.y133{bottom:616.035000px;}
.yf3{bottom:616.395000px;}
.y6d{bottom:618.195000px;}
.y9f{bottom:620.175000px;}
.y152{bottom:625.035000px;}
.yc0{bottom:627.195000px;}
.y132{bottom:635.835000px;}
.yf2{bottom:636.195000px;}
.y6c{bottom:638.175000px;}
.y9e{bottom:639.975000px;}
.y151{bottom:644.835000px;}
.ybf{bottom:647.175000px;}
.y131{bottom:655.665000px;}
.yf1{bottom:656.025000px;}
.y6b{bottom:658.005000px;}
.y9d{bottom:659.805000px;}
.y150{bottom:664.665000px;}
.ybe{bottom:667.005000px;}
.y130{bottom:675.465000px;}
.yf0{bottom:675.825000px;}
.y6a{bottom:677.805000px;}
.y9c{bottom:679.605000px;}
.y14f{bottom:684.465000px;}
.ybd{bottom:686.805000px;}
.yef{bottom:690.585000px;}
.y12f{bottom:695.445000px;}
.y69{bottom:697.605000px;}
.y9b{bottom:699.405000px;}
.y14e{bottom:704.445000px;}
.ybc{bottom:706.605000px;}
.yee{bottom:710.565000px;}
.y68{bottom:717.405000px;}
.y9a{bottom:719.385000px;}
.y12e{bottom:724.245000px;}
.ybb{bottom:726.405000px;}
.yed{bottom:730.365000px;}
.y67{bottom:737.385000px;}
.y99{bottom:739.185000px;}
.y12d{bottom:744.045000px;}
.yba{bottom:746.385000px;}
.yec{bottom:750.885000px;}
.yd3{bottom:757.185000px;}
.y98{bottom:758.985000px;}
.y12c{bottom:763.845000px;}
.y66{bottom:766.185000px;}
.yd2{bottom:776.985000px;}
.yeb{bottom:777.345000px;}
.y97{bottom:778.785000px;}
.y12b{bottom:783.645000px;}
.y65{bottom:785.985000px;}
.yd1{bottom:796.785000px;}
.yea{bottom:797.145000px;}
.y96{bottom:798.585000px;}
.y12a{bottom:803.625000px;}
.y64{bottom:805.785000px;}
.yd0{bottom:816.585000px;}
.ye9{bottom:816.945000px;}
.y95{bottom:818.565000px;}
.y129{bottom:823.425000px;}
.y63{bottom:825.585000px;}
.ycf{bottom:836.565000px;}
.ye8{bottom:836.745000px;}
.y94{bottom:838.365000px;}
.y128{bottom:843.225000px;}
.y62{bottom:845.565000px;}
.y1b{bottom:848.085000px;}
.yce{bottom:856.365000px;}
.ye7{bottom:856.725000px;}
.y126{bottom:857.985000px;}
.y93{bottom:858.165000px;}
.y61{bottom:865.365000px;}
.ycd{bottom:876.165000px;}
.ye6{bottom:876.525000px;}
.y1a{bottom:877.605000px;}
.y60{bottom:885.165000px;}
.y92{bottom:886.965000px;}
.ycc{bottom:895.965000px;}
.ye5{bottom:896.325000px;}
.y125{bottom:897.810000px;}
.y19{bottom:902.670000px;}
.y5f{bottom:905.010000px;}
.y91{bottom:906.810000px;}
.ye4{bottom:916.170000px;}
.y18{bottom:917.790000px;}
.y5e{bottom:924.810000px;}
.y90{bottom:926.790000px;}
.ye3{bottom:930.930000px;}
.y124{bottom:937.410000px;}
.y17{bottom:939.030000px;}
.y5d{bottom:944.790000px;}
.y8f{bottom:946.590000px;}
.ye2{bottom:950.910000px;}
.y16{bottom:959.010000px;}
.y5c{bottom:964.590000px;}
.ye1{bottom:970.710000px;}
.y8e{bottom:975.390000px;}
.y122{bottom:977.910000px;}
.y15{bottom:982.410000px;}
.y5b{bottom:984.390000px;}
.ye0{bottom:990.690000px;}
.y8d{bottom:995.190000px;}
.y5a{bottom:1004.190000px;}
.yde{bottom:1010.490000px;}
.y14{bottom:1014.090000px;}
.y8c{bottom:1014.990000px;}
.y59{bottom:1023.990000px;}
.ydc{bottom:1032.810000px;}
.y8b{bottom:1034.970000px;}
.yf{bottom:1040.910000px;}
.y58{bottom:1043.970000px;}
.y8a{bottom:1054.770000px;}
.y1{bottom:1063.410000px;}
.y57{bottom:1063.770000px;}
.y89{bottom:1074.570000px;}
.y56{bottom:1083.570000px;}
.y88{bottom:1094.370000px;}
.y55{bottom:1103.370000px;}
.y54{bottom:1123.170000px;}
.y53{bottom:1143.150000px;}
.y52{bottom:1172.520000px;}
.y51{bottom:1194.300000px;}
.h3{height:2.010938px;}
.h11{height:19.800000px;}
.h14{height:19.980000px;}
.h1a{height:20.340000px;}
.h18{height:21.240000px;}
.h19{height:21.420000px;}
.h17{height:21.600000px;}
.ha{height:21.960000px;}
.he{height:23.040000px;}
.h16{height:24.300000px;}
.hd{height:27.147656px;}
.h15{height:28.296000px;}
.h1b{height:39.600000px;}
.h1c{height:39.816000px;}
.h7{height:41.726953px;}
.h4{height:42.164648px;}
.h13{height:43.506914px;}
.h10{height:45.461953px;}
.h8{height:46.251562px;}
.h6{height:46.736719px;}
.hb{height:53.224453px;}
.h5{height:59.436914px;}
.h12{height:61.189805px;}
.h9{height:65.884219px;}
.hc{height:67.565039px;}
.h2{height:146.016000px;}
.hf{height:376.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:31.896000px;}
.w17{width:36.360000px;}
.wf{width:40.140000px;}
.w1b{width:42.480000px;}
.w6{width:52.056000px;}
.wc{width:74.520000px;}
.we{width:84.960000px;}
.w1a{width:93.096000px;}
.w1c{width:93.816000px;}
.w19{width:132.120000px;}
.w14{width:137.556000px;}
.w18{width:139.356000px;}
.w4{width:141.876000px;}
.w16{width:153.930000px;}
.w2{width:155.730000px;}
.w12{width:161.670000px;}
.w1d{width:174.960000px;}
.w11{width:175.530000px;}
.wd{width:180.750000px;}
.w15{width:183.270000px;}
.w8{width:192.270000px;}
.w13{width:199.470000px;}
.w10{width:216.030000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:732.390000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x1{left:48.240000px;}
.xa{left:53.999987px;}
.xc{left:57.600000px;}
.xf{left:75.419987px;}
.x22{left:80.999987px;}
.x1c{left:90.396000px;}
.xb{left:106.776000px;}
.x23{left:108.035987px;}
.x4{left:127.665000px;}
.x8{left:142.065000px;}
.x2{left:147.630000px;}
.x16{left:149.796000px;}
.x7{left:154.305000px;}
.x17{left:189.930000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x12{left:245.010000px;}
.xd{left:249.870000px;}
.x1d{left:266.115000px;}
.x13{left:276.915000px;}
.x14{left:351.435000px;}
.x1e{left:398.415000px;}
.x18{left:405.975000px;}
.x10{left:418.034987px;}
.xe{left:473.144987px;}
.x1f{left:491.505000px;}
.x24{left:500.144987px;}
.x11{left:527.144987px;}
.x15{left:532.185000px;}
.x20{left:533.985000px;}
.x19{left:581.505000px;}
.x1b{left:589.245000px;}
.x1a{left:605.625000px;}
.x21{left:627.810000px;}
.x9{left:703.050000px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-1.232000pt;}
.lsd{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.154880pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.048000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._8{margin-left:-5.192320pt;}
._c{margin-left:-3.080960pt;}
._1b{margin-left:-2.161493pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._13{width:2.401707pt;}
._b{width:3.771520pt;}
._10{width:5.208960pt;}
._11{width:6.215040pt;}
._12{width:7.224320pt;}
._a{width:8.605440pt;}
._d{width:9.614720pt;}
._e{width:10.570880pt;}
._f{width:11.787947pt;}
._6{width:12.718507pt;}
._9{width:14.342400pt;}
._14{width:16.042240pt;}
._4{width:17.532160pt;}
._7{width:18.647680pt;}
._5{width:19.747840pt;}
._16{width:20.716800pt;}
._18{width:22.013440pt;}
._26{width:23.585920pt;}
._17{width:24.488320pt;}
._15{width:25.603840pt;}
._22{width:26.772480pt;}
._21{width:27.728640pt;}
._24{width:28.684800pt;}
._23{width:29.640960pt;}
._28{width:30.915840pt;}
._1e{width:32.084480pt;}
._1d{width:33.040640pt;}
._1a{width:34.581120pt;}
._19{width:35.537280pt;}
._1f{width:37.237120pt;}
._27{width:38.990080pt;}
._2d{width:40.102400pt;}
._1c{width:41.964800pt;}
._2b{width:43.399040pt;}
._2a{width:44.673920pt;}
._25{width:46.214400pt;}
._20{width:51.420160pt;}
._2{width:57.600000pt;}
._2e{width:65.443840pt;}
._2f{width:70.702720pt;}
._30{width:72.515627pt;}
._2c{width:100.290560pt;}
._3{width:599.200000pt;}
._29{width:1477.013333pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y30{bottom:5.280000pt;}
.yff{bottom:5.600000pt;}
.y11{bottom:5.760000pt;}
.yf9{bottom:6.400000pt;}
.yfb{bottom:6.560000pt;}
.ydf{bottom:6.720000pt;}
.y8{bottom:7.040000pt;}
.y1c{bottom:8.000000pt;}
.ydd{bottom:9.120000pt;}
.ydb{bottom:12.640000pt;}
.y123{bottom:13.920000pt;}
.y127{bottom:14.080000pt;}
.yd{bottom:22.720000pt;}
.y2f{bottom:22.880000pt;}
.y2{bottom:23.680000pt;}
.y7{bottom:24.640000pt;}
.y2e{bottom:40.480000pt;}
.y6{bottom:42.240000pt;}
.yc{bottom:48.320000pt;}
.y13{bottom:51.040000pt;}
.y2d{bottom:58.080000pt;}
.y5{bottom:61.920000pt;}
.y10{bottom:64.960000pt;}
.yb{bottom:66.080000pt;}
.y2c{bottom:75.680000pt;}
.y4{bottom:86.746667pt;}
.y50{bottom:88.640000pt;}
.y14d{bottom:89.120000pt;}
.y87{bottom:91.040000pt;}
.ya{bottom:91.706667pt;}
.yb9{bottom:92.640000pt;}
.y2b{bottom:93.440000pt;}
.y16c{bottom:97.120000pt;}
.y121{bottom:99.040000pt;}
.y10f{bottom:102.080000pt;}
.y42{bottom:104.640000pt;}
.y4f{bottom:106.240000pt;}
.y14c{bottom:106.720000pt;}
.y86{bottom:108.640000pt;}
.y9{bottom:109.306667pt;}
.yb8{bottom:110.400000pt;}
.y2a{bottom:111.040000pt;}
.y16b{bottom:114.720000pt;}
.y120{bottom:116.640000pt;}
.y3{bottom:117.306667pt;}
.y10e{bottom:119.840000pt;}
.yda{bottom:121.920000pt;}
.y41{bottom:122.240000pt;}
.y4e{bottom:123.840000pt;}
.y14b{bottom:124.320000pt;}
.y85{bottom:126.400000pt;}
.yb7{bottom:128.000000pt;}
.y29{bottom:128.640000pt;}
.y16a{bottom:132.320000pt;}
.y11f{bottom:134.400000pt;}
.y10d{bottom:137.466667pt;}
.y40{bottom:139.866667pt;}
.y14a{bottom:141.946667pt;}
.y84{bottom:144.026667pt;}
.yb6{bottom:145.626667pt;}
.y28{bottom:146.240000pt;}
.yd9{bottom:147.066667pt;}
.y4d{bottom:149.466667pt;}
.y169{bottom:149.946667pt;}
.y11e{bottom:152.026667pt;}
.y10c{bottom:155.066667pt;}
.y3f{bottom:157.466667pt;}
.y149{bottom:159.706667pt;}
.y83{bottom:161.626667pt;}
.yb5{bottom:163.226667pt;}
.y27{bottom:163.866667pt;}
.yd8{bottom:164.826667pt;}
.y4c{bottom:167.226667pt;}
.y168{bottom:167.706667pt;}
.y11d{bottom:169.626667pt;}
.y10b{bottom:172.666667pt;}
.y3e{bottom:175.226667pt;}
.y148{bottom:177.306667pt;}
.y82{bottom:179.226667pt;}
.yb4{bottom:180.826667pt;}
.y26{bottom:181.626667pt;}
.yd7{bottom:183.066667pt;}
.y4b{bottom:184.826667pt;}
.y167{bottom:185.306667pt;}
.y11c{bottom:187.226667pt;}
.y10a{bottom:190.266667pt;}
.y3d{bottom:192.826667pt;}
.y147{bottom:194.906667pt;}
.y81{bottom:196.826667pt;}
.yb3{bottom:198.586667pt;}
.y25{bottom:199.226667pt;}
.y4a{bottom:202.426667pt;}
.y166{bottom:202.906667pt;}
.y11b{bottom:204.826667pt;}
.yd6{bottom:206.586667pt;}
.y109{bottom:207.866667pt;}
.y3c{bottom:210.426667pt;}
.y146{bottom:212.506667pt;}
.y80{bottom:214.586667pt;}
.yb2{bottom:216.186667pt;}
.y24{bottom:216.826667pt;}
.y49{bottom:220.026667pt;}
.y165{bottom:220.506667pt;}
.y11a{bottom:222.586667pt;}
.yd5{bottom:224.186667pt;}
.y108{bottom:225.626667pt;}
.y3b{bottom:228.026667pt;}
.y145{bottom:230.106667pt;}
.y7f{bottom:232.186667pt;}
.yb1{bottom:233.786667pt;}
.y23{bottom:234.426667pt;}
.y48{bottom:237.626667pt;}
.y164{bottom:238.106667pt;}
.y119{bottom:240.186667pt;}
.ycb{bottom:241.786667pt;}
.y107{bottom:243.226667pt;}
.y3a{bottom:245.626667pt;}
.y144{bottom:247.866667pt;}
.y7e{bottom:249.786667pt;}
.yb0{bottom:251.386667pt;}
.y22{bottom:252.026667pt;}
.y47{bottom:255.386667pt;}
.y163{bottom:255.866667pt;}
.y118{bottom:257.786667pt;}
.yca{bottom:259.386667pt;}
.y106{bottom:260.826667pt;}
.y39{bottom:263.386667pt;}
.y143{bottom:265.466667pt;}
.y7d{bottom:267.386667pt;}
.yaf{bottom:268.986667pt;}
.y21{bottom:269.786667pt;}
.y46{bottom:272.986667pt;}
.y162{bottom:273.466667pt;}
.y117{bottom:275.386667pt;}
.yc9{bottom:276.986667pt;}
.y105{bottom:278.426667pt;}
.y38{bottom:280.986667pt;}
.y142{bottom:283.066667pt;}
.y7c{bottom:284.986667pt;}
.yae{bottom:286.746667pt;}
.y20{bottom:287.386667pt;}
.y45{bottom:290.586667pt;}
.y161{bottom:291.066667pt;}
.y116{bottom:292.986667pt;}
.yd4{bottom:294.746667pt;}
.y104{bottom:296.026667pt;}
.y37{bottom:298.586667pt;}
.y141{bottom:300.666667pt;}
.y7b{bottom:302.746667pt;}
.yad{bottom:304.346667pt;}
.y1f{bottom:304.986667pt;}
.y44{bottom:308.186667pt;}
.y160{bottom:308.666667pt;}
.y115{bottom:310.746667pt;}
.y103{bottom:313.786667pt;}
.y36{bottom:316.186667pt;}
.y140{bottom:318.266667pt;}
.y7a{bottom:320.346667pt;}
.yac{bottom:321.946667pt;}
.y1e{bottom:322.586667pt;}
.y43{bottom:325.786667pt;}
.y15f{bottom:326.266667pt;}
.y114{bottom:328.346667pt;}
.y102{bottom:331.386667pt;}
.y35{bottom:333.786667pt;}
.y13f{bottom:335.866667pt;}
.y79{bottom:337.946667pt;}
.yab{bottom:339.546667pt;}
.y15e{bottom:343.866667pt;}
.y113{bottom:345.946667pt;}
.y101{bottom:348.986667pt;}
.y34{bottom:351.546667pt;}
.y13e{bottom:353.626667pt;}
.y78{bottom:355.546667pt;}
.yaa{bottom:357.186667pt;}
.y15d{bottom:361.666667pt;}
.y100{bottom:362.146667pt;}
.y112{bottom:363.586667pt;}
.y33{bottom:369.186667pt;}
.y13d{bottom:371.266667pt;}
.y77{bottom:373.186667pt;}
.ya9{bottom:374.946667pt;}
.y15c{bottom:379.266667pt;}
.yfe{bottom:379.746667pt;}
.y111{bottom:381.186667pt;}
.y32{bottom:386.786667pt;}
.y13c{bottom:388.866667pt;}
.y76{bottom:390.946667pt;}
.ya8{bottom:392.546667pt;}
.y15b{bottom:396.866667pt;}
.yfd{bottom:397.826667pt;}
.y110{bottom:398.946667pt;}
.y31{bottom:399.906667pt;}
.y13b{bottom:406.466667pt;}
.y75{bottom:408.546667pt;}
.ya7{bottom:410.146667pt;}
.y15a{bottom:414.466667pt;}
.yfc{bottom:415.426667pt;}
.yc8{bottom:416.546667pt;}
.y1d{bottom:418.146667pt;}
.y13a{bottom:424.066667pt;}
.y74{bottom:426.146667pt;}
.ya6{bottom:427.746667pt;}
.y159{bottom:432.066667pt;}
.yfa{bottom:433.026667pt;}
.yc7{bottom:434.146667pt;}
.y139{bottom:441.826667pt;}
.y73{bottom:443.746667pt;}
.ya5{bottom:445.346667pt;}
.y158{bottom:449.826667pt;}
.yc6{bottom:451.746667pt;}
.yf8{bottom:452.706667pt;}
.y138{bottom:459.426667pt;}
.y72{bottom:461.346667pt;}
.ya4{bottom:463.106667pt;}
.y157{bottom:467.426667pt;}
.yc5{bottom:469.346667pt;}
.y137{bottom:477.026667pt;}
.yf7{bottom:477.346667pt;}
.y71{bottom:479.106667pt;}
.ya3{bottom:480.706667pt;}
.y156{bottom:485.026667pt;}
.yc4{bottom:487.106667pt;}
.y136{bottom:494.626667pt;}
.yf6{bottom:494.946667pt;}
.y70{bottom:496.706667pt;}
.ya2{bottom:498.306667pt;}
.y155{bottom:502.626667pt;}
.yc3{bottom:504.706667pt;}
.y135{bottom:512.226667pt;}
.yf5{bottom:512.546667pt;}
.y6f{bottom:514.306667pt;}
.ya1{bottom:515.906667pt;}
.y154{bottom:520.226667pt;}
.yc2{bottom:522.306667pt;}
.y134{bottom:529.986667pt;}
.yf4{bottom:530.306667pt;}
.y6e{bottom:531.906667pt;}
.ya0{bottom:533.506667pt;}
.y153{bottom:537.986667pt;}
.yc1{bottom:539.906667pt;}
.y133{bottom:547.586667pt;}
.yf3{bottom:547.906667pt;}
.y6d{bottom:549.506667pt;}
.y9f{bottom:551.266667pt;}
.y152{bottom:555.586667pt;}
.yc0{bottom:557.506667pt;}
.y132{bottom:565.186667pt;}
.yf2{bottom:565.506667pt;}
.y6c{bottom:567.266667pt;}
.y9e{bottom:568.866667pt;}
.y151{bottom:573.186667pt;}
.ybf{bottom:575.266667pt;}
.y131{bottom:582.813333pt;}
.yf1{bottom:583.133333pt;}
.y6b{bottom:584.893333pt;}
.y9d{bottom:586.493333pt;}
.y150{bottom:590.813333pt;}
.ybe{bottom:592.893333pt;}
.y130{bottom:600.413333pt;}
.yf0{bottom:600.733333pt;}
.y6a{bottom:602.493333pt;}
.y9c{bottom:604.093333pt;}
.y14f{bottom:608.413333pt;}
.ybd{bottom:610.493333pt;}
.yef{bottom:613.853333pt;}
.y12f{bottom:618.173333pt;}
.y69{bottom:620.093333pt;}
.y9b{bottom:621.693333pt;}
.y14e{bottom:626.173333pt;}
.ybc{bottom:628.093333pt;}
.yee{bottom:631.613333pt;}
.y68{bottom:637.693333pt;}
.y9a{bottom:639.453333pt;}
.y12e{bottom:643.773333pt;}
.ybb{bottom:645.693333pt;}
.yed{bottom:649.213333pt;}
.y67{bottom:655.453333pt;}
.y99{bottom:657.053333pt;}
.y12d{bottom:661.373333pt;}
.yba{bottom:663.453333pt;}
.yec{bottom:667.453333pt;}
.yd3{bottom:673.053333pt;}
.y98{bottom:674.653333pt;}
.y12c{bottom:678.973333pt;}
.y66{bottom:681.053333pt;}
.yd2{bottom:690.653333pt;}
.yeb{bottom:690.973333pt;}
.y97{bottom:692.253333pt;}
.y12b{bottom:696.573333pt;}
.y65{bottom:698.653333pt;}
.yd1{bottom:708.253333pt;}
.yea{bottom:708.573333pt;}
.y96{bottom:709.853333pt;}
.y12a{bottom:714.333333pt;}
.y64{bottom:716.253333pt;}
.yd0{bottom:725.853333pt;}
.ye9{bottom:726.173333pt;}
.y95{bottom:727.613333pt;}
.y129{bottom:731.933333pt;}
.y63{bottom:733.853333pt;}
.ycf{bottom:743.613333pt;}
.ye8{bottom:743.773333pt;}
.y94{bottom:745.213333pt;}
.y128{bottom:749.533333pt;}
.y62{bottom:751.613333pt;}
.y1b{bottom:753.853333pt;}
.yce{bottom:761.213333pt;}
.ye7{bottom:761.533333pt;}
.y126{bottom:762.653333pt;}
.y93{bottom:762.813333pt;}
.y61{bottom:769.213333pt;}
.ycd{bottom:778.813333pt;}
.ye6{bottom:779.133333pt;}
.y1a{bottom:780.093333pt;}
.y60{bottom:786.813333pt;}
.y92{bottom:788.413333pt;}
.ycc{bottom:796.413333pt;}
.ye5{bottom:796.733333pt;}
.y125{bottom:798.053333pt;}
.y19{bottom:802.373333pt;}
.y5f{bottom:804.453333pt;}
.y91{bottom:806.053333pt;}
.ye4{bottom:814.373333pt;}
.y18{bottom:815.813333pt;}
.y5e{bottom:822.053333pt;}
.y90{bottom:823.813333pt;}
.ye3{bottom:827.493333pt;}
.y124{bottom:833.253333pt;}
.y17{bottom:834.693333pt;}
.y5d{bottom:839.813333pt;}
.y8f{bottom:841.413333pt;}
.ye2{bottom:845.253333pt;}
.y16{bottom:852.453333pt;}
.y5c{bottom:857.413333pt;}
.ye1{bottom:862.853333pt;}
.y8e{bottom:867.013333pt;}
.y122{bottom:869.253333pt;}
.y15{bottom:873.253333pt;}
.y5b{bottom:875.013333pt;}
.ye0{bottom:880.613333pt;}
.y8d{bottom:884.613333pt;}
.y5a{bottom:892.613333pt;}
.yde{bottom:898.213333pt;}
.y14{bottom:901.413333pt;}
.y8c{bottom:902.213333pt;}
.y59{bottom:910.213333pt;}
.ydc{bottom:918.053333pt;}
.y8b{bottom:919.973333pt;}
.yf{bottom:925.253333pt;}
.y58{bottom:927.973333pt;}
.y8a{bottom:937.573333pt;}
.y1{bottom:945.253333pt;}
.y57{bottom:945.573333pt;}
.y89{bottom:955.173333pt;}
.y56{bottom:963.173333pt;}
.y88{bottom:972.773333pt;}
.y55{bottom:980.773333pt;}
.y54{bottom:998.373333pt;}
.y53{bottom:1016.133333pt;}
.y52{bottom:1042.240000pt;}
.y51{bottom:1061.600000pt;}
.h3{height:1.787500pt;}
.h11{height:17.600000pt;}
.h14{height:17.760000pt;}
.h1a{height:18.080000pt;}
.h18{height:18.880000pt;}
.h19{height:19.040000pt;}
.h17{height:19.200000pt;}
.ha{height:19.520000pt;}
.he{height:20.480000pt;}
.h16{height:21.600000pt;}
.hd{height:24.131250pt;}
.h15{height:25.152000pt;}
.h1b{height:35.200000pt;}
.h1c{height:35.392000pt;}
.h7{height:37.090625pt;}
.h4{height:37.479688pt;}
.h13{height:38.672812pt;}
.h10{height:40.410625pt;}
.h8{height:41.112500pt;}
.h6{height:41.543750pt;}
.hb{height:47.310625pt;}
.h5{height:52.832812pt;}
.h12{height:54.390938pt;}
.h9{height:58.563750pt;}
.hc{height:60.057813pt;}
.h2{height:129.792000pt;}
.hf{height:335.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:28.352000pt;}
.w17{width:32.320000pt;}
.wf{width:35.680000pt;}
.w1b{width:37.760000pt;}
.w6{width:46.272000pt;}
.wc{width:66.240000pt;}
.we{width:75.520000pt;}
.w1a{width:82.752000pt;}
.w1c{width:83.392000pt;}
.w19{width:117.440000pt;}
.w14{width:122.272000pt;}
.w18{width:123.872000pt;}
.w4{width:126.112000pt;}
.w16{width:136.826667pt;}
.w2{width:138.426667pt;}
.w12{width:143.706667pt;}
.w1d{width:155.520000pt;}
.w11{width:156.026667pt;}
.wd{width:160.666667pt;}
.w15{width:162.906667pt;}
.w8{width:170.906667pt;}
.w13{width:177.306667pt;}
.w10{width:192.026667pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:651.013333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x1{left:42.880000pt;}
.xa{left:47.999988pt;}
.xc{left:51.200000pt;}
.xf{left:67.039988pt;}
.x22{left:71.999988pt;}
.x1c{left:80.352000pt;}
.xb{left:94.912000pt;}
.x23{left:96.031988pt;}
.x4{left:113.480000pt;}
.x8{left:126.280000pt;}
.x2{left:131.226667pt;}
.x16{left:133.152000pt;}
.x7{left:137.160000pt;}
.x17{left:168.826667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x12{left:217.786667pt;}
.xd{left:222.106667pt;}
.x1d{left:236.546667pt;}
.x13{left:246.146667pt;}
.x14{left:312.386667pt;}
.x1e{left:354.146667pt;}
.x18{left:360.866667pt;}
.x10{left:371.586655pt;}
.xe{left:420.573322pt;}
.x1f{left:436.893333pt;}
.x24{left:444.573322pt;}
.x11{left:468.573322pt;}
.x15{left:473.053333pt;}
.x20{left:474.653333pt;}
.x19{left:516.893333pt;}
.x1b{left:523.773333pt;}
.x1a{left:538.333333pt;}
.x21{left:558.053333pt;}
.x9{left:624.933333pt;}
}




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