
    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_a662a9f3ac9259134093999a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_115083e7b041e314dfa0a5d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1f41c21c59743e38e57867a6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4dd7be7a7cd5afe96a893436.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_0631eba48fc2facf2f772254.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_625a5b5fc23a9b0ec93cb4f5.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_1b01ac327a1eddf1692c6c33.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a9ce34beb5a254c8375f987.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls8{letter-spacing:-1.080000px;}
.ls18{letter-spacing:-0.780000px;}
.ls14{letter-spacing:-0.600000px;}
.lse{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.660000px;}
.lsa{letter-spacing:1.740000px;}
.ls16{letter-spacing:4.170000px;}
.ls13{letter-spacing:10.200000px;}
.lsb{letter-spacing:11.400000px;}
.ls11{letter-spacing:13.800000px;}
.ls19{letter-spacing:15.720000px;}
.ls17{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;}
}
.wsb{word-spacing:-72.000000px;}
.ws5{word-spacing:-60.000000px;}
.ws2{word-spacing:-48.000000px;}
.ws1{word-spacing:-18.384000px;}
.wsa{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws6{word-spacing:-15.000000px;}
.wsc{word-spacing:-14.880000px;}
.wsd{word-spacing:-14.760000px;}
.ws8{word-spacing:-14.100000px;}
.ws9{word-spacing:-11.136000px;}
.ws3{word-spacing:-9.900000px;}
.ws4{word-spacing:-9.600000px;}
.ws7{word-spacing:0.000000px;}
._9{margin-left:-2.106000px;}
._0{margin-left:-1.056000px;}
._1{width:1.302000px;}
._5{width:2.400000px;}
._2{width:3.990000px;}
._e{width:5.124000px;}
._f{width:6.900000px;}
._6{width:8.700000px;}
._11{width:9.726000px;}
._10{width:10.770000px;}
._8{width:11.886000px;}
._7{width:13.206000px;}
._14{width:15.450000px;}
._b{width:16.674000px;}
._a{width:17.886000px;}
._13{width:19.494000px;}
._12{width:21.186000px;}
._c{width:23.040000px;}
._d{width:24.306000px;}
._3{width:336.180000px;}
._4{width:1200.420000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc4{color:rgb(34,122,203);}
.fc5{color:rgb(31,73,125);}
.fc2{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs9{font-size:9.600000px;}
.fs6{font-size:12.000000px;}
.fs4{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.y43{bottom:-10.185000px;}
.y0{bottom:0.000000px;}
.ycb{bottom:3.285000px;}
.yb6{bottom:3.300000px;}
.yd9{bottom:3.315000px;}
.yb3{bottom:3.600000px;}
.yad{bottom:3.615000px;}
.y10{bottom:3.915000px;}
.yf{bottom:5.115000px;}
.y3{bottom:5.400000px;}
.y42{bottom:6.915000px;}
.yb7{bottom:12.000000px;}
.ycd{bottom:12.015000px;}
.yc3{bottom:12.030000px;}
.yb2{bottom:12.300000px;}
.yaf{bottom:12.315000px;}
.y6{bottom:12.337500px;}
.ye8{bottom:20.385000px;}
.yb5{bottom:20.400000px;}
.yb0{bottom:20.700000px;}
.yd0{bottom:20.715000px;}
.yd6{bottom:20.730000px;}
.yc4{bottom:20.745000px;}
.y41{bottom:24.615000px;}
.ydf{bottom:29.100000px;}
.ycf{bottom:29.400000px;}
.yea{bottom:29.415000px;}
.ye3{bottom:29.445000px;}
.ye0{bottom:37.800000px;}
.ydb{bottom:37.845000px;}
.yd1{bottom:38.100000px;}
.yed{bottom:38.115000px;}
.ye4{bottom:38.145000px;}
.y40{bottom:44.115000px;}
.yeb{bottom:46.500000px;}
.y5{bottom:46.800000px;}
.yec{bottom:55.215000px;}
.ydc{bottom:55.230000px;}
.ye5{bottom:55.245000px;}
.y2{bottom:57.037500px;}
.y3f{bottom:58.815000px;}
.ydd{bottom:72.345000px;}
.y44{bottom:74.137500px;}
.y3e{bottom:75.945000px;}
.y4{bottom:81.337500px;}
.y3d{bottom:93.345000px;}
.y3c{bottom:110.445000px;}
.ybe{bottom:111.337500px;}
.ye6{bottom:114.937500px;}
.y7f{bottom:115.837500px;}
.y14b{bottom:123.337500px;}
.y32{bottom:126.037500px;}
.y3b{bottom:127.845000px;}
.ybd{bottom:128.737500px;}
.y7e{bottom:132.937500px;}
.y117{bottom:133.237500px;}
.y14a{bottom:140.437500px;}
.y31{bottom:143.437500px;}
.y3a{bottom:144.945000px;}
.ybc{bottom:145.837500px;}
.ye2{bottom:150.030000px;}
.y7d{bottom:150.345000px;}
.y149{bottom:157.830000px;}
.y30{bottom:160.545000px;}
.y39{bottom:162.345000px;}
.ybb{bottom:163.245000px;}
.y7c{bottom:167.430000px;}
.y116{bottom:167.745000px;}
.y148{bottom:174.930000px;}
.y2f{bottom:177.975000px;}
.y38{bottom:179.445000px;}
.yba{bottom:180.375000px;}
.y7b{bottom:184.875000px;}
.y115{bottom:185.475000px;}
.y147{bottom:192.375000px;}
.y2e{bottom:195.075000px;}
.y37{bottom:196.845000px;}
.yb9{bottom:197.775000px;}
.y7a{bottom:201.975000px;}
.y114{bottom:204.975000px;}
.y146{bottom:209.475000px;}
.y2d{bottom:212.475000px;}
.yb8{bottom:213.375000px;}
.y36{bottom:213.945000px;}
.y79{bottom:219.375000px;}
.ye1{bottom:219.975000px;}
.y145{bottom:226.875000px;}
.y2c{bottom:229.575000px;}
.y35{bottom:231.345000px;}
.yb4{bottom:233.775000px;}
.y78{bottom:236.475000px;}
.y113{bottom:237.075000px;}
.y144{bottom:243.975000px;}
.y2b{bottom:246.975000px;}
.y34{bottom:249.090000px;}
.y77{bottom:253.875000px;}
.y112{bottom:256.575000px;}
.y143{bottom:261.375000px;}
.y2a{bottom:264.075000px;}
.y76{bottom:270.975000px;}
.y111{bottom:271.275000px;}
.yde{bottom:272.475000px;}
.y142{bottom:278.475000px;}
.y29{bottom:281.475000px;}
.y75{bottom:288.375000px;}
.y141{bottom:295.875000px;}
.y28{bottom:298.575000px;}
.y110{bottom:305.775000px;}
.y74{bottom:306.075000px;}
.yb1{bottom:308.475000px;}
.y140{bottom:312.975000px;}
.y27{bottom:315.975000px;}
.y10f{bottom:322.875000px;}
.yda{bottom:324.975000px;}
.y73{bottom:325.575000px;}
.y13f{bottom:330.375000px;}
.y26{bottom:333.075000px;}
.y72{bottom:339.975000px;}
.y10e{bottom:340.275000px;}
.yae{bottom:346.005000px;}
.y13e{bottom:347.505000px;}
.y25{bottom:350.505000px;}
.y71{bottom:357.405000px;}
.y13d{bottom:364.905000px;}
.y24{bottom:368.205000px;}
.y70{bottom:374.505000px;}
.y10d{bottom:374.820000px;}
.y13c{bottom:382.020000px;}
.yac{bottom:383.505000px;}
.y6f{bottom:391.905000px;}
.y13b{bottom:399.420000px;}
.yab{bottom:404.220000px;}
.y6e{bottom:409.005000px;}
.y10c{bottom:409.620000px;}
.yd8{bottom:412.005000px;}
.yaa{bottom:415.320000px;}
.y13a{bottom:416.505000px;}
.y6d{bottom:426.705000px;}
.ya9{bottom:433.620000px;}
.y139{bottom:433.920000px;}
.ya8{bottom:444.120000px;}
.y10b{bottom:444.720000px;}
.y33{bottom:445.005000px;}
.y6c{bottom:446.205000px;}
.y138{bottom:451.005000px;}
.y6b{bottom:460.920000px;}
.ya7{bottom:461.505000px;}
.y10a{bottom:462.120000px;}
.y137{bottom:468.420000px;}
.ya6{bottom:478.620000px;}
.y109{bottom:479.505000px;}
.yd7{bottom:484.005000px;}
.y6a{bottom:485.220000px;}
.y136{bottom:485.505000px;}
.ya5{bottom:496.005000px;}
.y108{bottom:496.620000px;}
.yd5{bottom:499.320000px;}
.y69{bottom:502.920000px;}
.ya4{bottom:513.120000px;}
.y107{bottom:514.050000px;}
.y68{bottom:520.050000px;}
.ya3{bottom:530.550000px;}
.y106{bottom:531.150000px;}
.y135{bottom:537.450000px;}
.y67{bottom:537.750000px;}
.ya2{bottom:547.650000px;}
.y105{bottom:548.550000px;}
.yd4{bottom:549.750000px;}
.y134{bottom:554.550000px;}
.y66{bottom:558.150000px;}
.ya1{bottom:565.350000px;}
.y104{bottom:565.650000px;}
.y133{bottom:571.950000px;}
.y65{bottom:575.250000px;}
.y103{bottom:583.050000px;}
.ya0{bottom:584.850000px;}
.y132{bottom:589.050000px;}
.y64{bottom:592.650000px;}
.y9f{bottom:599.550000px;}
.yd3{bottom:599.850000px;}
.y102{bottom:600.150000px;}
.y131{bottom:606.450000px;}
.y63{bottom:609.750000px;}
.y9e{bottom:616.650000px;}
.y130{bottom:623.550000px;}
.y62{bottom:627.450000px;}
.y101{bottom:629.250000px;}
.y9d{bottom:634.050000px;}
.y12f{bottom:640.950000px;}
.y100{bottom:646.650000px;}
.y61{bottom:646.950000px;}
.yd2{bottom:650.250000px;}
.y9c{bottom:651.150000px;}
.y12e{bottom:658.050000px;}
.y60{bottom:661.650000px;}
.yff{bottom:664.050000px;}
.y9b{bottom:668.850000px;}
.y12d{bottom:675.450000px;}
.y5f{bottom:678.750000px;}
.yfe{bottom:681.195000px;}
.y9a{bottom:688.380000px;}
.y12c{bottom:692.595000px;}
.y5e{bottom:696.195000px;}
.yfd{bottom:698.280000px;}
.yce{bottom:700.380000px;}
.y99{bottom:703.095000px;}
.y12b{bottom:709.980000px;}
.y5d{bottom:713.280000px;}
.yfc{bottom:715.695000px;}
.y98{bottom:720.195000px;}
.y12a{bottom:727.080000px;}
.y5c{bottom:730.995000px;}
.yfb{bottom:732.780000px;}
.y97{bottom:737.595000px;}
.y23{bottom:742.995000px;}
.y129{bottom:744.495000px;}
.yfa{bottom:750.195000px;}
.y5b{bottom:750.480000px;}
.y96{bottom:754.695000px;}
.y22{bottom:760.095000px;}
.y128{bottom:761.595000px;}
.y5a{bottom:765.195000px;}
.ycc{bottom:767.880000px;}
.y95{bottom:772.380000px;}
.y21{bottom:777.480000px;}
.yf9{bottom:778.980000px;}
.y59{bottom:782.295000px;}
.y94{bottom:791.895000px;}
.y20{bottom:794.580000px;}
.y127{bottom:796.080000px;}
.yf8{bottom:796.695000px;}
.y58{bottom:799.695000px;}
.y93{bottom:806.580000px;}
.y1f{bottom:811.995000px;}
.y126{bottom:813.495000px;}
.yf7{bottom:813.795000px;}
.y57{bottom:816.795000px;}
.yca{bottom:818.295000px;}
.y92{bottom:823.695000px;}
.y1e{bottom:829.080000px;}
.y125{bottom:830.580000px;}
.yf6{bottom:831.195000px;}
.y56{bottom:834.195000px;}
.y91{bottom:841.080000px;}
.y1d{bottom:846.495000px;}
.y124{bottom:847.995000px;}
.yf5{bottom:848.295000px;}
.y55{bottom:851.325000px;}
.yc9{bottom:857.925000px;}
.y90{bottom:858.225000px;}
.y1c{bottom:860.925000px;}
.y123{bottom:865.125000px;}
.yf4{bottom:865.725000px;}
.y1b{bottom:868.425000px;}
.y54{bottom:868.725000px;}
.y1a{bottom:873.525000px;}
.y8f{bottom:875.625000px;}
.yc8{bottom:876.225000px;}
.y122{bottom:882.525000px;}
.yf3{bottom:882.825000px;}
.y53{bottom:885.825000px;}
.y19{bottom:890.925000px;}
.yc7{bottom:891.525000px;}
.y8e{bottom:892.725000px;}
.y121{bottom:899.625000px;}
.yf2{bottom:900.225000px;}
.y52{bottom:903.225000px;}
.y8d{bottom:910.125000px;}
.y18{bottom:913.425000px;}
.y120{bottom:917.025000px;}
.yf1{bottom:917.325000px;}
.y51{bottom:920.325000px;}
.yc6{bottom:924.525000px;}
.y17{bottom:925.425000px;}
.y8c{bottom:927.825000px;}
.y11f{bottom:934.125000px;}
.yf0{bottom:937.125000px;}
.y50{bottom:937.725000px;}
.y16{bottom:942.525000px;}
.yef{bottom:944.925000px;}
.y8b{bottom:948.525000px;}
.y11e{bottom:951.525000px;}
.y4f{bottom:954.825000px;}
.yc5{bottom:957.525000px;}
.y15{bottom:965.325000px;}
.y8a{bottom:968.025000px;}
.y11d{bottom:968.625000px;}
.y4e{bottom:972.225000px;}
.y14{bottom:977.625000px;}
.y89{bottom:982.425000px;}
.y11c{bottom:986.025000px;}
.y4d{bottom:989.325000px;}
.yee{bottom:997.425000px;}
.y13{bottom:997.725000px;}
.y88{bottom:999.825000px;}
.y11b{bottom:1003.125000px;}
.y4c{bottom:1006.725000px;}
.yc2{bottom:1007.925000px;}
.y12{bottom:1015.425000px;}
.y87{bottom:1016.955000px;}
.y11a{bottom:1020.570000px;}
.y4b{bottom:1023.870000px;}
.y11{bottom:1033.755000px;}
.y86{bottom:1034.370000px;}
.y119{bottom:1037.670000px;}
.ye{bottom:1040.955000px;}
.y4a{bottom:1041.255000px;}
.ye9{bottom:1049.955000px;}
.y85{bottom:1051.455000px;}
.y118{bottom:1055.070000px;}
.y49{bottom:1057.755000px;}
.yc1{bottom:1058.070000px;}
.yd{bottom:1062.570000px;}
.yc{bottom:1068.255000px;}
.y84{bottom:1068.870000px;}
.y48{bottom:1072.170000px;}
.yb{bottom:1083.570000px;}
.y83{bottom:1085.955000px;}
.y47{bottom:1089.570000px;}
.yc0{bottom:1094.955000px;}
.ya{bottom:1097.955000px;}
.y82{bottom:1103.370000px;}
.y46{bottom:1106.670000px;}
.ybf{bottom:1113.255000px;}
.y9{bottom:1115.670000px;}
.ye7{bottom:1119.870000px;}
.y81{bottom:1120.455000px;}
.y45{bottom:1124.070000px;}
.y8{bottom:1133.670000px;}
.y80{bottom:1138.170000px;}
.y7{bottom:1141.170000px;}
.y1{bottom:1196.400000px;}
.h11{height:8.466797px;}
.h10{height:8.606250px;}
.ha{height:10.757812px;}
.h6{height:12.700195px;}
.h1d{height:17.085000px;}
.h19{height:17.400000px;}
.hb{height:21.000000px;}
.h1f{height:21.166992px;}
.hc{height:26.894531px;}
.h8{height:33.867188px;}
.h1b{height:34.200000px;}
.h1a{height:34.500000px;}
.h1c{height:34.537500px;}
.h17{height:34.664062px;}
.he{height:35.500781px;}
.h4{height:36.000000px;}
.h5{height:42.333984px;}
.h18{height:43.031250px;}
.h1{height:44.507812px;}
.h9{height:48.410156px;}
.h16{height:49.453125px;}
.h7{height:50.800781px;}
.h21{height:51.600000px;}
.h1e{height:51.900000px;}
.h24{height:51.937500px;}
.h15{height:51.996094px;}
.hf{height:53.789062px;}
.hd{height:57.100781px;}
.h13{height:59.677734px;}
.h12{height:64.546875px;}
.h2{height:65.645508px;}
.h23{height:69.000000px;}
.h22{height:69.037500px;}
.h20{height:86.137500px;}
.h3{height:97.200000px;}
.h14{height:265.875000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.wd{width:78.637500px;}
.w15{width:85.537500px;}
.w3{width:108.000000px;}
.w8{width:125.437500px;}
.w10{width:130.837500px;}
.w12{width:138.637500px;}
.we{width:148.537500px;}
.w13{width:154.245000px;}
.wf{width:163.830000px;}
.wb{width:172.830000px;}
.w14{width:208.875000px;}
.wc{width:242.475000px;}
.w6{width:253.875000px;}
.w9{width:264.975000px;}
.wa{width:286.275000px;}
.w11{width:292.605000px;}
.w5{width:483.450000px;}
.w7{width:732.225000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:1.800000px;}
.x2a{left:6.885000px;}
.x1c{left:8.100000px;}
.x23{left:9.600000px;}
.x3{left:10.799998px;}
.x22{left:12.000000px;}
.x10{left:16.200000px;}
.x21{left:18.600000px;}
.x1e{left:21.000000px;}
.x4{left:22.200000px;}
.x1a{left:25.200000px;}
.x5{left:27.600000px;}
.x17{left:31.800000px;}
.x20{left:34.800000px;}
.x1d{left:39.000000px;}
.x12{left:40.200000px;}
.x24{left:53.100000px;}
.x14{left:59.400000px;}
.x19{left:61.500000px;}
.x16{left:67.845000px;}
.xb{left:78.037500px;}
.x2{left:81.037487px;}
.xf{left:82.237500px;}
.x1b{left:87.645000px;}
.x1f{left:96.030000px;}
.x2f{left:108.037487px;}
.xe{left:132.330000px;}
.xa{left:153.629987px;}
.x13{left:207.675000px;}
.x28{left:230.775000px;}
.xc{left:241.582500px;}
.x25{left:254.775000px;}
.x2c{left:369.720000px;}
.x6{left:388.619987px;}
.x29{left:395.520000px;}
.x8{left:457.349987px;}
.x15{left:473.550000px;}
.x26{left:497.850000px;}
.x2d{left:524.850000px;}
.x2b{left:526.950000px;}
.xd{left:561.495000px;}
.x11{left:590.594987px;}
.x9{left:608.294987px;}
.x7{left:696.524987px;}
.x2e{left:734.625000px;}
.x27{left:740.925000px;}
.x1{left:812.369987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls14{letter-spacing:-0.533333pt;}
.lse{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.586667pt;}
.lsa{letter-spacing:1.546667pt;}
.ls16{letter-spacing:3.706667pt;}
.ls13{letter-spacing:9.066667pt;}
.lsb{letter-spacing:10.133333pt;}
.ls11{letter-spacing:12.266667pt;}
.ls19{letter-spacing:13.973333pt;}
.ls17{letter-spacing:40.640000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws2{word-spacing:-42.666667pt;}
.ws1{word-spacing:-16.341333pt;}
.wsa{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws6{word-spacing:-13.333333pt;}
.wsc{word-spacing:-13.226667pt;}
.wsd{word-spacing:-13.120000pt;}
.ws8{word-spacing:-12.533333pt;}
.ws9{word-spacing:-9.898667pt;}
.ws3{word-spacing:-8.800000pt;}
.ws4{word-spacing:-8.533333pt;}
.ws7{word-spacing:0.000000pt;}
._9{margin-left:-1.872000pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.157333pt;}
._5{width:2.133333pt;}
._2{width:3.546667pt;}
._e{width:4.554667pt;}
._f{width:6.133333pt;}
._6{width:7.733333pt;}
._11{width:8.645333pt;}
._10{width:9.573333pt;}
._8{width:10.565333pt;}
._7{width:11.738667pt;}
._14{width:13.733333pt;}
._b{width:14.821333pt;}
._a{width:15.898667pt;}
._13{width:17.328000pt;}
._12{width:18.832000pt;}
._c{width:20.480000pt;}
._d{width:21.605333pt;}
._3{width:298.826667pt;}
._4{width:1067.040000pt;}
.fs9{font-size:8.533333pt;}
.fs6{font-size:10.666667pt;}
.fs4{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.y43{bottom:-9.053333pt;}
.y0{bottom:0.000000pt;}
.ycb{bottom:2.920000pt;}
.yb6{bottom:2.933333pt;}
.yd9{bottom:2.946667pt;}
.yb3{bottom:3.200000pt;}
.yad{bottom:3.213333pt;}
.y10{bottom:3.480000pt;}
.yf{bottom:4.546667pt;}
.y3{bottom:4.800000pt;}
.y42{bottom:6.146667pt;}
.yb7{bottom:10.666667pt;}
.ycd{bottom:10.680000pt;}
.yc3{bottom:10.693333pt;}
.yb2{bottom:10.933333pt;}
.yaf{bottom:10.946667pt;}
.y6{bottom:10.966667pt;}
.ye8{bottom:18.120000pt;}
.yb5{bottom:18.133333pt;}
.yb0{bottom:18.400000pt;}
.yd0{bottom:18.413333pt;}
.yd6{bottom:18.426667pt;}
.yc4{bottom:18.440000pt;}
.y41{bottom:21.880000pt;}
.ydf{bottom:25.866667pt;}
.ycf{bottom:26.133333pt;}
.yea{bottom:26.146667pt;}
.ye3{bottom:26.173333pt;}
.ye0{bottom:33.600000pt;}
.ydb{bottom:33.640000pt;}
.yd1{bottom:33.866667pt;}
.yed{bottom:33.880000pt;}
.ye4{bottom:33.906667pt;}
.y40{bottom:39.213333pt;}
.yeb{bottom:41.333333pt;}
.y5{bottom:41.600000pt;}
.yec{bottom:49.080000pt;}
.ydc{bottom:49.093333pt;}
.ye5{bottom:49.106667pt;}
.y2{bottom:50.700000pt;}
.y3f{bottom:52.280000pt;}
.ydd{bottom:64.306667pt;}
.y44{bottom:65.900000pt;}
.y3e{bottom:67.506667pt;}
.y4{bottom:72.300000pt;}
.y3d{bottom:82.973333pt;}
.y3c{bottom:98.173333pt;}
.ybe{bottom:98.966667pt;}
.ye6{bottom:102.166667pt;}
.y7f{bottom:102.966667pt;}
.y14b{bottom:109.633333pt;}
.y32{bottom:112.033333pt;}
.y3b{bottom:113.640000pt;}
.ybd{bottom:114.433333pt;}
.y7e{bottom:118.166667pt;}
.y117{bottom:118.433333pt;}
.y14a{bottom:124.833333pt;}
.y31{bottom:127.500000pt;}
.y3a{bottom:128.840000pt;}
.ybc{bottom:129.633333pt;}
.ye2{bottom:133.360000pt;}
.y7d{bottom:133.640000pt;}
.y149{bottom:140.293333pt;}
.y30{bottom:142.706667pt;}
.y39{bottom:144.306667pt;}
.ybb{bottom:145.106667pt;}
.y7c{bottom:148.826667pt;}
.y116{bottom:149.106667pt;}
.y148{bottom:155.493333pt;}
.y2f{bottom:158.200000pt;}
.y38{bottom:159.506667pt;}
.yba{bottom:160.333333pt;}
.y7b{bottom:164.333333pt;}
.y115{bottom:164.866667pt;}
.y147{bottom:171.000000pt;}
.y2e{bottom:173.400000pt;}
.y37{bottom:174.973333pt;}
.yb9{bottom:175.800000pt;}
.y7a{bottom:179.533333pt;}
.y114{bottom:182.200000pt;}
.y146{bottom:186.200000pt;}
.y2d{bottom:188.866667pt;}
.yb8{bottom:189.666667pt;}
.y36{bottom:190.173333pt;}
.y79{bottom:195.000000pt;}
.ye1{bottom:195.533333pt;}
.y145{bottom:201.666667pt;}
.y2c{bottom:204.066667pt;}
.y35{bottom:205.640000pt;}
.yb4{bottom:207.800000pt;}
.y78{bottom:210.200000pt;}
.y113{bottom:210.733333pt;}
.y144{bottom:216.866667pt;}
.y2b{bottom:219.533333pt;}
.y34{bottom:221.413333pt;}
.y77{bottom:225.666667pt;}
.y112{bottom:228.066667pt;}
.y143{bottom:232.333333pt;}
.y2a{bottom:234.733333pt;}
.y76{bottom:240.866667pt;}
.y111{bottom:241.133333pt;}
.yde{bottom:242.200000pt;}
.y142{bottom:247.533333pt;}
.y29{bottom:250.200000pt;}
.y75{bottom:256.333333pt;}
.y141{bottom:263.000000pt;}
.y28{bottom:265.400000pt;}
.y110{bottom:271.800000pt;}
.y74{bottom:272.066667pt;}
.yb1{bottom:274.200000pt;}
.y140{bottom:278.200000pt;}
.y27{bottom:280.866667pt;}
.y10f{bottom:287.000000pt;}
.yda{bottom:288.866667pt;}
.y73{bottom:289.400000pt;}
.y13f{bottom:293.666667pt;}
.y26{bottom:296.066667pt;}
.y72{bottom:302.200000pt;}
.y10e{bottom:302.466667pt;}
.yae{bottom:307.560000pt;}
.y13e{bottom:308.893333pt;}
.y25{bottom:311.560000pt;}
.y71{bottom:317.693333pt;}
.y13d{bottom:324.360000pt;}
.y24{bottom:327.293333pt;}
.y70{bottom:332.893333pt;}
.y10d{bottom:333.173333pt;}
.y13c{bottom:339.573333pt;}
.yac{bottom:340.893333pt;}
.y6f{bottom:348.360000pt;}
.y13b{bottom:355.040000pt;}
.yab{bottom:359.306667pt;}
.y6e{bottom:363.560000pt;}
.y10c{bottom:364.106667pt;}
.yd8{bottom:366.226667pt;}
.yaa{bottom:369.173333pt;}
.y13a{bottom:370.226667pt;}
.y6d{bottom:379.293333pt;}
.ya9{bottom:385.440000pt;}
.y139{bottom:385.706667pt;}
.ya8{bottom:394.773333pt;}
.y10b{bottom:395.306667pt;}
.y33{bottom:395.560000pt;}
.y6c{bottom:396.626667pt;}
.y138{bottom:400.893333pt;}
.y6b{bottom:409.706667pt;}
.ya7{bottom:410.226667pt;}
.y10a{bottom:410.773333pt;}
.y137{bottom:416.373333pt;}
.ya6{bottom:425.440000pt;}
.y109{bottom:426.226667pt;}
.yd7{bottom:430.226667pt;}
.y6a{bottom:431.306667pt;}
.y136{bottom:431.560000pt;}
.ya5{bottom:440.893333pt;}
.y108{bottom:441.440000pt;}
.yd5{bottom:443.840000pt;}
.y69{bottom:447.040000pt;}
.ya4{bottom:456.106667pt;}
.y107{bottom:456.933333pt;}
.y68{bottom:462.266667pt;}
.ya3{bottom:471.600000pt;}
.y106{bottom:472.133333pt;}
.y135{bottom:477.733333pt;}
.y67{bottom:478.000000pt;}
.ya2{bottom:486.800000pt;}
.y105{bottom:487.600000pt;}
.yd4{bottom:488.666667pt;}
.y134{bottom:492.933333pt;}
.y66{bottom:496.133333pt;}
.ya1{bottom:502.533333pt;}
.y104{bottom:502.800000pt;}
.y133{bottom:508.400000pt;}
.y65{bottom:511.333333pt;}
.y103{bottom:518.266667pt;}
.ya0{bottom:519.866667pt;}
.y132{bottom:523.600000pt;}
.y64{bottom:526.800000pt;}
.y9f{bottom:532.933333pt;}
.yd3{bottom:533.200000pt;}
.y102{bottom:533.466667pt;}
.y131{bottom:539.066667pt;}
.y63{bottom:542.000000pt;}
.y9e{bottom:548.133333pt;}
.y130{bottom:554.266667pt;}
.y62{bottom:557.733333pt;}
.y101{bottom:559.333333pt;}
.y9d{bottom:563.600000pt;}
.y12f{bottom:569.733333pt;}
.y100{bottom:574.800000pt;}
.y61{bottom:575.066667pt;}
.yd2{bottom:578.000000pt;}
.y9c{bottom:578.800000pt;}
.y12e{bottom:584.933333pt;}
.y60{bottom:588.133333pt;}
.yff{bottom:590.266667pt;}
.y9b{bottom:594.533333pt;}
.y12d{bottom:600.400000pt;}
.y5f{bottom:603.333333pt;}
.yfe{bottom:605.506667pt;}
.y9a{bottom:611.893333pt;}
.y12c{bottom:615.640000pt;}
.y5e{bottom:618.840000pt;}
.yfd{bottom:620.693333pt;}
.yce{bottom:622.560000pt;}
.y99{bottom:624.973333pt;}
.y12b{bottom:631.093333pt;}
.y5d{bottom:634.026667pt;}
.yfc{bottom:636.173333pt;}
.y98{bottom:640.173333pt;}
.y12a{bottom:646.293333pt;}
.y5c{bottom:649.773333pt;}
.yfb{bottom:651.360000pt;}
.y97{bottom:655.640000pt;}
.y23{bottom:660.440000pt;}
.y129{bottom:661.773333pt;}
.yfa{bottom:666.840000pt;}
.y5b{bottom:667.093333pt;}
.y96{bottom:670.840000pt;}
.y22{bottom:675.640000pt;}
.y128{bottom:676.973333pt;}
.y5a{bottom:680.173333pt;}
.ycc{bottom:682.560000pt;}
.y95{bottom:686.560000pt;}
.y21{bottom:691.093333pt;}
.yf9{bottom:692.426667pt;}
.y59{bottom:695.373333pt;}
.y94{bottom:703.906667pt;}
.y20{bottom:706.293333pt;}
.y127{bottom:707.626667pt;}
.yf8{bottom:708.173333pt;}
.y58{bottom:710.840000pt;}
.y93{bottom:716.960000pt;}
.y1f{bottom:721.773333pt;}
.y126{bottom:723.106667pt;}
.yf7{bottom:723.373333pt;}
.y57{bottom:726.040000pt;}
.yca{bottom:727.373333pt;}
.y92{bottom:732.173333pt;}
.y1e{bottom:736.960000pt;}
.y125{bottom:738.293333pt;}
.yf6{bottom:738.840000pt;}
.y56{bottom:741.506667pt;}
.y91{bottom:747.626667pt;}
.y1d{bottom:752.440000pt;}
.y124{bottom:753.773333pt;}
.yf5{bottom:754.040000pt;}
.y55{bottom:756.733333pt;}
.yc9{bottom:762.600000pt;}
.y90{bottom:762.866667pt;}
.y1c{bottom:765.266667pt;}
.y123{bottom:769.000000pt;}
.yf4{bottom:769.533333pt;}
.y1b{bottom:771.933333pt;}
.y54{bottom:772.200000pt;}
.y1a{bottom:776.466667pt;}
.y8f{bottom:778.333333pt;}
.yc8{bottom:778.866667pt;}
.y122{bottom:784.466667pt;}
.yf3{bottom:784.733333pt;}
.y53{bottom:787.400000pt;}
.y19{bottom:791.933333pt;}
.yc7{bottom:792.466667pt;}
.y8e{bottom:793.533333pt;}
.y121{bottom:799.666667pt;}
.yf2{bottom:800.200000pt;}
.y52{bottom:802.866667pt;}
.y8d{bottom:809.000000pt;}
.y18{bottom:811.933333pt;}
.y120{bottom:815.133333pt;}
.yf1{bottom:815.400000pt;}
.y51{bottom:818.066667pt;}
.yc6{bottom:821.800000pt;}
.y17{bottom:822.600000pt;}
.y8c{bottom:824.733333pt;}
.y11f{bottom:830.333333pt;}
.yf0{bottom:833.000000pt;}
.y50{bottom:833.533333pt;}
.y16{bottom:837.800000pt;}
.yef{bottom:839.933333pt;}
.y8b{bottom:843.133333pt;}
.y11e{bottom:845.800000pt;}
.y4f{bottom:848.733333pt;}
.yc5{bottom:851.133333pt;}
.y15{bottom:858.066667pt;}
.y8a{bottom:860.466667pt;}
.y11d{bottom:861.000000pt;}
.y4e{bottom:864.200000pt;}
.y14{bottom:869.000000pt;}
.y89{bottom:873.266667pt;}
.y11c{bottom:876.466667pt;}
.y4d{bottom:879.400000pt;}
.yee{bottom:886.600000pt;}
.y13{bottom:886.866667pt;}
.y88{bottom:888.733333pt;}
.y11b{bottom:891.666667pt;}
.y4c{bottom:894.866667pt;}
.yc2{bottom:895.933333pt;}
.y12{bottom:902.600000pt;}
.y87{bottom:903.960000pt;}
.y11a{bottom:907.173333pt;}
.y4b{bottom:910.106667pt;}
.y11{bottom:918.893333pt;}
.y86{bottom:919.440000pt;}
.y119{bottom:922.373333pt;}
.ye{bottom:925.293333pt;}
.y4a{bottom:925.560000pt;}
.ye9{bottom:933.293333pt;}
.y85{bottom:934.626667pt;}
.y118{bottom:937.840000pt;}
.y49{bottom:940.226667pt;}
.yc1{bottom:940.506667pt;}
.yd{bottom:944.506667pt;}
.yc{bottom:949.560000pt;}
.y84{bottom:950.106667pt;}
.y48{bottom:953.040000pt;}
.yb{bottom:963.173333pt;}
.y83{bottom:965.293333pt;}
.y47{bottom:968.506667pt;}
.yc0{bottom:973.293333pt;}
.ya{bottom:975.960000pt;}
.y82{bottom:980.773333pt;}
.y46{bottom:983.706667pt;}
.ybf{bottom:989.560000pt;}
.y9{bottom:991.706667pt;}
.ye7{bottom:995.440000pt;}
.y81{bottom:995.960000pt;}
.y45{bottom:999.173333pt;}
.y8{bottom:1007.706667pt;}
.y80{bottom:1011.706667pt;}
.y7{bottom:1014.373333pt;}
.y1{bottom:1063.466667pt;}
.h11{height:7.526042pt;}
.h10{height:7.650000pt;}
.ha{height:9.562500pt;}
.h6{height:11.289062pt;}
.h1d{height:15.186667pt;}
.h19{height:15.466667pt;}
.hb{height:18.666667pt;}
.h1f{height:18.815104pt;}
.hc{height:23.906250pt;}
.h8{height:30.104167pt;}
.h1b{height:30.400000pt;}
.h1a{height:30.666667pt;}
.h1c{height:30.700000pt;}
.h17{height:30.812500pt;}
.he{height:31.556250pt;}
.h4{height:32.000000pt;}
.h5{height:37.630208pt;}
.h18{height:38.250000pt;}
.h1{height:39.562500pt;}
.h9{height:43.031250pt;}
.h16{height:43.958333pt;}
.h7{height:45.156250pt;}
.h21{height:45.866667pt;}
.h1e{height:46.133333pt;}
.h24{height:46.166667pt;}
.h15{height:46.218750pt;}
.hf{height:47.812500pt;}
.hd{height:50.756250pt;}
.h13{height:53.046875pt;}
.h12{height:57.375000pt;}
.h2{height:58.351562pt;}
.h23{height:61.333333pt;}
.h22{height:61.366667pt;}
.h20{height:76.566667pt;}
.h3{height:86.400000pt;}
.h14{height:236.333333pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.wd{width:69.900000pt;}
.w15{width:76.033333pt;}
.w3{width:96.000000pt;}
.w8{width:111.500000pt;}
.w10{width:116.300000pt;}
.w12{width:123.233333pt;}
.we{width:132.033333pt;}
.w13{width:137.106667pt;}
.wf{width:145.626667pt;}
.wb{width:153.626667pt;}
.w14{width:185.666667pt;}
.wc{width:215.533333pt;}
.w6{width:225.666667pt;}
.w9{width:235.533333pt;}
.wa{width:254.466667pt;}
.w11{width:260.093333pt;}
.w5{width:429.733333pt;}
.w7{width:650.866667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.600000pt;}
.x2a{left:6.120000pt;}
.x1c{left:7.200000pt;}
.x23{left:8.533333pt;}
.x3{left:9.599999pt;}
.x22{left:10.666667pt;}
.x10{left:14.400000pt;}
.x21{left:16.533333pt;}
.x1e{left:18.666667pt;}
.x4{left:19.733333pt;}
.x1a{left:22.400000pt;}
.x5{left:24.533333pt;}
.x17{left:28.266667pt;}
.x20{left:30.933333pt;}
.x1d{left:34.666667pt;}
.x12{left:35.733333pt;}
.x24{left:47.200000pt;}
.x14{left:52.800000pt;}
.x19{left:54.666667pt;}
.x16{left:60.306667pt;}
.xb{left:69.366667pt;}
.x2{left:72.033322pt;}
.xf{left:73.100000pt;}
.x1b{left:77.906667pt;}
.x1f{left:85.360000pt;}
.x2f{left:96.033322pt;}
.xe{left:117.626667pt;}
.xa{left:136.559988pt;}
.x13{left:184.600000pt;}
.x28{left:205.133333pt;}
.xc{left:214.740000pt;}
.x25{left:226.466667pt;}
.x2c{left:328.640000pt;}
.x6{left:345.439988pt;}
.x29{left:351.573333pt;}
.x8{left:406.533322pt;}
.x15{left:420.933333pt;}
.x26{left:442.533333pt;}
.x2d{left:466.533333pt;}
.x2b{left:468.400000pt;}
.xd{left:499.106667pt;}
.x11{left:524.973322pt;}
.x9{left:540.706655pt;}
.x7{left:619.133322pt;}
.x2e{left:653.000000pt;}
.x27{left:658.600000pt;}
.x1{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; }
  