
    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_6e9eeb4c3ac0235da1e5ac03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_159c2893a2996898d4a151f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a44ddd01cb1d6c3982cac1e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_048bee9ba87407ab083897b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_a5e22fb6c3fcc57d8f68a270.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_6ead972f0c78e1bdcbd933d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860352;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_323e767e1547096db6f74f3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.070312;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_89cd408afca304980f1f9a47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_648bf8f5947dfd744e9b1648.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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);}
.v6{vertical-align:-23.760000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:30.240000px;}
.v2{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.654000px;}
.ls22{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.337200px;}
.ls1d{letter-spacing:-0.322800px;}
.lsf{letter-spacing:-0.292200px;}
.ls2a{letter-spacing:-0.269400px;}
.ls26{letter-spacing:-0.256200px;}
.ls6{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.205200px;}
.ls23{letter-spacing:-0.202800px;}
.ls27{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.177000px;}
.lse{letter-spacing:-0.147000px;}
.ls7{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.105000px;}
.ls1a{letter-spacing:-0.103800px;}
.ls1b{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.010080px;}
.ls8{letter-spacing:0.022320px;}
.ls13{letter-spacing:0.061800px;}
.ls0{letter-spacing:0.067680px;}
.ls4{letter-spacing:0.067800px;}
.ls2d{letter-spacing:0.090600px;}
.lsc{letter-spacing:0.132600px;}
.ls28{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.148800px;}
.ls1f{letter-spacing:0.177600px;}
.ls20{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.208200px;}
.ls30{letter-spacing:0.223800px;}
.ls2f{letter-spacing:0.233400px;}
.ls24{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.267000px;}
.ls2c{letter-spacing:0.269280px;}
.ls2e{letter-spacing:0.269400px;}
.ls15{letter-spacing:0.272400px;}
.ls5{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.295200px;}
.ls10{letter-spacing:0.301200px;}
.ls12{letter-spacing:0.322800px;}
.ls11{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.858000px;}
.ls29{letter-spacing:0.864000px;}
.ls1{letter-spacing:1.127520px;}
.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;}
}
.ws2{word-spacing:-29.180280px;}
.ws1{word-spacing:-29.112480px;}
.ws0{word-spacing:-28.458480px;}
.ws2d{word-spacing:-21.420000px;}
.ws4{word-spacing:-21.060000px;}
.ws8{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.016000px;}
.ws7{word-spacing:-19.584000px;}
.wsa{word-spacing:-18.414720px;}
.ws9{word-spacing:-18.305520px;}
.ws5{word-spacing:-14.970240px;}
.ws30{word-spacing:-13.634520px;}
.ws2b{word-spacing:-13.410720px;}
.ws29{word-spacing:-13.229520px;}
.ws2a{word-spacing:-13.141320px;}
.ws1d{word-spacing:-12.186000px;}
.wsb{word-spacing:-11.609280px;}
.ws27{word-spacing:-11.169240px;}
.ws26{word-spacing:-11.162040px;}
.ws20{word-spacing:-11.110440px;}
.ws22{word-spacing:-11.082240px;}
.ws21{word-spacing:-11.079840px;}
.ws1e{word-spacing:-11.051040px;}
.wsc{word-spacing:-10.924560px;}
.wsd{word-spacing:-10.902240px;}
.wse{word-spacing:-10.776240px;}
.ws25{word-spacing:-10.699440px;}
.ws23{word-spacing:-10.697040px;}
.ws28{word-spacing:-10.646040px;}
.ws1f{word-spacing:-10.579440px;}
.ws24{word-spacing:-10.362240px;}
.ws13{word-spacing:-9.797760px;}
.ws14{word-spacing:-9.760560px;}
.ws11{word-spacing:-9.738960px;}
.ws18{word-spacing:-9.732960px;}
.ws17{word-spacing:-9.710160px;}
.ws15{word-spacing:-9.499560px;}
.ws1a{word-spacing:-9.447840px;}
.ws12{word-spacing:-9.437760px;}
.ws1c{word-spacing:-9.333960px;}
.wsf{word-spacing:-9.332760px;}
.ws1b{word-spacing:-9.260760px;}
.ws10{word-spacing:-9.145560px;}
.ws19{word-spacing:-9.100560px;}
.ws16{word-spacing:-9.077760px;}
.ws2f{word-spacing:-8.640120px;}
.ws2c{word-spacing:-8.406720px;}
.ws2e{word-spacing:-0.048240px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-2.527200px;}
._0{margin-left:-1.263600px;}
._2{width:1.010880px;}
._6{width:2.107440px;}
._3{width:3.240000px;}
._4{width:5.040000px;}
._d{width:6.408000px;}
._5{width:8.352000px;}
._7{width:9.648000px;}
._8{width:11.124720px;}
._9{width:12.523680px;}
._f{width:13.687200px;}
._a{width:14.904000px;}
._c{width:16.632000px;}
._e{width:18.372000px;}
._b{width:67.536000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:99.360000px;}
.y0{bottom:0.000000px;}
.y77{bottom:2.880000px;}
.y7d{bottom:3.060000px;}
.y68{bottom:3.240000px;}
.y6a{bottom:3.420000px;}
.ybc{bottom:3.450000px;}
.ya7{bottom:3.600000px;}
.ya5{bottom:3.780000px;}
.y91{bottom:6.480000px;}
.ya2{bottom:6.510000px;}
.y96{bottom:6.525000px;}
.y94{bottom:6.660000px;}
.y8{bottom:7.740000px;}
.y1c{bottom:7.770000px;}
.y4{bottom:8.460000px;}
.y55{bottom:13.140000px;}
.y5d{bottom:13.170000px;}
.y5b{bottom:13.320000px;}
.y76{bottom:15.660000px;}
.ye7{bottom:17.820000px;}
.y102{bottom:17.850000px;}
.y124{bottom:17.865000px;}
.yef{bottom:24.660000px;}
.yfa{bottom:24.705000px;}
.yf3{bottom:24.840000px;}
.y10d{bottom:24.870000px;}
.y3{bottom:27.180000px;}
.y90{bottom:28.440000px;}
.y3d{bottom:30.960000px;}
.y7{bottom:31.500000px;}
.y1b{bottom:31.530000px;}
.yfb{bottom:31.545000px;}
.yf4{bottom:31.680000px;}
.y10e{bottom:31.710000px;}
.y112{bottom:32.220000px;}
.y129{bottom:38.520000px;}
.y121{bottom:38.565000px;}
.y54{bottom:41.580000px;}
.y117{bottom:45.360000px;}
.y11a{bottom:45.390000px;}
.y123{bottom:45.405000px;}
.y11e{bottom:45.540000px;}
.y11c{bottom:45.570000px;}
.y113{bottom:46.620000px;}
.y3c{bottom:54.000000px;}
.y1f{bottom:57.600000px;}
.y12a{bottom:59.220000px;}
.y122{bottom:59.265000px;}
.y6{bottom:59.400000px;}
.y1a{bottom:74.190000px;}
.y3b{bottom:77.220000px;}
.y1e{bottom:78.120000px;}
.y3a{bottom:100.440000px;}
.y5{bottom:101.520000px;}
.y73{bottom:116.820000px;}
.y19{bottom:120.090000px;}
.y39{bottom:123.480000px;}
.y2f{bottom:126.360000px;}
.y1d{bottom:132.300000px;}
.y119{bottom:135.360000px;}
.ya3{bottom:138.960000px;}
.y72{bottom:140.040000px;}
.y101{bottom:144.000000px;}
.y38{bottom:146.700000px;}
.y2{bottom:149.400000px;}
.ya1{bottom:155.340000px;}
.y18{bottom:156.600000px;}
.y71{bottom:163.290000px;}
.y2e{bottom:164.550000px;}
.y37{bottom:169.920000px;}
.ya0{bottom:177.870000px;}
.y30{bottom:180.930000px;}
.y100{bottom:182.190000px;}
.y70{bottom:186.510000px;}
.y36{bottom:192.960000px;}
.y9f{bottom:200.550000px;}
.y118{bottom:201.090000px;}
.y6f{bottom:209.730000px;}
.y35{bottom:216.180000px;}
.yff{bottom:220.170000px;}
.y9e{bottom:223.050000px;}
.y6e{bottom:233.130000px;}
.y34{bottom:239.445000px;}
.y9d{bottom:245.550000px;}
.y116{bottom:252.930000px;}
.y6d{bottom:256.350000px;}
.yfe{bottom:258.330000px;}
.y33{bottom:262.485000px;}
.y9c{bottom:268.230000px;}
.y6c{bottom:279.570000px;}
.y32{bottom:285.705000px;}
.y9b{bottom:290.730000px;}
.yfd{bottom:296.490000px;}
.y6b{bottom:302.790000px;}
.y31{bottom:308.925000px;}
.y9a{bottom:313.410000px;}
.y115{bottom:318.630000px;}
.y69{bottom:326.010000px;}
.yfc{bottom:334.470000px;}
.y99{bottom:335.910000px;}
.y17{bottom:340.410000px;}
.y67{bottom:350.850000px;}
.y98{bottom:358.410000px;}
.ye3{bottom:370.470000px;}
.y97{bottom:381.090000px;}
.yf9{bottom:386.490000px;}
.y16{bottom:389.730000px;}
.ye2{bottom:394.230000px;}
.y66{bottom:394.770000px;}
.y95{bottom:403.590000px;}
.yc8{bottom:416.955000px;}
.y65{bottom:417.855000px;}
.ye1{bottom:418.035000px;}
.y114{bottom:422.535000px;}
.y93{bottom:426.135000px;}
.yc7{bottom:432.615000px;}
.y64{bottom:434.055000px;}
.yf8{bottom:438.375000px;}
.y15{bottom:439.095000px;}
.ye0{bottom:441.975000px;}
.y92{bottom:448.815000px;}
.yc6{bottom:452.415000px;}
.y12f{bottom:461.415000px;}
.y63{bottom:463.215000px;}
.ydf{bottom:465.735000px;}
.y8f{bottom:471.315000px;}
.yc5{bottom:472.035000px;}
.y111{bottom:474.375000px;}
.yf7{bottom:476.535000px;}
.y14{bottom:488.415000px;}
.yde{bottom:489.495000px;}
.yc4{bottom:491.835000px;}
.y62{bottom:492.555000px;}
.y12e{bottom:500.295000px;}
.yc3{bottom:511.455000px;}
.ydd{bottom:513.255000px;}
.yf6{bottom:514.515000px;}
.y12d{bottom:520.815000px;}
.y61{bottom:521.715000px;}
.yc2{bottom:531.255000px;}
.y8e{bottom:537.195000px;}
.y13{bottom:537.735000px;}
.y2d{bottom:539.355000px;}
.y110{bottom:541.335000px;}
.y60{bottom:550.875000px;}
.yc1{bottom:551.055000px;}
.yf5{bottom:552.675000px;}
.ydc{bottom:560.955000px;}
.yc0{bottom:570.675000px;}
.y8d{bottom:574.095000px;}
.y2c{bottom:577.515000px;}
.y5f{bottom:580.215000px;}
.ydb{bottom:584.715000px;}
.y12c{bottom:586.515000px;}
.y12{bottom:587.235000px;}
.ybf{bottom:590.475000px;}
.y10f{bottom:593.175000px;}
.yf2{bottom:604.515000px;}
.yda{bottom:608.475000px;}
.y5e{bottom:609.375000px;}
.ybe{bottom:610.095000px;}
.y8c{bottom:611.895000px;}
.y2b{bottom:615.675000px;}
.y12b{bottom:624.675000px;}
.y8b{bottom:627.555000px;}
.ybd{bottom:629.895000px;}
.yd9{bottom:632.415000px;}
.y11{bottom:636.555000px;}
.y5c{bottom:638.535000px;}
.y10c{bottom:645.015000px;}
.ybb{bottom:649.515000px;}
.y8a{bottom:650.805000px;}
.y2a{bottom:654.045000px;}
.yd8{bottom:656.205000px;}
.yf1{bottom:656.565000px;}
.y128{bottom:662.865000px;}
.y5a{bottom:667.725000px;}
.y51{bottom:668.625000px;}
.yba{bottom:669.345000px;}
.y10{bottom:671.145000px;}
.y89{bottom:674.025000px;}
.yb9{bottom:689.145000px;}
.y50{bottom:692.385000px;}
.yd7{bottom:694.905000px;}
.y29{bottom:695.445000px;}
.y59{bottom:697.065000px;}
.y88{bottom:697.245000px;}
.yf{bottom:705.525000px;}
.yf0{bottom:708.405000px;}
.yb8{bottom:708.765000px;}
.y4f{bottom:716.145000px;}
.y87{bottom:720.645000px;}
.y58{bottom:726.225000px;}
.yb7{bottom:728.565000px;}
.yd6{bottom:733.785000px;}
.y4e{bottom:739.905000px;}
.y127{bottom:742.245000px;}
.y86{bottom:743.865000px;}
.y28{bottom:744.225000px;}
.yee{bottom:746.565000px;}
.yb6{bottom:748.185000px;}
.y10b{bottom:748.905000px;}
.ye{bottom:754.665000px;}
.y57{bottom:755.385000px;}
.y4d{bottom:763.845000px;}
.y85{bottom:767.085000px;}
.yb5{bottom:767.985000px;}
.yd5{bottom:772.665000px;}
.y56{bottom:784.725000px;}
.y4c{bottom:787.605000px;}
.yb4{bottom:787.785000px;}
.y84{bottom:790.305000px;}
.y27{bottom:792.825000px;}
.y126{bottom:794.265000px;}
.yd4{bottom:796.425000px;}
.yed{bottom:798.405000px;}
.y10a{bottom:800.745000px;}
.yd{bottom:803.985000px;}
.yb3{bottom:807.405000px;}
.y4b{bottom:811.365000px;}
.y83{bottom:813.525000px;}
.y53{bottom:813.885000px;}
.yd3{bottom:820.185000px;}
.yb2{bottom:828.645000px;}
.y4a{bottom:835.125000px;}
.yec{bottom:836.565000px;}
.y82{bottom:836.745000px;}
.y26{bottom:841.605000px;}
.yd2{bottom:843.945000px;}
.y125{bottom:846.105000px;}
.y109{bottom:852.765000px;}
.yc{bottom:853.305000px;}
.y49{bottom:859.065000px;}
.y81{bottom:860.145000px;}
.yd1{bottom:867.705000px;}
.yb1{bottom:869.145000px;}
.yeb{bottom:874.545000px;}
.y48{bottom:882.825000px;}
.y80{bottom:883.365000px;}
.y120{bottom:884.265000px;}
.y25{bottom:890.205000px;}
.yd0{bottom:891.645000px;}
.y52{bottom:893.085000px;}
.yb{bottom:902.670000px;}
.y108{bottom:904.650000px;}
.y47{bottom:906.630000px;}
.yb0{bottom:906.990000px;}
.yea{bottom:912.750000px;}
.ycf{bottom:915.450000px;}
.yaf{bottom:922.650000px;}
.y7f{bottom:929.850000px;}
.y46{bottom:930.390000px;}
.y24{bottom:939.030000px;}
.yce{bottom:939.210000px;}
.yae{bottom:940.470000px;}
.y107{bottom:942.810000px;}
.ya{bottom:949.830000px;}
.ye9{bottom:950.730000px;}
.y7e{bottom:953.070000px;}
.y45{bottom:954.330000px;}
.yad{bottom:958.290000px;}
.ycd{bottom:962.970000px;}
.y11f{bottom:963.690000px;}
.y9{bottom:973.230000px;}
.y7c{bottom:976.290000px;}
.y44{bottom:978.090000px;}
.y106{bottom:980.790000px;}
.ycc{bottom:986.910000px;}
.y23{bottom:987.630000px;}
.ye8{bottom:988.890000px;}
.y1{bottom:990.150000px;}
.yac{bottom:994.110000px;}
.y7b{bottom:999.690000px;}
.y43{bottom:1001.850000px;}
.ycb{bottom:1010.670000px;}
.yab{bottom:1011.930000px;}
.y7a{bottom:1022.910000px;}
.y42{bottom:1025.610000px;}
.ye6{bottom:1027.050000px;}
.y11d{bottom:1029.390000px;}
.yaa{bottom:1029.750000px;}
.y105{bottom:1032.810000px;}
.yca{bottom:1034.430000px;}
.y22{bottom:1036.410000px;}
.y79{bottom:1046.130000px;}
.ya9{bottom:1047.570000px;}
.y41{bottom:1049.370000px;}
.yc9{bottom:1058.190000px;}
.ya8{bottom:1065.390000px;}
.y78{bottom:1069.350000px;}
.y104{bottom:1070.790000px;}
.y40{bottom:1073.310000px;}
.ya6{bottom:1083.390000px;}
.y21{bottom:1085.010000px;}
.y75{bottom:1094.190000px;}
.y11b{bottom:1095.090000px;}
.y3f{bottom:1097.070000px;}
.ya4{bottom:1102.650000px;}
.ye5{bottom:1106.610000px;}
.y103{bottom:1122.810000px;}
.y20{bottom:1133.790000px;}
.ye4{bottom:1135.950000px;}
.y3e{bottom:1137.210000px;}
.y74{bottom:1141.380000px;}
.h1d{height:17.100000px;}
.h20{height:18.900000px;}
.h21{height:19.080000px;}
.h22{height:19.116000px;}
.h1a{height:21.780000px;}
.h1c{height:21.816000px;}
.h1b{height:21.960000px;}
.h12{height:22.500000px;}
.h15{height:22.536000px;}
.h16{height:25.560000px;}
.he{height:28.440000px;}
.h10{height:28.476000px;}
.h17{height:28.526484px;}
.hf{height:28.620000px;}
.h26{height:28.800000px;}
.h28{height:28.836000px;}
.h18{height:29.974219px;}
.h13{height:32.953008px;}
.h14{height:34.625391px;}
.h1e{height:36.887695px;}
.h1f{height:38.759766px;}
.h29{height:42.480000px;}
.h2b{height:42.516000px;}
.h2a{height:42.660000px;}
.h2c{height:42.696000px;}
.h19{height:43.740000px;}
.h25{height:45.281250px;}
.h3{height:47.545312px;}
.h27{height:50.312812px;}
.h33{height:55.299375px;}
.h2e{height:56.340000px;}
.h2f{height:56.376000px;}
.h31{height:56.520000px;}
.h30{height:56.556000px;}
.hd{height:56.880000px;}
.h2d{height:57.600000px;}
.hb{height:61.910156px;}
.h7{height:65.414180px;}
.hc{height:69.086250px;}
.h34{height:70.200000px;}
.h32{height:70.236000px;}
.h35{height:70.664062px;}
.h11{height:73.794375px;}
.ha{height:75.093750px;}
.h5{height:75.975469px;}
.h24{height:76.317188px;}
.h8{height:82.676953px;}
.h23{height:83.432813px;}
.h4{height:87.859687px;}
.h6{height:157.530000px;}
.h2{height:164.910000px;}
.h9{height:324.390000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2a{width:33.300000px;}
.w1b{width:35.280000px;}
.w22{width:42.120000px;}
.w27{width:42.156000px;}
.w28{width:42.336000px;}
.w29{width:43.560000px;}
.w16{width:44.856000px;}
.w14{width:47.340000px;}
.w26{width:47.880000px;}
.wd{width:48.060000px;}
.w10{width:48.096000px;}
.we{width:48.240000px;}
.wf{width:48.276000px;}
.w11{width:48.600000px;}
.w12{width:48.780000px;}
.w19{width:48.816000px;}
.w18{width:48.960000px;}
.w13{width:48.996000px;}
.w1a{width:49.140000px;}
.w1e{width:49.500000px;}
.w1d{width:49.536000px;}
.w1c{width:49.680000px;}
.w1f{width:49.716000px;}
.w20{width:50.040000px;}
.w15{width:50.220000px;}
.w17{width:52.740000px;}
.w25{width:52.776000px;}
.w24{width:52.920000px;}
.w23{width:52.956000px;}
.w2d{width:63.000000px;}
.wc{width:67.716000px;}
.w21{width:84.780000px;}
.w7{width:105.696000px;}
.w8{width:105.840000px;}
.w2b{width:106.200000px;}
.wb{width:112.896000px;}
.wa{width:119.160000px;}
.w9{width:119.196000px;}
.w6{width:129.096000px;}
.w2{width:142.740000px;}
.w2c{width:492.225000px;}
.w3{width:547.125000px;}
.w4{width:689.505000px;}
.w5{width:690.090000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:4.860000px;}
.x3a{left:6.480000px;}
.x18{left:7.596000px;}
.x6b{left:8.640000px;}
.x34{left:9.720000px;}
.x3d{left:11.880000px;}
.x33{left:13.320000px;}
.x69{left:14.394000px;}
.x31{left:15.840000px;}
.x5d{left:17.100000px;}
.x35{left:19.080000px;}
.x4a{left:20.880000px;}
.x32{left:21.960000px;}
.x5c{left:24.165000px;}
.x4b{left:26.274000px;}
.x6c{left:29.880000px;}
.x2d{left:30.960000px;}
.x6a{left:32.940000px;}
.x24{left:37.080000px;}
.x4e{left:57.645000px;}
.x21{left:64.125000px;}
.x1f{left:73.305000px;}
.x1d{left:74.730000px;}
.x4c{left:82.485000px;}
.x20{left:83.880000px;}
.x22{left:84.960000px;}
.x4d{left:86.580000px;}
.x1e{left:93.060000px;}
.x5e{left:95.580000px;}
.x17{left:98.640000px;}
.x6d{left:100.296000px;}
.x1{left:101.376000px;}
.x8{left:106.236000px;}
.xc{left:108.396000px;}
.x3{left:117.354000px;}
.x7{left:128.565000px;}
.x6e{left:134.316000px;}
.xd{left:138.096000px;}
.x5{left:142.605000px;}
.x23{left:153.030000px;}
.x6{left:156.825000px;}
.x42{left:191.910000px;}
.x25{left:201.450000px;}
.x15{left:216.939000px;}
.x19{left:228.630000px;}
.x4f{left:233.850000px;}
.x5f{left:235.290000px;}
.x43{left:241.950000px;}
.x4{left:244.470000px;}
.x13{left:249.519000px;}
.x36{left:251.130000px;}
.x50{left:276.330000px;}
.xb{left:283.890000px;}
.x60{left:288.570000px;}
.x44{left:291.990000px;}
.x26{left:298.515000px;}
.x37{left:300.495000px;}
.xa{left:305.715000px;}
.x11{left:311.655000px;}
.x14{left:315.579000px;}
.x51{left:329.655000px;}
.x1a{left:335.055000px;}
.x45{left:341.895000px;}
.x27{left:346.935000px;}
.x38{left:349.635000px;}
.x10{left:356.475000px;}
.xe{left:357.555000px;}
.xf{left:368.175000px;}
.x52{left:372.135000px;}
.x12{left:385.815000px;}
.x46{left:391.935000px;}
.x28{left:395.355000px;}
.x39{left:398.775000px;}
.x53{left:414.615000px;}
.x6f{left:435.855000px;}
.x16{left:441.255000px;}
.x29{left:443.955000px;}
.x9{left:446.475000px;}
.x61{left:447.915000px;}
.x54{left:467.895000px;}
.x2a{left:492.375000px;}
.x3b{left:497.055000px;}
.x62{left:501.225000px;}
.x55{left:521.025000px;}
.x2b{left:541.005000px;}
.x3c{left:542.265000px;}
.x63{left:554.325000px;}
.x1b{left:561.705000px;}
.x56{left:574.125000px;}
.x2c{left:589.425000px;}
.x47{left:591.945000px;}
.x3e{left:595.545000px;}
.x64{left:607.605000px;}
.x57{left:616.605000px;}
.x2e{left:637.845000px;}
.x48{left:641.985000px;}
.x3f{left:644.505000px;}
.x65{left:660.705000px;}
.x58{left:664.845000px;}
.x1c{left:681.585000px;}
.x2f{left:686.445000px;}
.x49{left:692.025000px;}
.x40{left:693.825000px;}
.x59{left:707.370000px;}
.x66{left:713.850000px;}
.x30{left:734.910000px;}
.x41{left:743.010000px;}
.x5a{left:749.850000px;}
.x67{left:766.950000px;}
.x5b{left:798.090000px;}
.x68{left:820.230000px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:26.880000pt;}
.v2{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.581333pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.299733pt;}
.ls1d{letter-spacing:-0.286933pt;}
.lsf{letter-spacing:-0.259733pt;}
.ls2a{letter-spacing:-0.239467pt;}
.ls26{letter-spacing:-0.227733pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.182400pt;}
.ls23{letter-spacing:-0.180267pt;}
.ls27{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.157333pt;}
.lse{letter-spacing:-0.130667pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.093333pt;}
.ls1a{letter-spacing:-0.092267pt;}
.ls1b{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.008960pt;}
.ls8{letter-spacing:0.019840pt;}
.ls13{letter-spacing:0.054933pt;}
.ls0{letter-spacing:0.060160pt;}
.ls4{letter-spacing:0.060267pt;}
.ls2d{letter-spacing:0.080533pt;}
.lsc{letter-spacing:0.117867pt;}
.ls28{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.132267pt;}
.ls1f{letter-spacing:0.157867pt;}
.ls20{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.185067pt;}
.ls30{letter-spacing:0.198933pt;}
.ls2f{letter-spacing:0.207467pt;}
.ls24{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.237333pt;}
.ls2c{letter-spacing:0.239360pt;}
.ls2e{letter-spacing:0.239467pt;}
.ls15{letter-spacing:0.242133pt;}
.ls5{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.262400pt;}
.ls10{letter-spacing:0.267733pt;}
.ls12{letter-spacing:0.286933pt;}
.ls11{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.762667pt;}
.ls29{letter-spacing:0.768000pt;}
.ls1{letter-spacing:1.002240pt;}
.ws2{word-spacing:-25.938027pt;}
.ws1{word-spacing:-25.877760pt;}
.ws0{word-spacing:-25.296427pt;}
.ws2d{word-spacing:-19.040000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws8{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws7{word-spacing:-17.408000pt;}
.wsa{word-spacing:-16.368640pt;}
.ws9{word-spacing:-16.271573pt;}
.ws5{word-spacing:-13.306880pt;}
.ws30{word-spacing:-12.119573pt;}
.ws2b{word-spacing:-11.920640pt;}
.ws29{word-spacing:-11.759573pt;}
.ws2a{word-spacing:-11.681173pt;}
.ws1d{word-spacing:-10.832000pt;}
.wsb{word-spacing:-10.319360pt;}
.ws27{word-spacing:-9.928213pt;}
.ws26{word-spacing:-9.921813pt;}
.ws20{word-spacing:-9.875947pt;}
.ws22{word-spacing:-9.850880pt;}
.ws21{word-spacing:-9.848747pt;}
.ws1e{word-spacing:-9.823147pt;}
.wsc{word-spacing:-9.710720pt;}
.wsd{word-spacing:-9.690880pt;}
.wse{word-spacing:-9.578880pt;}
.ws25{word-spacing:-9.510613pt;}
.ws23{word-spacing:-9.508480pt;}
.ws28{word-spacing:-9.463147pt;}
.ws1f{word-spacing:-9.403947pt;}
.ws24{word-spacing:-9.210880pt;}
.ws13{word-spacing:-8.709120pt;}
.ws14{word-spacing:-8.676053pt;}
.ws11{word-spacing:-8.656853pt;}
.ws18{word-spacing:-8.651520pt;}
.ws17{word-spacing:-8.631253pt;}
.ws15{word-spacing:-8.444053pt;}
.ws1a{word-spacing:-8.398080pt;}
.ws12{word-spacing:-8.389120pt;}
.ws1c{word-spacing:-8.296853pt;}
.wsf{word-spacing:-8.295787pt;}
.ws1b{word-spacing:-8.231787pt;}
.ws10{word-spacing:-8.129387pt;}
.ws19{word-spacing:-8.089387pt;}
.ws16{word-spacing:-8.069120pt;}
.ws2f{word-spacing:-7.680107pt;}
.ws2c{word-spacing:-7.472640pt;}
.ws2e{word-spacing:-0.042880pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-2.246400pt;}
._0{margin-left:-1.123200pt;}
._2{width:0.898560pt;}
._6{width:1.873280pt;}
._3{width:2.880000pt;}
._4{width:4.480000pt;}
._d{width:5.696000pt;}
._5{width:7.424000pt;}
._7{width:8.576000pt;}
._8{width:9.888640pt;}
._9{width:11.132160pt;}
._f{width:12.166400pt;}
._a{width:13.248000pt;}
._c{width:14.784000pt;}
._e{width:16.330667pt;}
._b{width:60.032000pt;}
.fsa{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:88.320000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:2.560000pt;}
.y7d{bottom:2.720000pt;}
.y68{bottom:2.880000pt;}
.y6a{bottom:3.040000pt;}
.ybc{bottom:3.066667pt;}
.ya7{bottom:3.200000pt;}
.ya5{bottom:3.360000pt;}
.y91{bottom:5.760000pt;}
.ya2{bottom:5.786667pt;}
.y96{bottom:5.800000pt;}
.y94{bottom:5.920000pt;}
.y8{bottom:6.880000pt;}
.y1c{bottom:6.906667pt;}
.y4{bottom:7.520000pt;}
.y55{bottom:11.680000pt;}
.y5d{bottom:11.706667pt;}
.y5b{bottom:11.840000pt;}
.y76{bottom:13.920000pt;}
.ye7{bottom:15.840000pt;}
.y102{bottom:15.866667pt;}
.y124{bottom:15.880000pt;}
.yef{bottom:21.920000pt;}
.yfa{bottom:21.960000pt;}
.yf3{bottom:22.080000pt;}
.y10d{bottom:22.106667pt;}
.y3{bottom:24.160000pt;}
.y90{bottom:25.280000pt;}
.y3d{bottom:27.520000pt;}
.y7{bottom:28.000000pt;}
.y1b{bottom:28.026667pt;}
.yfb{bottom:28.040000pt;}
.yf4{bottom:28.160000pt;}
.y10e{bottom:28.186667pt;}
.y112{bottom:28.640000pt;}
.y129{bottom:34.240000pt;}
.y121{bottom:34.280000pt;}
.y54{bottom:36.960000pt;}
.y117{bottom:40.320000pt;}
.y11a{bottom:40.346667pt;}
.y123{bottom:40.360000pt;}
.y11e{bottom:40.480000pt;}
.y11c{bottom:40.506667pt;}
.y113{bottom:41.440000pt;}
.y3c{bottom:48.000000pt;}
.y1f{bottom:51.200000pt;}
.y12a{bottom:52.640000pt;}
.y122{bottom:52.680000pt;}
.y6{bottom:52.800000pt;}
.y1a{bottom:65.946667pt;}
.y3b{bottom:68.640000pt;}
.y1e{bottom:69.440000pt;}
.y3a{bottom:89.280000pt;}
.y5{bottom:90.240000pt;}
.y73{bottom:103.840000pt;}
.y19{bottom:106.746667pt;}
.y39{bottom:109.760000pt;}
.y2f{bottom:112.320000pt;}
.y1d{bottom:117.600000pt;}
.y119{bottom:120.320000pt;}
.ya3{bottom:123.520000pt;}
.y72{bottom:124.480000pt;}
.y101{bottom:128.000000pt;}
.y38{bottom:130.400000pt;}
.y2{bottom:132.800000pt;}
.ya1{bottom:138.080000pt;}
.y18{bottom:139.200000pt;}
.y71{bottom:145.146667pt;}
.y2e{bottom:146.266667pt;}
.y37{bottom:151.040000pt;}
.ya0{bottom:158.106667pt;}
.y30{bottom:160.826667pt;}
.y100{bottom:161.946667pt;}
.y70{bottom:165.786667pt;}
.y36{bottom:171.520000pt;}
.y9f{bottom:178.266667pt;}
.y118{bottom:178.746667pt;}
.y6f{bottom:186.426667pt;}
.y35{bottom:192.160000pt;}
.yff{bottom:195.706667pt;}
.y9e{bottom:198.266667pt;}
.y6e{bottom:207.226667pt;}
.y34{bottom:212.840000pt;}
.y9d{bottom:218.266667pt;}
.y116{bottom:224.826667pt;}
.y6d{bottom:227.866667pt;}
.yfe{bottom:229.626667pt;}
.y33{bottom:233.320000pt;}
.y9c{bottom:238.426667pt;}
.y6c{bottom:248.506667pt;}
.y32{bottom:253.960000pt;}
.y9b{bottom:258.426667pt;}
.yfd{bottom:263.546667pt;}
.y6b{bottom:269.146667pt;}
.y31{bottom:274.600000pt;}
.y9a{bottom:278.586667pt;}
.y115{bottom:283.226667pt;}
.y69{bottom:289.786667pt;}
.yfc{bottom:297.306667pt;}
.y99{bottom:298.586667pt;}
.y17{bottom:302.586667pt;}
.y67{bottom:311.866667pt;}
.y98{bottom:318.586667pt;}
.ye3{bottom:329.306667pt;}
.y97{bottom:338.746667pt;}
.yf9{bottom:343.546667pt;}
.y16{bottom:346.426667pt;}
.ye2{bottom:350.426667pt;}
.y66{bottom:350.906667pt;}
.y95{bottom:358.746667pt;}
.yc8{bottom:370.626667pt;}
.y65{bottom:371.426667pt;}
.ye1{bottom:371.586667pt;}
.y114{bottom:375.586667pt;}
.y93{bottom:378.786667pt;}
.yc7{bottom:384.546667pt;}
.y64{bottom:385.826667pt;}
.yf8{bottom:389.666667pt;}
.y15{bottom:390.306667pt;}
.ye0{bottom:392.866667pt;}
.y92{bottom:398.946667pt;}
.yc6{bottom:402.146667pt;}
.y12f{bottom:410.146667pt;}
.y63{bottom:411.746667pt;}
.ydf{bottom:413.986667pt;}
.y8f{bottom:418.946667pt;}
.yc5{bottom:419.586667pt;}
.y111{bottom:421.666667pt;}
.yf7{bottom:423.586667pt;}
.y14{bottom:434.146667pt;}
.yde{bottom:435.106667pt;}
.yc4{bottom:437.186667pt;}
.y62{bottom:437.826667pt;}
.y12e{bottom:444.706667pt;}
.yc3{bottom:454.626667pt;}
.ydd{bottom:456.226667pt;}
.yf6{bottom:457.346667pt;}
.y12d{bottom:462.946667pt;}
.y61{bottom:463.746667pt;}
.yc2{bottom:472.226667pt;}
.y8e{bottom:477.506667pt;}
.y13{bottom:477.986667pt;}
.y2d{bottom:479.426667pt;}
.y110{bottom:481.186667pt;}
.y60{bottom:489.666667pt;}
.yc1{bottom:489.826667pt;}
.yf5{bottom:491.266667pt;}
.ydc{bottom:498.626667pt;}
.yc0{bottom:507.266667pt;}
.y8d{bottom:510.306667pt;}
.y2c{bottom:513.346667pt;}
.y5f{bottom:515.746667pt;}
.ydb{bottom:519.746667pt;}
.y12c{bottom:521.346667pt;}
.y12{bottom:521.986667pt;}
.ybf{bottom:524.866667pt;}
.y10f{bottom:527.266667pt;}
.yf2{bottom:537.346667pt;}
.yda{bottom:540.866667pt;}
.y5e{bottom:541.666667pt;}
.ybe{bottom:542.306667pt;}
.y8c{bottom:543.906667pt;}
.y2b{bottom:547.266667pt;}
.y12b{bottom:555.266667pt;}
.y8b{bottom:557.826667pt;}
.ybd{bottom:559.906667pt;}
.yd9{bottom:562.146667pt;}
.y11{bottom:565.826667pt;}
.y5c{bottom:567.586667pt;}
.y10c{bottom:573.346667pt;}
.ybb{bottom:577.346667pt;}
.y8a{bottom:578.493333pt;}
.y2a{bottom:581.373333pt;}
.yd8{bottom:583.293333pt;}
.yf1{bottom:583.613333pt;}
.y128{bottom:589.213333pt;}
.y5a{bottom:593.533333pt;}
.y51{bottom:594.333333pt;}
.yba{bottom:594.973333pt;}
.y10{bottom:596.573333pt;}
.y89{bottom:599.133333pt;}
.yb9{bottom:612.573333pt;}
.y50{bottom:615.453333pt;}
.yd7{bottom:617.693333pt;}
.y29{bottom:618.173333pt;}
.y59{bottom:619.613333pt;}
.y88{bottom:619.773333pt;}
.yf{bottom:627.133333pt;}
.yf0{bottom:629.693333pt;}
.yb8{bottom:630.013333pt;}
.y4f{bottom:636.573333pt;}
.y87{bottom:640.573333pt;}
.y58{bottom:645.533333pt;}
.yb7{bottom:647.613333pt;}
.yd6{bottom:652.253333pt;}
.y4e{bottom:657.693333pt;}
.y127{bottom:659.773333pt;}
.y86{bottom:661.213333pt;}
.y28{bottom:661.533333pt;}
.yee{bottom:663.613333pt;}
.yb6{bottom:665.053333pt;}
.y10b{bottom:665.693333pt;}
.ye{bottom:670.813333pt;}
.y57{bottom:671.453333pt;}
.y4d{bottom:678.973333pt;}
.y85{bottom:681.853333pt;}
.yb5{bottom:682.653333pt;}
.yd5{bottom:686.813333pt;}
.y56{bottom:697.533333pt;}
.y4c{bottom:700.093333pt;}
.yb4{bottom:700.253333pt;}
.y84{bottom:702.493333pt;}
.y27{bottom:704.733333pt;}
.y126{bottom:706.013333pt;}
.yd4{bottom:707.933333pt;}
.yed{bottom:709.693333pt;}
.y10a{bottom:711.773333pt;}
.yd{bottom:714.653333pt;}
.yb3{bottom:717.693333pt;}
.y4b{bottom:721.213333pt;}
.y83{bottom:723.133333pt;}
.y53{bottom:723.453333pt;}
.yd3{bottom:729.053333pt;}
.yb2{bottom:736.573333pt;}
.y4a{bottom:742.333333pt;}
.yec{bottom:743.613333pt;}
.y82{bottom:743.773333pt;}
.y26{bottom:748.093333pt;}
.yd2{bottom:750.173333pt;}
.y125{bottom:752.093333pt;}
.y109{bottom:758.013333pt;}
.yc{bottom:758.493333pt;}
.y49{bottom:763.613333pt;}
.y81{bottom:764.573333pt;}
.yd1{bottom:771.293333pt;}
.yb1{bottom:772.573333pt;}
.yeb{bottom:777.373333pt;}
.y48{bottom:784.733333pt;}
.y80{bottom:785.213333pt;}
.y120{bottom:786.013333pt;}
.y25{bottom:791.293333pt;}
.yd0{bottom:792.573333pt;}
.y52{bottom:793.853333pt;}
.yb{bottom:802.373333pt;}
.y108{bottom:804.133333pt;}
.y47{bottom:805.893333pt;}
.yb0{bottom:806.213333pt;}
.yea{bottom:811.333333pt;}
.ycf{bottom:813.733333pt;}
.yaf{bottom:820.133333pt;}
.y7f{bottom:826.533333pt;}
.y46{bottom:827.013333pt;}
.y24{bottom:834.693333pt;}
.yce{bottom:834.853333pt;}
.yae{bottom:835.973333pt;}
.y107{bottom:838.053333pt;}
.ya{bottom:844.293333pt;}
.ye9{bottom:845.093333pt;}
.y7e{bottom:847.173333pt;}
.y45{bottom:848.293333pt;}
.yad{bottom:851.813333pt;}
.ycd{bottom:855.973333pt;}
.y11f{bottom:856.613333pt;}
.y9{bottom:865.093333pt;}
.y7c{bottom:867.813333pt;}
.y44{bottom:869.413333pt;}
.y106{bottom:871.813333pt;}
.ycc{bottom:877.253333pt;}
.y23{bottom:877.893333pt;}
.ye8{bottom:879.013333pt;}
.y1{bottom:880.133333pt;}
.yac{bottom:883.653333pt;}
.y7b{bottom:888.613333pt;}
.y43{bottom:890.533333pt;}
.ycb{bottom:898.373333pt;}
.yab{bottom:899.493333pt;}
.y7a{bottom:909.253333pt;}
.y42{bottom:911.653333pt;}
.ye6{bottom:912.933333pt;}
.y11d{bottom:915.013333pt;}
.yaa{bottom:915.333333pt;}
.y105{bottom:918.053333pt;}
.yca{bottom:919.493333pt;}
.y22{bottom:921.253333pt;}
.y79{bottom:929.893333pt;}
.ya9{bottom:931.173333pt;}
.y41{bottom:932.773333pt;}
.yc9{bottom:940.613333pt;}
.ya8{bottom:947.013333pt;}
.y78{bottom:950.533333pt;}
.y104{bottom:951.813333pt;}
.y40{bottom:954.053333pt;}
.ya6{bottom:963.013333pt;}
.y21{bottom:964.453333pt;}
.y75{bottom:972.613333pt;}
.y11b{bottom:973.413333pt;}
.y3f{bottom:975.173333pt;}
.ya4{bottom:980.133333pt;}
.ye5{bottom:983.653333pt;}
.y103{bottom:998.053333pt;}
.y20{bottom:1007.813333pt;}
.ye4{bottom:1009.733333pt;}
.y3e{bottom:1010.853333pt;}
.y74{bottom:1014.560000pt;}
.h1d{height:15.200000pt;}
.h20{height:16.800000pt;}
.h21{height:16.960000pt;}
.h22{height:16.992000pt;}
.h1a{height:19.360000pt;}
.h1c{height:19.392000pt;}
.h1b{height:19.520000pt;}
.h12{height:20.000000pt;}
.h15{height:20.032000pt;}
.h16{height:22.720000pt;}
.he{height:25.280000pt;}
.h10{height:25.312000pt;}
.h17{height:25.356875pt;}
.hf{height:25.440000pt;}
.h26{height:25.600000pt;}
.h28{height:25.632000pt;}
.h18{height:26.643750pt;}
.h13{height:29.291562pt;}
.h14{height:30.778125pt;}
.h1e{height:32.789062pt;}
.h1f{height:34.453125pt;}
.h29{height:37.760000pt;}
.h2b{height:37.792000pt;}
.h2a{height:37.920000pt;}
.h2c{height:37.952000pt;}
.h19{height:38.880000pt;}
.h25{height:40.250000pt;}
.h3{height:42.262500pt;}
.h27{height:44.722500pt;}
.h33{height:49.155000pt;}
.h2e{height:50.080000pt;}
.h2f{height:50.112000pt;}
.h31{height:50.240000pt;}
.h30{height:50.272000pt;}
.hd{height:50.560000pt;}
.h2d{height:51.200000pt;}
.hb{height:55.031250pt;}
.h7{height:58.145938pt;}
.hc{height:61.410000pt;}
.h34{height:62.400000pt;}
.h32{height:62.432000pt;}
.h35{height:62.812500pt;}
.h11{height:65.595000pt;}
.ha{height:66.750000pt;}
.h5{height:67.533750pt;}
.h24{height:67.837500pt;}
.h8{height:73.490625pt;}
.h23{height:74.162500pt;}
.h4{height:78.097500pt;}
.h6{height:140.026667pt;}
.h2{height:146.586667pt;}
.h9{height:288.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2a{width:29.600000pt;}
.w1b{width:31.360000pt;}
.w22{width:37.440000pt;}
.w27{width:37.472000pt;}
.w28{width:37.632000pt;}
.w29{width:38.720000pt;}
.w16{width:39.872000pt;}
.w14{width:42.080000pt;}
.w26{width:42.560000pt;}
.wd{width:42.720000pt;}
.w10{width:42.752000pt;}
.we{width:42.880000pt;}
.wf{width:42.912000pt;}
.w11{width:43.200000pt;}
.w12{width:43.360000pt;}
.w19{width:43.392000pt;}
.w18{width:43.520000pt;}
.w13{width:43.552000pt;}
.w1a{width:43.680000pt;}
.w1e{width:44.000000pt;}
.w1d{width:44.032000pt;}
.w1c{width:44.160000pt;}
.w1f{width:44.192000pt;}
.w20{width:44.480000pt;}
.w15{width:44.640000pt;}
.w17{width:46.880000pt;}
.w25{width:46.912000pt;}
.w24{width:47.040000pt;}
.w23{width:47.072000pt;}
.w2d{width:56.000000pt;}
.wc{width:60.192000pt;}
.w21{width:75.360000pt;}
.w7{width:93.952000pt;}
.w8{width:94.080000pt;}
.w2b{width:94.400000pt;}
.wb{width:100.352000pt;}
.wa{width:105.920000pt;}
.w9{width:105.952000pt;}
.w6{width:114.752000pt;}
.w2{width:126.880000pt;}
.w2c{width:437.533333pt;}
.w3{width:486.333333pt;}
.w4{width:612.893333pt;}
.w5{width:613.413333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:4.320000pt;}
.x3a{left:5.760000pt;}
.x18{left:6.752000pt;}
.x6b{left:7.680000pt;}
.x34{left:8.640000pt;}
.x3d{left:10.560000pt;}
.x33{left:11.840000pt;}
.x69{left:12.794667pt;}
.x31{left:14.080000pt;}
.x5d{left:15.200000pt;}
.x35{left:16.960000pt;}
.x4a{left:18.560000pt;}
.x32{left:19.520000pt;}
.x5c{left:21.480000pt;}
.x4b{left:23.354667pt;}
.x6c{left:26.560000pt;}
.x2d{left:27.520000pt;}
.x6a{left:29.280000pt;}
.x24{left:32.960000pt;}
.x4e{left:51.240000pt;}
.x21{left:57.000000pt;}
.x1f{left:65.160000pt;}
.x1d{left:66.426667pt;}
.x4c{left:73.320000pt;}
.x20{left:74.560000pt;}
.x22{left:75.520000pt;}
.x4d{left:76.960000pt;}
.x1e{left:82.720000pt;}
.x5e{left:84.960000pt;}
.x17{left:87.680000pt;}
.x6d{left:89.152000pt;}
.x1{left:90.112000pt;}
.x8{left:94.432000pt;}
.xc{left:96.352000pt;}
.x3{left:104.314667pt;}
.x7{left:114.280000pt;}
.x6e{left:119.392000pt;}
.xd{left:122.752000pt;}
.x5{left:126.760000pt;}
.x23{left:136.026667pt;}
.x6{left:139.400000pt;}
.x42{left:170.586667pt;}
.x25{left:179.066667pt;}
.x15{left:192.834667pt;}
.x19{left:203.226667pt;}
.x4f{left:207.866667pt;}
.x5f{left:209.146667pt;}
.x43{left:215.066667pt;}
.x4{left:217.306667pt;}
.x13{left:221.794667pt;}
.x36{left:223.226667pt;}
.x50{left:245.626667pt;}
.xb{left:252.346667pt;}
.x60{left:256.506667pt;}
.x44{left:259.546667pt;}
.x26{left:265.346667pt;}
.x37{left:267.106667pt;}
.xa{left:271.746667pt;}
.x11{left:277.026667pt;}
.x14{left:280.514667pt;}
.x51{left:293.026667pt;}
.x1a{left:297.826667pt;}
.x45{left:303.906667pt;}
.x27{left:308.386667pt;}
.x38{left:310.786667pt;}
.x10{left:316.866667pt;}
.xe{left:317.826667pt;}
.xf{left:327.266667pt;}
.x52{left:330.786667pt;}
.x12{left:342.946667pt;}
.x46{left:348.386667pt;}
.x28{left:351.426667pt;}
.x39{left:354.466667pt;}
.x53{left:368.546667pt;}
.x6f{left:387.426667pt;}
.x16{left:392.226667pt;}
.x29{left:394.626667pt;}
.x9{left:396.866667pt;}
.x61{left:398.146667pt;}
.x54{left:415.906667pt;}
.x2a{left:437.666667pt;}
.x3b{left:441.826667pt;}
.x62{left:445.533333pt;}
.x55{left:463.133333pt;}
.x2b{left:480.893333pt;}
.x3c{left:482.013333pt;}
.x63{left:492.733333pt;}
.x1b{left:499.293333pt;}
.x56{left:510.333333pt;}
.x2c{left:523.933333pt;}
.x47{left:526.173333pt;}
.x3e{left:529.373333pt;}
.x64{left:540.093333pt;}
.x57{left:548.093333pt;}
.x2e{left:566.973333pt;}
.x48{left:570.653333pt;}
.x3f{left:572.893333pt;}
.x65{left:587.293333pt;}
.x58{left:590.973333pt;}
.x1c{left:605.853333pt;}
.x2f{left:610.173333pt;}
.x49{left:615.133333pt;}
.x40{left:616.733333pt;}
.x59{left:628.773333pt;}
.x66{left:634.533333pt;}
.x30{left:653.253333pt;}
.x41{left:660.453333pt;}
.x5a{left:666.533333pt;}
.x67{left:681.733333pt;}
.x5b{left:709.413333pt;}
.x68{left:729.093333pt;}
}




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