
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a87aa2a402f777d35fb9bd2c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ff9b1bb5ffe327b4e33f09cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f4fcf5e6ee7362acbd837e8f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_74ea046df7b2bd8699a5bedf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_460a1276fa32d617dabe3785.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a9ed7a84a0822474d27b3f40.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e239307c77a829a01cc0631c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_704b9413f8f5d3e1d6961277.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_2ab3c88268780d68d43d5867.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-9.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.120000px;}
.v2{vertical-align:15.120000px;}
.ls28{letter-spacing:-2.862000px;}
.ls30{letter-spacing:-1.686000px;}
.ls16{letter-spacing:-1.626000px;}
.ls2f{letter-spacing:-1.584000px;}
.ls2d{letter-spacing:-1.446000px;}
.ls31{letter-spacing:-0.517800px;}
.ls24{letter-spacing:-0.375000px;}
.ls18{letter-spacing:-0.368400px;}
.ls2c{letter-spacing:-0.244200px;}
.ls15{letter-spacing:-0.243600px;}
.ls13{letter-spacing:-0.186600px;}
.ls25{letter-spacing:-0.178800px;}
.ls1f{letter-spacing:-0.160800px;}
.lsb{letter-spacing:-0.153600px;}
.ls26{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls2a{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls8{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.011160px;}
.ls19{letter-spacing:-0.008280px;}
.ls27{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls29{letter-spacing:0.020160px;}
.ls1c{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls17{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.074160px;}
.ls1d{letter-spacing:0.074400px;}
.ls2b{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls33{letter-spacing:0.098400px;}
.ls32{letter-spacing:0.108600px;}
.ls2e{letter-spacing:0.115800px;}
.ls21{letter-spacing:0.116400px;}
.ls14{letter-spacing:0.118200px;}
.ls11{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls1e{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:3.693600px;}
.ls1b{letter-spacing:15.933600px;}
.ls35{letter-spacing:47.726640px;}
.ls10{letter-spacing:63.566640px;}
.ls1a{letter-spacing:64.286640px;}
.ls34{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws13{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.wsa{word-spacing:-13.344600px;}
.ws17{word-spacing:-13.342800px;}
.ws22{word-spacing:-13.342200px;}
.ws26{word-spacing:-13.335000px;}
.ws18{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.279680px;}
.wse{word-spacing:-13.275360px;}
.ws1e{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.ws1c{word-spacing:-13.220280px;}
.ws10{word-spacing:-13.218120px;}
.ws16{word-spacing:-13.215240px;}
.ws15{word-spacing:-13.162800px;}
.ws1f{word-spacing:-13.101000px;}
.ws1b{word-spacing:-13.084800px;}
.ws5{word-spacing:-13.072800px;}
.ws14{word-spacing:-13.065600px;}
.ws1a{word-spacing:-13.047600px;}
.ws8{word-spacing:-13.039800px;}
.wsb{word-spacing:-12.982800px;}
.ws20{word-spacing:-12.982200px;}
.wsf{word-spacing:-12.858000px;}
.ws19{word-spacing:-12.851400px;}
.ws25{word-spacing:-12.708600px;}
.ws21{word-spacing:-11.780400px;}
.ws23{word-spacing:-11.642400px;}
.wsc{word-spacing:-11.600400px;}
.ws24{word-spacing:-11.540400px;}
.ws1d{word-spacing:-10.364400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._e{margin-left:-5.056920px;}
._a{margin-left:-4.030080px;}
._6{margin-left:-2.394240px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._4{width:2.457012px;}
._c{width:4.040970px;}
._7{width:5.298015px;}
._3{width:6.372600px;}
._5{width:7.815600px;}
._b{width:8.837400px;}
._8{width:9.859800px;}
._2{width:11.661024px;}
._9{width:14.573760px;}
._d{width:15.750360px;}
._12{width:16.894800px;}
._f{width:20.720151px;}
._10{width:29.991960px;}
._11{width:57.354480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.330000px;}
.y46{bottom:4.500000px;}
.y47{bottom:6.750000px;}
.y2f{bottom:7.830000px;}
.yca{bottom:7.860000px;}
.y32{bottom:7.920000px;}
.yb6{bottom:25.470000px;}
.ybc{bottom:29.880000px;}
.yb8{bottom:29.970000px;}
.ybb{bottom:47.520000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yea{bottom:116.760000px;}
.y9d{bottom:119.370000px;}
.y109{bottom:122.520000px;}
.y79{bottom:125.310000px;}
.ye9{bottom:134.310000px;}
.y4c{bottom:140.070000px;}
.y9c{bottom:154.920000px;}
.y108{bottom:157.710000px;}
.y78{bottom:160.860000px;}
.ye8{bottom:161.670000px;}
.y9b{bottom:169.950000px;}
.y107{bottom:175.260000px;}
.y4b{bottom:175.710000px;}
.y77{bottom:180.030000px;}
.y26{bottom:182.910000px;}
.yc5{bottom:188.130000px;}
.ye7{bottom:188.940000px;}
.y106{bottom:192.900000px;}
.y9a{bottom:197.220000px;}
.y76{bottom:197.580000px;}
.y25{bottom:200.460000px;}
.yc4{bottom:205.680000px;}
.y105{bottom:210.450000px;}
.y4a{bottom:211.260000px;}
.y75{bottom:215.220000px;}
.ye6{bottom:216.300000px;}
.y24{bottom:218.100000px;}
.yc3{bottom:223.320000px;}
.y99{bottom:224.580000px;}
.y48{bottom:225.480000px;}
.y74{bottom:232.770000px;}
.y104{bottom:237.360000px;}
.yc2{bottom:240.870000px;}
.ye5{bottom:243.660000px;}
.y73{bottom:250.320000px;}
.y98{bottom:251.940000px;}
.y45{bottom:252.030000px;}
.y23{bottom:253.650000px;}
.yc1{bottom:258.420000px;}
.y72{bottom:267.960000px;}
.ye4{bottom:271.020000px;}
.y22{bottom:271.200000px;}
.yc0{bottom:276.060000px;}
.y97{bottom:279.300000px;}
.y103{bottom:282.990000px;}
.y21{bottom:288.840000px;}
.ybf{bottom:293.610000px;}
.y71{bottom:303.510000px;}
.y20{bottom:306.390000px;}
.y96{bottom:306.570000px;}
.y102{bottom:310.350000px;}
.ybe{bottom:311.160000px;}
.ye3{bottom:319.710000px;}
.y70{bottom:321.150000px;}
.y1f{bottom:324.030000px;}
.y95{bottom:333.930000px;}
.y101{bottom:337.710000px;}
.y6f{bottom:338.700000px;}
.y1e{bottom:341.580000px;}
.ybd{bottom:345.000000px;}
.ye2{bottom:355.260000px;}
.y6e{bottom:356.250000px;}
.y1d{bottom:359.130000px;}
.y94{bottom:361.290000px;}
.y100{bottom:364.980000px;}
.ye1{bottom:372.900000px;}
.y1c{bottom:376.770000px;}
.y93{bottom:388.560000px;}
.ye0{bottom:390.450000px;}
.y6d{bottom:391.890000px;}
.yff{bottom:392.340000px;}
.y1b{bottom:394.320000px;}
.ydf{bottom:408.000000px;}
.y6c{bottom:409.440000px;}
.y1a{bottom:411.960000px;}
.yba{bottom:412.050000px;}
.y92{bottom:415.920000px;}
.yfe{bottom:419.700000px;}
.yde{bottom:425.640000px;}
.y6b{bottom:427.080000px;}
.y19{bottom:429.510000px;}
.y126{bottom:431.490000px;}
.ydd{bottom:443.190000px;}
.y91{bottom:443.280000px;}
.y6a{bottom:444.630000px;}
.y18{bottom:447.060000px;}
.y125{bottom:449.040000px;}
.y17{bottom:464.700000px;}
.yfd{bottom:468.390000px;}
.y90{bottom:470.670000px;}
.y124{bottom:475.710000px;}
.ydc{bottom:476.160000px;}
.yb9{bottom:479.040000px;}
.y69{bottom:481.740000px;}
.y16{bottom:491.640000px;}
.y123{bottom:493.260000px;}
.y44{bottom:496.230000px;}
.ydb{bottom:503.520000px;}
.yfc{bottom:503.970000px;}
.y43{bottom:513.780000px;}
.y68{bottom:517.290000px;}
.y8f{bottom:519.360000px;}
.y122{bottom:519.900000px;}
.yfb{bottom:521.610000px;}
.yb7{bottom:528.450000px;}
.yda{bottom:530.880000px;}
.y42{bottom:531.420000px;}
.y67{bottom:534.930000px;}
.y121{bottom:537.450000px;}
.yfa{bottom:539.160000px;}
.y15{bottom:540.240000px;}
.y41{bottom:548.970000px;}
.y66{bottom:552.480000px;}
.y8e{bottom:554.910000px;}
.yf9{bottom:556.800000px;}
.yd9{bottom:558.240000px;}
.y120{bottom:564.000000px;}
.y40{bottom:567.420000px;}
.yf8{bottom:574.350000px;}
.y14{bottom:577.230000px;}
.yb5{bottom:577.860000px;}
.y65{bottom:579.120000px;}
.y11f{bottom:581.640000px;}
.y3f{bottom:584.970000px;}
.yd8{bottom:585.510000px;}
.y8d{bottom:587.130000px;}
.yf7{bottom:591.900000px;}
.y13{bottom:594.780000px;}
.y3e{bottom:602.520000px;}
.y11e{bottom:608.190000px;}
.y12{bottom:612.420000px;}
.y64{bottom:614.670000px;}
.y3d{bottom:620.070000px;}
.y11d{bottom:625.830000px;}
.yf6{bottom:628.350000px;}
.y11{bottom:629.970000px;}
.y63{bottom:632.220000px;}
.yd7{bottom:634.200000px;}
.yb4{bottom:644.190000px;}
.y3c{bottom:647.520000px;}
.y10{bottom:647.610000px;}
.y11c{bottom:652.380000px;}
.y62{bottom:659.670000px;}
.yf{bottom:665.160000px;}
.yd6{bottom:669.840000px;}
.yf5{bottom:677.850000px;}
.y11b{bottom:678.930000px;}
.yb3{bottom:679.740000px;}
.y3b{bottom:680.550000px;}
.ye{bottom:682.710000px;}
.yd5{bottom:687.390000px;}
.y61{bottom:695.220000px;}
.y11a{bottom:696.570000px;}
.yb2{bottom:697.380000px;}
.yd{bottom:700.350000px;}
.yd4{bottom:705.030000px;}
.y3a{bottom:707.820000px;}
.y60{bottom:712.770000px;}
.yb1{bottom:714.930000px;}
.yc{bottom:717.900000px;}
.y119{bottom:723.120000px;}
.y39{bottom:735.180000px;}
.yd3{bottom:737.970000px;}
.y5f{bottom:740.220000px;}
.yb0{bottom:741.480000px;}
.yb{bottom:744.810000px;}
.y118{bottom:749.670000px;}
.y38{bottom:762.540000px;}
.yd2{bottom:765.330000px;}
.y8c{bottom:766.050000px;}
.y117{bottom:767.310000px;}
.y5e{bottom:775.860000px;}
.yaf{bottom:777.390000px;}
.y8b{bottom:783.600000px;}
.y37{bottom:789.900000px;}
.yd1{bottom:792.600000px;}
.ya{bottom:793.140000px;}
.y5d{bottom:793.410000px;}
.y116{bottom:793.860000px;}
.y8a{bottom:801.150000px;}
.y5c{bottom:810.960000px;}
.y115{bottom:811.500000px;}
.y36{bottom:817.170000px;}
.y89{bottom:819.600000px;}
.yd0{bottom:819.960000px;}
.yae{bottom:825.720000px;}
.y9{bottom:828.690000px;}
.y88{bottom:837.150000px;}
.y114{bottom:838.050000px;}
.y5b{bottom:838.410000px;}
.yad{bottom:843.270000px;}
.y35{bottom:844.530000px;}
.ycf{bottom:847.320000px;}
.y87{bottom:854.790000px;}
.y113{bottom:855.600000px;}
.yac{bottom:860.820000px;}
.y8{bottom:864.510000px;}
.y34{bottom:871.890000px;}
.y86{bottom:872.340000px;}
.y112{bottom:873.240000px;}
.y5a{bottom:873.960000px;}
.yab{bottom:879.270000px;}
.yf4{bottom:883.320000px;}
.y85{bottom:890.790000px;}
.y59{bottom:891.600000px;}
.yce{bottom:896.010000px;}
.yaa{bottom:896.820000px;}
.y33{bottom:899.250000px;}
.y111{bottom:899.790000px;}
.y7{bottom:900.510000px;}
.y84{bottom:908.340000px;}
.y58{bottom:909.150000px;}
.yf3{bottom:910.680000px;}
.ya9{bottom:915.270000px;}
.y6{bottom:918.510000px;}
.y83{bottom:925.890000px;}
.y110{bottom:926.430000px;}
.y31{bottom:926.520000px;}
.y57{bottom:926.700000px;}
.ycd{bottom:931.560000px;}
.ya8{bottom:932.820000px;}
.yf2{bottom:937.950000px;}
.y82{bottom:943.440000px;}
.y10f{bottom:943.980000px;}
.y56{bottom:945.150000px;}
.ycc{bottom:949.110000px;}
.ya7{bottom:950.370000px;}
.y30{bottom:953.880000px;}
.y5{bottom:954.600000px;}
.y81{bottom:961.890000px;}
.y55{bottom:962.790000px;}
.yf1{bottom:965.310000px;}
.ya6{bottom:968.820000px;}
.y10e{bottom:970.530000px;}
.y4{bottom:973.950000px;}
.ycb{bottom:976.560000px;}
.y80{bottom:979.530000px;}
.y54{bottom:980.340000px;}
.y2e{bottom:981.240000px;}
.ya5{bottom:986.370000px;}
.y10d{bottom:988.170000px;}
.yf0{bottom:992.670000px;}
.y7f{bottom:997.080000px;}
.y53{bottom:997.890000px;}
.ya4{bottom:1004.820000px;}
.yc9{bottom:1009.590000px;}
.y3{bottom:1012.230000px;}
.y7e{bottom:1014.660000px;}
.y10c{bottom:1015.110000px;}
.y52{bottom:1015.470000px;}
.yef{bottom:1020.060000px;}
.ya3{bottom:1022.400000px;}
.y2d{bottom:1029.960000px;}
.y7d{bottom:1033.110000px;}
.yc8{bottom:1036.890000px;}
.ya2{bottom:1040.850000px;}
.y51{bottom:1042.920000px;}
.y7c{bottom:1050.750000px;}
.ya1{bottom:1059.300000px;}
.y10b{bottom:1063.350000px;}
.yc7{bottom:1064.250000px;}
.y2c{bottom:1065.510000px;}
.y7b{bottom:1068.300000px;}
.yee{bottom:1068.750000px;}
.ya0{bottom:1076.850000px;}
.y50{bottom:1078.560000px;}
.y2b{bottom:1083.150000px;}
.y10a{bottom:1090.260000px;}
.yc6{bottom:1091.610000px;}
.y9f{bottom:1095.300000px;}
.y4f{bottom:1096.110000px;}
.y2a{bottom:1100.700000px;}
.yed{bottom:1104.300000px;}
.y7a{bottom:1104.750000px;}
.y9e{bottom:1112.850000px;}
.y4e{bottom:1113.750000px;}
.yec{bottom:1121.850000px;}
.y29{bottom:1127.610000px;}
.yeb{bottom:1139.400000px;}
.y4d{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hb{height:26.550000px;}
.h12{height:26.580000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h13{height:44.190000px;}
.h14{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h11{height:58.431445px;}
.h10{height:59.973223px;}
.h9{height:60.960938px;}
.he{height:61.793886px;}
.hd{height:62.585859px;}
.h16{height:66.240000px;}
.h15{height:66.270000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h17{height:74.953125px;}
.hf{height:222.780000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1d{width:32.760000px;}
.w1c{width:32.850000px;}
.w1e{width:32.880000px;}
.w29{width:35.280000px;}
.wd{width:44.820000px;}
.w23{width:45.360000px;}
.w1f{width:46.800000px;}
.w27{width:48.600000px;}
.w13{width:48.690000px;}
.w15{width:50.400000px;}
.w3{width:50.940000px;}
.w8{width:52.950000px;}
.wa{width:73.080000px;}
.wb{width:73.560000px;}
.w17{width:79.740000px;}
.wc{width:80.280000px;}
.w1a{width:81.180000px;}
.w18{width:81.270000px;}
.w19{width:86.610000px;}
.w24{width:99.900000px;}
.w20{width:100.350000px;}
.w1b{width:100.710000px;}
.w16{width:100.890000px;}
.w28{width:101.970000px;}
.w22{width:106.110000px;}
.w2a{width:115.770000px;}
.w10{width:119.910000px;}
.w11{width:128.160000px;}
.wf{width:135.540000px;}
.w4{width:151.380000px;}
.w21{width:154.470000px;}
.we{width:155.550000px;}
.w14{width:155.640000px;}
.w26{width:166.050000px;}
.w12{width:168.030000px;}
.w25{width:176.790000px;}
.w9{width:181.530000px;}
.w5{width:285.150000px;}
.w6{width:378.210000px;}
.w7{width:756.420000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x7{left:95.039987px;}
.x3a{left:111.239987px;}
.x17{left:114.300000px;}
.x8{left:122.039987px;}
.x10{left:133.470000px;}
.xc{left:158.880000px;}
.x1e{left:164.640000px;}
.x11{left:187.140000px;}
.x2f{left:201.450000px;}
.x2{left:202.799987px;}
.x1f{left:214.050000px;}
.x35{left:226.560000px;}
.x2b{left:241.680000px;}
.xd{left:242.849987px;}
.x30{left:247.530000px;}
.x5{left:253.830000px;}
.x34{left:255.449987px;}
.x18{left:270.570000px;}
.x36{left:275.970000px;}
.xf{left:287.579987px;}
.x2c{left:289.290000px;}
.x20{left:315.660000px;}
.x1b{left:318.540000px;}
.xb{left:319.620000px;}
.x25{left:337.170000px;}
.x9{left:339.870000px;}
.x31{left:348.240000px;}
.x1c{left:367.950000px;}
.x12{left:369.390000px;}
.x37{left:378.660000px;}
.x2d{left:390.360000px;}
.x21{left:396.120000px;}
.x6{left:405.930000px;}
.x38{left:414.660000px;}
.x26{left:438.600000px;}
.x13{left:443.190000px;}
.xa{left:446.250000px;}
.x27{left:472.170000px;}
.x22{left:478.110000px;}
.x28{left:505.650000px;}
.x14{left:517.470000px;}
.x1d{left:524.310000px;}
.x32{left:525.750000px;}
.x19{left:527.460000px;}
.x39{left:531.150000px;}
.x29{left:539.250000px;}
.x2e{left:545.550000px;}
.x23{left:565.440000px;}
.x2a{left:572.730000px;}
.x15{left:598.470000px;}
.x33{left:613.139987px;}
.x24{left:647.430000px;}
.x1a{left:656.430000px;}
.x16{left:679.470000px;}
.xe{left:690.809987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-8.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.440000pt;}
.v2{vertical-align:13.440000pt;}
.ls28{letter-spacing:-2.544000pt;}
.ls30{letter-spacing:-1.498667pt;}
.ls16{letter-spacing:-1.445333pt;}
.ls2f{letter-spacing:-1.408000pt;}
.ls2d{letter-spacing:-1.285333pt;}
.ls31{letter-spacing:-0.460267pt;}
.ls24{letter-spacing:-0.333333pt;}
.ls18{letter-spacing:-0.327467pt;}
.ls2c{letter-spacing:-0.217067pt;}
.ls15{letter-spacing:-0.216533pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls25{letter-spacing:-0.158933pt;}
.ls1f{letter-spacing:-0.142933pt;}
.lsb{letter-spacing:-0.136533pt;}
.ls26{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls2a{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls8{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.009920pt;}
.ls19{letter-spacing:-0.007360pt;}
.ls27{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls29{letter-spacing:0.017920pt;}
.ls1c{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls17{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.065920pt;}
.ls1d{letter-spacing:0.066133pt;}
.ls2b{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls33{letter-spacing:0.087467pt;}
.ls32{letter-spacing:0.096533pt;}
.ls2e{letter-spacing:0.102933pt;}
.ls21{letter-spacing:0.103467pt;}
.ls14{letter-spacing:0.105067pt;}
.ls11{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls1e{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:3.283200pt;}
.ls1b{letter-spacing:14.163200pt;}
.ls35{letter-spacing:42.423680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:57.143680pt;}
.ls34{letter-spacing:71.863680pt;}
.ws13{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.wsa{word-spacing:-11.861867pt;}
.ws17{word-spacing:-11.860267pt;}
.ws22{word-spacing:-11.859733pt;}
.ws26{word-spacing:-11.853333pt;}
.ws18{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.804160pt;}
.wse{word-spacing:-11.800320pt;}
.ws1e{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1c{word-spacing:-11.751360pt;}
.ws10{word-spacing:-11.749440pt;}
.ws16{word-spacing:-11.746880pt;}
.ws15{word-spacing:-11.700267pt;}
.ws1f{word-spacing:-11.645333pt;}
.ws1b{word-spacing:-11.630933pt;}
.ws5{word-spacing:-11.620267pt;}
.ws14{word-spacing:-11.613867pt;}
.ws1a{word-spacing:-11.597867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsb{word-spacing:-11.540267pt;}
.ws20{word-spacing:-11.539733pt;}
.wsf{word-spacing:-11.429333pt;}
.ws19{word-spacing:-11.423467pt;}
.ws25{word-spacing:-11.296533pt;}
.ws21{word-spacing:-10.471467pt;}
.ws23{word-spacing:-10.348800pt;}
.wsc{word-spacing:-10.311467pt;}
.ws24{word-spacing:-10.258133pt;}
.ws1d{word-spacing:-9.212800pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._e{margin-left:-4.495040pt;}
._a{margin-left:-3.582293pt;}
._6{margin-left:-2.128213pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._4{width:2.184011pt;}
._c{width:3.591973pt;}
._7{width:4.709347pt;}
._3{width:5.664533pt;}
._5{width:6.947200pt;}
._b{width:7.855466pt;}
._8{width:8.764267pt;}
._2{width:10.365354pt;}
._9{width:12.954453pt;}
._d{width:14.000320pt;}
._12{width:15.017600pt;}
._f{width:18.417912pt;}
._10{width:26.659520pt;}
._11{width:50.981760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.960000pt;}
.y46{bottom:4.000000pt;}
.y47{bottom:6.000000pt;}
.y2f{bottom:6.960000pt;}
.yca{bottom:6.986667pt;}
.y32{bottom:7.040000pt;}
.yb6{bottom:22.640000pt;}
.ybc{bottom:26.560000pt;}
.yb8{bottom:26.640000pt;}
.ybb{bottom:42.240000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yea{bottom:103.786667pt;}
.y9d{bottom:106.106667pt;}
.y109{bottom:108.906667pt;}
.y79{bottom:111.386667pt;}
.ye9{bottom:119.386667pt;}
.y4c{bottom:124.506667pt;}
.y9c{bottom:137.706667pt;}
.y108{bottom:140.186667pt;}
.y78{bottom:142.986667pt;}
.ye8{bottom:143.706667pt;}
.y9b{bottom:151.066667pt;}
.y107{bottom:155.786667pt;}
.y4b{bottom:156.186667pt;}
.y77{bottom:160.026667pt;}
.y26{bottom:162.586667pt;}
.yc5{bottom:167.226667pt;}
.ye7{bottom:167.946667pt;}
.y106{bottom:171.466667pt;}
.y9a{bottom:175.306667pt;}
.y76{bottom:175.626667pt;}
.y25{bottom:178.186667pt;}
.yc4{bottom:182.826667pt;}
.y105{bottom:187.066667pt;}
.y4a{bottom:187.786667pt;}
.y75{bottom:191.306667pt;}
.ye6{bottom:192.266667pt;}
.y24{bottom:193.866667pt;}
.yc3{bottom:198.506667pt;}
.y99{bottom:199.626667pt;}
.y48{bottom:200.426667pt;}
.y74{bottom:206.906667pt;}
.y104{bottom:210.986667pt;}
.yc2{bottom:214.106667pt;}
.ye5{bottom:216.586667pt;}
.y73{bottom:222.506667pt;}
.y98{bottom:223.946667pt;}
.y45{bottom:224.026667pt;}
.y23{bottom:225.466667pt;}
.yc1{bottom:229.706667pt;}
.y72{bottom:238.186667pt;}
.ye4{bottom:240.906667pt;}
.y22{bottom:241.066667pt;}
.yc0{bottom:245.386667pt;}
.y97{bottom:248.266667pt;}
.y103{bottom:251.546667pt;}
.y21{bottom:256.746667pt;}
.ybf{bottom:260.986667pt;}
.y71{bottom:269.786667pt;}
.y20{bottom:272.346667pt;}
.y96{bottom:272.506667pt;}
.y102{bottom:275.866667pt;}
.ybe{bottom:276.586667pt;}
.ye3{bottom:284.186667pt;}
.y70{bottom:285.466667pt;}
.y1f{bottom:288.026667pt;}
.y95{bottom:296.826667pt;}
.y101{bottom:300.186667pt;}
.y6f{bottom:301.066667pt;}
.y1e{bottom:303.626667pt;}
.ybd{bottom:306.666667pt;}
.ye2{bottom:315.786667pt;}
.y6e{bottom:316.666667pt;}
.y1d{bottom:319.226667pt;}
.y94{bottom:321.146667pt;}
.y100{bottom:324.426667pt;}
.ye1{bottom:331.466667pt;}
.y1c{bottom:334.906667pt;}
.y93{bottom:345.386667pt;}
.ye0{bottom:347.066667pt;}
.y6d{bottom:348.346667pt;}
.yff{bottom:348.746667pt;}
.y1b{bottom:350.506667pt;}
.ydf{bottom:362.666667pt;}
.y6c{bottom:363.946667pt;}
.y1a{bottom:366.186667pt;}
.yba{bottom:366.266667pt;}
.y92{bottom:369.706667pt;}
.yfe{bottom:373.066667pt;}
.yde{bottom:378.346667pt;}
.y6b{bottom:379.626667pt;}
.y19{bottom:381.786667pt;}
.y126{bottom:383.546667pt;}
.ydd{bottom:393.946667pt;}
.y91{bottom:394.026667pt;}
.y6a{bottom:395.226667pt;}
.y18{bottom:397.386667pt;}
.y125{bottom:399.146667pt;}
.y17{bottom:413.066667pt;}
.yfd{bottom:416.346667pt;}
.y90{bottom:418.373333pt;}
.y124{bottom:422.853333pt;}
.ydc{bottom:423.253333pt;}
.yb9{bottom:425.813333pt;}
.y69{bottom:428.213333pt;}
.y16{bottom:437.013333pt;}
.y123{bottom:438.453333pt;}
.y44{bottom:441.093333pt;}
.ydb{bottom:447.573333pt;}
.yfc{bottom:447.973333pt;}
.y43{bottom:456.693333pt;}
.y68{bottom:459.813333pt;}
.y8f{bottom:461.653333pt;}
.y122{bottom:462.133333pt;}
.yfb{bottom:463.653333pt;}
.yb7{bottom:469.733333pt;}
.yda{bottom:471.893333pt;}
.y42{bottom:472.373333pt;}
.y67{bottom:475.493333pt;}
.y121{bottom:477.733333pt;}
.yfa{bottom:479.253333pt;}
.y15{bottom:480.213333pt;}
.y41{bottom:487.973333pt;}
.y66{bottom:491.093333pt;}
.y8e{bottom:493.253333pt;}
.yf9{bottom:494.933333pt;}
.yd9{bottom:496.213333pt;}
.y120{bottom:501.333333pt;}
.y40{bottom:504.373333pt;}
.yf8{bottom:510.533333pt;}
.y14{bottom:513.093333pt;}
.yb5{bottom:513.653333pt;}
.y65{bottom:514.773333pt;}
.y11f{bottom:517.013333pt;}
.y3f{bottom:519.973333pt;}
.yd8{bottom:520.453333pt;}
.y8d{bottom:521.893333pt;}
.yf7{bottom:526.133333pt;}
.y13{bottom:528.693333pt;}
.y3e{bottom:535.573333pt;}
.y11e{bottom:540.613333pt;}
.y12{bottom:544.373333pt;}
.y64{bottom:546.373333pt;}
.y3d{bottom:551.173333pt;}
.y11d{bottom:556.293333pt;}
.yf6{bottom:558.533333pt;}
.y11{bottom:559.973333pt;}
.y63{bottom:561.973333pt;}
.yd7{bottom:563.733333pt;}
.yb4{bottom:572.613333pt;}
.y3c{bottom:575.573333pt;}
.y10{bottom:575.653333pt;}
.y11c{bottom:579.893333pt;}
.y62{bottom:586.373333pt;}
.yf{bottom:591.253333pt;}
.yd6{bottom:595.413333pt;}
.yf5{bottom:602.533333pt;}
.y11b{bottom:603.493333pt;}
.yb3{bottom:604.213333pt;}
.y3b{bottom:604.933333pt;}
.ye{bottom:606.853333pt;}
.yd5{bottom:611.013333pt;}
.y61{bottom:617.973333pt;}
.y11a{bottom:619.173333pt;}
.yb2{bottom:619.893333pt;}
.yd{bottom:622.533333pt;}
.yd4{bottom:626.693333pt;}
.y3a{bottom:629.173333pt;}
.y60{bottom:633.573333pt;}
.yb1{bottom:635.493333pt;}
.yc{bottom:638.133333pt;}
.y119{bottom:642.773333pt;}
.y39{bottom:653.493333pt;}
.yd3{bottom:655.973333pt;}
.y5f{bottom:657.973333pt;}
.yb0{bottom:659.093333pt;}
.yb{bottom:662.053333pt;}
.y118{bottom:666.373333pt;}
.y38{bottom:677.813333pt;}
.yd2{bottom:680.293333pt;}
.y8c{bottom:680.933333pt;}
.y117{bottom:682.053333pt;}
.y5e{bottom:689.653333pt;}
.yaf{bottom:691.013333pt;}
.y8b{bottom:696.533333pt;}
.y37{bottom:702.133333pt;}
.yd1{bottom:704.533333pt;}
.ya{bottom:705.013333pt;}
.y5d{bottom:705.253333pt;}
.y116{bottom:705.653333pt;}
.y8a{bottom:712.133333pt;}
.y5c{bottom:720.853333pt;}
.y115{bottom:721.333333pt;}
.y36{bottom:726.373333pt;}
.y89{bottom:728.533333pt;}
.yd0{bottom:728.853333pt;}
.yae{bottom:733.973333pt;}
.y9{bottom:736.613333pt;}
.y88{bottom:744.133333pt;}
.y114{bottom:744.933333pt;}
.y5b{bottom:745.253333pt;}
.yad{bottom:749.573333pt;}
.y35{bottom:750.693333pt;}
.ycf{bottom:753.173333pt;}
.y87{bottom:759.813333pt;}
.y113{bottom:760.533333pt;}
.yac{bottom:765.173333pt;}
.y8{bottom:768.453333pt;}
.y34{bottom:775.013333pt;}
.y86{bottom:775.413333pt;}
.y112{bottom:776.213333pt;}
.y5a{bottom:776.853333pt;}
.yab{bottom:781.573333pt;}
.yf4{bottom:785.173333pt;}
.y85{bottom:791.813333pt;}
.y59{bottom:792.533333pt;}
.yce{bottom:796.453333pt;}
.yaa{bottom:797.173333pt;}
.y33{bottom:799.333333pt;}
.y111{bottom:799.813333pt;}
.y7{bottom:800.453333pt;}
.y84{bottom:807.413333pt;}
.y58{bottom:808.133333pt;}
.yf3{bottom:809.493333pt;}
.ya9{bottom:813.573333pt;}
.y6{bottom:816.453333pt;}
.y83{bottom:823.013333pt;}
.y110{bottom:823.493333pt;}
.y31{bottom:823.573333pt;}
.y57{bottom:823.733333pt;}
.ycd{bottom:828.053333pt;}
.ya8{bottom:829.173333pt;}
.yf2{bottom:833.733333pt;}
.y82{bottom:838.613333pt;}
.y10f{bottom:839.093333pt;}
.y56{bottom:840.133333pt;}
.ycc{bottom:843.653333pt;}
.ya7{bottom:844.773333pt;}
.y30{bottom:847.893333pt;}
.y5{bottom:848.533333pt;}
.y81{bottom:855.013333pt;}
.y55{bottom:855.813333pt;}
.yf1{bottom:858.053333pt;}
.ya6{bottom:861.173333pt;}
.y10e{bottom:862.693333pt;}
.y4{bottom:865.733333pt;}
.ycb{bottom:868.053333pt;}
.y80{bottom:870.693333pt;}
.y54{bottom:871.413333pt;}
.y2e{bottom:872.213333pt;}
.ya5{bottom:876.773333pt;}
.y10d{bottom:878.373333pt;}
.yf0{bottom:882.373333pt;}
.y7f{bottom:886.293333pt;}
.y53{bottom:887.013333pt;}
.ya4{bottom:893.173333pt;}
.yc9{bottom:897.413333pt;}
.y3{bottom:899.760000pt;}
.y7e{bottom:901.920000pt;}
.y10c{bottom:902.320000pt;}
.y52{bottom:902.640000pt;}
.yef{bottom:906.720000pt;}
.ya3{bottom:908.800000pt;}
.y2d{bottom:915.520000pt;}
.y7d{bottom:918.320000pt;}
.yc8{bottom:921.680000pt;}
.ya2{bottom:925.200000pt;}
.y51{bottom:927.040000pt;}
.y7c{bottom:934.000000pt;}
.ya1{bottom:941.600000pt;}
.y10b{bottom:945.200000pt;}
.yc7{bottom:946.000000pt;}
.y2c{bottom:947.120000pt;}
.y7b{bottom:949.600000pt;}
.yee{bottom:950.000000pt;}
.ya0{bottom:957.200000pt;}
.y50{bottom:958.720000pt;}
.y2b{bottom:962.800000pt;}
.y10a{bottom:969.120000pt;}
.yc6{bottom:970.320000pt;}
.y9f{bottom:973.600000pt;}
.y4f{bottom:974.320000pt;}
.y2a{bottom:978.400000pt;}
.yed{bottom:981.600000pt;}
.y7a{bottom:982.000000pt;}
.y9e{bottom:989.200000pt;}
.y4e{bottom:990.000000pt;}
.yec{bottom:997.200000pt;}
.y29{bottom:1002.320000pt;}
.yeb{bottom:1012.800000pt;}
.y4d{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.h12{height:23.626667pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h13{height:39.280000pt;}
.h14{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h11{height:51.939062pt;}
.h10{height:53.309531pt;}
.h9{height:54.187500pt;}
.he{height:54.927899pt;}
.hd{height:55.631875pt;}
.h16{height:58.880000pt;}
.h15{height:58.906667pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h17{height:66.625000pt;}
.hf{height:198.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1d{width:29.120000pt;}
.w1c{width:29.200000pt;}
.w1e{width:29.226667pt;}
.w29{width:31.360000pt;}
.wd{width:39.840000pt;}
.w23{width:40.320000pt;}
.w1f{width:41.600000pt;}
.w27{width:43.200000pt;}
.w13{width:43.280000pt;}
.w15{width:44.800000pt;}
.w3{width:45.280000pt;}
.w8{width:47.066667pt;}
.wa{width:64.960000pt;}
.wb{width:65.386667pt;}
.w17{width:70.880000pt;}
.wc{width:71.360000pt;}
.w1a{width:72.160000pt;}
.w18{width:72.240000pt;}
.w19{width:76.986667pt;}
.w24{width:88.800000pt;}
.w20{width:89.200000pt;}
.w1b{width:89.520000pt;}
.w16{width:89.680000pt;}
.w28{width:90.640000pt;}
.w22{width:94.320000pt;}
.w2a{width:102.906667pt;}
.w10{width:106.586667pt;}
.w11{width:113.920000pt;}
.wf{width:120.480000pt;}
.w4{width:134.560000pt;}
.w21{width:137.306667pt;}
.we{width:138.266667pt;}
.w14{width:138.346667pt;}
.w26{width:147.600000pt;}
.w12{width:149.360000pt;}
.w25{width:157.146667pt;}
.w9{width:161.360000pt;}
.w5{width:253.466667pt;}
.w6{width:336.186667pt;}
.w7{width:672.373333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x7{left:84.479988pt;}
.x3a{left:98.879988pt;}
.x17{left:101.600000pt;}
.x8{left:108.479988pt;}
.x10{left:118.640000pt;}
.xc{left:141.226667pt;}
.x1e{left:146.346667pt;}
.x11{left:166.346667pt;}
.x2f{left:179.066667pt;}
.x2{left:180.266655pt;}
.x1f{left:190.266667pt;}
.x35{left:201.386667pt;}
.x2b{left:214.826667pt;}
.xd{left:215.866655pt;}
.x30{left:220.026667pt;}
.x5{left:225.626667pt;}
.x34{left:227.066655pt;}
.x18{left:240.506667pt;}
.x36{left:245.306667pt;}
.xf{left:255.626655pt;}
.x2c{left:257.146667pt;}
.x20{left:280.586667pt;}
.x1b{left:283.146667pt;}
.xb{left:284.106667pt;}
.x25{left:299.706667pt;}
.x9{left:302.106667pt;}
.x31{left:309.546667pt;}
.x1c{left:327.066667pt;}
.x12{left:328.346667pt;}
.x37{left:336.586667pt;}
.x2d{left:346.986667pt;}
.x21{left:352.106667pt;}
.x6{left:360.826667pt;}
.x38{left:368.586667pt;}
.x26{left:389.866667pt;}
.x13{left:393.946667pt;}
.xa{left:396.666667pt;}
.x27{left:419.706667pt;}
.x22{left:424.986667pt;}
.x28{left:449.466667pt;}
.x14{left:459.973333pt;}
.x1d{left:466.053333pt;}
.x32{left:467.333333pt;}
.x19{left:468.853333pt;}
.x39{left:472.133333pt;}
.x29{left:479.333333pt;}
.x2e{left:484.933333pt;}
.x23{left:502.613333pt;}
.x2a{left:509.093333pt;}
.x15{left:531.973333pt;}
.x33{left:545.013322pt;}
.x24{left:575.493333pt;}
.x1a{left:583.493333pt;}
.x16{left:603.973333pt;}
.xe{left:614.053322pt;}
.x3{left:704.053322pt;}
}




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