
    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_50eee74fab0358132598175b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_710834bc63e1075a2c78ab5d.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_ef3c122fb1af622e0e8fab25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_b380ccd93a5dbbcd96e355ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_51dd01172a7400f38541bba9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ab20db1063418a39f8b3b38.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls6{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.600000px;}
.lsb{letter-spacing:1.800000px;}
.lsd{letter-spacing:3.000000px;}
.lsa{letter-spacing:4.200000px;}
.ls9{letter-spacing:5.400000px;}
.ls12{letter-spacing:15.720000px;}
.lsc{letter-spacing:18.600000px;}
.ls10{letter-spacing:45.720000px;}
.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;}
}
.ws8{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.ws7{word-spacing:-14.760000px;}
.ws5{word-spacing:-12.900000px;}
.ws3{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.900000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-2.358000px;}
._1{margin-left:-1.152000px;}
._0{width:1.182000px;}
._7{width:2.496000px;}
._11{width:3.564000px;}
._15{width:4.578000px;}
._8{width:5.580000px;}
._12{width:6.660000px;}
._a{width:7.896000px;}
._9{width:9.072000px;}
._10{width:10.152000px;}
._b{width:11.880000px;}
._c{width:13.140000px;}
._6{width:15.240000px;}
._f{width:16.296000px;}
._e{width:17.580000px;}
._13{width:19.284000px;}
._d{width:20.700000px;}
._14{width:22.692000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
._17{width:1847.370000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,79,136);}
.fc4{color:rgb(31,73,125);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ye6{bottom:3.300000px;}
.y112{bottom:3.315000px;}
.yeb{bottom:3.600000px;}
.y110{bottom:3.615000px;}
.y10{bottom:3.915000px;}
.yf{bottom:5.115000px;}
.yfb{bottom:5.295000px;}
.y3{bottom:5.400000px;}
.yf8{bottom:5.625000px;}
.y42{bottom:5.700000px;}
.y101{bottom:5.715000px;}
.y6{bottom:12.337500px;}
.yea{bottom:20.700000px;}
.yf6{bottom:20.925000px;}
.y41{bottom:25.200000px;}
.y10b{bottom:27.000000px;}
.ye9{bottom:38.100000px;}
.y40{bottom:39.600000px;}
.yfd{bottom:42.825000px;}
.y5{bottom:46.800000px;}
.y10a{bottom:48.600000px;}
.ye8{bottom:55.200000px;}
.y3f{bottom:57.000000px;}
.y2{bottom:57.037500px;}
.y109{bottom:65.400000px;}
.y3e{bottom:74.100000px;}
.y44{bottom:74.137500px;}
.y4{bottom:81.337500px;}
.y108{bottom:85.200000px;}
.y3d{bottom:91.500000px;}
.y107{bottom:104.100000px;}
.y3c{bottom:108.630000px;}
.yf4{bottom:111.637500px;}
.y34{bottom:112.537500px;}
.yb4{bottom:112.837500px;}
.y106{bottom:120.945000px;}
.ycc{bottom:123.337500px;}
.yf3{bottom:126.037500px;}
.y3b{bottom:126.045000px;}
.y33{bottom:129.937500px;}
.yb3{bottom:130.237500px;}
.y7d{bottom:137.137500px;}
.ycb{bottom:140.437500px;}
.y3a{bottom:143.130000px;}
.yf2{bottom:143.437500px;}
.y136{bottom:144.037500px;}
.yb2{bottom:146.737500px;}
.y32{bottom:147.037500px;}
.y7c{bottom:154.245000px;}
.yca{bottom:157.830000px;}
.y39{bottom:160.545000px;}
.yb1{bottom:161.130000px;}
.y31{bottom:163.545000px;}
.y7b{bottom:171.630000px;}
.yc9{bottom:174.330000px;}
.y38{bottom:177.630000px;}
.yf1{bottom:177.975000px;}
.y30{bottom:178.275000px;}
.yb0{bottom:178.575000px;}
.y7a{bottom:188.775000px;}
.y37{bottom:195.045000px;}
.yf0{bottom:195.075000px;}
.y2f{bottom:195.375000px;}
.yaf{bottom:195.675000px;}
.y79{bottom:206.175000px;}
.yef{bottom:212.475000px;}
.y36{bottom:212.745000px;}
.y2e{bottom:212.775000px;}
.yae{bottom:213.075000px;}
.y78{bottom:223.275000px;}
.yee{bottom:228.975000px;}
.y135{bottom:229.575000px;}
.y2d{bottom:229.875000px;}
.yad{bottom:230.175000px;}
.y77{bottom:240.675000px;}
.yed{bottom:243.375000px;}
.y134{bottom:246.975000px;}
.y2c{bottom:247.275000px;}
.yac{bottom:247.575000px;}
.y76{bottom:257.775000px;}
.yec{bottom:258.075000px;}
.ye7{bottom:261.375000px;}
.y133{bottom:264.075000px;}
.y2b{bottom:264.375000px;}
.yab{bottom:264.675000px;}
.y75{bottom:274.275000px;}
.y132{bottom:281.475000px;}
.y2a{bottom:281.775000px;}
.yaa{bottom:282.375000px;}
.y74{bottom:288.975000px;}
.y131{bottom:298.575000px;}
.y29{bottom:298.875000px;}
.ya9{bottom:301.875000px;}
.y73{bottom:306.075000px;}
.y28{bottom:315.375000px;}
.y130{bottom:316.275000px;}
.ya8{bottom:316.575000px;}
.y72{bottom:323.475000px;}
.y27{bottom:330.075000px;}
.ye5{bottom:331.275000px;}
.ya7{bottom:333.675000px;}
.y12f{bottom:335.775000px;}
.y71{bottom:340.575000px;}
.y26{bottom:347.205000px;}
.y12e{bottom:350.505000px;}
.ya6{bottom:351.105000px;}
.ye4{bottom:352.620000px;}
.y70{bottom:358.005000px;}
.y25{bottom:364.605000px;}
.y12d{bottom:367.620000px;}
.ya5{bottom:368.205000px;}
.ye3{bottom:370.005000px;}
.yc8{bottom:374.505000px;}
.y6f{bottom:375.105000px;}
.y24{bottom:381.705000px;}
.y12c{bottom:385.005000px;}
.ya4{bottom:385.605000px;}
.yc7{bottom:388.920000px;}
.ye2{bottom:389.220000px;}
.y6e{bottom:391.605000px;}
.y23{bottom:399.120000px;}
.y12b{bottom:402.120000px;}
.ya3{bottom:402.720000px;}
.y6d{bottom:406.320000px;}
.ye1{bottom:408.705000px;}
.y22{bottom:416.220000px;}
.y12a{bottom:419.505000px;}
.ya2{bottom:420.120000px;}
.y6c{bottom:423.420000px;}
.y21{bottom:433.620000px;}
.y129{bottom:436.620000px;}
.ya1{bottom:437.205000px;}
.ye0{bottom:440.505000px;}
.y6b{bottom:440.820000px;}
.y20{bottom:450.705000px;}
.y128{bottom:454.005000px;}
.ya0{bottom:454.620000px;}
.y6a{bottom:457.905000px;}
.y1f{bottom:468.120000px;}
.y127{bottom:470.505000px;}
.y9f{bottom:471.720000px;}
.ydf{bottom:475.005000px;}
.y69{bottom:475.320000px;}
.y159{bottom:482.205000px;}
.y126{bottom:484.905000px;}
.y1e{bottom:485.220000px;}
.y9e{bottom:489.420000px;}
.y68{bottom:492.420000px;}
.y158{bottom:499.320000px;}
.y125{bottom:502.320000px;}
.y1d{bottom:502.920000px;}
.y9d{bottom:508.905000px;}
.yde{bottom:509.505000px;}
.yc6{bottom:509.820000px;}
.y67{bottom:510.120000px;}
.y157{bottom:516.750000px;}
.y124{bottom:519.450000px;}
.y1c{bottom:521.250000px;}
.y9c{bottom:523.650000px;}
.yc5{bottom:526.950000px;}
.y66{bottom:530.850000px;}
.y156{bottom:533.850000px;}
.y123{bottom:536.850000px;}
.y9b{bottom:540.750000px;}
.ydd{bottom:544.050000px;}
.yc4{bottom:544.350000px;}
.y65{bottom:550.350000px;}
.y155{bottom:551.250000px;}
.y122{bottom:553.950000px;}
.y9a{bottom:558.150000px;}
.ydc{bottom:560.550000px;}
.yc3{bottom:560.850000px;}
.y64{bottom:565.050000px;}
.y154{bottom:568.350000px;}
.y121{bottom:571.350000px;}
.y99{bottom:575.250000px;}
.y35{bottom:582.150000px;}
.y153{bottom:585.750000px;}
.y120{bottom:588.450000px;}
.ydb{bottom:592.350000px;}
.y98{bottom:592.650000px;}
.y63{bottom:599.550000px;}
.y152{bottom:602.850000px;}
.y11f{bottom:605.850000px;}
.y97{bottom:609.750000px;}
.y62{bottom:616.650000px;}
.y151{bottom:620.250000px;}
.y11e{bottom:622.950000px;}
.yda{bottom:626.850000px;}
.y96{bottom:627.150000px;}
.y61{bottom:634.050000px;}
.y150{bottom:637.350000px;}
.y11d{bottom:639.450000px;}
.y95{bottom:644.250000px;}
.y60{bottom:651.150000px;}
.y11c{bottom:654.150000px;}
.y14f{bottom:654.750000px;}
.yd9{bottom:661.350000px;}
.y94{bottom:661.650000px;}
.y5f{bottom:668.550000px;}
.y11b{bottom:671.250000px;}
.y14e{bottom:671.850000px;}
.y93{bottom:678.150000px;}
.yd8{bottom:679.050000px;}
.yc2{bottom:679.350000px;}
.y5e{bottom:685.695000px;}
.y11a{bottom:688.695000px;}
.y14d{bottom:689.280000px;}
.y92{bottom:692.595000px;}
.yd7{bottom:698.580000px;}
.yc1{bottom:698.895000px;}
.y5d{bottom:703.095000px;}
.y119{bottom:705.780000px;}
.y14c{bottom:706.380000px;}
.y91{bottom:709.980000px;}
.yc0{bottom:713.280000px;}
.y5c{bottom:720.195000px;}
.y118{bottom:723.195000px;}
.y14b{bottom:723.795000px;}
.y90{bottom:727.080000px;}
.yd6{bottom:730.380000px;}
.ybf{bottom:730.695000px;}
.y5b{bottom:737.595000px;}
.y117{bottom:740.280000px;}
.y14a{bottom:740.895000px;}
.y8f{bottom:744.495000px;}
.ybe{bottom:747.795000px;}
.y5a{bottom:754.695000px;}
.y116{bottom:757.695000px;}
.y149{bottom:758.280000px;}
.y8e{bottom:761.595000px;}
.yd5{bottom:764.895000px;}
.ybd{bottom:765.195000px;}
.y59{bottom:771.195000px;}
.y115{bottom:775.380000px;}
.y8d{bottom:779.295000px;}
.ybc{bottom:782.295000px;}
.y58{bottom:785.880000px;}
.y148{bottom:792.795000px;}
.y114{bottom:794.895000px;}
.yfa{bottom:795.900000px;}
.y8c{bottom:798.795000px;}
.ybb{bottom:799.695000px;}
.y57{bottom:802.980000px;}
.yd4{bottom:808.080000px;}
.y113{bottom:809.295000px;}
.y147{bottom:809.880000px;}
.y8b{bottom:813.495000px;}
.yba{bottom:816.795000px;}
.y56{bottom:820.395000px;}
.y111{bottom:823.980000px;}
.y146{bottom:827.295000px;}
.y8a{bottom:830.580000px;}
.yb9{bottom:834.195000px;}
.y55{bottom:837.495000px;}
.y10f{bottom:841.080000px;}
.y145{bottom:844.380000px;}
.y1b{bottom:845.580000px;}
.y89{bottom:847.995000px;}
.yb8{bottom:851.925000px;}
.yd3{bottom:854.025000px;}
.y54{bottom:854.925000px;}
.y10e{bottom:858.525000px;}
.y144{bottom:861.825000px;}
.y1a{bottom:863.025000px;}
.y88{bottom:865.125000px;}
.yb7{bottom:871.425000px;}
.y53{bottom:872.025000px;}
.y10d{bottom:875.625000px;}
.yf9{bottom:875.700000px;}
.y143{bottom:878.925000px;}
.yfc{bottom:882.300000px;}
.y87{bottom:882.525000px;}
.yb6{bottom:885.825000px;}
.y19{bottom:887.325000px;}
.y52{bottom:888.525000px;}
.y10c{bottom:893.625000px;}
.y142{bottom:896.325000px;}
.y86{bottom:899.625000px;}
.yd2{bottom:900.225000px;}
.y51{bottom:903.225000px;}
.y18{bottom:910.125000px;}
.y105{bottom:911.625000px;}
.y141{bottom:913.425000px;}
.y85{bottom:917.025000px;}
.y50{bottom:920.325000px;}
.y140{bottom:930.825000px;}
.y84{bottom:934.125000px;}
.y17{bottom:937.425000px;}
.y4f{bottom:937.725000px;}
.yd1{bottom:938.925000px;}
.yf7{bottom:941.400000px;}
.y13f{bottom:947.925000px;}
.y83{bottom:951.525000px;}
.y16{bottom:954.825000px;}
.y13e{bottom:965.325000px;}
.y15{bottom:966.225000px;}
.y82{bottom:968.625000px;}
.y4e{bottom:972.225000px;}
.yf5{bottom:975.000000px;}
.yd0{bottom:977.625000px;}
.y14{bottom:982.125000px;}
.y13d{bottom:982.425000px;}
.y81{bottom:986.025000px;}
.y4d{bottom:989.325000px;}
.y13{bottom:999.825000px;}
.y80{bottom:1003.125000px;}
.yb5{bottom:1005.825000px;}
.y4c{bottom:1006.725000px;}
.ycf{bottom:1016.670000px;}
.y13c{bottom:1016.955000px;}
.y12{bottom:1020.570000px;}
.y4b{bottom:1023.255000px;}
.y13b{bottom:1034.370000px;}
.y4a{bottom:1037.670000px;}
.y11{bottom:1038.255000px;}
.ye{bottom:1040.955000px;}
.y104{bottom:1046.655000px;}
.y13a{bottom:1051.455000px;}
.y49{bottom:1055.070000px;}
.yce{bottom:1055.370000px;}
.yd{bottom:1062.570000px;}
.y103{bottom:1067.955000px;}
.yc{bottom:1068.255000px;}
.y139{bottom:1068.870000px;}
.y48{bottom:1072.170000px;}
.ycd{bottom:1074.870000px;}
.y102{bottom:1075.755000px;}
.yb{bottom:1083.570000px;}
.y138{bottom:1085.955000px;}
.y47{bottom:1089.570000px;}
.y7f{bottom:1089.870000px;}
.y100{bottom:1096.455000px;}
.ya{bottom:1097.955000px;}
.y137{bottom:1103.370000px;}
.y46{bottom:1106.670000px;}
.y7e{bottom:1109.370000px;}
.y9{bottom:1115.670000px;}
.yff{bottom:1120.455000px;}
.y45{bottom:1124.070000px;}
.y8{bottom:1133.670000px;}
.yfe{bottom:1138.170000px;}
.y7{bottom:1141.170000px;}
.y1{bottom:1193.400000px;}
.y43{bottom:1196.400000px;}
.h1a{height:8.466797px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.h25{height:17.100000px;}
.h18{height:17.137500px;}
.h24{height:17.400000px;}
.h26{height:17.437500px;}
.h1f{height:19.800000px;}
.ha{height:21.000000px;}
.h21{height:21.166992px;}
.h1c{height:21.300000px;}
.h10{height:21.694336px;}
.hc{height:28.636523px;}
.h7{height:33.867188px;}
.h15{height:34.664062px;}
.h11{height:34.710938px;}
.h3{height:36.000000px;}
.h1b{height:36.600000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h4{height:42.333984px;}
.hf{height:43.388672px;}
.h27{height:43.681641px;}
.h16{height:44.507812px;}
.h17{height:46.567383px;}
.h14{height:49.453125px;}
.h23{height:49.540430px;}
.h1e{height:49.600430px;}
.hb{height:50.236523px;}
.h20{height:50.296523px;}
.h6{height:50.800781px;}
.h13{height:51.996094px;}
.he{height:52.066406px;}
.h1d{height:58.500000px;}
.h1{height:65.645508px;}
.h19{height:69.000000px;}
.h2{height:97.200000px;}
.h22{height:135.037500px;}
.h12{height:229.530000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w3{width:108.000000px;}
.wa{width:145.200000px;}
.wb{width:148.200000px;}
.wd{width:171.330000px;}
.w15{width:174.975000px;}
.w12{width:175.230000px;}
.w14{width:175.530000px;}
.w13{width:175.575000px;}
.w10{width:179.175000px;}
.we{width:179.475000px;}
.wf{width:179.745000px;}
.w9{width:181.500000px;}
.wc{width:181.800000px;}
.w6{width:253.275000px;}
.w5{width:483.450000px;}
.w8{width:604.995000px;}
.w7{width:730.125000px;}
.w11{width:731.325000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:4.500000px;}
.x12{left:7.800000px;}
.x2{left:10.799998px;}
.x1a{left:12.300000px;}
.x10{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x17{left:56.295000px;}
.x1c{left:59.700000px;}
.x25{left:70.800000px;}
.x24{left:74.430000px;}
.x1e{left:76.500000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x21{left:82.830000px;}
.xf{left:84.037500px;}
.x22{left:85.200000px;}
.x26{left:108.037487px;}
.xe{left:116.745000px;}
.x13{left:124.800000px;}
.x15{left:138.300000px;}
.x14{left:139.800000px;}
.x9{left:153.629987px;}
.xc{left:241.567500px;}
.x19{left:252.675000px;}
.x20{left:256.575000px;}
.x6{left:405.119987px;}
.x1b{left:432.150000px;}
.x16{left:548.400000px;}
.xd{left:561.780000px;}
.x11{left:588.494987px;}
.x18{left:593.594987px;}
.x23{left:607.695000px;}
.x1d{left:611.895000px;}
.x8{left:616.379987px;}
.x7{left:648.194987px;}
.x5{left:698.624987px;}
.xa{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.533333pt;}
.lsb{letter-spacing:1.600000pt;}
.lsd{letter-spacing:2.666667pt;}
.lsa{letter-spacing:3.733333pt;}
.ls9{letter-spacing:4.800000pt;}
.ls12{letter-spacing:13.973333pt;}
.lsc{letter-spacing:16.533333pt;}
.ls10{letter-spacing:40.640000pt;}
.ws8{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws7{word-spacing:-13.120000pt;}
.ws5{word-spacing:-11.466667pt;}
.ws3{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.800000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-2.096000pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.050667pt;}
._7{width:2.218667pt;}
._11{width:3.168000pt;}
._15{width:4.069333pt;}
._8{width:4.960000pt;}
._12{width:5.920000pt;}
._a{width:7.018667pt;}
._9{width:8.064000pt;}
._10{width:9.024000pt;}
._b{width:10.560000pt;}
._c{width:11.680000pt;}
._6{width:13.546667pt;}
._f{width:14.485333pt;}
._e{width:15.626667pt;}
._13{width:17.141333pt;}
._d{width:18.400000pt;}
._14{width:20.170667pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
._17{width:1642.106667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:2.933333pt;}
.y112{bottom:2.946667pt;}
.yeb{bottom:3.200000pt;}
.y110{bottom:3.213333pt;}
.y10{bottom:3.480000pt;}
.yf{bottom:4.546667pt;}
.yfb{bottom:4.706667pt;}
.y3{bottom:4.800000pt;}
.yf8{bottom:5.000000pt;}
.y42{bottom:5.066667pt;}
.y101{bottom:5.080000pt;}
.y6{bottom:10.966667pt;}
.yea{bottom:18.400000pt;}
.yf6{bottom:18.600000pt;}
.y41{bottom:22.400000pt;}
.y10b{bottom:24.000000pt;}
.ye9{bottom:33.866667pt;}
.y40{bottom:35.200000pt;}
.yfd{bottom:38.066667pt;}
.y5{bottom:41.600000pt;}
.y10a{bottom:43.200000pt;}
.ye8{bottom:49.066667pt;}
.y3f{bottom:50.666667pt;}
.y2{bottom:50.700000pt;}
.y109{bottom:58.133333pt;}
.y3e{bottom:65.866667pt;}
.y44{bottom:65.900000pt;}
.y4{bottom:72.300000pt;}
.y108{bottom:75.733333pt;}
.y3d{bottom:81.333333pt;}
.y107{bottom:92.533333pt;}
.y3c{bottom:96.560000pt;}
.yf4{bottom:99.233333pt;}
.y34{bottom:100.033333pt;}
.yb4{bottom:100.300000pt;}
.y106{bottom:107.506667pt;}
.ycc{bottom:109.633333pt;}
.yf3{bottom:112.033333pt;}
.y3b{bottom:112.040000pt;}
.y33{bottom:115.500000pt;}
.yb3{bottom:115.766667pt;}
.y7d{bottom:121.900000pt;}
.ycb{bottom:124.833333pt;}
.y3a{bottom:127.226667pt;}
.yf2{bottom:127.500000pt;}
.y136{bottom:128.033333pt;}
.yb2{bottom:130.433333pt;}
.y32{bottom:130.700000pt;}
.y7c{bottom:137.106667pt;}
.yca{bottom:140.293333pt;}
.y39{bottom:142.706667pt;}
.yb1{bottom:143.226667pt;}
.y31{bottom:145.373333pt;}
.y7b{bottom:152.560000pt;}
.yc9{bottom:154.960000pt;}
.y38{bottom:157.893333pt;}
.yf1{bottom:158.200000pt;}
.y30{bottom:158.466667pt;}
.yb0{bottom:158.733333pt;}
.y7a{bottom:167.800000pt;}
.y37{bottom:173.373333pt;}
.yf0{bottom:173.400000pt;}
.y2f{bottom:173.666667pt;}
.yaf{bottom:173.933333pt;}
.y79{bottom:183.266667pt;}
.yef{bottom:188.866667pt;}
.y36{bottom:189.106667pt;}
.y2e{bottom:189.133333pt;}
.yae{bottom:189.400000pt;}
.y78{bottom:198.466667pt;}
.yee{bottom:203.533333pt;}
.y135{bottom:204.066667pt;}
.y2d{bottom:204.333333pt;}
.yad{bottom:204.600000pt;}
.y77{bottom:213.933333pt;}
.yed{bottom:216.333333pt;}
.y134{bottom:219.533333pt;}
.y2c{bottom:219.800000pt;}
.yac{bottom:220.066667pt;}
.y76{bottom:229.133333pt;}
.yec{bottom:229.400000pt;}
.ye7{bottom:232.333333pt;}
.y133{bottom:234.733333pt;}
.y2b{bottom:235.000000pt;}
.yab{bottom:235.266667pt;}
.y75{bottom:243.800000pt;}
.y132{bottom:250.200000pt;}
.y2a{bottom:250.466667pt;}
.yaa{bottom:251.000000pt;}
.y74{bottom:256.866667pt;}
.y131{bottom:265.400000pt;}
.y29{bottom:265.666667pt;}
.ya9{bottom:268.333333pt;}
.y73{bottom:272.066667pt;}
.y28{bottom:280.333333pt;}
.y130{bottom:281.133333pt;}
.ya8{bottom:281.400000pt;}
.y72{bottom:287.533333pt;}
.y27{bottom:293.400000pt;}
.ye5{bottom:294.466667pt;}
.ya7{bottom:296.600000pt;}
.y12f{bottom:298.466667pt;}
.y71{bottom:302.733333pt;}
.y26{bottom:308.626667pt;}
.y12e{bottom:311.560000pt;}
.ya6{bottom:312.093333pt;}
.ye4{bottom:313.440000pt;}
.y70{bottom:318.226667pt;}
.y25{bottom:324.093333pt;}
.y12d{bottom:326.773333pt;}
.ya5{bottom:327.293333pt;}
.ye3{bottom:328.893333pt;}
.yc8{bottom:332.893333pt;}
.y6f{bottom:333.426667pt;}
.y24{bottom:339.293333pt;}
.y12c{bottom:342.226667pt;}
.ya4{bottom:342.760000pt;}
.yc7{bottom:345.706667pt;}
.ye2{bottom:345.973333pt;}
.y6e{bottom:348.093333pt;}
.y23{bottom:354.773333pt;}
.y12b{bottom:357.440000pt;}
.ya3{bottom:357.973333pt;}
.y6d{bottom:361.173333pt;}
.ye1{bottom:363.293333pt;}
.y22{bottom:369.973333pt;}
.y12a{bottom:372.893333pt;}
.ya2{bottom:373.440000pt;}
.y6c{bottom:376.373333pt;}
.y21{bottom:385.440000pt;}
.y129{bottom:388.106667pt;}
.ya1{bottom:388.626667pt;}
.ye0{bottom:391.560000pt;}
.y6b{bottom:391.840000pt;}
.y20{bottom:400.626667pt;}
.y128{bottom:403.560000pt;}
.ya0{bottom:404.106667pt;}
.y6a{bottom:407.026667pt;}
.y1f{bottom:416.106667pt;}
.y127{bottom:418.226667pt;}
.y9f{bottom:419.306667pt;}
.ydf{bottom:422.226667pt;}
.y69{bottom:422.506667pt;}
.y159{bottom:428.626667pt;}
.y126{bottom:431.026667pt;}
.y1e{bottom:431.306667pt;}
.y9e{bottom:435.040000pt;}
.y68{bottom:437.706667pt;}
.y158{bottom:443.840000pt;}
.y125{bottom:446.506667pt;}
.y1d{bottom:447.040000pt;}
.y9d{bottom:452.360000pt;}
.yde{bottom:452.893333pt;}
.yc6{bottom:453.173333pt;}
.y67{bottom:453.440000pt;}
.y157{bottom:459.333333pt;}
.y124{bottom:461.733333pt;}
.y1c{bottom:463.333333pt;}
.y9c{bottom:465.466667pt;}
.yc5{bottom:468.400000pt;}
.y66{bottom:471.866667pt;}
.y156{bottom:474.533333pt;}
.y123{bottom:477.200000pt;}
.y9b{bottom:480.666667pt;}
.ydd{bottom:483.600000pt;}
.yc4{bottom:483.866667pt;}
.y65{bottom:489.200000pt;}
.y155{bottom:490.000000pt;}
.y122{bottom:492.400000pt;}
.y9a{bottom:496.133333pt;}
.ydc{bottom:498.266667pt;}
.yc3{bottom:498.533333pt;}
.y64{bottom:502.266667pt;}
.y154{bottom:505.200000pt;}
.y121{bottom:507.866667pt;}
.y99{bottom:511.333333pt;}
.y35{bottom:517.466667pt;}
.y153{bottom:520.666667pt;}
.y120{bottom:523.066667pt;}
.ydb{bottom:526.533333pt;}
.y98{bottom:526.800000pt;}
.y63{bottom:532.933333pt;}
.y152{bottom:535.866667pt;}
.y11f{bottom:538.533333pt;}
.y97{bottom:542.000000pt;}
.y62{bottom:548.133333pt;}
.y151{bottom:551.333333pt;}
.y11e{bottom:553.733333pt;}
.yda{bottom:557.200000pt;}
.y96{bottom:557.466667pt;}
.y61{bottom:563.600000pt;}
.y150{bottom:566.533333pt;}
.y11d{bottom:568.400000pt;}
.y95{bottom:572.666667pt;}
.y60{bottom:578.800000pt;}
.y11c{bottom:581.466667pt;}
.y14f{bottom:582.000000pt;}
.yd9{bottom:587.866667pt;}
.y94{bottom:588.133333pt;}
.y5f{bottom:594.266667pt;}
.y11b{bottom:596.666667pt;}
.y14e{bottom:597.200000pt;}
.y93{bottom:602.800000pt;}
.yd8{bottom:603.600000pt;}
.yc2{bottom:603.866667pt;}
.y5e{bottom:609.506667pt;}
.y11a{bottom:612.173333pt;}
.y14d{bottom:612.693333pt;}
.y92{bottom:615.640000pt;}
.yd7{bottom:620.960000pt;}
.yc1{bottom:621.240000pt;}
.y5d{bottom:624.973333pt;}
.y119{bottom:627.360000pt;}
.y14c{bottom:627.893333pt;}
.y91{bottom:631.093333pt;}
.yc0{bottom:634.026667pt;}
.y5c{bottom:640.173333pt;}
.y118{bottom:642.840000pt;}
.y14b{bottom:643.373333pt;}
.y90{bottom:646.293333pt;}
.yd6{bottom:649.226667pt;}
.ybf{bottom:649.506667pt;}
.y5b{bottom:655.640000pt;}
.y117{bottom:658.026667pt;}
.y14a{bottom:658.573333pt;}
.y8f{bottom:661.773333pt;}
.ybe{bottom:664.706667pt;}
.y5a{bottom:670.840000pt;}
.y116{bottom:673.506667pt;}
.y149{bottom:674.026667pt;}
.y8e{bottom:676.973333pt;}
.yd5{bottom:679.906667pt;}
.ybd{bottom:680.173333pt;}
.y59{bottom:685.506667pt;}
.y115{bottom:689.226667pt;}
.y8d{bottom:692.706667pt;}
.ybc{bottom:695.373333pt;}
.y58{bottom:698.560000pt;}
.y148{bottom:704.706667pt;}
.y114{bottom:706.573333pt;}
.yfa{bottom:707.466667pt;}
.y8c{bottom:710.040000pt;}
.ybb{bottom:710.840000pt;}
.y57{bottom:713.760000pt;}
.yd4{bottom:718.293333pt;}
.y113{bottom:719.373333pt;}
.y147{bottom:719.893333pt;}
.y8b{bottom:723.106667pt;}
.yba{bottom:726.040000pt;}
.y56{bottom:729.240000pt;}
.y111{bottom:732.426667pt;}
.y146{bottom:735.373333pt;}
.y8a{bottom:738.293333pt;}
.yb9{bottom:741.506667pt;}
.y55{bottom:744.440000pt;}
.y10f{bottom:747.626667pt;}
.y145{bottom:750.560000pt;}
.y1b{bottom:751.626667pt;}
.y89{bottom:753.773333pt;}
.yb8{bottom:757.266667pt;}
.yd3{bottom:759.133333pt;}
.y54{bottom:759.933333pt;}
.y10e{bottom:763.133333pt;}
.y144{bottom:766.066667pt;}
.y1a{bottom:767.133333pt;}
.y88{bottom:769.000000pt;}
.yb7{bottom:774.600000pt;}
.y53{bottom:775.133333pt;}
.y10d{bottom:778.333333pt;}
.yf9{bottom:778.400000pt;}
.y143{bottom:781.266667pt;}
.yfc{bottom:784.266667pt;}
.y87{bottom:784.466667pt;}
.yb6{bottom:787.400000pt;}
.y19{bottom:788.733333pt;}
.y52{bottom:789.800000pt;}
.y10c{bottom:794.333333pt;}
.y142{bottom:796.733333pt;}
.y86{bottom:799.666667pt;}
.yd2{bottom:800.200000pt;}
.y51{bottom:802.866667pt;}
.y18{bottom:809.000000pt;}
.y105{bottom:810.333333pt;}
.y141{bottom:811.933333pt;}
.y85{bottom:815.133333pt;}
.y50{bottom:818.066667pt;}
.y140{bottom:827.400000pt;}
.y84{bottom:830.333333pt;}
.y17{bottom:833.266667pt;}
.y4f{bottom:833.533333pt;}
.yd1{bottom:834.600000pt;}
.yf7{bottom:836.800000pt;}
.y13f{bottom:842.600000pt;}
.y83{bottom:845.800000pt;}
.y16{bottom:848.733333pt;}
.y13e{bottom:858.066667pt;}
.y15{bottom:858.866667pt;}
.y82{bottom:861.000000pt;}
.y4e{bottom:864.200000pt;}
.yf5{bottom:866.666667pt;}
.yd0{bottom:869.000000pt;}
.y14{bottom:873.000000pt;}
.y13d{bottom:873.266667pt;}
.y81{bottom:876.466667pt;}
.y4d{bottom:879.400000pt;}
.y13{bottom:888.733333pt;}
.y80{bottom:891.666667pt;}
.yb5{bottom:894.066667pt;}
.y4c{bottom:894.866667pt;}
.ycf{bottom:903.706667pt;}
.y13c{bottom:903.960000pt;}
.y12{bottom:907.173333pt;}
.y4b{bottom:909.560000pt;}
.y13b{bottom:919.440000pt;}
.y4a{bottom:922.373333pt;}
.y11{bottom:922.893333pt;}
.ye{bottom:925.293333pt;}
.y104{bottom:930.360000pt;}
.y13a{bottom:934.626667pt;}
.y49{bottom:937.840000pt;}
.yce{bottom:938.106667pt;}
.yd{bottom:944.506667pt;}
.y103{bottom:949.293333pt;}
.yc{bottom:949.560000pt;}
.y139{bottom:950.106667pt;}
.y48{bottom:953.040000pt;}
.ycd{bottom:955.440000pt;}
.y102{bottom:956.226667pt;}
.yb{bottom:963.173333pt;}
.y138{bottom:965.293333pt;}
.y47{bottom:968.506667pt;}
.y7f{bottom:968.773333pt;}
.y100{bottom:974.626667pt;}
.ya{bottom:975.960000pt;}
.y137{bottom:980.773333pt;}
.y46{bottom:983.706667pt;}
.y7e{bottom:986.106667pt;}
.y9{bottom:991.706667pt;}
.yff{bottom:995.960000pt;}
.y45{bottom:999.173333pt;}
.y8{bottom:1007.706667pt;}
.yfe{bottom:1011.706667pt;}
.y7{bottom:1014.373333pt;}
.y1{bottom:1060.800000pt;}
.y43{bottom:1063.466667pt;}
.h1a{height:7.526042pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.h25{height:15.200000pt;}
.h18{height:15.233333pt;}
.h24{height:15.466667pt;}
.h26{height:15.500000pt;}
.h1f{height:17.600000pt;}
.ha{height:18.666667pt;}
.h21{height:18.815104pt;}
.h1c{height:18.933333pt;}
.h10{height:19.283854pt;}
.hc{height:25.454687pt;}
.h7{height:30.104167pt;}
.h15{height:30.812500pt;}
.h11{height:30.854167pt;}
.h3{height:32.000000pt;}
.h1b{height:32.533333pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h4{height:37.630208pt;}
.hf{height:38.567708pt;}
.h27{height:38.828125pt;}
.h16{height:39.562500pt;}
.h17{height:41.393229pt;}
.h14{height:43.958333pt;}
.h23{height:44.035937pt;}
.h1e{height:44.089271pt;}
.hb{height:44.654687pt;}
.h20{height:44.708021pt;}
.h6{height:45.156250pt;}
.h13{height:46.218750pt;}
.he{height:46.281250pt;}
.h1d{height:52.000000pt;}
.h1{height:58.351562pt;}
.h19{height:61.333333pt;}
.h2{height:86.400000pt;}
.h22{height:120.033333pt;}
.h12{height:204.026667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w3{width:96.000000pt;}
.wa{width:129.066667pt;}
.wb{width:131.733333pt;}
.wd{width:152.293333pt;}
.w15{width:155.533333pt;}
.w12{width:155.760000pt;}
.w14{width:156.026667pt;}
.w13{width:156.066667pt;}
.w10{width:159.266667pt;}
.we{width:159.533333pt;}
.wf{width:159.773333pt;}
.w9{width:161.333333pt;}
.wc{width:161.600000pt;}
.w6{width:225.133333pt;}
.w5{width:429.733333pt;}
.w8{width:537.773333pt;}
.w7{width:649.000000pt;}
.w11{width:650.066667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:4.000000pt;}
.x12{left:6.933333pt;}
.x2{left:9.599999pt;}
.x1a{left:10.933333pt;}
.x10{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x17{left:50.040000pt;}
.x1c{left:53.066667pt;}
.x25{left:62.933333pt;}
.x24{left:66.160000pt;}
.x1e{left:68.000000pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x21{left:73.626667pt;}
.xf{left:74.700000pt;}
.x22{left:75.733333pt;}
.x26{left:96.033322pt;}
.xe{left:103.773333pt;}
.x13{left:110.933333pt;}
.x15{left:122.933333pt;}
.x14{left:124.266667pt;}
.x9{left:136.559988pt;}
.xc{left:214.726667pt;}
.x19{left:224.600000pt;}
.x20{left:228.066667pt;}
.x6{left:360.106655pt;}
.x1b{left:384.133333pt;}
.x16{left:487.466667pt;}
.xd{left:499.360000pt;}
.x11{left:523.106655pt;}
.x18{left:527.639988pt;}
.x23{left:540.173333pt;}
.x1d{left:543.906667pt;}
.x8{left:547.893322pt;}
.x7{left:576.173322pt;}
.x5{left:620.999988pt;}
.xa{left:722.106655pt;}
}




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