
    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_552a680059357c57192b3919.woff')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_ef148d095f410d8267a21704.woff')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_cb6b2acf59b5296696857269.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;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_49394186b066433e8e0e57ff.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_62156a2690bd839e086556d5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008789;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_ac844bb093328ff8d522896d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_a4bc94f875cc3ae2ed10dbc3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.191406;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_38175d2f658039169f3c26a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.191406;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_df1aeb8ac91eea0b7ffe2e16.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_28bb98d6f585a9a5774d4c2f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c7e9275502f8160fd878ab3a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_831d302e48311371d61b6907.woff')format("woff");}.ffc{font-family:ffc;line-height:1.064453;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:ffd;src:url('chunks/assets/font_5bf6a189e11581483fa26934.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_06d08d45a02215f1f069c9f6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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);}
.v4{vertical-align:-170.040000px;}
.v2{vertical-align:-162.000000px;}
.v1{vertical-align:-152.640000px;}
.v5{vertical-align:-82.800000px;}
.v3{vertical-align:-76.320000px;}
.v7{vertical-align:-38.880000px;}
.v8{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:38.880000px;}
.v9{vertical-align:51.120000px;}
.ls12{letter-spacing:-1.440000px;}
.ls1e{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.690000px;}
.ls1f{letter-spacing:-0.684000px;}
.ls2a{letter-spacing:-0.590400px;}
.ls33{letter-spacing:-0.378600px;}
.ls13{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.279600px;}
.lsc{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.034560px;}
.ls3b{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.004080px;}
.ls15{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.037200px;}
.ls29{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.043920px;}
.ls7{letter-spacing:0.090000px;}
.ls25{letter-spacing:0.129600px;}
.ls10{letter-spacing:0.151920px;}
.ls14{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.276480px;}
.ls32{letter-spacing:0.341280px;}
.ls34{letter-spacing:0.341400px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.457800px;}
.ls16{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.810000px;}
.ls1c{letter-spacing:1.260000px;}
.ls1b{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.340000px;}
.ls18{letter-spacing:4.140000px;}
.ls2d{letter-spacing:4.860000px;}
.ls28{letter-spacing:11.340000px;}
.ls11{letter-spacing:12.240000px;}
.ls38{letter-spacing:16.740000px;}
.ls37{letter-spacing:17.100000px;}
.ls2c{letter-spacing:18.540000px;}
.ls27{letter-spacing:19.260000px;}
.ls1a{letter-spacing:23.580000px;}
.ls21{letter-spacing:24.300000px;}
.ls31{letter-spacing:31.500000px;}
.ls2e{letter-spacing:32.760000px;}
.ls35{letter-spacing:32.940000px;}
.ls2b{letter-spacing:37.980000px;}
.lsf{letter-spacing:38.160000px;}
.ls17{letter-spacing:40.140000px;}
.ls24{letter-spacing:48.780000px;}
.ls22{letter-spacing:63.900000px;}
.ls2f{letter-spacing:69.300000px;}
.ls8{letter-spacing:75.600000px;}
.ls23{letter-spacing:76.116000px;}
.ls20{letter-spacing:80.460000px;}
.ls19{letter-spacing:92.100000px;}
.ls39{letter-spacing:97.740000px;}
.ls36{letter-spacing:102.420000px;}
.ls3a{letter-spacing:175.277280px;}
.ls5{letter-spacing:223.200000px;}
.ls9{letter-spacing:351.360000px;}
.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;}
}
.ws11{word-spacing:-42.300000px;}
.ws12{word-spacing:-41.940000px;}
.ws9{word-spacing:-40.680000px;}
.wsa{word-spacing:-40.500000px;}
.ws8{word-spacing:-33.845760px;}
.ws7{word-spacing:-33.811200px;}
.ws0{word-spacing:-33.300000px;}
.ws1{word-spacing:-32.940000px;}
.wse{word-spacing:-27.000000px;}
.ws10{word-spacing:-23.940000px;}
.wsc{word-spacing:-23.310000px;}
.wsb{word-spacing:-22.500000px;}
.wsf{word-spacing:-21.780000px;}
.ws1b{word-spacing:-21.420000px;}
.ws1d{word-spacing:-21.401400px;}
.ws1e{word-spacing:-21.088080px;}
.ws6{word-spacing:-21.060000px;}
.ws1f{word-spacing:-21.031920px;}
.ws17{word-spacing:-20.700000px;}
.ws1c{word-spacing:-20.681400px;}
.ws19{word-spacing:-20.376000px;}
.ws1a{word-spacing:-20.370000px;}
.ws18{word-spacing:-19.980000px;}
.ws13{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.280000px;}
.ws4{word-spacing:-17.017800px;}
.ws3{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.970240px;}
.ws16{word-spacing:-13.500000px;}
.ws15{word-spacing:-10.980000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-6.967440px;}
._3{margin-left:-5.221680px;}
._2{margin-left:-3.894480px;}
._0{margin-left:-2.736000px;}
._1{margin-left:-1.230480px;}
._5{width:1.048320px;}
._6{width:2.625120px;}
._c{width:4.178880px;}
._19{width:5.391360px;}
._9{width:7.328880px;}
._a{width:8.508240px;}
._17{width:10.500720px;}
._1e{width:12.265920px;}
._26{width:13.394160px;}
._29{width:14.672880px;}
._28{width:15.804000px;}
._14{width:17.994240px;}
._8{width:20.049120px;}
._11{width:23.036880px;}
._18{width:24.167520px;}
._24{width:25.997040px;}
._2c{width:27.681840px;}
._2f{width:28.719840px;}
._7{width:30.663120px;}
._20{width:32.114160px;}
._37{width:33.375840px;}
._31{width:34.926480px;}
._35{width:37.640160px;}
._22{width:38.750400px;}
._b{width:40.255680px;}
._2d{width:41.515200px;}
._1d{width:42.878160px;}
._1c{width:43.940160px;}
._21{width:45.091920px;}
._2e{width:46.298880px;}
._2b{width:47.974080px;}
._39{width:49.400640px;}
._2a{width:50.544000px;}
._3d{width:51.807600px;}
._42{width:53.029200px;}
._12{width:54.250560px;}
._13{width:55.649520px;}
._1a{width:57.081600px;}
._1b{width:58.158720px;}
._38{width:59.363520px;}
._32{width:61.883280px;}
._33{width:63.399600px;}
._1f{width:64.612080px;}
._36{width:65.676960px;}
._25{width:67.021920px;}
._3a{width:68.648400px;}
._10{width:71.014320px;}
._f{width:72.076320px;}
._23{width:73.255680px;}
._30{width:74.636640px;}
._27{width:75.772800px;}
._15{width:79.606560px;}
._16{width:81.108720px;}
._34{width:90.103680px;}
._e{width:91.397280px;}
._d{width:92.934720px;}
._3e{width:97.050000px;}
._3f{width:98.067840px;}
._3c{width:101.846160px;}
._3b{width:103.318560px;}
._40{width:109.368000px;}
._41{width:110.405520px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,31,95);}
.fc1{color:rgb(0,0,204);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fse{font-size:45.360000px;}
.fs10{font-size:51.120000px;}
.fsf{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsd{font-size:69.120000px;}
.fsc{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:87.120000px;}
.fs7{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs0{font-size:131.760000px;}
.fs5{font-size:149.760000px;}
.fsa{font-size:167.760000px;}
.fs6{font-size:180.000000px;}
.y97{bottom:-16.380000px;}
.ybf{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.860000px;}
.y1d{bottom:5.040000px;}
.y7c{bottom:5.940000px;}
.y79{bottom:6.120000px;}
.y83{bottom:6.165000px;}
.y30{bottom:19.620000px;}
.y26{bottom:27.540000px;}
.y2f{bottom:45.720000px;}
.y41{bottom:48.090000px;}
.y4b{bottom:53.490000px;}
.y2e{bottom:71.460000px;}
.y29{bottom:73.440000px;}
.y25{bottom:82.665000px;}
.y40{bottom:86.250000px;}
.y4a{bottom:88.230000px;}
.y28{bottom:95.940000px;}
.y2d{bottom:97.200000px;}
.y1e{bottom:99.540000px;}
.y49{bottom:115.770000px;}
.y3f{bottom:118.110000px;}
.y1b{bottom:118.980000px;}
.y2c{bottom:122.970000px;}
.y1a{bottom:125.100000px;}
.y3e{bottom:137.190000px;}
.y4d{bottom:138.780000px;}
.y2b{bottom:138.990000px;}
.y3d{bottom:156.090000px;}
.y24{bottom:163.845000px;}
.y48{bottom:167.790000px;}
.y3c{bottom:175.170000px;}
.y19{bottom:177.660000px;}
.y4c{bottom:181.620000px;}
.y31{bottom:182.880000px;}
.y47{bottom:192.810000px;}
.y3b{bottom:194.070000px;}
.yb1{bottom:194.220000px;}
.y3a{bottom:212.970000px;}
.y18{bottom:215.670000px;}
.y46{bottom:217.830000px;}
.yb0{bottom:230.430000px;}
.y39{bottom:232.050000px;}
.y77{bottom:233.130000px;}
.y45{bottom:242.850000px;}
.y23{bottom:250.245000px;}
.y38{bottom:250.950000px;}
.y76{bottom:252.930000px;}
.y17{bottom:253.650000px;}
.yaf{bottom:266.790000px;}
.y44{bottom:267.915000px;}
.y37{bottom:270.075000px;}
.y75{bottom:272.730000px;}
.y22{bottom:282.645000px;}
.y36{bottom:288.975000px;}
.y16{bottom:291.630000px;}
.y74{bottom:292.530000px;}
.y43{bottom:293.115000px;}
.yae{bottom:302.970000px;}
.y35{bottom:307.875000px;}
.y21{bottom:310.935000px;}
.y20{bottom:311.115000px;}
.y73{bottom:312.330000px;}
.y34{bottom:326.955000px;}
.y15{bottom:329.610000px;}
.y72{bottom:332.310000px;}
.yad{bottom:339.150000px;}
.y42{bottom:341.895000px;}
.y33{bottom:345.855000px;}
.y71{bottom:352.110000px;}
.y32{bottom:364.935000px;}
.y14{bottom:367.590000px;}
.y70{bottom:371.910000px;}
.yac{bottom:375.330000px;}
.y6f{bottom:392.070000px;}
.y13{bottom:405.390000px;}
.yab{bottom:411.690000px;}
.y6e{bottom:417.270000px;}
.y6d{bottom:438.015000px;}
.y12{bottom:443.415000px;}
.yaa{bottom:447.915000px;}
.y6c{bottom:458.715000px;}
.y96{bottom:460.875000px;}
.y95{bottom:461.415000px;}
.y6b{bottom:479.415000px;}
.y11{bottom:481.395000px;}
.ya9{bottom:484.095000px;}
.y94{bottom:486.435000px;}
.y6a{bottom:500.115000px;}
.y93{bottom:511.275000px;}
.y10{bottom:519.375000px;}
.ya8{bottom:520.275000px;}
.y69{bottom:520.815000px;}
.yc2{bottom:533.775000px;}
.y92{bottom:536.115000px;}
.y68{bottom:541.515000px;}
.yc1{bottom:548.535000px;}
.ya7{bottom:556.635000px;}
.yf{bottom:557.355000px;}
.y91{bottom:561.135000px;}
.y67{bottom:562.215000px;}
.y2a{bottom:563.115000px;}
.yc0{bottom:563.835000px;}
.y66{bottom:582.915000px;}
.y90{bottom:585.975000px;}
.ya6{bottom:592.815000px;}
.ye{bottom:595.155000px;}
.y65{bottom:603.615000px;}
.y8f{bottom:610.815000px;}
.y64{bottom:624.315000px;}
.ya5{bottom:628.995000px;}
.yd{bottom:633.135000px;}
.y8e{bottom:635.835000px;}
.y63{bottom:645.015000px;}
.y8d{bottom:660.675000px;}
.ya4{bottom:665.175000px;}
.y62{bottom:665.715000px;}
.yc{bottom:671.115000px;}
.y8c{bottom:685.545000px;}
.y61{bottom:686.445000px;}
.yb9{bottom:701.025000px;}
.ya3{bottom:701.385000px;}
.y60{bottom:707.145000px;}
.yb{bottom:709.125000px;}
.y8b{bottom:710.385000px;}
.y27{bottom:723.885000px;}
.y5f{bottom:727.845000px;}
.y8a{bottom:735.225000px;}
.ybe{bottom:737.745000px;}
.ya{bottom:747.105000px;}
.ya2{bottom:747.465000px;}
.y5e{bottom:748.545000px;}
.y89{bottom:760.065000px;}
.y5d{bottom:769.245000px;}
.ya1{bottom:773.925000px;}
.yb8{bottom:783.645000px;}
.y9{bottom:784.905000px;}
.y88{bottom:785.085000px;}
.y5c{bottom:789.585000px;}
.y87{bottom:809.925000px;}
.yb7{bottom:810.105000px;}
.y5b{bottom:812.625000px;}
.ya0{bottom:819.825000px;}
.y8{bottom:822.885000px;}
.y86{bottom:834.765000px;}
.y1f{bottom:841.605000px;}
.y5a{bottom:844.305000px;}
.y9f{bottom:846.285000px;}
.yb6{bottom:856.005000px;}
.y85{bottom:859.785000px;}
.y7{bottom:860.865000px;}
.ybd{bottom:882.645000px;}
.y84{bottom:884.445000px;}
.y9e{bottom:892.365000px;}
.y6{bottom:898.845000px;}
.y56{bottom:903.885000px;}
.y59{bottom:904.245000px;}
.y82{bottom:909.285000px;}
.yb5{bottom:918.510000px;}
.y9d{bottom:918.870000px;}
.y58{bottom:924.990000px;}
.y81{bottom:934.350000px;}
.y5{bottom:936.870000px;}
.y55{bottom:945.330000px;}
.yb4{bottom:954.690000px;}
.ybc{bottom:955.050000px;}
.y80{bottom:959.190000px;}
.y9c{bottom:964.770000px;}
.y57{bottom:966.390000px;}
.y4{bottom:974.850000px;}
.y7f{bottom:984.030000px;}
.y54{bottom:986.730000px;}
.y9b{bottom:990.870000px;}
.ybb{bottom:991.230000px;}
.y52{bottom:1007.790000px;}
.y7e{bottom:1009.050000px;}
.y3{bottom:1012.650000px;}
.y9a{bottom:1027.230000px;}
.yba{bottom:1027.590000px;}
.y51{bottom:1028.130000px;}
.y7d{bottom:1033.890000px;}
.y2{bottom:1050.630000px;}
.y7b{bottom:1058.730000px;}
.y99{bottom:1063.410000px;}
.yb3{bottom:1063.770000px;}
.y50{bottom:1068.990000px;}
.y7a{bottom:1083.570000px;}
.y1{bottom:1088.610000px;}
.y4f{bottom:1089.690000px;}
.y98{bottom:1099.590000px;}
.yb2{bottom:1099.950000px;}
.y78{bottom:1108.410000px;}
.y4e{bottom:1137.210000px;}
.y53{bottom:1164.060000px;}
.h17{height:5.653125px;}
.h5{height:19.618500px;}
.h3{height:21.418500px;}
.h1f{height:23.940000px;}
.h22{height:23.976000px;}
.h1d{height:24.120000px;}
.h20{height:24.300000px;}
.h21{height:24.336000px;}
.h1c{height:48.465000px;}
.h2b{height:50.171484px;}
.h2c{height:51.519375px;}
.h26{height:52.971680px;}
.h1a{height:58.429688px;}
.h7{height:58.651172px;}
.h28{height:59.066719px;}
.ha{height:61.287891px;}
.h6{height:65.884219px;}
.h4{height:66.757500px;}
.h1b{height:67.837500px;}
.h18{height:69.669141px;}
.h19{height:70.628906px;}
.h24{height:72.846211px;}
.h27{height:82.635820px;}
.h1e{height:82.676953px;}
.hb{height:84.898125px;}
.h14{height:85.460977px;}
.h2a{height:87.695156px;}
.h10{height:88.330078px;}
.h11{height:90.703125px;}
.h29{height:91.878047px;}
.h25{height:93.301875px;}
.h15{height:93.936445px;}
.h9{height:93.983203px;}
.h16{height:96.508125px;}
.h13{height:105.943359px;}
.he{height:117.720000px;}
.h2{height:129.315234px;}
.hc{height:153.343125px;}
.hf{height:160.770000px;}
.hd{height:184.306641px;}
.h8{height:332.895000px;}
.h12{height:380.235000px;}
.h23{height:672.360000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:18.720000px;}
.w4{width:108.169500px;}
.w7{width:156.810000px;}
.w6{width:204.870000px;}
.w2{width:312.139500px;}
.w8{width:374.460000px;}
.w5{width:557.775000px;}
.w1{width:893.250000px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:1.429500px;}
.x5{left:4.500000px;}
.x22{left:8.100000px;}
.xe{left:18.885000px;}
.x10{left:21.045000px;}
.xa{left:28.245000px;}
.xc{left:33.510000px;}
.x17{left:36.570000px;}
.x1{left:42.480000px;}
.x13{left:63.390000px;}
.x19{left:68.970000px;}
.x16{left:70.950000px;}
.x8{left:74.730000px;}
.x25{left:75.960000px;}
.x27{left:77.400000px;}
.x15{left:80.850000px;}
.x2{left:83.386500px;}
.x1b{left:84.996000px;}
.x38{left:88.596000px;}
.x32{left:90.576000px;}
.x2f{left:93.636000px;}
.x2e{left:96.516000px;}
.x6{left:103.906500px;}
.x35{left:105.516000px;}
.x1e{left:108.756000px;}
.x3b{left:111.636000px;}
.x29{left:118.476000px;}
.x30{left:128.376000px;}
.x9{left:132.510000px;}
.x1d{left:135.036000px;}
.x18{left:138.630000px;}
.x28{left:142.236000px;}
.x1a{left:144.756000px;}
.x39{left:147.636000px;}
.x12{left:149.250000px;}
.x20{left:153.570000px;}
.x14{left:159.870000px;}
.x11{left:162.390000px;}
.x36{left:170.490000px;}
.x1f{left:171.930000px;}
.x34{left:174.450000px;}
.xf{left:181.290000px;}
.x37{left:185.070000px;}
.xb{left:196.620000px;}
.xd{left:211.380000px;}
.x7{left:214.245000px;}
.x3a{left:218.370000px;}
.x2b{left:245.775000px;}
.x2c{left:269.355000px;}
.x31{left:329.295000px;}
.x26{left:357.195000px;}
.x33{left:385.815000px;}
.x3c{left:390.315000px;}
.x2a{left:392.655000px;}
.x24{left:417.720000px;}
.x21{left:423.285000px;}
.x2d{left:446.685000px;}
.x1c{left:475.125000px;}
.x23{left:628.890000px;}
.x4{left:795.420000px;}
@media print{
.v4{vertical-align:-151.146667pt;}
.v2{vertical-align:-144.000000pt;}
.v1{vertical-align:-135.680000pt;}
.v5{vertical-align:-73.600000pt;}
.v3{vertical-align:-67.840000pt;}
.v7{vertical-align:-34.560000pt;}
.v8{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:34.560000pt;}
.v9{vertical-align:45.440000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls1e{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.613333pt;}
.ls1f{letter-spacing:-0.608000pt;}
.ls2a{letter-spacing:-0.524800pt;}
.ls33{letter-spacing:-0.336533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.248533pt;}
.lsc{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.030720pt;}
.ls3b{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.003627pt;}
.ls15{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.033067pt;}
.ls29{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.039040pt;}
.ls7{letter-spacing:0.080000pt;}
.ls25{letter-spacing:0.115200pt;}
.ls10{letter-spacing:0.135040pt;}
.ls14{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.245760pt;}
.ls32{letter-spacing:0.303360pt;}
.ls34{letter-spacing:0.303467pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.406933pt;}
.ls16{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.720000pt;}
.ls1c{letter-spacing:1.120000pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls0{letter-spacing:2.080000pt;}
.ls18{letter-spacing:3.680000pt;}
.ls2d{letter-spacing:4.320000pt;}
.ls28{letter-spacing:10.080000pt;}
.ls11{letter-spacing:10.880000pt;}
.ls38{letter-spacing:14.880000pt;}
.ls37{letter-spacing:15.200000pt;}
.ls2c{letter-spacing:16.480000pt;}
.ls27{letter-spacing:17.120000pt;}
.ls1a{letter-spacing:20.960000pt;}
.ls21{letter-spacing:21.600000pt;}
.ls31{letter-spacing:28.000000pt;}
.ls2e{letter-spacing:29.120000pt;}
.ls35{letter-spacing:29.280000pt;}
.ls2b{letter-spacing:33.760000pt;}
.lsf{letter-spacing:33.920000pt;}
.ls17{letter-spacing:35.680000pt;}
.ls24{letter-spacing:43.360000pt;}
.ls22{letter-spacing:56.800000pt;}
.ls2f{letter-spacing:61.600000pt;}
.ls8{letter-spacing:67.200000pt;}
.ls23{letter-spacing:67.658667pt;}
.ls20{letter-spacing:71.520000pt;}
.ls19{letter-spacing:81.866667pt;}
.ls39{letter-spacing:86.880000pt;}
.ls36{letter-spacing:91.040000pt;}
.ls3a{letter-spacing:155.802027pt;}
.ls5{letter-spacing:198.400000pt;}
.ls9{letter-spacing:312.320000pt;}
.ws11{word-spacing:-37.600000pt;}
.ws12{word-spacing:-37.280000pt;}
.ws9{word-spacing:-36.160000pt;}
.wsa{word-spacing:-36.000000pt;}
.ws8{word-spacing:-30.085120pt;}
.ws7{word-spacing:-30.054400pt;}
.ws0{word-spacing:-29.600000pt;}
.ws1{word-spacing:-29.280000pt;}
.wse{word-spacing:-24.000000pt;}
.ws10{word-spacing:-21.280000pt;}
.wsc{word-spacing:-20.720000pt;}
.wsb{word-spacing:-20.000000pt;}
.wsf{word-spacing:-19.360000pt;}
.ws1b{word-spacing:-19.040000pt;}
.ws1d{word-spacing:-19.023467pt;}
.ws1e{word-spacing:-18.744960pt;}
.ws6{word-spacing:-18.720000pt;}
.ws1f{word-spacing:-18.695040pt;}
.ws17{word-spacing:-18.400000pt;}
.ws1c{word-spacing:-18.383467pt;}
.ws19{word-spacing:-18.112000pt;}
.ws1a{word-spacing:-18.106667pt;}
.ws18{word-spacing:-17.760000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.360000pt;}
.ws4{word-spacing:-15.126933pt;}
.ws3{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.306880pt;}
.ws16{word-spacing:-12.000000pt;}
.ws15{word-spacing:-9.760000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-6.193280pt;}
._3{margin-left:-4.641493pt;}
._2{margin-left:-3.461760pt;}
._0{margin-left:-2.432000pt;}
._1{margin-left:-1.093760pt;}
._5{width:0.931840pt;}
._6{width:2.333440pt;}
._c{width:3.714560pt;}
._19{width:4.792320pt;}
._9{width:6.514560pt;}
._a{width:7.562880pt;}
._17{width:9.333973pt;}
._1e{width:10.903040pt;}
._26{width:11.905920pt;}
._29{width:13.042560pt;}
._28{width:14.048000pt;}
._14{width:15.994880pt;}
._8{width:17.821440pt;}
._11{width:20.477227pt;}
._18{width:21.482240pt;}
._24{width:23.108480pt;}
._2c{width:24.606080pt;}
._2f{width:25.528747pt;}
._7{width:27.256107pt;}
._20{width:28.545920pt;}
._37{width:29.667413pt;}
._31{width:31.045760pt;}
._35{width:33.457920pt;}
._22{width:34.444800pt;}
._b{width:35.782827pt;}
._2d{width:36.902400pt;}
._1d{width:38.113920pt;}
._1c{width:39.057920pt;}
._21{width:40.081707pt;}
._2e{width:41.154560pt;}
._2b{width:42.643627pt;}
._39{width:43.911680pt;}
._2a{width:44.928000pt;}
._3d{width:46.051200pt;}
._42{width:47.137067pt;}
._12{width:48.222720pt;}
._13{width:49.466240pt;}
._1a{width:50.739200pt;}
._1b{width:51.696640pt;}
._38{width:52.767573pt;}
._32{width:55.007360pt;}
._33{width:56.355200pt;}
._1f{width:57.432960pt;}
._36{width:58.379520pt;}
._25{width:59.575040pt;}
._3a{width:61.020800pt;}
._10{width:63.123840pt;}
._f{width:64.067840pt;}
._23{width:65.116160pt;}
._30{width:66.343680pt;}
._27{width:67.353600pt;}
._15{width:70.761387pt;}
._16{width:72.096640pt;}
._34{width:80.092160pt;}
._e{width:81.242027pt;}
._d{width:82.608640pt;}
._3e{width:86.266667pt;}
._3f{width:87.171413pt;}
._3c{width:90.529920pt;}
._3b{width:91.838720pt;}
._40{width:97.216000pt;}
._41{width:98.138240pt;}
.fsb{font-size:5.120000pt;}
.fse{font-size:40.320000pt;}
.fs10{font-size:45.440000pt;}
.fsf{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsd{font-size:61.440000pt;}
.fsc{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:77.440000pt;}
.fs7{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs0{font-size:117.120000pt;}
.fs5{font-size:133.120000pt;}
.fsa{font-size:149.120000pt;}
.fs6{font-size:160.000000pt;}
.y97{bottom:-14.560000pt;}
.ybf{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.320000pt;}
.y1d{bottom:4.480000pt;}
.y7c{bottom:5.280000pt;}
.y79{bottom:5.440000pt;}
.y83{bottom:5.480000pt;}
.y30{bottom:17.440000pt;}
.y26{bottom:24.480000pt;}
.y2f{bottom:40.640000pt;}
.y41{bottom:42.746667pt;}
.y4b{bottom:47.546667pt;}
.y2e{bottom:63.520000pt;}
.y29{bottom:65.280000pt;}
.y25{bottom:73.480000pt;}
.y40{bottom:76.666667pt;}
.y4a{bottom:78.426667pt;}
.y28{bottom:85.280000pt;}
.y2d{bottom:86.400000pt;}
.y1e{bottom:88.480000pt;}
.y49{bottom:102.906667pt;}
.y3f{bottom:104.986667pt;}
.y1b{bottom:105.760000pt;}
.y2c{bottom:109.306667pt;}
.y1a{bottom:111.200000pt;}
.y3e{bottom:121.946667pt;}
.y4d{bottom:123.360000pt;}
.y2b{bottom:123.546667pt;}
.y3d{bottom:138.746667pt;}
.y24{bottom:145.640000pt;}
.y48{bottom:149.146667pt;}
.y3c{bottom:155.706667pt;}
.y19{bottom:157.920000pt;}
.y4c{bottom:161.440000pt;}
.y31{bottom:162.560000pt;}
.y47{bottom:171.386667pt;}
.y3b{bottom:172.506667pt;}
.yb1{bottom:172.640000pt;}
.y3a{bottom:189.306667pt;}
.y18{bottom:191.706667pt;}
.y46{bottom:193.626667pt;}
.yb0{bottom:204.826667pt;}
.y39{bottom:206.266667pt;}
.y77{bottom:207.226667pt;}
.y45{bottom:215.866667pt;}
.y23{bottom:222.440000pt;}
.y38{bottom:223.066667pt;}
.y76{bottom:224.826667pt;}
.y17{bottom:225.466667pt;}
.yaf{bottom:237.146667pt;}
.y44{bottom:238.146667pt;}
.y37{bottom:240.066667pt;}
.y75{bottom:242.426667pt;}
.y22{bottom:251.240000pt;}
.y36{bottom:256.866667pt;}
.y16{bottom:259.226667pt;}
.y74{bottom:260.026667pt;}
.y43{bottom:260.546667pt;}
.yae{bottom:269.306667pt;}
.y35{bottom:273.666667pt;}
.y21{bottom:276.386667pt;}
.y20{bottom:276.546667pt;}
.y73{bottom:277.626667pt;}
.y34{bottom:290.626667pt;}
.y15{bottom:292.986667pt;}
.y72{bottom:295.386667pt;}
.yad{bottom:301.466667pt;}
.y42{bottom:303.906667pt;}
.y33{bottom:307.426667pt;}
.y71{bottom:312.986667pt;}
.y32{bottom:324.386667pt;}
.y14{bottom:326.746667pt;}
.y70{bottom:330.586667pt;}
.yac{bottom:333.626667pt;}
.y6f{bottom:348.506667pt;}
.y13{bottom:360.346667pt;}
.yab{bottom:365.946667pt;}
.y6e{bottom:370.906667pt;}
.y6d{bottom:389.346667pt;}
.y12{bottom:394.146667pt;}
.yaa{bottom:398.146667pt;}
.y6c{bottom:407.746667pt;}
.y96{bottom:409.666667pt;}
.y95{bottom:410.146667pt;}
.y6b{bottom:426.146667pt;}
.y11{bottom:427.906667pt;}
.ya9{bottom:430.306667pt;}
.y94{bottom:432.386667pt;}
.y6a{bottom:444.546667pt;}
.y93{bottom:454.466667pt;}
.y10{bottom:461.666667pt;}
.ya8{bottom:462.466667pt;}
.y69{bottom:462.946667pt;}
.yc2{bottom:474.466667pt;}
.y92{bottom:476.546667pt;}
.y68{bottom:481.346667pt;}
.yc1{bottom:487.586667pt;}
.ya7{bottom:494.786667pt;}
.yf{bottom:495.426667pt;}
.y91{bottom:498.786667pt;}
.y67{bottom:499.746667pt;}
.y2a{bottom:500.546667pt;}
.yc0{bottom:501.186667pt;}
.y66{bottom:518.146667pt;}
.y90{bottom:520.866667pt;}
.ya6{bottom:526.946667pt;}
.ye{bottom:529.026667pt;}
.y65{bottom:536.546667pt;}
.y8f{bottom:542.946667pt;}
.y64{bottom:554.946667pt;}
.ya5{bottom:559.106667pt;}
.yd{bottom:562.786667pt;}
.y8e{bottom:565.186667pt;}
.y63{bottom:573.346667pt;}
.y8d{bottom:587.266667pt;}
.ya4{bottom:591.266667pt;}
.y62{bottom:591.746667pt;}
.yc{bottom:596.546667pt;}
.y8c{bottom:609.373333pt;}
.y61{bottom:610.173333pt;}
.yb9{bottom:623.133333pt;}
.ya3{bottom:623.453333pt;}
.y60{bottom:628.573333pt;}
.yb{bottom:630.333333pt;}
.y8b{bottom:631.453333pt;}
.y27{bottom:643.453333pt;}
.y5f{bottom:646.973333pt;}
.y8a{bottom:653.533333pt;}
.ybe{bottom:655.773333pt;}
.ya{bottom:664.093333pt;}
.ya2{bottom:664.413333pt;}
.y5e{bottom:665.373333pt;}
.y89{bottom:675.613333pt;}
.y5d{bottom:683.773333pt;}
.ya1{bottom:687.933333pt;}
.yb8{bottom:696.573333pt;}
.y9{bottom:697.693333pt;}
.y88{bottom:697.853333pt;}
.y5c{bottom:701.853333pt;}
.y87{bottom:719.933333pt;}
.yb7{bottom:720.093333pt;}
.y5b{bottom:722.333333pt;}
.ya0{bottom:728.733333pt;}
.y8{bottom:731.453333pt;}
.y86{bottom:742.013333pt;}
.y1f{bottom:748.093333pt;}
.y5a{bottom:750.493333pt;}
.y9f{bottom:752.253333pt;}
.yb6{bottom:760.893333pt;}
.y85{bottom:764.253333pt;}
.y7{bottom:765.213333pt;}
.ybd{bottom:784.573333pt;}
.y84{bottom:786.173333pt;}
.y9e{bottom:793.213333pt;}
.y6{bottom:798.973333pt;}
.y56{bottom:803.453333pt;}
.y59{bottom:803.773333pt;}
.y82{bottom:808.253333pt;}
.yb5{bottom:816.453333pt;}
.y9d{bottom:816.773333pt;}
.y58{bottom:822.213333pt;}
.y81{bottom:830.533333pt;}
.y5{bottom:832.773333pt;}
.y55{bottom:840.293333pt;}
.yb4{bottom:848.613333pt;}
.ybc{bottom:848.933333pt;}
.y80{bottom:852.613333pt;}
.y9c{bottom:857.573333pt;}
.y57{bottom:859.013333pt;}
.y4{bottom:866.533333pt;}
.y7f{bottom:874.693333pt;}
.y54{bottom:877.093333pt;}
.y9b{bottom:880.773333pt;}
.ybb{bottom:881.093333pt;}
.y52{bottom:895.813333pt;}
.y7e{bottom:896.933333pt;}
.y3{bottom:900.133333pt;}
.y9a{bottom:913.093333pt;}
.yba{bottom:913.413333pt;}
.y51{bottom:913.893333pt;}
.y7d{bottom:919.013333pt;}
.y2{bottom:933.893333pt;}
.y7b{bottom:941.093333pt;}
.y99{bottom:945.253333pt;}
.yb3{bottom:945.573333pt;}
.y50{bottom:950.213333pt;}
.y7a{bottom:963.173333pt;}
.y1{bottom:967.653333pt;}
.y4f{bottom:968.613333pt;}
.y98{bottom:977.413333pt;}
.yb2{bottom:977.733333pt;}
.y78{bottom:985.253333pt;}
.y4e{bottom:1010.853333pt;}
.y53{bottom:1034.720000pt;}
.h17{height:5.025000pt;}
.h5{height:17.438667pt;}
.h3{height:19.038667pt;}
.h1f{height:21.280000pt;}
.h22{height:21.312000pt;}
.h1d{height:21.440000pt;}
.h20{height:21.600000pt;}
.h21{height:21.632000pt;}
.h1c{height:43.080000pt;}
.h2b{height:44.596875pt;}
.h2c{height:45.795000pt;}
.h26{height:47.085938pt;}
.h1a{height:51.937500pt;}
.h7{height:52.134375pt;}
.h28{height:52.503750pt;}
.ha{height:54.478125pt;}
.h6{height:58.563750pt;}
.h4{height:59.340000pt;}
.h1b{height:60.300000pt;}
.h18{height:61.928125pt;}
.h19{height:62.781250pt;}
.h24{height:64.752187pt;}
.h27{height:73.454062pt;}
.h1e{height:73.490625pt;}
.hb{height:75.465000pt;}
.h14{height:75.965312pt;}
.h2a{height:77.951250pt;}
.h10{height:78.515625pt;}
.h11{height:80.625000pt;}
.h29{height:81.669375pt;}
.h25{height:82.935000pt;}
.h15{height:83.499062pt;}
.h9{height:83.540625pt;}
.h16{height:85.785000pt;}
.h13{height:94.171875pt;}
.he{height:104.640000pt;}
.h2{height:114.946875pt;}
.hc{height:136.305000pt;}
.hf{height:142.906667pt;}
.hd{height:163.828125pt;}
.h8{height:295.906667pt;}
.h12{height:337.986667pt;}
.h23{height:597.653333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:16.640000pt;}
.w4{width:96.150667pt;}
.w7{width:139.386667pt;}
.w6{width:182.106667pt;}
.w2{width:277.457333pt;}
.w8{width:332.853333pt;}
.w5{width:495.800000pt;}
.w1{width:794.000000pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:1.270667pt;}
.x5{left:4.000000pt;}
.x22{left:7.200000pt;}
.xe{left:16.786667pt;}
.x10{left:18.706667pt;}
.xa{left:25.106667pt;}
.xc{left:29.786667pt;}
.x17{left:32.506667pt;}
.x1{left:37.760000pt;}
.x13{left:56.346667pt;}
.x19{left:61.306667pt;}
.x16{left:63.066667pt;}
.x8{left:66.426667pt;}
.x25{left:67.520000pt;}
.x27{left:68.800000pt;}
.x15{left:71.866667pt;}
.x2{left:74.121333pt;}
.x1b{left:75.552000pt;}
.x38{left:78.752000pt;}
.x32{left:80.512000pt;}
.x2f{left:83.232000pt;}
.x2e{left:85.792000pt;}
.x6{left:92.361333pt;}
.x35{left:93.792000pt;}
.x1e{left:96.672000pt;}
.x3b{left:99.232000pt;}
.x29{left:105.312000pt;}
.x30{left:114.112000pt;}
.x9{left:117.786667pt;}
.x1d{left:120.032000pt;}
.x18{left:123.226667pt;}
.x28{left:126.432000pt;}
.x1a{left:128.672000pt;}
.x39{left:131.232000pt;}
.x12{left:132.666667pt;}
.x20{left:136.506667pt;}
.x14{left:142.106667pt;}
.x11{left:144.346667pt;}
.x36{left:151.546667pt;}
.x1f{left:152.826667pt;}
.x34{left:155.066667pt;}
.xf{left:161.146667pt;}
.x37{left:164.506667pt;}
.xb{left:174.773333pt;}
.xd{left:187.893333pt;}
.x7{left:190.440000pt;}
.x3a{left:194.106667pt;}
.x2b{left:218.466667pt;}
.x2c{left:239.426667pt;}
.x31{left:292.706667pt;}
.x26{left:317.506667pt;}
.x33{left:342.946667pt;}
.x3c{left:346.946667pt;}
.x2a{left:349.026667pt;}
.x24{left:371.306667pt;}
.x21{left:376.253333pt;}
.x2d{left:397.053333pt;}
.x1c{left:422.333333pt;}
.x23{left:559.013333pt;}
.x4{left:707.040000pt;}
}




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