
    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_e871e4b7fde92451f36a9a68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d788e3b06e80f6656fd02ce7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_a5196e5096b9b3a9732ca081.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_a3dbedcd8382db3bb13b37b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_6572ae2e7048ce5c02250817.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9b668da8259aeeca92951f88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6458418e61d722f8e1302306.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_de8229ff99eca494ee86e98e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.341400px;}
.lsf{letter-spacing:0.350400px;}
.lsd{letter-spacing:0.360000px;}
.ls2{letter-spacing:2.880000px;}
.ls5{letter-spacing:7.920000px;}
.ls3{letter-spacing:13.680000px;}
.ls10{letter-spacing:33.984000px;}
.ls4{letter-spacing:38.160000px;}
.ls6{letter-spacing:128.160000px;}
.ls0{letter-spacing:144.000000px;}
.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;}
}
.ws6{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.ws7{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.ws5{word-spacing:-20.700000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws3{word-spacing:0.000000px;}
._21{margin-left:-2.364720px;}
._0{margin-left:-1.095120px;}
._1{width:1.395120px;}
._4{width:2.544000px;}
._7{width:4.056000px;}
._3{width:5.424000px;}
._2{width:6.960000px;}
._b{width:7.982640px;}
._8{width:9.231120px;}
._6{width:10.296000px;}
._5{width:11.664000px;}
._9{width:12.960000px;}
._a{width:14.400000px;}
._f{width:15.908880px;}
._19{width:16.992000px;}
._24{width:18.027360px;}
._20{width:19.038240px;}
._d{width:20.232000px;}
._e{width:21.456000px;}
._1c{width:22.626720px;}
._1d{width:24.379200px;}
._1e{width:26.070240px;}
._18{width:27.360000px;}
._17{width:28.368000px;}
._1f{width:29.667840px;}
._23{width:31.674240px;}
._22{width:33.028080px;}
._13{width:34.416000px;}
._14{width:35.976000px;}
._10{width:37.656000px;}
._11{width:38.808000px;}
._12{width:40.128000px;}
._15{width:41.631120px;}
._25{width:42.793920px;}
._1a{width:43.889040px;}
._1b{width:46.013520px;}
._26{width:47.914080px;}
._27{width:52.846560px;}
._16{width:54.408000px;}
._28{width:55.598400px;}
._c{width:66.888000px;}
._2e{width:177.756720px;}
._2a{width:207.807120px;}
._29{width:209.016000px;}
._2b{width:228.183120px;}
._2d{width:800.784000px;}
._2c{width:801.792000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.252500px;}
.y6{bottom:3.960000px;}
.y98{bottom:4.140000px;}
.yc3{bottom:4.320000px;}
.y9b{bottom:4.485000px;}
.ya1{bottom:4.492500px;}
.ybf{bottom:4.500000px;}
.y65{bottom:9.900000px;}
.y67{bottom:12.060000px;}
.y69{bottom:14.940000px;}
.y63{bottom:20.340000px;}
.y3{bottom:23.983500px;}
.yc2{bottom:25.020000px;}
.y9d{bottom:25.185000px;}
.ya0{bottom:25.186500px;}
.ybe{bottom:25.200000px;}
.y9a{bottom:25.230000px;}
.yc6{bottom:25.245000px;}
.y61{bottom:30.600000px;}
.y2{bottom:31.716000px;}
.y62{bottom:41.040000px;}
.yc1{bottom:45.720000px;}
.ybd{bottom:45.900000px;}
.yc5{bottom:45.945000px;}
.y64{bottom:51.300000px;}
.y5d{bottom:89.676000px;}
.yb9{bottom:102.276000px;}
.y11b{bottom:104.256000px;}
.yda{bottom:108.036000px;}
.yf4{bottom:109.836000px;}
.y5c{bottom:117.396000px;}
.ya2{bottom:121.896000px;}
.y36{bottom:122.436000px;}
.y11a{bottom:124.956000px;}
.yb8{bottom:129.996000px;}
.yd9{bottom:135.936000px;}
.yf3{bottom:137.556000px;}
.y9f{bottom:141.703500px;}
.y35{bottom:143.136000px;}
.y5b{bottom:145.116000px;}
.y119{bottom:145.656000px;}
.yb7{bottom:157.710000px;}
.yd8{bottom:163.650000px;}
.y34{bottom:163.830000px;}
.yf2{bottom:165.270000px;}
.y118{bottom:166.350000px;}
.y5a{bottom:173.010000px;}
.y9e{bottom:183.825000px;}
.y33{bottom:184.530000px;}
.yb6{bottom:185.610000px;}
.y117{bottom:187.050000px;}
.yd7{bottom:191.370000px;}
.yf1{bottom:193.170000px;}
.y59{bottom:200.730000px;}
.y32{bottom:205.230000px;}
.y116{bottom:207.750000px;}
.yb5{bottom:213.330000px;}
.y83{bottom:219.270000px;}
.yf0{bottom:220.890000px;}
.y31{bottom:225.930000px;}
.y9c{bottom:225.945000px;}
.y58{bottom:228.450000px;}
.yb4{bottom:241.050000px;}
.y30{bottom:246.630000px;}
.yd6{bottom:246.990000px;}
.y82{bottom:247.170000px;}
.yef{bottom:248.610000px;}
.y115{bottom:249.150000px;}
.y57{bottom:256.170000px;}
.y2f{bottom:267.330000px;}
.y99{bottom:268.065000px;}
.yb3{bottom:268.770000px;}
.y114{bottom:269.850000px;}
.yd5{bottom:274.755000px;}
.y81{bottom:274.935000px;}
.yee{bottom:276.555000px;}
.y56{bottom:284.115000px;}
.y2e{bottom:288.075000px;}
.y113{bottom:290.595000px;}
.yb2{bottom:296.715000px;}
.yd4{bottom:302.475000px;}
.y80{bottom:302.655000px;}
.yed{bottom:304.275000px;}
.y2d{bottom:308.775000px;}
.y97{bottom:310.395000px;}
.y112{bottom:311.295000px;}
.y55{bottom:311.835000px;}
.yb1{bottom:324.435000px;}
.yd3{bottom:330.375000px;}
.y7f{bottom:330.555000px;}
.yec{bottom:331.995000px;}
.y96{bottom:335.595000px;}
.y54{bottom:339.555000px;}
.y2c{bottom:350.175000px;}
.yb0{bottom:352.155000px;}
.y95{bottom:352.335000px;}
.y111{bottom:352.695000px;}
.yd2{bottom:358.095000px;}
.y7e{bottom:358.275000px;}
.yeb{bottom:359.715000px;}
.y53{bottom:367.455000px;}
.y2b{bottom:370.875000px;}
.y110{bottom:373.395000px;}
.y94{bottom:380.055000px;}
.yd1{bottom:385.815000px;}
.y7d{bottom:385.995000px;}
.yea{bottom:387.615000px;}
.y2a{bottom:391.575000px;}
.y10f{bottom:394.095000px;}
.y52{bottom:395.175000px;}
.yaf{bottom:407.775000px;}
.y93{bottom:407.955000px;}
.y29{bottom:412.275000px;}
.y7c{bottom:413.715000px;}
.y10e{bottom:414.795000px;}
.ye9{bottom:415.335000px;}
.y51{bottom:422.895000px;}
.y28{bottom:432.975000px;}
.yae{bottom:435.495000px;}
.y92{bottom:435.675000px;}
.yd0{bottom:441.435000px;}
.y7b{bottom:441.615000px;}
.ye8{bottom:443.055000px;}
.y50{bottom:450.615000px;}
.y27{bottom:453.675000px;}
.y10d{bottom:456.195000px;}
.yad{bottom:463.215000px;}
.y91{bottom:463.395000px;}
.ycf{bottom:469.155000px;}
.y7a{bottom:469.335000px;}
.ye7{bottom:470.775000px;}
.y26{bottom:474.375000px;}
.y10c{bottom:476.895000px;}
.y4f{bottom:478.515000px;}
.yac{bottom:486.075000px;}
.y90{bottom:491.295000px;}
.y25{bottom:495.075000px;}
.yce{bottom:496.875000px;}
.y79{bottom:497.055000px;}
.y10b{bottom:497.595000px;}
.ye6{bottom:498.675000px;}
.y4e{bottom:506.235000px;}
.y24{bottom:515.775000px;}
.y10a{bottom:518.295000px;}
.y8f{bottom:519.015000px;}
.y78{bottom:524.775000px;}
.ye5{bottom:526.395000px;}
.y4d{bottom:533.955000px;}
.y23{bottom:536.475000px;}
.y109{bottom:538.995000px;}
.y8e{bottom:546.735000px;}
.ycd{bottom:552.495000px;}
.y77{bottom:552.675000px;}
.ye4{bottom:554.115000px;}
.y22{bottom:557.205000px;}
.y108{bottom:559.725000px;}
.y4c{bottom:561.705000px;}
.y8d{bottom:574.485000px;}
.y21{bottom:577.905000px;}
.ycc{bottom:580.245000px;}
.y76{bottom:580.425000px;}
.ye3{bottom:582.045000px;}
.y4b{bottom:589.605000px;}
.y20{bottom:598.605000px;}
.y107{bottom:601.125000px;}
.y8c{bottom:602.385000px;}
.ycb{bottom:607.965000px;}
.y75{bottom:608.145000px;}
.ye2{bottom:609.765000px;}
.y4a{bottom:617.325000px;}
.y1f{bottom:619.305000px;}
.y106{bottom:621.825000px;}
.y8b{bottom:630.105000px;}
.yca{bottom:635.865000px;}
.y74{bottom:636.045000px;}
.ye1{bottom:637.485000px;}
.y1e{bottom:640.005000px;}
.y105{bottom:642.525000px;}
.y49{bottom:645.045000px;}
.yc9{bottom:655.665000px;}
.y8a{bottom:657.825000px;}
.y1d{bottom:660.705000px;}
.y104{bottom:663.225000px;}
.y73{bottom:663.765000px;}
.ye0{bottom:665.205000px;}
.y48{bottom:672.945000px;}
.y1c{bottom:681.405000px;}
.y103{bottom:683.925000px;}
.y89{bottom:685.725000px;}
.y72{bottom:691.485000px;}
.ydf{bottom:693.105000px;}
.y47{bottom:700.665000px;}
.y1b{bottom:702.105000px;}
.y102{bottom:704.625000px;}
.y88{bottom:713.445000px;}
.yc8{bottom:718.485000px;}
.y71{bottom:719.205000px;}
.yde{bottom:720.825000px;}
.y1a{bottom:722.805000px;}
.y101{bottom:725.325000px;}
.y46{bottom:728.385000px;}
.y87{bottom:741.165000px;}
.y19{bottom:743.505000px;}
.y100{bottom:746.025000px;}
.y70{bottom:747.105000px;}
.ydd{bottom:748.545000px;}
.y45{bottom:756.105000px;}
.yc7{bottom:760.605000px;}
.y18{bottom:764.205000px;}
.yff{bottom:766.725000px;}
.y129{bottom:767.625000px;}
.y86{bottom:768.885000px;}
.y6f{bottom:774.825000px;}
.ydc{bottom:776.445000px;}
.y44{bottom:784.005000px;}
.y17{bottom:784.905000px;}
.yfe{bottom:787.425000px;}
.y128{bottom:788.325000px;}
.y85{bottom:796.785000px;}
.y6e{bottom:802.545000px;}
.ydb{bottom:804.165000px;}
.y16{bottom:805.605000px;}
.yfd{bottom:808.125000px;}
.y127{bottom:809.025000px;}
.y43{bottom:811.725000px;}
.y84{bottom:819.465000px;}
.yc4{bottom:823.425000px;}
.y15{bottom:826.305000px;}
.yfc{bottom:828.825000px;}
.y126{bottom:829.725000px;}
.y6d{bottom:830.445000px;}
.yab{bottom:831.885000px;}
.y42{bottom:839.490000px;}
.y14{bottom:847.050000px;}
.yfb{bottom:849.570000px;}
.y125{bottom:850.470000px;}
.y6c{bottom:858.210000px;}
.yaa{bottom:859.650000px;}
.y41{bottom:867.390000px;}
.y13{bottom:867.750000px;}
.yfa{bottom:870.270000px;}
.y124{bottom:871.170000px;}
.y6b{bottom:885.930000px;}
.yc0{bottom:886.470000px;}
.ya9{bottom:887.550000px;}
.y12{bottom:888.450000px;}
.yf9{bottom:890.970000px;}
.y123{bottom:891.870000px;}
.y40{bottom:895.110000px;}
.y11{bottom:909.150000px;}
.yf8{bottom:911.670000px;}
.y122{bottom:912.570000px;}
.y6a{bottom:913.650000px;}
.ya8{bottom:915.270000px;}
.y3f{bottom:922.830000px;}
.y10{bottom:929.850000px;}
.yf7{bottom:932.370000px;}
.y121{bottom:933.270000px;}
.y68{bottom:933.630000px;}
.ya7{bottom:942.990000px;}
.ybc{bottom:949.290000px;}
.yf{bottom:950.550000px;}
.yf6{bottom:953.070000px;}
.y120{bottom:953.970000px;}
.ya6{bottom:970.710000px;}
.yf5{bottom:973.230000px;}
.y11f{bottom:974.670000px;}
.y66{bottom:975.930000px;}
.y3e{bottom:978.450000px;}
.ye{bottom:991.950000px;}
.y11e{bottom:995.370000px;}
.ya5{bottom:998.610000px;}
.y3d{bottom:1006.170000px;}
.ybb{bottom:1012.110000px;}
.yd{bottom:1012.650000px;}
.y11d{bottom:1016.070000px;}
.ya4{bottom:1026.330000px;}
.yc{bottom:1033.350000px;}
.y3c{bottom:1033.890000px;}
.y11c{bottom:1036.770000px;}
.yba{bottom:1037.310000px;}
.yb{bottom:1054.050000px;}
.y3b{bottom:1057.470000px;}
.ya{bottom:1074.390000px;}
.y3a{bottom:1078.170000px;}
.ya3{bottom:1081.950000px;}
.y60{bottom:1091.490000px;}
.y9{bottom:1094.370000px;}
.y39{bottom:1098.870000px;}
.y5f{bottom:1109.670000px;}
.y8{bottom:1112.910000px;}
.y38{bottom:1119.570000px;}
.y7{bottom:1137.060000px;}
.y5e{bottom:1137.420000px;}
.y37{bottom:1140.300000px;}
.y1{bottom:1190.700000px;}
.y5{bottom:1237.500000px;}
.h11{height:20.685000px;}
.h3{height:20.692500px;}
.h5{height:23.220000px;}
.h10{height:35.332031px;}
.hc{height:35.985000px;}
.ha{height:40.985156px;}
.h13{height:41.385000px;}
.h15{height:41.392500px;}
.h1a{height:41.400000px;}
.h12{height:41.421000px;}
.he{height:41.565000px;}
.h9{height:54.773438px;}
.h14{height:60.082031px;}
.h6{height:60.226875px;}
.h17{height:61.905000px;}
.h16{height:62.085000px;}
.h19{height:62.100000px;}
.h18{height:62.122500px;}
.h1b{height:70.295977px;}
.h8{height:70.628906px;}
.hd{height:70.664062px;}
.h7{height:72.562500px;}
.hb{height:73.605000px;}
.h1c{height:74.004654px;}
.hf{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:36.885000px;}
.w3{width:36.900000px;}
.w2{width:75.780000px;}
.w6{width:81.705000px;}
.we{width:96.874500px;}
.w5{width:100.114500px;}
.wb{width:105.465000px;}
.w8{width:105.480000px;}
.w7{width:116.301000px;}
.w9{width:126.936000px;}
.wa{width:148.341000px;}
.wc{width:234.388500px;}
.wf{width:266.059500px;}
.w10{width:445.935000px;}
.wd{width:552.510000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:1.798500px;}
.x3b{left:2.869500px;}
.x11{left:8.445000px;}
.x1d{left:9.538500px;}
.x15{left:10.980000px;}
.x5{left:13.140000px;}
.x40{left:14.400000px;}
.x13{left:16.365000px;}
.xf{left:17.458500px;}
.x1c{left:20.340000px;}
.x3{left:22.140000px;}
.x23{left:23.938500px;}
.x17{left:25.200000px;}
.x3d{left:27.000000px;}
.x38{left:28.963500px;}
.x37{left:30.598500px;}
.x19{left:32.385000px;}
.x3e{left:35.623500px;}
.x1e{left:37.785000px;}
.x1f{left:39.240000px;}
.x1a{left:41.745000px;}
.x20{left:43.050000px;}
.x22{left:48.240000px;}
.x42{left:50.940000px;}
.x1{left:53.100000px;}
.x28{left:54.180000px;}
.x47{left:58.140000px;}
.x2d{left:61.954500px;}
.x31{left:63.000000px;}
.x21{left:65.145000px;}
.x39{left:69.823500px;}
.x27{left:73.800000px;}
.x35{left:79.543500px;}
.x3c{left:83.863500px;}
.x48{left:85.140000px;}
.x7{left:90.720000px;}
.xe{left:95.580000px;}
.x32{left:104.976000px;}
.x41{left:109.063500px;}
.x3a{left:110.370000px;}
.x44{left:117.396000px;}
.x26{left:120.816000px;}
.x30{left:134.316000px;}
.x3f{left:137.190000px;}
.x34{left:139.006500px;}
.x10{left:153.045000px;}
.xc{left:165.450000px;}
.x36{left:177.150000px;}
.x43{left:188.130000px;}
.x29{left:192.090000px;}
.x2e{left:218.370000px;}
.xb{left:228.450000px;}
.x2b{left:232.620000px;}
.x12{left:235.485000px;}
.x24{left:242.850000px;}
.x8{left:250.770000px;}
.x2a{left:287.865000px;}
.xd{left:300.315000px;}
.x33{left:305.715000px;}
.xa{left:316.695000px;}
.x14{left:352.515000px;}
.x45{left:383.295000px;}
.x2{left:406.695000px;}
.x4{left:420.015000px;}
.x46{left:422.715000px;}
.x9{left:446.475000px;}
.x16{left:458.715000px;}
.x6{left:499.980000px;}
.x18{left:586.380000px;}
.x1b{left:735.450000px;}
.x25{left:740.130000px;}
.x2f{left:752.730000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.303467pt;}
.lsf{letter-spacing:0.311467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls3{letter-spacing:12.160000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls4{letter-spacing:33.920000pt;}
.ls6{letter-spacing:113.920000pt;}
.ls0{letter-spacing:128.000000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws7{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws3{word-spacing:0.000000pt;}
._21{margin-left:-2.101973pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.240107pt;}
._4{width:2.261333pt;}
._7{width:3.605333pt;}
._3{width:4.821333pt;}
._2{width:6.186667pt;}
._b{width:7.095680pt;}
._8{width:8.205440pt;}
._6{width:9.152000pt;}
._5{width:10.368000pt;}
._9{width:11.520000pt;}
._a{width:12.800000pt;}
._f{width:14.141227pt;}
._19{width:15.104000pt;}
._24{width:16.024320pt;}
._20{width:16.922880pt;}
._d{width:17.984000pt;}
._e{width:19.072000pt;}
._1c{width:20.112640pt;}
._1d{width:21.670400pt;}
._1e{width:23.173547pt;}
._18{width:24.320000pt;}
._17{width:25.216000pt;}
._1f{width:26.371413pt;}
._23{width:28.154880pt;}
._22{width:29.358293pt;}
._13{width:30.592000pt;}
._14{width:31.978667pt;}
._10{width:33.472000pt;}
._11{width:34.496000pt;}
._12{width:35.669333pt;}
._15{width:37.005440pt;}
._25{width:38.039040pt;}
._1a{width:39.012480pt;}
._1b{width:40.900907pt;}
._26{width:42.590293pt;}
._27{width:46.974720pt;}
._16{width:48.362667pt;}
._28{width:49.420800pt;}
._c{width:59.456000pt;}
._2e{width:158.005973pt;}
._2a{width:184.717440pt;}
._29{width:185.792000pt;}
._2b{width:202.829440pt;}
._2d{width:711.808000pt;}
._2c{width:712.704000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.113333pt;}
.y6{bottom:3.520000pt;}
.y98{bottom:3.680000pt;}
.yc3{bottom:3.840000pt;}
.y9b{bottom:3.986667pt;}
.ya1{bottom:3.993333pt;}
.ybf{bottom:4.000000pt;}
.y65{bottom:8.800000pt;}
.y67{bottom:10.720000pt;}
.y69{bottom:13.280000pt;}
.y63{bottom:18.080000pt;}
.y3{bottom:21.318667pt;}
.yc2{bottom:22.240000pt;}
.y9d{bottom:22.386667pt;}
.ya0{bottom:22.388000pt;}
.ybe{bottom:22.400000pt;}
.y9a{bottom:22.426667pt;}
.yc6{bottom:22.440000pt;}
.y61{bottom:27.200000pt;}
.y2{bottom:28.192000pt;}
.y62{bottom:36.480000pt;}
.yc1{bottom:40.640000pt;}
.ybd{bottom:40.800000pt;}
.yc5{bottom:40.840000pt;}
.y64{bottom:45.600000pt;}
.y5d{bottom:79.712000pt;}
.yb9{bottom:90.912000pt;}
.y11b{bottom:92.672000pt;}
.yda{bottom:96.032000pt;}
.yf4{bottom:97.632000pt;}
.y5c{bottom:104.352000pt;}
.ya2{bottom:108.352000pt;}
.y36{bottom:108.832000pt;}
.y11a{bottom:111.072000pt;}
.yb8{bottom:115.552000pt;}
.yd9{bottom:120.832000pt;}
.yf3{bottom:122.272000pt;}
.y9f{bottom:125.958667pt;}
.y35{bottom:127.232000pt;}
.y5b{bottom:128.992000pt;}
.y119{bottom:129.472000pt;}
.yb7{bottom:140.186667pt;}
.yd8{bottom:145.466667pt;}
.y34{bottom:145.626667pt;}
.yf2{bottom:146.906667pt;}
.y118{bottom:147.866667pt;}
.y5a{bottom:153.786667pt;}
.y9e{bottom:163.400000pt;}
.y33{bottom:164.026667pt;}
.yb6{bottom:164.986667pt;}
.y117{bottom:166.266667pt;}
.yd7{bottom:170.106667pt;}
.yf1{bottom:171.706667pt;}
.y59{bottom:178.426667pt;}
.y32{bottom:182.426667pt;}
.y116{bottom:184.666667pt;}
.yb5{bottom:189.626667pt;}
.y83{bottom:194.906667pt;}
.yf0{bottom:196.346667pt;}
.y31{bottom:200.826667pt;}
.y9c{bottom:200.840000pt;}
.y58{bottom:203.066667pt;}
.yb4{bottom:214.266667pt;}
.y30{bottom:219.226667pt;}
.yd6{bottom:219.546667pt;}
.y82{bottom:219.706667pt;}
.yef{bottom:220.986667pt;}
.y115{bottom:221.466667pt;}
.y57{bottom:227.706667pt;}
.y2f{bottom:237.626667pt;}
.y99{bottom:238.280000pt;}
.yb3{bottom:238.906667pt;}
.y114{bottom:239.866667pt;}
.yd5{bottom:244.226667pt;}
.y81{bottom:244.386667pt;}
.yee{bottom:245.826667pt;}
.y56{bottom:252.546667pt;}
.y2e{bottom:256.066667pt;}
.y113{bottom:258.306667pt;}
.yb2{bottom:263.746667pt;}
.yd4{bottom:268.866667pt;}
.y80{bottom:269.026667pt;}
.yed{bottom:270.466667pt;}
.y2d{bottom:274.466667pt;}
.y97{bottom:275.906667pt;}
.y112{bottom:276.706667pt;}
.y55{bottom:277.186667pt;}
.yb1{bottom:288.386667pt;}
.yd3{bottom:293.666667pt;}
.y7f{bottom:293.826667pt;}
.yec{bottom:295.106667pt;}
.y96{bottom:298.306667pt;}
.y54{bottom:301.826667pt;}
.y2c{bottom:311.266667pt;}
.yb0{bottom:313.026667pt;}
.y95{bottom:313.186667pt;}
.y111{bottom:313.506667pt;}
.yd2{bottom:318.306667pt;}
.y7e{bottom:318.466667pt;}
.yeb{bottom:319.746667pt;}
.y53{bottom:326.626667pt;}
.y2b{bottom:329.666667pt;}
.y110{bottom:331.906667pt;}
.y94{bottom:337.826667pt;}
.yd1{bottom:342.946667pt;}
.y7d{bottom:343.106667pt;}
.yea{bottom:344.546667pt;}
.y2a{bottom:348.066667pt;}
.y10f{bottom:350.306667pt;}
.y52{bottom:351.266667pt;}
.yaf{bottom:362.466667pt;}
.y93{bottom:362.626667pt;}
.y29{bottom:366.466667pt;}
.y7c{bottom:367.746667pt;}
.y10e{bottom:368.706667pt;}
.ye9{bottom:369.186667pt;}
.y51{bottom:375.906667pt;}
.y28{bottom:384.866667pt;}
.yae{bottom:387.106667pt;}
.y92{bottom:387.266667pt;}
.yd0{bottom:392.386667pt;}
.y7b{bottom:392.546667pt;}
.ye8{bottom:393.826667pt;}
.y50{bottom:400.546667pt;}
.y27{bottom:403.266667pt;}
.y10d{bottom:405.506667pt;}
.yad{bottom:411.746667pt;}
.y91{bottom:411.906667pt;}
.ycf{bottom:417.026667pt;}
.y7a{bottom:417.186667pt;}
.ye7{bottom:418.466667pt;}
.y26{bottom:421.666667pt;}
.y10c{bottom:423.906667pt;}
.y4f{bottom:425.346667pt;}
.yac{bottom:432.066667pt;}
.y90{bottom:436.706667pt;}
.y25{bottom:440.066667pt;}
.yce{bottom:441.666667pt;}
.y79{bottom:441.826667pt;}
.y10b{bottom:442.306667pt;}
.ye6{bottom:443.266667pt;}
.y4e{bottom:449.986667pt;}
.y24{bottom:458.466667pt;}
.y10a{bottom:460.706667pt;}
.y8f{bottom:461.346667pt;}
.y78{bottom:466.466667pt;}
.ye5{bottom:467.906667pt;}
.y4d{bottom:474.626667pt;}
.y23{bottom:476.866667pt;}
.y109{bottom:479.106667pt;}
.y8e{bottom:485.986667pt;}
.ycd{bottom:491.106667pt;}
.y77{bottom:491.266667pt;}
.ye4{bottom:492.546667pt;}
.y22{bottom:495.293333pt;}
.y108{bottom:497.533333pt;}
.y4c{bottom:499.293333pt;}
.y8d{bottom:510.653333pt;}
.y21{bottom:513.693333pt;}
.ycc{bottom:515.773333pt;}
.y76{bottom:515.933333pt;}
.ye3{bottom:517.373333pt;}
.y4b{bottom:524.093333pt;}
.y20{bottom:532.093333pt;}
.y107{bottom:534.333333pt;}
.y8c{bottom:535.453333pt;}
.ycb{bottom:540.413333pt;}
.y75{bottom:540.573333pt;}
.ye2{bottom:542.013333pt;}
.y4a{bottom:548.733333pt;}
.y1f{bottom:550.493333pt;}
.y106{bottom:552.733333pt;}
.y8b{bottom:560.093333pt;}
.yca{bottom:565.213333pt;}
.y74{bottom:565.373333pt;}
.ye1{bottom:566.653333pt;}
.y1e{bottom:568.893333pt;}
.y105{bottom:571.133333pt;}
.y49{bottom:573.373333pt;}
.yc9{bottom:582.813333pt;}
.y8a{bottom:584.733333pt;}
.y1d{bottom:587.293333pt;}
.y104{bottom:589.533333pt;}
.y73{bottom:590.013333pt;}
.ye0{bottom:591.293333pt;}
.y48{bottom:598.173333pt;}
.y1c{bottom:605.693333pt;}
.y103{bottom:607.933333pt;}
.y89{bottom:609.533333pt;}
.y72{bottom:614.653333pt;}
.ydf{bottom:616.093333pt;}
.y47{bottom:622.813333pt;}
.y1b{bottom:624.093333pt;}
.y102{bottom:626.333333pt;}
.y88{bottom:634.173333pt;}
.yc8{bottom:638.653333pt;}
.y71{bottom:639.293333pt;}
.yde{bottom:640.733333pt;}
.y1a{bottom:642.493333pt;}
.y101{bottom:644.733333pt;}
.y46{bottom:647.453333pt;}
.y87{bottom:658.813333pt;}
.y19{bottom:660.893333pt;}
.y100{bottom:663.133333pt;}
.y70{bottom:664.093333pt;}
.ydd{bottom:665.373333pt;}
.y45{bottom:672.093333pt;}
.yc7{bottom:676.093333pt;}
.y18{bottom:679.293333pt;}
.yff{bottom:681.533333pt;}
.y129{bottom:682.333333pt;}
.y86{bottom:683.453333pt;}
.y6f{bottom:688.733333pt;}
.ydc{bottom:690.173333pt;}
.y44{bottom:696.893333pt;}
.y17{bottom:697.693333pt;}
.yfe{bottom:699.933333pt;}
.y128{bottom:700.733333pt;}
.y85{bottom:708.253333pt;}
.y6e{bottom:713.373333pt;}
.ydb{bottom:714.813333pt;}
.y16{bottom:716.093333pt;}
.yfd{bottom:718.333333pt;}
.y127{bottom:719.133333pt;}
.y43{bottom:721.533333pt;}
.y84{bottom:728.413333pt;}
.yc4{bottom:731.933333pt;}
.y15{bottom:734.493333pt;}
.yfc{bottom:736.733333pt;}
.y126{bottom:737.533333pt;}
.y6d{bottom:738.173333pt;}
.yab{bottom:739.453333pt;}
.y42{bottom:746.213333pt;}
.y14{bottom:752.933333pt;}
.yfb{bottom:755.173333pt;}
.y125{bottom:755.973333pt;}
.y6c{bottom:762.853333pt;}
.yaa{bottom:764.133333pt;}
.y41{bottom:771.013333pt;}
.y13{bottom:771.333333pt;}
.yfa{bottom:773.573333pt;}
.y124{bottom:774.373333pt;}
.y6b{bottom:787.493333pt;}
.yc0{bottom:787.973333pt;}
.ya9{bottom:788.933333pt;}
.y12{bottom:789.733333pt;}
.yf9{bottom:791.973333pt;}
.y123{bottom:792.773333pt;}
.y40{bottom:795.653333pt;}
.y11{bottom:808.133333pt;}
.yf8{bottom:810.373333pt;}
.y122{bottom:811.173333pt;}
.y6a{bottom:812.133333pt;}
.ya8{bottom:813.573333pt;}
.y3f{bottom:820.293333pt;}
.y10{bottom:826.533333pt;}
.yf7{bottom:828.773333pt;}
.y121{bottom:829.573333pt;}
.y68{bottom:829.893333pt;}
.ya7{bottom:838.213333pt;}
.ybc{bottom:843.813333pt;}
.yf{bottom:844.933333pt;}
.yf6{bottom:847.173333pt;}
.y120{bottom:847.973333pt;}
.ya6{bottom:862.853333pt;}
.yf5{bottom:865.093333pt;}
.y11f{bottom:866.373333pt;}
.y66{bottom:867.493333pt;}
.y3e{bottom:869.733333pt;}
.ye{bottom:881.733333pt;}
.y11e{bottom:884.773333pt;}
.ya5{bottom:887.653333pt;}
.y3d{bottom:894.373333pt;}
.ybb{bottom:899.653333pt;}
.yd{bottom:900.133333pt;}
.y11d{bottom:903.173333pt;}
.ya4{bottom:912.293333pt;}
.yc{bottom:918.533333pt;}
.y3c{bottom:919.013333pt;}
.y11c{bottom:921.573333pt;}
.yba{bottom:922.053333pt;}
.yb{bottom:936.933333pt;}
.y3b{bottom:939.973333pt;}
.ya{bottom:955.013333pt;}
.y3a{bottom:958.373333pt;}
.ya3{bottom:961.733333pt;}
.y60{bottom:970.213333pt;}
.y9{bottom:972.773333pt;}
.y39{bottom:976.773333pt;}
.y5f{bottom:986.373333pt;}
.y8{bottom:989.253333pt;}
.y38{bottom:995.173333pt;}
.y7{bottom:1010.720000pt;}
.y5e{bottom:1011.040000pt;}
.y37{bottom:1013.600000pt;}
.y1{bottom:1058.400000pt;}
.y5{bottom:1100.000000pt;}
.h11{height:18.386667pt;}
.h3{height:18.393333pt;}
.h5{height:20.640000pt;}
.h10{height:31.406250pt;}
.hc{height:31.986667pt;}
.ha{height:36.431250pt;}
.h13{height:36.786667pt;}
.h15{height:36.793333pt;}
.h1a{height:36.800000pt;}
.h12{height:36.818667pt;}
.he{height:36.946667pt;}
.h9{height:48.687500pt;}
.h14{height:53.406250pt;}
.h6{height:53.535000pt;}
.h17{height:55.026667pt;}
.h16{height:55.186667pt;}
.h19{height:55.200000pt;}
.h18{height:55.220000pt;}
.h1b{height:62.485312pt;}
.h8{height:62.781250pt;}
.hd{height:62.812500pt;}
.h7{height:64.500000pt;}
.hb{height:65.426667pt;}
.h1c{height:65.781915pt;}
.hf{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.786667pt;}
.w3{width:32.800000pt;}
.w2{width:67.360000pt;}
.w6{width:72.626667pt;}
.we{width:86.110667pt;}
.w5{width:88.990667pt;}
.wb{width:93.746667pt;}
.w8{width:93.760000pt;}
.w7{width:103.378667pt;}
.w9{width:112.832000pt;}
.wa{width:131.858667pt;}
.wc{width:208.345333pt;}
.wf{width:236.497333pt;}
.w10{width:396.386667pt;}
.wd{width:491.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:1.598667pt;}
.x3b{left:2.550667pt;}
.x11{left:7.506667pt;}
.x1d{left:8.478667pt;}
.x15{left:9.760000pt;}
.x5{left:11.680000pt;}
.x40{left:12.800000pt;}
.x13{left:14.546667pt;}
.xf{left:15.518667pt;}
.x1c{left:18.080000pt;}
.x3{left:19.680000pt;}
.x23{left:21.278667pt;}
.x17{left:22.400000pt;}
.x3d{left:24.000000pt;}
.x38{left:25.745333pt;}
.x37{left:27.198667pt;}
.x19{left:28.786667pt;}
.x3e{left:31.665333pt;}
.x1e{left:33.586667pt;}
.x1f{left:34.880000pt;}
.x1a{left:37.106667pt;}
.x20{left:38.266667pt;}
.x22{left:42.880000pt;}
.x42{left:45.280000pt;}
.x1{left:47.200000pt;}
.x28{left:48.160000pt;}
.x47{left:51.680000pt;}
.x2d{left:55.070667pt;}
.x31{left:56.000000pt;}
.x21{left:57.906667pt;}
.x39{left:62.065333pt;}
.x27{left:65.600000pt;}
.x35{left:70.705333pt;}
.x3c{left:74.545333pt;}
.x48{left:75.680000pt;}
.x7{left:80.640000pt;}
.xe{left:84.960000pt;}
.x32{left:93.312000pt;}
.x41{left:96.945333pt;}
.x3a{left:98.106667pt;}
.x44{left:104.352000pt;}
.x26{left:107.392000pt;}
.x30{left:119.392000pt;}
.x3f{left:121.946667pt;}
.x34{left:123.561333pt;}
.x10{left:136.040000pt;}
.xc{left:147.066667pt;}
.x36{left:157.466667pt;}
.x43{left:167.226667pt;}
.x29{left:170.746667pt;}
.x2e{left:194.106667pt;}
.xb{left:203.066667pt;}
.x2b{left:206.773333pt;}
.x12{left:209.320000pt;}
.x24{left:215.866667pt;}
.x8{left:222.906667pt;}
.x2a{left:255.880000pt;}
.xd{left:266.946667pt;}
.x33{left:271.746667pt;}
.xa{left:281.506667pt;}
.x14{left:313.346667pt;}
.x45{left:340.706667pt;}
.x2{left:361.506667pt;}
.x4{left:373.346667pt;}
.x46{left:375.746667pt;}
.x9{left:396.866667pt;}
.x16{left:407.746667pt;}
.x6{left:444.426667pt;}
.x18{left:521.226667pt;}
.x1b{left:653.733333pt;}
.x25{left:657.893333pt;}
.x2f{left:669.093333pt;}
}




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