
    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_c3008427f6b5997d9e5b4fef.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_367d470dfe855e6dbd14acf5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_9fa1e0dc46ce4787f7f548ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_215de64baec316408eecbd7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_10e84c3b0412a90a68ad8d81.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0943015ce90aafc419a33981.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_473bd14903b16f0beb401c66.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fdbefe6bae70fbceb5ffe8e1.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_f4a872e37e106d4e9e053491.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_1cacb46b9748eb91c177a1cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.122070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9afc4473eb5979394c9a354d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956543;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:ffc;src:url('chunks/assets/font_e15b0f8d96b7c0c59a99bf12.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c1db37b714732afa4948c016.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.372070;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;}
.m4{transform:matrix(0.242137,0.000000,-0.080704,0.236615,0,0);-ms-transform:matrix(0.242137,0.000000,-0.080704,0.236615,0,0);-webkit-transform:matrix(0.242137,0.000000,-0.080704,0.236615,0,0);}
.m3{transform:matrix(0.246066,0.000000,-0.082014,0.236165,0,0);-ms-transform:matrix(0.246066,0.000000,-0.082014,0.236165,0,0);-webkit-transform:matrix(0.246066,0.000000,-0.082014,0.236165,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);}
.m5{transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255834,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256513,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257946,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257946,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257946,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260481,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-84.240000px;}
.v9{vertical-align:-82.800000px;}
.v7{vertical-align:-54.861292px;}
.v8{vertical-align:-17.687360px;}
.v2{vertical-align:-16.106759px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.va{vertical-align:27.360000px;}
.v6{vertical-align:31.608394px;}
.v5{vertical-align:44.780852px;}
.v3{vertical-align:49.011222px;}
.v4{vertical-align:62.642488px;}
.ls1a{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.234000px;}
.ls25{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls1c{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.880000px;}
.lsd{letter-spacing:4.320000px;}
.ls26{letter-spacing:4.625280px;}
.ls10{letter-spacing:5.040000px;}
.ls1d{letter-spacing:5.184000px;}
.lsa{letter-spacing:7.200000px;}
.ls11{letter-spacing:7.920000px;}
.ls12{letter-spacing:10.080000px;}
.ls1b{letter-spacing:10.800000px;}
.ls2{letter-spacing:13.680000px;}
.ls6{letter-spacing:15.840000px;}
.ls1f{letter-spacing:18.000000px;}
.ls3{letter-spacing:20.880000px;}
.ls1e{letter-spacing:21.600000px;}
.ls15{letter-spacing:21.880089px;}
.ls20{letter-spacing:22.320000px;}
.ls4{letter-spacing:25.380000px;}
.lse{letter-spacing:26.640000px;}
.ls22{letter-spacing:32.544000px;}
.lsb{letter-spacing:34.560000px;}
.ls17{letter-spacing:76.884620px;}
.ls16{letter-spacing:93.830411px;}
.ls18{letter-spacing:194.544000px;}
.ls13{letter-spacing:249.153438px;}
.ls14{letter-spacing:405.881840px;}
.ls21{letter-spacing:675.540000px;}
.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;}
}
.ws9{word-spacing:-41.643476px;}
.ws6{word-spacing:-40.311735px;}
.wsf{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.360000px;}
.ws10{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.948064px;}
.wse{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.632734px;}
.ws5{word-spacing:-17.340999px;}
.ws11{word-spacing:-15.226440px;}
.wsd{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws8{word-spacing:-10.126931px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:34.957195px;}
.wsa{word-spacing:332.438930px;}
._2d{margin-left:-323.558660px;}
._2c{margin-left:-279.080152px;}
._25{margin-left:-241.562974px;}
._27{margin-left:-239.630622px;}
._34{margin-left:-189.258791px;}
._30{margin-left:-185.825021px;}
._2a{margin-left:-173.161302px;}
._31{margin-left:-169.587824px;}
._2b{margin-left:-154.368865px;}
._2e{margin-left:-149.110160px;}
._33{margin-left:-116.306681px;}
._2f{margin-left:-113.756105px;}
._36{margin-left:-102.427844px;}
._29{margin-left:-100.432151px;}
._35{margin-left:-94.857852px;}
._28{margin-left:-92.880787px;}
._32{margin-left:-54.112672px;}
._26{margin-left:-46.836902px;}
._41{margin-left:-11.376000px;}
._1b{margin-left:-5.442000px;}
._1a{margin-left:-4.032000px;}
._2{margin-left:-2.778000px;}
._0{margin-left:-1.062000px;}
._1{width:1.278000px;}
._13{width:2.634000px;}
._14{width:3.678000px;}
._6{width:4.692000px;}
._5{width:5.976000px;}
._b{width:7.272000px;}
._d{width:8.352000px;}
._7{width:9.360000px;}
._8{width:10.386000px;}
._16{width:11.406000px;}
._15{width:12.528000px;}
._9{width:13.536000px;}
._a{width:15.900000px;}
._e{width:16.992000px;}
._12{width:19.416000px;}
._c{width:20.592000px;}
._1c{width:22.326000px;}
._10{width:24.186000px;}
._f{width:25.758000px;}
._1d{width:27.072000px;}
._11{width:28.440000px;}
._1f{width:29.664000px;}
._20{width:30.888000px;}
._23{width:31.962000px;}
._18{width:33.048000px;}
._17{width:34.128000px;}
._19{width:35.544000px;}
._37{width:36.576000px;}
._1e{width:37.782000px;}
._22{width:39.954000px;}
._21{width:41.214000px;}
._46{width:42.840000px;}
._47{width:43.992000px;}
._48{width:45.816000px;}
._4b{width:47.376000px;}
._4a{width:48.444000px;}
._42{width:50.760000px;}
._43{width:52.044000px;}
._24{width:55.998000px;}
._3{width:57.456000px;}
._4{width:58.518000px;}
._3f{width:62.496000px;}
._3b{width:66.528000px;}
._3a{width:67.824000px;}
._38{width:70.776000px;}
._39{width:71.856000px;}
._3d{width:85.896000px;}
._3e{width:86.904000px;}
._4e{width:100.056000px;}
._4f{width:134.712000px;}
._50{width:135.720000px;}
._4c{width:139.968000px;}
._4d{width:141.756000px;}
._44{width:158.328000px;}
._40{width:159.912000px;}
._3c{width:176.544000px;}
._51{width:849.269760px;}
._49{width:1822.680000px;}
._45{width:1894.824000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:40.507725px;}
.fse{font-size:41.178314px;}
.fsb{font-size:41.819853px;}
.fs5{font-size:42.880802px;}
.fs8{font-size:44.185475px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fsf{font-size:66.240000px;}
.fs3{font-size:69.363996px;}
.fsc{font-size:69.501612px;}
.fsd{font-size:70.530936px;}
.fsa{font-size:71.792256px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:73.427568px;}
.fs9{font-size:75.853325px;}
.fs7{font-size:104.043127px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.900000px;}
.y74{bottom:3.957165px;}
.y81{bottom:4.165452px;}
.y90{bottom:4.500000px;}
.y7a{bottom:5.057580px;}
.y86{bottom:5.360690px;}
.y77{bottom:7.081183px;}
.y82{bottom:8.504357px;}
.y7b{bottom:9.557128px;}
.y8e{bottom:14.940000px;}
.y7{bottom:15.120000px;}
.y75{bottom:16.209971px;}
.y7d{bottom:19.009679px;}
.y88{bottom:19.076013px;}
.y72{bottom:20.549163px;}
.y84{bottom:21.972624px;}
.y7c{bottom:23.475088px;}
.y4{bottom:23.940000px;}
.y8f{bottom:25.200000px;}
.yd2{bottom:25.230000px;}
.y6{bottom:29.700000px;}
.y87{bottom:30.040049px;}
.y73{bottom:31.379224px;}
.y83{bottom:32.802685px;}
.y76{bottom:38.182595px;}
.ycf{bottom:41.070000px;}
.ye8{bottom:41.760000px;}
.y5{bottom:44.496000px;}
.yd4{bottom:45.900000px;}
.yd1{bottom:45.930000px;}
.y3{bottom:57.600000px;}
.y2{bottom:78.336000px;}
.y111{bottom:104.976000px;}
.y6f{bottom:105.876000px;}
.yac{bottom:114.516000px;}
.ye4{bottom:116.136000px;}
.y110{bottom:125.676000px;}
.yc3{bottom:126.216000px;}
.y6e{bottom:126.576000px;}
.y3b{bottom:129.636000px;}
.yab{bottom:131.076000px;}
.ye3{bottom:136.836000px;}
.y9b{bottom:138.456000px;}
.yc2{bottom:142.776000px;}
.y10f{bottom:146.376000px;}
.y6d{bottom:147.276000px;}
.y3a{bottom:150.690000px;}
.ye2{bottom:157.530000px;}
.y9a{bottom:159.150000px;}
.y10e{bottom:167.070000px;}
.y6c{bottom:167.970000px;}
.y39{bottom:171.390000px;}
.ye1{bottom:178.230000px;}
.y99{bottom:179.850000px;}
.y10d{bottom:187.770000px;}
.y6b{bottom:188.670000px;}
.y38{bottom:192.090000px;}
.ye0{bottom:198.930000px;}
.y10c{bottom:208.470000px;}
.y6a{bottom:209.370000px;}
.y37{bottom:212.790000px;}
.ydf{bottom:219.630000px;}
.y98{bottom:221.250000px;}
.y10b{bottom:229.170000px;}
.y69{bottom:230.070000px;}
.y36{bottom:233.490000px;}
.yde{bottom:240.330000px;}
.y97{bottom:244.110000px;}
.y10a{bottom:249.870000px;}
.y68{bottom:250.770000px;}
.y35{bottom:254.190000px;}
.ydd{bottom:261.030000px;}
.y109{bottom:270.570000px;}
.y67{bottom:271.470000px;}
.y34{bottom:274.890000px;}
.y96{bottom:277.230000px;}
.ydc{bottom:281.730000px;}
.y108{bottom:291.270000px;}
.y66{bottom:292.170000px;}
.y33{bottom:295.590000px;}
.ydb{bottom:302.430000px;}
.y95{bottom:310.170000px;}
.y107{bottom:311.970000px;}
.y65{bottom:312.870000px;}
.y32{bottom:316.290000px;}
.yda{bottom:323.130000px;}
.y106{bottom:332.715000px;}
.y64{bottom:333.615000px;}
.y31{bottom:337.035000px;}
.y94{bottom:343.335000px;}
.yd9{bottom:343.875000px;}
.y105{bottom:353.055000px;}
.y63{bottom:354.315000px;}
.y30{bottom:357.735000px;}
.yd8{bottom:364.575000px;}
.y62{bottom:375.015000px;}
.y93{bottom:376.455000px;}
.y2f{bottom:378.435000px;}
.yd7{bottom:385.275000px;}
.y104{bottom:394.815000px;}
.y61{bottom:395.715000px;}
.y2e{bottom:399.135000px;}
.yd6{bottom:405.975000px;}
.y92{bottom:409.575000px;}
.y103{bottom:415.515000px;}
.y60{bottom:416.415000px;}
.y2d{bottom:419.835000px;}
.yd5{bottom:429.015000px;}
.y102{bottom:436.215000px;}
.y5f{bottom:437.115000px;}
.y2c{bottom:440.175000px;}
.y91{bottom:442.515000px;}
.yaa{bottom:443.775000px;}
.y101{bottom:456.915000px;}
.y5e{bottom:457.815000px;}
.y2b{bottom:461.235000px;}
.ya9{bottom:464.475000px;}
.yc1{bottom:466.815000px;}
.y8d{bottom:475.635000px;}
.y100{bottom:477.615000px;}
.y5d{bottom:478.515000px;}
.y2a{bottom:481.935000px;}
.ya8{bottom:485.175000px;}
.yc0{bottom:487.515000px;}
.yff{bottom:498.315000px;}
.y5c{bottom:499.215000px;}
.yd3{bottom:502.275000px;}
.y29{bottom:502.635000px;}
.ya7{bottom:505.875000px;}
.ybf{bottom:508.215000px;}
.yfe{bottom:519.015000px;}
.y5b{bottom:519.915000px;}
.y28{bottom:523.335000px;}
.ya6{bottom:526.575000px;}
.y8c{bottom:528.015000px;}
.ybe{bottom:528.915000px;}
.yfd{bottom:539.715000px;}
.y5a{bottom:540.615000px;}
.y27{bottom:544.035000px;}
.ya5{bottom:547.275000px;}
.y8b{bottom:548.715000px;}
.ybd{bottom:549.615000px;}
.yfc{bottom:560.415000px;}
.y59{bottom:561.315000px;}
.y26{bottom:564.735000px;}
.ya4{bottom:567.975000px;}
.y8a{bottom:569.775000px;}
.ybc{bottom:570.315000px;}
.yce{bottom:575.715000px;}
.yfb{bottom:581.115000px;}
.y58{bottom:582.015000px;}
.y25{bottom:585.435000px;}
.ya3{bottom:588.675000px;}
.y89{bottom:590.475000px;}
.ybb{bottom:591.015000px;}
.yfa{bottom:601.845000px;}
.y57{bottom:602.745000px;}
.y24{bottom:606.165000px;}
.y80{bottom:606.690000px;}
.ya2{bottom:609.405000px;}
.y85{bottom:609.765000px;}
.yba{bottom:611.745000px;}
.yf9{bottom:622.545000px;}
.y56{bottom:623.445000px;}
.y23{bottom:626.865000px;}
.y7f{bottom:629.205000px;}
.ya1{bottom:630.105000px;}
.yb9{bottom:632.445000px;}
.yf8{bottom:643.245000px;}
.y55{bottom:644.145000px;}
.y22{bottom:647.565000px;}
.yd0{bottom:649.005000px;}
.ya0{bottom:650.805000px;}
.yb8{bottom:653.145000px;}
.y79{bottom:662.640000px;}
.yf7{bottom:663.945000px;}
.y54{bottom:664.845000px;}
.y21{bottom:668.265000px;}
.y9f{bottom:671.505000px;}
.yb7{bottom:673.845000px;}
.ycd{bottom:680.685000px;}
.yf6{bottom:684.645000px;}
.y53{bottom:685.545000px;}
.y7e{bottom:686.625000px;}
.y20{bottom:688.965000px;}
.y9e{bottom:692.205000px;}
.yb6{bottom:694.545000px;}
.ycc{bottom:701.385000px;}
.yf5{bottom:705.345000px;}
.y52{bottom:706.245000px;}
.y1f{bottom:709.665000px;}
.y9d{bottom:712.545000px;}
.y71{bottom:714.315000px;}
.yb5{bottom:715.245000px;}
.ycb{bottom:722.445000px;}
.yf4{bottom:726.045000px;}
.y51{bottom:726.945000px;}
.y9c{bottom:729.285000px;}
.y1e{bottom:730.365000px;}
.y78{bottom:735.405000px;}
.yb4{bottom:735.945000px;}
.yca{bottom:743.145000px;}
.yf3{bottom:746.745000px;}
.y50{bottom:747.645000px;}
.y1d{bottom:751.065000px;}
.yb3{bottom:756.645000px;}
.yc9{bottom:763.845000px;}
.yf2{bottom:767.445000px;}
.y4f{bottom:768.345000px;}
.y1c{bottom:771.765000px;}
.yb2{bottom:777.345000px;}
.yc8{bottom:784.545000px;}
.yf1{bottom:788.145000px;}
.y4e{bottom:789.045000px;}
.y1b{bottom:792.105000px;}
.yb1{bottom:798.045000px;}
.yc7{bottom:805.245000px;}
.yf0{bottom:808.845000px;}
.y4d{bottom:809.745000px;}
.y1a{bottom:812.445000px;}
.yb0{bottom:818.745000px;}
.yc6{bottom:825.945000px;}
.yef{bottom:829.545000px;}
.y19{bottom:829.725000px;}
.y4c{bottom:830.445000px;}
.yaf{bottom:839.445000px;}
.yc5{bottom:846.285000px;}
.y18{bottom:847.005000px;}
.yee{bottom:850.245000px;}
.y4b{bottom:851.145000px;}
.yae{bottom:859.785000px;}
.yc4{bottom:862.890000px;}
.y17{bottom:864.690000px;}
.y4a{bottom:871.890000px;}
.yad{bottom:876.390000px;}
.y16{bottom:885.750000px;}
.yed{bottom:891.690000px;}
.y49{bottom:892.230000px;}
.y70{bottom:892.590000px;}
.y15{bottom:906.450000px;}
.y48{bottom:913.290000px;}
.yec{bottom:914.550000px;}
.y14{bottom:926.790000px;}
.y47{bottom:933.990000px;}
.yeb{bottom:947.670000px;}
.y13{bottom:947.850000px;}
.y46{bottom:954.690000px;}
.y12{bottom:968.550000px;}
.y45{bottom:975.390000px;}
.yea{bottom:980.790000px;}
.y11{bottom:988.890000px;}
.y44{bottom:996.090000px;}
.y10{bottom:1009.590000px;}
.ye7{bottom:1013.730000px;}
.y43{bottom:1016.790000px;}
.yf{bottom:1030.290000px;}
.y42{bottom:1037.490000px;}
.ye{bottom:1050.990000px;}
.y41{bottom:1058.190000px;}
.yd{bottom:1071.690000px;}
.y40{bottom:1078.890000px;}
.ye9{bottom:1088.250000px;}
.yc{bottom:1092.210000px;}
.y3f{bottom:1099.590000px;}
.yb{bottom:1112.910000px;}
.ye6{bottom:1119.930000px;}
.y3e{bottom:1120.290000px;}
.ya{bottom:1136.130000px;}
.ye5{bottom:1140.660000px;}
.y3d{bottom:1141.020000px;}
.y9{bottom:1160.460000px;}
.y3c{bottom:1161.720000px;}
.y1{bottom:1193.580000px;}
.h25{height:20.700000px;}
.h26{height:20.736000px;}
.h12{height:30.004990px;}
.hf{height:31.762781px;}
.h17{height:32.729182px;}
.h13{height:39.736338px;}
.he{height:39.756117px;}
.h1a{height:41.023479px;}
.h1d{height:41.043899px;}
.h24{height:41.400000px;}
.h5{height:47.344922px;}
.h4{height:47.980898px;}
.hc{height:49.498611px;}
.h16{height:51.901019px;}
.h22{height:52.243863px;}
.h1f{height:52.875202px;}
.h19{height:53.178150px;}
.h10{height:54.389464px;}
.h3{height:55.836000px;}
.h18{height:56.186277px;}
.h9{height:58.651172px;}
.h11{height:60.960342px;}
.ha{height:61.101562px;}
.h2a{height:62.100000px;}
.h29{height:62.136000px;}
.h6{height:62.261719px;}
.hb{height:64.546875px;}
.h15{height:68.043100px;}
.hd{height:68.076969px;}
.h2f{height:68.084282px;}
.h1e{height:68.178095px;}
.h23{height:69.187818px;}
.h20{height:69.222257px;}
.h8{height:70.628906px;}
.h2{height:70.664062px;}
.h2e{height:71.824219px;}
.h21{height:72.022657px;}
.h7{height:72.562500px;}
.h2c{height:74.004654px;}
.h27{height:74.704922px;}
.h2d{height:75.093750px;}
.h14{height:88.747560px;}
.h28{height:93.996000px;}
.h2b{height:95.220000px;}
.h1c{height:115.241025px;}
.h1b{height:133.067607px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:52.950240px;}
.w15{width:75.060000px;}
.w13{width:92.196000px;}
.wc{width:98.856000px;}
.w7{width:99.004794px;}
.we{width:100.296000px;}
.w3{width:111.420000px;}
.wa{width:111.636000px;}
.w17{width:113.760000px;}
.w14{width:123.336000px;}
.w5{width:123.821587px;}
.w10{width:123.840000px;}
.w16{width:125.676000px;}
.wd{width:139.500000px;}
.wf{width:143.856000px;}
.w11{width:185.610000px;}
.w8{width:206.490000px;}
.w4{width:261.005394px;}
.w9{width:316.335000px;}
.w12{width:534.165000px;}
.wb{width:608.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:2.710366px;}
.x36{left:5.040000px;}
.x56{left:7.920000px;}
.x53{left:9.180000px;}
.x45{left:12.780000px;}
.x27{left:14.158114px;}
.x6{left:15.660000px;}
.x55{left:16.740000px;}
.x25{left:17.937915px;}
.x4a{left:20.880000px;}
.x5{left:21.960000px;}
.x46{left:23.040000px;}
.x48{left:24.480000px;}
.x32{left:26.769117px;}
.x4{left:29.160000px;}
.x5b{left:32.220000px;}
.x2b{left:34.766245px;}
.x5a{left:36.180000px;}
.x58{left:37.980000px;}
.x2a{left:42.026311px;}
.x49{left:43.380000px;}
.x4c{left:47.520000px;}
.x2f{left:52.786242px;}
.x7{left:55.620000px;}
.x20{left:59.117909px;}
.x31{left:63.730906px;}
.x24{left:67.795267px;}
.x30{left:69.184699px;}
.x17{left:71.475898px;}
.x23{left:77.031768px;}
.x2e{left:82.606337px;}
.x1{left:84.959987px;}
.x42{left:86.220000px;}
.x22{left:88.765337px;}
.x16{left:97.601828px;}
.x9{left:98.675987px;}
.x8{left:111.815987px;}
.x1e{left:113.862576px;}
.x1c{left:117.368039px;}
.x18{left:122.353653px;}
.x14{left:138.095987px;}
.x1f{left:139.662904px;}
.x40{left:146.015987px;}
.x3e{left:151.049987px;}
.x4f{left:161.489987px;}
.xd{left:164.909987px;}
.xc{left:167.789987px;}
.xb{left:169.589987px;}
.x29{left:173.790000px;}
.xe{left:185.609987px;}
.x3c{left:191.369987px;}
.x3a{left:196.409987px;}
.x43{left:198.390000px;}
.x28{left:208.829987px;}
.x1d{left:210.312845px;}
.x41{left:211.889987px;}
.x1b{left:219.020492px;}
.x2c{left:226.649987px;}
.x1a{left:232.746613px;}
.x19{left:243.485547px;}
.x51{left:247.215000px;}
.x15{left:251.819797px;}
.x2d{left:264.690000px;}
.x50{left:272.730000px;}
.x44{left:284.655000px;}
.x47{left:297.795000px;}
.x35{left:314.354987px;}
.x5c{left:326.774987px;}
.x21{left:346.034987px;}
.x33{left:363.674987px;}
.x52{left:366.015000px;}
.x37{left:392.295000px;}
.x2{left:437.474987px;}
.xa{left:472.964987px;}
.x54{left:490.425000px;}
.x10{left:520.484987px;}
.x12{left:522.464987px;}
.x4b{left:538.665000px;}
.xf{left:559.184987px;}
.x13{left:564.584987px;}
.x57{left:566.565000px;}
.x3f{left:669.209987px;}
.x3d{left:672.629987px;}
.x4d{left:683.070000px;}
.x11{left:689.369987px;}
.x59{left:693.150000px;}
.x3b{left:695.129987px;}
.x38{left:696.749987px;}
.x39{left:698.909987px;}
.x34{left:724.649987px;}
.x3{left:730.770000px;}
.x4e{left:807.989987px;}
@media print{
.vb{vertical-align:-74.880000pt;}
.v9{vertical-align:-73.600000pt;}
.v7{vertical-align:-48.765593pt;}
.v8{vertical-align:-15.722098pt;}
.v2{vertical-align:-14.317119pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.va{vertical-align:24.320000pt;}
.v6{vertical-align:28.096350pt;}
.v5{vertical-align:39.805202pt;}
.v3{vertical-align:43.565531pt;}
.v4{vertical-align:55.682212pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.208000pt;}
.ls25{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls26{letter-spacing:4.111360pt;}
.ls10{letter-spacing:4.480000pt;}
.ls1d{letter-spacing:4.608000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls11{letter-spacing:7.040000pt;}
.ls12{letter-spacing:8.960000pt;}
.ls1b{letter-spacing:9.600000pt;}
.ls2{letter-spacing:12.160000pt;}
.ls6{letter-spacing:14.080000pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls3{letter-spacing:18.560000pt;}
.ls1e{letter-spacing:19.200000pt;}
.ls15{letter-spacing:19.448968pt;}
.ls20{letter-spacing:19.840000pt;}
.ls4{letter-spacing:22.560000pt;}
.lse{letter-spacing:23.680000pt;}
.ls22{letter-spacing:28.928000pt;}
.lsb{letter-spacing:30.720000pt;}
.ls17{letter-spacing:68.341885pt;}
.ls16{letter-spacing:83.404810pt;}
.ls18{letter-spacing:172.928000pt;}
.ls13{letter-spacing:221.469723pt;}
.ls14{letter-spacing:360.783858pt;}
.ls21{letter-spacing:600.480000pt;}
.ws9{word-spacing:-37.016423pt;}
.ws6{word-spacing:-35.832653pt;}
.wsf{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.320000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.953835pt;}
.wse{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.673541pt;}
.ws5{word-spacing:-15.414221pt;}
.ws11{word-spacing:-13.534613pt;}
.wsd{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws8{word-spacing:-9.001717pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:31.073062pt;}
.wsa{word-spacing:295.501271pt;}
._2d{margin-left:-287.607698pt;}
._2c{margin-left:-248.071246pt;}
._25{margin-left:-214.722644pt;}
._27{margin-left:-213.004997pt;}
._34{margin-left:-168.230036pt;}
._30{margin-left:-165.177797pt;}
._2a{margin-left:-153.921158pt;}
._31{margin-left:-150.744732pt;}
._2b{margin-left:-137.216769pt;}
._2e{margin-left:-132.542364pt;}
._33{margin-left:-103.383717pt;}
._2f{margin-left:-101.116538pt;}
._36{margin-left:-91.046972pt;}
._29{margin-left:-89.273023pt;}
._35{margin-left:-84.318090pt;}
._28{margin-left:-82.560700pt;}
._32{margin-left:-48.100153pt;}
._26{margin-left:-41.632801pt;}
._41{margin-left:-10.112000pt;}
._1b{margin-left:-4.837333pt;}
._1a{margin-left:-3.584000pt;}
._2{margin-left:-2.469333pt;}
._0{margin-left:-0.944000pt;}
._1{width:1.136000pt;}
._13{width:2.341333pt;}
._14{width:3.269333pt;}
._6{width:4.170667pt;}
._5{width:5.312000pt;}
._b{width:6.464000pt;}
._d{width:7.424000pt;}
._7{width:8.320000pt;}
._8{width:9.232000pt;}
._16{width:10.138667pt;}
._15{width:11.136000pt;}
._9{width:12.032000pt;}
._a{width:14.133333pt;}
._e{width:15.104000pt;}
._12{width:17.258667pt;}
._c{width:18.304000pt;}
._1c{width:19.845333pt;}
._10{width:21.498667pt;}
._f{width:22.896000pt;}
._1d{width:24.064000pt;}
._11{width:25.280000pt;}
._1f{width:26.368000pt;}
._20{width:27.456000pt;}
._23{width:28.410667pt;}
._18{width:29.376000pt;}
._17{width:30.336000pt;}
._19{width:31.594667pt;}
._37{width:32.512000pt;}
._1e{width:33.584000pt;}
._22{width:35.514667pt;}
._21{width:36.634667pt;}
._46{width:38.080000pt;}
._47{width:39.104000pt;}
._48{width:40.725333pt;}
._4b{width:42.112000pt;}
._4a{width:43.061333pt;}
._42{width:45.120000pt;}
._43{width:46.261333pt;}
._24{width:49.776000pt;}
._3{width:51.072000pt;}
._4{width:52.016000pt;}
._3f{width:55.552000pt;}
._3b{width:59.136000pt;}
._3a{width:60.288000pt;}
._38{width:62.912000pt;}
._39{width:63.872000pt;}
._3d{width:76.352000pt;}
._3e{width:77.248000pt;}
._4e{width:88.938667pt;}
._4f{width:119.744000pt;}
._50{width:120.640000pt;}
._4c{width:124.416000pt;}
._4d{width:126.005333pt;}
._44{width:140.736000pt;}
._40{width:142.144000pt;}
._3c{width:156.928000pt;}
._51{width:754.906453pt;}
._49{width:1620.160000pt;}
._45{width:1684.288000pt;}
.fs4{font-size:36.006867pt;}
.fse{font-size:36.602945pt;}
.fsb{font-size:37.173203pt;}
.fs5{font-size:38.116268pt;}
.fs8{font-size:39.275978pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fsf{font-size:58.880000pt;}
.fs3{font-size:61.656885pt;}
.fsc{font-size:61.779210pt;}
.fsd{font-size:62.694166pt;}
.fsa{font-size:63.815339pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:65.268950pt;}
.fs9{font-size:67.425178pt;}
.fs7{font-size:92.482780pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.800000pt;}
.y74{bottom:3.517480pt;}
.y81{bottom:3.702624pt;}
.y90{bottom:4.000000pt;}
.y7a{bottom:4.495627pt;}
.y86{bottom:4.765058pt;}
.y77{bottom:6.294385pt;}
.y82{bottom:7.559429pt;}
.y7b{bottom:8.495225pt;}
.y8e{bottom:13.280000pt;}
.y7{bottom:13.440000pt;}
.y75{bottom:14.408863pt;}
.y7d{bottom:16.897492pt;}
.y88{bottom:16.956456pt;}
.y72{bottom:18.265922pt;}
.y84{bottom:19.531221pt;}
.y7c{bottom:20.866745pt;}
.y4{bottom:21.280000pt;}
.y8f{bottom:22.400000pt;}
.yd2{bottom:22.426667pt;}
.y6{bottom:26.400000pt;}
.y87{bottom:26.702266pt;}
.y73{bottom:27.892643pt;}
.y83{bottom:29.157942pt;}
.y76{bottom:33.940084pt;}
.ycf{bottom:36.506667pt;}
.ye8{bottom:37.120000pt;}
.y5{bottom:39.552000pt;}
.yd4{bottom:40.800000pt;}
.yd1{bottom:40.826667pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:69.632000pt;}
.y111{bottom:93.312000pt;}
.y6f{bottom:94.112000pt;}
.yac{bottom:101.792000pt;}
.ye4{bottom:103.232000pt;}
.y110{bottom:111.712000pt;}
.yc3{bottom:112.192000pt;}
.y6e{bottom:112.512000pt;}
.y3b{bottom:115.232000pt;}
.yab{bottom:116.512000pt;}
.ye3{bottom:121.632000pt;}
.y9b{bottom:123.072000pt;}
.yc2{bottom:126.912000pt;}
.y10f{bottom:130.112000pt;}
.y6d{bottom:130.912000pt;}
.y3a{bottom:133.946667pt;}
.ye2{bottom:140.026667pt;}
.y9a{bottom:141.466667pt;}
.y10e{bottom:148.506667pt;}
.y6c{bottom:149.306667pt;}
.y39{bottom:152.346667pt;}
.ye1{bottom:158.426667pt;}
.y99{bottom:159.866667pt;}
.y10d{bottom:166.906667pt;}
.y6b{bottom:167.706667pt;}
.y38{bottom:170.746667pt;}
.ye0{bottom:176.826667pt;}
.y10c{bottom:185.306667pt;}
.y6a{bottom:186.106667pt;}
.y37{bottom:189.146667pt;}
.ydf{bottom:195.226667pt;}
.y98{bottom:196.666667pt;}
.y10b{bottom:203.706667pt;}
.y69{bottom:204.506667pt;}
.y36{bottom:207.546667pt;}
.yde{bottom:213.626667pt;}
.y97{bottom:216.986667pt;}
.y10a{bottom:222.106667pt;}
.y68{bottom:222.906667pt;}
.y35{bottom:225.946667pt;}
.ydd{bottom:232.026667pt;}
.y109{bottom:240.506667pt;}
.y67{bottom:241.306667pt;}
.y34{bottom:244.346667pt;}
.y96{bottom:246.426667pt;}
.ydc{bottom:250.426667pt;}
.y108{bottom:258.906667pt;}
.y66{bottom:259.706667pt;}
.y33{bottom:262.746667pt;}
.ydb{bottom:268.826667pt;}
.y95{bottom:275.706667pt;}
.y107{bottom:277.306667pt;}
.y65{bottom:278.106667pt;}
.y32{bottom:281.146667pt;}
.yda{bottom:287.226667pt;}
.y106{bottom:295.746667pt;}
.y64{bottom:296.546667pt;}
.y31{bottom:299.586667pt;}
.y94{bottom:305.186667pt;}
.yd9{bottom:305.666667pt;}
.y105{bottom:313.826667pt;}
.y63{bottom:314.946667pt;}
.y30{bottom:317.986667pt;}
.yd8{bottom:324.066667pt;}
.y62{bottom:333.346667pt;}
.y93{bottom:334.626667pt;}
.y2f{bottom:336.386667pt;}
.yd7{bottom:342.466667pt;}
.y104{bottom:350.946667pt;}
.y61{bottom:351.746667pt;}
.y2e{bottom:354.786667pt;}
.yd6{bottom:360.866667pt;}
.y92{bottom:364.066667pt;}
.y103{bottom:369.346667pt;}
.y60{bottom:370.146667pt;}
.y2d{bottom:373.186667pt;}
.yd5{bottom:381.346667pt;}
.y102{bottom:387.746667pt;}
.y5f{bottom:388.546667pt;}
.y2c{bottom:391.266667pt;}
.y91{bottom:393.346667pt;}
.yaa{bottom:394.466667pt;}
.y101{bottom:406.146667pt;}
.y5e{bottom:406.946667pt;}
.y2b{bottom:409.986667pt;}
.ya9{bottom:412.866667pt;}
.yc1{bottom:414.946667pt;}
.y8d{bottom:422.786667pt;}
.y100{bottom:424.546667pt;}
.y5d{bottom:425.346667pt;}
.y2a{bottom:428.386667pt;}
.ya8{bottom:431.266667pt;}
.yc0{bottom:433.346667pt;}
.yff{bottom:442.946667pt;}
.y5c{bottom:443.746667pt;}
.yd3{bottom:446.466667pt;}
.y29{bottom:446.786667pt;}
.ya7{bottom:449.666667pt;}
.ybf{bottom:451.746667pt;}
.yfe{bottom:461.346667pt;}
.y5b{bottom:462.146667pt;}
.y28{bottom:465.186667pt;}
.ya6{bottom:468.066667pt;}
.y8c{bottom:469.346667pt;}
.ybe{bottom:470.146667pt;}
.yfd{bottom:479.746667pt;}
.y5a{bottom:480.546667pt;}
.y27{bottom:483.586667pt;}
.ya5{bottom:486.466667pt;}
.y8b{bottom:487.746667pt;}
.ybd{bottom:488.546667pt;}
.yfc{bottom:498.146667pt;}
.y59{bottom:498.946667pt;}
.y26{bottom:501.986667pt;}
.ya4{bottom:504.866667pt;}
.y8a{bottom:506.466667pt;}
.ybc{bottom:506.946667pt;}
.yce{bottom:511.746667pt;}
.yfb{bottom:516.546667pt;}
.y58{bottom:517.346667pt;}
.y25{bottom:520.386667pt;}
.ya3{bottom:523.266667pt;}
.y89{bottom:524.866667pt;}
.ybb{bottom:525.346667pt;}
.yfa{bottom:534.973333pt;}
.y57{bottom:535.773333pt;}
.y24{bottom:538.813333pt;}
.y80{bottom:539.280000pt;}
.ya2{bottom:541.693333pt;}
.y85{bottom:542.013333pt;}
.yba{bottom:543.773333pt;}
.yf9{bottom:553.373333pt;}
.y56{bottom:554.173333pt;}
.y23{bottom:557.213333pt;}
.y7f{bottom:559.293333pt;}
.ya1{bottom:560.093333pt;}
.yb9{bottom:562.173333pt;}
.yf8{bottom:571.773333pt;}
.y55{bottom:572.573333pt;}
.y22{bottom:575.613333pt;}
.yd0{bottom:576.893333pt;}
.ya0{bottom:578.493333pt;}
.yb8{bottom:580.573333pt;}
.y79{bottom:589.013333pt;}
.yf7{bottom:590.173333pt;}
.y54{bottom:590.973333pt;}
.y21{bottom:594.013333pt;}
.y9f{bottom:596.893333pt;}
.yb7{bottom:598.973333pt;}
.ycd{bottom:605.053333pt;}
.yf6{bottom:608.573333pt;}
.y53{bottom:609.373333pt;}
.y7e{bottom:610.333333pt;}
.y20{bottom:612.413333pt;}
.y9e{bottom:615.293333pt;}
.yb6{bottom:617.373333pt;}
.ycc{bottom:623.453333pt;}
.yf5{bottom:626.973333pt;}
.y52{bottom:627.773333pt;}
.y1f{bottom:630.813333pt;}
.y9d{bottom:633.373333pt;}
.y71{bottom:634.946667pt;}
.yb5{bottom:635.773333pt;}
.ycb{bottom:642.173333pt;}
.yf4{bottom:645.373333pt;}
.y51{bottom:646.173333pt;}
.y9c{bottom:648.253333pt;}
.y1e{bottom:649.213333pt;}
.y78{bottom:653.693333pt;}
.yb4{bottom:654.173333pt;}
.yca{bottom:660.573333pt;}
.yf3{bottom:663.773333pt;}
.y50{bottom:664.573333pt;}
.y1d{bottom:667.613333pt;}
.yb3{bottom:672.573333pt;}
.yc9{bottom:678.973333pt;}
.yf2{bottom:682.173333pt;}
.y4f{bottom:682.973333pt;}
.y1c{bottom:686.013333pt;}
.yb2{bottom:690.973333pt;}
.yc8{bottom:697.373333pt;}
.yf1{bottom:700.573333pt;}
.y4e{bottom:701.373333pt;}
.y1b{bottom:704.093333pt;}
.yb1{bottom:709.373333pt;}
.yc7{bottom:715.773333pt;}
.yf0{bottom:718.973333pt;}
.y4d{bottom:719.773333pt;}
.y1a{bottom:722.173333pt;}
.yb0{bottom:727.773333pt;}
.yc6{bottom:734.173333pt;}
.yef{bottom:737.373333pt;}
.y19{bottom:737.533333pt;}
.y4c{bottom:738.173333pt;}
.yaf{bottom:746.173333pt;}
.yc5{bottom:752.253333pt;}
.y18{bottom:752.893333pt;}
.yee{bottom:755.773333pt;}
.y4b{bottom:756.573333pt;}
.yae{bottom:764.253333pt;}
.yc4{bottom:767.013333pt;}
.y17{bottom:768.613333pt;}
.y4a{bottom:775.013333pt;}
.yad{bottom:779.013333pt;}
.y16{bottom:787.333333pt;}
.yed{bottom:792.613333pt;}
.y49{bottom:793.093333pt;}
.y70{bottom:793.413333pt;}
.y15{bottom:805.733333pt;}
.y48{bottom:811.813333pt;}
.yec{bottom:812.933333pt;}
.y14{bottom:823.813333pt;}
.y47{bottom:830.213333pt;}
.yeb{bottom:842.373333pt;}
.y13{bottom:842.533333pt;}
.y46{bottom:848.613333pt;}
.y12{bottom:860.933333pt;}
.y45{bottom:867.013333pt;}
.yea{bottom:871.813333pt;}
.y11{bottom:879.013333pt;}
.y44{bottom:885.413333pt;}
.y10{bottom:897.413333pt;}
.ye7{bottom:901.093333pt;}
.y43{bottom:903.813333pt;}
.yf{bottom:915.813333pt;}
.y42{bottom:922.213333pt;}
.ye{bottom:934.213333pt;}
.y41{bottom:940.613333pt;}
.yd{bottom:952.613333pt;}
.y40{bottom:959.013333pt;}
.ye9{bottom:967.333333pt;}
.yc{bottom:970.853333pt;}
.y3f{bottom:977.413333pt;}
.yb{bottom:989.253333pt;}
.ye6{bottom:995.493333pt;}
.y3e{bottom:995.813333pt;}
.ya{bottom:1009.893333pt;}
.ye5{bottom:1013.920000pt;}
.y3d{bottom:1014.240000pt;}
.y9{bottom:1031.520000pt;}
.y3c{bottom:1032.640000pt;}
.y1{bottom:1060.960000pt;}
.h25{height:18.400000pt;}
.h26{height:18.432000pt;}
.h12{height:26.671102pt;}
.hf{height:28.233583pt;}
.h17{height:29.092607pt;}
.h13{height:35.321189pt;}
.he{height:35.338771pt;}
.h1a{height:36.465315pt;}
.h1d{height:36.483466pt;}
.h24{height:36.800000pt;}
.h5{height:42.084375pt;}
.h4{height:42.649687pt;}
.hc{height:43.998765pt;}
.h16{height:46.134239pt;}
.h22{height:46.438989pt;}
.h1f{height:47.000179pt;}
.h19{height:47.269467pt;}
.h10{height:48.346190pt;}
.h3{height:49.632000pt;}
.h18{height:49.943357pt;}
.h9{height:52.134375pt;}
.h11{height:54.186971pt;}
.ha{height:54.312500pt;}
.h2a{height:55.200000pt;}
.h29{height:55.232000pt;}
.h6{height:55.343750pt;}
.hb{height:57.375000pt;}
.h15{height:60.482755pt;}
.hd{height:60.512861pt;}
.h2f{height:60.519362pt;}
.h1e{height:60.602751pt;}
.h23{height:61.500283pt;}
.h20{height:61.530895pt;}
.h8{height:62.781250pt;}
.h2{height:62.812500pt;}
.h2e{height:63.843750pt;}
.h21{height:64.020139pt;}
.h7{height:64.500000pt;}
.h2c{height:65.781915pt;}
.h27{height:66.404375pt;}
.h2d{height:66.750000pt;}
.h14{height:78.886720pt;}
.h28{height:83.552000pt;}
.h2b{height:84.640000pt;}
.h1c{height:102.436466pt;}
.h1b{height:118.282317pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:47.066880pt;}
.w15{width:66.720000pt;}
.w13{width:81.952000pt;}
.wc{width:87.872000pt;}
.w7{width:88.004262pt;}
.we{width:89.152000pt;}
.w3{width:99.040000pt;}
.wa{width:99.232000pt;}
.w17{width:101.120000pt;}
.w14{width:109.632000pt;}
.w5{width:110.063633pt;}
.w10{width:110.080000pt;}
.w16{width:111.712000pt;}
.wd{width:124.000000pt;}
.wf{width:127.872000pt;}
.w11{width:164.986667pt;}
.w8{width:183.546667pt;}
.w4{width:232.004795pt;}
.w9{width:281.186667pt;}
.w12{width:474.813333pt;}
.wb{width:540.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:2.409214pt;}
.x36{left:4.480000pt;}
.x56{left:7.040000pt;}
.x53{left:8.160000pt;}
.x45{left:11.360000pt;}
.x27{left:12.584990pt;}
.x6{left:13.920000pt;}
.x55{left:14.880000pt;}
.x25{left:15.944814pt;}
.x4a{left:18.560000pt;}
.x5{left:19.520000pt;}
.x46{left:20.480000pt;}
.x48{left:21.760000pt;}
.x32{left:23.794770pt;}
.x4{left:25.920000pt;}
.x5b{left:28.640000pt;}
.x2b{left:30.903329pt;}
.x5a{left:32.160000pt;}
.x58{left:33.760000pt;}
.x2a{left:37.356721pt;}
.x49{left:38.560000pt;}
.x4c{left:42.240000pt;}
.x2f{left:46.921104pt;}
.x7{left:49.440000pt;}
.x20{left:52.549252pt;}
.x31{left:56.649695pt;}
.x24{left:60.262460pt;}
.x30{left:61.497510pt;}
.x17{left:63.534131pt;}
.x23{left:68.472683pt;}
.x2e{left:73.427855pt;}
.x1{left:75.519988pt;}
.x42{left:76.640000pt;}
.x22{left:78.902522pt;}
.x16{left:86.757181pt;}
.x9{left:87.711988pt;}
.x8{left:99.391988pt;}
.x1e{left:101.211179pt;}
.x1c{left:104.327146pt;}
.x18{left:108.758803pt;}
.x14{left:122.751988pt;}
.x1f{left:124.144803pt;}
.x40{left:129.791988pt;}
.x3e{left:134.266655pt;}
.x4f{left:143.546655pt;}
.xd{left:146.586655pt;}
.xc{left:149.146655pt;}
.xb{left:150.746655pt;}
.x29{left:154.480000pt;}
.xe{left:164.986655pt;}
.x3c{left:170.106655pt;}
.x3a{left:174.586655pt;}
.x43{left:176.346667pt;}
.x28{left:185.626655pt;}
.x1d{left:186.944751pt;}
.x41{left:188.346655pt;}
.x1b{left:194.684882pt;}
.x2c{left:201.466655pt;}
.x1a{left:206.885878pt;}
.x19{left:216.431598pt;}
.x51{left:219.746667pt;}
.x15{left:223.839819pt;}
.x2d{left:235.280000pt;}
.x50{left:242.426667pt;}
.x44{left:253.026667pt;}
.x47{left:264.706667pt;}
.x35{left:279.426655pt;}
.x5c{left:290.466655pt;}
.x21{left:307.586655pt;}
.x33{left:323.266655pt;}
.x52{left:325.346667pt;}
.x37{left:348.706667pt;}
.x2{left:388.866655pt;}
.xa{left:420.413322pt;}
.x54{left:435.933333pt;}
.x10{left:462.653322pt;}
.x12{left:464.413322pt;}
.x4b{left:478.813333pt;}
.xf{left:497.053322pt;}
.x13{left:501.853322pt;}
.x57{left:503.613333pt;}
.x3f{left:594.853322pt;}
.x3d{left:597.893322pt;}
.x4d{left:607.173333pt;}
.x11{left:612.773322pt;}
.x59{left:616.133333pt;}
.x3b{left:617.893322pt;}
.x38{left:619.333322pt;}
.x39{left:621.253322pt;}
.x34{left:644.133322pt;}
.x3{left:649.573333pt;}
.x4e{left:718.213322pt;}
}




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