
    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_2dececa3c7a4470848cf74c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_82b7cdd5ec8246e17c063358.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;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_7817a753e6547e89f071cebb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;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_19d436109ad43342b0ee212c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_79672955c58b96c36010b3d5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_26f3f060720a7c3a7de24d87.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f11472ea88f221e73b98efbe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_5810d8698b7aae2043721e5c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087891;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_cac8fd07350774fec39380bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_5c060cc11a531fa86f313f4d.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m5{transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251199,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.251206,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251206,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251206,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,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);}
.v4{vertical-align:-204.600000px;}
.va{vertical-align:-80.640000px;}
.v5{vertical-align:-59.040000px;}
.v7{vertical-align:-47.520000px;}
.vb{vertical-align:-22.823630px;}
.vc{vertical-align:-18.200859px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.500000px;}
.v1{vertical-align:8.940000px;}
.v2{vertical-align:32.580000px;}
.v8{vertical-align:57.600000px;}
.v9{vertical-align:60.060000px;}
.v6{vertical-align:72.000000px;}
.ls1b{letter-spacing:-1.146000px;}
.ls18{letter-spacing:-1.098000px;}
.ls1e{letter-spacing:-0.310200px;}
.ls10{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.235200px;}
.ls1c{letter-spacing:-0.195000px;}
.ls1f{letter-spacing:-0.084960px;}
.ls11{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.052560px;}
.ls15{letter-spacing:-0.012960px;}
.ls16{letter-spacing:-0.005040px;}
.lse{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.012960px;}
.ls19{letter-spacing:0.038040px;}
.ls5{letter-spacing:0.085968px;}
.lsc{letter-spacing:0.120350px;}
.lsf{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.154343px;}
.ls3{letter-spacing:0.166608px;}
.lsd{letter-spacing:0.171889px;}
.ls1d{letter-spacing:0.193200px;}
.ls1a{letter-spacing:0.279600px;}
.ls13{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.349920px;}
.ls2{letter-spacing:0.430560px;}
.ls6{letter-spacing:37.527840px;}
.ls1{letter-spacing:40.176000px;}
.ls8{letter-spacing:48.972960px;}
.ls4{letter-spacing:63.614016px;}
.ls0{letter-spacing:194.400000px;}
.ls9{letter-spacing:314.844034px;}
.lsa{letter-spacing:361.676455px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-107.568000px;}
.ws45{word-spacing:-47.060880px;}
.ws44{word-spacing:-46.819320px;}
.ws42{word-spacing:-46.753200px;}
.ws41{word-spacing:-45.655200px;}
.ws46{word-spacing:-45.607200px;}
.ws13{word-spacing:-42.120000px;}
.ws47{word-spacing:-37.680000px;}
.ws48{word-spacing:-37.291800px;}
.ws10{word-spacing:-35.100000px;}
.ws22{word-spacing:-32.713200px;}
.ws3f{word-spacing:-32.478000px;}
.ws49{word-spacing:-24.991200px;}
.ws11{word-spacing:-23.446800px;}
.ws50{word-spacing:-18.625266px;}
.ws4b{word-spacing:-18.481680px;}
.ws15{word-spacing:-1.224000px;}
.ws1e{word-spacing:-0.972000px;}
.ws43{word-spacing:-0.609120px;}
.wsf{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.369360px;}
.ws1f{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.240000px;}
.ws1d{word-spacing:-0.216000px;}
.ws4c{word-spacing:-0.072000px;}
.ws17{word-spacing:0.000000px;}
.ws21{word-spacing:0.180000px;}
.wse{word-spacing:0.216000px;}
.ws40{word-spacing:0.568080px;}
.ws1b{word-spacing:0.576000px;}
.ws1a{word-spacing:0.720000px;}
.ws12{word-spacing:1.110960px;}
.wsd{word-spacing:1.668000px;}
.ws19{word-spacing:1.728000px;}
.ws18{word-spacing:2.088000px;}
.ws20{word-spacing:6.480000px;}
.ws2{word-spacing:26.928000px;}
.ws0{word-spacing:26.976000px;}
.ws1{word-spacing:27.000000px;}
.ws7{word-spacing:50.328000px;}
.ws5{word-spacing:50.544000px;}
.ws6{word-spacing:51.048000px;}
.ws3{word-spacing:53.496000px;}
.wsa{word-spacing:65.664000px;}
.wsc{word-spacing:65.808000px;}
.ws9{word-spacing:65.880000px;}
.ws8{word-spacing:66.168000px;}
.ws4{word-spacing:141.696000px;}
.ws4e{word-spacing:273.806227px;}
.ws4f{word-spacing:290.481394px;}
.ws25{word-spacing:379.875600px;}
.ws2f{word-spacing:381.741840px;}
.ws28{word-spacing:384.915600px;}
.ws32{word-spacing:386.781840px;}
.ws23{word-spacing:386.984160px;}
.ws2b{word-spacing:388.221840px;}
.ws24{word-spacing:388.342080px;}
.ws38{word-spacing:391.316400px;}
.ws2e{word-spacing:395.534880px;}
.ws3c{word-spacing:396.356400px;}
.ws35{word-spacing:397.796400px;}
.ws27{word-spacing:399.078720px;}
.ws31{word-spacing:406.271520px;}
.ws2a{word-spacing:407.613600px;}
.ws37{word-spacing:423.516240px;}
.ws3b{word-spacing:434.252880px;}
.ws34{word-spacing:435.594960px;}
.ws3d{word-spacing:461.570160px;}
.ws39{word-spacing:467.393520px;}
.ws2c{word-spacing:473.400480px;}
.ws4d{word-spacing:473.616360px;}
.ws36{word-spacing:486.360480px;}
.ws4a{word-spacing:520.596480px;}
.ws30{word-spacing:595.494240px;}
.ws3e{word-spacing:596.752800px;}
.ws33{word-spacing:598.360560px;}
.ws29{word-spacing:602.680560px;}
.ws2d{word-spacing:607.000560px;}
.ws26{word-spacing:607.440480px;}
.ws3a{word-spacing:608.408880px;}
._19{margin-left:-4.586496px;}
._9{margin-left:-3.126240px;}
._0{margin-left:-2.065536px;}
._7{margin-left:-1.057536px;}
._2{width:1.728000px;}
._1a{width:3.505536px;}
._15{width:34.253520px;}
._b{width:40.036032px;}
._c{width:42.264000px;}
._e{width:43.560000px;}
._d{width:45.085536px;}
._a{width:49.957776px;}
._1{width:57.456000px;}
._6{width:93.588000px;}
._3{width:96.636000px;}
._4{width:97.836000px;}
._5{width:185.700000px;}
._f{width:433.845216px;}
._13{width:487.790976px;}
._10{width:491.500416px;}
._12{width:493.614336px;}
._11{width:632.049216px;}
._14{width:653.124336px;}
._17{width:752.629056px;}
._8{width:3932.888880px;}
._16{width:3936.304080px;}
._18{width:7586.331360px;}
.fc9{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(30,100,200);}
.fc4{color:rgb(189,215,238);}
.fc1{color:rgb(255,192,0);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:45.520347px;}
.fs1b{font-size:66.997361px;}
.fs16{font-size:68.583059px;}
.fs19{font-size:68.851200px;}
.fs11{font-size:72.000000px;}
.fs13{font-size:74.541457px;}
.fs17{font-size:84.830562px;}
.fs10{font-size:95.760000px;}
.fs18{font-size:101.452724px;}
.fs1a{font-size:101.939369px;}
.fs12{font-size:108.000000px;}
.fs14{font-size:111.275590px;}
.fs15{font-size:111.812185px;}
.fs8{font-size:120.240000px;}
.fse{font-size:128.160000px;}
.fsf{font-size:144.000000px;}
.fsd{font-size:159.984000px;}
.fsa{font-size:167.760000px;}
.fs5{font-size:180.000000px;}
.fs9{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.fs3{font-size:239.760000px;}
.fsc{font-size:239.904000px;}
.fs6{font-size:264.240000px;}
.fs7{font-size:264.384000px;}
.fs2{font-size:288.000000px;}
.fsb{font-size:300.240000px;}
.fs1{font-size:324.000000px;}
.fs0{font-size:516.384000px;}
.y0{bottom:0.000000px;}
.y81{bottom:10.905000px;}
.y8e{bottom:11.831000px;}
.y98{bottom:13.473099px;}
.y76{bottom:21.420000px;}
.y7b{bottom:41.910000px;}
.y71{bottom:43.095000px;}
.y91{bottom:46.057407px;}
.y86{bottom:50.780664px;}
.y92{bottom:67.993097px;}
.y87{bottom:70.627094px;}
.y82{bottom:96.225000px;}
.y8d{bottom:109.297062px;}
.y7c{bottom:121.680000px;}
.y77{bottom:132.990000px;}
.y97{bottom:133.894771px;}
.y88{bottom:136.504839px;}
.y72{bottom:140.910000px;}
.y93{bottom:148.368089px;}
.y37{bottom:161.355000px;}
.y35{bottom:161.490000px;}
.y79{bottom:178.380000px;}
.y7d{bottom:201.420000px;}
.y89{bottom:202.380721px;}
.y8f{bottom:211.137516px;}
.y84{bottom:211.140000px;}
.y94{bottom:228.830445px;}
.y73{bottom:238.680000px;}
.y78{bottom:244.155000px;}
.y83{bottom:249.150000px;}
.y8a{bottom:268.165308px;}
.y99{bottom:271.429466px;}
.y7e{bottom:281.190000px;}
.y95{bottom:309.205437px;}
.y8b{bottom:334.041190px;}
.y74{bottom:336.495000px;}
.y7f{bottom:360.930000px;}
.y70{bottom:366.690000px;}
.y96{bottom:389.665976px;}
.y8c{bottom:399.913346px;}
.y5d{bottom:406.185000px;}
.y7a{bottom:417.495000px;}
.y75{bottom:434.310000px;}
.y80{bottom:440.715000px;}
.y5c{bottom:487.185000px;}
.ye{bottom:507.810000px;}
.y57{bottom:540.435000px;}
.y5b{bottom:568.230000px;}
.yd{bottom:615.810000px;}
.y5a{bottom:640.230000px;}
.y56{bottom:648.435000px;}
.y59{bottom:721.230000px;}
.yc{bottom:723.810000px;}
.y55{bottom:758.595000px;}
.y58{bottom:793.230000px;}
.yb{bottom:831.810000px;}
.y54{bottom:874.545000px;}
.y52{bottom:996.510000px;}
.y4f{bottom:1011.780000px;}
.y6d{bottom:1061.715000px;}
.y4e{bottom:1062.180000px;}
.y4d{bottom:1112.580000px;}
.y53{bottom:1182.420000px;}
.y4c{bottom:1213.380000px;}
.y4b{bottom:1263.780000px;}
.y47{bottom:1282.680000px;}
.y4a{bottom:1314.180000px;}
.y45{bottom:1333.080000px;}
.y49{bottom:1364.580000px;}
.y43{bottom:1383.480000px;}
.y41{bottom:1433.880000px;}
.y48{bottom:1444.035000px;}
.y6c{bottom:1479.930000px;}
.y3f{bottom:1484.280000px;}
.y46{bottom:1494.435000px;}
.y3d{bottom:1534.680000px;}
.y6b{bottom:1537.530000px;}
.y44{bottom:1544.835000px;}
.y3b{bottom:1585.080000px;}
.y6a{bottom:1591.950000px;}
.y42{bottom:1595.235000px;}
.y39{bottom:1635.480000px;}
.y40{bottom:1645.635000px;}
.y51{bottom:1678.035000px;}
.y36{bottom:1685.880000px;}
.y3e{bottom:1696.035000px;}
.y69{bottom:1719.510000px;}
.y85{bottom:1719.515328px;}
.y90{bottom:1731.598698px;}
.y34{bottom:1743.840000px;}
.y3c{bottom:1746.435000px;}
.y68{bottom:1777.110000px;}
.y3a{bottom:1796.835000px;}
.y62{bottom:1833.840000px;}
.y38{bottom:1847.235000px;}
.y33{bottom:1905.330000px;}
.y66{bottom:1950.375000px;}
.y25{bottom:1994.910000px;}
.y65{bottom:2007.975000px;}
.y24{bottom:2061.150000px;}
.y5f{bottom:2070.435000px;}
.y23{bottom:2129.370000px;}
.y67{bottom:2175.990000px;}
.y6e{bottom:2186.430000px;}
.y22{bottom:2201.910000px;}
.y6f{bottom:2216.340000px;}
.y61{bottom:2232.720000px;}
.y21{bottom:2268.150000px;}
.y60{bottom:2297.160000px;}
.y20{bottom:2334.390000px;}
.y64{bottom:2392.485000px;}
.y1f{bottom:2402.610000px;}
.y63{bottom:2450.085000px;}
.y1e{bottom:2475.150000px;}
.y5e{bottom:2516.145000px;}
.y1d{bottom:2541.390000px;}
.y1c{bottom:2609.610000px;}
.y50{bottom:2679.150000px;}
.y1b{bottom:2680.170000px;}
.y2a{bottom:2793.270000px;}
.y1a{bottom:2877.510000px;}
.y18{bottom:2878.635000px;}
.y19{bottom:2918.550000px;}
.y17{bottom:2919.675000px;}
.y15{bottom:2920.650000px;}
.y16{bottom:2960.715000px;}
.y12{bottom:2961.255000px;}
.y14{bottom:2961.690000px;}
.y29{bottom:2984.580000px;}
.y11{bottom:3004.050000px;}
.y13{bottom:3007.980000px;}
.y28{bottom:3020.580000px;}
.y27{bottom:3303.720000px;}
.y26{bottom:3339.720000px;}
.y32{bottom:3782.985000px;}
.ya{bottom:3829.350000px;}
.y31{bottom:3847.785000px;}
.y9{bottom:3907.110000px;}
.y30{bottom:3921.585000px;}
.y8{bottom:3984.870000px;}
.y2f{bottom:3995.385000px;}
.y7{bottom:4062.630000px;}
.y2e{bottom:4069.185000px;}
.y6{bottom:4140.390000px;}
.y2d{bottom:4142.985000px;}
.y2c{bottom:4207.785000px;}
.y5{bottom:4218.150000px;}
.y2b{bottom:4281.585000px;}
.y4{bottom:4298.070000px;}
.y3{bottom:4452.735000px;}
.y2{bottom:4547.235000px;}
.y1{bottom:4656.990000px;}
.y10{bottom:4852.110000px;}
.yf{bottom:4931.310000px;}
.h26{height:48.972192px;}
.h21{height:50.131269px;}
.h1e{height:54.486602px;}
.h23{height:62.007496px;}
.h19{height:62.402344px;}
.h24{height:74.157582px;}
.h25{height:74.513299px;}
.h1f{height:81.337675px;}
.h20{height:81.729903px;}
.h18{height:82.761328px;}
.h1c{height:83.135391px;}
.hb{height:88.066406px;}
.h1a{height:93.339844px;}
.ha{height:97.006406px;}
.h15{height:105.468750px;}
.hd{height:122.871094px;}
.h10{height:130.371094px;}
.h7{height:131.835938px;}
.hc{height:140.800781px;}
.h17{height:143.195391px;}
.h14{height:151.467188px;}
.h6{height:158.203125px;}
.h5{height:175.605469px;}
.h12{height:177.595664px;}
.h13{height:189.175781px;}
.h8{height:193.535156px;}
.h9{height:193.640625px;}
.hf{height:208.185469px;}
.h4{height:210.937500px;}
.h11{height:219.902344px;}
.h3{height:237.304688px;}
.he{height:352.980000px;}
.h2{height:378.210938px;}
.h22{height:448.096302px;}
.h1d{height:458.694672px;}
.h16{height:464.580000px;}
.h1b{height:473.580000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:154.080000px;}
.w4{width:160.200000px;}
.w7{width:209.160000px;}
.w5{width:212.580000px;}
.w6{width:252.360000px;}
.w8{width:564.480000px;}
.wb{width:582.635898px;}
.wa{width:596.410663px;}
.w9{width:601.560000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1f{left:11.010000px;}
.x1c{left:16.200000px;}
.x21{left:18.180000px;}
.x54{left:28.082041px;}
.x42{left:30.810000px;}
.x53{left:34.782214px;}
.x49{left:39.960000px;}
.x40{left:44.610000px;}
.x52{left:46.561961px;}
.x4d{left:51.649376px;}
.x47{left:52.740000px;}
.x46{left:65.265000px;}
.x4c{left:101.626251px;}
.x51{left:102.633772px;}
.x22{left:108.180000px;}
.x24{left:111.347947px;}
.x4{left:116.315947px;}
.x23{left:145.475947px;}
.x3f{left:156.450000px;}
.x12{left:162.359947px;}
.x2b{left:171.359947px;}
.x45{left:177.120000px;}
.x29{left:180.689947px;}
.x1a{left:186.584947px;}
.x1{left:205.814947px;}
.x41{left:207.390000px;}
.x2c{left:211.859947px;}
.x48{left:218.370000px;}
.x2d{left:242.279947px;}
.x4e{left:243.589235px;}
.xb{left:281.129947px;}
.x8{left:284.474947px;}
.x1b{left:317.160000px;}
.xc{left:334.259947px;}
.x4f{left:338.909171px;}
.x55{left:363.967477px;}
.x43{left:429.300000px;}
.x1d{left:471.060000px;}
.x4a{left:475.665000px;}
.x3{left:594.824947px;}
.x1e{left:631.080000px;}
.x2{left:807.404947px;}
.x20{left:843.480000px;}
.xd{left:966.599947px;}
.xe{left:994.859947px;}
.xf{left:1044.719947px;}
.xa{left:1051.199947px;}
.x2f{left:1225.439947px;}
.x2e{left:1244.309947px;}
.x33{left:1249.349947px;}
.x35{left:1255.169947px;}
.x3a{left:1274.834947px;}
.x34{left:1288.049947px;}
.x17{left:1326.239947px;}
.x3c{left:1388.954947px;}
.x36{left:1420.634947px;}
.x39{left:1425.164947px;}
.x3b{left:1457.924947px;}
.x25{left:1542.884947px;}
.x32{left:1552.289947px;}
.x11{left:1573.814947px;}
.x10{left:1588.214947px;}
.x9{left:1683.149947px;}
.x38{left:1780.889947px;}
.x18{left:1808.564947px;}
.x37{left:1810.079947px;}
.x30{left:1813.169947px;}
.x19{left:1876.064947px;}
.x31{left:1931.969947px;}
.x7{left:2048.729947px;}
.x4b{left:2349.555000px;}
.x44{left:2362.680000px;}
.x27{left:2449.049947px;}
.x2a{left:2455.274947px;}
.x26{left:2518.889947px;}
.x15{left:2594.729947px;}
.x16{left:2609.129947px;}
.x3d{left:2712.419947px;}
.x28{left:2945.414947px;}
.x50{left:2952.480000px;}
.x3e{left:2983.680000px;}
.x13{left:3025.829947px;}
.x5{left:3063.959947px;}
.x14{left:3112.769947px;}
.x6{left:3159.899947px;}
@media print{
.v4{vertical-align:-181.866667pt;}
.va{vertical-align:-71.680000pt;}
.v5{vertical-align:-52.480000pt;}
.v7{vertical-align:-42.240000pt;}
.vb{vertical-align:-20.287671pt;}
.vc{vertical-align:-16.178541pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.666667pt;}
.v1{vertical-align:7.946667pt;}
.v2{vertical-align:28.960000pt;}
.v8{vertical-align:51.200000pt;}
.v9{vertical-align:53.386667pt;}
.v6{vertical-align:64.000000pt;}
.ls1b{letter-spacing:-1.018667pt;}
.ls18{letter-spacing:-0.976000pt;}
.ls1e{letter-spacing:-0.275733pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.209067pt;}
.ls1c{letter-spacing:-0.173333pt;}
.ls1f{letter-spacing:-0.075520pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.046720pt;}
.ls15{letter-spacing:-0.011520pt;}
.ls16{letter-spacing:-0.004480pt;}
.lse{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.011520pt;}
.ls19{letter-spacing:0.033813pt;}
.ls5{letter-spacing:0.076416pt;}
.lsc{letter-spacing:0.106978pt;}
.lsf{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.137194pt;}
.ls3{letter-spacing:0.148096pt;}
.lsd{letter-spacing:0.152790pt;}
.ls1d{letter-spacing:0.171733pt;}
.ls1a{letter-spacing:0.248533pt;}
.ls13{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.311040pt;}
.ls2{letter-spacing:0.382720pt;}
.ls6{letter-spacing:33.358080pt;}
.ls1{letter-spacing:35.712000pt;}
.ls8{letter-spacing:43.531520pt;}
.ls4{letter-spacing:56.545792pt;}
.ls0{letter-spacing:172.800000pt;}
.ls9{letter-spacing:279.861364pt;}
.lsa{letter-spacing:321.490182pt;}
.wsb{word-spacing:-95.616000pt;}
.ws45{word-spacing:-41.831893pt;}
.ws44{word-spacing:-41.617173pt;}
.ws42{word-spacing:-41.558400pt;}
.ws41{word-spacing:-40.582400pt;}
.ws46{word-spacing:-40.539733pt;}
.ws13{word-spacing:-37.440000pt;}
.ws47{word-spacing:-33.493333pt;}
.ws48{word-spacing:-33.148267pt;}
.ws10{word-spacing:-31.200000pt;}
.ws22{word-spacing:-29.078400pt;}
.ws3f{word-spacing:-28.869333pt;}
.ws49{word-spacing:-22.214400pt;}
.ws11{word-spacing:-20.841600pt;}
.ws50{word-spacing:-16.555792pt;}
.ws4b{word-spacing:-16.428160pt;}
.ws15{word-spacing:-1.088000pt;}
.ws1e{word-spacing:-0.864000pt;}
.ws43{word-spacing:-0.541440pt;}
.wsf{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.328320pt;}
.ws1f{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.213333pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws4c{word-spacing:-0.064000pt;}
.ws17{word-spacing:0.000000pt;}
.ws21{word-spacing:0.160000pt;}
.wse{word-spacing:0.192000pt;}
.ws40{word-spacing:0.504960pt;}
.ws1b{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.640000pt;}
.ws12{word-spacing:0.987520pt;}
.wsd{word-spacing:1.482667pt;}
.ws19{word-spacing:1.536000pt;}
.ws18{word-spacing:1.856000pt;}
.ws20{word-spacing:5.760000pt;}
.ws2{word-spacing:23.936000pt;}
.ws0{word-spacing:23.978667pt;}
.ws1{word-spacing:24.000000pt;}
.ws7{word-spacing:44.736000pt;}
.ws5{word-spacing:44.928000pt;}
.ws6{word-spacing:45.376000pt;}
.ws3{word-spacing:47.552000pt;}
.wsa{word-spacing:58.368000pt;}
.wsc{word-spacing:58.496000pt;}
.ws9{word-spacing:58.560000pt;}
.ws8{word-spacing:58.816000pt;}
.ws4{word-spacing:125.952000pt;}
.ws4e{word-spacing:243.383313pt;}
.ws4f{word-spacing:258.205684pt;}
.ws25{word-spacing:337.667200pt;}
.ws2f{word-spacing:339.326080pt;}
.ws28{word-spacing:342.147200pt;}
.ws32{word-spacing:343.806080pt;}
.ws23{word-spacing:343.985920pt;}
.ws2b{word-spacing:345.086080pt;}
.ws24{word-spacing:345.192960pt;}
.ws38{word-spacing:347.836800pt;}
.ws2e{word-spacing:351.586560pt;}
.ws3c{word-spacing:352.316800pt;}
.ws35{word-spacing:353.596800pt;}
.ws27{word-spacing:354.736640pt;}
.ws31{word-spacing:361.130240pt;}
.ws2a{word-spacing:362.323200pt;}
.ws37{word-spacing:376.458880pt;}
.ws3b{word-spacing:386.002560pt;}
.ws34{word-spacing:387.195520pt;}
.ws3d{word-spacing:410.284587pt;}
.ws39{word-spacing:415.460907pt;}
.ws2c{word-spacing:420.800427pt;}
.ws4d{word-spacing:420.992320pt;}
.ws36{word-spacing:432.320427pt;}
.ws4a{word-spacing:462.752427pt;}
.ws30{word-spacing:529.328213pt;}
.ws3e{word-spacing:530.446933pt;}
.ws33{word-spacing:531.876053pt;}
.ws29{word-spacing:535.716053pt;}
.ws2d{word-spacing:539.556053pt;}
.ws26{word-spacing:539.947093pt;}
.ws3a{word-spacing:540.807893pt;}
._19{margin-left:-4.076885pt;}
._9{margin-left:-2.778880pt;}
._0{margin-left:-1.836032pt;}
._7{margin-left:-0.940032pt;}
._2{width:1.536000pt;}
._1a{width:3.116032pt;}
._15{width:30.447573pt;}
._b{width:35.587584pt;}
._c{width:37.568000pt;}
._e{width:38.720000pt;}
._d{width:40.076032pt;}
._a{width:44.406912pt;}
._1{width:51.072000pt;}
._6{width:83.189333pt;}
._3{width:85.898667pt;}
._4{width:86.965333pt;}
._5{width:165.066667pt;}
._f{width:385.640192pt;}
._13{width:433.591979pt;}
._10{width:436.889259pt;}
._12{width:438.768299pt;}
._11{width:561.821525pt;}
._14{width:580.554965pt;}
._17{width:669.003605pt;}
._8{width:3495.901227pt;}
._16{width:3498.936960pt;}
._18{width:6743.405653pt;}
.fs1c{font-size:40.462531pt;}
.fs1b{font-size:59.553209pt;}
.fs16{font-size:60.962719pt;}
.fs19{font-size:61.201067pt;}
.fs11{font-size:64.000000pt;}
.fs13{font-size:66.259073pt;}
.fs17{font-size:75.404944pt;}
.fs10{font-size:85.120000pt;}
.fs18{font-size:90.180199pt;}
.fs1a{font-size:90.612773pt;}
.fs12{font-size:96.000000pt;}
.fs14{font-size:98.911636pt;}
.fs15{font-size:99.388609pt;}
.fs8{font-size:106.880000pt;}
.fse{font-size:113.920000pt;}
.fsf{font-size:128.000000pt;}
.fsd{font-size:142.208000pt;}
.fsa{font-size:149.120000pt;}
.fs5{font-size:160.000000pt;}
.fs9{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.fs3{font-size:213.120000pt;}
.fsc{font-size:213.248000pt;}
.fs6{font-size:234.880000pt;}
.fs7{font-size:235.008000pt;}
.fs2{font-size:256.000000pt;}
.fsb{font-size:266.880000pt;}
.fs1{font-size:288.000000pt;}
.fs0{font-size:459.008000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:9.693333pt;}
.y8e{bottom:10.516444pt;}
.y98{bottom:11.976088pt;}
.y76{bottom:19.040000pt;}
.y7b{bottom:37.253333pt;}
.y71{bottom:38.306667pt;}
.y91{bottom:40.939917pt;}
.y86{bottom:45.138368pt;}
.y92{bottom:60.438309pt;}
.y87{bottom:62.779639pt;}
.y82{bottom:85.533333pt;}
.y8d{bottom:97.152944pt;}
.y7c{bottom:108.160000pt;}
.y77{bottom:118.213333pt;}
.y97{bottom:119.017574pt;}
.y88{bottom:121.337635pt;}
.y72{bottom:125.253333pt;}
.y93{bottom:131.882746pt;}
.y37{bottom:143.426667pt;}
.y35{bottom:143.546667pt;}
.y79{bottom:158.560000pt;}
.y7d{bottom:179.040000pt;}
.y89{bottom:179.893974pt;}
.y8f{bottom:187.677792pt;}
.y84{bottom:187.680000pt;}
.y94{bottom:203.404840pt;}
.y73{bottom:212.160000pt;}
.y78{bottom:217.026667pt;}
.y83{bottom:221.466667pt;}
.y8a{bottom:238.369163pt;}
.y99{bottom:241.270636pt;}
.y7e{bottom:249.946667pt;}
.y95{bottom:274.849277pt;}
.y8b{bottom:296.925502pt;}
.y74{bottom:299.106667pt;}
.y7f{bottom:320.826667pt;}
.y70{bottom:325.946667pt;}
.y96{bottom:346.369756pt;}
.y8c{bottom:355.478529pt;}
.y5d{bottom:361.053333pt;}
.y7a{bottom:371.106667pt;}
.y75{bottom:386.053333pt;}
.y80{bottom:391.746667pt;}
.y5c{bottom:433.053333pt;}
.ye{bottom:451.386667pt;}
.y57{bottom:480.386667pt;}
.y5b{bottom:505.093333pt;}
.yd{bottom:547.386667pt;}
.y5a{bottom:569.093333pt;}
.y56{bottom:576.386667pt;}
.y59{bottom:641.093333pt;}
.yc{bottom:643.386667pt;}
.y55{bottom:674.306667pt;}
.y58{bottom:705.093333pt;}
.yb{bottom:739.386667pt;}
.y54{bottom:777.373333pt;}
.y52{bottom:885.786667pt;}
.y4f{bottom:899.360000pt;}
.y6d{bottom:943.746667pt;}
.y4e{bottom:944.160000pt;}
.y4d{bottom:988.960000pt;}
.y53{bottom:1051.040000pt;}
.y4c{bottom:1078.560000pt;}
.y4b{bottom:1123.360000pt;}
.y47{bottom:1140.160000pt;}
.y4a{bottom:1168.160000pt;}
.y45{bottom:1184.960000pt;}
.y49{bottom:1212.960000pt;}
.y43{bottom:1229.760000pt;}
.y41{bottom:1274.560000pt;}
.y48{bottom:1283.586667pt;}
.y6c{bottom:1315.493333pt;}
.y3f{bottom:1319.360000pt;}
.y46{bottom:1328.386667pt;}
.y3d{bottom:1364.160000pt;}
.y6b{bottom:1366.693333pt;}
.y44{bottom:1373.186667pt;}
.y3b{bottom:1408.960000pt;}
.y6a{bottom:1415.066667pt;}
.y42{bottom:1417.986667pt;}
.y39{bottom:1453.760000pt;}
.y40{bottom:1462.786667pt;}
.y51{bottom:1491.586667pt;}
.y36{bottom:1498.560000pt;}
.y3e{bottom:1507.586667pt;}
.y69{bottom:1528.453333pt;}
.y85{bottom:1528.458069pt;}
.y90{bottom:1539.198843pt;}
.y34{bottom:1550.080000pt;}
.y3c{bottom:1552.386667pt;}
.y68{bottom:1579.653333pt;}
.y3a{bottom:1597.186667pt;}
.y62{bottom:1630.080000pt;}
.y38{bottom:1641.986667pt;}
.y33{bottom:1693.626667pt;}
.y66{bottom:1733.666667pt;}
.y25{bottom:1773.253333pt;}
.y65{bottom:1784.866667pt;}
.y24{bottom:1832.133333pt;}
.y5f{bottom:1840.386667pt;}
.y23{bottom:1892.773333pt;}
.y67{bottom:1934.213333pt;}
.y6e{bottom:1943.493333pt;}
.y22{bottom:1957.253333pt;}
.y6f{bottom:1970.080000pt;}
.y61{bottom:1984.640000pt;}
.y21{bottom:2016.133333pt;}
.y60{bottom:2041.920000pt;}
.y20{bottom:2075.013333pt;}
.y64{bottom:2126.653333pt;}
.y1f{bottom:2135.653333pt;}
.y63{bottom:2177.853333pt;}
.y1e{bottom:2200.133333pt;}
.y5e{bottom:2236.573333pt;}
.y1d{bottom:2259.013333pt;}
.y1c{bottom:2319.653333pt;}
.y50{bottom:2381.466667pt;}
.y1b{bottom:2382.373333pt;}
.y2a{bottom:2482.906667pt;}
.y1a{bottom:2557.786667pt;}
.y18{bottom:2558.786667pt;}
.y19{bottom:2594.266667pt;}
.y17{bottom:2595.266667pt;}
.y15{bottom:2596.133333pt;}
.y16{bottom:2631.746667pt;}
.y12{bottom:2632.226667pt;}
.y14{bottom:2632.613333pt;}
.y29{bottom:2652.960000pt;}
.y11{bottom:2670.266667pt;}
.y13{bottom:2673.760000pt;}
.y28{bottom:2684.960000pt;}
.y27{bottom:2936.640000pt;}
.y26{bottom:2968.640000pt;}
.y32{bottom:3362.653333pt;}
.ya{bottom:3403.866667pt;}
.y31{bottom:3420.253333pt;}
.y9{bottom:3472.986667pt;}
.y30{bottom:3485.853333pt;}
.y8{bottom:3542.106667pt;}
.y2f{bottom:3551.453333pt;}
.y7{bottom:3611.226667pt;}
.y2e{bottom:3617.053333pt;}
.y6{bottom:3680.346667pt;}
.y2d{bottom:3682.653333pt;}
.y2c{bottom:3740.253333pt;}
.y5{bottom:3749.466667pt;}
.y2b{bottom:3805.853333pt;}
.y4{bottom:3820.506667pt;}
.y3{bottom:3957.986667pt;}
.y2{bottom:4041.986667pt;}
.y1{bottom:4139.546667pt;}
.y10{bottom:4312.986667pt;}
.yf{bottom:4383.386667pt;}
.h26{height:43.530837pt;}
.h21{height:44.561128pt;}
.h1e{height:48.432535pt;}
.h23{height:55.117774pt;}
.h19{height:55.468750pt;}
.h24{height:65.917850pt;}
.h25{height:66.234043pt;}
.h1f{height:72.300156pt;}
.h20{height:72.648802pt;}
.h18{height:73.565625pt;}
.h1c{height:73.898125pt;}
.hb{height:78.281250pt;}
.h1a{height:82.968750pt;}
.ha{height:86.227917pt;}
.h15{height:93.750000pt;}
.hd{height:109.218750pt;}
.h10{height:115.885417pt;}
.h7{height:117.187500pt;}
.hc{height:125.156250pt;}
.h17{height:127.284792pt;}
.h14{height:134.637500pt;}
.h6{height:140.625000pt;}
.h5{height:156.093750pt;}
.h12{height:157.862812pt;}
.h13{height:168.156250pt;}
.h8{height:172.031250pt;}
.h9{height:172.125000pt;}
.hf{height:185.053750pt;}
.h4{height:187.500000pt;}
.h11{height:195.468750pt;}
.h3{height:210.937500pt;}
.he{height:313.760000pt;}
.h2{height:336.187500pt;}
.h22{height:398.307824pt;}
.h1d{height:407.728598pt;}
.h16{height:412.960000pt;}
.h1b{height:420.960000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:136.960000pt;}
.w4{width:142.400000pt;}
.w7{width:185.920000pt;}
.w5{width:188.960000pt;}
.w6{width:224.320000pt;}
.w8{width:501.760000pt;}
.wb{width:517.898576pt;}
.wa{width:530.142811pt;}
.w9{width:534.720000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:9.786667pt;}
.x1c{left:14.400000pt;}
.x21{left:16.160000pt;}
.x54{left:24.961815pt;}
.x42{left:27.386667pt;}
.x53{left:30.917523pt;}
.x49{left:35.520000pt;}
.x40{left:39.653333pt;}
.x52{left:41.388410pt;}
.x4d{left:45.910557pt;}
.x47{left:46.880000pt;}
.x46{left:58.013333pt;}
.x4c{left:90.334446pt;}
.x51{left:91.230019pt;}
.x22{left:96.160000pt;}
.x24{left:98.975953pt;}
.x4{left:103.391953pt;}
.x23{left:129.311953pt;}
.x3f{left:139.066667pt;}
.x12{left:144.319953pt;}
.x2b{left:152.319953pt;}
.x45{left:157.440000pt;}
.x29{left:160.613286pt;}
.x1a{left:165.853286pt;}
.x1{left:182.946619pt;}
.x41{left:184.346667pt;}
.x2c{left:188.319953pt;}
.x48{left:194.106667pt;}
.x2d{left:215.359953pt;}
.x4e{left:216.523764pt;}
.xb{left:249.893286pt;}
.x8{left:252.866619pt;}
.x1b{left:281.920000pt;}
.xc{left:297.119953pt;}
.x4f{left:301.252597pt;}
.x55{left:323.526646pt;}
.x43{left:381.600000pt;}
.x1d{left:418.720000pt;}
.x4a{left:422.813333pt;}
.x3{left:528.733286pt;}
.x1e{left:560.960000pt;}
.x2{left:717.693286pt;}
.x20{left:749.760000pt;}
.xd{left:859.199953pt;}
.xe{left:884.319953pt;}
.xf{left:928.639953pt;}
.xa{left:934.399953pt;}
.x2f{left:1089.279953pt;}
.x2e{left:1106.053286pt;}
.x33{left:1110.533286pt;}
.x35{left:1115.706619pt;}
.x3a{left:1133.186619pt;}
.x34{left:1144.933286pt;}
.x17{left:1178.879953pt;}
.x3c{left:1234.626619pt;}
.x36{left:1262.786619pt;}
.x39{left:1266.813286pt;}
.x3b{left:1295.933286pt;}
.x25{left:1371.453286pt;}
.x32{left:1379.813286pt;}
.x11{left:1398.946619pt;}
.x10{left:1411.746619pt;}
.x9{left:1496.133286pt;}
.x38{left:1583.013286pt;}
.x18{left:1607.613286pt;}
.x37{left:1608.959953pt;}
.x30{left:1611.706619pt;}
.x19{left:1667.613286pt;}
.x31{left:1717.306619pt;}
.x7{left:1821.093286pt;}
.x4b{left:2088.493333pt;}
.x44{left:2100.160000pt;}
.x27{left:2176.933286pt;}
.x2a{left:2182.466619pt;}
.x26{left:2239.013286pt;}
.x15{left:2306.426619pt;}
.x16{left:2319.226619pt;}
.x3d{left:2411.039953pt;}
.x28{left:2618.146619pt;}
.x50{left:2624.426667pt;}
.x3e{left:2652.160000pt;}
.x13{left:2689.626619pt;}
.x5{left:2723.519953pt;}
.x14{left:2766.906619pt;}
.x6{left:2808.799953pt;}
}




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