
    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_c460e0108e50622c70589bd8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_64d7998d1a7224d6fb5c2fce.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_0528d3ef7cda8d437d26e75c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_5a368a3d0c15d043698df02f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a8e3752cd3fbef72b85e9965.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eabad29c8e112747ae3cf1eb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e6900c61215e323faa1e83b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_32658c67b8f08e7010693fb6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f3bd8bdfe3e385f09e12294c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115234;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v2{vertical-align:-60.720000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:57.600000px;}
.v1{vertical-align:73.440000px;}
.v3{vertical-align:111.420000px;}
.ls8{letter-spacing:-8.220000px;}
.ls6{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.389400px;}
.lsc{letter-spacing:-0.349200px;}
.lsa{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.280200px;}
.lse{letter-spacing:-0.245400px;}
.ls1e{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.043920px;}
.ls3{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.122400px;}
.ls22{letter-spacing:0.151800px;}
.ls11{letter-spacing:0.162600px;}
.ls20{letter-spacing:0.197400px;}
.ls21{letter-spacing:0.236400px;}
.ls13{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.325200px;}
.ls12{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.469200px;}
.ls1d{letter-spacing:0.576000px;}
.ls1c{letter-spacing:45.504000px;}
.ls16{letter-spacing:58.477536px;}
.lsb{letter-spacing:58.489536px;}
.ls15{letter-spacing:58.605840px;}
.ls1b{letter-spacing:64.237536px;}
.ls1a{letter-spacing:64.365840px;}
.ls19{letter-spacing:73.295712px;}
.ls18{letter-spacing:73.403280px;}
.ls2{letter-spacing:103.305600px;}
.ls1{letter-spacing:103.356000px;}
.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;}
}
.ws1a{word-spacing:-131.904000px;}
.ws2{word-spacing:-73.458720px;}
.ws18{word-spacing:-46.637280px;}
.ws0{word-spacing:-43.434720px;}
.ws2f{word-spacing:-41.976000px;}
.ws31{word-spacing:-41.940000px;}
.ws38{word-spacing:-40.032000px;}
.ws11{word-spacing:-33.426720px;}
.ws7{word-spacing:-33.146520px;}
.ws19{word-spacing:-30.024000px;}
.ws36{word-spacing:-28.462752px;}
.ws37{word-spacing:-28.422720px;}
.ws4c{word-spacing:-26.857680px;}
.ws4d{word-spacing:-26.813112px;}
.ws4b{word-spacing:-26.621280px;}
.ws50{word-spacing:-23.976000px;}
.ws4a{word-spacing:-23.940000px;}
.ws1e{word-spacing:-23.458752px;}
.ws1d{word-spacing:-23.418720px;}
.ws20{word-spacing:-23.077320px;}
.ws1b{word-spacing:-20.056032px;}
.ws1c{word-spacing:-20.016000px;}
.ws4{word-spacing:-7.146720px;}
.ws6{word-spacing:-3.313440px;}
.ws16{word-spacing:-2.225040px;}
.wsf{word-spacing:-1.954800px;}
.ws13{word-spacing:-1.932840px;}
.ws12{word-spacing:-1.333440px;}
.ws8{word-spacing:-1.200240px;}
.ws2d{word-spacing:-1.181376px;}
.ws15{word-spacing:-1.134000px;}
.ws35{word-spacing:-1.094400px;}
.ws17{word-spacing:-1.080240px;}
.ws2e{word-spacing:-0.849888px;}
.ws2c{word-spacing:-0.720384px;}
.ws3f{word-spacing:-0.576000px;}
.ws5{word-spacing:-0.414000px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.002640px;}
.ws32{word-spacing:0.354720px;}
.ws4e{word-spacing:0.442656px;}
.ws4f{word-spacing:0.530640px;}
.ws33{word-spacing:1.045200px;}
.ws34{word-spacing:1.366800px;}
.wsd{word-spacing:5.666400px;}
.wsc{word-spacing:5.813280px;}
.wse{word-spacing:5.866560px;}
.wsa{word-spacing:6.548160px;}
.wsb{word-spacing:7.682400px;}
.ws3a{word-spacing:14.952000px;}
.ws39{word-spacing:14.976000px;}
.ws3b{word-spacing:15.984000px;}
.ws3d{word-spacing:16.416000px;}
.ws10{word-spacing:16.586496px;}
.ws3c{word-spacing:16.680000px;}
.ws26{word-spacing:31.626624px;}
.ws21{word-spacing:33.212880px;}
.ws27{word-spacing:33.277728px;}
.ws22{word-spacing:33.341664px;}
.ws25{word-spacing:33.445152px;}
.ws23{word-spacing:33.888168px;}
.ws24{word-spacing:34.273512px;}
.ws9{word-spacing:34.666560px;}
.ws3{word-spacing:56.266560px;}
.ws3e{word-spacing:62.663904px;}
.ws28{word-spacing:64.409520px;}
.ws48{word-spacing:86.888160px;}
.ws41{word-spacing:89.526000px;}
.ws40{word-spacing:90.325440px;}
.ws42{word-spacing:90.488160px;}
.ws44{word-spacing:145.542240px;}
.ws46{word-spacing:146.898240px;}
.ws43{word-spacing:147.470640px;}
.ws47{word-spacing:148.177920px;}
.ws45{word-spacing:148.695600px;}
.ws2a{word-spacing:156.634560px;}
.ws2b{word-spacing:157.254960px;}
.ws29{word-spacing:157.566000px;}
.ws49{word-spacing:522.936000px;}
.ws51{word-spacing:811.033200px;}
.ws30{word-spacing:1432.330320px;}
.ws1f{word-spacing:3124.544640px;}
._15{margin-left:-2851.121088px;}
._3{margin-left:-17.045856px;}
._9{margin-left:-11.726640px;}
._1{margin-left:-9.070272px;}
._8{margin-left:-7.497360px;}
._16{margin-left:-6.168384px;}
._d{margin-left:-5.138640px;}
._c{margin-left:-3.890592px;}
._2{margin-left:-2.814912px;}
._4{margin-left:-1.123248px;}
._0{width:1.678320px;}
._b{width:3.150432px;}
._10{width:4.214592px;}
._a{width:23.796000px;}
._18{width:27.654000px;}
._6{width:31.955520px;}
._13{width:41.340000px;}
._f{width:43.053360px;}
._7{width:51.302496px;}
._11{width:56.316000px;}
._5{width:90.739344px;}
._12{width:104.141184px;}
._e{width:107.463840px;}
._14{width:138.313200px;}
._17{width:506.196000px;}
._19{width:1282.725120px;}
.fc9{color:rgb(0,204,204);}
.fc8{color:rgb(0,153,153);}
.fc7{color:rgb(51,0,51);}
.fc5{color:rgb(153,153,102);}
.fc4{color:rgb(102,0,0);}
.fc3{color:rgb(66,0,0);}
.fc6{color:rgb(255,51,0);}
.fc2{color:transparent;}
.fc1{color:rgb(126,0,33);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fsf{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs12{font-size:95.760000px;}
.fs18{font-size:95.904000px;}
.fs17{font-size:102.240000px;}
.fs16{font-size:102.384000px;}
.fs0{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:131.904000px;}
.fs15{font-size:144.000000px;}
.fs14{font-size:144.144000px;}
.fs3{font-size:156.240000px;}
.fs2{font-size:156.384000px;}
.fs9{font-size:167.760000px;}
.fsa{font-size:167.904000px;}
.fs8{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y59{bottom:9.936000px;}
.y4{bottom:14.652000px;}
.ye2{bottom:33.696000px;}
.y1{bottom:40.392000px;}
.ya9{bottom:43.668000px;}
.y52{bottom:47.268000px;}
.ybb{bottom:51.408000px;}
.ycb{bottom:55.368000px;}
.y24{bottom:61.416000px;}
.y3{bottom:61.488000px;}
.ye0{bottom:62.496000px;}
.ya8{bottom:76.068000px;}
.yc3{bottom:77.256000px;}
.y45{bottom:79.272000px;}
.yba{bottom:83.808000px;}
.yca{bottom:84.168000px;}
.y77{bottom:87.732000px;}
.ydf{bottom:91.296000px;}
.y3c{bottom:91.908000px;}
.y23{bottom:93.852000px;}
.y75{bottom:102.456000px;}
.y44{bottom:104.472000px;}
.yc2{bottom:109.656000px;}
.yed{bottom:110.700000px;}
.y3f{bottom:111.672000px;}
.yb9{bottom:116.208000px;}
.y6f{bottom:118.692000px;}
.yde{bottom:120.096000px;}
.y5e{bottom:123.480000px;}
.ya7{bottom:124.884000px;}
.y22{bottom:126.252000px;}
.y76{bottom:130.968000px;}
.y3b{bottom:131.508000px;}
.yec{bottom:139.500000px;}
.yc1{bottom:142.056000px;}
.y49{bottom:145.116000px;}
.yb8{bottom:148.644000px;}
.ye1{bottom:148.896000px;}
.y3e{bottom:151.275000px;}
.y6e{bottom:157.425000px;}
.y21{bottom:158.655000px;}
.y5d{bottom:162.180000px;}
.y3a{bottom:171.105000px;}
.ya6{bottom:173.850000px;}
.yc0{bottom:174.450000px;}
.y1c{bottom:175.395000px;}
.y48{bottom:178.590000px;}
.yb7{bottom:181.050000px;}
.y3d{bottom:190.875000px;}
.y6d{bottom:196.125000px;}
.y15{bottom:204.225000px;}
.ybf{bottom:206.895000px;}
.y39{bottom:210.705000px;}
.y47{bottom:212.295000px;}
.yb6{bottom:213.450000px;}
.ya5{bottom:222.810000px;}
.ye{bottom:231.585000px;}
.yce{bottom:232.170000px;}
.y7f{bottom:234.000000px;}
.y87{bottom:234.105000px;}
.y99{bottom:234.180000px;}
.yc9{bottom:238.110000px;}
.ybe{bottom:239.295000px;}
.yb5{bottom:245.850000px;}
.y46{bottom:245.955000px;}
.y38{bottom:250.350000px;}
.yd{bottom:260.385000px;}
.ycd{bottom:260.970000px;}
.yc8{bottom:266.940000px;}
.y92{bottom:271.410000px;}
.ya4{bottom:271.620000px;}
.ybd{bottom:271.695000px;}
.y43{bottom:274.890000px;}
.yb4{bottom:278.250000px;}
.y14{bottom:280.770000px;}
.y7e{bottom:284.400000px;}
.y98{bottom:284.610000px;}
.yf3{bottom:288.105000px;}
.ycc{bottom:289.770000px;}
.y86{bottom:296.565000px;}
.y42{bottom:300.090000px;}
.ybc{bottom:304.095000px;}
.y20{bottom:304.305000px;}
.y62{bottom:310.650000px;}
.yb3{bottom:310.680000px;}
.y31{bottom:310.965000px;}
.y6c{bottom:314.310000px;}
.yf2{bottom:316.905000px;}
.ya3{bottom:320.580000px;}
.y91{bottom:321.840000px;}
.ycf{bottom:327.705000px;}
.y37{bottom:330.765000px;}
.yc{bottom:332.925000px;}
.y7d{bottom:334.830000px;}
.y1f{bottom:336.705000px;}
.yf0{bottom:342.795000px;}
.y8d{bottom:342.825000px;}
.y4c{bottom:343.695000px;}
.y97{bottom:346.890000px;}
.y61{bottom:349.350000px;}
.y1b{bottom:351.870000px;}
.y6b{bottom:353.010000px;}
.ye6{bottom:353.805000px;}
.y85{bottom:358.845000px;}
.yb{bottom:361.770000px;}
.yeb{bottom:364.710000px;}
.y4b{bottom:365.325000px;}
.y1e{bottom:369.105000px;}
.yef{bottom:371.625000px;}
.y13{bottom:374.325000px;}
.y55{bottom:378.210000px;}
.yac{bottom:380.055000px;}
.ye5{bottom:382.650000px;}
.yf1{bottom:387.330000px;}
.y6a{bottom:391.710000px;}
.y8c{bottom:393.225000px;}
.yea{bottom:393.510000px;}
.y36{bottom:395.610000px;}
.y7c{bottom:397.110000px;}
.y96{bottom:397.290000px;}
.yb2{bottom:398.775000px;}
.y4a{bottom:398.985000px;}
.yee{bottom:400.425000px;}
.y1d{bottom:401.505000px;}
.y56{bottom:403.230000px;}
.ye4{bottom:411.450000px;}
.y90{bottom:414.180000px;}
.y84{bottom:421.350000px;}
.yab{bottom:423.285000px;}
.y74{bottom:426.885000px;}
.y41{bottom:428.115000px;}
.yb1{bottom:431.175000px;}
.ya{bottom:434.490000px;}
.ye3{bottom:440.250000px;}
.y8b{bottom:443.670000px;}
.y7b{bottom:447.510000px;}
.yf5{bottom:449.745000px;}
.y40{bottom:453.315000px;}
.yf7{bottom:458.205000px;}
.y95{bottom:459.795000px;}
.y30{bottom:462.210000px;}
.y9{bottom:463.290000px;}
.y12{bottom:463.965000px;}
.y8f{bottom:464.610000px;}
.yaa{bottom:466.485000px;}
.y1a{bottom:473.730000px;}
.y69{bottom:475.950000px;}
.yb0{bottom:476.565000px;}
.y73{bottom:477.285000px;}
.yf4{bottom:478.590000px;}
.y83{bottom:483.810000px;}
.y2{bottom:485.175000px;}
.yf6{bottom:487.005000px;}
.y60{bottom:489.165000px;}
.y8{bottom:492.090000px;}
.y50{bottom:492.195000px;}
.y8a{bottom:494.070000px;}
.y11{bottom:500.010000px;}
.y5b{bottom:500.040000px;}
.y35{bottom:500.730000px;}
.y7a{bottom:510.015000px;}
.y94{bottom:510.195000px;}
.y2f{bottom:512.640000px;}
.y4f{bottom:513.795000px;}
.ya0{bottom:514.515000px;}
.y68{bottom:514.695000px;}
.ydd{bottom:523.080000px;}
.yff{bottom:524.010000px;}
.y19{bottom:524.160000px;}
.yaf{bottom:527.010000px;}
.y8e{bottom:527.070000px;}
.y72{bottom:527.685000px;}
.y5f{bottom:527.865000px;}
.y82{bottom:534.210000px;}
.y9f{bottom:534.780000px;}
.y104{bottom:535.110000px;}
.y10{bottom:536.010000px;}
.y4e{bottom:547.485000px;}
.yf8{bottom:549.330000px;}
.y34{bottom:551.130000px;}
.ya2{bottom:551.490000px;}
.ydc{bottom:551.910000px;}
.y67{bottom:553.395000px;}
.y9e{bottom:554.865000px;}
.y89{bottom:556.530000px;}
.yc5{bottom:557.130000px;}
.yfe{bottom:560.010000px;}
.y2e{bottom:563.040000px;}
.yc7{bottom:564.630000px;}
.y7{bottom:564.660000px;}
.y4d{bottom:569.085000px;}
.y101{bottom:569.415000px;}
.y103{bottom:571.110000px;}
.ya1{bottom:571.350000px;}
.y79{bottom:572.475000px;}
.y5c{bottom:572.940000px;}
.y18{bottom:574.560000px;}
.y9d{bottom:575.100000px;}
.yd6{bottom:576.465000px;}
.yae{bottom:577.410000px;}
.y71{bottom:578.130000px;}
.ydb{bottom:580.710000px;}
.yc4{bottom:585.930000px;}
.yc6{bottom:593.430000px;}
.y6{bottom:593.460000px;}
.y9c{bottom:595.365000px;}
.y51{bottom:595.950000px;}
.yfd{bottom:596.055000px;}
.yd5{bottom:605.265000px;}
.y100{bottom:605.415000px;}
.y102{bottom:607.110000px;}
.yda{bottom:609.510000px;}
.y2d{bottom:613.440000px;}
.y9b{bottom:615.810000px;}
.ye9{bottom:619.950000px;}
.y66{bottom:620.565000px;}
.ye8{bottom:620.895000px;}
.yf{bottom:621.150000px;}
.y54{bottom:626.115000px;}
.yad{bottom:627.810000px;}
.yd4{bottom:634.065000px;}
.yd9{bottom:638.310000px;}
.y29{bottom:645.375000px;}
.ye7{bottom:649.695000px;}
.y81{bottom:653.220000px;}
.y64{bottom:659.265000px;}
.yd3{bottom:662.865000px;}
.y70{bottom:662.910000px;}
.y2c{bottom:663.870000px;}
.y53{bottom:665.355000px;}
.y33{bottom:666.645000px;}
.yd8{bottom:667.110000px;}
.y26{bottom:670.680000px;}
.y88{bottom:671.910000px;}
.y93{bottom:679.395000px;}
.yfa{bottom:684.825000px;}
.yfb{bottom:685.185000px;}
.y5{bottom:685.365000px;}
.yfc{bottom:690.450000px;}
.yd2{bottom:691.665000px;}
.y17{bottom:693.330000px;}
.y28{bottom:695.775000px;}
.yd7{bottom:695.955000px;}
.y2b{bottom:696.495000px;}
.y63{bottom:697.965000px;}
.y78{bottom:700.590000px;}
.y58{bottom:702.435000px;}
.y80{bottom:710.820000px;}
.yd1{bottom:720.465000px;}
.y25{bottom:721.080000px;}
.y9a{bottom:729.075000px;}
.y16{bottom:730.905000px;}
.y32{bottom:731.490000px;}
.y57{bottom:741.675000px;}
.y27{bottom:746.205000px;}
.yf9{bottom:756.030000px;}
.y65{bottom:758.730000px;}
.y2a{bottom:761.295000px;}
.yd0{bottom:764.490000px;}
.y5a{bottom:788.370000px;}
.h13{height:75.093750px;}
.h14{height:75.243937px;}
.h28{height:86.642227px;}
.h12{height:87.859687px;}
.h16{height:88.009875px;}
.h24{height:96.508125px;}
.h25{height:96.653250px;}
.h15{height:99.874688px;}
.h27{height:100.024875px;}
.h20{height:106.633125px;}
.h1f{height:106.783312px;}
.h26{height:108.843750px;}
.h1{height:112.640625px;}
.hc{height:112.790813px;}
.h6{height:125.406562px;}
.h7{height:125.556750px;}
.h11{height:137.421562px;}
.h10{height:137.571750px;}
.h1c{height:145.125000px;}
.h1b{height:145.270125px;}
.h21{height:150.187500px;}
.h22{height:150.337688px;}
.h2a{height:154.108125px;}
.h4{height:162.953438px;}
.h3{height:163.103625px;}
.h19{height:164.647266px;}
.h1a{height:164.788594px;}
.h1e{height:169.070625px;}
.h18{height:169.215750px;}
.ha{height:174.968437px;}
.hb{height:175.118625px;}
.h23{height:186.080625px;}
.h1d{height:193.741875px;}
.h9{height:200.500313px;}
.h29{height:207.928125px;}
.h17{height:211.992188px;}
.hd{height:217.687500px;}
.he{height:217.832625px;}
.h8{height:225.281250px;}
.hf{height:225.431438px;}
.h2{height:250.062187px;}
.h5{height:275.594063px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x17{left:12.311984px;}
.x83{left:14.075984px;}
.x56{left:21.131984px;}
.x55{left:22.679984px;}
.x53{left:23.759984px;}
.x85{left:24.875984px;}
.x7d{left:27.503984px;}
.x73{left:31.823984px;}
.x70{left:33.335984px;}
.x51{left:34.991984px;}
.x86{left:36.935984px;}
.x50{left:38.951984px;}
.x1e{left:40.463984px;}
.x84{left:43.955984px;}
.x52{left:46.511984px;}
.x54{left:50.759984px;}
.x1f{left:53.207984px;}
.x65{left:59.219984px;}
.x3{left:60.839984px;}
.x67{left:61.919984px;}
.x6{left:64.655984px;}
.xa{left:66.275984px;}
.x9{left:74.411984px;}
.x63{left:76.463984px;}
.x6b{left:78.911984px;}
.x62{left:80.387984px;}
.x8{left:82.835984px;}
.x1c{left:87.875984px;}
.x7b{left:92.807984px;}
.x20{left:95.759984px;}
.x13{left:97.091984px;}
.x7{left:101.015984px;}
.x6d{left:102.023984px;}
.xb{left:105.155984px;}
.x6c{left:107.099984px;}
.x79{left:110.447984px;}
.x60{left:112.967984px;}
.x68{left:114.299984px;}
.x5e{left:119.411984px;}
.x7a{left:122.147984px;}
.x90{left:123.371984px;}
.x4{left:126.395984px;}
.x64{left:128.483984px;}
.x91{left:135.071984px;}
.x11{left:139.247984px;}
.x2{left:144.827984px;}
.x97{left:150.944984px;}
.x66{left:162.899984px;}
.x69{left:165.059984px;}
.x16{left:168.044984px;}
.x5f{left:171.434984px;}
.x4f{left:196.484984px;}
.x15{left:211.424984px;}
.x6a{left:218.519984px;}
.x12{left:222.044984px;}
.x4a{left:239.069984px;}
.x8d{left:247.499984px;}
.x6f{left:254.729984px;}
.x4c{left:264.989984px;}
.x8c{left:280.619984px;}
.x48{left:283.964984px;}
.x14{left:288.644984px;}
.x46{left:295.634984px;}
.x3b{left:300.524984px;}
.x95{left:306.929984px;}
.x29{left:309.419984px;}
.x2a{left:311.579984px;}
.x28{left:313.919984px;}
.x27{left:316.079984px;}
.x3c{left:318.524984px;}
.x38{left:320.189984px;}
.x96{left:321.869984px;}
.x37{left:326.669984px;}
.x4d{left:329.579984px;}
.x92{left:336.389984px;}
.x3a{left:337.424984px;}
.x25{left:338.654984px;}
.x93{left:342.719984px;}
.x3d{left:346.784984px;}
.x61{left:348.944984px;}
.x39{left:367.019984px;}
.x5{left:374.729984px;}
.x47{left:391.679984px;}
.x21{left:395.744984px;}
.x24{left:405.464984px;}
.x23{left:407.804984px;}
.x18{left:421.454984px;}
.x26{left:423.284984px;}
.x2c{left:428.114984px;}
.x2b{left:429.374984px;}
.x2d{left:430.634984px;}
.x22{left:435.344984px;}
.x72{left:442.949984px;}
.x71{left:447.629984px;}
.x40{left:462.704984px;}
.x7c{left:466.409984px;}
.x41{left:468.824984px;}
.x78{left:470.519984px;}
.x49{left:479.489984px;}
.x77{left:488.879984px;}
.x3f{left:495.284984px;}
.x8f{left:497.519984px;}
.x3e{left:503.384984px;}
.x19{left:536.144984px;}
.x1b{left:541.184984px;}
.x30{left:544.139984px;}
.x2f{left:550.079984px;}
.x2e{left:554.219984px;}
.x35{left:570.779984px;}
.x34{left:591.479984px;}
.x36{left:617.939984px;}
.x1a{left:627.584984px;}
.x43{left:641.984984px;}
.xf{left:645.044984px;}
.x44{left:650.624984px;}
.x10{left:659.984984px;}
.x32{left:663.944984px;}
.x42{left:673.484984px;}
.x45{left:677.804984px;}
.x33{left:679.424984px;}
.xc{left:680.789984px;}
.xe{left:684.614984px;}
.x31{left:685.904984px;}
.x94{left:697.859984px;}
.x74{left:701.384984px;}
.xd{left:704.954984px;}
.x8e{left:712.154984px;}
.x1d{left:716.009984px;}
.x87{left:718.664984px;}
.x1{left:784.769984px;}
.x6e{left:787.829984px;}
.x89{left:794.774984px;}
.x76{left:816.269984px;}
.x4b{left:817.814984px;}
.x8a{left:820.154984px;}
.x88{left:821.774984px;}
.x7e{left:840.599984px;}
.x80{left:845.639984px;}
.x75{left:854.609984px;}
.x8b{left:858.314984px;}
.x7f{left:864.179984px;}
.x4e{left:868.829984px;}
.x82{left:877.499984px;}
.x81{left:902.159984px;}
.x57{left:941.219984px;}
.x5c{left:943.019984px;}
.x5d{left:948.419984px;}
.x59{left:949.499984px;}
.x5b{left:954.719984px;}
.x58{left:964.619984px;}
.x5a{left:966.959984px;}
@media print{
.v2{vertical-align:-53.973333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:51.200000pt;}
.v1{vertical-align:65.280000pt;}
.v3{vertical-align:99.040000pt;}
.ls8{letter-spacing:-7.306667pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.346133pt;}
.lsc{letter-spacing:-0.310400pt;}
.lsa{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.249067pt;}
.lse{letter-spacing:-0.218133pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.039040pt;}
.ls3{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.108800pt;}
.ls22{letter-spacing:0.134933pt;}
.ls11{letter-spacing:0.144533pt;}
.ls20{letter-spacing:0.175467pt;}
.ls21{letter-spacing:0.210133pt;}
.ls13{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.289067pt;}
.ls12{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.417067pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:40.448000pt;}
.ls16{letter-spacing:51.980032pt;}
.lsb{letter-spacing:51.990699pt;}
.ls15{letter-spacing:52.094080pt;}
.ls1b{letter-spacing:57.100032pt;}
.ls1a{letter-spacing:57.214080pt;}
.ls19{letter-spacing:65.151744pt;}
.ls18{letter-spacing:65.247360pt;}
.ls2{letter-spacing:91.827200pt;}
.ls1{letter-spacing:91.872000pt;}
.ws1a{word-spacing:-117.248000pt;}
.ws2{word-spacing:-65.296640pt;}
.ws18{word-spacing:-41.455360pt;}
.ws0{word-spacing:-38.608640pt;}
.ws2f{word-spacing:-37.312000pt;}
.ws31{word-spacing:-37.280000pt;}
.ws38{word-spacing:-35.584000pt;}
.ws11{word-spacing:-29.712640pt;}
.ws7{word-spacing:-29.463573pt;}
.ws19{word-spacing:-26.688000pt;}
.ws36{word-spacing:-25.300224pt;}
.ws37{word-spacing:-25.264640pt;}
.ws4c{word-spacing:-23.873493pt;}
.ws4d{word-spacing:-23.833877pt;}
.ws4b{word-spacing:-23.663360pt;}
.ws50{word-spacing:-21.312000pt;}
.ws4a{word-spacing:-21.280000pt;}
.ws1e{word-spacing:-20.852224pt;}
.ws1d{word-spacing:-20.816640pt;}
.ws20{word-spacing:-20.513173pt;}
.ws1b{word-spacing:-17.827584pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws4{word-spacing:-6.352640pt;}
.ws6{word-spacing:-2.945280pt;}
.ws16{word-spacing:-1.977813pt;}
.wsf{word-spacing:-1.737600pt;}
.ws13{word-spacing:-1.718080pt;}
.ws12{word-spacing:-1.185280pt;}
.ws8{word-spacing:-1.066880pt;}
.ws2d{word-spacing:-1.050112pt;}
.ws15{word-spacing:-1.008000pt;}
.ws35{word-spacing:-0.972800pt;}
.ws17{word-spacing:-0.960213pt;}
.ws2e{word-spacing:-0.755456pt;}
.ws2c{word-spacing:-0.640341pt;}
.ws3f{word-spacing:-0.512000pt;}
.ws5{word-spacing:-0.368000pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.002347pt;}
.ws32{word-spacing:0.315307pt;}
.ws4e{word-spacing:0.393472pt;}
.ws4f{word-spacing:0.471680pt;}
.ws33{word-spacing:0.929067pt;}
.ws34{word-spacing:1.214933pt;}
.wsd{word-spacing:5.036800pt;}
.wsc{word-spacing:5.167360pt;}
.wse{word-spacing:5.214720pt;}
.wsa{word-spacing:5.820587pt;}
.wsb{word-spacing:6.828800pt;}
.ws3a{word-spacing:13.290667pt;}
.ws39{word-spacing:13.312000pt;}
.ws3b{word-spacing:14.208000pt;}
.ws3d{word-spacing:14.592000pt;}
.ws10{word-spacing:14.743552pt;}
.ws3c{word-spacing:14.826667pt;}
.ws26{word-spacing:28.112555pt;}
.ws21{word-spacing:29.522560pt;}
.ws27{word-spacing:29.580203pt;}
.ws22{word-spacing:29.637035pt;}
.ws25{word-spacing:29.729024pt;}
.ws23{word-spacing:30.122816pt;}
.ws24{word-spacing:30.465344pt;}
.ws9{word-spacing:30.814720pt;}
.ws3{word-spacing:50.014720pt;}
.ws3e{word-spacing:55.701248pt;}
.ws28{word-spacing:57.252907pt;}
.ws48{word-spacing:77.233920pt;}
.ws41{word-spacing:79.578667pt;}
.ws40{word-spacing:80.289280pt;}
.ws42{word-spacing:80.433920pt;}
.ws44{word-spacing:129.370880pt;}
.ws46{word-spacing:130.576213pt;}
.ws43{word-spacing:131.085013pt;}
.ws47{word-spacing:131.713707pt;}
.ws45{word-spacing:132.173867pt;}
.ws2a{word-spacing:139.230720pt;}
.ws2b{word-spacing:139.782187pt;}
.ws29{word-spacing:140.058667pt;}
.ws49{word-spacing:464.832000pt;}
.ws51{word-spacing:720.918400pt;}
.ws30{word-spacing:1273.182507pt;}
.ws1f{word-spacing:2777.373013pt;}
._15{margin-left:-2534.329856pt;}
._3{margin-left:-15.151872pt;}
._9{margin-left:-10.423680pt;}
._1{margin-left:-8.062464pt;}
._8{margin-left:-6.664320pt;}
._16{margin-left:-5.483008pt;}
._d{margin-left:-4.567680pt;}
._c{margin-left:-3.458304pt;}
._2{margin-left:-2.502144pt;}
._4{margin-left:-0.998443pt;}
._0{width:1.491840pt;}
._b{width:2.800384pt;}
._10{width:3.746304pt;}
._a{width:21.152000pt;}
._18{width:24.581333pt;}
._6{width:28.404907pt;}
._13{width:36.746667pt;}
._f{width:38.269653pt;}
._7{width:45.602219pt;}
._11{width:50.058667pt;}
._5{width:80.657195pt;}
._12{width:92.569941pt;}
._e{width:95.523413pt;}
._14{width:122.945067pt;}
._17{width:449.952000pt;}
._19{width:1140.200107pt;}
.fs10{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fsf{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs12{font-size:85.120000pt;}
.fs18{font-size:85.248000pt;}
.fs17{font-size:90.880000pt;}
.fs16{font-size:91.008000pt;}
.fs0{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:117.248000pt;}
.fs15{font-size:128.000000pt;}
.fs14{font-size:128.128000pt;}
.fs3{font-size:138.880000pt;}
.fs2{font-size:139.008000pt;}
.fs9{font-size:149.120000pt;}
.fsa{font-size:149.248000pt;}
.fs8{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:8.832000pt;}
.y4{bottom:13.024000pt;}
.ye2{bottom:29.952000pt;}
.y1{bottom:35.904000pt;}
.ya9{bottom:38.816000pt;}
.y52{bottom:42.016000pt;}
.ybb{bottom:45.696000pt;}
.ycb{bottom:49.216000pt;}
.y24{bottom:54.592000pt;}
.y3{bottom:54.656000pt;}
.ye0{bottom:55.552000pt;}
.ya8{bottom:67.616000pt;}
.yc3{bottom:68.672000pt;}
.y45{bottom:70.464000pt;}
.yba{bottom:74.496000pt;}
.yca{bottom:74.816000pt;}
.y77{bottom:77.984000pt;}
.ydf{bottom:81.152000pt;}
.y3c{bottom:81.696000pt;}
.y23{bottom:83.424000pt;}
.y75{bottom:91.072000pt;}
.y44{bottom:92.864000pt;}
.yc2{bottom:97.472000pt;}
.yed{bottom:98.400000pt;}
.y3f{bottom:99.264000pt;}
.yb9{bottom:103.296000pt;}
.y6f{bottom:105.504000pt;}
.yde{bottom:106.752000pt;}
.y5e{bottom:109.760000pt;}
.ya7{bottom:111.008000pt;}
.y22{bottom:112.224000pt;}
.y76{bottom:116.416000pt;}
.y3b{bottom:116.896000pt;}
.yec{bottom:124.000000pt;}
.yc1{bottom:126.272000pt;}
.y49{bottom:128.992000pt;}
.yb8{bottom:132.128000pt;}
.ye1{bottom:132.352000pt;}
.y3e{bottom:134.466667pt;}
.y6e{bottom:139.933333pt;}
.y21{bottom:141.026667pt;}
.y5d{bottom:144.160000pt;}
.y3a{bottom:152.093333pt;}
.ya6{bottom:154.533333pt;}
.yc0{bottom:155.066667pt;}
.y1c{bottom:155.906667pt;}
.y48{bottom:158.746667pt;}
.yb7{bottom:160.933333pt;}
.y3d{bottom:169.666667pt;}
.y6d{bottom:174.333333pt;}
.y15{bottom:181.533333pt;}
.ybf{bottom:183.906667pt;}
.y39{bottom:187.293333pt;}
.y47{bottom:188.706667pt;}
.yb6{bottom:189.733333pt;}
.ya5{bottom:198.053333pt;}
.ye{bottom:205.853333pt;}
.yce{bottom:206.373333pt;}
.y7f{bottom:208.000000pt;}
.y87{bottom:208.093333pt;}
.y99{bottom:208.160000pt;}
.yc9{bottom:211.653333pt;}
.ybe{bottom:212.706667pt;}
.yb5{bottom:218.533333pt;}
.y46{bottom:218.626667pt;}
.y38{bottom:222.533333pt;}
.yd{bottom:231.453333pt;}
.ycd{bottom:231.973333pt;}
.yc8{bottom:237.280000pt;}
.y92{bottom:241.253333pt;}
.ya4{bottom:241.440000pt;}
.ybd{bottom:241.506667pt;}
.y43{bottom:244.346667pt;}
.yb4{bottom:247.333333pt;}
.y14{bottom:249.573333pt;}
.y7e{bottom:252.800000pt;}
.y98{bottom:252.986667pt;}
.yf3{bottom:256.093333pt;}
.ycc{bottom:257.573333pt;}
.y86{bottom:263.613333pt;}
.y42{bottom:266.746667pt;}
.ybc{bottom:270.306667pt;}
.y20{bottom:270.493333pt;}
.y62{bottom:276.133333pt;}
.yb3{bottom:276.160000pt;}
.y31{bottom:276.413333pt;}
.y6c{bottom:279.386667pt;}
.yf2{bottom:281.693333pt;}
.ya3{bottom:284.960000pt;}
.y91{bottom:286.080000pt;}
.ycf{bottom:291.293333pt;}
.y37{bottom:294.013333pt;}
.yc{bottom:295.933333pt;}
.y7d{bottom:297.626667pt;}
.y1f{bottom:299.293333pt;}
.yf0{bottom:304.706667pt;}
.y8d{bottom:304.733333pt;}
.y4c{bottom:305.506667pt;}
.y97{bottom:308.346667pt;}
.y61{bottom:310.533333pt;}
.y1b{bottom:312.773333pt;}
.y6b{bottom:313.786667pt;}
.ye6{bottom:314.493333pt;}
.y85{bottom:318.973333pt;}
.yb{bottom:321.573333pt;}
.yeb{bottom:324.186667pt;}
.y4b{bottom:324.733333pt;}
.y1e{bottom:328.093333pt;}
.yef{bottom:330.333333pt;}
.y13{bottom:332.733333pt;}
.y55{bottom:336.186667pt;}
.yac{bottom:337.826667pt;}
.ye5{bottom:340.133333pt;}
.yf1{bottom:344.293333pt;}
.y6a{bottom:348.186667pt;}
.y8c{bottom:349.533333pt;}
.yea{bottom:349.786667pt;}
.y36{bottom:351.653333pt;}
.y7c{bottom:352.986667pt;}
.y96{bottom:353.146667pt;}
.yb2{bottom:354.466667pt;}
.y4a{bottom:354.653333pt;}
.yee{bottom:355.933333pt;}
.y1d{bottom:356.893333pt;}
.y56{bottom:358.426667pt;}
.ye4{bottom:365.733333pt;}
.y90{bottom:368.160000pt;}
.y84{bottom:374.533333pt;}
.yab{bottom:376.253333pt;}
.y74{bottom:379.453333pt;}
.y41{bottom:380.546667pt;}
.yb1{bottom:383.266667pt;}
.ya{bottom:386.213333pt;}
.ye3{bottom:391.333333pt;}
.y8b{bottom:394.373333pt;}
.y7b{bottom:397.786667pt;}
.yf5{bottom:399.773333pt;}
.y40{bottom:402.946667pt;}
.yf7{bottom:407.293333pt;}
.y95{bottom:408.706667pt;}
.y30{bottom:410.853333pt;}
.y9{bottom:411.813333pt;}
.y12{bottom:412.413333pt;}
.y8f{bottom:412.986667pt;}
.yaa{bottom:414.653333pt;}
.y1a{bottom:421.093333pt;}
.y69{bottom:423.066667pt;}
.yb0{bottom:423.613333pt;}
.y73{bottom:424.253333pt;}
.yf4{bottom:425.413333pt;}
.y83{bottom:430.053333pt;}
.y2{bottom:431.266667pt;}
.yf6{bottom:432.893333pt;}
.y60{bottom:434.813333pt;}
.y8{bottom:437.413333pt;}
.y50{bottom:437.506667pt;}
.y8a{bottom:439.173333pt;}
.y11{bottom:444.453333pt;}
.y5b{bottom:444.480000pt;}
.y35{bottom:445.093333pt;}
.y7a{bottom:453.346667pt;}
.y94{bottom:453.506667pt;}
.y2f{bottom:455.680000pt;}
.y4f{bottom:456.706667pt;}
.ya0{bottom:457.346667pt;}
.y68{bottom:457.506667pt;}
.ydd{bottom:464.960000pt;}
.yff{bottom:465.786667pt;}
.y19{bottom:465.920000pt;}
.yaf{bottom:468.453333pt;}
.y8e{bottom:468.506667pt;}
.y72{bottom:469.053333pt;}
.y5f{bottom:469.213333pt;}
.y82{bottom:474.853333pt;}
.y9f{bottom:475.360000pt;}
.y104{bottom:475.653333pt;}
.y10{bottom:476.453333pt;}
.y4e{bottom:486.653333pt;}
.yf8{bottom:488.293333pt;}
.y34{bottom:489.893333pt;}
.ya2{bottom:490.213333pt;}
.ydc{bottom:490.586667pt;}
.y67{bottom:491.906667pt;}
.y9e{bottom:493.213333pt;}
.y89{bottom:494.693333pt;}
.yc5{bottom:495.226667pt;}
.yfe{bottom:497.786667pt;}
.y2e{bottom:500.480000pt;}
.yc7{bottom:501.893333pt;}
.y7{bottom:501.920000pt;}
.y4d{bottom:505.853333pt;}
.y101{bottom:506.146667pt;}
.y103{bottom:507.653333pt;}
.ya1{bottom:507.866667pt;}
.y79{bottom:508.866667pt;}
.y5c{bottom:509.280000pt;}
.y18{bottom:510.720000pt;}
.y9d{bottom:511.200000pt;}
.yd6{bottom:512.413333pt;}
.yae{bottom:513.253333pt;}
.y71{bottom:513.893333pt;}
.ydb{bottom:516.186667pt;}
.yc4{bottom:520.826667pt;}
.yc6{bottom:527.493333pt;}
.y6{bottom:527.520000pt;}
.y9c{bottom:529.213333pt;}
.y51{bottom:529.733333pt;}
.yfd{bottom:529.826667pt;}
.yd5{bottom:538.013333pt;}
.y100{bottom:538.146667pt;}
.y102{bottom:539.653333pt;}
.yda{bottom:541.786667pt;}
.y2d{bottom:545.280000pt;}
.y9b{bottom:547.386667pt;}
.ye9{bottom:551.066667pt;}
.y66{bottom:551.613333pt;}
.ye8{bottom:551.906667pt;}
.yf{bottom:552.133333pt;}
.y54{bottom:556.546667pt;}
.yad{bottom:558.053333pt;}
.yd4{bottom:563.613333pt;}
.yd9{bottom:567.386667pt;}
.y29{bottom:573.666667pt;}
.ye7{bottom:577.506667pt;}
.y81{bottom:580.640000pt;}
.y64{bottom:586.013333pt;}
.yd3{bottom:589.213333pt;}
.y70{bottom:589.253333pt;}
.y2c{bottom:590.106667pt;}
.y53{bottom:591.426667pt;}
.y33{bottom:592.573333pt;}
.yd8{bottom:592.986667pt;}
.y26{bottom:596.160000pt;}
.y88{bottom:597.253333pt;}
.y93{bottom:603.906667pt;}
.yfa{bottom:608.733333pt;}
.yfb{bottom:609.053333pt;}
.y5{bottom:609.213333pt;}
.yfc{bottom:613.733333pt;}
.yd2{bottom:614.813333pt;}
.y17{bottom:616.293333pt;}
.y28{bottom:618.466667pt;}
.yd7{bottom:618.626667pt;}
.y2b{bottom:619.106667pt;}
.y63{bottom:620.413333pt;}
.y78{bottom:622.746667pt;}
.y58{bottom:624.386667pt;}
.y80{bottom:631.840000pt;}
.yd1{bottom:640.413333pt;}
.y25{bottom:640.960000pt;}
.y9a{bottom:648.066667pt;}
.y16{bottom:649.693333pt;}
.y32{bottom:650.213333pt;}
.y57{bottom:659.266667pt;}
.y27{bottom:663.293333pt;}
.yf9{bottom:672.026667pt;}
.y65{bottom:674.426667pt;}
.y2a{bottom:676.706667pt;}
.yd0{bottom:679.546667pt;}
.y5a{bottom:700.773333pt;}
.h13{height:66.750000pt;}
.h14{height:66.883500pt;}
.h28{height:77.015312pt;}
.h12{height:78.097500pt;}
.h16{height:78.231000pt;}
.h24{height:85.785000pt;}
.h25{height:85.914000pt;}
.h15{height:88.777500pt;}
.h27{height:88.911000pt;}
.h20{height:94.785000pt;}
.h1f{height:94.918500pt;}
.h26{height:96.750000pt;}
.h1{height:100.125000pt;}
.hc{height:100.258500pt;}
.h6{height:111.472500pt;}
.h7{height:111.606000pt;}
.h11{height:122.152500pt;}
.h10{height:122.286000pt;}
.h1c{height:129.000000pt;}
.h1b{height:129.129000pt;}
.h21{height:133.500000pt;}
.h22{height:133.633500pt;}
.h2a{height:136.985000pt;}
.h4{height:144.847500pt;}
.h3{height:144.981000pt;}
.h19{height:146.353125pt;}
.h1a{height:146.478750pt;}
.h1e{height:150.285000pt;}
.h18{height:150.414000pt;}
.ha{height:155.527500pt;}
.hb{height:155.661000pt;}
.h23{height:165.405000pt;}
.h1d{height:172.215000pt;}
.h9{height:178.222500pt;}
.h29{height:184.825000pt;}
.h17{height:188.437500pt;}
.hd{height:193.500000pt;}
.he{height:193.629000pt;}
.h8{height:200.250000pt;}
.hf{height:200.383500pt;}
.h2{height:222.277500pt;}
.h5{height:244.972500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x17{left:10.943986pt;}
.x83{left:12.511986pt;}
.x56{left:18.783986pt;}
.x55{left:20.159986pt;}
.x53{left:21.119986pt;}
.x85{left:22.111986pt;}
.x7d{left:24.447986pt;}
.x73{left:28.287986pt;}
.x70{left:29.631986pt;}
.x51{left:31.103986pt;}
.x86{left:32.831986pt;}
.x50{left:34.623986pt;}
.x1e{left:35.967986pt;}
.x84{left:39.071986pt;}
.x52{left:41.343986pt;}
.x54{left:45.119986pt;}
.x1f{left:47.295986pt;}
.x65{left:52.639986pt;}
.x3{left:54.079986pt;}
.x67{left:55.039986pt;}
.x6{left:57.471986pt;}
.xa{left:58.911986pt;}
.x9{left:66.143986pt;}
.x63{left:67.967986pt;}
.x6b{left:70.143986pt;}
.x62{left:71.455986pt;}
.x8{left:73.631986pt;}
.x1c{left:78.111986pt;}
.x7b{left:82.495986pt;}
.x20{left:85.119986pt;}
.x13{left:86.303986pt;}
.x7{left:89.791986pt;}
.x6d{left:90.687986pt;}
.xb{left:93.471986pt;}
.x6c{left:95.199986pt;}
.x79{left:98.175986pt;}
.x60{left:100.415986pt;}
.x68{left:101.599986pt;}
.x5e{left:106.143986pt;}
.x7a{left:108.575986pt;}
.x90{left:109.663986pt;}
.x4{left:112.351986pt;}
.x64{left:114.207986pt;}
.x91{left:120.063986pt;}
.x11{left:123.775986pt;}
.x2{left:128.735986pt;}
.x97{left:134.173319pt;}
.x66{left:144.799986pt;}
.x69{left:146.719986pt;}
.x16{left:149.373319pt;}
.x5f{left:152.386652pt;}
.x4f{left:174.653319pt;}
.x15{left:187.933319pt;}
.x6a{left:194.239986pt;}
.x12{left:197.373319pt;}
.x4a{left:212.506652pt;}
.x8d{left:219.999986pt;}
.x6f{left:226.426652pt;}
.x4c{left:235.546652pt;}
.x8c{left:249.439986pt;}
.x48{left:252.413319pt;}
.x14{left:256.573319pt;}
.x46{left:262.786652pt;}
.x3b{left:267.133319pt;}
.x95{left:272.826652pt;}
.x29{left:275.039986pt;}
.x2a{left:276.959986pt;}
.x28{left:279.039986pt;}
.x27{left:280.959986pt;}
.x3c{left:283.133319pt;}
.x38{left:284.613319pt;}
.x96{left:286.106652pt;}
.x37{left:290.373319pt;}
.x4d{left:292.959986pt;}
.x92{left:299.013319pt;}
.x3a{left:299.933319pt;}
.x25{left:301.026652pt;}
.x93{left:304.639986pt;}
.x3d{left:308.253319pt;}
.x61{left:310.173319pt;}
.x39{left:326.239986pt;}
.x5{left:333.093319pt;}
.x47{left:348.159986pt;}
.x21{left:351.773319pt;}
.x24{left:360.413319pt;}
.x23{left:362.493319pt;}
.x18{left:374.626652pt;}
.x26{left:376.253319pt;}
.x2c{left:380.546652pt;}
.x2b{left:381.666652pt;}
.x2d{left:382.786652pt;}
.x22{left:386.973319pt;}
.x72{left:393.733319pt;}
.x71{left:397.893319pt;}
.x40{left:411.293319pt;}
.x7c{left:414.586652pt;}
.x41{left:416.733319pt;}
.x78{left:418.239986pt;}
.x49{left:426.213319pt;}
.x77{left:434.559986pt;}
.x3f{left:440.253319pt;}
.x8f{left:442.239986pt;}
.x3e{left:447.453319pt;}
.x19{left:476.573319pt;}
.x1b{left:481.053319pt;}
.x30{left:483.679986pt;}
.x2f{left:488.959986pt;}
.x2e{left:492.639986pt;}
.x35{left:507.359986pt;}
.x34{left:525.759986pt;}
.x36{left:549.279986pt;}
.x1a{left:557.853319pt;}
.x43{left:570.653319pt;}
.xf{left:573.373319pt;}
.x44{left:578.333319pt;}
.x10{left:586.653319pt;}
.x32{left:590.173319pt;}
.x42{left:598.653319pt;}
.x45{left:602.493319pt;}
.x33{left:603.933319pt;}
.xc{left:605.146652pt;}
.xe{left:608.546652pt;}
.x31{left:609.693319pt;}
.x94{left:620.319986pt;}
.x74{left:623.453319pt;}
.xd{left:626.626652pt;}
.x8e{left:633.026652pt;}
.x1d{left:636.453319pt;}
.x87{left:638.813319pt;}
.x1{left:697.573319pt;}
.x6e{left:700.293319pt;}
.x89{left:706.466652pt;}
.x76{left:725.573319pt;}
.x4b{left:726.946652pt;}
.x8a{left:729.026652pt;}
.x88{left:730.466652pt;}
.x7e{left:747.199986pt;}
.x80{left:751.679986pt;}
.x75{left:759.653319pt;}
.x8b{left:762.946652pt;}
.x7f{left:768.159986pt;}
.x4e{left:772.293319pt;}
.x82{left:779.999986pt;}
.x81{left:801.919986pt;}
.x57{left:836.639986pt;}
.x5c{left:838.239986pt;}
.x5d{left:843.039986pt;}
.x59{left:843.999986pt;}
.x5b{left:848.639986pt;}
.x58{left:857.439986pt;}
.x5a{left:859.519986pt;}
}




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