
    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_f329798b7a6034a2375b9a6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_53e117a17607f5f8f4fbc5d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_c28f3c7b7a06bbf6adc90747.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_922aed597d0f2a0ab1a5f44b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_87e37089d379f273e5eeef5a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ed08f11b70084edd732b54be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e8d62f77a7221685326ff82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f1012c767006621761ae1a84.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_70d1d15937293e7896dd16a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_59c2085487846337caf699c6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1c{letter-spacing:-0.786000px;}
.lsc{letter-spacing:-0.579600px;}
.ls2e{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.414000px;}
.ls23{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.310800px;}
.ls14{letter-spacing:-0.240600px;}
.ls6{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.107400px;}
.ls1d{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.058320px;}
.lsb{letter-spacing:-0.032400px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.038880px;}
.ls21{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.060600px;}
.ls2d{letter-spacing:0.061680px;}
.ls22{letter-spacing:0.078000px;}
.ls1{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls29{letter-spacing:0.169200px;}
.ls19{letter-spacing:0.174000px;}
.ls15{letter-spacing:0.174240px;}
.ls20{letter-spacing:0.175200px;}
.ls2c{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.180480px;}
.lsf{letter-spacing:0.186600px;}
.ls25{letter-spacing:0.234600px;}
.ls28{letter-spacing:0.243360px;}
.ls31{letter-spacing:0.243600px;}
.ls18{letter-spacing:0.294240px;}
.ls30{letter-spacing:0.303000px;}
.ls2a{letter-spacing:0.303120px;}
.lsd{letter-spacing:0.306000px;}
.ls1a{letter-spacing:0.354240px;}
.ls27{letter-spacing:0.423360px;}
.ls12{letter-spacing:0.493200px;}
.ls2f{letter-spacing:0.660000px;}
.ls2{letter-spacing:0.780000px;}
.lse{letter-spacing:0.858000px;}
.ls16{letter-spacing:0.894240px;}
.ls1b{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.906000px;}
.ls17{letter-spacing:1.026000px;}
.ls2b{letter-spacing:12.186720px;}
.ls26{letter-spacing:33.294240px;}
.ls24{letter-spacing:42.570720px;}
.ls33{letter-spacing:43.374240px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.wsa{word-spacing:-18.000000px;}
.ws5{word-spacing:-14.999040px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.165760px;}
.ws9{word-spacing:-13.811760px;}
.ws16{word-spacing:-13.808760px;}
.ws17{word-spacing:-13.749360px;}
.ws14{word-spacing:-13.740360px;}
.wsd{word-spacing:-13.692360px;}
.ws18{word-spacing:-13.685040px;}
.ws11{word-spacing:-13.680960px;}
.ws12{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.473360px;}
.wsf{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.440960px;}
.ws10{word-spacing:-13.398360px;}
.wsb{word-spacing:-13.265160px;}
.wse{word-spacing:-12.926160px;}
.ws13{word-spacing:-8.864880px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-532.198560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.718240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.238160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._27{margin-left:-228.741120px;}
._19{margin-left:-226.537200px;}
._18{margin-left:-219.434640px;}
._11{margin-left:-202.290240px;}
._1a{margin-left:-199.946880px;}
._25{margin-left:-196.208640px;}
._24{margin-left:-189.692640px;}
._10{margin-left:-171.054720px;}
._2a{margin-left:-168.582240px;}
._f{margin-left:-165.490560px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.068400px;}
._c{margin-left:-148.690080px;}
._29{margin-left:-143.130240px;}
._12{margin-left:-141.299040px;}
._e{margin-left:-134.192160px;}
._26{margin-left:-120.358560px;}
._23{margin-left:-118.552320px;}
._13{margin-left:-116.062560px;}
._28{margin-left:-109.639440px;}
._1e{margin-left:-102.529440px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._15{margin-left:-82.131840px;}
._17{margin-left:-66.703680px;}
._16{margin-left:-49.583280px;}
._22{margin-left:-32.970240px;}
._1b{margin-left:-30.597360px;}
._3c{margin-left:-8.636040px;}
._3f{margin-left:-7.522560px;}
._2e{margin-left:-5.544000px;}
._2b{margin-left:-4.408920px;}
._3a{margin-left:-3.274560px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._2f{width:2.667600px;}
._32{width:4.143120px;}
._37{width:5.172720px;}
._30{width:6.274800px;}
._31{width:7.297920px;}
._33{width:8.390400px;}
._34{width:9.411600px;}
._35{width:10.477920px;}
._36{width:12.259920px;}
._2d{width:13.384080px;}
._2c{width:14.459760px;}
._41{width:15.540000px;}
._3b{width:16.553520px;}
._39{width:18.047520px;}
._38{width:19.422000px;}
._3e{width:21.516480px;}
._3d{width:22.543200px;}
._40{width:33.824520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:3.960000px;}
.yab{bottom:4.320000px;}
.ya9{bottom:4.500000px;}
.yb9{bottom:5.040000px;}
.yd2{bottom:5.220000px;}
.yad{bottom:5.580000px;}
.y72{bottom:12.960000px;}
.y6c{bottom:13.605000px;}
.y6e{bottom:13.785000px;}
.y70{bottom:15.405000px;}
.yc3{bottom:22.320000px;}
.y6b{bottom:35.925000px;}
.y68{bottom:38.805000px;}
.ye4{bottom:40.500000px;}
.yf6{bottom:40.545000px;}
.ye0{bottom:40.680000px;}
.yb7{bottom:41.580000px;}
.yd0{bottom:60.300000px;}
.y6{bottom:61.596000px;}
.yc5{bottom:77.220000px;}
.y66{bottom:91.296000px;}
.ycd{bottom:100.296000px;}
.ya1{bottom:106.416000px;}
.y31{bottom:108.756000px;}
.y133{bottom:108.936000px;}
.y132{bottom:110.916000px;}
.y65{bottom:112.356000px;}
.y102{bottom:119.376000px;}
.ycc{bottom:121.356000px;}
.ya0{bottom:127.476000px;}
.y30{bottom:129.816000px;}
.y131{bottom:131.976000px;}
.y64{bottom:133.416000px;}
.y101{bottom:140.436000px;}
.ycb{bottom:142.416000px;}
.y9f{bottom:148.536000px;}
.y2f{bottom:150.870000px;}
.y130{bottom:153.030000px;}
.y63{bottom:154.470000px;}
.y100{bottom:161.490000px;}
.yca{bottom:163.470000px;}
.y9e{bottom:169.590000px;}
.y2e{bottom:171.930000px;}
.y12f{bottom:174.090000px;}
.y62{bottom:175.530000px;}
.yc4{bottom:178.590000px;}
.yff{bottom:182.550000px;}
.y9d{bottom:190.650000px;}
.y2d{bottom:192.990000px;}
.y12e{bottom:195.150000px;}
.y61{bottom:196.590000px;}
.yc9{bottom:196.950000px;}
.yfe{bottom:203.610000px;}
.y9c{bottom:211.710000px;}
.y2c{bottom:214.050000px;}
.yc8{bottom:215.310000px;}
.y12d{bottom:216.210000px;}
.y60{bottom:217.650000px;}
.yfd{bottom:224.670000px;}
.y9b{bottom:232.770000px;}
.yc7{bottom:233.490000px;}
.y2b{bottom:235.110000px;}
.y12c{bottom:237.270000px;}
.y5f{bottom:238.710000px;}
.yfc{bottom:239.070000px;}
.yc6{bottom:251.850000px;}
.y9a{bottom:253.830000px;}
.y2a{bottom:256.170000px;}
.yf9{bottom:258.150000px;}
.y12b{bottom:258.330000px;}
.y5e{bottom:259.770000px;}
.yc2{bottom:270.930000px;}
.y99{bottom:274.890000px;}
.yfb{bottom:276.510000px;}
.y29{bottom:277.230000px;}
.y12a{bottom:279.390000px;}
.y5d{bottom:280.830000px;}
.ya7{bottom:283.890000px;}
.yfa{bottom:294.690000px;}
.y28{bottom:298.290000px;}
.y129{bottom:300.450000px;}
.y5c{bottom:301.890000px;}
.y98{bottom:304.950000px;}
.yf5{bottom:313.050000px;}
.yc1{bottom:315.030000px;}
.y27{bottom:319.350000px;}
.y128{bottom:321.510000px;}
.y5b{bottom:322.950000px;}
.y97{bottom:326.010000px;}
.yf8{bottom:331.455000px;}
.yc0{bottom:336.135000px;}
.y26{bottom:340.455000px;}
.y127{bottom:342.615000px;}
.y5a{bottom:344.055000px;}
.y96{bottom:347.115000px;}
.yf7{bottom:349.635000px;}
.ybf{bottom:357.195000px;}
.y25{bottom:361.515000px;}
.y126{bottom:363.675000px;}
.y59{bottom:365.115000px;}
.y95{bottom:368.175000px;}
.yf4{bottom:368.715000px;}
.ybe{bottom:378.255000px;}
.y24{bottom:382.575000px;}
.y125{bottom:384.735000px;}
.y58{bottom:386.175000px;}
.y94{bottom:389.235000px;}
.yf3{bottom:394.455000px;}
.ybd{bottom:399.315000px;}
.y23{bottom:403.455000px;}
.y124{bottom:405.795000px;}
.y57{bottom:407.235000px;}
.y93{bottom:410.295000px;}
.yf2{bottom:415.515000px;}
.ybc{bottom:420.375000px;}
.y22{bottom:424.515000px;}
.y123{bottom:426.855000px;}
.y56{bottom:428.295000px;}
.y92{bottom:431.355000px;}
.yf1{bottom:436.575000px;}
.ybb{bottom:441.255000px;}
.y21{bottom:445.575000px;}
.y122{bottom:447.915000px;}
.y55{bottom:449.355000px;}
.y91{bottom:452.415000px;}
.yb6{bottom:456.555000px;}
.yf0{bottom:457.635000px;}
.y20{bottom:466.635000px;}
.y121{bottom:468.975000px;}
.y54{bottom:470.415000px;}
.y90{bottom:473.475000px;}
.yba{bottom:474.735000px;}
.yef{bottom:478.695000px;}
.y1f{bottom:487.695000px;}
.y120{bottom:490.035000px;}
.y53{bottom:491.475000px;}
.yb8{bottom:493.095000px;}
.y8f{bottom:494.535000px;}
.yee{bottom:499.755000px;}
.y1e{bottom:508.755000px;}
.y11f{bottom:511.095000px;}
.y52{bottom:512.535000px;}
.yb4{bottom:513.255000px;}
.y8e{bottom:515.595000px;}
.yed{bottom:520.815000px;}
.y1d{bottom:529.815000px;}
.y11e{bottom:532.155000px;}
.y51{bottom:533.595000px;}
.y8d{bottom:536.655000px;}
.yb3{bottom:539.355000px;}
.yec{bottom:541.875000px;}
.y1c{bottom:550.875000px;}
.y11d{bottom:553.215000px;}
.y50{bottom:554.655000px;}
.y8c{bottom:557.715000px;}
.yb2{bottom:560.415000px;}
.yeb{bottom:562.935000px;}
.ya6{bottom:566.715000px;}
.y1b{bottom:571.935000px;}
.y11c{bottom:574.275000px;}
.y4f{bottom:575.715000px;}
.y8b{bottom:578.775000px;}
.yb1{bottom:581.475000px;}
.yea{bottom:583.995000px;}
.ya5{bottom:587.775000px;}
.y1a{bottom:592.995000px;}
.y11b{bottom:595.365000px;}
.y4e{bottom:596.805000px;}
.y8a{bottom:599.865000px;}
.yb0{bottom:602.565000px;}
.ye9{bottom:605.085000px;}
.ya4{bottom:608.865000px;}
.y11a{bottom:616.425000px;}
.y19{bottom:616.605000px;}
.y4d{bottom:617.865000px;}
.y89{bottom:620.925000px;}
.yaf{bottom:623.625000px;}
.ye8{bottom:626.145000px;}
.y71{bottom:629.565000px;}
.ya3{bottom:629.925000px;}
.y119{bottom:637.485000px;}
.yae{bottom:638.745000px;}
.y4c{bottom:638.925000px;}
.ye7{bottom:640.545000px;}
.y88{bottom:641.805000px;}
.y18{bottom:646.485000px;}
.ya2{bottom:650.805000px;}
.yac{bottom:657.465000px;}
.y118{bottom:658.545000px;}
.ye3{bottom:659.625000px;}
.y4b{bottom:659.805000px;}
.y17{bottom:667.545000px;}
.y87{bottom:671.865000px;}
.y67{bottom:672.480000px;}
.y6f{bottom:675.360000px;}
.yaa{bottom:677.445000px;}
.ye6{bottom:677.985000px;}
.y117{bottom:679.605000px;}
.y4a{bottom:680.865000px;}
.y16{bottom:688.605000px;}
.y69{bottom:688.965000px;}
.y86{bottom:692.925000px;}
.ye5{bottom:696.165000px;}
.ya8{bottom:696.885000px;}
.y116{bottom:700.665000px;}
.y49{bottom:701.925000px;}
.y15{bottom:709.665000px;}
.y85{bottom:713.985000px;}
.ydf{bottom:714.525000px;}
.y115{bottom:721.725000px;}
.y48{bottom:722.985000px;}
.y6d{bottom:723.960000px;}
.y14{bottom:730.725000px;}
.ye2{bottom:732.885000px;}
.y84{bottom:735.045000px;}
.y114{bottom:742.785000px;}
.y47{bottom:744.045000px;}
.ye1{bottom:751.245000px;}
.y13{bottom:751.785000px;}
.y83{bottom:756.105000px;}
.y113{bottom:763.845000px;}
.y46{bottom:765.105000px;}
.yde{bottom:770.145000px;}
.y12{bottom:772.845000px;}
.y82{bottom:777.165000px;}
.y112{bottom:784.905000px;}
.y45{bottom:786.165000px;}
.y11{bottom:793.905000px;}
.ydd{bottom:795.885000px;}
.y81{bottom:798.225000px;}
.y6a{bottom:801.540000px;}
.y111{bottom:805.965000px;}
.y44{bottom:807.225000px;}
.y10{bottom:814.965000px;}
.ydc{bottom:816.945000px;}
.y80{bottom:819.285000px;}
.y110{bottom:827.025000px;}
.y43{bottom:828.285000px;}
.yf{bottom:836.025000px;}
.ydb{bottom:838.005000px;}
.y7f{bottom:840.345000px;}
.y10f{bottom:848.085000px;}
.y42{bottom:849.345000px;}
.ye{bottom:857.085000px;}
.yda{bottom:859.065000px;}
.y7e{bottom:861.405000px;}
.y10e{bottom:869.190000px;}
.y41{bottom:870.450000px;}
.yd{bottom:878.190000px;}
.yd9{bottom:880.170000px;}
.y7d{bottom:882.510000px;}
.y10d{bottom:890.250000px;}
.y40{bottom:891.510000px;}
.yd8{bottom:901.230000px;}
.yc{bottom:901.410000px;}
.y7c{bottom:903.570000px;}
.y10c{bottom:911.310000px;}
.y3f{bottom:912.570000px;}
.yd7{bottom:922.290000px;}
.yb{bottom:922.470000px;}
.y7b{bottom:924.630000px;}
.y10b{bottom:932.370000px;}
.y3e{bottom:933.630000px;}
.yd6{bottom:943.350000px;}
.ya{bottom:944.430000px;}
.y7a{bottom:945.690000px;}
.y10a{bottom:946.770000px;}
.y3d{bottom:954.690000px;}
.yd5{bottom:964.410000px;}
.y107{bottom:965.850000px;}
.y9{bottom:966.750000px;}
.y3c{bottom:975.750000px;}
.ycf{bottom:979.530000px;}
.y109{bottom:984.030000px;}
.y79{bottom:987.810000px;}
.y8{bottom:991.950000px;}
.y3b{bottom:996.810000px;}
.yd4{bottom:997.890000px;}
.y108{bottom:1002.390000px;}
.y78{bottom:1008.870000px;}
.yd3{bottom:1016.250000px;}
.y3a{bottom:1017.870000px;}
.y104{bottom:1020.750000px;}
.y7{bottom:1025.610000px;}
.y77{bottom:1029.930000px;}
.yd1{bottom:1034.610000px;}
.y39{bottom:1038.930000px;}
.y106{bottom:1039.110000px;}
.y76{bottom:1050.990000px;}
.yce{bottom:1054.770000px;}
.y105{bottom:1057.290000px;}
.y38{bottom:1059.990000px;}
.y5{bottom:1064.310000px;}
.y75{bottom:1072.050000px;}
.y103{bottom:1076.370000px;}
.y37{bottom:1081.050000px;}
.y74{bottom:1093.110000px;}
.y4{bottom:1095.090000px;}
.y36{bottom:1102.110000px;}
.y73{bottom:1114.170000px;}
.y35{bottom:1123.170000px;}
.y3{bottom:1125.870000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1156.500000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1188.720000px;}
.y32{bottom:1193.220000px;}
.h14{height:18.180000px;}
.h13{height:18.360000px;}
.h1c{height:18.396000px;}
.hf{height:18.720000px;}
.h17{height:18.900000px;}
.h12{height:19.440000px;}
.h10{height:19.980000px;}
.hd{height:29.700000px;}
.hb{height:30.780000px;}
.hc{height:32.400000px;}
.h15{height:36.540000px;}
.he{height:45.578672px;}
.h9{height:49.992188px;}
.h1d{height:52.260820px;}
.ha{height:52.740000px;}
.h19{height:54.900000px;}
.h1b{height:54.936000px;}
.h8{height:55.800000px;}
.h11{height:55.980000px;}
.h7{height:59.439023px;}
.h1a{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h18{height:74.520000px;}
.h2{height:86.255508px;}
.h16{height:91.620000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:52.380000px;}
.w1b{width:67.860000px;}
.w15{width:74.340000px;}
.wf{width:80.820000px;}
.w19{width:94.860000px;}
.w10{width:102.996000px;}
.w13{width:104.040000px;}
.w18{width:107.676000px;}
.wd{width:113.076000px;}
.w1c{width:113.436000px;}
.w12{width:118.116000px;}
.w24{width:125.316000px;}
.w1f{width:127.656000px;}
.wc{width:128.340000px;}
.w1a{width:128.916000px;}
.w5{width:136.080000px;}
.w6{width:137.160000px;}
.w7{width:138.096000px;}
.w14{width:141.516000px;}
.w1e{width:144.000000px;}
.w16{width:144.756000px;}
.wa{width:148.356000px;}
.w21{width:149.976000px;}
.we{width:153.570000px;}
.w23{width:154.620000px;}
.w3{width:155.880000px;}
.w4{width:160.740000px;}
.w17{width:181.290000px;}
.wb{width:183.810000px;}
.w20{width:184.530000px;}
.w11{width:219.090000px;}
.w1d{width:334.515000px;}
.w9{width:388.155000px;}
.w22{width:606.165000px;}
.w25{width:614.445000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x12{left:11.775000px;}
.x10{left:28.725000px;}
.x13{left:30.090000px;}
.xa{left:36.210000px;}
.xe{left:42.765000px;}
.xd{left:47.445000px;}
.x6{left:53.999987px;}
.x2c{left:80.999987px;}
.x2d{left:108.035987px;}
.x28{left:139.356000px;}
.x25{left:143.496000px;}
.x14{left:152.130000px;}
.x1d{left:155.190000px;}
.x18{left:157.170000px;}
.x5{left:177.329987px;}
.x7{left:189.929987px;}
.x9{left:192.600000px;}
.x16{left:204.510000px;}
.x8{left:207.929987px;}
.x21{left:229.530000px;}
.xb{left:232.049987px;}
.x1c{left:237.990000px;}
.x24{left:257.970000px;}
.x3{left:271.469987px;}
.x2b{left:323.895000px;}
.x27{left:328.035000px;}
.x19{left:340.995000px;}
.x2{left:350.534987px;}
.x22{left:371.415000px;}
.x1e{left:374.295000px;}
.x4{left:418.214987px;}
.xc{left:440.280000px;}
.x11{left:454.320000px;}
.xf{left:455.400000px;}
.x1a{left:469.335000px;}
.x29{left:473.865000px;}
.x1{left:478.544987px;}
.x1f{left:492.405000px;}
.x23{left:573.945000px;}
.x1b{left:582.405000px;}
.x17{left:592.665000px;}
.x20{left:596.445000px;}
.x26{left:622.005000px;}
.x2a{left:628.485000px;}
.x2e{left:839.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1c{letter-spacing:-0.698667pt;}
.lsc{letter-spacing:-0.515200pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls23{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.276267pt;}
.ls14{letter-spacing:-0.213867pt;}
.ls6{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.095467pt;}
.ls1d{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.051840pt;}
.lsb{letter-spacing:-0.028800pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.034560pt;}
.ls21{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.053867pt;}
.ls2d{letter-spacing:0.054827pt;}
.ls22{letter-spacing:0.069333pt;}
.ls1{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls29{letter-spacing:0.150400pt;}
.ls19{letter-spacing:0.154667pt;}
.ls15{letter-spacing:0.154880pt;}
.ls20{letter-spacing:0.155733pt;}
.ls2c{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.160427pt;}
.lsf{letter-spacing:0.165867pt;}
.ls25{letter-spacing:0.208533pt;}
.ls28{letter-spacing:0.216320pt;}
.ls31{letter-spacing:0.216533pt;}
.ls18{letter-spacing:0.261547pt;}
.ls30{letter-spacing:0.269333pt;}
.ls2a{letter-spacing:0.269440pt;}
.lsd{letter-spacing:0.272000pt;}
.ls1a{letter-spacing:0.314880pt;}
.ls27{letter-spacing:0.376320pt;}
.ls12{letter-spacing:0.438400pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls2{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.762667pt;}
.ls16{letter-spacing:0.794880pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.805333pt;}
.ls17{letter-spacing:0.912000pt;}
.ls2b{letter-spacing:10.832640pt;}
.ls26{letter-spacing:29.594880pt;}
.ls24{letter-spacing:37.840640pt;}
.ls33{letter-spacing:38.554880pt;}
.ws0{word-spacing:-16.957440pt;}
.wsa{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.332480pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.591787pt;}
.ws9{word-spacing:-12.277120pt;}
.ws16{word-spacing:-12.274453pt;}
.ws17{word-spacing:-12.221653pt;}
.ws14{word-spacing:-12.213653pt;}
.wsd{word-spacing:-12.170987pt;}
.ws18{word-spacing:-12.164480pt;}
.ws11{word-spacing:-12.160853pt;}
.ws12{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.976320pt;}
.wsf{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.947520pt;}
.ws10{word-spacing:-11.909653pt;}
.wsb{word-spacing:-11.791253pt;}
.wse{word-spacing:-11.489920pt;}
.ws13{word-spacing:-7.879893pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-473.065387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.749547pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-257.100587pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._27{margin-left:-203.325440pt;}
._19{margin-left:-201.366400pt;}
._18{margin-left:-195.053013pt;}
._11{margin-left:-179.813547pt;}
._1a{margin-left:-177.730560pt;}
._25{margin-left:-174.407680pt;}
._24{margin-left:-168.615680pt;}
._10{margin-left:-152.048640pt;}
._2a{margin-left:-149.850880pt;}
._f{margin-left:-147.102720pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.394133pt;}
._c{margin-left:-132.168960pt;}
._29{margin-left:-127.226880pt;}
._12{margin-left:-125.599147pt;}
._e{margin-left:-119.281920pt;}
._26{margin-left:-106.985387pt;}
._23{margin-left:-105.379840pt;}
._13{margin-left:-103.166720pt;}
._28{margin-left:-97.457280pt;}
._1e{margin-left:-91.137280pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._15{margin-left:-73.006080pt;}
._17{margin-left:-59.292160pt;}
._16{margin-left:-44.074027pt;}
._22{margin-left:-29.306880pt;}
._1b{margin-left:-27.197653pt;}
._3c{margin-left:-7.676480pt;}
._3f{margin-left:-6.686720pt;}
._2e{margin-left:-4.928000pt;}
._2b{margin-left:-3.919040pt;}
._3a{margin-left:-2.910720pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._2f{width:2.371200pt;}
._32{width:3.682773pt;}
._37{width:4.597973pt;}
._30{width:5.577600pt;}
._31{width:6.487040pt;}
._33{width:7.458133pt;}
._34{width:8.365867pt;}
._35{width:9.313707pt;}
._36{width:10.897707pt;}
._2d{width:11.896960pt;}
._2c{width:12.853120pt;}
._41{width:13.813333pt;}
._3b{width:14.714240pt;}
._39{width:16.042240pt;}
._38{width:17.264000pt;}
._3e{width:19.125760pt;}
._3d{width:20.038400pt;}
._40{width:30.066240pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.520000pt;}
.yab{bottom:3.840000pt;}
.ya9{bottom:4.000000pt;}
.yb9{bottom:4.480000pt;}
.yd2{bottom:4.640000pt;}
.yad{bottom:4.960000pt;}
.y72{bottom:11.520000pt;}
.y6c{bottom:12.093333pt;}
.y6e{bottom:12.253333pt;}
.y70{bottom:13.693333pt;}
.yc3{bottom:19.840000pt;}
.y6b{bottom:31.933333pt;}
.y68{bottom:34.493333pt;}
.ye4{bottom:36.000000pt;}
.yf6{bottom:36.040000pt;}
.ye0{bottom:36.160000pt;}
.yb7{bottom:36.960000pt;}
.yd0{bottom:53.600000pt;}
.y6{bottom:54.752000pt;}
.yc5{bottom:68.640000pt;}
.y66{bottom:81.152000pt;}
.ycd{bottom:89.152000pt;}
.ya1{bottom:94.592000pt;}
.y31{bottom:96.672000pt;}
.y133{bottom:96.832000pt;}
.y132{bottom:98.592000pt;}
.y65{bottom:99.872000pt;}
.y102{bottom:106.112000pt;}
.ycc{bottom:107.872000pt;}
.ya0{bottom:113.312000pt;}
.y30{bottom:115.392000pt;}
.y131{bottom:117.312000pt;}
.y64{bottom:118.592000pt;}
.y101{bottom:124.832000pt;}
.ycb{bottom:126.592000pt;}
.y9f{bottom:132.032000pt;}
.y2f{bottom:134.106667pt;}
.y130{bottom:136.026667pt;}
.y63{bottom:137.306667pt;}
.y100{bottom:143.546667pt;}
.yca{bottom:145.306667pt;}
.y9e{bottom:150.746667pt;}
.y2e{bottom:152.826667pt;}
.y12f{bottom:154.746667pt;}
.y62{bottom:156.026667pt;}
.yc4{bottom:158.746667pt;}
.yff{bottom:162.266667pt;}
.y9d{bottom:169.466667pt;}
.y2d{bottom:171.546667pt;}
.y12e{bottom:173.466667pt;}
.y61{bottom:174.746667pt;}
.yc9{bottom:175.066667pt;}
.yfe{bottom:180.986667pt;}
.y9c{bottom:188.186667pt;}
.y2c{bottom:190.266667pt;}
.yc8{bottom:191.386667pt;}
.y12d{bottom:192.186667pt;}
.y60{bottom:193.466667pt;}
.yfd{bottom:199.706667pt;}
.y9b{bottom:206.906667pt;}
.yc7{bottom:207.546667pt;}
.y2b{bottom:208.986667pt;}
.y12c{bottom:210.906667pt;}
.y5f{bottom:212.186667pt;}
.yfc{bottom:212.506667pt;}
.yc6{bottom:223.866667pt;}
.y9a{bottom:225.626667pt;}
.y2a{bottom:227.706667pt;}
.yf9{bottom:229.466667pt;}
.y12b{bottom:229.626667pt;}
.y5e{bottom:230.906667pt;}
.yc2{bottom:240.826667pt;}
.y99{bottom:244.346667pt;}
.yfb{bottom:245.786667pt;}
.y29{bottom:246.426667pt;}
.y12a{bottom:248.346667pt;}
.y5d{bottom:249.626667pt;}
.ya7{bottom:252.346667pt;}
.yfa{bottom:261.946667pt;}
.y28{bottom:265.146667pt;}
.y129{bottom:267.066667pt;}
.y5c{bottom:268.346667pt;}
.y98{bottom:271.066667pt;}
.yf5{bottom:278.266667pt;}
.yc1{bottom:280.026667pt;}
.y27{bottom:283.866667pt;}
.y128{bottom:285.786667pt;}
.y5b{bottom:287.066667pt;}
.y97{bottom:289.786667pt;}
.yf8{bottom:294.626667pt;}
.yc0{bottom:298.786667pt;}
.y26{bottom:302.626667pt;}
.y127{bottom:304.546667pt;}
.y5a{bottom:305.826667pt;}
.y96{bottom:308.546667pt;}
.yf7{bottom:310.786667pt;}
.ybf{bottom:317.506667pt;}
.y25{bottom:321.346667pt;}
.y126{bottom:323.266667pt;}
.y59{bottom:324.546667pt;}
.y95{bottom:327.266667pt;}
.yf4{bottom:327.746667pt;}
.ybe{bottom:336.226667pt;}
.y24{bottom:340.066667pt;}
.y125{bottom:341.986667pt;}
.y58{bottom:343.266667pt;}
.y94{bottom:345.986667pt;}
.yf3{bottom:350.626667pt;}
.ybd{bottom:354.946667pt;}
.y23{bottom:358.626667pt;}
.y124{bottom:360.706667pt;}
.y57{bottom:361.986667pt;}
.y93{bottom:364.706667pt;}
.yf2{bottom:369.346667pt;}
.ybc{bottom:373.666667pt;}
.y22{bottom:377.346667pt;}
.y123{bottom:379.426667pt;}
.y56{bottom:380.706667pt;}
.y92{bottom:383.426667pt;}
.yf1{bottom:388.066667pt;}
.ybb{bottom:392.226667pt;}
.y21{bottom:396.066667pt;}
.y122{bottom:398.146667pt;}
.y55{bottom:399.426667pt;}
.y91{bottom:402.146667pt;}
.yb6{bottom:405.826667pt;}
.yf0{bottom:406.786667pt;}
.y20{bottom:414.786667pt;}
.y121{bottom:416.866667pt;}
.y54{bottom:418.146667pt;}
.y90{bottom:420.866667pt;}
.yba{bottom:421.986667pt;}
.yef{bottom:425.506667pt;}
.y1f{bottom:433.506667pt;}
.y120{bottom:435.586667pt;}
.y53{bottom:436.866667pt;}
.yb8{bottom:438.306667pt;}
.y8f{bottom:439.586667pt;}
.yee{bottom:444.226667pt;}
.y1e{bottom:452.226667pt;}
.y11f{bottom:454.306667pt;}
.y52{bottom:455.586667pt;}
.yb4{bottom:456.226667pt;}
.y8e{bottom:458.306667pt;}
.yed{bottom:462.946667pt;}
.y1d{bottom:470.946667pt;}
.y11e{bottom:473.026667pt;}
.y51{bottom:474.306667pt;}
.y8d{bottom:477.026667pt;}
.yb3{bottom:479.426667pt;}
.yec{bottom:481.666667pt;}
.y1c{bottom:489.666667pt;}
.y11d{bottom:491.746667pt;}
.y50{bottom:493.026667pt;}
.y8c{bottom:495.746667pt;}
.yb2{bottom:498.146667pt;}
.yeb{bottom:500.386667pt;}
.ya6{bottom:503.746667pt;}
.y1b{bottom:508.386667pt;}
.y11c{bottom:510.466667pt;}
.y4f{bottom:511.746667pt;}
.y8b{bottom:514.466667pt;}
.yb1{bottom:516.866667pt;}
.yea{bottom:519.106667pt;}
.ya5{bottom:522.466667pt;}
.y1a{bottom:527.106667pt;}
.y11b{bottom:529.213333pt;}
.y4e{bottom:530.493333pt;}
.y8a{bottom:533.213333pt;}
.yb0{bottom:535.613333pt;}
.ye9{bottom:537.853333pt;}
.ya4{bottom:541.213333pt;}
.y11a{bottom:547.933333pt;}
.y19{bottom:548.093333pt;}
.y4d{bottom:549.213333pt;}
.y89{bottom:551.933333pt;}
.yaf{bottom:554.333333pt;}
.ye8{bottom:556.573333pt;}
.y71{bottom:559.613333pt;}
.ya3{bottom:559.933333pt;}
.y119{bottom:566.653333pt;}
.yae{bottom:567.773333pt;}
.y4c{bottom:567.933333pt;}
.ye7{bottom:569.373333pt;}
.y88{bottom:570.493333pt;}
.y18{bottom:574.653333pt;}
.ya2{bottom:578.493333pt;}
.yac{bottom:584.413333pt;}
.y118{bottom:585.373333pt;}
.ye3{bottom:586.333333pt;}
.y4b{bottom:586.493333pt;}
.y17{bottom:593.373333pt;}
.y87{bottom:597.213333pt;}
.y67{bottom:597.760000pt;}
.y6f{bottom:600.320000pt;}
.yaa{bottom:602.173333pt;}
.ye6{bottom:602.653333pt;}
.y117{bottom:604.093333pt;}
.y4a{bottom:605.213333pt;}
.y16{bottom:612.093333pt;}
.y69{bottom:612.413333pt;}
.y86{bottom:615.933333pt;}
.ye5{bottom:618.813333pt;}
.ya8{bottom:619.453333pt;}
.y116{bottom:622.813333pt;}
.y49{bottom:623.933333pt;}
.y15{bottom:630.813333pt;}
.y85{bottom:634.653333pt;}
.ydf{bottom:635.133333pt;}
.y115{bottom:641.533333pt;}
.y48{bottom:642.653333pt;}
.y6d{bottom:643.520000pt;}
.y14{bottom:649.533333pt;}
.ye2{bottom:651.453333pt;}
.y84{bottom:653.373333pt;}
.y114{bottom:660.253333pt;}
.y47{bottom:661.373333pt;}
.ye1{bottom:667.773333pt;}
.y13{bottom:668.253333pt;}
.y83{bottom:672.093333pt;}
.y113{bottom:678.973333pt;}
.y46{bottom:680.093333pt;}
.yde{bottom:684.573333pt;}
.y12{bottom:686.973333pt;}
.y82{bottom:690.813333pt;}
.y112{bottom:697.693333pt;}
.y45{bottom:698.813333pt;}
.y11{bottom:705.693333pt;}
.ydd{bottom:707.453333pt;}
.y81{bottom:709.533333pt;}
.y6a{bottom:712.480000pt;}
.y111{bottom:716.413333pt;}
.y44{bottom:717.533333pt;}
.y10{bottom:724.413333pt;}
.ydc{bottom:726.173333pt;}
.y80{bottom:728.253333pt;}
.y110{bottom:735.133333pt;}
.y43{bottom:736.253333pt;}
.yf{bottom:743.133333pt;}
.ydb{bottom:744.893333pt;}
.y7f{bottom:746.973333pt;}
.y10f{bottom:753.853333pt;}
.y42{bottom:754.973333pt;}
.ye{bottom:761.853333pt;}
.yda{bottom:763.613333pt;}
.y7e{bottom:765.693333pt;}
.y10e{bottom:772.613333pt;}
.y41{bottom:773.733333pt;}
.yd{bottom:780.613333pt;}
.yd9{bottom:782.373333pt;}
.y7d{bottom:784.453333pt;}
.y10d{bottom:791.333333pt;}
.y40{bottom:792.453333pt;}
.yd8{bottom:801.093333pt;}
.yc{bottom:801.253333pt;}
.y7c{bottom:803.173333pt;}
.y10c{bottom:810.053333pt;}
.y3f{bottom:811.173333pt;}
.yd7{bottom:819.813333pt;}
.yb{bottom:819.973333pt;}
.y7b{bottom:821.893333pt;}
.y10b{bottom:828.773333pt;}
.y3e{bottom:829.893333pt;}
.yd6{bottom:838.533333pt;}
.ya{bottom:839.493333pt;}
.y7a{bottom:840.613333pt;}
.y10a{bottom:841.573333pt;}
.y3d{bottom:848.613333pt;}
.yd5{bottom:857.253333pt;}
.y107{bottom:858.533333pt;}
.y9{bottom:859.333333pt;}
.y3c{bottom:867.333333pt;}
.ycf{bottom:870.693333pt;}
.y109{bottom:874.693333pt;}
.y79{bottom:878.053333pt;}
.y8{bottom:881.733333pt;}
.y3b{bottom:886.053333pt;}
.yd4{bottom:887.013333pt;}
.y108{bottom:891.013333pt;}
.y78{bottom:896.773333pt;}
.yd3{bottom:903.333333pt;}
.y3a{bottom:904.773333pt;}
.y104{bottom:907.333333pt;}
.y7{bottom:911.653333pt;}
.y77{bottom:915.493333pt;}
.yd1{bottom:919.653333pt;}
.y39{bottom:923.493333pt;}
.y106{bottom:923.653333pt;}
.y76{bottom:934.213333pt;}
.yce{bottom:937.573333pt;}
.y105{bottom:939.813333pt;}
.y38{bottom:942.213333pt;}
.y5{bottom:946.053333pt;}
.y75{bottom:952.933333pt;}
.y103{bottom:956.773333pt;}
.y37{bottom:960.933333pt;}
.y74{bottom:971.653333pt;}
.y4{bottom:973.413333pt;}
.y36{bottom:979.653333pt;}
.y73{bottom:990.373333pt;}
.y35{bottom:998.373333pt;}
.y3{bottom:1000.773333pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1028.000000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1056.640000pt;}
.y32{bottom:1060.640000pt;}
.h14{height:16.160000pt;}
.h13{height:16.320000pt;}
.h1c{height:16.352000pt;}
.hf{height:16.640000pt;}
.h17{height:16.800000pt;}
.h12{height:17.280000pt;}
.h10{height:17.760000pt;}
.hd{height:26.400000pt;}
.hb{height:27.360000pt;}
.hc{height:28.800000pt;}
.h15{height:32.480000pt;}
.he{height:40.514375pt;}
.h9{height:44.437500pt;}
.h1d{height:46.454062pt;}
.ha{height:46.880000pt;}
.h19{height:48.800000pt;}
.h1b{height:48.832000pt;}
.h8{height:49.600000pt;}
.h11{height:49.760000pt;}
.h7{height:52.834688pt;}
.h1a{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h18{height:66.240000pt;}
.h2{height:76.671562pt;}
.h16{height:81.440000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:46.560000pt;}
.w1b{width:60.320000pt;}
.w15{width:66.080000pt;}
.wf{width:71.840000pt;}
.w19{width:84.320000pt;}
.w10{width:91.552000pt;}
.w13{width:92.480000pt;}
.w18{width:95.712000pt;}
.wd{width:100.512000pt;}
.w1c{width:100.832000pt;}
.w12{width:104.992000pt;}
.w24{width:111.392000pt;}
.w1f{width:113.472000pt;}
.wc{width:114.080000pt;}
.w1a{width:114.592000pt;}
.w5{width:120.960000pt;}
.w6{width:121.920000pt;}
.w7{width:122.752000pt;}
.w14{width:125.792000pt;}
.w1e{width:128.000000pt;}
.w16{width:128.672000pt;}
.wa{width:131.872000pt;}
.w21{width:133.312000pt;}
.we{width:136.506667pt;}
.w23{width:137.440000pt;}
.w3{width:138.560000pt;}
.w4{width:142.880000pt;}
.w17{width:161.146667pt;}
.wb{width:163.386667pt;}
.w20{width:164.026667pt;}
.w11{width:194.746667pt;}
.w1d{width:297.346667pt;}
.w9{width:345.026667pt;}
.w22{width:538.813333pt;}
.w25{width:546.173333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x12{left:10.466667pt;}
.x10{left:25.533333pt;}
.x13{left:26.746667pt;}
.xa{left:32.186667pt;}
.xe{left:38.013333pt;}
.xd{left:42.173333pt;}
.x6{left:47.999988pt;}
.x2c{left:71.999988pt;}
.x2d{left:96.031988pt;}
.x28{left:123.872000pt;}
.x25{left:127.552000pt;}
.x14{left:135.226667pt;}
.x1d{left:137.946667pt;}
.x18{left:139.706667pt;}
.x5{left:157.626655pt;}
.x7{left:168.826655pt;}
.x9{left:171.200000pt;}
.x16{left:181.786667pt;}
.x8{left:184.826655pt;}
.x21{left:204.026667pt;}
.xb{left:206.266655pt;}
.x1c{left:211.546667pt;}
.x24{left:229.306667pt;}
.x3{left:241.306655pt;}
.x2b{left:287.906667pt;}
.x27{left:291.586667pt;}
.x19{left:303.106667pt;}
.x2{left:311.586655pt;}
.x22{left:330.146667pt;}
.x1e{left:332.706667pt;}
.x4{left:371.746655pt;}
.xc{left:391.360000pt;}
.x11{left:403.840000pt;}
.xf{left:404.800000pt;}
.x1a{left:417.186667pt;}
.x29{left:421.213333pt;}
.x1{left:425.373322pt;}
.x1f{left:437.693333pt;}
.x23{left:510.173333pt;}
.x1b{left:517.693333pt;}
.x17{left:526.813333pt;}
.x20{left:530.173333pt;}
.x26{left:552.893333pt;}
.x2a{left:558.653333pt;}
.x2e{left:746.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; }
  