
    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_94253b456f5ad7e57011b738.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b13da7c8120a010931ecba64.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988281;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_3301bbc8f0317bd13fa67124.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_56d9620f8a00396203460a29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_cab8635961f2df0fc07ef55f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959961;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_e4b66ece94d928a863c79cfd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_72a34e7c8d63ae27b07eaad0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_81a7dedc912e69ebce0a9632.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.833984;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_75603b10c1ede6385aaf8f09.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_02cbfe250d5a941a07cb89ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.988281;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls2c{letter-spacing:-1.428000px;}
.lse{letter-spacing:-1.068000px;}
.lsc{letter-spacing:-0.858000px;}
.ls2d{letter-spacing:-0.714000px;}
.ls22{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.642000px;}
.ls21{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.535800px;}
.ls7{letter-spacing:-0.348600px;}
.ls1e{letter-spacing:-0.345600px;}
.ls19{letter-spacing:-0.302400px;}
.ls10{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.214800px;}
.ls23{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.187200px;}
.lsd{letter-spacing:-0.172800px;}
.ls2e{letter-spacing:-0.147000px;}
.lsf{letter-spacing:-0.138000px;}
.ls6{letter-spacing:-0.135600px;}
.ls8{letter-spacing:-0.086400px;}
.ls1d{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.006480px;}
.ls18{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls2b{letter-spacing:0.046080px;}
.ls1b{letter-spacing:0.118080px;}
.ls9{letter-spacing:0.118200px;}
.ls14{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.184200px;}
.ls12{letter-spacing:0.222000px;}
.ls30{letter-spacing:0.230400px;}
.ls29{letter-spacing:0.295680px;}
.ls1f{letter-spacing:0.328320px;}
.ls2{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.371520px;}
.ls15{letter-spacing:0.432000px;}
.ls20{letter-spacing:0.448320px;}
.ls31{letter-spacing:0.457200px;}
.ls16{letter-spacing:0.573000px;}
.ls32{letter-spacing:0.726000px;}
.ls5{letter-spacing:0.840000px;}
.ls2f{letter-spacing:1.446480px;}
.ls4{letter-spacing:6.851520px;}
.ls2a{letter-spacing:8.586720px;}
.ls1c{letter-spacing:36.371520px;}
.ls27{letter-spacing:41.706720px;}
.ls28{letter-spacing:44.586720px;}
.ls1a{letter-spacing:49.961280px;}
.ls3{letter-spacing:845.741280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-19.188480px;}
.wse{word-spacing:-18.780480px;}
.wsc{word-spacing:-18.570480px;}
.ws2{word-spacing:-18.547200px;}
.ws19{word-spacing:-18.532680px;}
.wsd{word-spacing:-18.492480px;}
.ws1b{word-spacing:-18.466680px;}
.ws1d{word-spacing:-18.394560px;}
.ws1{word-spacing:-18.371520px;}
.ws6{word-spacing:-18.348480px;}
.ws4{word-spacing:-18.262080px;}
.ws8{word-spacing:-18.212880px;}
.ws9{word-spacing:-18.210480px;}
.ws7{word-spacing:-18.161280px;}
.wsa{word-spacing:-18.060480px;}
.wsb{word-spacing:-17.772480px;}
.ws1c{word-spacing:-17.748480px;}
.ws5{word-spacing:-17.706480px;}
.ws16{word-spacing:-17.664480px;}
.ws1a{word-spacing:-17.490480px;}
.ws21{word-spacing:-17.010720px;}
.ws20{word-spacing:-16.783920px;}
.wsf{word-spacing:-16.732800px;}
.ws17{word-spacing:-16.566480px;}
.ws10{word-spacing:-16.553520px;}
.ws14{word-spacing:-16.430400px;}
.ws1f{word-spacing:-16.406520px;}
.ws15{word-spacing:-16.387200px;}
.ws18{word-spacing:-16.355520px;}
.ws11{word-spacing:-16.251120px;}
.ws1e{word-spacing:-15.125520px;}
.ws13{word-spacing:-11.567520px;}
.ws12{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
._1c{margin-left:-2.341920px;}
._1{margin-left:-1.258560px;}
._2{width:1.114560px;}
._6{width:2.433600px;}
._8{width:4.040640px;}
._9{width:5.735040px;}
._5{width:7.091040px;}
._4{width:8.147520px;}
._c{width:10.002240px;}
._d{width:11.260800px;}
._a{width:12.718080px;}
._b{width:13.988160px;}
._19{width:15.157440px;}
._12{width:16.228800px;}
._13{width:17.265120px;}
._3{width:18.933120px;}
._2d{width:19.934880px;}
._14{width:20.945280px;}
._e{width:22.587840px;}
._11{width:23.675520px;}
._7{width:24.707520px;}
._16{width:26.661840px;}
._17{width:28.483200px;}
._f{width:29.577600px;}
._10{width:31.164960px;}
._31{width:32.351040px;}
._1a{width:33.384960px;}
._15{width:34.763520px;}
._18{width:36.324480px;}
._1b{width:37.842720px;}
._30{width:40.690080px;}
._2e{width:43.519680px;}
._2f{width:44.536800px;}
._25{width:45.687360px;}
._1f{width:48.263040px;}
._1d{width:51.269760px;}
._1e{width:52.960800px;}
._23{width:55.144800px;}
._0{width:66.611520px;}
._27{width:69.560640px;}
._26{width:70.636320px;}
._20{width:80.078400px;}
._22{width:85.158000px;}
._24{width:87.369120px;}
._2a{width:89.221680px;}
._2c{width:97.206480px;}
._28{width:102.966480px;}
._29{width:104.340960px;}
._21{width:109.620720px;}
._2b{width:173.452800px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(54,96,145);}
.fc3{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.240000px;}
.yb1{bottom:3.285000px;}
.yb5{bottom:3.420000px;}
.y28{bottom:3.600000px;}
.yaa{bottom:21.600000px;}
.yb8{bottom:21.630000px;}
.yb0{bottom:21.645000px;}
.yae{bottom:21.780000px;}
.y11f{bottom:21.825000px;}
.ya9{bottom:39.960000px;}
.yad{bottom:40.140000px;}
.y26{bottom:56.700000px;}
.yac{bottom:58.500000px;}
.y5{bottom:66.525004px;}
.y25{bottom:75.780000px;}
.y4{bottom:97.125005px;}
.y15a{bottom:109.620000px;}
.y7e{bottom:109.980000px;}
.yf1{bottom:111.060000px;}
.ybd{bottom:118.440000px;}
.yd0{bottom:125.820000px;}
.y11e{bottom:126.900000px;}
.y159{bottom:127.980000px;}
.y7d{bottom:130.320000px;}
.yf0{bottom:131.400000px;}
.ybc{bottom:138.600000px;}
.y22{bottom:139.264499px;}
.ycf{bottom:145.980000px;}
.y158{bottom:146.520000px;}
.y11d{bottom:147.060000px;}
.ya4{bottom:148.680000px;}
.y7c{bottom:150.480000px;}
.yef{bottom:151.560000px;}
.ybb{bottom:158.940000px;}
.y157{bottom:164.880000px;}
.yce{bottom:166.320000px;}
.y11c{bottom:167.220000px;}
.ya3{bottom:168.840000px;}
.y7b{bottom:170.820000px;}
.yee{bottom:171.720000px;}
.yba{bottom:179.100000px;}
.y156{bottom:183.240000px;}
.ycd{bottom:186.480000px;}
.y11b{bottom:187.560000px;}
.ya2{bottom:189.180000px;}
.y7a{bottom:190.980000px;}
.yed{bottom:192.060000px;}
.y13d{bottom:193.680000px;}
.y19{bottom:196.933500px;}
.yb9{bottom:198.900000px;}
.y155{bottom:201.600000px;}
.ycc{bottom:206.640000px;}
.y11a{bottom:207.720000px;}
.ya1{bottom:209.340000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y79{bottom:211.140000px;}
.yec{bottom:212.220000px;}
.yb7{bottom:215.640000px;}
.y154{bottom:219.960000px;}
.y13c{bottom:221.400000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y119{bottom:227.550000px;}
.ycb{bottom:228.630000px;}
.ya0{bottom:229.710000px;}
.y78{bottom:231.510000px;}
.yeb{bottom:232.410000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y153{bottom:238.350000px;}
.y13b{bottom:241.770000px;}
.y118{bottom:245.910000px;}
.y9f{bottom:249.870000px;}
.y77{bottom:251.670000px;}
.yb6{bottom:252.390000px;}
.yea{bottom:252.750000px;}
.yca{bottom:256.350000px;}
.y152{bottom:256.890000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y13a{bottom:261.930000px;}
.y117{bottom:264.450000px;}
.y9e{bottom:270.030000px;}
.y76{bottom:272.010000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ye9{bottom:272.910000px;}
.y151{bottom:275.250000px;}
.yc9{bottom:276.690000px;}
.y116{bottom:281.010000px;}
.y139{bottom:282.090000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yb4{bottom:289.110000px;}
.y9d{bottom:290.370000px;}
.y75{bottom:292.170000px;}
.ye8{bottom:293.250000px;}
.y150{bottom:293.610000px;}
.yc8{bottom:296.850000px;}
.y115{bottom:299.370000px;}
.y138{bottom:302.430000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y9c{bottom:310.530000px;}
.y14f{bottom:311.970000px;}
.y74{bottom:312.330000px;}
.ye7{bottom:313.410000px;}
.yc7{bottom:317.010000px;}
.y114{bottom:317.730000px;}
.y137{bottom:322.590000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y14e{bottom:330.330000px;}
.y9b{bottom:330.870000px;}
.ye6{bottom:333.570000px;}
.y73{bottom:334.290000px;}
.y113{bottom:336.090000px;}
.yc6{bottom:337.350000px;}
.y136{bottom:342.930000px;}
.y10{bottom:348.133500px;}
.y14d{bottom:348.870000px;}
.y9a{bottom:351.030000px;}
.ye5{bottom:353.910000px;}
.y112{bottom:354.630000px;}
.yc5{bottom:357.150000px;}
.y72{bottom:362.010000px;}
.yb3{bottom:362.730000px;}
.y135{bottom:363.090000px;}
.y14c{bottom:367.230000px;}
.y99{bottom:371.190000px;}
.y111{bottom:372.990000px;}
.ye4{bottom:374.070000px;}
.yc4{bottom:375.510000px;}
.y71{bottom:382.350000px;}
.y134{bottom:383.250000px;}
.y14b{bottom:385.590000px;}
.yf{bottom:386.785499px;}
.y110{bottom:391.350000px;}
.y98{bottom:391.530000px;}
.yc3{bottom:392.250000px;}
.ye3{bottom:394.410000px;}
.y70{bottom:402.510000px;}
.y133{bottom:403.590000px;}
.y14a{bottom:403.950000px;}
.ye{bottom:408.044999px;}
.yc2{bottom:410.610000px;}
.y10f{bottom:411.150000px;}
.y97{bottom:411.690000px;}
.ye2{bottom:414.570000px;}
.yb2{bottom:417.990000px;}
.y149{bottom:422.310000px;}
.y6f{bottom:422.670000px;}
.y132{bottom:423.750000px;}
.yc1{bottom:428.970000px;}
.y96{bottom:432.030000px;}
.ye1{bottom:434.730000px;}
.y4d{bottom:437.250000px;}
.y148{bottom:440.670000px;}
.y6e{bottom:443.010000px;}
.y131{bottom:443.910000px;}
.yc0{bottom:448.770000px;}
.y95{bottom:452.190000px;}
.y10e{bottom:453.270000px;}
.yaf{bottom:454.710000px;}
.ye0{bottom:455.070000px;}
.y147{bottom:459.255000px;}
.y6d{bottom:463.215000px;}
.y130{bottom:464.295000px;}
.y4c{bottom:465.015000px;}
.y94{bottom:472.395000px;}
.y10d{bottom:473.475000px;}
.ydf{bottom:475.275000px;}
.y146{bottom:477.615000px;}
.y6c{bottom:483.555000px;}
.y12f{bottom:484.455000px;}
.yd{bottom:484.864502px;}
.y4b{bottom:485.355000px;}
.yab{bottom:491.475000px;}
.y93{bottom:492.735000px;}
.y10c{bottom:493.635000px;}
.yde{bottom:495.615000px;}
.y145{bottom:495.975000px;}
.yc{bottom:502.864502px;}
.y6b{bottom:503.715000px;}
.y12e{bottom:504.795000px;}
.y4a{bottom:505.506006px;}
.y49{bottom:505.515000px;}
.y92{bottom:512.895000px;}
.y10b{bottom:513.975000px;}
.y144{bottom:514.335000px;}
.ydd{bottom:515.775000px;}
.yb{bottom:520.864502px;}
.y48{bottom:523.695000px;}
.y6a{bottom:523.875000px;}
.y12d{bottom:524.955000px;}
.y143{bottom:532.695000px;}
.y91{bottom:533.055000px;}
.y10a{bottom:534.135000px;}
.y47{bottom:535.035000px;}
.ydc{bottom:535.935000px;}
.y179{bottom:538.635000px;}
.ya{bottom:538.864499px;}
.y69{bottom:544.215000px;}
.y12c{bottom:545.115000px;}
.y142{bottom:551.055000px;}
.y90{bottom:553.395000px;}
.y109{bottom:554.475000px;}
.y46{bottom:555.195000px;}
.ydb{bottom:555.915000px;}
.y9{bottom:556.864499px;}
.y178{bottom:558.975000px;}
.y68{bottom:564.375000px;}
.ya8{bottom:565.095000px;}
.y12b{bottom:565.455000px;}
.y141{bottom:569.595000px;}
.yda{bottom:572.475000px;}
.y8f{bottom:573.555000px;}
.y108{bottom:574.635000px;}
.y45{bottom:575.355000px;}
.y177{bottom:579.135000px;}
.y67{bottom:584.715000px;}
.y12a{bottom:585.615000px;}
.y140{bottom:587.955000px;}
.y44{bottom:593.715000px;}
.y8e{bottom:593.895000px;}
.y107{bottom:594.795000px;}
.y176{bottom:599.295000px;}
.y43{bottom:604.875000px;}
.y129{bottom:605.955000px;}
.y13f{bottom:606.315000px;}
.yd9{bottom:609.195000px;}
.y8d{bottom:614.055000px;}
.y106{bottom:615.135000px;}
.y175{bottom:619.635000px;}
.ya6{bottom:621.795000px;}
.y42{bottom:625.035000px;}
.y128{bottom:626.115000px;}
.y13e{bottom:626.655000px;}
.yd8{bottom:627.555000px;}
.y8c{bottom:634.215000px;}
.y105{bottom:635.295000px;}
.y174{bottom:639.795000px;}
.y41{bottom:643.215000px;}
.y66{bottom:645.375000px;}
.y8{bottom:645.510000px;}
.yd7{bottom:646.095000px;}
.y127{bottom:646.275000px;}
.y40{bottom:654.555000px;}
.y104{bottom:655.455000px;}
.y173{bottom:659.955000px;}
.y65{bottom:665.535000px;}
.y126{bottom:666.615000px;}
.y7{bottom:666.771000px;}
.y3f{bottom:674.715000px;}
.y103{bottom:675.795000px;}
.y172{bottom:680.295000px;}
.yd6{bottom:682.815000px;}
.y64{bottom:685.695000px;}
.y125{bottom:686.775000px;}
.y3e{bottom:695.085000px;}
.y102{bottom:695.985000px;}
.y171{bottom:700.485000px;}
.yd5{bottom:701.205000px;}
.y63{bottom:706.065000px;}
.y124{bottom:707.145000px;}
.y3d{bottom:715.245000px;}
.y101{bottom:716.325000px;}
.yd4{bottom:719.565000px;}
.y170{bottom:720.825000px;}
.y62{bottom:726.225000px;}
.y6{bottom:726.298500px;}
.y123{bottom:728.925000px;}
.y3c{bottom:735.405000px;}
.y100{bottom:736.485000px;}
.y16f{bottom:739.005000px;}
.y61{bottom:746.565000px;}
.y16e{bottom:750.165000px;}
.y3{bottom:752.599495px;}
.y3b{bottom:755.745000px;}
.yd3{bottom:756.465000px;}
.yff{bottom:756.645000px;}
.y60{bottom:766.725000px;}
.y16d{bottom:770.325000px;}
.yd2{bottom:774.825000px;}
.y3a{bottom:775.905000px;}
.y122{bottom:776.625000px;}
.yfe{bottom:776.985000px;}
.y5f{bottom:786.885000px;}
.y16c{bottom:790.665000px;}
.yd1{bottom:794.625000px;}
.y121{bottom:794.985000px;}
.y39{bottom:796.245000px;}
.yfd{bottom:796.785000px;}
.y5e{bottom:807.225000px;}
.y16b{bottom:810.825000px;}
.y120{bottom:813.705000px;}
.yfc{bottom:815.145000px;}
.y38{bottom:816.405000px;}
.y5d{bottom:827.385000px;}
.y16a{bottom:831.165000px;}
.yfb{bottom:831.705000px;}
.y37{bottom:836.565000px;}
.y5c{bottom:847.725000px;}
.yfa{bottom:850.245000px;}
.y169{bottom:851.325000px;}
.y36{bottom:856.905000px;}
.y5b{bottom:867.885000px;}
.ya5{bottom:869.505000px;}
.y168{bottom:873.285000px;}
.y35{bottom:877.065000px;}
.y2{bottom:879.369000px;}
.yf9{bottom:886.965000px;}
.y5a{bottom:888.045000px;}
.y34{bottom:895.245000px;}
.y8b{bottom:897.225000px;}
.y167{bottom:901.005000px;}
.yf8{bottom:905.325000px;}
.ybf{bottom:907.305000px;}
.y33{bottom:907.485000px;}
.y59{bottom:908.385000px;}
.y8a{bottom:917.565000px;}
.y166{bottom:920.805000px;}
.yf7{bottom:923.730000px;}
.y58{bottom:928.590000px;}
.y32{bottom:932.370000px;}
.ybe{bottom:937.590000px;}
.y89{bottom:937.770000px;}
.y165{bottom:939.210000px;}
.yf6{bottom:942.270000px;}
.y57{bottom:948.930000px;}
.y31{bottom:952.890000px;}
.y164{bottom:957.570000px;}
.y88{bottom:958.110000px;}
.yf5{bottom:960.630000px;}
.y1{bottom:966.726000px;}
.y56{bottom:969.090000px;}
.y30{bottom:974.850000px;}
.y163{bottom:976.110000px;}
.y87{bottom:978.270000px;}
.yf4{bottom:978.990000px;}
.y55{bottom:989.250000px;}
.y162{bottom:994.470000px;}
.y2f{bottom:996.990000px;}
.yf3{bottom:997.350000px;}
.y86{bottom:998.430000px;}
.y54{bottom:1009.590000px;}
.y161{bottom:1012.830000px;}
.yf2{bottom:1017.330000px;}
.y85{bottom:1018.770000px;}
.y2e{bottom:1018.950000px;}
.y53{bottom:1029.750000px;}
.y160{bottom:1031.190000px;}
.y84{bottom:1038.930000px;}
.y2d{bottom:1041.090000px;}
.y15f{bottom:1049.550000px;}
.y52{bottom:1050.090000px;}
.y83{bottom:1059.270000px;}
.y2c{bottom:1062.870000px;}
.y15e{bottom:1067.910000px;}
.y51{bottom:1070.250000px;}
.y82{bottom:1079.430000px;}
.y2b{bottom:1086.450000px;}
.y50{bottom:1090.410000px;}
.y81{bottom:1099.590000px;}
.y15d{bottom:1104.810000px;}
.y4f{bottom:1110.750000px;}
.y80{bottom:1119.930000px;}
.y15c{bottom:1123.170000px;}
.y2a{bottom:1125.150000px;}
.y4e{bottom:1132.530000px;}
.y7f{bottom:1140.090000px;}
.y15b{bottom:1141.530000px;}
.y24{bottom:1173.060000px;}
.y23{bottom:1193.400000px;}
.y29{bottom:1197.720000px;}
.y27{bottom:1199.160000px;}
.h14{height:18.360000px;}
.h1e{height:18.396000px;}
.h1f{height:18.540000px;}
.h1c{height:18.576000px;}
.hd{height:20.160000px;}
.h11{height:23.595469px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:36.720000px;}
.h19{height:36.756000px;}
.h1d{height:36.900000px;}
.h20{height:36.936000px;}
.h17{height:44.936719px;}
.h7{height:45.960000px;}
.h15{height:46.629141px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h12{height:48.774375px;}
.hb{height:51.685312px;}
.h16{height:55.080000px;}
.h2{height:55.152000px;}
.h1b{height:55.260000px;}
.hf{height:56.179688px;}
.h21{height:61.423863px;}
.h10{height:63.344531px;}
.hc{height:68.084282px;}
.h13{height:72.007031px;}
.h18{height:73.620000px;}
.h5{height:78.132000px;}
.he{height:94.746094px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w1e{width:55.296000px;}
.w1d{width:71.496000px;}
.wf{width:73.836000px;}
.w1a{width:74.196000px;}
.wd{width:74.376000px;}
.wc{width:74.520000px;}
.w1f{width:102.420000px;}
.w10{width:105.840000px;}
.w15{width:113.220000px;}
.w16{width:113.256000px;}
.w17{width:113.436000px;}
.w12{width:116.136000px;}
.w13{width:116.280000px;}
.w11{width:116.316000px;}
.w1c{width:131.076000px;}
.w19{width:131.256000px;}
.w8{width:142.956000px;}
.w1b{width:148.860000px;}
.we{width:168.120000px;}
.w18{width:171.360000px;}
.wa{width:173.910000px;}
.w7{width:174.060000px;}
.w9{width:205.590000px;}
.w6{width:244.830000px;}
.wb{width:254.730000px;}
.w5{width:542.055000px;}
.w2{width:637.794021px;}
.w14{width:696.525000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.100000px;}
.x6{left:10.800000px;}
.x36{left:12.240000px;}
.x34{left:15.345000px;}
.x1b{left:18.540000px;}
.x1d{left:21.060000px;}
.x22{left:22.860000px;}
.x29{left:24.150000px;}
.x3e{left:25.200000px;}
.x28{left:26.640000px;}
.x24{left:27.765000px;}
.x19{left:30.465000px;}
.x3b{left:31.500000px;}
.x14{left:32.760000px;}
.x25{left:35.100000px;}
.x1f{left:36.180000px;}
.x38{left:37.440000px;}
.x27{left:38.520000px;}
.x26{left:42.690000px;}
.x21{left:44.100000px;}
.x39{left:45.945000px;}
.x17{left:49.860000px;}
.x3d{left:52.380000px;}
.x3c{left:54.900000px;}
.x3a{left:73.620000px;}
.xc{left:98.316000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:127.655987px;}
.x11{left:133.415987px;}
.x8{left:142.065000px;}
.x9{left:145.655994px;}
.x12{left:160.409987px;}
.x4{left:203.484001px;}
.x2a{left:211.530000px;}
.x18{left:266.430000px;}
.x2f{left:269.670000px;}
.xe{left:272.370000px;}
.x2b{left:324.795000px;}
.x23{left:330.519000px;}
.x1a{left:340.275000px;}
.x13{left:353.055000px;}
.xa{left:389.054987px;}
.x30{left:400.935000px;}
.xf{left:415.335000px;}
.x15{left:427.575000px;}
.x5{left:432.074987px;}
.x2c{left:438.015000px;}
.x1c{left:446.115000px;}
.x3{left:454.959000px;}
.x35{left:472.245000px;}
.x31{left:475.125000px;}
.x16{left:501.945000px;}
.x7{left:539.925000px;}
.x2d{left:551.445000px;}
.x1e{left:562.425000px;}
.x10{left:620.925000px;}
.x32{left:623.985000px;}
.x2e{left:664.710000px;}
.x37{left:676.410000px;}
.x20{left:678.570000px;}
.x33{left:698.370000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls2c{letter-spacing:-1.269333pt;}
.lse{letter-spacing:-0.949333pt;}
.lsc{letter-spacing:-0.762667pt;}
.ls2d{letter-spacing:-0.634667pt;}
.ls22{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.570667pt;}
.ls21{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.476267pt;}
.ls7{letter-spacing:-0.309867pt;}
.ls1e{letter-spacing:-0.307200pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.190933pt;}
.ls23{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.166400pt;}
.lsd{letter-spacing:-0.153600pt;}
.ls2e{letter-spacing:-0.130667pt;}
.lsf{letter-spacing:-0.122667pt;}
.ls6{letter-spacing:-0.120533pt;}
.ls8{letter-spacing:-0.076800pt;}
.ls1d{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.005760pt;}
.ls18{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls2b{letter-spacing:0.040960pt;}
.ls1b{letter-spacing:0.104960pt;}
.ls9{letter-spacing:0.105067pt;}
.ls14{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.163733pt;}
.ls12{letter-spacing:0.197333pt;}
.ls30{letter-spacing:0.204800pt;}
.ls29{letter-spacing:0.262827pt;}
.ls1f{letter-spacing:0.291840pt;}
.ls2{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.330240pt;}
.ls15{letter-spacing:0.384000pt;}
.ls20{letter-spacing:0.398507pt;}
.ls31{letter-spacing:0.406400pt;}
.ls16{letter-spacing:0.509333pt;}
.ls32{letter-spacing:0.645333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls2f{letter-spacing:1.285760pt;}
.ls4{letter-spacing:6.090240pt;}
.ls2a{letter-spacing:7.632640pt;}
.ls1c{letter-spacing:32.330240pt;}
.ls27{letter-spacing:37.072640pt;}
.ls28{letter-spacing:39.632640pt;}
.ls1a{letter-spacing:44.410027pt;}
.ls3{letter-spacing:751.770027pt;}
.ws3{word-spacing:-17.056427pt;}
.wse{word-spacing:-16.693760pt;}
.wsc{word-spacing:-16.507093pt;}
.ws2{word-spacing:-16.486400pt;}
.ws19{word-spacing:-16.473493pt;}
.wsd{word-spacing:-16.437760pt;}
.ws1b{word-spacing:-16.414827pt;}
.ws1d{word-spacing:-16.350720pt;}
.ws1{word-spacing:-16.330240pt;}
.ws6{word-spacing:-16.309760pt;}
.ws4{word-spacing:-16.232960pt;}
.ws8{word-spacing:-16.189227pt;}
.ws9{word-spacing:-16.187093pt;}
.ws7{word-spacing:-16.143360pt;}
.wsa{word-spacing:-16.053760pt;}
.wsb{word-spacing:-15.797760pt;}
.ws1c{word-spacing:-15.776427pt;}
.ws5{word-spacing:-15.739093pt;}
.ws16{word-spacing:-15.701760pt;}
.ws1a{word-spacing:-15.547093pt;}
.ws21{word-spacing:-15.120640pt;}
.ws20{word-spacing:-14.919040pt;}
.wsf{word-spacing:-14.873600pt;}
.ws17{word-spacing:-14.725760pt;}
.ws10{word-spacing:-14.714240pt;}
.ws14{word-spacing:-14.604800pt;}
.ws1f{word-spacing:-14.583573pt;}
.ws15{word-spacing:-14.566400pt;}
.ws18{word-spacing:-14.538240pt;}
.ws11{word-spacing:-14.445440pt;}
.ws1e{word-spacing:-13.444907pt;}
.ws13{word-spacing:-10.282240pt;}
.ws12{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-2.081707pt;}
._1{margin-left:-1.118720pt;}
._2{width:0.990720pt;}
._6{width:2.163200pt;}
._8{width:3.591680pt;}
._9{width:5.097813pt;}
._5{width:6.303147pt;}
._4{width:7.242240pt;}
._c{width:8.890880pt;}
._d{width:10.009600pt;}
._a{width:11.304960pt;}
._b{width:12.433920pt;}
._19{width:13.473280pt;}
._12{width:14.425600pt;}
._13{width:15.346773pt;}
._3{width:16.829440pt;}
._2d{width:17.719893pt;}
._14{width:18.618027pt;}
._e{width:20.078080pt;}
._11{width:21.044907pt;}
._7{width:21.962240pt;}
._16{width:23.699413pt;}
._17{width:25.318400pt;}
._f{width:26.291200pt;}
._10{width:27.702187pt;}
._31{width:28.756480pt;}
._1a{width:29.675520pt;}
._15{width:30.900907pt;}
._18{width:32.288427pt;}
._1b{width:33.637973pt;}
._30{width:36.168960pt;}
._2e{width:38.684160pt;}
._2f{width:39.588267pt;}
._25{width:40.610987pt;}
._1f{width:42.900480pt;}
._1d{width:45.573120pt;}
._1e{width:47.076267pt;}
._23{width:49.017600pt;}
._0{width:59.210240pt;}
._27{width:61.831680pt;}
._26{width:62.787840pt;}
._20{width:71.180800pt;}
._22{width:75.696000pt;}
._24{width:77.661440pt;}
._2a{width:79.308160pt;}
._2c{width:86.405760pt;}
._28{width:91.525760pt;}
._29{width:92.747520pt;}
._21{width:97.440640pt;}
._2b{width:154.180267pt;}
.fs8{font-size:26.880000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.880000pt;}
.yb1{bottom:2.920000pt;}
.yb5{bottom:3.040000pt;}
.y28{bottom:3.200000pt;}
.yaa{bottom:19.200000pt;}
.yb8{bottom:19.226667pt;}
.yb0{bottom:19.240000pt;}
.yae{bottom:19.360000pt;}
.y11f{bottom:19.400000pt;}
.ya9{bottom:35.520000pt;}
.yad{bottom:35.680000pt;}
.y26{bottom:50.400000pt;}
.yac{bottom:52.000000pt;}
.y5{bottom:59.133337pt;}
.y25{bottom:67.360000pt;}
.y4{bottom:86.333337pt;}
.y15a{bottom:97.440000pt;}
.y7e{bottom:97.760000pt;}
.yf1{bottom:98.720000pt;}
.ybd{bottom:105.280000pt;}
.yd0{bottom:111.840000pt;}
.y11e{bottom:112.800000pt;}
.y159{bottom:113.760000pt;}
.y7d{bottom:115.840000pt;}
.yf0{bottom:116.800000pt;}
.ybc{bottom:123.200000pt;}
.y22{bottom:123.790666pt;}
.ycf{bottom:129.760000pt;}
.y158{bottom:130.240000pt;}
.y11d{bottom:130.720000pt;}
.ya4{bottom:132.160000pt;}
.y7c{bottom:133.760000pt;}
.yef{bottom:134.720000pt;}
.ybb{bottom:141.280000pt;}
.y157{bottom:146.560000pt;}
.yce{bottom:147.840000pt;}
.y11c{bottom:148.640000pt;}
.ya3{bottom:150.080000pt;}
.y7b{bottom:151.840000pt;}
.yee{bottom:152.640000pt;}
.yba{bottom:159.200000pt;}
.y156{bottom:162.880000pt;}
.ycd{bottom:165.760000pt;}
.y11b{bottom:166.720000pt;}
.ya2{bottom:168.160000pt;}
.y7a{bottom:169.760000pt;}
.yed{bottom:170.720000pt;}
.y13d{bottom:172.160000pt;}
.y19{bottom:175.052000pt;}
.yb9{bottom:176.800000pt;}
.y155{bottom:179.200000pt;}
.ycc{bottom:183.680000pt;}
.y11a{bottom:184.640000pt;}
.ya1{bottom:186.080000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y79{bottom:187.680000pt;}
.yec{bottom:188.640000pt;}
.yb7{bottom:191.680000pt;}
.y154{bottom:195.520000pt;}
.y13c{bottom:196.800000pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y119{bottom:202.266667pt;}
.ycb{bottom:203.226667pt;}
.ya0{bottom:204.186667pt;}
.y78{bottom:205.786667pt;}
.yeb{bottom:206.586667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y153{bottom:211.866667pt;}
.y13b{bottom:214.906667pt;}
.y118{bottom:218.586667pt;}
.y9f{bottom:222.106667pt;}
.y77{bottom:223.706667pt;}
.yb6{bottom:224.346667pt;}
.yea{bottom:224.666667pt;}
.yca{bottom:227.866667pt;}
.y152{bottom:228.346667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y13a{bottom:232.826667pt;}
.y117{bottom:235.066667pt;}
.y9e{bottom:240.026667pt;}
.y76{bottom:241.786667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ye9{bottom:242.586667pt;}
.y151{bottom:244.666667pt;}
.yc9{bottom:245.946667pt;}
.y116{bottom:249.786667pt;}
.y139{bottom:250.746667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yb4{bottom:256.986667pt;}
.y9d{bottom:258.106667pt;}
.y75{bottom:259.706667pt;}
.ye8{bottom:260.666667pt;}
.y150{bottom:260.986667pt;}
.yc8{bottom:263.866667pt;}
.y115{bottom:266.106667pt;}
.y138{bottom:268.826667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y9c{bottom:276.026667pt;}
.y14f{bottom:277.306667pt;}
.y74{bottom:277.626667pt;}
.ye7{bottom:278.586667pt;}
.yc7{bottom:281.786667pt;}
.y114{bottom:282.426667pt;}
.y137{bottom:286.746667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y14e{bottom:293.626667pt;}
.y9b{bottom:294.106667pt;}
.ye6{bottom:296.506667pt;}
.y73{bottom:297.146667pt;}
.y113{bottom:298.746667pt;}
.yc6{bottom:299.866667pt;}
.y136{bottom:304.826667pt;}
.y10{bottom:309.452000pt;}
.y14d{bottom:310.106667pt;}
.y9a{bottom:312.026667pt;}
.ye5{bottom:314.586667pt;}
.y112{bottom:315.226667pt;}
.yc5{bottom:317.466667pt;}
.y72{bottom:321.786667pt;}
.yb3{bottom:322.426667pt;}
.y135{bottom:322.746667pt;}
.y14c{bottom:326.426667pt;}
.y99{bottom:329.946667pt;}
.y111{bottom:331.546667pt;}
.ye4{bottom:332.506667pt;}
.yc4{bottom:333.786667pt;}
.y71{bottom:339.866667pt;}
.y134{bottom:340.666667pt;}
.y14b{bottom:342.746667pt;}
.yf{bottom:343.809333pt;}
.y110{bottom:347.866667pt;}
.y98{bottom:348.026667pt;}
.yc3{bottom:348.666667pt;}
.ye3{bottom:350.586667pt;}
.y70{bottom:357.786667pt;}
.y133{bottom:358.746667pt;}
.y14a{bottom:359.066667pt;}
.ye{bottom:362.706666pt;}
.yc2{bottom:364.986667pt;}
.y10f{bottom:365.466667pt;}
.y97{bottom:365.946667pt;}
.ye2{bottom:368.506667pt;}
.yb2{bottom:371.546667pt;}
.y149{bottom:375.386667pt;}
.y6f{bottom:375.706667pt;}
.y132{bottom:376.666667pt;}
.yc1{bottom:381.306667pt;}
.y96{bottom:384.026667pt;}
.ye1{bottom:386.426667pt;}
.y4d{bottom:388.666667pt;}
.y148{bottom:391.706667pt;}
.y6e{bottom:393.786667pt;}
.y131{bottom:394.586667pt;}
.yc0{bottom:398.906667pt;}
.y95{bottom:401.946667pt;}
.y10e{bottom:402.906667pt;}
.yaf{bottom:404.186667pt;}
.ye0{bottom:404.506667pt;}
.y147{bottom:408.226667pt;}
.y6d{bottom:411.746667pt;}
.y130{bottom:412.706667pt;}
.y4c{bottom:413.346667pt;}
.y94{bottom:419.906667pt;}
.y10d{bottom:420.866667pt;}
.ydf{bottom:422.466667pt;}
.y146{bottom:424.546667pt;}
.y6c{bottom:429.826667pt;}
.y12f{bottom:430.626667pt;}
.yd{bottom:430.990669pt;}
.y4b{bottom:431.426667pt;}
.yab{bottom:436.866667pt;}
.y93{bottom:437.986667pt;}
.y10c{bottom:438.786667pt;}
.yde{bottom:440.546667pt;}
.y145{bottom:440.866667pt;}
.yc{bottom:446.990669pt;}
.y6b{bottom:447.746667pt;}
.y12e{bottom:448.706667pt;}
.y4a{bottom:449.338672pt;}
.y49{bottom:449.346667pt;}
.y92{bottom:455.906667pt;}
.y10b{bottom:456.866667pt;}
.y144{bottom:457.186667pt;}
.ydd{bottom:458.466667pt;}
.yb{bottom:462.990669pt;}
.y48{bottom:465.506667pt;}
.y6a{bottom:465.666667pt;}
.y12d{bottom:466.626667pt;}
.y143{bottom:473.506667pt;}
.y91{bottom:473.826667pt;}
.y10a{bottom:474.786667pt;}
.y47{bottom:475.586667pt;}
.ydc{bottom:476.386667pt;}
.y179{bottom:478.786667pt;}
.ya{bottom:478.990666pt;}
.y69{bottom:483.746667pt;}
.y12c{bottom:484.546667pt;}
.y142{bottom:489.826667pt;}
.y90{bottom:491.906667pt;}
.y109{bottom:492.866667pt;}
.y46{bottom:493.506667pt;}
.ydb{bottom:494.146667pt;}
.y9{bottom:494.990666pt;}
.y178{bottom:496.866667pt;}
.y68{bottom:501.666667pt;}
.ya8{bottom:502.306667pt;}
.y12b{bottom:502.626667pt;}
.y141{bottom:506.306667pt;}
.yda{bottom:508.866667pt;}
.y8f{bottom:509.826667pt;}
.y108{bottom:510.786667pt;}
.y45{bottom:511.426667pt;}
.y177{bottom:514.786667pt;}
.y67{bottom:519.746667pt;}
.y12a{bottom:520.546667pt;}
.y140{bottom:522.626667pt;}
.y44{bottom:527.746667pt;}
.y8e{bottom:527.906667pt;}
.y107{bottom:528.706667pt;}
.y176{bottom:532.706667pt;}
.y43{bottom:537.666667pt;}
.y129{bottom:538.626667pt;}
.y13f{bottom:538.946667pt;}
.yd9{bottom:541.506667pt;}
.y8d{bottom:545.826667pt;}
.y106{bottom:546.786667pt;}
.y175{bottom:550.786667pt;}
.ya6{bottom:552.706667pt;}
.y42{bottom:555.586667pt;}
.y128{bottom:556.546667pt;}
.y13e{bottom:557.026667pt;}
.yd8{bottom:557.826667pt;}
.y8c{bottom:563.746667pt;}
.y105{bottom:564.706667pt;}
.y174{bottom:568.706667pt;}
.y41{bottom:571.746667pt;}
.y66{bottom:573.666667pt;}
.y8{bottom:573.786667pt;}
.yd7{bottom:574.306667pt;}
.y127{bottom:574.466667pt;}
.y40{bottom:581.826667pt;}
.y104{bottom:582.626667pt;}
.y173{bottom:586.626667pt;}
.y65{bottom:591.586667pt;}
.y126{bottom:592.546667pt;}
.y7{bottom:592.685334pt;}
.y3f{bottom:599.746667pt;}
.y103{bottom:600.706667pt;}
.y172{bottom:604.706667pt;}
.yd6{bottom:606.946667pt;}
.y64{bottom:609.506667pt;}
.y125{bottom:610.466667pt;}
.y3e{bottom:617.853333pt;}
.y102{bottom:618.653333pt;}
.y171{bottom:622.653333pt;}
.yd5{bottom:623.293333pt;}
.y63{bottom:627.613333pt;}
.y124{bottom:628.573333pt;}
.y3d{bottom:635.773333pt;}
.y101{bottom:636.733333pt;}
.yd4{bottom:639.613333pt;}
.y170{bottom:640.733333pt;}
.y62{bottom:645.533333pt;}
.y6{bottom:645.598667pt;}
.y123{bottom:647.933333pt;}
.y3c{bottom:653.693333pt;}
.y100{bottom:654.653333pt;}
.y16f{bottom:656.893333pt;}
.y61{bottom:663.613333pt;}
.y16e{bottom:666.813333pt;}
.y3{bottom:668.977329pt;}
.y3b{bottom:671.773333pt;}
.yd3{bottom:672.413333pt;}
.yff{bottom:672.573333pt;}
.y60{bottom:681.533333pt;}
.y16d{bottom:684.733333pt;}
.yd2{bottom:688.733333pt;}
.y3a{bottom:689.693333pt;}
.y122{bottom:690.333333pt;}
.yfe{bottom:690.653333pt;}
.y5f{bottom:699.453333pt;}
.y16c{bottom:702.813333pt;}
.yd1{bottom:706.333333pt;}
.y121{bottom:706.653333pt;}
.y39{bottom:707.773333pt;}
.yfd{bottom:708.253333pt;}
.y5e{bottom:717.533333pt;}
.y16b{bottom:720.733333pt;}
.y120{bottom:723.293333pt;}
.yfc{bottom:724.573333pt;}
.y38{bottom:725.693333pt;}
.y5d{bottom:735.453333pt;}
.y16a{bottom:738.813333pt;}
.yfb{bottom:739.293333pt;}
.y37{bottom:743.613333pt;}
.y5c{bottom:753.533333pt;}
.yfa{bottom:755.773333pt;}
.y169{bottom:756.733333pt;}
.y36{bottom:761.693333pt;}
.y5b{bottom:771.453333pt;}
.ya5{bottom:772.893333pt;}
.y168{bottom:776.253333pt;}
.y35{bottom:779.613333pt;}
.y2{bottom:781.661334pt;}
.yf9{bottom:788.413333pt;}
.y5a{bottom:789.373333pt;}
.y34{bottom:795.773333pt;}
.y8b{bottom:797.533333pt;}
.y167{bottom:800.893333pt;}
.yf8{bottom:804.733333pt;}
.ybf{bottom:806.493333pt;}
.y33{bottom:806.653333pt;}
.y59{bottom:807.453333pt;}
.y8a{bottom:815.613333pt;}
.y166{bottom:818.493333pt;}
.yf7{bottom:821.093333pt;}
.y58{bottom:825.413333pt;}
.y32{bottom:828.773333pt;}
.ybe{bottom:833.413333pt;}
.y89{bottom:833.573333pt;}
.y165{bottom:834.853333pt;}
.yf6{bottom:837.573333pt;}
.y57{bottom:843.493333pt;}
.y31{bottom:847.013333pt;}
.y164{bottom:851.173333pt;}
.y88{bottom:851.653333pt;}
.yf5{bottom:853.893333pt;}
.y1{bottom:859.312000pt;}
.y56{bottom:861.413333pt;}
.y30{bottom:866.533333pt;}
.y163{bottom:867.653333pt;}
.y87{bottom:869.573333pt;}
.yf4{bottom:870.213333pt;}
.y55{bottom:879.333333pt;}
.y162{bottom:883.973333pt;}
.y2f{bottom:886.213333pt;}
.yf3{bottom:886.533333pt;}
.y86{bottom:887.493333pt;}
.y54{bottom:897.413333pt;}
.y161{bottom:900.293333pt;}
.yf2{bottom:904.293333pt;}
.y85{bottom:905.573333pt;}
.y2e{bottom:905.733333pt;}
.y53{bottom:915.333333pt;}
.y160{bottom:916.613333pt;}
.y84{bottom:923.493333pt;}
.y2d{bottom:925.413333pt;}
.y15f{bottom:932.933333pt;}
.y52{bottom:933.413333pt;}
.y83{bottom:941.573333pt;}
.y2c{bottom:944.773333pt;}
.y15e{bottom:949.253333pt;}
.y51{bottom:951.333333pt;}
.y82{bottom:959.493333pt;}
.y2b{bottom:965.733333pt;}
.y50{bottom:969.253333pt;}
.y81{bottom:977.413333pt;}
.y15d{bottom:982.053333pt;}
.y4f{bottom:987.333333pt;}
.y80{bottom:995.493333pt;}
.y15c{bottom:998.373333pt;}
.y2a{bottom:1000.133333pt;}
.y4e{bottom:1006.693333pt;}
.y7f{bottom:1013.413333pt;}
.y15b{bottom:1014.693333pt;}
.y24{bottom:1042.720000pt;}
.y23{bottom:1060.800000pt;}
.y29{bottom:1064.640000pt;}
.y27{bottom:1065.920000pt;}
.h14{height:16.320000pt;}
.h1e{height:16.352000pt;}
.h1f{height:16.480000pt;}
.h1c{height:16.512000pt;}
.hd{height:17.920000pt;}
.h11{height:20.973750pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:32.640000pt;}
.h19{height:32.672000pt;}
.h1d{height:32.800000pt;}
.h20{height:32.832000pt;}
.h17{height:39.943750pt;}
.h7{height:40.853333pt;}
.h15{height:41.448125pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h12{height:43.355000pt;}
.hb{height:45.942500pt;}
.h16{height:48.960000pt;}
.h2{height:49.024000pt;}
.h1b{height:49.120000pt;}
.hf{height:49.937500pt;}
.h21{height:54.598989pt;}
.h10{height:56.306250pt;}
.hc{height:60.519362pt;}
.h13{height:64.006250pt;}
.h18{height:65.440000pt;}
.h5{height:69.450667pt;}
.he{height:84.218750pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w1e{width:49.152000pt;}
.w1d{width:63.552000pt;}
.wf{width:65.632000pt;}
.w1a{width:65.952000pt;}
.wd{width:66.112000pt;}
.wc{width:66.240000pt;}
.w1f{width:91.040000pt;}
.w10{width:94.080000pt;}
.w15{width:100.640000pt;}
.w16{width:100.672000pt;}
.w17{width:100.832000pt;}
.w12{width:103.232000pt;}
.w13{width:103.360000pt;}
.w11{width:103.392000pt;}
.w1c{width:116.512000pt;}
.w19{width:116.672000pt;}
.w8{width:127.072000pt;}
.w1b{width:132.320000pt;}
.we{width:149.440000pt;}
.w18{width:152.320000pt;}
.wa{width:154.586667pt;}
.w7{width:154.720000pt;}
.w9{width:182.746667pt;}
.w6{width:217.626667pt;}
.wb{width:226.426667pt;}
.w5{width:481.826667pt;}
.w2{width:566.928019pt;}
.w14{width:619.133333pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.200000pt;}
.x6{left:9.600000pt;}
.x36{left:10.880000pt;}
.x34{left:13.640000pt;}
.x1b{left:16.480000pt;}
.x1d{left:18.720000pt;}
.x22{left:20.320000pt;}
.x29{left:21.466667pt;}
.x3e{left:22.400000pt;}
.x28{left:23.680000pt;}
.x24{left:24.680000pt;}
.x19{left:27.080000pt;}
.x3b{left:28.000000pt;}
.x14{left:29.120000pt;}
.x25{left:31.200000pt;}
.x1f{left:32.160000pt;}
.x38{left:33.280000pt;}
.x27{left:34.240000pt;}
.x26{left:37.946667pt;}
.x21{left:39.200000pt;}
.x39{left:40.840000pt;}
.x17{left:44.320000pt;}
.x3d{left:46.560000pt;}
.x3c{left:48.800000pt;}
.x3a{left:65.440000pt;}
.xc{left:87.392000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:113.471988pt;}
.x11{left:118.591988pt;}
.x8{left:126.280000pt;}
.x9{left:129.471995pt;}
.x12{left:142.586655pt;}
.x4{left:180.874667pt;}
.x2a{left:188.026667pt;}
.x18{left:236.826667pt;}
.x2f{left:239.706667pt;}
.xe{left:242.106667pt;}
.x2b{left:288.706667pt;}
.x23{left:293.794667pt;}
.x1a{left:302.466667pt;}
.x13{left:313.826667pt;}
.xa{left:345.826655pt;}
.x30{left:356.386667pt;}
.xf{left:369.186667pt;}
.x15{left:380.066667pt;}
.x5{left:384.066655pt;}
.x2c{left:389.346667pt;}
.x1c{left:396.546667pt;}
.x3{left:404.408000pt;}
.x35{left:419.773333pt;}
.x31{left:422.333333pt;}
.x16{left:446.173333pt;}
.x7{left:479.933333pt;}
.x2d{left:490.173333pt;}
.x1e{left:499.933333pt;}
.x10{left:551.933333pt;}
.x32{left:554.653333pt;}
.x2e{left:590.853333pt;}
.x37{left:601.253333pt;}
.x20{left:603.173333pt;}
.x33{left:620.773333pt;}
}




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