
    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_bcecb65df7aaa828ed88ac01.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.721191;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_e0be8ed16a0d2db36acf004b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_920217c58b57f784fdb8c505.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a633d7e8f7cde639cd7d2b0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_abb038e9b842a2cae62198ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_88acb595d1250c1e354d2915.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_9fa65f178547003f70e1c06e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b380553d897e4a7584a61f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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_f73115cb3e50b6186e80d5aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_67558ee08954b705f6138382.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3a9fa619ff9d410cfaf24218.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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:ffc;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.600000px;}
.ls11{letter-spacing:-0.852000px;}
.ls8{letter-spacing:-0.564000px;}
.ls6{letter-spacing:-0.192000px;}
.ls5{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.lse{letter-spacing:0.114000px;}
.lsf{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.348000px;}
.ls4{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.492000px;}
.lsd{letter-spacing:0.528000px;}
.ls0{letter-spacing:0.556800px;}
.lsa{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.616800px;}
.ls14{letter-spacing:1.800000px;}
.ls13{letter-spacing:37.080000px;}
.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;}
}
.wsc{word-spacing:-15.048000px;}
.ws7{word-spacing:-15.012000px;}
.wsb{word-spacing:-14.868000px;}
.wsa{word-spacing:-14.634000px;}
.ws4{word-spacing:-14.520000px;}
.ws8{word-spacing:-14.472000px;}
.ws6{word-spacing:-13.956000px;}
.ws9{word-spacing:-13.668000px;}
.ws1{word-spacing:-13.560000px;}
.ws0{word-spacing:-13.200000px;}
.ws3{word-spacing:-11.040000px;}
.ws2{word-spacing:-10.368000px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-5.961600px;}
._3{margin-left:-3.844800px;}
._0{margin-left:-2.040000px;}
._2{margin-left:-1.035600px;}
._1{width:1.305600px;}
._8{width:2.347200px;}
._15{width:3.828000px;}
._14{width:5.214000px;}
._5{width:6.930000px;}
._6{width:7.988400px;}
._e{width:9.710400px;}
._d{width:11.022000px;}
._f{width:12.414000px;}
._17{width:13.497600px;}
._11{width:16.170000px;}
._10{width:17.424000px;}
._9{width:18.758400px;}
._a{width:19.983600px;}
._19{width:21.010800px;}
._1d{width:22.176000px;}
._1c{width:24.244800px;}
._1b{width:25.407600px;}
._1a{width:26.725200px;}
._c{width:27.862800px;}
._b{width:29.436000px;}
._7{width:32.340000px;}
._12{width:37.752000px;}
._13{width:115.740000px;}
._18{width:138.336000px;}
._16{width:1035.450000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:6.000000px;}
.fs8{font-size:12.000000px;}
.fs4{font-size:30.000000px;}
.fs6{font-size:39.600000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:81.600000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.285000px;}
.y80{bottom:3.300000px;}
.y91{bottom:3.315000px;}
.y6d{bottom:3.585000px;}
.y69{bottom:3.600000px;}
.y2c{bottom:3.615000px;}
.y72{bottom:3.645000px;}
.yb6{bottom:4.200000px;}
.ybc{bottom:4.215000px;}
.yb8{bottom:8.100000px;}
.y16{bottom:9.615000px;}
.y1a{bottom:12.600000px;}
.y66{bottom:13.245000px;}
.y2b{bottom:23.115000px;}
.y64{bottom:23.145000px;}
.y15{bottom:23.700000px;}
.y65{bottom:32.745000px;}
.y14{bottom:38.415000px;}
.y2a{bottom:42.300000px;}
.y67{bottom:42.345000px;}
.y13{bottom:55.845000px;}
.y29{bottom:61.800000px;}
.y12{bottom:73.545000px;}
.y28{bottom:81.045000px;}
.ya{bottom:84.937500px;}
.y7c{bottom:87.937500px;}
.y45{bottom:88.237500px;}
.y9{bottom:90.037500px;}
.y11{bottom:91.245000px;}
.y27{bottom:100.545000px;}
.y7b{bottom:105.637500px;}
.y40{bottom:109.237500px;}
.y10{bottom:110.745000px;}
.y3f{bottom:114.637500px;}
.y26{bottom:119.745000px;}
.y44{bottom:123.337500px;}
.y3e{bottom:126.937500px;}
.y101{bottom:127.837500px;}
.y3d{bottom:132.337500px;}
.yb4{bottom:138.037500px;}
.yf{bottom:138.945000px;}
.y25{bottom:139.245000px;}
.y132{bottom:140.737500px;}
.y3c{bottom:144.637500px;}
.y100{bottom:147.037500px;}
.yb3{bottom:157.545000px;}
.y43{bottom:158.430000px;}
.y24{bottom:158.445000px;}
.y131{bottom:160.245000px;}
.y3b{bottom:166.230000px;}
.yff{bottom:166.545000px;}
.ye{bottom:167.145000px;}
.yb2{bottom:176.745000px;}
.y23{bottom:177.945000px;}
.y130{bottom:179.475000px;}
.y3a{bottom:185.775000px;}
.yd{bottom:195.345000px;}
.yb1{bottom:196.275000px;}
.y22{bottom:197.145000px;}
.y7a{bottom:198.075000px;}
.y114{bottom:198.375000px;}
.y12f{bottom:198.975000px;}
.y39{bottom:204.975000px;}
.ydc{bottom:207.675000px;}
.y17{bottom:211.290000px;}
.yb0{bottom:215.175000px;}
.y21{bottom:216.645000px;}
.y79{bottom:216.975000px;}
.y113{bottom:217.575000px;}
.y12e{bottom:218.175000px;}
.yc{bottom:219.690000px;}
.y38{bottom:224.475000px;}
.ydb{bottom:226.875000px;}
.yaf{bottom:232.875000px;}
.y146{bottom:234.375000px;}
.y78{bottom:234.675000px;}
.y20{bottom:235.845000px;}
.y112{bottom:237.075000px;}
.y12d{bottom:237.675000px;}
.y37{bottom:243.675000px;}
.yda{bottom:246.375000px;}
.yae{bottom:247.875000px;}
.y77{bottom:252.375000px;}
.y145{bottom:253.875000px;}
.y1f{bottom:255.390000px;}
.y111{bottom:256.275000px;}
.y12c{bottom:256.875000px;}
.y36{bottom:263.175000px;}
.yd9{bottom:265.575000px;}
.yad{bottom:266.175000px;}
.y76{bottom:269.775000px;}
.y144{bottom:273.075000px;}
.y1e{bottom:274.590000px;}
.y110{bottom:275.775000px;}
.y12b{bottom:276.375000px;}
.y35{bottom:282.375000px;}
.yac{bottom:284.475000px;}
.yd8{bottom:285.075000px;}
.y75{bottom:287.475000px;}
.y143{bottom:292.575000px;}
.y1d{bottom:294.075000px;}
.y10f{bottom:294.975000px;}
.y12a{bottom:295.575000px;}
.y34{bottom:301.875000px;}
.y74{bottom:302.475000px;}
.yab{bottom:302.775000px;}
.y2d{bottom:304.275000px;}
.y142{bottom:311.775000px;}
.y1c{bottom:313.290000px;}
.y10e{bottom:314.475000px;}
.y129{bottom:315.075000px;}
.y33{bottom:321.075000px;}
.y73{bottom:322.575000px;}
.yd7{bottom:323.775000px;}
.y141{bottom:331.275000px;}
.y10d{bottom:333.675000px;}
.y128{bottom:334.275000px;}
.yaa{bottom:339.375000px;}
.y32{bottom:340.575000px;}
.y71{bottom:342.675000px;}
.yd6{bottom:342.975000px;}
.y140{bottom:350.505000px;}
.y10c{bottom:353.205000px;}
.y127{bottom:353.820000px;}
.ya9{bottom:357.705000px;}
.y31{bottom:359.820000px;}
.yd5{bottom:362.520000px;}
.y70{bottom:362.820000px;}
.y13f{bottom:370.005000px;}
.y10b{bottom:372.420000px;}
.y126{bottom:373.005000px;}
.ya8{bottom:376.005000px;}
.y30{bottom:379.020000px;}
.yfe{bottom:379.320000px;}
.yd4{bottom:381.705000px;}
.y6f{bottom:382.905000px;}
.y13e{bottom:389.220000px;}
.y10a{bottom:391.905000px;}
.y125{bottom:392.520000px;}
.ya7{bottom:394.620000px;}
.y2f{bottom:398.505000px;}
.yd3{bottom:401.205000px;}
.y6e{bottom:403.005000px;}
.y13d{bottom:408.420000px;}
.y109{bottom:411.120000px;}
.y124{bottom:411.705000px;}
.ya6{bottom:412.905000px;}
.y2e{bottom:417.720000px;}
.yfd{bottom:418.005000px;}
.yd2{bottom:420.420000px;}
.y6c{bottom:423.120000px;}
.y13c{bottom:427.920000px;}
.y108{bottom:430.620000px;}
.ya5{bottom:431.205000px;}
.y123{bottom:431.220000px;}
.y1b{bottom:434.205000px;}
.yfc{bottom:437.205000px;}
.yd1{bottom:439.920000px;}
.y6b{bottom:443.205000px;}
.y13b{bottom:447.120000px;}
.ya4{bottom:449.505000px;}
.y107{bottom:449.820000px;}
.y122{bottom:450.420000px;}
.yfb{bottom:456.720000px;}
.yd0{bottom:459.120000px;}
.y6a{bottom:463.320000px;}
.y13a{bottom:466.620000px;}
.ya3{bottom:467.820000px;}
.y106{bottom:469.320000px;}
.y121{bottom:469.920000px;}
.yfa{bottom:475.920000px;}
.ycf{bottom:478.620000px;}
.y68{bottom:483.405000px;}
.y139{bottom:485.820000px;}
.ya2{bottom:486.120000px;}
.y105{bottom:488.505000px;}
.y120{bottom:489.120000px;}
.y160{bottom:492.705000px;}
.yf9{bottom:495.405000px;}
.yce{bottom:497.820000px;}
.y63{bottom:503.505000px;}
.ya1{bottom:504.405000px;}
.y138{bottom:505.320000px;}
.y104{bottom:508.020000px;}
.y11f{bottom:508.620000px;}
.y15f{bottom:511.905000px;}
.yf8{bottom:514.650000px;}
.ycd{bottom:517.350000px;}
.ya0{bottom:522.750000px;}
.y137{bottom:524.550000px;}
.y103{bottom:527.250000px;}
.y11e{bottom:527.850000px;}
.y15e{bottom:531.450000px;}
.yf7{bottom:534.150000px;}
.ycc{bottom:536.550000px;}
.y9f{bottom:541.350000px;}
.y136{bottom:544.050000px;}
.y102{bottom:546.750000px;}
.y11d{bottom:547.350000px;}
.y15d{bottom:550.650000px;}
.yf6{bottom:553.350000px;}
.ycb{bottom:556.050000px;}
.y9e{bottom:559.650000px;}
.y135{bottom:563.250000px;}
.y62{bottom:565.950000px;}
.y11c{bottom:567.750000px;}
.y15c{bottom:570.150000px;}
.yf5{bottom:572.850000px;}
.yca{bottom:575.250000px;}
.y9d{bottom:577.950000px;}
.y134{bottom:582.750000px;}
.y61{bottom:585.450000px;}
.y11b{bottom:587.850000px;}
.y15b{bottom:589.350000px;}
.yf4{bottom:592.050000px;}
.yc9{bottom:594.750000px;}
.y9c{bottom:596.250000px;}
.y133{bottom:603.150000px;}
.y60{bottom:604.650000px;}
.y11a{bottom:608.550000px;}
.y15a{bottom:608.850000px;}
.yf3{bottom:611.550000px;}
.yc8{bottom:613.950000px;}
.y9b{bottom:614.550000px;}
.y5f{bottom:624.150000px;}
.y159{bottom:628.050000px;}
.y119{bottom:628.650000px;}
.yf2{bottom:630.750000px;}
.y9a{bottom:632.850000px;}
.yc7{bottom:633.150000px;}
.y5e{bottom:643.350000px;}
.y158{bottom:647.550000px;}
.y118{bottom:648.150000px;}
.yf1{bottom:650.250000px;}
.y99{bottom:651.150000px;}
.yc6{bottom:652.650000px;}
.y5d{bottom:662.550000px;}
.y157{bottom:666.750000px;}
.y117{bottom:667.350000px;}
.y98{bottom:669.450000px;}
.yc5{bottom:671.850000px;}
.y5c{bottom:682.095000px;}
.y156{bottom:686.280000px;}
.y116{bottom:686.895000px;}
.y97{bottom:687.780000px;}
.yf0{bottom:688.695000px;}
.yc4{bottom:691.380000px;}
.y5b{bottom:701.280000px;}
.y155{bottom:705.495000px;}
.y96{bottom:706.380000px;}
.y115{bottom:707.295000px;}
.yef{bottom:708.195000px;}
.yc3{bottom:710.595000px;}
.y5a{bottom:720.795000px;}
.y95{bottom:724.695000px;}
.y154{bottom:724.980000px;}
.yee{bottom:727.395000px;}
.yc2{bottom:730.095000px;}
.y59{bottom:739.995000px;}
.y94{bottom:742.980000px;}
.y153{bottom:744.195000px;}
.yed{bottom:746.880000px;}
.yc1{bottom:749.295000px;}
.y58{bottom:759.495000px;}
.y93{bottom:761.280000px;}
.y152{bottom:763.695000px;}
.y19{bottom:763.980000px;}
.yec{bottom:766.080000px;}
.yc0{bottom:768.795000px;}
.y57{bottom:778.695000px;}
.y92{bottom:779.595000px;}
.y151{bottom:782.880000px;}
.yeb{bottom:785.580000px;}
.ybf{bottom:787.995000px;}
.y90{bottom:797.880000px;}
.y56{bottom:798.195000px;}
.y150{bottom:802.380000px;}
.y18{bottom:802.695000px;}
.yea{bottom:804.795000px;}
.yb{bottom:805.380000px;}
.ybe{bottom:806.895000px;}
.y8f{bottom:816.195000px;}
.y55{bottom:817.380000px;}
.y14f{bottom:821.580000px;}
.ybd{bottom:821.880000px;}
.ye9{bottom:824.295000px;}
.y8e{bottom:834.495000px;}
.y54{bottom:836.880000px;}
.y14e{bottom:841.080000px;}
.ybb{bottom:842.580000px;}
.ye8{bottom:843.480000px;}
.y8d{bottom:853.125000px;}
.y53{bottom:856.125000px;}
.y14d{bottom:860.325000px;}
.yba{bottom:863.025000px;}
.y8c{bottom:871.425000px;}
.y52{bottom:875.625000px;}
.y14c{bottom:879.825000px;}
.ye7{bottom:882.225000px;}
.yb9{bottom:883.725000px;}
.y8b{bottom:889.725000px;}
.y51{bottom:894.825000px;}
.y14b{bottom:899.025000px;}
.ye6{bottom:901.725000px;}
.yb7{bottom:904.125000px;}
.y8a{bottom:908.025000px;}
.y50{bottom:914.325000px;}
.y14a{bottom:918.225000px;}
.ye5{bottom:920.925000px;}
.y89{bottom:926.325000px;}
.yb5{bottom:928.725000px;}
.y4f{bottom:933.525000px;}
.y149{bottom:937.725000px;}
.ye4{bottom:940.425000px;}
.y88{bottom:944.625000px;}
.y4e{bottom:953.025000px;}
.y148{bottom:956.925000px;}
.ye3{bottom:959.625000px;}
.y87{bottom:962.925000px;}
.y4d{bottom:972.225000px;}
.y147{bottom:977.625000px;}
.ye2{bottom:979.125000px;}
.y86{bottom:981.225000px;}
.y4c{bottom:991.725000px;}
.ye1{bottom:998.325000px;}
.y85{bottom:999.525000px;}
.y4b{bottom:1010.925000px;}
.ye0{bottom:1017.870000px;}
.y83{bottom:1018.170000px;}
.y4a{bottom:1030.455000px;}
.y8{bottom:1035.570000px;}
.y82{bottom:1036.455000px;}
.ydf{bottom:1037.070000px;}
.y49{bottom:1049.670000px;}
.y7{bottom:1052.955000px;}
.y81{bottom:1054.770000px;}
.yde{bottom:1056.570000px;}
.y48{bottom:1069.170000px;}
.y6{bottom:1070.070000px;}
.y7f{bottom:1073.070000px;}
.ydd{bottom:1075.755000px;}
.y5{bottom:1087.455000px;}
.y47{bottom:1088.370000px;}
.y7e{bottom:1095.255000px;}
.y4{bottom:1105.170000px;}
.y46{bottom:1107.870000px;}
.y7d{bottom:1114.455000px;}
.y3{bottom:1122.870000px;}
.y2{bottom:1140.255000px;}
.y42{bottom:1144.455000px;}
.y1{bottom:1159.170000px;}
.y41{bottom:1162.455000px;}
.h4{height:4.189453px;}
.h9{height:10.160156px;}
.h13{height:17.400000px;}
.h15{height:17.685000px;}
.h12{height:17.700000px;}
.h14{height:17.737500px;}
.h10{height:19.200000px;}
.h11{height:19.237500px;}
.h16{height:19.800000px;}
.h18{height:19.837500px;}
.h17{height:23.700000px;}
.hd{height:27.495703px;}
.ha{height:37.200000px;}
.h8{height:40.640625px;}
.he{height:41.660156px;}
.h3{height:41.894531px;}
.h2{height:50.800781px;}
.hb{height:55.623047px;}
.h6{height:55.880859px;}
.h1{height:57.574219px;}
.hf{height:57.937500px;}
.h19{height:71.613281px;}
.h7{height:81.281250px;}
.h5{height:226.875000px;}
.hc{height:328.875000px;}
.h0{height:1263.000000px;}
.w6{width:18.637500px;}
.wd{width:39.900000px;}
.w9{width:51.622500px;}
.w4{width:101.130000px;}
.w11{width:101.400000px;}
.w10{width:101.437500px;}
.wc{width:140.437500px;}
.w5{width:156.330000px;}
.wb{width:159.045000px;}
.wf{width:204.375000px;}
.wa{width:212.175000px;}
.we{width:286.575000px;}
.w7{width:494.850000px;}
.w3{width:677.625000px;}
.w8{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.xe{left:-113.445000px;}
.x0{left:0.000000px;}
.x13{left:2.700000px;}
.x1b{left:7.485000px;}
.x4{left:8.700000px;}
.xc{left:71.137500px;}
.x6{left:87.637500px;}
.xf{left:98.137487px;}
.x1{left:106.237487px;}
.x16{left:111.337487px;}
.x3{left:114.337500px;}
.x7{left:120.337500px;}
.x10{left:121.837500px;}
.x2a{left:127.537487px;}
.x14{left:138.337487px;}
.x1a{left:162.045000px;}
.x20{left:165.929987px;}
.x8{left:172.837500px;}
.x18{left:179.474987px;}
.x24{left:211.574987px;}
.x1c{left:214.575000px;}
.x25{left:219.075000px;}
.x1f{left:240.074987px;}
.x22{left:241.274987px;}
.xa{left:258.067500px;}
.x11{left:278.175000px;}
.x12{left:296.820000px;}
.x5{left:303.412500px;}
.xb{left:306.712500px;}
.x15{left:322.319987px;}
.x19{left:331.319987px;}
.x27{left:343.020000px;}
.x9{left:345.112500px;}
.x17{left:417.449987px;}
.x1d{left:427.350000px;}
.x2{left:433.349987px;}
.x23{left:434.849987px;}
.x21{left:444.449987px;}
.x26{left:506.250000px;}
.x28{left:547.095000px;}
.x1e{left:586.995000px;}
.x29{left:649.095000px;}
.xd{left:791.970000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.866667pt;}
.ls11{letter-spacing:-0.757333pt;}
.ls8{letter-spacing:-0.501333pt;}
.ls6{letter-spacing:-0.170667pt;}
.ls5{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.101333pt;}
.lsf{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.309333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.437333pt;}
.lsd{letter-spacing:0.469333pt;}
.ls0{letter-spacing:0.494933pt;}
.lsa{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.548267pt;}
.ls14{letter-spacing:1.600000pt;}
.ls13{letter-spacing:32.960000pt;}
.wsc{word-spacing:-13.376000pt;}
.ws7{word-spacing:-13.344000pt;}
.wsb{word-spacing:-13.216000pt;}
.wsa{word-spacing:-13.008000pt;}
.ws4{word-spacing:-12.906667pt;}
.ws8{word-spacing:-12.864000pt;}
.ws6{word-spacing:-12.405333pt;}
.ws9{word-spacing:-12.149333pt;}
.ws1{word-spacing:-12.053333pt;}
.ws0{word-spacing:-11.733333pt;}
.ws3{word-spacing:-9.813333pt;}
.ws2{word-spacing:-9.216000pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-5.299200pt;}
._3{margin-left:-3.417600pt;}
._0{margin-left:-1.813333pt;}
._2{margin-left:-0.920533pt;}
._1{width:1.160533pt;}
._8{width:2.086400pt;}
._15{width:3.402667pt;}
._14{width:4.634667pt;}
._5{width:6.160000pt;}
._6{width:7.100800pt;}
._e{width:8.631467pt;}
._d{width:9.797333pt;}
._f{width:11.034667pt;}
._17{width:11.997867pt;}
._11{width:14.373333pt;}
._10{width:15.488000pt;}
._9{width:16.674133pt;}
._a{width:17.763200pt;}
._19{width:18.676267pt;}
._1d{width:19.712000pt;}
._1c{width:21.550933pt;}
._1b{width:22.584533pt;}
._1a{width:23.755733pt;}
._c{width:24.766933pt;}
._b{width:26.165333pt;}
._7{width:28.746667pt;}
._12{width:33.557333pt;}
._13{width:102.880000pt;}
._18{width:122.965333pt;}
._16{width:920.400000pt;}
.fs2{font-size:5.333333pt;}
.fs8{font-size:10.666667pt;}
.fs4{font-size:26.666667pt;}
.fs6{font-size:35.200000pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:72.533333pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.920000pt;}
.y80{bottom:2.933333pt;}
.y91{bottom:2.946667pt;}
.y6d{bottom:3.186667pt;}
.y69{bottom:3.200000pt;}
.y2c{bottom:3.213333pt;}
.y72{bottom:3.240000pt;}
.yb6{bottom:3.733333pt;}
.ybc{bottom:3.746667pt;}
.yb8{bottom:7.200000pt;}
.y16{bottom:8.546667pt;}
.y1a{bottom:11.200000pt;}
.y66{bottom:11.773333pt;}
.y2b{bottom:20.546667pt;}
.y64{bottom:20.573333pt;}
.y15{bottom:21.066667pt;}
.y65{bottom:29.106667pt;}
.y14{bottom:34.146667pt;}
.y2a{bottom:37.600000pt;}
.y67{bottom:37.640000pt;}
.y13{bottom:49.640000pt;}
.y29{bottom:54.933333pt;}
.y12{bottom:65.373333pt;}
.y28{bottom:72.040000pt;}
.ya{bottom:75.500000pt;}
.y7c{bottom:78.166667pt;}
.y45{bottom:78.433333pt;}
.y9{bottom:80.033333pt;}
.y11{bottom:81.106667pt;}
.y27{bottom:89.373333pt;}
.y7b{bottom:93.900000pt;}
.y40{bottom:97.100000pt;}
.y10{bottom:98.440000pt;}
.y3f{bottom:101.900000pt;}
.y26{bottom:106.440000pt;}
.y44{bottom:109.633333pt;}
.y3e{bottom:112.833333pt;}
.y101{bottom:113.633333pt;}
.y3d{bottom:117.633333pt;}
.yb4{bottom:122.700000pt;}
.yf{bottom:123.506667pt;}
.y25{bottom:123.773333pt;}
.y132{bottom:125.100000pt;}
.y3c{bottom:128.566667pt;}
.y100{bottom:130.700000pt;}
.yb3{bottom:140.040000pt;}
.y43{bottom:140.826667pt;}
.y24{bottom:140.840000pt;}
.y131{bottom:142.440000pt;}
.y3b{bottom:147.760000pt;}
.yff{bottom:148.040000pt;}
.ye{bottom:148.573333pt;}
.yb2{bottom:157.106667pt;}
.y23{bottom:158.173333pt;}
.y130{bottom:159.533333pt;}
.y3a{bottom:165.133333pt;}
.yd{bottom:173.640000pt;}
.yb1{bottom:174.466667pt;}
.y22{bottom:175.240000pt;}
.y7a{bottom:176.066667pt;}
.y114{bottom:176.333333pt;}
.y12f{bottom:176.866667pt;}
.y39{bottom:182.200000pt;}
.ydc{bottom:184.600000pt;}
.y17{bottom:187.813333pt;}
.yb0{bottom:191.266667pt;}
.y21{bottom:192.573333pt;}
.y79{bottom:192.866667pt;}
.y113{bottom:193.400000pt;}
.y12e{bottom:193.933333pt;}
.yc{bottom:195.280000pt;}
.y38{bottom:199.533333pt;}
.ydb{bottom:201.666667pt;}
.yaf{bottom:207.000000pt;}
.y146{bottom:208.333333pt;}
.y78{bottom:208.600000pt;}
.y20{bottom:209.640000pt;}
.y112{bottom:210.733333pt;}
.y12d{bottom:211.266667pt;}
.y37{bottom:216.600000pt;}
.yda{bottom:219.000000pt;}
.yae{bottom:220.333333pt;}
.y77{bottom:224.333333pt;}
.y145{bottom:225.666667pt;}
.y1f{bottom:227.013333pt;}
.y111{bottom:227.800000pt;}
.y12c{bottom:228.333333pt;}
.y36{bottom:233.933333pt;}
.yd9{bottom:236.066667pt;}
.yad{bottom:236.600000pt;}
.y76{bottom:239.800000pt;}
.y144{bottom:242.733333pt;}
.y1e{bottom:244.080000pt;}
.y110{bottom:245.133333pt;}
.y12b{bottom:245.666667pt;}
.y35{bottom:251.000000pt;}
.yac{bottom:252.866667pt;}
.yd8{bottom:253.400000pt;}
.y75{bottom:255.533333pt;}
.y143{bottom:260.066667pt;}
.y1d{bottom:261.400000pt;}
.y10f{bottom:262.200000pt;}
.y12a{bottom:262.733333pt;}
.y34{bottom:268.333333pt;}
.y74{bottom:268.866667pt;}
.yab{bottom:269.133333pt;}
.y2d{bottom:270.466667pt;}
.y142{bottom:277.133333pt;}
.y1c{bottom:278.480000pt;}
.y10e{bottom:279.533333pt;}
.y129{bottom:280.066667pt;}
.y33{bottom:285.400000pt;}
.y73{bottom:286.733333pt;}
.yd7{bottom:287.800000pt;}
.y141{bottom:294.466667pt;}
.y10d{bottom:296.600000pt;}
.y128{bottom:297.133333pt;}
.yaa{bottom:301.666667pt;}
.y32{bottom:302.733333pt;}
.y71{bottom:304.600000pt;}
.yd6{bottom:304.866667pt;}
.y140{bottom:311.560000pt;}
.y10c{bottom:313.960000pt;}
.y127{bottom:314.506667pt;}
.ya9{bottom:317.960000pt;}
.y31{bottom:319.840000pt;}
.yd5{bottom:322.240000pt;}
.y70{bottom:322.506667pt;}
.y13f{bottom:328.893333pt;}
.y10b{bottom:331.040000pt;}
.y126{bottom:331.560000pt;}
.ya8{bottom:334.226667pt;}
.y30{bottom:336.906667pt;}
.yfe{bottom:337.173333pt;}
.yd4{bottom:339.293333pt;}
.y6f{bottom:340.360000pt;}
.y13e{bottom:345.973333pt;}
.y10a{bottom:348.360000pt;}
.y125{bottom:348.906667pt;}
.ya7{bottom:350.773333pt;}
.y2f{bottom:354.226667pt;}
.yd3{bottom:356.626667pt;}
.y6e{bottom:358.226667pt;}
.y13d{bottom:363.040000pt;}
.y109{bottom:365.440000pt;}
.y124{bottom:365.960000pt;}
.ya6{bottom:367.026667pt;}
.y2e{bottom:371.306667pt;}
.yfd{bottom:371.560000pt;}
.yd2{bottom:373.706667pt;}
.y6c{bottom:376.106667pt;}
.y13c{bottom:380.373333pt;}
.y108{bottom:382.773333pt;}
.ya5{bottom:383.293333pt;}
.y123{bottom:383.306667pt;}
.y1b{bottom:385.960000pt;}
.yfc{bottom:388.626667pt;}
.yd1{bottom:391.040000pt;}
.y6b{bottom:393.960000pt;}
.y13b{bottom:397.440000pt;}
.ya4{bottom:399.560000pt;}
.y107{bottom:399.840000pt;}
.y122{bottom:400.373333pt;}
.yfb{bottom:405.973333pt;}
.yd0{bottom:408.106667pt;}
.y6a{bottom:411.840000pt;}
.y13a{bottom:414.773333pt;}
.ya3{bottom:415.840000pt;}
.y106{bottom:417.173333pt;}
.y121{bottom:417.706667pt;}
.yfa{bottom:423.040000pt;}
.ycf{bottom:425.440000pt;}
.y68{bottom:429.693333pt;}
.y139{bottom:431.840000pt;}
.ya2{bottom:432.106667pt;}
.y105{bottom:434.226667pt;}
.y120{bottom:434.773333pt;}
.y160{bottom:437.960000pt;}
.yf9{bottom:440.360000pt;}
.yce{bottom:442.506667pt;}
.y63{bottom:447.560000pt;}
.ya1{bottom:448.360000pt;}
.y138{bottom:449.173333pt;}
.y104{bottom:451.573333pt;}
.y11f{bottom:452.106667pt;}
.y15f{bottom:455.026667pt;}
.yf8{bottom:457.466667pt;}
.ycd{bottom:459.866667pt;}
.ya0{bottom:464.666667pt;}
.y137{bottom:466.266667pt;}
.y103{bottom:468.666667pt;}
.y11e{bottom:469.200000pt;}
.y15e{bottom:472.400000pt;}
.yf7{bottom:474.800000pt;}
.ycc{bottom:476.933333pt;}
.y9f{bottom:481.200000pt;}
.y136{bottom:483.600000pt;}
.y102{bottom:486.000000pt;}
.y11d{bottom:486.533333pt;}
.y15d{bottom:489.466667pt;}
.yf6{bottom:491.866667pt;}
.ycb{bottom:494.266667pt;}
.y9e{bottom:497.466667pt;}
.y135{bottom:500.666667pt;}
.y62{bottom:503.066667pt;}
.y11c{bottom:504.666667pt;}
.y15c{bottom:506.800000pt;}
.yf5{bottom:509.200000pt;}
.yca{bottom:511.333333pt;}
.y9d{bottom:513.733333pt;}
.y134{bottom:518.000000pt;}
.y61{bottom:520.400000pt;}
.y11b{bottom:522.533333pt;}
.y15b{bottom:523.866667pt;}
.yf4{bottom:526.266667pt;}
.yc9{bottom:528.666667pt;}
.y9c{bottom:530.000000pt;}
.y133{bottom:536.133333pt;}
.y60{bottom:537.466667pt;}
.y11a{bottom:540.933333pt;}
.y15a{bottom:541.200000pt;}
.yf3{bottom:543.600000pt;}
.yc8{bottom:545.733333pt;}
.y9b{bottom:546.266667pt;}
.y5f{bottom:554.800000pt;}
.y159{bottom:558.266667pt;}
.y119{bottom:558.800000pt;}
.yf2{bottom:560.666667pt;}
.y9a{bottom:562.533333pt;}
.yc7{bottom:562.800000pt;}
.y5e{bottom:571.866667pt;}
.y158{bottom:575.600000pt;}
.y118{bottom:576.133333pt;}
.yf1{bottom:578.000000pt;}
.y99{bottom:578.800000pt;}
.yc6{bottom:580.133333pt;}
.y5d{bottom:588.933333pt;}
.y157{bottom:592.666667pt;}
.y117{bottom:593.200000pt;}
.y98{bottom:595.066667pt;}
.yc5{bottom:597.200000pt;}
.y5c{bottom:606.306667pt;}
.y156{bottom:610.026667pt;}
.y116{bottom:610.573333pt;}
.y97{bottom:611.360000pt;}
.yf0{bottom:612.173333pt;}
.yc4{bottom:614.560000pt;}
.y5b{bottom:623.360000pt;}
.y155{bottom:627.106667pt;}
.y96{bottom:627.893333pt;}
.y115{bottom:628.706667pt;}
.yef{bottom:629.506667pt;}
.yc3{bottom:631.640000pt;}
.y5a{bottom:640.706667pt;}
.y95{bottom:644.173333pt;}
.y154{bottom:644.426667pt;}
.yee{bottom:646.573333pt;}
.yc2{bottom:648.973333pt;}
.y59{bottom:657.773333pt;}
.y94{bottom:660.426667pt;}
.y153{bottom:661.506667pt;}
.yed{bottom:663.893333pt;}
.yc1{bottom:666.040000pt;}
.y58{bottom:675.106667pt;}
.y93{bottom:676.693333pt;}
.y152{bottom:678.840000pt;}
.y19{bottom:679.093333pt;}
.yec{bottom:680.960000pt;}
.yc0{bottom:683.373333pt;}
.y57{bottom:692.173333pt;}
.y92{bottom:692.973333pt;}
.y151{bottom:695.893333pt;}
.yeb{bottom:698.293333pt;}
.ybf{bottom:700.440000pt;}
.y90{bottom:709.226667pt;}
.y56{bottom:709.506667pt;}
.y150{bottom:713.226667pt;}
.y18{bottom:713.506667pt;}
.yea{bottom:715.373333pt;}
.yb{bottom:715.893333pt;}
.ybe{bottom:717.240000pt;}
.y8f{bottom:725.506667pt;}
.y55{bottom:726.560000pt;}
.y14f{bottom:730.293333pt;}
.ybd{bottom:730.560000pt;}
.ye9{bottom:732.706667pt;}
.y8e{bottom:741.773333pt;}
.y54{bottom:743.893333pt;}
.y14e{bottom:747.626667pt;}
.ybb{bottom:748.960000pt;}
.ye8{bottom:749.760000pt;}
.y8d{bottom:758.333333pt;}
.y53{bottom:761.000000pt;}
.y14d{bottom:764.733333pt;}
.yba{bottom:767.133333pt;}
.y8c{bottom:774.600000pt;}
.y52{bottom:778.333333pt;}
.y14c{bottom:782.066667pt;}
.ye7{bottom:784.200000pt;}
.yb9{bottom:785.533333pt;}
.y8b{bottom:790.866667pt;}
.y51{bottom:795.400000pt;}
.y14b{bottom:799.133333pt;}
.ye6{bottom:801.533333pt;}
.yb7{bottom:803.666667pt;}
.y8a{bottom:807.133333pt;}
.y50{bottom:812.733333pt;}
.y14a{bottom:816.200000pt;}
.ye5{bottom:818.600000pt;}
.y89{bottom:823.400000pt;}
.yb5{bottom:825.533333pt;}
.y4f{bottom:829.800000pt;}
.y149{bottom:833.533333pt;}
.ye4{bottom:835.933333pt;}
.y88{bottom:839.666667pt;}
.y4e{bottom:847.133333pt;}
.y148{bottom:850.600000pt;}
.ye3{bottom:853.000000pt;}
.y87{bottom:855.933333pt;}
.y4d{bottom:864.200000pt;}
.y147{bottom:869.000000pt;}
.ye2{bottom:870.333333pt;}
.y86{bottom:872.200000pt;}
.y4c{bottom:881.533333pt;}
.ye1{bottom:887.400000pt;}
.y85{bottom:888.466667pt;}
.y4b{bottom:898.600000pt;}
.ye0{bottom:904.773333pt;}
.y83{bottom:905.040000pt;}
.y4a{bottom:915.960000pt;}
.y8{bottom:920.506667pt;}
.y82{bottom:921.293333pt;}
.ydf{bottom:921.840000pt;}
.y49{bottom:933.040000pt;}
.y7{bottom:935.960000pt;}
.y81{bottom:937.573333pt;}
.yde{bottom:939.173333pt;}
.y48{bottom:950.373333pt;}
.y6{bottom:951.173333pt;}
.y7f{bottom:953.840000pt;}
.ydd{bottom:956.226667pt;}
.y5{bottom:966.626667pt;}
.y47{bottom:967.440000pt;}
.y7e{bottom:973.560000pt;}
.y4{bottom:982.373333pt;}
.y46{bottom:984.773333pt;}
.y7d{bottom:990.626667pt;}
.y3{bottom:998.106667pt;}
.y2{bottom:1013.560000pt;}
.y42{bottom:1017.293333pt;}
.y1{bottom:1030.373333pt;}
.y41{bottom:1033.293333pt;}
.h4{height:3.723958pt;}
.h9{height:9.031250pt;}
.h13{height:15.466667pt;}
.h15{height:15.720000pt;}
.h12{height:15.733333pt;}
.h14{height:15.766667pt;}
.h10{height:17.066667pt;}
.h11{height:17.100000pt;}
.h16{height:17.600000pt;}
.h18{height:17.633333pt;}
.h17{height:21.066667pt;}
.hd{height:24.440625pt;}
.ha{height:33.066667pt;}
.h8{height:36.125000pt;}
.he{height:37.031250pt;}
.h3{height:37.239583pt;}
.h2{height:45.156250pt;}
.hb{height:49.442708pt;}
.h6{height:49.671875pt;}
.h1{height:51.177083pt;}
.hf{height:51.500000pt;}
.h19{height:63.656250pt;}
.h7{height:72.250000pt;}
.h5{height:201.666667pt;}
.hc{height:292.333333pt;}
.h0{height:1122.666667pt;}
.w6{width:16.566667pt;}
.wd{width:35.466667pt;}
.w9{width:45.886667pt;}
.w4{width:89.893333pt;}
.w11{width:90.133333pt;}
.w10{width:90.166667pt;}
.wc{width:124.833333pt;}
.w5{width:138.960000pt;}
.wb{width:141.373333pt;}
.wf{width:181.666667pt;}
.wa{width:188.600000pt;}
.we{width:254.733333pt;}
.w7{width:439.866667pt;}
.w3{width:602.333333pt;}
.w8{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.xe{left:-100.840000pt;}
.x0{left:0.000000pt;}
.x13{left:2.400000pt;}
.x1b{left:6.653333pt;}
.x4{left:7.733333pt;}
.xc{left:63.233333pt;}
.x6{left:77.900000pt;}
.xf{left:87.233322pt;}
.x1{left:94.433322pt;}
.x16{left:98.966655pt;}
.x3{left:101.633333pt;}
.x7{left:106.966667pt;}
.x10{left:108.300000pt;}
.x2a{left:113.366655pt;}
.x14{left:122.966655pt;}
.x1a{left:144.040000pt;}
.x20{left:147.493322pt;}
.x8{left:153.633333pt;}
.x18{left:159.533322pt;}
.x24{left:188.066655pt;}
.x1c{left:190.733333pt;}
.x25{left:194.733333pt;}
.x1f{left:213.399988pt;}
.x22{left:214.466655pt;}
.xa{left:229.393333pt;}
.x11{left:247.266667pt;}
.x12{left:263.840000pt;}
.x5{left:269.700000pt;}
.xb{left:272.633333pt;}
.x15{left:286.506655pt;}
.x19{left:294.506655pt;}
.x27{left:304.906667pt;}
.x9{left:306.766667pt;}
.x17{left:371.066655pt;}
.x1d{left:379.866667pt;}
.x2{left:385.199988pt;}
.x23{left:386.533322pt;}
.x21{left:395.066655pt;}
.x26{left:450.000000pt;}
.x28{left:486.306667pt;}
.x1e{left:521.773333pt;}
.x29{left:576.973333pt;}
.xd{left:703.973333pt;}
}




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