
    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_03ab6c576f0311fe397cd8f3.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_d49e9a9893e98f6877703092.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.193000;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_1cefb749e24243087703fa38.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.192000;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_dff05ac2cc8aa0c18c1b573d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.193000;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_5cad6498cb3c481d5e1a991f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.192000;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_c7d30a826078058719aef71a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_4e49cf141f92e87d6f6e21a3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.094238;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:75.600000px;}
.ls32{letter-spacing:-30.000000px;}
.ls2c{letter-spacing:-19.740000px;}
.ls2b{letter-spacing:-19.320000px;}
.ls2a{letter-spacing:-19.260000px;}
.ls29{letter-spacing:-19.080000px;}
.ls28{letter-spacing:-19.020000px;}
.ls25{letter-spacing:-18.840000px;}
.ls23{letter-spacing:-18.720000px;}
.ls24{letter-spacing:-18.600000px;}
.ls22{letter-spacing:-18.300000px;}
.ls13{letter-spacing:-17.880000px;}
.ls27{letter-spacing:-15.540000px;}
.ls26{letter-spacing:-15.480000px;}
.lsd{letter-spacing:-14.760000px;}
.ls30{letter-spacing:-12.600000px;}
.lse{letter-spacing:-12.480000px;}
.lsf{letter-spacing:-12.120000px;}
.ls20{letter-spacing:-11.880000px;}
.ls2d{letter-spacing:-11.820000px;}
.ls2f{letter-spacing:-11.520000px;}
.ls21{letter-spacing:-11.460000px;}
.ls1d{letter-spacing:-11.400000px;}
.ls1c{letter-spacing:-11.220000px;}
.ls1f{letter-spacing:-11.160000px;}
.ls1e{letter-spacing:-11.100000px;}
.ls2e{letter-spacing:-11.040000px;}
.ls12{letter-spacing:-10.020000px;}
.ls18{letter-spacing:-9.960000px;}
.ls1b{letter-spacing:-9.900000px;}
.ls17{letter-spacing:-9.720000px;}
.ls1a{letter-spacing:-9.240000px;}
.ls19{letter-spacing:-9.000000px;}
.ls10{letter-spacing:-8.640000px;}
.ls11{letter-spacing:-8.580000px;}
.ls31{letter-spacing:-0.423000px;}
.ls15{letter-spacing:-0.274127px;}
.ls16{letter-spacing:-0.213952px;}
.lsc{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.104111px;}
.ls0{letter-spacing:0.106800px;}
.ls2{letter-spacing:42.336000px;}
.lsb{letter-spacing:73.246080px;}
.ls8{letter-spacing:87.759360px;}
.ls1{letter-spacing:90.589680px;}
.ls5{letter-spacing:113.696640px;}
.ls9{letter-spacing:120.546432px;}
.lsa{letter-spacing:120.646080px;}
.ls6{letter-spacing:168.108000px;}
.ls7{letter-spacing:186.084000px;}
.ls4{letter-spacing:228.096000px;}
.ls3{letter-spacing:291.715920px;}
.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;}
}
.ws74{word-spacing:-120.051360px;}
.ws75{word-spacing:-90.051360px;}
.ws23{word-spacing:-81.758160px;}
.ws4{word-spacing:-72.072000px;}
.ws11{word-spacing:-68.612544px;}
.ws10{word-spacing:-68.571360px;}
.ws2{word-spacing:-65.276640px;}
.ws13{word-spacing:-59.991360px;}
.ws12{word-spacing:-59.972544px;}
.ws4d{word-spacing:-49.731360px;}
.ws3{word-spacing:-47.979360px;}
.ws5f{word-spacing:-38.371680px;}
.ws60{word-spacing:-37.969200px;}
.ws19{word-spacing:-36.316080px;}
.ws4b{word-spacing:-35.409600px;}
.ws1b{word-spacing:-35.209440px;}
.ws0{word-spacing:-33.533520px;}
.ws46{word-spacing:-33.500256px;}
.ws55{word-spacing:-29.934000px;}
.ws47{word-spacing:-29.689920px;}
.ws49{word-spacing:-28.715040px;}
.ws5d{word-spacing:-24.990720px;}
.ws1c{word-spacing:-24.883433px;}
.wse{word-spacing:-24.624000px;}
.ws9{word-spacing:-24.192000px;}
.wsa{word-spacing:-23.472000px;}
.ws72{word-spacing:-23.230800px;}
.wsc{word-spacing:-23.148000px;}
.ws40{word-spacing:-21.420000px;}
.wsf{word-spacing:-20.976000px;}
.ws52{word-spacing:-20.830320px;}
.ws42{word-spacing:-20.798160px;}
.ws34{word-spacing:-20.229840px;}
.ws17{word-spacing:-19.476240px;}
.ws14{word-spacing:-18.434640px;}
.ws6f{word-spacing:-15.116400px;}
.ws15{word-spacing:-15.041760px;}
.ws51{word-spacing:-14.569200px;}
.ws18{word-spacing:-14.182800px;}
.ws3c{word-spacing:-13.790160px;}
.ws5a{word-spacing:-13.489200px;}
.ws36{word-spacing:-13.473360px;}
.ws4f{word-spacing:-13.078800px;}
.ws3a{word-spacing:-13.020720px;}
.ws38{word-spacing:-12.895200px;}
.ws54{word-spacing:-7.106400px;}
.ws21{word-spacing:-7.078320px;}
.ws8{word-spacing:-4.032000px;}
.ws6{word-spacing:-3.312000px;}
.ws7{word-spacing:-3.192000px;}
.ws5{word-spacing:-3.144000px;}
.ws6d{word-spacing:-2.777760px;}
.ws6b{word-spacing:-2.391840px;}
.ws4e{word-spacing:-1.660320px;}
.ws1d{word-spacing:-1.257353px;}
.ws57{word-spacing:-0.607680px;}
.ws1a{word-spacing:-0.519840px;}
.ws59{word-spacing:-0.517200px;}
.ws1f{word-spacing:-0.382822px;}
.ws5b{word-spacing:-0.316800px;}
.ws56{word-spacing:-0.273600px;}
.ws76{word-spacing:0.000000px;}
.ws4c{word-spacing:0.014400px;}
.ws41{word-spacing:0.107280px;}
.wsd{word-spacing:0.396000px;}
.ws5e{word-spacing:0.568800px;}
.ws1e{word-spacing:0.864788px;}
.ws61{word-spacing:0.920160px;}
.ws73{word-spacing:1.398240px;}
.wsb{word-spacing:1.836000px;}
.ws62{word-spacing:1.982640px;}
.ws2b{word-spacing:2.831040px;}
.ws3f{word-spacing:3.892320px;}
.ws20{word-spacing:4.786560px;}
.ws16{word-spacing:5.147280px;}
.ws6e{word-spacing:7.530960px;}
.ws70{word-spacing:7.646400px;}
.ws48{word-spacing:8.130960px;}
.ws39{word-spacing:8.760960px;}
.ws3b{word-spacing:8.886240px;}
.ws35{word-spacing:9.001440px;}
.ws37{word-spacing:9.560160px;}
.ws53{word-spacing:11.154240px;}
.ws22{word-spacing:11.766240px;}
.ws5c{word-spacing:11.952000px;}
.ws24{word-spacing:13.440240px;}
.ws50{word-spacing:17.264160px;}
.ws71{word-spacing:19.257840px;}
.ws6c{word-spacing:21.301200px;}
.ws1{word-spacing:22.436160px;}
.ws26{word-spacing:25.657200px;}
.ws28{word-spacing:25.746480px;}
.ws45{word-spacing:35.426160px;}
.ws58{word-spacing:37.927440px;}
.ws64{word-spacing:39.461760px;}
.ws6a{word-spacing:39.486240px;}
.ws68{word-spacing:40.176000px;}
.ws27{word-spacing:44.117280px;}
.ws2a{word-spacing:44.615520px;}
.ws25{word-spacing:45.335520px;}
.ws29{word-spacing:45.795600px;}
.ws3d{word-spacing:47.526480px;}
.ws44{word-spacing:47.762640px;}
.ws67{word-spacing:52.948800px;}
.ws65{word-spacing:54.131760px;}
.ws3e{word-spacing:59.371200px;}
.ws2c{word-spacing:62.500320px;}
.ws69{word-spacing:62.657280px;}
.ws2e{word-spacing:62.891280px;}
.ws30{word-spacing:63.159600px;}
.ws63{word-spacing:63.182640px;}
.ws4a{word-spacing:67.204800px;}
.ws2d{word-spacing:74.751120px;}
.ws66{word-spacing:76.752000px;}
.ws2f{word-spacing:80.843760px;}
.ws31{word-spacing:82.331280px;}
.ws43{word-spacing:85.447440px;}
.ws32{word-spacing:120.960000px;}
.ws33{word-spacing:133.797600px;}
._39{margin-left:-30.933360px;}
._38{margin-left:-29.845920px;}
._3a{margin-left:-28.543680px;}
._34{margin-left:-26.634240px;}
._35{margin-left:-24.955200px;}
._33{margin-left:-23.926320px;}
._11{margin-left:-22.057920px;}
._10{margin-left:-20.859120px;}
._12{margin-left:-19.660320px;}
._13{margin-left:-18.461520px;}
._16{margin-left:-17.022960px;}
._5{margin-left:-15.372000px;}
._7{margin-left:-14.112000px;}
._6{margin-left:-12.984000px;}
._b{margin-left:-11.527440px;}
._4{margin-left:-10.384560px;}
._8{margin-left:-9.156960px;}
._c{margin-left:-7.477680px;}
._14{margin-left:-6.290160px;}
._15{margin-left:-5.240640px;}
._18{margin-left:-4.209600px;}
._1{margin-left:-2.525040px;}
._0{margin-left:-1.442880px;}
._2{width:1.082160px;}
._32{width:2.098800px;}
._3{width:3.163440px;}
._1b{width:22.519060px;}
._9{width:23.760000px;}
._25{width:32.742720px;}
._17{width:34.638240px;}
._29{width:37.646880px;}
._2a{width:39.560400px;}
._28{width:40.926720px;}
._a{width:42.627600px;}
._2b{width:44.548080px;}
._2c{width:46.477440px;}
._1a{width:48.631440px;}
._e{width:49.783680px;}
._f{width:51.200160px;}
._24{width:53.288640px;}
._19{width:55.813680px;}
._31{width:60.412080px;}
._27{width:62.076720px;}
._37{width:64.258800px;}
._2f{width:67.126320px;}
._26{width:68.482080px;}
._d{width:70.168560px;}
._1e{width:72.928080px;}
._1c{width:74.381040px;}
._30{width:89.068320px;}
._1d{width:96.410160px;}
._2e{width:109.629600px;}
._23{width:117.653040px;}
._2d{width:122.626080px;}
._22{width:130.041840px;}
._21{width:131.316720px;}
._1f{width:154.617600px;}
._36{width:181.894560px;}
._20{width:204.179760px;}
.fc3{color:transparent;}
.fc1{color:rgb(21,62,92);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:95.705513px;}
.fsb{font-size:95.820130px;}
.fs0{font-size:120.240000px;}
.fs5{font-size:167.760000px;}
.fsc{font-size:198.000000px;}
.fs1{font-size:228.240000px;}
.fse{font-size:228.384000px;}
.fs7{font-size:239.760000px;}
.fs8{font-size:239.904000px;}
.fs6{font-size:252.000000px;}
.fs2{font-size:264.240000px;}
.fs9{font-size:336.240000px;}
.fs3{font-size:419.760000px;}
.fsd{font-size:419.904000px;}
.fs4{font-size:725.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:20.416280px;}
.y1{bottom:29.988000px;}
.y6f{bottom:51.105084px;}
.y6e{bottom:81.765233px;}
.y6d{bottom:99.401982px;}
.y6a{bottom:99.432972px;}
.y68{bottom:99.433025px;}
.y46{bottom:99.454518px;}
.y43{bottom:99.490336px;}
.y53{bottom:99.492724px;}
.y40{bottom:99.573911px;}
.y57{bottom:107.496894px;}
.y9d{bottom:110.088000px;}
.y2{bottom:114.048000px;}
.y56{bottom:138.161815px;}
.y55{bottom:138.161819px;}
.y6c{bottom:143.080756px;}
.y54{bottom:168.821931px;}
.y9c{bottom:170.970000px;}
.y6b{bottom:173.776723px;}
.y65{bottom:191.413473px;}
.y34{bottom:191.434951px;}
.y29{bottom:191.470769px;}
.y5a{bottom:191.470781px;}
.y51{bottom:191.472814px;}
.y4a{bottom:191.518541px;}
.y3e{bottom:191.554359px;}
.y69{bottom:204.436821px;}
.y39{bottom:220.769933px;}
.y38{bottom:220.769952px;}
.y32{bottom:222.095100px;}
.y63{bottom:222.097501px;}
.y59{bottom:222.130931px;}
.y28{bottom:222.154797px;}
.y50{bottom:222.156842px;}
.y49{bottom:222.178691px;}
.y3d{bottom:222.238362px;}
.y3b{bottom:222.238387px;}
.y9b{bottom:231.990000px;}
.y66{bottom:235.097019px;}
.y37{bottom:251.430099px;}
.y36{bottom:251.430102px;}
.y4e{bottom:260.826295px;}
.y64{bottom:265.781046px;}
.y35{bottom:282.114130px;}
.y2f{bottom:283.417787px;}
.y61{bottom:283.417799px;}
.y26{bottom:283.475095px;}
.y4d{bottom:291.486444px;}
.y9a{bottom:292.830000px;}
.y5f{bottom:314.077949px;}
.y2e{bottom:314.113754px;}
.y25{bottom:314.135245px;}
.y4c{bottom:322.146594px;}
.y60{bottom:327.101319px;}
.y33{bottom:343.434425px;}
.y5d{bottom:344.738098px;}
.y2b{bottom:344.773903px;}
.y24{bottom:344.795394px;}
.y4b{bottom:352.830609px;}
.y99{bottom:353.670000px;}
.y5e{bottom:357.761494px;}
.y30{bottom:374.094566px;}
.y98{bottom:414.510000px;}
.y47{bottom:417.362590px;}
.y2d{bottom:435.450690px;}
.y44{bottom:451.210512px;}
.y97{bottom:475.350000px;}
.y41{bottom:486.825468px;}
.y3c{bottom:548.169656px;}
.y16{bottom:698.040000px;}
.y1e{bottom:717.510000px;}
.y15{bottom:770.040000px;}
.y1d{bottom:789.510000px;}
.y14{bottom:842.040000px;}
.y1c{bottom:861.510000px;}
.y13{bottom:914.040000px;}
.y1b{bottom:933.555000px;}
.y1a{bottom:1005.555000px;}
.y96{bottom:1046.730000px;}
.y95{bottom:1147.530000px;}
.y90{bottom:1284.510000px;}
.y77{bottom:1340.640000px;}
.y8f{bottom:1356.510000px;}
.y8e{bottom:1428.510000px;}
.y76{bottom:1463.730000px;}
.y8d{bottom:1500.510000px;}
.y75{bottom:1535.730000px;}
.y8c{bottom:1572.510000px;}
.y74{bottom:1607.730000px;}
.ya4{bottom:1674.795000px;}
.y73{bottom:1679.730000px;}
.y72{bottom:1751.730000px;}
.ya3{bottom:1775.595000px;}
.y71{bottom:1823.730000px;}
.y19{bottom:1832.655000px;}
.y94{bottom:1910.130000px;}
.y8b{bottom:1918.260000px;}
.y18{bottom:1933.455000px;}
.y8a{bottom:1990.260000px;}
.y93{bottom:2010.930000px;}
.y17{bottom:2034.255000px;}
.y89{bottom:2062.260000px;}
.y92{bottom:2111.730000px;}
.ya2{bottom:2157.405000px;}
.y2c{bottom:2257.379837px;}
.y4f{bottom:2265.389141px;}
.y5c{bottom:2270.403237px;}
.y62{bottom:2301.063387px;}
.y88{bottom:2309.220000px;}
.y52{bottom:2326.709082px;}
.y2a{bottom:2348.056628px;}
.y67{bottom:2362.383685px;}
.y31{bottom:2378.719166px;}
.y87{bottom:2381.220000px;}
.y48{bottom:2418.691918px;}
.y86{bottom:2453.220000px;}
.y5b{bottom:2454.366521px;}
.y23{bottom:2501.359763px;}
.y58{bottom:2515.686820px;}
.y27{bottom:2532.019912px;}
.ya1{bottom:2541.240000px;}
.y45{bottom:2575.287914px;}
.y3a{bottom:2583.311131px;}
.y42{bottom:2609.100042px;}
.y3f{bottom:2644.631430px;}
.y85{bottom:2689.380000px;}
.y84{bottom:2761.380000px;}
.y12{bottom:2804.910000px;}
.y83{bottom:2833.380000px;}
.y11{bottom:2876.910000px;}
.y82{bottom:2905.410000px;}
.y10{bottom:2948.910000px;}
.y81{bottom:2977.410000px;}
.yf{bottom:3020.910000px;}
.ya0{bottom:3061.155000px;}
.ye{bottom:3092.910000px;}
.y9f{bottom:3161.955000px;}
.yd{bottom:3164.940000px;}
.yc{bottom:3236.940000px;}
.y80{bottom:3305.265000px;}
.yb{bottom:3308.940000px;}
.y7f{bottom:3377.265000px;}
.ya{bottom:3380.940000px;}
.y7e{bottom:3449.265000px;}
.y91{bottom:3489.045000px;}
.y7d{bottom:3521.265000px;}
.y7c{bottom:3593.265000px;}
.y22{bottom:3663.900000px;}
.y7b{bottom:3665.265000px;}
.y21{bottom:3735.900000px;}
.y7a{bottom:3737.265000px;}
.y20{bottom:3807.900000px;}
.y79{bottom:3809.265000px;}
.y1f{bottom:3879.900000px;}
.y78{bottom:3881.265000px;}
.y3{bottom:3984.195000px;}
.y9e{bottom:3985.995000px;}
.y7{bottom:4223.880000px;}
.y6{bottom:4299.480000px;}
.y9{bottom:4402.830000px;}
.y8{bottom:4478.430000px;}
.y5{bottom:4589.820000px;}
.y4{bottom:4785.840000px;}
.hf{height:81.732882px;}
.h11{height:81.830766px;}
.h3{height:125.406562px;}
.h7{height:148.635360px;}
.h20{height:196.984356px;}
.h23{height:202.220640px;}
.h24{height:202.348224px;}
.hb{height:212.427360px;}
.ha{height:212.554944px;}
.h1e{height:214.621105px;}
.h17{height:214.621108px;}
.h9{height:216.263520px;}
.hc{height:216.393408px;}
.h8{height:224.235360px;}
.h4{height:238.344480px;}
.h21{height:258.307042px;}
.h16{height:292.560971px;}
.hd{height:303.288480px;}
.h10{height:343.852189px;}
.h19{height:345.270651px;}
.h1a{height:360.185282px;}
.h5{height:371.907360px;}
.h22{height:372.034944px;}
.he{height:374.512338px;}
.h1f{height:380.945252px;}
.h1b{height:421.505580px;}
.h14{height:429.242138px;}
.h1d{height:429.242150px;}
.h18{height:429.242153px;}
.h12{height:527.815473px;}
.h15{height:581.239228px;}
.h1c{height:605.468864px;}
.h13{height:618.492264px;}
.h6{height:643.023360px;}
.h2{height:5017.319634px;}
.h0{height:5017.320000px;}
.h1{height:5017.500000px;}
.w4{width:473.705682px;}
.w3{width:473.705685px;}
.wb{width:602.481427px;}
.w9{width:602.481430px;}
.wa{width:602.481434px;}
.w7{width:629.554415px;}
.w6{width:629.554419px;}
.w8{width:629.554422px;}
.w5{width:1647.859280px;}
.w1{width:3571.500000px;}
.w2{width:3571.739947px;}
.w0{width:3571.740000px;}
.x0{left:0.000000px;}
.xf{left:6.445943px;}
.x13{left:32.229754px;}
.x12{left:41.683812px;}
.x10{left:46.983813px;}
.x1{left:60.227947px;}
.x2{left:63.827947px;}
.x2b{left:109.799947px;}
.x11{left:123.069894px;}
.x4{left:124.451947px;}
.xe{left:128.336214px;}
.x2a{left:131.075947px;}
.x3{left:133.523947px;}
.x7{left:136.115947px;}
.xd{left:142.883947px;}
.xb{left:147.383947px;}
.xa{left:160.889947px;}
.x26{left:186.479947px;}
.x14{left:204.718591px;}
.x17{left:261.705558px;}
.x1d{left:494.165604px;}
.x1a{left:500.898036px;}
.x23{left:536.816298px;}
.x15{left:574.968890px;}
.x1b{left:578.822405px;}
.x8{left:604.154947px;}
.x16{left:701.319319px;}
.x19{left:737.703125px;}
.x24{left:789.689947px;}
.x18{left:806.889650px;}
.x1c{left:836.827510px;}
.x25{left:857.189947px;}
.x21{left:1080.938008px;}
.x1f{left:1089.819092px;}
.x1e{left:1170.574635px;}
.x9{left:1228.244947px;}
.x5{left:1349.894947px;}
.x20{left:1352.133431px;}
.x22{left:1572.035810px;}
.x2e{left:1845.389947px;}
.x2d{left:1850.684947px;}
.x29{left:1852.919947px;}
.x28{left:1857.494947px;}
.x27{left:1858.889947px;}
.xc{left:1859.939947px;}
.x6{left:2044.004947px;}
.x2c{left:2441.009947px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:67.200000pt;}
.ls32{letter-spacing:-26.666667pt;}
.ls2c{letter-spacing:-17.546667pt;}
.ls2b{letter-spacing:-17.173333pt;}
.ls2a{letter-spacing:-17.120000pt;}
.ls29{letter-spacing:-16.960000pt;}
.ls28{letter-spacing:-16.906667pt;}
.ls25{letter-spacing:-16.746667pt;}
.ls23{letter-spacing:-16.640000pt;}
.ls24{letter-spacing:-16.533333pt;}
.ls22{letter-spacing:-16.266667pt;}
.ls13{letter-spacing:-15.893333pt;}
.ls27{letter-spacing:-13.813333pt;}
.ls26{letter-spacing:-13.760000pt;}
.lsd{letter-spacing:-13.120000pt;}
.ls30{letter-spacing:-11.200000pt;}
.lse{letter-spacing:-11.093333pt;}
.lsf{letter-spacing:-10.773333pt;}
.ls20{letter-spacing:-10.560000pt;}
.ls2d{letter-spacing:-10.506667pt;}
.ls2f{letter-spacing:-10.240000pt;}
.ls21{letter-spacing:-10.186667pt;}
.ls1d{letter-spacing:-10.133333pt;}
.ls1c{letter-spacing:-9.973333pt;}
.ls1f{letter-spacing:-9.920000pt;}
.ls1e{letter-spacing:-9.866667pt;}
.ls2e{letter-spacing:-9.813333pt;}
.ls12{letter-spacing:-8.906667pt;}
.ls18{letter-spacing:-8.853333pt;}
.ls1b{letter-spacing:-8.800000pt;}
.ls17{letter-spacing:-8.640000pt;}
.ls1a{letter-spacing:-8.213333pt;}
.ls19{letter-spacing:-8.000000pt;}
.ls10{letter-spacing:-7.680000pt;}
.ls11{letter-spacing:-7.626667pt;}
.ls31{letter-spacing:-0.376000pt;}
.ls15{letter-spacing:-0.243668pt;}
.ls16{letter-spacing:-0.190180pt;}
.lsc{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.092543pt;}
.ls0{letter-spacing:0.094933pt;}
.ls2{letter-spacing:37.632000pt;}
.lsb{letter-spacing:65.107627pt;}
.ls8{letter-spacing:78.008320pt;}
.ls1{letter-spacing:80.524160pt;}
.ls5{letter-spacing:101.063680pt;}
.ls9{letter-spacing:107.152384pt;}
.lsa{letter-spacing:107.240960pt;}
.ls6{letter-spacing:149.429333pt;}
.ls7{letter-spacing:165.408000pt;}
.ls4{letter-spacing:202.752000pt;}
.ls3{letter-spacing:259.303040pt;}
.ws74{word-spacing:-106.712320pt;}
.ws75{word-spacing:-80.045653pt;}
.ws23{word-spacing:-72.673920pt;}
.ws4{word-spacing:-64.064000pt;}
.ws11{word-spacing:-60.988928pt;}
.ws10{word-spacing:-60.952320pt;}
.ws2{word-spacing:-58.023680pt;}
.ws13{word-spacing:-53.325653pt;}
.ws12{word-spacing:-53.308928pt;}
.ws4d{word-spacing:-44.205653pt;}
.ws3{word-spacing:-42.648320pt;}
.ws5f{word-spacing:-34.108160pt;}
.ws60{word-spacing:-33.750400pt;}
.ws19{word-spacing:-32.280960pt;}
.ws4b{word-spacing:-31.475200pt;}
.ws1b{word-spacing:-31.297280pt;}
.ws0{word-spacing:-29.807573pt;}
.ws46{word-spacing:-29.778005pt;}
.ws55{word-spacing:-26.608000pt;}
.ws47{word-spacing:-26.391040pt;}
.ws49{word-spacing:-25.524480pt;}
.ws5d{word-spacing:-22.213973pt;}
.ws1c{word-spacing:-22.118607pt;}
.wse{word-spacing:-21.888000pt;}
.ws9{word-spacing:-21.504000pt;}
.wsa{word-spacing:-20.864000pt;}
.ws72{word-spacing:-20.649600pt;}
.wsc{word-spacing:-20.576000pt;}
.ws40{word-spacing:-19.040000pt;}
.wsf{word-spacing:-18.645333pt;}
.ws52{word-spacing:-18.515840pt;}
.ws42{word-spacing:-18.487253pt;}
.ws34{word-spacing:-17.982080pt;}
.ws17{word-spacing:-17.312213pt;}
.ws14{word-spacing:-16.386347pt;}
.ws6f{word-spacing:-13.436800pt;}
.ws15{word-spacing:-13.370453pt;}
.ws51{word-spacing:-12.950400pt;}
.ws18{word-spacing:-12.606933pt;}
.ws3c{word-spacing:-12.257920pt;}
.ws5a{word-spacing:-11.990400pt;}
.ws36{word-spacing:-11.976320pt;}
.ws4f{word-spacing:-11.625600pt;}
.ws3a{word-spacing:-11.573973pt;}
.ws38{word-spacing:-11.462400pt;}
.ws54{word-spacing:-6.316800pt;}
.ws21{word-spacing:-6.291840pt;}
.ws8{word-spacing:-3.584000pt;}
.ws6{word-spacing:-2.944000pt;}
.ws7{word-spacing:-2.837333pt;}
.ws5{word-spacing:-2.794667pt;}
.ws6d{word-spacing:-2.469120pt;}
.ws6b{word-spacing:-2.126080pt;}
.ws4e{word-spacing:-1.475840pt;}
.ws1d{word-spacing:-1.117647pt;}
.ws57{word-spacing:-0.540160pt;}
.ws1a{word-spacing:-0.462080pt;}
.ws59{word-spacing:-0.459733pt;}
.ws1f{word-spacing:-0.340286pt;}
.ws5b{word-spacing:-0.281600pt;}
.ws56{word-spacing:-0.243200pt;}
.ws76{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.012800pt;}
.ws41{word-spacing:0.095360pt;}
.wsd{word-spacing:0.352000pt;}
.ws5e{word-spacing:0.505600pt;}
.ws1e{word-spacing:0.768701pt;}
.ws61{word-spacing:0.817920pt;}
.ws73{word-spacing:1.242880pt;}
.wsb{word-spacing:1.632000pt;}
.ws62{word-spacing:1.762347pt;}
.ws2b{word-spacing:2.516480pt;}
.ws3f{word-spacing:3.459840pt;}
.ws20{word-spacing:4.254720pt;}
.ws16{word-spacing:4.575360pt;}
.ws6e{word-spacing:6.694187pt;}
.ws70{word-spacing:6.796800pt;}
.ws48{word-spacing:7.227520pt;}
.ws39{word-spacing:7.787520pt;}
.ws3b{word-spacing:7.898880pt;}
.ws35{word-spacing:8.001280pt;}
.ws37{word-spacing:8.497920pt;}
.ws53{word-spacing:9.914880pt;}
.ws22{word-spacing:10.458880pt;}
.ws5c{word-spacing:10.624000pt;}
.ws24{word-spacing:11.946880pt;}
.ws50{word-spacing:15.345920pt;}
.ws71{word-spacing:17.118080pt;}
.ws6c{word-spacing:18.934400pt;}
.ws1{word-spacing:19.943253pt;}
.ws26{word-spacing:22.806400pt;}
.ws28{word-spacing:22.885760pt;}
.ws45{word-spacing:31.489920pt;}
.ws58{word-spacing:33.713280pt;}
.ws64{word-spacing:35.077120pt;}
.ws6a{word-spacing:35.098880pt;}
.ws68{word-spacing:35.712000pt;}
.ws27{word-spacing:39.215360pt;}
.ws2a{word-spacing:39.658240pt;}
.ws25{word-spacing:40.298240pt;}
.ws29{word-spacing:40.707200pt;}
.ws3d{word-spacing:42.245760pt;}
.ws44{word-spacing:42.455680pt;}
.ws67{word-spacing:47.065600pt;}
.ws65{word-spacing:48.117120pt;}
.ws3e{word-spacing:52.774400pt;}
.ws2c{word-spacing:55.555840pt;}
.ws69{word-spacing:55.695360pt;}
.ws2e{word-spacing:55.903360pt;}
.ws30{word-spacing:56.141867pt;}
.ws63{word-spacing:56.162347pt;}
.ws4a{word-spacing:59.737600pt;}
.ws2d{word-spacing:66.445440pt;}
.ws66{word-spacing:68.224000pt;}
.ws2f{word-spacing:71.861120pt;}
.ws31{word-spacing:73.183360pt;}
.ws43{word-spacing:75.953280pt;}
.ws32{word-spacing:107.520000pt;}
.ws33{word-spacing:118.931200pt;}
._39{margin-left:-27.496320pt;}
._38{margin-left:-26.529707pt;}
._3a{margin-left:-25.372160pt;}
._34{margin-left:-23.674880pt;}
._35{margin-left:-22.182400pt;}
._33{margin-left:-21.267840pt;}
._11{margin-left:-19.607040pt;}
._10{margin-left:-18.541440pt;}
._12{margin-left:-17.475840pt;}
._13{margin-left:-16.410240pt;}
._16{margin-left:-15.131520pt;}
._5{margin-left:-13.664000pt;}
._7{margin-left:-12.544000pt;}
._6{margin-left:-11.541333pt;}
._b{margin-left:-10.246613pt;}
._4{margin-left:-9.230720pt;}
._8{margin-left:-8.139520pt;}
._c{margin-left:-6.646827pt;}
._14{margin-left:-5.591253pt;}
._15{margin-left:-4.658347pt;}
._18{margin-left:-3.741867pt;}
._1{margin-left:-2.244480pt;}
._0{margin-left:-1.282560pt;}
._2{width:0.961920pt;}
._32{width:1.865600pt;}
._3{width:2.811947pt;}
._1b{width:20.016942pt;}
._9{width:21.120000pt;}
._25{width:29.104640pt;}
._17{width:30.789547pt;}
._29{width:33.463893pt;}
._2a{width:35.164800pt;}
._28{width:36.379307pt;}
._a{width:37.891200pt;}
._2b{width:39.598293pt;}
._2c{width:41.313280pt;}
._1a{width:43.227947pt;}
._e{width:44.252160pt;}
._f{width:45.511253pt;}
._24{width:47.367680pt;}
._19{width:49.612160pt;}
._31{width:53.699627pt;}
._27{width:55.179307pt;}
._37{width:57.118933pt;}
._2f{width:59.667840pt;}
._26{width:60.872960pt;}
._d{width:62.372053pt;}
._1e{width:64.824960pt;}
._1c{width:66.116480pt;}
._30{width:79.171840pt;}
._1d{width:85.697920pt;}
._2e{width:97.448533pt;}
._23{width:104.580480pt;}
._2d{width:109.000960pt;}
._22{width:115.592747pt;}
._21{width:116.725973pt;}
._1f{width:137.437867pt;}
._36{width:161.684053pt;}
._20{width:181.493120pt;}
.fsa{font-size:85.071567pt;}
.fsb{font-size:85.173449pt;}
.fs0{font-size:106.880000pt;}
.fs5{font-size:149.120000pt;}
.fsc{font-size:176.000000pt;}
.fs1{font-size:202.880000pt;}
.fse{font-size:203.008000pt;}
.fs7{font-size:213.120000pt;}
.fs8{font-size:213.248000pt;}
.fs6{font-size:224.000000pt;}
.fs2{font-size:234.880000pt;}
.fs9{font-size:298.880000pt;}
.fs3{font-size:373.120000pt;}
.fsd{font-size:373.248000pt;}
.fs4{font-size:645.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:18.147804pt;}
.y1{bottom:26.656000pt;}
.y6f{bottom:45.426741pt;}
.y6e{bottom:72.680207pt;}
.y6d{bottom:88.357318pt;}
.y6a{bottom:88.384864pt;}
.y68{bottom:88.384911pt;}
.y46{bottom:88.404016pt;}
.y43{bottom:88.435854pt;}
.y53{bottom:88.437977pt;}
.y40{bottom:88.510143pt;}
.y57{bottom:95.552795pt;}
.y9d{bottom:97.856000pt;}
.y2{bottom:101.376000pt;}
.y56{bottom:122.810502pt;}
.y55{bottom:122.810506pt;}
.y6c{bottom:127.182894pt;}
.y54{bottom:150.063938pt;}
.y9c{bottom:151.973333pt;}
.y6b{bottom:154.468199pt;}
.y65{bottom:170.145309pt;}
.y34{bottom:170.164401pt;}
.y29{bottom:170.196239pt;}
.y5a{bottom:170.196250pt;}
.y51{bottom:170.198057pt;}
.y4a{bottom:170.238703pt;}
.y3e{bottom:170.270541pt;}
.y69{bottom:181.721619pt;}
.y39{bottom:196.239940pt;}
.y38{bottom:196.239958pt;}
.y32{bottom:197.417867pt;}
.y63{bottom:197.420000pt;}
.y59{bottom:197.449716pt;}
.y28{bottom:197.470930pt;}
.y50{bottom:197.472748pt;}
.y49{bottom:197.492169pt;}
.y3d{bottom:197.545211pt;}
.y3b{bottom:197.545233pt;}
.y9b{bottom:206.213333pt;}
.y66{bottom:208.975128pt;}
.y37{bottom:223.493422pt;}
.y36{bottom:223.493424pt;}
.y4e{bottom:231.845596pt;}
.y64{bottom:236.249819pt;}
.y35{bottom:250.768115pt;}
.y2f{bottom:251.926921pt;}
.y61{bottom:251.926933pt;}
.y26{bottom:251.977862pt;}
.y4d{bottom:259.099062pt;}
.y9a{bottom:260.293333pt;}
.y5f{bottom:279.180399pt;}
.y2e{bottom:279.212226pt;}
.y25{bottom:279.231329pt;}
.y4c{bottom:286.352528pt;}
.y60{bottom:290.756728pt;}
.y33{bottom:305.275044pt;}
.y5d{bottom:306.433865pt;}
.y2b{bottom:306.465692pt;}
.y24{bottom:306.484795pt;}
.y4b{bottom:313.627208pt;}
.y99{bottom:314.373333pt;}
.y5e{bottom:318.010217pt;}
.y30{bottom:332.528503pt;}
.y98{bottom:368.453333pt;}
.y47{bottom:370.988969pt;}
.y2d{bottom:387.067280pt;}
.y44{bottom:401.076011pt;}
.y97{bottom:422.533333pt;}
.y41{bottom:432.733750pt;}
.y3c{bottom:487.261917pt;}
.y16{bottom:620.480000pt;}
.y1e{bottom:637.786667pt;}
.y15{bottom:684.480000pt;}
.y1d{bottom:701.786667pt;}
.y14{bottom:748.480000pt;}
.y1c{bottom:765.786667pt;}
.y13{bottom:812.480000pt;}
.y1b{bottom:829.826667pt;}
.y1a{bottom:893.826667pt;}
.y96{bottom:930.426667pt;}
.y95{bottom:1020.026667pt;}
.y90{bottom:1141.786667pt;}
.y77{bottom:1191.680000pt;}
.y8f{bottom:1205.786667pt;}
.y8e{bottom:1269.786667pt;}
.y76{bottom:1301.093333pt;}
.y8d{bottom:1333.786667pt;}
.y75{bottom:1365.093333pt;}
.y8c{bottom:1397.786667pt;}
.y74{bottom:1429.093333pt;}
.ya4{bottom:1488.706667pt;}
.y73{bottom:1493.093333pt;}
.y72{bottom:1557.093333pt;}
.ya3{bottom:1578.306667pt;}
.y71{bottom:1621.093333pt;}
.y19{bottom:1629.026667pt;}
.y94{bottom:1697.893333pt;}
.y8b{bottom:1705.120000pt;}
.y18{bottom:1718.626667pt;}
.y8a{bottom:1769.120000pt;}
.y93{bottom:1787.493333pt;}
.y17{bottom:1808.226667pt;}
.y89{bottom:1833.120000pt;}
.y92{bottom:1877.093333pt;}
.ya2{bottom:1917.693333pt;}
.y2c{bottom:2006.559855pt;}
.y4f{bottom:2013.679237pt;}
.y5c{bottom:2018.136211pt;}
.y62{bottom:2045.389677pt;}
.y88{bottom:2052.640000pt;}
.y52{bottom:2068.185851pt;}
.y2a{bottom:2087.161448pt;}
.y67{bottom:2099.896609pt;}
.y31{bottom:2114.417036pt;}
.y87{bottom:2116.640000pt;}
.y48{bottom:2149.948371pt;}
.y86{bottom:2180.640000pt;}
.y5b{bottom:2181.659130pt;}
.y23{bottom:2223.430901pt;}
.y58{bottom:2236.166062pt;}
.y27{bottom:2250.684367pt;}
.ya1{bottom:2258.880000pt;}
.y45{bottom:2289.144813pt;}
.y3a{bottom:2296.276561pt;}
.y42{bottom:2319.200037pt;}
.y3f{bottom:2350.783493pt;}
.y85{bottom:2390.560000pt;}
.y84{bottom:2454.560000pt;}
.y12{bottom:2493.253333pt;}
.y83{bottom:2518.560000pt;}
.y11{bottom:2557.253333pt;}
.y82{bottom:2582.586667pt;}
.y10{bottom:2621.253333pt;}
.y81{bottom:2646.586667pt;}
.yf{bottom:2685.253333pt;}
.ya0{bottom:2721.026667pt;}
.ye{bottom:2749.253333pt;}
.y9f{bottom:2810.626667pt;}
.yd{bottom:2813.280000pt;}
.yc{bottom:2877.280000pt;}
.y80{bottom:2938.013333pt;}
.yb{bottom:2941.280000pt;}
.y7f{bottom:3002.013333pt;}
.ya{bottom:3005.280000pt;}
.y7e{bottom:3066.013333pt;}
.y91{bottom:3101.373333pt;}
.y7d{bottom:3130.013333pt;}
.y7c{bottom:3194.013333pt;}
.y22{bottom:3256.800000pt;}
.y7b{bottom:3258.013333pt;}
.y21{bottom:3320.800000pt;}
.y7a{bottom:3322.013333pt;}
.y20{bottom:3384.800000pt;}
.y79{bottom:3386.013333pt;}
.y1f{bottom:3448.800000pt;}
.y78{bottom:3450.013333pt;}
.y3{bottom:3541.506667pt;}
.y9e{bottom:3543.106667pt;}
.y7{bottom:3754.560000pt;}
.y6{bottom:3821.760000pt;}
.y9{bottom:3913.626667pt;}
.y8{bottom:3980.826667pt;}
.y5{bottom:4079.840000pt;}
.y4{bottom:4254.080000pt;}
.hf{height:72.651451pt;}
.h11{height:72.738458pt;}
.h3{height:111.472500pt;}
.h7{height:132.120320pt;}
.h20{height:175.097205pt;}
.h23{height:179.751680pt;}
.h24{height:179.865088pt;}
.hb{height:188.824320pt;}
.ha{height:188.937728pt;}
.h1e{height:190.774316pt;}
.h17{height:190.774318pt;}
.h9{height:192.234240pt;}
.hc{height:192.349696pt;}
.h8{height:199.320320pt;}
.h4{height:211.861760pt;}
.h21{height:229.606260pt;}
.h16{height:260.054196pt;}
.hd{height:269.589760pt;}
.h10{height:305.646390pt;}
.h19{height:306.907245pt;}
.h1a{height:320.164695pt;}
.h5{height:330.584320pt;}
.h22{height:330.697728pt;}
.he{height:332.899856pt;}
.h1f{height:338.618002pt;}
.h1b{height:374.671627pt;}
.h14{height:381.548567pt;}
.h1d{height:381.548578pt;}
.h18{height:381.548581pt;}
.h12{height:469.169309pt;}
.h15{height:516.657091pt;}
.h1c{height:538.194546pt;}
.h13{height:549.770902pt;}
.h6{height:571.576320pt;}
.h2{height:4459.839674pt;}
.h0{height:4459.840000pt;}
.h1{height:4460.000000pt;}
.w4{width:421.071717pt;}
.w3{width:421.071720pt;}
.wb{width:535.539046pt;}
.w9{width:535.539049pt;}
.wa{width:535.539052pt;}
.w7{width:559.603925pt;}
.w6{width:559.603928pt;}
.w8{width:559.603931pt;}
.w5{width:1464.763804pt;}
.w1{width:3174.666667pt;}
.w2{width:3174.879953pt;}
.w0{width:3174.880000pt;}
.x0{left:0.000000pt;}
.xf{left:5.729727pt;}
.x13{left:28.648670pt;}
.x12{left:37.052277pt;}
.x10{left:41.763390pt;}
.x1{left:53.535953pt;}
.x2{left:56.735953pt;}
.x2b{left:97.599953pt;}
.x11{left:109.395461pt;}
.x4{left:110.623953pt;}
.xe{left:114.076635pt;}
.x2a{left:116.511953pt;}
.x3{left:118.687953pt;}
.x7{left:120.991953pt;}
.xd{left:127.007953pt;}
.xb{left:131.007953pt;}
.xa{left:143.013286pt;}
.x26{left:165.759953pt;}
.x14{left:181.972081pt;}
.x17{left:232.627162pt;}
.x1d{left:439.258315pt;}
.x1a{left:445.242698pt;}
.x23{left:477.170043pt;}
.x15{left:511.083458pt;}
.x1b{left:514.508805pt;}
.x8{left:537.026619pt;}
.x16{left:623.394950pt;}
.x19{left:655.736111pt;}
.x24{left:701.946619pt;}
.x18{left:717.235244pt;}
.x1c{left:743.846675pt;}
.x25{left:761.946619pt;}
.x21{left:960.833785pt;}
.x1f{left:968.728082pt;}
.x1e{left:1040.510787pt;}
.x9{left:1091.773286pt;}
.x5{left:1199.906619pt;}
.x20{left:1201.896383pt;}
.x22{left:1397.365164pt;}
.x2e{left:1640.346619pt;}
.x2d{left:1645.053286pt;}
.x29{left:1647.039953pt;}
.x28{left:1651.106619pt;}
.x27{left:1652.346619pt;}
.xc{left:1653.279953pt;}
.x6{left:1816.893286pt;}
.x2c{left:2169.786619pt;}
}




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