
    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_9d330d89ff7a61dc247c23b2.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_a2fdd5b413ed04efea5ef7c9.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_4b33a35461a3cda731d649a7.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_17aa6136787da8811d892dbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8dcf5a4e8fb68b5da801da0e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8457a53f30cd9b50e71559a8.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_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fa18bbc56669de5db6c152b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls18{letter-spacing:-1.740000px;}
.ls13{letter-spacing:-0.780000px;}
.lsc{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.120000px;}
.ls4{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.030000px;}
.ls1{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.120000px;}
.lse{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.660000px;}
.ls2{letter-spacing:3.000000px;}
.ls1e{letter-spacing:4.260000px;}
.ls3{letter-spacing:7.800000px;}
.ls1a{letter-spacing:9.000000px;}
.lsa{letter-spacing:10.200000px;}
.ls15{letter-spacing:11.580000px;}
.lsf{letter-spacing:13.800000px;}
.ls1b{letter-spacing:15.720000px;}
.ls1d{letter-spacing:24.600000px;}
.ls16{letter-spacing:44.520000px;}
.ls19{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;}
}
.ws3{word-spacing:-72.000000px;}
.wsc{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws8{word-spacing:-15.600000px;}
.wsa{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.wse{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.760000px;}
.wsb{word-spacing:-14.220000px;}
.ws6{word-spacing:-12.900000px;}
.ws7{word-spacing:-11.136000px;}
.ws4{word-spacing:-9.900000px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-2.178000px;}
._0{margin-left:-1.152000px;}
._1{width:1.104000px;}
._6{width:2.406000px;}
._b{width:3.432000px;}
._9{width:4.920000px;}
._a{width:6.132000px;}
._8{width:7.344000px;}
._7{width:8.820000px;}
._c{width:9.912000px;}
._d{width:11.268000px;}
._4{width:12.528000px;}
._5{width:13.800000px;}
._f{width:16.860000px;}
._14{width:20.220000px;}
._13{width:21.540000px;}
._15{width:22.818000px;}
._17{width:23.838000px;}
._16{width:25.020000px;}
._1b{width:26.040000px;}
._1a{width:27.420000px;}
._19{width:34.260000px;}
._18{width:38.760000px;}
._12{width:111.000000px;}
._11{width:139.489200px;}
._10{width:322.648500px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fcb{color:rgb(75,172,198);}
.fc7{color:transparent;}
.fc6{color:rgb(56,145,167);}
.fc5{color:rgb(255,0,0);}
.fca{color:rgb(89,89,89);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,123,184);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:72.150000px;}
.y0{bottom:0.000000px;}
.y83{bottom:3.300000px;}
.y99{bottom:3.600000px;}
.ya0{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.y92{bottom:4.830000px;}
.ycc{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y94{bottom:5.700000px;}
.y90{bottom:5.715000px;}
.ycf{bottom:6.330000px;}
.y85{bottom:6.600000px;}
.yc7{bottom:7.200000px;}
.yc9{bottom:7.785000px;}
.y3e{bottom:8.400000px;}
.y7e{bottom:11.700000px;}
.yc5{bottom:11.715000px;}
.y5{bottom:12.337500px;}
.y7f{bottom:12.600000px;}
.y75{bottom:15.262500px;}
.y82{bottom:20.700000px;}
.y11d{bottom:21.600000px;}
.y125{bottom:21.615000px;}
.y3d{bottom:27.900000px;}
.y6e{bottom:36.420000px;}
.y3c{bottom:42.300000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3b{bottom:59.700000px;}
.y40{bottom:74.137500px;}
.y6f{bottom:75.750000px;}
.y3a{bottom:76.800000px;}
.y6d{bottom:78.495000px;}
.y3{bottom:81.337500px;}
.y39{bottom:94.200000px;}
.y38{bottom:111.300000px;}
.y69{bottom:114.937500px;}
.y70{bottom:115.125000px;}
.yb3{bottom:115.837500px;}
.y6a{bottom:117.000000px;}
.y2e{bottom:120.937500px;}
.y37{bottom:128.745000px;}
.yec{bottom:130.537500px;}
.y2d{bottom:138.337500px;}
.y11a{bottom:141.337500px;}
.y76{bottom:141.900000px;}
.yb2{bottom:144.037500px;}
.y160{bottom:145.537500px;}
.y36{bottom:145.845000px;}
.y194{bottom:147.337500px;}
.yeb{bottom:150.630000px;}
.y71{bottom:154.500000px;}
.y2c{bottom:155.430000px;}
.y119{bottom:155.730000px;}
.y35{bottom:163.230000px;}
.y193{bottom:164.745000px;}
.yea{bottom:165.330000px;}
.yb1{bottom:172.230000px;}
.y118{bottom:173.145000px;}
.y34{bottom:180.330000px;}
.y192{bottom:181.875000px;}
.ye9{bottom:183.375000px;}
.y2b{bottom:184.575000px;}
.y15f{bottom:185.175000px;}
.y117{bottom:190.275000px;}
.yb0{bottom:191.775000px;}
.y72{bottom:193.875000px;}
.y33{bottom:197.745000px;}
.y191{bottom:199.275000px;}
.ye8{bottom:201.375000px;}
.y2a{bottom:201.975000px;}
.y6c{bottom:202.095000px;}
.y15e{bottom:202.575000px;}
.yaf{bottom:206.175000px;}
.y116{bottom:207.675000px;}
.y32{bottom:214.845000px;}
.y190{bottom:216.375000px;}
.y29{bottom:219.375000px;}
.y15d{bottom:219.975000px;}
.yae{bottom:223.575000px;}
.y115{bottom:224.775000px;}
.y31{bottom:232.245000px;}
.y73{bottom:233.250000px;}
.y18f{bottom:233.775000px;}
.y28{bottom:236.475000px;}
.ye7{bottom:237.375000px;}
.y15c{bottom:237.675000px;}
.yad{bottom:240.675000px;}
.y114{bottom:242.175000px;}
.y30{bottom:249.930000px;}
.y18e{bottom:250.875000px;}
.y27{bottom:253.875000px;}
.ye6{bottom:255.375000px;}
.y15b{bottom:257.175000px;}
.yac{bottom:258.075000px;}
.y113{bottom:259.275000px;}
.y18d{bottom:268.275000px;}
.y6b{bottom:270.225000px;}
.y15a{bottom:271.575000px;}
.y74{bottom:272.625000px;}
.ye5{bottom:273.375000px;}
.yab{bottom:275.175000px;}
.y112{bottom:276.675000px;}
.y26{bottom:282.675000px;}
.y18c{bottom:285.375000px;}
.y159{bottom:288.975000px;}
.ye4{bottom:291.375000px;}
.yaa{bottom:292.575000px;}
.y111{bottom:293.775000px;}
.y25{bottom:300.375000px;}
.y18b{bottom:302.775000px;}
.y158{bottom:306.075000px;}
.ya9{bottom:310.275000px;}
.y24{bottom:317.475000px;}
.y18a{bottom:319.875000px;}
.ye3{bottom:322.875000px;}
.y157{bottom:323.475000px;}
.y110{bottom:324.975000px;}
.ya8{bottom:329.775000px;}
.y23{bottom:334.875000px;}
.y189{bottom:337.275000px;}
.y156{bottom:340.575000px;}
.ya7{bottom:341.475000px;}
.y10f{bottom:342.075000px;}
.ye2{bottom:342.375000px;}
.y22{bottom:352.020000px;}
.y188{bottom:354.405000px;}
.ye1{bottom:357.120000px;}
.y155{bottom:358.005000px;}
.ya6{bottom:359.505000px;}
.y21{bottom:369.420000px;}
.y187{bottom:371.820000px;}
.ye0{bottom:374.205000px;}
.y154{bottom:375.105000px;}
.y10e{bottom:376.620000px;}
.ya5{bottom:377.505000px;}
.y20{bottom:386.505000px;}
.y186{bottom:388.920000px;}
.ydf{bottom:391.605000px;}
.y153{bottom:392.520000px;}
.y10d{bottom:394.005000px;}
.ya4{bottom:395.505000px;}
.y1f{bottom:403.905000px;}
.y185{bottom:406.320000px;}
.yde{bottom:408.705000px;}
.y152{bottom:409.620000px;}
.y10c{bottom:411.120000px;}
.ya3{bottom:413.505000px;}
.y68{bottom:418.905000px;}
.y1e{bottom:421.005000px;}
.y184{bottom:423.420000px;}
.ydd{bottom:426.420000px;}
.y151{bottom:427.005000px;}
.y10b{bottom:428.505000px;}
.ya2{bottom:431.505000px;}
.y67{bottom:437.205000px;}
.y1d{bottom:438.420000px;}
.y183{bottom:440.820000px;}
.y150{bottom:444.720000px;}
.y10a{bottom:445.620000px;}
.ydc{bottom:446.820000px;}
.y66{bottom:447.705000px;}
.ya1{bottom:449.505000px;}
.y1c{bottom:455.505000px;}
.y182{bottom:457.905000px;}
.y109{bottom:463.005000px;}
.ydb{bottom:463.920000px;}
.y65{bottom:465.120000px;}
.y14f{bottom:465.420000px;}
.y9f{bottom:467.505000px;}
.y1b{bottom:473.205000px;}
.y181{bottom:475.320000px;}
.y108{bottom:480.120000px;}
.yda{bottom:481.320000px;}
.y64{bottom:482.205000px;}
.y14e{bottom:484.905000px;}
.y180{bottom:492.420000px;}
.y1a{bottom:493.620000px;}
.y107{bottom:496.620000px;}
.y9e{bottom:496.905000px;}
.yd9{bottom:498.405000px;}
.y14d{bottom:499.320000px;}
.y63{bottom:499.620000px;}
.y17f{bottom:509.820000px;}
.y106{bottom:511.320000px;}
.yd8{bottom:515.850000px;}
.y9d{bottom:516.450000px;}
.y14c{bottom:516.750000px;}
.y62{bottom:517.350000px;}
.y17e{bottom:526.950000px;}
.y105{bottom:528.450000px;}
.y9c{bottom:531.150000px;}
.yd7{bottom:532.950000px;}
.y14b{bottom:533.850000px;}
.y61{bottom:538.050000px;}
.y17d{bottom:544.350000px;}
.y104{bottom:545.850000px;}
.y9b{bottom:548.250000px;}
.yd6{bottom:550.350000px;}
.y14a{bottom:551.250000px;}
.y1b0{bottom:554.550000px;}
.y60{bottom:558.150000px;}
.y17c{bottom:561.450000px;}
.y103{bottom:562.950000px;}
.yd5{bottom:564.750000px;}
.y9a{bottom:565.650000px;}
.y2f{bottom:566.550000px;}
.y149{bottom:568.350000px;}
.y1af{bottom:571.950000px;}
.y5f{bottom:575.550000px;}
.y17b{bottom:578.850000px;}
.y98{bottom:580.050000px;}
.y102{bottom:580.350000px;}
.yd4{bottom:582.750000px;}
.y148{bottom:584.850000px;}
.y1ae{bottom:589.050000px;}
.y5e{bottom:592.650000px;}
.y17a{bottom:595.950000px;}
.y101{bottom:597.450000px;}
.y97{bottom:598.050000px;}
.y147{bottom:599.550000px;}
.yd3{bottom:600.750000px;}
.y1ad{bottom:606.450000px;}
.y5d{bottom:610.350000px;}
.y179{bottom:613.350000px;}
.y100{bottom:614.850000px;}
.y146{bottom:616.650000px;}
.y96{bottom:618.450000px;}
.yd2{bottom:621.150000px;}
.y1ac{bottom:623.550000px;}
.y5c{bottom:629.850000px;}
.y178{bottom:630.450000px;}
.yff{bottom:631.950000px;}
.y145{bottom:634.050000px;}
.y95{bottom:638.550000px;}
.yd1{bottom:639.150000px;}
.y1ab{bottom:640.950000px;}
.y5b{bottom:644.550000px;}
.y177{bottom:647.850000px;}
.yfe{bottom:649.350000px;}
.y144{bottom:651.150000px;}
.yd0{bottom:657.150000px;}
.y1aa{bottom:658.050000px;}
.y93{bottom:659.550000px;}
.y5a{bottom:661.650000px;}
.y176{bottom:664.950000px;}
.yfd{bottom:666.450000px;}
.y143{bottom:668.550000px;}
.yce{bottom:675.150000px;}
.y1a9{bottom:675.450000px;}
.y59{bottom:679.050000px;}
.y91{bottom:679.950000px;}
.y175{bottom:682.380000px;}
.yfc{bottom:684.195000px;}
.y142{bottom:685.695000px;}
.y1a8{bottom:692.595000px;}
.ycd{bottom:695.880000px;}
.y58{bottom:696.195000px;}
.y8f{bottom:699.480000px;}
.y174{bottom:699.495000px;}
.y141{bottom:703.095000px;}
.y1a7{bottom:709.980000px;}
.y57{bottom:713.580000px;}
.y12c{bottom:713.595000px;}
.ycb{bottom:715.695000px;}
.y173{bottom:716.880000px;}
.y8e{bottom:719.595000px;}
.y140{bottom:720.195000px;}
.yfb{bottom:720.795000px;}
.y1a6{bottom:727.080000px;}
.y56{bottom:730.695000px;}
.y12d{bottom:731.595000px;}
.y172{bottom:733.995000px;}
.yca{bottom:735.195000px;}
.y13f{bottom:736.695000px;}
.y1a5{bottom:744.495000px;}
.y8d{bottom:747.495000px;}
.y55{bottom:748.095000px;}
.y129{bottom:749.580000px;}
.y12b{bottom:749.595000px;}
.y13e{bottom:751.395000px;}
.yfa{bottom:754.395000px;}
.yc8{bottom:755.595000px;}
.y1a4{bottom:761.595000px;}
.y54{bottom:765.780000px;}
.y12a{bottom:767.580000px;}
.y13d{bottom:768.495000px;}
.y8c{bottom:776.295000px;}
.yc6{bottom:777.795000px;}
.y1a3{bottom:778.980000px;}
.y53{bottom:785.295000px;}
.y127{bottom:785.580000px;}
.y13c{bottom:785.880000px;}
.yf9{bottom:792.480000px;}
.y8b{bottom:793.695000px;}
.y1a2{bottom:796.080000px;}
.y52{bottom:799.695000px;}
.y13b{bottom:802.980000px;}
.y128{bottom:803.580000px;}
.y8a{bottom:810.795000px;}
.y1a1{bottom:813.495000px;}
.y51{bottom:817.080000px;}
.y13a{bottom:819.480000px;}
.y171{bottom:820.395000px;}
.yc4{bottom:820.980000px;}
.y124{bottom:821.580000px;}
.y89{bottom:828.195000px;}
.y1a0{bottom:830.580000px;}
.yf8{bottom:830.880000px;}
.y50{bottom:834.195000px;}
.y170{bottom:837.495000px;}
.y126{bottom:839.580000px;}
.y88{bottom:845.295000px;}
.y19f{bottom:847.995000px;}
.y139{bottom:851.325000px;}
.y4f{bottom:851.625000px;}
.y16f{bottom:854.925000px;}
.y122{bottom:857.625000px;}
.yc3{bottom:858.525000px;}
.y87{bottom:863.025000px;}
.y19e{bottom:865.125000px;}
.y4e{bottom:868.725000px;}
.yf7{bottom:869.025000px;}
.y19{bottom:871.425000px;}
.y16e{bottom:872.025000px;}
.y123{bottom:875.625000px;}
.yc2{bottom:878.025000px;}
.y86{bottom:881.325000px;}
.y19d{bottom:882.525000px;}
.y138{bottom:885.825000px;}
.y4d{bottom:886.125000px;}
.y18{bottom:888.825000px;}
.y84{bottom:889.425000px;}
.yc1{bottom:892.725000px;}
.y120{bottom:893.625000px;}
.y19c{bottom:899.625000px;}
.y137{bottom:903.225000px;}
.y4c{bottom:903.825000px;}
.y16d{bottom:906.525000px;}
.yf6{bottom:907.125000px;}
.y17{bottom:908.625000px;}
.yc0{bottom:909.825000px;}
.y81{bottom:910.725000px;}
.y121{bottom:911.625000px;}
.y19b{bottom:917.025000px;}
.y136{bottom:920.325000px;}
.y4b{bottom:923.325000px;}
.y16c{bottom:923.925000px;}
.y16{bottom:926.925000px;}
.ybf{bottom:927.225000px;}
.y11e{bottom:929.625000px;}
.y19a{bottom:934.125000px;}
.y4a{bottom:937.725000px;}
.y16b{bottom:941.025000px;}
.ybe{bottom:944.925000px;}
.yf5{bottom:945.225000px;}
.y80{bottom:945.825000px;}
.y11f{bottom:947.625000px;}
.y15{bottom:951.225000px;}
.y199{bottom:951.525000px;}
.y135{bottom:954.825000px;}
.y49{bottom:955.125000px;}
.y16a{bottom:958.425000px;}
.y14{bottom:962.925000px;}
.ybd{bottom:964.425000px;}
.y11c{bottom:965.625000px;}
.y198{bottom:968.625000px;}
.y134{bottom:972.225000px;}
.y48{bottom:972.825000px;}
.y169{bottom:975.525000px;}
.ybc{bottom:976.125000px;}
.y13{bottom:979.125000px;}
.yf4{bottom:983.625000px;}
.y197{bottom:986.025000px;}
.y133{bottom:989.325000px;}
.y168{bottom:992.925000px;}
.y47{bottom:993.525000px;}
.ybb{bottom:998.925000px;}
.y12{bottom:999.825000px;}
.y11b{bottom:1001.625000px;}
.yf3{bottom:1003.125000px;}
.y132{bottom:1006.725000px;}
.y167{bottom:1010.025000px;}
.yba{bottom:1016.955000px;}
.y11{bottom:1020.570000px;}
.y131{bottom:1023.870000px;}
.y46{bottom:1025.370000px;}
.y7d{bottom:1026.870000px;}
.y166{bottom:1027.455000px;}
.yf2{bottom:1031.370000px;}
.yb9{bottom:1034.955000px;}
.y196{bottom:1037.670000px;}
.y10{bottom:1038.255000px;}
.yd{bottom:1040.955000px;}
.y130{bottom:1041.255000px;}
.y45{bottom:1043.070000px;}
.y165{bottom:1044.570000px;}
.yf1{bottom:1050.870000px;}
.yb8{bottom:1052.955000px;}
.y7c{bottom:1053.870000px;}
.y195{bottom:1055.070000px;}
.y12f{bottom:1057.755000px;}
.y44{bottom:1060.170000px;}
.y7b{bottom:1060.455000px;}
.y164{bottom:1061.955000px;}
.yc{bottom:1062.570000px;}
.yf0{bottom:1065.255000px;}
.yb{bottom:1068.255000px;}
.yb7{bottom:1070.955000px;}
.y12e{bottom:1072.170000px;}
.y43{bottom:1077.570000px;}
.y7a{bottom:1078.755000px;}
.yef{bottom:1082.670000px;}
.ya{bottom:1083.570000px;}
.yb6{bottom:1088.970000px;}
.y79{bottom:1089.570000px;}
.y42{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.yee{bottom:1099.755000px;}
.y163{bottom:1104.255000px;}
.y78{bottom:1106.670000px;}
.yb5{bottom:1106.970000px;}
.y8{bottom:1115.670000px;}
.yed{bottom:1117.455000px;}
.y162{bottom:1121.070000px;}
.y41{bottom:1123.755000px;}
.y77{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yb4{bottom:1138.170000px;}
.y161{bottom:1140.870000px;}
.y6{bottom:1141.170000px;}
.y3f{bottom:1196.400000px;}
.ha{height:8.677734px;}
.h5{height:12.700195px;}
.h29{height:17.100000px;}
.h2a{height:17.137500px;}
.h23{height:17.385000px;}
.h20{height:17.400000px;}
.h21{height:17.437500px;}
.h1f{height:18.637500px;}
.h27{height:18.885000px;}
.h22{height:19.200000px;}
.h1e{height:19.500000px;}
.h28{height:20.137500px;}
.h1d{height:20.385000px;}
.h1c{height:20.400000px;}
.hb{height:21.000000px;}
.h26{height:21.600000px;}
.h15{height:21.694336px;}
.h24{height:22.200000px;}
.h18{height:25.485000px;}
.h25{height:25.500000px;}
.h1a{height:26.400000px;}
.h19{height:26.437500px;}
.hd{height:28.636523px;}
.h8{height:33.867188px;}
.h1b{height:34.500000px;}
.h12{height:34.664062px;}
.h14{height:34.710938px;}
.h2b{height:35.400000px;}
.h2c{height:35.437500px;}
.h3{height:36.000000px;}
.he{height:38.100586px;}
.h9{height:39.049805px;}
.h4{height:42.333984px;}
.h7{height:43.388672px;}
.h2e{height:43.681641px;}
.h13{height:44.507812px;}
.h2d{height:45.937500px;}
.hf{height:49.453125px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.hc{height:52.066406px;}
.h17{height:52.174878px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:266.730000px;}
.h16{height:295.200000px;}
.h0{height:1263.000000px;}
.w1a{width:43.200000px;}
.w1c{width:47.437500px;}
.w13{width:60.337500px;}
.w1b{width:60.600000px;}
.w14{width:69.900000px;}
.w4{width:72.300000px;}
.w18{width:78.637500px;}
.w10{width:78.900000px;}
.wa{width:78.937500px;}
.wb{width:86.700000px;}
.w11{width:86.737500px;}
.wd{width:93.937500px;}
.we{width:100.537500px;}
.w3{width:108.000000px;}
.w15{width:131.137500px;}
.wc{width:174.930000px;}
.w16{width:198.330000px;}
.w17{width:199.245000px;}
.w12{width:206.445000px;}
.w19{width:229.275000px;}
.wf{width:252.375000px;}
.w6{width:252.975000px;}
.w9{width:392.820000px;}
.w5{width:483.450000px;}
.w8{width:682.200000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.800000px;}
.x2{left:10.799998px;}
.x2d{left:12.285000px;}
.x17{left:13.762500px;}
.x11{left:16.200000px;}
.x2e{left:19.800000px;}
.x3{left:22.200000px;}
.x4{left:27.600000px;}
.x2f{left:31.800000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x10{left:83.137500px;}
.x18{left:97.530000px;}
.x30{left:108.037487px;}
.xf{left:116.445000px;}
.x14{left:123.300000px;}
.x31{left:135.037487px;}
.xa{left:153.629987px;}
.x24{left:213.075000px;}
.xd{left:241.567500px;}
.x1d{left:256.875000px;}
.x27{left:281.475000px;}
.x21{left:288.375000px;}
.x2a{left:311.220000px;}
.x15{left:313.725000px;}
.x1f{left:334.320000px;}
.x1e{left:351.420000px;}
.x2b{left:355.020000px;}
.x28{left:361.020000px;}
.x7{left:363.419987px;}
.x22{left:368.220000px;}
.x5{left:388.619987px;}
.x25{left:412.020000px;}
.x20{left:413.820000px;}
.x23{left:429.450000px;}
.x2c{left:434.550000px;}
.x1b{left:475.050000px;}
.x26{left:491.850000px;}
.x16{left:495.450000px;}
.x1c{left:554.595000px;}
.x29{left:557.279987px;}
.xe{left:561.780000px;}
.x12{left:568.694987px;}
.x19{left:581.775000px;}
.x9{left:616.379987px;}
.x8{left:648.194987px;}
.x6{left:696.524987px;}
.x13{left:765.224987px;}
.xb{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls18{letter-spacing:-1.546667pt;}
.ls13{letter-spacing:-0.693333pt;}
.lsc{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.106667pt;}
.ls4{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.026667pt;}
.ls1{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls2{letter-spacing:2.666667pt;}
.ls1e{letter-spacing:3.786667pt;}
.ls3{letter-spacing:6.933333pt;}
.ls1a{letter-spacing:8.000000pt;}
.lsa{letter-spacing:9.066667pt;}
.ls15{letter-spacing:10.293333pt;}
.lsf{letter-spacing:12.266667pt;}
.ls1b{letter-spacing:13.973333pt;}
.ls1d{letter-spacing:21.866667pt;}
.ls16{letter-spacing:39.573333pt;}
.ls19{letter-spacing:40.640000pt;}
.ws3{word-spacing:-64.000000pt;}
.wsc{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws8{word-spacing:-13.866667pt;}
.wsa{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.wse{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.226667pt;}
.wsd{word-spacing:-13.120000pt;}
.wsb{word-spacing:-12.640000pt;}
.ws6{word-spacing:-11.466667pt;}
.ws7{word-spacing:-9.898667pt;}
.ws4{word-spacing:-8.800000pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-1.936000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.981333pt;}
._6{width:2.138667pt;}
._b{width:3.050667pt;}
._9{width:4.373333pt;}
._a{width:5.450667pt;}
._8{width:6.528000pt;}
._7{width:7.840000pt;}
._c{width:8.810667pt;}
._d{width:10.016000pt;}
._4{width:11.136000pt;}
._5{width:12.266667pt;}
._f{width:14.986667pt;}
._14{width:17.973333pt;}
._13{width:19.146667pt;}
._15{width:20.282667pt;}
._17{width:21.189333pt;}
._16{width:22.240000pt;}
._1b{width:23.146667pt;}
._1a{width:24.373333pt;}
._19{width:30.453333pt;}
._18{width:34.453333pt;}
._12{width:98.666667pt;}
._11{width:123.990400pt;}
._10{width:286.798667pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:64.133333pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:2.933333pt;}
.y99{bottom:3.200000pt;}
.ya0{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.y92{bottom:4.293333pt;}
.ycc{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y94{bottom:5.066667pt;}
.y90{bottom:5.080000pt;}
.ycf{bottom:5.626667pt;}
.y85{bottom:5.866667pt;}
.yc7{bottom:6.400000pt;}
.yc9{bottom:6.920000pt;}
.y3e{bottom:7.466667pt;}
.y7e{bottom:10.400000pt;}
.yc5{bottom:10.413333pt;}
.y5{bottom:10.966667pt;}
.y7f{bottom:11.200000pt;}
.y75{bottom:13.566667pt;}
.y82{bottom:18.400000pt;}
.y11d{bottom:19.200000pt;}
.y125{bottom:19.213333pt;}
.y3d{bottom:24.800000pt;}
.y6e{bottom:32.373333pt;}
.y3c{bottom:37.600000pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3b{bottom:53.066667pt;}
.y40{bottom:65.900000pt;}
.y6f{bottom:67.333333pt;}
.y3a{bottom:68.266667pt;}
.y6d{bottom:69.773333pt;}
.y3{bottom:72.300000pt;}
.y39{bottom:83.733333pt;}
.y38{bottom:98.933333pt;}
.y69{bottom:102.166667pt;}
.y70{bottom:102.333333pt;}
.yb3{bottom:102.966667pt;}
.y6a{bottom:104.000000pt;}
.y2e{bottom:107.500000pt;}
.y37{bottom:114.440000pt;}
.yec{bottom:116.033333pt;}
.y2d{bottom:122.966667pt;}
.y11a{bottom:125.633333pt;}
.y76{bottom:126.133333pt;}
.yb2{bottom:128.033333pt;}
.y160{bottom:129.366667pt;}
.y36{bottom:129.640000pt;}
.y194{bottom:130.966667pt;}
.yeb{bottom:133.893333pt;}
.y71{bottom:137.333333pt;}
.y2c{bottom:138.160000pt;}
.y119{bottom:138.426667pt;}
.y35{bottom:145.093333pt;}
.y193{bottom:146.440000pt;}
.yea{bottom:146.960000pt;}
.yb1{bottom:153.093333pt;}
.y118{bottom:153.906667pt;}
.y34{bottom:160.293333pt;}
.y192{bottom:161.666667pt;}
.ye9{bottom:163.000000pt;}
.y2b{bottom:164.066667pt;}
.y15f{bottom:164.600000pt;}
.y117{bottom:169.133333pt;}
.yb0{bottom:170.466667pt;}
.y72{bottom:172.333333pt;}
.y33{bottom:175.773333pt;}
.y191{bottom:177.133333pt;}
.ye8{bottom:179.000000pt;}
.y2a{bottom:179.533333pt;}
.y6c{bottom:179.640000pt;}
.y15e{bottom:180.066667pt;}
.yaf{bottom:183.266667pt;}
.y116{bottom:184.600000pt;}
.y32{bottom:190.973333pt;}
.y190{bottom:192.333333pt;}
.y29{bottom:195.000000pt;}
.y15d{bottom:195.533333pt;}
.yae{bottom:198.733333pt;}
.y115{bottom:199.800000pt;}
.y31{bottom:206.440000pt;}
.y73{bottom:207.333333pt;}
.y18f{bottom:207.800000pt;}
.y28{bottom:210.200000pt;}
.ye7{bottom:211.000000pt;}
.y15c{bottom:211.266667pt;}
.yad{bottom:213.933333pt;}
.y114{bottom:215.266667pt;}
.y30{bottom:222.160000pt;}
.y18e{bottom:223.000000pt;}
.y27{bottom:225.666667pt;}
.ye6{bottom:227.000000pt;}
.y15b{bottom:228.600000pt;}
.yac{bottom:229.400000pt;}
.y113{bottom:230.466667pt;}
.y18d{bottom:238.466667pt;}
.y6b{bottom:240.200000pt;}
.y15a{bottom:241.400000pt;}
.y74{bottom:242.333333pt;}
.ye5{bottom:243.000000pt;}
.yab{bottom:244.600000pt;}
.y112{bottom:245.933333pt;}
.y26{bottom:251.266667pt;}
.y18c{bottom:253.666667pt;}
.y159{bottom:256.866667pt;}
.ye4{bottom:259.000000pt;}
.yaa{bottom:260.066667pt;}
.y111{bottom:261.133333pt;}
.y25{bottom:267.000000pt;}
.y18b{bottom:269.133333pt;}
.y158{bottom:272.066667pt;}
.ya9{bottom:275.800000pt;}
.y24{bottom:282.200000pt;}
.y18a{bottom:284.333333pt;}
.ye3{bottom:287.000000pt;}
.y157{bottom:287.533333pt;}
.y110{bottom:288.866667pt;}
.ya8{bottom:293.133333pt;}
.y23{bottom:297.666667pt;}
.y189{bottom:299.800000pt;}
.y156{bottom:302.733333pt;}
.ya7{bottom:303.533333pt;}
.y10f{bottom:304.066667pt;}
.ye2{bottom:304.333333pt;}
.y22{bottom:312.906667pt;}
.y188{bottom:315.026667pt;}
.ye1{bottom:317.440000pt;}
.y155{bottom:318.226667pt;}
.ya6{bottom:319.560000pt;}
.y21{bottom:328.373333pt;}
.y187{bottom:330.506667pt;}
.ye0{bottom:332.626667pt;}
.y154{bottom:333.426667pt;}
.y10e{bottom:334.773333pt;}
.ya5{bottom:335.560000pt;}
.y20{bottom:343.560000pt;}
.y186{bottom:345.706667pt;}
.ydf{bottom:348.093333pt;}
.y153{bottom:348.906667pt;}
.y10d{bottom:350.226667pt;}
.ya4{bottom:351.560000pt;}
.y1f{bottom:359.026667pt;}
.y185{bottom:361.173333pt;}
.yde{bottom:363.293333pt;}
.y152{bottom:364.106667pt;}
.y10c{bottom:365.440000pt;}
.ya3{bottom:367.560000pt;}
.y68{bottom:372.360000pt;}
.y1e{bottom:374.226667pt;}
.y184{bottom:376.373333pt;}
.ydd{bottom:379.040000pt;}
.y151{bottom:379.560000pt;}
.y10b{bottom:380.893333pt;}
.ya2{bottom:383.560000pt;}
.y67{bottom:388.626667pt;}
.y1d{bottom:389.706667pt;}
.y183{bottom:391.840000pt;}
.y150{bottom:395.306667pt;}
.y10a{bottom:396.106667pt;}
.ydc{bottom:397.173333pt;}
.y66{bottom:397.960000pt;}
.ya1{bottom:399.560000pt;}
.y1c{bottom:404.893333pt;}
.y182{bottom:407.026667pt;}
.y109{bottom:411.560000pt;}
.ydb{bottom:412.373333pt;}
.y65{bottom:413.440000pt;}
.y14f{bottom:413.706667pt;}
.y9f{bottom:415.560000pt;}
.y1b{bottom:420.626667pt;}
.y181{bottom:422.506667pt;}
.y108{bottom:426.773333pt;}
.yda{bottom:427.840000pt;}
.y64{bottom:428.626667pt;}
.y14e{bottom:431.026667pt;}
.y180{bottom:437.706667pt;}
.y1a{bottom:438.773333pt;}
.y107{bottom:441.440000pt;}
.y9e{bottom:441.693333pt;}
.yd9{bottom:443.026667pt;}
.y14d{bottom:443.840000pt;}
.y63{bottom:444.106667pt;}
.y17f{bottom:453.173333pt;}
.y106{bottom:454.506667pt;}
.yd8{bottom:458.533333pt;}
.y9d{bottom:459.066667pt;}
.y14c{bottom:459.333333pt;}
.y62{bottom:459.866667pt;}
.y17e{bottom:468.400000pt;}
.y105{bottom:469.733333pt;}
.y9c{bottom:472.133333pt;}
.yd7{bottom:473.733333pt;}
.y14b{bottom:474.533333pt;}
.y61{bottom:478.266667pt;}
.y17d{bottom:483.866667pt;}
.y104{bottom:485.200000pt;}
.y9b{bottom:487.333333pt;}
.yd6{bottom:489.200000pt;}
.y14a{bottom:490.000000pt;}
.y1b0{bottom:492.933333pt;}
.y60{bottom:496.133333pt;}
.y17c{bottom:499.066667pt;}
.y103{bottom:500.400000pt;}
.yd5{bottom:502.000000pt;}
.y9a{bottom:502.800000pt;}
.y2f{bottom:503.600000pt;}
.y149{bottom:505.200000pt;}
.y1af{bottom:508.400000pt;}
.y5f{bottom:511.600000pt;}
.y17b{bottom:514.533333pt;}
.y98{bottom:515.600000pt;}
.y102{bottom:515.866667pt;}
.yd4{bottom:518.000000pt;}
.y148{bottom:519.866667pt;}
.y1ae{bottom:523.600000pt;}
.y5e{bottom:526.800000pt;}
.y17a{bottom:529.733333pt;}
.y101{bottom:531.066667pt;}
.y97{bottom:531.600000pt;}
.y147{bottom:532.933333pt;}
.yd3{bottom:534.000000pt;}
.y1ad{bottom:539.066667pt;}
.y5d{bottom:542.533333pt;}
.y179{bottom:545.200000pt;}
.y100{bottom:546.533333pt;}
.y146{bottom:548.133333pt;}
.y96{bottom:549.733333pt;}
.yd2{bottom:552.133333pt;}
.y1ac{bottom:554.266667pt;}
.y5c{bottom:559.866667pt;}
.y178{bottom:560.400000pt;}
.yff{bottom:561.733333pt;}
.y145{bottom:563.600000pt;}
.y95{bottom:567.600000pt;}
.yd1{bottom:568.133333pt;}
.y1ab{bottom:569.733333pt;}
.y5b{bottom:572.933333pt;}
.y177{bottom:575.866667pt;}
.yfe{bottom:577.200000pt;}
.y144{bottom:578.800000pt;}
.yd0{bottom:584.133333pt;}
.y1aa{bottom:584.933333pt;}
.y93{bottom:586.266667pt;}
.y5a{bottom:588.133333pt;}
.y176{bottom:591.066667pt;}
.yfd{bottom:592.400000pt;}
.y143{bottom:594.266667pt;}
.yce{bottom:600.133333pt;}
.y1a9{bottom:600.400000pt;}
.y59{bottom:603.600000pt;}
.y91{bottom:604.400000pt;}
.y175{bottom:606.560000pt;}
.yfc{bottom:608.173333pt;}
.y142{bottom:609.506667pt;}
.y1a8{bottom:615.640000pt;}
.ycd{bottom:618.560000pt;}
.y58{bottom:618.840000pt;}
.y8f{bottom:621.760000pt;}
.y174{bottom:621.773333pt;}
.y141{bottom:624.973333pt;}
.y1a7{bottom:631.093333pt;}
.y57{bottom:634.293333pt;}
.y12c{bottom:634.306667pt;}
.ycb{bottom:636.173333pt;}
.y173{bottom:637.226667pt;}
.y8e{bottom:639.640000pt;}
.y140{bottom:640.173333pt;}
.yfb{bottom:640.706667pt;}
.y1a6{bottom:646.293333pt;}
.y56{bottom:649.506667pt;}
.y12d{bottom:650.306667pt;}
.y172{bottom:652.440000pt;}
.yca{bottom:653.506667pt;}
.y13f{bottom:654.840000pt;}
.y1a5{bottom:661.773333pt;}
.y8d{bottom:664.440000pt;}
.y55{bottom:664.973333pt;}
.y129{bottom:666.293333pt;}
.y12b{bottom:666.306667pt;}
.y13e{bottom:667.906667pt;}
.yfa{bottom:670.573333pt;}
.yc8{bottom:671.640000pt;}
.y1a4{bottom:676.973333pt;}
.y54{bottom:680.693333pt;}
.y12a{bottom:682.293333pt;}
.y13d{bottom:683.106667pt;}
.y8c{bottom:690.040000pt;}
.yc6{bottom:691.373333pt;}
.y1a3{bottom:692.426667pt;}
.y53{bottom:698.040000pt;}
.y127{bottom:698.293333pt;}
.y13c{bottom:698.560000pt;}
.yf9{bottom:704.426667pt;}
.y8b{bottom:705.506667pt;}
.y1a2{bottom:707.626667pt;}
.y52{bottom:710.840000pt;}
.y13b{bottom:713.760000pt;}
.y128{bottom:714.293333pt;}
.y8a{bottom:720.706667pt;}
.y1a1{bottom:723.106667pt;}
.y51{bottom:726.293333pt;}
.y13a{bottom:728.426667pt;}
.y171{bottom:729.240000pt;}
.yc4{bottom:729.760000pt;}
.y124{bottom:730.293333pt;}
.y89{bottom:736.173333pt;}
.y1a0{bottom:738.293333pt;}
.yf8{bottom:738.560000pt;}
.y50{bottom:741.506667pt;}
.y170{bottom:744.440000pt;}
.y126{bottom:746.293333pt;}
.y88{bottom:751.373333pt;}
.y19f{bottom:753.773333pt;}
.y139{bottom:756.733333pt;}
.y4f{bottom:757.000000pt;}
.y16f{bottom:759.933333pt;}
.y122{bottom:762.333333pt;}
.yc3{bottom:763.133333pt;}
.y87{bottom:767.133333pt;}
.y19e{bottom:769.000000pt;}
.y4e{bottom:772.200000pt;}
.yf7{bottom:772.466667pt;}
.y19{bottom:774.600000pt;}
.y16e{bottom:775.133333pt;}
.y123{bottom:778.333333pt;}
.yc2{bottom:780.466667pt;}
.y86{bottom:783.400000pt;}
.y19d{bottom:784.466667pt;}
.y138{bottom:787.400000pt;}
.y4d{bottom:787.666667pt;}
.y18{bottom:790.066667pt;}
.y84{bottom:790.600000pt;}
.yc1{bottom:793.533333pt;}
.y120{bottom:794.333333pt;}
.y19c{bottom:799.666667pt;}
.y137{bottom:802.866667pt;}
.y4c{bottom:803.400000pt;}
.y16d{bottom:805.800000pt;}
.yf6{bottom:806.333333pt;}
.y17{bottom:807.666667pt;}
.yc0{bottom:808.733333pt;}
.y81{bottom:809.533333pt;}
.y121{bottom:810.333333pt;}
.y19b{bottom:815.133333pt;}
.y136{bottom:818.066667pt;}
.y4b{bottom:820.733333pt;}
.y16c{bottom:821.266667pt;}
.y16{bottom:823.933333pt;}
.ybf{bottom:824.200000pt;}
.y11e{bottom:826.333333pt;}
.y19a{bottom:830.333333pt;}
.y4a{bottom:833.533333pt;}
.y16b{bottom:836.466667pt;}
.ybe{bottom:839.933333pt;}
.yf5{bottom:840.200000pt;}
.y80{bottom:840.733333pt;}
.y11f{bottom:842.333333pt;}
.y15{bottom:845.533333pt;}
.y199{bottom:845.800000pt;}
.y135{bottom:848.733333pt;}
.y49{bottom:849.000000pt;}
.y16a{bottom:851.933333pt;}
.y14{bottom:855.933333pt;}
.ybd{bottom:857.266667pt;}
.y11c{bottom:858.333333pt;}
.y198{bottom:861.000000pt;}
.y134{bottom:864.200000pt;}
.y48{bottom:864.733333pt;}
.y169{bottom:867.133333pt;}
.ybc{bottom:867.666667pt;}
.y13{bottom:870.333333pt;}
.yf4{bottom:874.333333pt;}
.y197{bottom:876.466667pt;}
.y133{bottom:879.400000pt;}
.y168{bottom:882.600000pt;}
.y47{bottom:883.133333pt;}
.ybb{bottom:887.933333pt;}
.y12{bottom:888.733333pt;}
.y11b{bottom:890.333333pt;}
.yf3{bottom:891.666667pt;}
.y132{bottom:894.866667pt;}
.y167{bottom:897.800000pt;}
.yba{bottom:903.960000pt;}
.y11{bottom:907.173333pt;}
.y131{bottom:910.106667pt;}
.y46{bottom:911.440000pt;}
.y7d{bottom:912.773333pt;}
.y166{bottom:913.293333pt;}
.yf2{bottom:916.773333pt;}
.yb9{bottom:919.960000pt;}
.y196{bottom:922.373333pt;}
.y10{bottom:922.893333pt;}
.yd{bottom:925.293333pt;}
.y130{bottom:925.560000pt;}
.y45{bottom:927.173333pt;}
.y165{bottom:928.506667pt;}
.yf1{bottom:934.106667pt;}
.yb8{bottom:935.960000pt;}
.y7c{bottom:936.773333pt;}
.y195{bottom:937.840000pt;}
.y12f{bottom:940.226667pt;}
.y44{bottom:942.373333pt;}
.y7b{bottom:942.626667pt;}
.y164{bottom:943.960000pt;}
.yc{bottom:944.506667pt;}
.yf0{bottom:946.893333pt;}
.yb{bottom:949.560000pt;}
.yb7{bottom:951.960000pt;}
.y12e{bottom:953.040000pt;}
.y43{bottom:957.840000pt;}
.y7a{bottom:958.893333pt;}
.yef{bottom:962.373333pt;}
.ya{bottom:963.173333pt;}
.yb6{bottom:967.973333pt;}
.y79{bottom:968.506667pt;}
.y42{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.yee{bottom:977.560000pt;}
.y163{bottom:981.560000pt;}
.y78{bottom:983.706667pt;}
.yb5{bottom:983.973333pt;}
.y8{bottom:991.706667pt;}
.yed{bottom:993.293333pt;}
.y162{bottom:996.506667pt;}
.y41{bottom:998.893333pt;}
.y77{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yb4{bottom:1011.706667pt;}
.y161{bottom:1014.106667pt;}
.y6{bottom:1014.373333pt;}
.y3f{bottom:1063.466667pt;}
.ha{height:7.713542pt;}
.h5{height:11.289062pt;}
.h29{height:15.200000pt;}
.h2a{height:15.233333pt;}
.h23{height:15.453333pt;}
.h20{height:15.466667pt;}
.h21{height:15.500000pt;}
.h1f{height:16.566667pt;}
.h27{height:16.786667pt;}
.h22{height:17.066667pt;}
.h1e{height:17.333333pt;}
.h28{height:17.900000pt;}
.h1d{height:18.120000pt;}
.h1c{height:18.133333pt;}
.hb{height:18.666667pt;}
.h26{height:19.200000pt;}
.h15{height:19.283854pt;}
.h24{height:19.733333pt;}
.h18{height:22.653333pt;}
.h25{height:22.666667pt;}
.h1a{height:23.466667pt;}
.h19{height:23.500000pt;}
.hd{height:25.454687pt;}
.h8{height:30.104167pt;}
.h1b{height:30.666667pt;}
.h12{height:30.812500pt;}
.h14{height:30.854167pt;}
.h2b{height:31.466667pt;}
.h2c{height:31.500000pt;}
.h3{height:32.000000pt;}
.he{height:33.867188pt;}
.h9{height:34.710938pt;}
.h4{height:37.630208pt;}
.h7{height:38.567708pt;}
.h2e{height:38.828125pt;}
.h13{height:39.562500pt;}
.h2d{height:40.833333pt;}
.hf{height:43.958333pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.hc{height:46.281250pt;}
.h17{height:46.377669pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:237.093333pt;}
.h16{height:262.400000pt;}
.h0{height:1122.666667pt;}
.w1a{width:38.400000pt;}
.w1c{width:42.166667pt;}
.w13{width:53.633333pt;}
.w1b{width:53.866667pt;}
.w14{width:62.133333pt;}
.w4{width:64.266667pt;}
.w18{width:69.900000pt;}
.w10{width:70.133333pt;}
.wa{width:70.166667pt;}
.wb{width:77.066667pt;}
.w11{width:77.100000pt;}
.wd{width:83.500000pt;}
.we{width:89.366667pt;}
.w3{width:96.000000pt;}
.w15{width:116.566667pt;}
.wc{width:155.493333pt;}
.w16{width:176.293333pt;}
.w17{width:177.106667pt;}
.w12{width:183.506667pt;}
.w19{width:203.800000pt;}
.wf{width:224.333333pt;}
.w6{width:224.866667pt;}
.w9{width:349.173333pt;}
.w5{width:429.733333pt;}
.w8{width:606.400000pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.933333pt;}
.x2{left:9.599999pt;}
.x2d{left:10.920000pt;}
.x17{left:12.233333pt;}
.x11{left:14.400000pt;}
.x2e{left:17.600000pt;}
.x3{left:19.733333pt;}
.x4{left:24.533333pt;}
.x2f{left:28.266667pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x10{left:73.900000pt;}
.x18{left:86.693333pt;}
.x30{left:96.033322pt;}
.xf{left:103.506667pt;}
.x14{left:109.600000pt;}
.x31{left:120.033322pt;}
.xa{left:136.559988pt;}
.x24{left:189.400000pt;}
.xd{left:214.726667pt;}
.x1d{left:228.333333pt;}
.x27{left:250.200000pt;}
.x21{left:256.333333pt;}
.x2a{left:276.640000pt;}
.x15{left:278.866667pt;}
.x1f{left:297.173333pt;}
.x1e{left:312.373333pt;}
.x2b{left:315.573333pt;}
.x28{left:320.906667pt;}
.x7{left:323.039988pt;}
.x22{left:327.306667pt;}
.x5{left:345.439988pt;}
.x25{left:366.240000pt;}
.x20{left:367.840000pt;}
.x23{left:381.733333pt;}
.x2c{left:386.266667pt;}
.x1b{left:422.266667pt;}
.x26{left:437.200000pt;}
.x16{left:440.400000pt;}
.x1c{left:492.973333pt;}
.x29{left:495.359988pt;}
.xe{left:499.360000pt;}
.x12{left:505.506655pt;}
.x19{left:517.133333pt;}
.x9{left:547.893322pt;}
.x8{left:576.173322pt;}
.x6{left:619.133322pt;}
.x13{left:680.199988pt;}
.xb{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; }
  