
    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_798ac108fcbac7a840b99d5d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_15da053a007f2dee1a6f5a55.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675000;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_95b87337292df6370d09a088.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.943000;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_1aca91ade8c54442f8a720ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_25d2b441c7e1210fe8551644.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_a132ae165a0de2c44020f47d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_a74b35c065eacaadccc153f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_fbbe579a0cbc4e034235538f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.336000;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_4c3bb57dd9991fc89a70864f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.683000;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_42827a9e05562a1607899dc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;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_66a809f0dbd3d20cb9a63c64.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.975586;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_afaef0d07660c7e9b72cbd2c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975586;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_11b33f07fc4192e11d6214d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.975586;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_7136b9a9df21653fea3ec179.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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:fff;src:url('chunks/assets/font_8e6b93160d4a604e40f0cd9d.woff2')format("woff");}.fff{font-family:fff;line-height:1.467000;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:ff10;src:url('chunks/assets/font_91c1fb40ef3f14dd42bf9456.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256324,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);}
.v3{vertical-align:-10.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:76.328882px;}
.v1{vertical-align:79.366498px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:16.363650px;}
.ls3{letter-spacing:34.992085px;}
.ls4{letter-spacing:52.507238px;}
.lsd{letter-spacing:52.664496px;}
.lsc{letter-spacing:53.081088px;}
.ls2{letter-spacing:65.454600px;}
.ls8{letter-spacing:95.510093px;}
.lsb{letter-spacing:95.545958px;}
.ls9{letter-spacing:95.581824px;}
.ls6{letter-spacing:95.617690px;}
.ls5{letter-spacing:95.653555px;}
.ls7{letter-spacing:95.689421px;}
.lsa{letter-spacing:95.761152px;}
.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;}
}
.ws1{word-spacing:-32.727300px;}
.ws37{word-spacing:-21.519300px;}
.ws1c{word-spacing:-16.972732px;}
.ws4{word-spacing:-16.363650px;}
.ws24{word-spacing:-14.943900px;}
.ws19{word-spacing:-7.680150px;}
.ws1a{word-spacing:-6.720121px;}
.ws5{word-spacing:-1.141980px;}
.ws23{word-spacing:-0.298878px;}
.ws3{word-spacing:-0.065455px;}
.ws1f{word-spacing:-0.035866px;}
.ws1b{word-spacing:-0.026048px;}
.ws16{word-spacing:-0.022069px;}
.ws17{word-spacing:-0.019311px;}
.ws0{word-spacing:0.000000px;}
.ws36{word-spacing:2.749093px;}
.ws1d{word-spacing:3.529165px;}
.ws11{word-spacing:3.646505px;}
.wsc{word-spacing:3.679556px;}
.ws12{word-spacing:3.696946px;}
.ws8{word-spacing:3.728631px;}
.wsb{word-spacing:3.746770px;}
.ws7{word-spacing:3.786372px;}
.ws6{word-spacing:3.809645px;}
.wsd{word-spacing:3.921880px;}
.ws9{word-spacing:9.805673px;}
.wsa{word-spacing:10.044101px;}
.wse{word-spacing:10.663743px;}
.ws13{word-spacing:10.826246px;}
.ws22{word-spacing:14.585246px;}
.ws21{word-spacing:14.884124px;}
.ws20{word-spacing:16.298195px;}
.ws26{word-spacing:18.972902px;}
.ws25{word-spacing:19.008768px;}
.ws2d{word-spacing:19.475021px;}
.ws29{word-spacing:19.510886px;}
.ws30{word-spacing:19.582618px;}
.ws27{word-spacing:19.618483px;}
.ws28{word-spacing:19.690214px;}
.ws2a{word-spacing:20.048870px;}
.ws1e{word-spacing:21.433223px;}
.ws18{word-spacing:27.570683px;}
.ws10{word-spacing:28.570081px;}
.ws15{word-spacing:32.723542px;}
.wsf{word-spacing:33.292800px;}
.ws2{word-spacing:41.825489px;}
.ws2b{word-spacing:43.469107px;}
.ws34{word-spacing:43.504973px;}
.ws33{word-spacing:44.114688px;}
.ws2c{word-spacing:86.615424px;}
.ws2f{word-spacing:86.687155px;}
.ws2e{word-spacing:86.723021px;}
.ws14{word-spacing:109.924191px;}
.ws31{word-spacing:172.728730px;}
.ws32{word-spacing:172.764595px;}
.ws35{word-spacing:172.800461px;}
._10{margin-left:-175.912144px;}
._f{margin-left:-161.884128px;}
._25{margin-left:-127.323000px;}
._24{margin-left:-108.047423px;}
._1c{margin-left:-106.731408px;}
._12{margin-left:-91.523003px;}
._14{margin-left:-84.390844px;}
._1b{margin-left:-66.653784px;}
._1f{margin-left:-55.668588px;}
._13{margin-left:-52.472064px;}
._17{margin-left:-49.236667px;}
._1a{margin-left:-47.931546px;}
._e{margin-left:-44.995027px;}
._9{margin-left:-16.363650px;}
._0{margin-left:-6.283636px;}
._b{margin-left:-4.647277px;}
._20{margin-left:-3.600003px;}
._27{margin-left:-2.552729px;}
._c{margin-left:-1.026651px;}
._a{width:1.112728px;}
._3{width:2.117686px;}
._4{width:3.547123px;}
._1{width:4.658908px;}
._19{width:5.802691px;}
._2{width:7.094247px;}
._21{width:8.745766px;}
._d{width:10.472573px;}
._15{width:11.489012px;}
._29{width:18.503843px;}
._28{width:20.445175px;}
._18{width:23.228873px;}
._23{width:24.445925px;}
._5{width:44.832000px;}
._11{width:50.996932px;}
._6{width:53.798400px;}
._8{width:80.374810px;}
._1d{width:98.580282px;}
._1e{width:117.912371px;}
._26{width:400.675018px;}
._16{width:410.630884px;}
._7{width:417.349018px;}
._22{width:582.312258px;}
.fc10{color:rgb(81,87,109);}
.fce{color:rgb(82,87,109);}
.fc12{color:rgb(0,173,239);}
.fcd{color:rgb(245,245,245);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(82,86,109);}
.fc8{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fcf{color:rgb(81,86,109);}
.fc5{color:rgb(32,0,179);}
.fc4{color:rgb(40,116,166);}
.fc6{color:rgb(186,0,35);}
.fca{color:rgb(96,96,96);}
.fc7{color:rgb(39,105,0);}
.fc9{color:rgb(215,7,81);}
.fc11{color:rgb(128,128,128);}
.fcb{color:rgb(240,81,51);}
.fcc{color:rgb(218,147,13);}
.fs7{font-size:4.567920px;}
.fsb{font-size:14.849738px;}
.fsa{font-size:14.849740px;}
.fse{font-size:19.310693px;}
.fsc{font-size:19.799569px;}
.fs8{font-size:20.881920px;}
.fsd{font-size:22.069398px;}
.fs10{font-size:25.524335px;}
.fsf{font-size:26.048077px;}
.fs4{font-size:35.865600px;}
.fs9{font-size:42.351660px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:52.942140px;}
.fs13{font-size:53.541742px;}
.fs6{font-size:59.775600px;}
.fs12{font-size:60.283440px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.fs5{font-size:148.722600px;}
.fs11{font-size:174.108622px;}
.y0{bottom:0.000000px;}
.y3f{bottom:3.608087px;}
.y9{bottom:3.873000px;}
.y43{bottom:4.267778px;}
.y32{bottom:9.603482px;}
.y45{bottom:10.204853px;}
.yc0{bottom:11.012612px;}
.yc1{bottom:11.772016px;}
.y3e{bottom:13.192562px;}
.y44{bottom:15.425333px;}
.y69{bottom:16.317131px;}
.y30{bottom:16.781642px;}
.yae{bottom:20.102696px;}
.y3b{bottom:20.370722px;}
.y8{bottom:20.397402px;}
.y36{bottom:23.959801px;}
.yb4{bottom:25.307119px;}
.y77{bottom:25.428000px;}
.y7{bottom:25.491000px;}
.y7a{bottom:25.753500px;}
.y7d{bottom:26.850000px;}
.y3a{bottom:27.548881px;}
.y3d{bottom:27.875161px;}
.y52{bottom:29.985000px;}
.y31{bottom:31.097176px;}
.y3c{bottom:34.645471px;}
.y9d{bottom:35.375889px;}
.y10d{bottom:36.091500px;}
.y9f{bottom:36.687552px;}
.y2c{bottom:38.193766px;}
.y67{bottom:42.222000px;}
.y38{bottom:42.598546px;}
.y9e{bottom:43.584317px;}
.y76{bottom:45.751500px;}
.y79{bottom:46.077000px;}
.y10c{bottom:46.552500px;}
.y2b{bottom:47.003326px;}
.y7c{bottom:47.173500px;}
.y51{bottom:50.310000px;}
.y39{bottom:50.551621px;}
.y33{bottom:54.099916px;}
.y8f{bottom:56.364614px;}
.y10b{bottom:57.013500px;}
.y37{bottom:57.648211px;}
.y42{bottom:60.599993px;}
.y35{bottom:61.196506px;}
.y13{bottom:62.266500px;}
.y66{bottom:62.547000px;}
.y8e{bottom:63.261389px;}
.ybe{bottom:63.938124px;}
.ybf{bottom:64.697527px;}
.y34{bottom:65.601286px;}
.y10a{bottom:67.474500px;}
.yb3{bottom:69.705519px;}
.y2f{bottom:70.046851px;}
.y50{bottom:73.482000px;}
.y2d{bottom:73.635931px;}
.y98{bottom:75.360194px;}
.y8b{bottom:77.171874px;}
.y28{bottom:77.225011px;}
.y109{bottom:77.934000px;}
.ybb{bottom:78.920444px;}
.yed{bottom:79.800000px;}
.y40{bottom:80.814091px;}
.y19{bottom:81.172500px;}
.y16{bottom:81.285000px;}
.y97{bottom:81.394949px;}
.ya8{bottom:82.386976px;}
.y26{bottom:84.403171px;}
.y65{bottom:85.875000px;}
.y12{bottom:87.073500px;}
.y8a{bottom:87.339546px;}
.y108{bottom:88.395000px;}
.ya7{bottom:88.421567px;}
.y2e{bottom:88.848741px;}
.y25{bottom:93.294306px;}
.ya0{bottom:95.152947px;}
.y7e{bottom:95.298000px;}
.y11d{bottom:96.312000px;}
.yec{bottom:97.732500px;}
.y27{bottom:97.739871px;}
.yc4{bottom:98.677500px;}
.y107{bottom:98.856000px;}
.y80{bottom:99.310429px;}
.y96{bottom:99.797302px;}
.yb2{bottom:100.179676px;}
.ya6{bottom:100.713694px;}
.y18{bottom:101.497500px;}
.y15{bottom:101.608500px;}
.yf0{bottom:101.740500px;}
.y112{bottom:102.040500px;}
.y29{bottom:102.144651px;}
.ycb{bottom:102.232500px;}
.y10f{bottom:102.256500px;}
.yc7{bottom:103.780500px;}
.y7f{bottom:104.791373px;}
.ydc{bottom:105.040500px;}
.y2a{bottom:105.692946px;}
.y114{bottom:105.805500px;}
.y95{bottom:105.832058px;}
.ya5{bottom:106.748449px;}
.y4f{bottom:107.907000px;}
.y89{bottom:108.167142px;}
.yc3{bottom:109.138500px;}
.y24{bottom:109.241241px;}
.y106{bottom:109.317000px;}
.y11{bottom:111.880500px;}
.yef{bottom:112.201500px;}
.y41{bottom:112.489819px;}
.y111{bottom:112.501500px;}
.yca{bottom:112.693500px;}
.y10e{bottom:112.717500px;}
.yc6{bottom:114.241500px;}
.ycd{bottom:115.329000px;}
.ydb{bottom:115.501500px;}
.yeb{bottom:115.665000px;}
.y113{bottom:116.266500px;}
.y82{bottom:116.646442px;}
.ybc{bottom:116.935640px;}
.y9b{bottom:117.644032px;}
.ybd{bottom:117.695044px;}
.yab{bottom:118.093679px;}
.y87{bottom:119.129030px;}
.y11c{bottom:119.262000px;}
.yc2{bottom:119.598000px;}
.y105{bottom:119.778000px;}
.yb1{bottom:119.882599px;}
.y4e{bottom:120.058500px;}
.y64{bottom:120.487500px;}
.y9c{bottom:120.905773px;}
.y17{bottom:121.821000px;}
.y83{bottom:121.923278px;}
.y14{bottom:121.932000px;}
.yee{bottom:122.662500px;}
.y110{bottom:122.961000px;}
.yc9{bottom:123.154500px;}
.y9a{bottom:124.540796px;}
.y88{bottom:124.609974px;}
.yc5{bottom:124.702500px;}
.yaa{bottom:124.990443px;}
.ycc{bottom:125.790000px;}
.yda{bottom:125.962500px;}
.y104{bottom:130.239000px;}
.y99{bottom:131.437560px;}
.ya9{bottom:131.887207px;}
.yea{bottom:133.597500px;}
.yc8{bottom:133.615500px;}
.y81{bottom:134.079261px;}
.yb0{bottom:137.835149px;}
.y84{bottom:138.386914px;}
.ya4{bottom:139.041429px;}
.y6{bottom:140.509500px;}
.y103{bottom:140.700000px;}
.y63{bottom:140.811000px;}
.y11b{bottom:141.444000px;}
.y85{bottom:142.430576px;}
.ya3{bottom:145.076174px;}
.y4d{bottom:147.853500px;}
.y94{bottom:148.671529px;}
.y102{bottom:151.159500px;}
.ye9{bottom:151.530000px;}
.y93{bottom:154.706266px;}
.yaf{bottom:155.021605px;}
.y10{bottom:157.947000px;}
.ya2{bottom:159.743018px;}
.y7b{bottom:161.064000px;}
.y86{bottom:161.176010px;}
.y101{bottom:161.620500px;}
.y78{bottom:162.159000px;}
.y75{bottom:162.484500px;}
.y62{bottom:163.983000px;}
.y11a{bottom:164.392500px;}
.ya1{bottom:165.777764px;}
.y4c{bottom:165.786000px;}
.ye8{bottom:169.464000px;}
.y100{bottom:172.081500px;}
.y8d{bottom:173.116337px;}
.yad{bottom:175.440342px;}
.y5{bottom:178.834500px;}
.y92{bottom:179.217915px;}
.y8c{bottom:179.303767px;}
.yac{bottom:182.336974px;}
.yff{bottom:182.542500px;}
.yf{bottom:182.754000px;}
.y91{bottom:185.252651px;}
.y4b{bottom:186.708000px;}
.ye7{bottom:187.396500px;}
.y119{bottom:189.562500px;}
.y90{bottom:191.467927px;}
.yfe{bottom:193.003500px;}
.y4{bottom:193.032000px;}
.y61{bottom:198.597000px;}
.yfd{bottom:203.464500px;}
.y11e{bottom:206.208000px;}
.y6b{bottom:206.229000px;}
.ye{bottom:207.561000px;}
.ydf{bottom:208.318500px;}
.y4a{bottom:209.124000px;}
.y118{bottom:213.109500px;}
.yfc{bottom:213.925500px;}
.y60{bottom:218.920500px;}
.yfb{bottom:224.385000px;}
.yde{bottom:226.251000px;}
.y3{bottom:229.512000px;}
.y6a{bottom:230.956500px;}
.yd{bottom:232.368000px;}
.yfa{bottom:234.846000px;}
.y117{bottom:235.525500px;}
.y49{bottom:237.960000px;}
.y5f{bottom:242.092500px;}
.yf9{bottom:245.307000px;}
.ydd{bottom:248.667000px;}
.yb7{bottom:251.437500px;}
.yba{bottom:251.439000px;}
.yf8{bottom:255.768000px;}
.y116{bottom:260.332500px;}
.yc{bottom:261.427500px;}
.yf7{bottom:266.229000px;}
.y68{bottom:268.480500px;}
.ycf{bottom:273.474000px;}
.yb6{bottom:276.244500px;}
.yb9{bottom:276.246000px;}
.yf6{bottom:276.690000px;}
.y55{bottom:276.705000px;}
.y1c{bottom:280.755000px;}
.y115{bottom:285.139500px;}
.yf5{bottom:287.149500px;}
.y2{bottom:292.656000px;}
.yce{bottom:293.797500px;}
.yb5{bottom:296.568000px;}
.yb8{bottom:296.569500px;}
.y54{bottom:297.030000px;}
.yf4{bottom:297.610500px;}
.yb{bottom:303.010500px;}
.y1b{bottom:305.562000px;}
.yf3{bottom:308.071500px;}
.y1{bottom:318.360000px;}
.yf2{bottom:318.532500px;}
.y53{bottom:320.202000px;}
.y1a{bottom:328.734000px;}
.yf1{bottom:328.993500px;}
.ya{bottom:362.751000px;}
.y6e{bottom:3025.466685px;}
.y71{bottom:3025.792185px;}
.y74{bottom:3026.888685px;}
.y48{bottom:3030.023685px;}
.y5e{bottom:3042.260685px;}
.y6d{bottom:3045.790185px;}
.y70{bottom:3046.115685px;}
.y73{bottom:3047.212185px;}
.y47{bottom:3050.348685px;}
.y5d{bottom:3062.585685px;}
.y46{bottom:3073.520685px;}
.ye6{bottom:3079.838685px;}
.y5c{bottom:3085.913685px;}
.ye5{bottom:3097.771185px;}
.y23{bottom:3107.945685px;}
.ye4{bottom:3115.703685px;}
.y22{bottom:3120.097185px;}
.y5b{bottom:3120.526185px;}
.ye3{bottom:3133.636185px;}
.y5a{bottom:3140.849685px;}
.y21{bottom:3147.892185px;}
.ye2{bottom:3151.568685px;}
.y72{bottom:3161.102685px;}
.y6f{bottom:3162.197685px;}
.y6c{bottom:3162.523185px;}
.y59{bottom:3164.021685px;}
.y20{bottom:3165.824685px;}
.ye1{bottom:3169.502685px;}
.y1f{bottom:3186.746685px;}
.ye0{bottom:3187.435185px;}
.y58{bottom:3198.635685px;}
.yd2{bottom:3208.357185px;}
.y1e{bottom:3209.162685px;}
.y57{bottom:3218.959185px;}
.yd1{bottom:3226.289685px;}
.y1d{bottom:3237.998685px;}
.y56{bottom:3242.131185px;}
.yd0{bottom:3248.705685px;}
.yd9{bottom:6079.877370px;}
.yd8{bottom:6097.809870px;}
.yd7{bottom:6115.742370px;}
.yd6{bottom:6133.674870px;}
.yd5{bottom:6151.607370px;}
.yd4{bottom:6169.541370px;}
.yd3{bottom:6187.473870px;}
.hc{height:-2725.268685px;}
.hd{height:4.819156px;}
.h14{height:11.282320px;}
.h13{height:11.282322px;}
.h17{height:14.671600px;}
.h15{height:15.043032px;}
.he{height:15.865365px;}
.h16{height:16.767570px;}
.h7{height:25.392845px;}
.h1d{height:26.074291px;}
.h11{height:28.206206px;}
.h19{height:28.970121px;}
.h18{height:29.564567px;}
.h4{height:33.856985px;}
.h6{height:35.259465px;}
.h20{height:35.841857px;}
.h21{height:37.085494px;}
.h1c{height:40.679175px;}
.hb{height:42.321125px;}
.h1f{height:43.456861px;}
.h3{height:46.341857px;}
.h9{height:47.585494px;}
.ha{height:57.272775px;}
.h2{height:60.942658px;}
.h1e{height:62.578124px;}
.h10{height:72.840146px;}
.h5{height:91.054594px;}
.h8{height:105.295601px;}
.hf{height:116.456161px;}
.h1b{height:132.281746px;}
.h12{height:201.147792px;}
.h1a{height:228.459167px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w3{width:-2696.714685px;}
.w4{width:249.982736px;}
.w5{width:333.363113px;}
.w6{width:416.667489px;}
.w2{width:416.724081px;}
.w7{width:476.214895px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x56{left:4.530959px;}
.x80{left:5.619049px;}
.x24{left:8.857036px;}
.x1b{left:10.679297px;}
.x1a{left:12.093868px;}
.x2c{left:16.144487px;}
.xa{left:18.136500px;}
.x2d{left:22.279603px;}
.x2f{left:24.315029px;}
.x1c{left:26.585607px;}
.x32{left:27.941549px;}
.x25{left:30.806695px;}
.x60{left:37.109411px;}
.xb{left:38.268000px;}
.x13{left:42.519000px;}
.x47{left:46.130065px;}
.x48{left:48.623367px;}
.x83{left:50.276534px;}
.x50{left:51.946867px;}
.x1f{left:53.523940px;}
.x41{left:57.919320px;}
.x49{left:61.925650px;}
.x9{left:67.216500px;}
.x21{left:68.371114px;}
.xc{left:70.995000px;}
.x42{left:72.591246px;}
.x14{left:75.247500px;}
.x81{left:76.264234px;}
.x55{left:77.321987px;}
.x82{left:78.734647px;}
.x43{left:80.393130px;}
.x51{left:81.910300px;}
.x54{left:83.645733px;}
.x36{left:85.065402px;}
.x52{left:86.457827px;}
.x6d{left:88.380428px;}
.x4d{left:89.773680px;}
.x26{left:91.793334px;}
.x53{left:92.853106px;}
.x3f{left:94.650355px;}
.x38{left:95.968220px;}
.x4f{left:97.151463px;}
.x35{left:98.203907px;}
.x19{left:101.201764px;}
.x45{left:103.036930px;}
.x4c{left:105.468098px;}
.x23{left:106.768757px;}
.x4e{left:108.186036px;}
.x44{left:109.970380px;}
.x4a{left:111.031108px;}
.x40{left:112.304365px;}
.x4b{left:114.094763px;}
.x39{left:116.382865px;}
.x37{left:117.878050px;}
.x22{left:119.562343px;}
.x8{left:120.988740px;}
.x3b{left:125.738721px;}
.x46{left:126.855688px;}
.x3c{left:129.678775px;}
.x7{left:131.812500px;}
.x3e{left:132.973120px;}
.x3d{left:134.833935px;}
.x7f{left:137.073538px;}
.x8f{left:138.153736px;}
.x57{left:139.315187px;}
.x3a{left:140.355205px;}
.x30{left:142.521430px;}
.x7e{left:144.748938px;}
.x31{left:145.788372px;}
.x2e{left:147.789068px;}
.x2a{left:149.766025px;}
.x6b{left:151.387547px;}
.x62{left:152.906788px;}
.x5c{left:155.353092px;}
.x61{left:156.763998px;}
.x69{left:158.672768px;}
.x6c{left:161.709338px;}
.x5a{left:162.827740px;}
.x5b{left:164.860139px;}
.x2b{left:168.032925px;}
.x66{left:169.837821px;}
.x63{left:171.311020px;}
.x78{left:173.481000px;}
.x5f{left:176.552051px;}
.x59{left:177.655796px;}
.x67{left:178.774675px;}
.x65{left:179.794300px;}
.x2{left:181.611000px;}
.x64{left:182.792316px;}
.x6a{left:185.006654px;}
.x88{left:186.411005px;}
.x68{left:187.502983px;}
.x5d{left:190.291817px;}
.x84{left:192.205694px;}
.x5e{left:193.253350px;}
.x85{left:196.388655px;}
.x1{left:197.625000px;}
.x86{left:198.807021px;}
.x27{left:203.573388px;}
.x58{left:205.896700px;}
.x29{left:208.678842px;}
.x28{left:210.546190px;}
.x1d{left:217.399344px;}
.x1e{left:218.430918px;}
.x5{left:229.387500px;}
.x33{left:233.008688px;}
.x20{left:234.935142px;}
.x34{left:237.607037px;}
.x7c{left:250.866000px;}
.x8b{left:258.974735px;}
.x6{left:280.495500px;}
.x87{left:290.776735px;}
.x4{left:294.721500px;}
.x8d{left:296.565822px;}
.x8c{left:298.260212px;}
.x3{left:301.768500px;}
.x76{left:302.832000px;}
.x8a{left:308.186440px;}
.x75{left:314.385000px;}
.x71{left:316.528500px;}
.x8e{left:320.420462px;}
.x9f{left:361.435500px;}
.x6f{left:376.990500px;}
.x89{left:386.443589px;}
.x77{left:393.405000px;}
.x96{left:415.276500px;}
.x97{left:431.371500px;}
.x70{left:448.239000px;}
.x7d{left:465.589500px;}
.x11{left:477.591000px;}
.x9e{left:485.934000px;}
.x10{left:488.814000px;}
.x12{left:517.551000px;}
.xe{left:537.120000px;}
.x95{left:540.421500px;}
.x91{left:543.664500px;}
.x90{left:546.534000px;}
.xd{left:548.343000px;}
.x9b{left:549.403500px;}
.x94{left:558.010500px;}
.x9d{left:563.749500px;}
.x93{left:566.619000px;}
.x9a{left:575.226000px;}
.xf{left:577.080000px;}
.x92{left:580.965000px;}
.x79{left:3036.179685px;}
.x15{left:3042.557685px;}
.x98{left:3061.112685px;}
.x16{left:3075.286185px;}
.x9c{left:3093.839685px;}
.x17{left:3108.013185px;}
.x7a{left:3250.904685px;}
.x73{left:3302.870685px;}
.x72{left:3314.423685px;}
.x18{left:3377.029185px;}
.x74{left:3393.443685px;}
.x6e{left:3448.277685px;}
.x7b{left:3465.628185px;}
.x99{left:6093.878370px;}
@media print{
.v3{vertical-align:-9.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:67.847895pt;}
.v1{vertical-align:70.547998pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:14.545467pt;}
.ls3{letter-spacing:31.104076pt;}
.ls4{letter-spacing:46.673101pt;}
.lsd{letter-spacing:46.812885pt;}
.lsc{letter-spacing:47.183189pt;}
.ls2{letter-spacing:58.181867pt;}
.ls8{letter-spacing:84.897860pt;}
.lsb{letter-spacing:84.929741pt;}
.ls9{letter-spacing:84.961621pt;}
.ls6{letter-spacing:84.993502pt;}
.ls5{letter-spacing:85.025382pt;}
.ls7{letter-spacing:85.057263pt;}
.lsa{letter-spacing:85.121024pt;}
.ws1{word-spacing:-29.090933pt;}
.ws37{word-spacing:-19.128267pt;}
.ws1c{word-spacing:-15.086873pt;}
.ws4{word-spacing:-14.545467pt;}
.ws24{word-spacing:-13.283467pt;}
.ws19{word-spacing:-6.826800pt;}
.ws1a{word-spacing:-5.973441pt;}
.ws5{word-spacing:-1.015093pt;}
.ws23{word-spacing:-0.265669pt;}
.ws3{word-spacing:-0.058182pt;}
.ws1f{word-spacing:-0.031881pt;}
.ws1b{word-spacing:-0.023154pt;}
.ws16{word-spacing:-0.019617pt;}
.ws17{word-spacing:-0.017165pt;}
.ws0{word-spacing:0.000000pt;}
.ws36{word-spacing:2.443638pt;}
.ws1d{word-spacing:3.137036pt;}
.ws11{word-spacing:3.241338pt;}
.wsc{word-spacing:3.270717pt;}
.ws12{word-spacing:3.286174pt;}
.ws8{word-spacing:3.314339pt;}
.wsb{word-spacing:3.330462pt;}
.ws7{word-spacing:3.365664pt;}
.ws6{word-spacing:3.386351pt;}
.wsd{word-spacing:3.486116pt;}
.ws9{word-spacing:8.716153pt;}
.wsa{word-spacing:8.928090pt;}
.wse{word-spacing:9.478883pt;}
.ws13{word-spacing:9.623330pt;}
.ws22{word-spacing:12.964663pt;}
.ws21{word-spacing:13.230333pt;}
.ws20{word-spacing:14.487285pt;}
.ws26{word-spacing:16.864802pt;}
.ws25{word-spacing:16.896683pt;}
.ws2d{word-spacing:17.311130pt;}
.ws29{word-spacing:17.343010pt;}
.ws30{word-spacing:17.406771pt;}
.ws27{word-spacing:17.438652pt;}
.ws28{word-spacing:17.502413pt;}
.ws2a{word-spacing:17.821218pt;}
.ws1e{word-spacing:19.051754pt;}
.ws18{word-spacing:24.507274pt;}
.ws10{word-spacing:25.395628pt;}
.ws15{word-spacing:29.087593pt;}
.wsf{word-spacing:29.593600pt;}
.ws2{word-spacing:37.178213pt;}
.ws2b{word-spacing:38.639206pt;}
.ws34{word-spacing:38.671087pt;}
.ws33{word-spacing:39.213056pt;}
.ws2c{word-spacing:76.991488pt;}
.ws2f{word-spacing:77.055249pt;}
.ws2e{word-spacing:77.087130pt;}
.ws14{word-spacing:97.710392pt;}
.ws31{word-spacing:153.536649pt;}
.ws32{word-spacing:153.568529pt;}
.ws35{word-spacing:153.600410pt;}
._10{margin-left:-156.366350pt;}
._f{margin-left:-143.897002pt;}
._25{margin-left:-113.176000pt;}
._24{margin-left:-96.042154pt;}
._1c{margin-left:-94.872363pt;}
._12{margin-left:-81.353780pt;}
._14{margin-left:-75.014083pt;}
._1b{margin-left:-59.247808pt;}
._1f{margin-left:-49.483189pt;}
._13{margin-left:-46.641835pt;}
._17{margin-left:-43.765926pt;}
._1a{margin-left:-42.605819pt;}
._e{margin-left:-39.995579pt;}
._9{margin-left:-14.545467pt;}
._0{margin-left:-5.585454pt;}
._b{margin-left:-4.130913pt;}
._20{margin-left:-3.200003pt;}
._27{margin-left:-2.269093pt;}
._c{margin-left:-0.912579pt;}
._a{width:0.989092pt;}
._3{width:1.882387pt;}
._4{width:3.152999pt;}
._1{width:4.141252pt;}
._19{width:5.157947pt;}
._2{width:6.305997pt;}
._21{width:7.774015pt;}
._d{width:9.308954pt;}
._15{width:10.212455pt;}
._29{width:16.447861pt;}
._28{width:18.173489pt;}
._18{width:20.647887pt;}
._23{width:21.729711pt;}
._5{width:39.850667pt;}
._11{width:45.330606pt;}
._6{width:47.820800pt;}
._8{width:71.444275pt;}
._1d{width:87.626917pt;}
._1e{width:104.810997pt;}
._26{width:356.155571pt;}
._16{width:365.005230pt;}
._7{width:370.976905pt;}
._22{width:517.610896pt;}
.fs7{font-size:4.060373pt;}
.fsb{font-size:13.199767pt;}
.fsa{font-size:13.199769pt;}
.fse{font-size:17.165060pt;}
.fsc{font-size:17.599617pt;}
.fs8{font-size:18.561707pt;}
.fsd{font-size:19.617243pt;}
.fs10{font-size:22.688298pt;}
.fsf{font-size:23.153846pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:37.645920pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:47.059680pt;}
.fs13{font-size:47.592660pt;}
.fs6{font-size:53.133867pt;}
.fs12{font-size:53.585280pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.fs5{font-size:132.197867pt;}
.fs11{font-size:154.763220pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:3.207189pt;}
.y9{bottom:3.442667pt;}
.y43{bottom:3.793580pt;}
.y32{bottom:8.536429pt;}
.y45{bottom:9.070981pt;}
.yc0{bottom:9.788989pt;}
.yc1{bottom:10.464014pt;}
.y3e{bottom:11.726722pt;}
.y44{bottom:13.711407pt;}
.y69{bottom:14.504117pt;}
.y30{bottom:14.917016pt;}
.yae{bottom:17.869063pt;}
.y3b{bottom:18.107309pt;}
.y8{bottom:18.131024pt;}
.y36{bottom:21.297601pt;}
.yb4{bottom:22.495216pt;}
.y77{bottom:22.602667pt;}
.y7{bottom:22.658667pt;}
.y7a{bottom:22.892000pt;}
.y7d{bottom:23.866667pt;}
.y3a{bottom:24.487894pt;}
.y3d{bottom:24.777921pt;}
.y52{bottom:26.653333pt;}
.y31{bottom:27.641934pt;}
.y3c{bottom:30.795974pt;}
.y9d{bottom:31.445235pt;}
.y10d{bottom:32.081333pt;}
.y9f{bottom:32.611158pt;}
.y2c{bottom:33.950014pt;}
.y67{bottom:37.530667pt;}
.y38{bottom:37.865374pt;}
.y9e{bottom:38.741615pt;}
.y76{bottom:40.668000pt;}
.y79{bottom:40.957333pt;}
.y10c{bottom:41.380000pt;}
.y2b{bottom:41.780734pt;}
.y7c{bottom:41.932000pt;}
.y51{bottom:44.720000pt;}
.y39{bottom:44.934774pt;}
.y33{bottom:48.088814pt;}
.y8f{bottom:50.101879pt;}
.y10b{bottom:50.678667pt;}
.y37{bottom:51.242854pt;}
.y42{bottom:53.866660pt;}
.y35{bottom:54.396894pt;}
.y13{bottom:55.348000pt;}
.y66{bottom:55.597333pt;}
.y8e{bottom:56.232346pt;}
.ybe{bottom:56.833888pt;}
.ybf{bottom:57.508913pt;}
.y34{bottom:58.312254pt;}
.y10a{bottom:59.977333pt;}
.yb3{bottom:61.960461pt;}
.y2f{bottom:62.263868pt;}
.y50{bottom:65.317333pt;}
.y2d{bottom:65.454161pt;}
.y98{bottom:66.986839pt;}
.y8b{bottom:68.597222pt;}
.y28{bottom:68.644454pt;}
.y109{bottom:69.274667pt;}
.ybb{bottom:70.151505pt;}
.yed{bottom:70.933333pt;}
.y40{bottom:71.834748pt;}
.y19{bottom:72.153333pt;}
.y16{bottom:72.253333pt;}
.y97{bottom:72.351066pt;}
.ya8{bottom:73.232867pt;}
.y26{bottom:75.025041pt;}
.y65{bottom:76.333333pt;}
.y12{bottom:77.398667pt;}
.y8a{bottom:77.635152pt;}
.y108{bottom:78.573333pt;}
.ya7{bottom:78.596949pt;}
.y2e{bottom:78.976659pt;}
.y25{bottom:82.928272pt;}
.ya0{bottom:84.580397pt;}
.y7e{bottom:84.709333pt;}
.y11d{bottom:85.610667pt;}
.yec{bottom:86.873333pt;}
.y27{bottom:86.879885pt;}
.yc4{bottom:87.713333pt;}
.y107{bottom:87.872000pt;}
.y80{bottom:88.275937pt;}
.y96{bottom:88.708713pt;}
.yb2{bottom:89.048601pt;}
.ya6{bottom:89.523283pt;}
.y18{bottom:90.220000pt;}
.y15{bottom:90.318667pt;}
.yf0{bottom:90.436000pt;}
.y112{bottom:90.702667pt;}
.y29{bottom:90.795245pt;}
.ycb{bottom:90.873333pt;}
.y10f{bottom:90.894667pt;}
.yc7{bottom:92.249333pt;}
.y7f{bottom:93.147887pt;}
.ydc{bottom:93.369333pt;}
.y2a{bottom:93.949285pt;}
.y114{bottom:94.049333pt;}
.y95{bottom:94.072940pt;}
.ya5{bottom:94.887511pt;}
.y4f{bottom:95.917333pt;}
.y89{bottom:96.148570pt;}
.yc3{bottom:97.012000pt;}
.y24{bottom:97.103325pt;}
.y106{bottom:97.170667pt;}
.y11{bottom:99.449333pt;}
.yef{bottom:99.734667pt;}
.y41{bottom:99.990951pt;}
.y111{bottom:100.001333pt;}
.yca{bottom:100.172000pt;}
.y10e{bottom:100.193333pt;}
.yc6{bottom:101.548000pt;}
.ycd{bottom:102.514667pt;}
.ydb{bottom:102.668000pt;}
.yeb{bottom:102.813333pt;}
.y113{bottom:103.348000pt;}
.y82{bottom:103.685726pt;}
.ybc{bottom:103.942791pt;}
.y9b{bottom:104.572473pt;}
.ybd{bottom:104.617817pt;}
.yab{bottom:104.972159pt;}
.y87{bottom:105.892471pt;}
.y11c{bottom:106.010667pt;}
.yc2{bottom:106.309333pt;}
.y105{bottom:106.469333pt;}
.yb1{bottom:106.562310pt;}
.y4e{bottom:106.718667pt;}
.y64{bottom:107.100000pt;}
.y9c{bottom:107.471798pt;}
.y17{bottom:108.285333pt;}
.y83{bottom:108.376247pt;}
.y14{bottom:108.384000pt;}
.yee{bottom:109.033333pt;}
.y110{bottom:109.298667pt;}
.yc9{bottom:109.470667pt;}
.y9a{bottom:110.702930pt;}
.y88{bottom:110.764421pt;}
.yc5{bottom:110.846667pt;}
.yaa{bottom:111.102616pt;}
.ycc{bottom:111.813333pt;}
.yda{bottom:111.966667pt;}
.y104{bottom:115.768000pt;}
.y99{bottom:116.833387pt;}
.ya9{bottom:117.233073pt;}
.yea{bottom:118.753333pt;}
.yc8{bottom:118.769333pt;}
.y81{bottom:119.181565pt;}
.yb0{bottom:122.520132pt;}
.y84{bottom:123.010590pt;}
.ya4{bottom:123.592381pt;}
.y6{bottom:124.897333pt;}
.y103{bottom:125.066667pt;}
.y63{bottom:125.165333pt;}
.y11b{bottom:125.728000pt;}
.y85{bottom:126.604957pt;}
.ya3{bottom:128.956600pt;}
.y4d{bottom:131.425333pt;}
.y94{bottom:132.152470pt;}
.y102{bottom:134.364000pt;}
.ye9{bottom:134.693333pt;}
.y93{bottom:137.516680pt;}
.yaf{bottom:137.796982pt;}
.y10{bottom:140.397333pt;}
.ya2{bottom:141.993794pt;}
.y7b{bottom:143.168000pt;}
.y86{bottom:143.267565pt;}
.y101{bottom:143.662667pt;}
.y78{bottom:144.141333pt;}
.y75{bottom:144.430667pt;}
.y62{bottom:145.762667pt;}
.y11a{bottom:146.126667pt;}
.ya1{bottom:147.358013pt;}
.y4c{bottom:147.365333pt;}
.ye8{bottom:150.634667pt;}
.y100{bottom:152.961333pt;}
.y8d{bottom:153.881188pt;}
.yad{bottom:155.946971pt;}
.y5{bottom:158.964000pt;}
.y92{bottom:159.304813pt;}
.y8c{bottom:159.381126pt;}
.yac{bottom:162.077310pt;}
.yff{bottom:162.260000pt;}
.yf{bottom:162.448000pt;}
.y91{bottom:164.669023pt;}
.y4b{bottom:165.962667pt;}
.ye7{bottom:166.574667pt;}
.y119{bottom:168.500000pt;}
.y90{bottom:170.193713pt;}
.yfe{bottom:171.558667pt;}
.y4{bottom:171.584000pt;}
.y61{bottom:176.530667pt;}
.yfd{bottom:180.857333pt;}
.y11e{bottom:183.296000pt;}
.y6b{bottom:183.314667pt;}
.ye{bottom:184.498667pt;}
.ydf{bottom:185.172000pt;}
.y4a{bottom:185.888000pt;}
.y118{bottom:189.430667pt;}
.yfc{bottom:190.156000pt;}
.y60{bottom:194.596000pt;}
.yfb{bottom:199.453333pt;}
.yde{bottom:201.112000pt;}
.y3{bottom:204.010667pt;}
.y6a{bottom:205.294667pt;}
.yd{bottom:206.549333pt;}
.yfa{bottom:208.752000pt;}
.y117{bottom:209.356000pt;}
.y49{bottom:211.520000pt;}
.y5f{bottom:215.193333pt;}
.yf9{bottom:218.050667pt;}
.ydd{bottom:221.037333pt;}
.yb7{bottom:223.500000pt;}
.yba{bottom:223.501333pt;}
.yf8{bottom:227.349333pt;}
.y116{bottom:231.406667pt;}
.yc{bottom:232.380000pt;}
.yf7{bottom:236.648000pt;}
.y68{bottom:238.649333pt;}
.ycf{bottom:243.088000pt;}
.yb6{bottom:245.550667pt;}
.yb9{bottom:245.552000pt;}
.yf6{bottom:245.946667pt;}
.y55{bottom:245.960000pt;}
.y1c{bottom:249.560000pt;}
.y115{bottom:253.457333pt;}
.yf5{bottom:255.244000pt;}
.y2{bottom:260.138667pt;}
.yce{bottom:261.153333pt;}
.yb5{bottom:263.616000pt;}
.yb8{bottom:263.617333pt;}
.y54{bottom:264.026667pt;}
.yf4{bottom:264.542667pt;}
.yb{bottom:269.342667pt;}
.y1b{bottom:271.610667pt;}
.yf3{bottom:273.841333pt;}
.y1{bottom:282.986667pt;}
.yf2{bottom:283.140000pt;}
.y53{bottom:284.624000pt;}
.y1a{bottom:292.208000pt;}
.yf1{bottom:292.438667pt;}
.ya{bottom:322.445333pt;}
.y6e{bottom:2689.303720pt;}
.y71{bottom:2689.593053pt;}
.y74{bottom:2690.567720pt;}
.y48{bottom:2693.354387pt;}
.y5e{bottom:2704.231720pt;}
.y6d{bottom:2707.369053pt;}
.y70{bottom:2707.658387pt;}
.y73{bottom:2708.633053pt;}
.y47{bottom:2711.421053pt;}
.y5d{bottom:2722.298387pt;}
.y46{bottom:2732.018387pt;}
.ye6{bottom:2737.634387pt;}
.y5c{bottom:2743.034387pt;}
.ye5{bottom:2753.574387pt;}
.y23{bottom:2762.618387pt;}
.ye4{bottom:2769.514387pt;}
.y22{bottom:2773.419720pt;}
.y5b{bottom:2773.801053pt;}
.ye3{bottom:2785.454387pt;}
.y5a{bottom:2791.866387pt;}
.y21{bottom:2798.126387pt;}
.ye2{bottom:2801.394387pt;}
.y72{bottom:2809.869053pt;}
.y6f{bottom:2810.842387pt;}
.y6c{bottom:2811.131720pt;}
.y59{bottom:2812.463720pt;}
.y20{bottom:2814.066387pt;}
.ye1{bottom:2817.335720pt;}
.y1f{bottom:2832.663720pt;}
.ye0{bottom:2833.275720pt;}
.y58{bottom:2843.231720pt;}
.yd2{bottom:2851.873053pt;}
.y1e{bottom:2852.589053pt;}
.y57{bottom:2861.297053pt;}
.yd1{bottom:2867.813053pt;}
.y1d{bottom:2878.221053pt;}
.y56{bottom:2881.894387pt;}
.yd0{bottom:2887.738387pt;}
.yd9{bottom:5404.335440pt;}
.yd8{bottom:5420.275440pt;}
.yd7{bottom:5436.215440pt;}
.yd6{bottom:5452.155440pt;}
.yd5{bottom:5468.095440pt;}
.yd4{bottom:5484.036773pt;}
.yd3{bottom:5499.976773pt;}
.hc{height:-2422.461053pt;}
.hd{height:4.283694pt;}
.h14{height:10.028729pt;}
.h13{height:10.028731pt;}
.h17{height:13.041423pt;}
.h15{height:13.371584pt;}
.he{height:14.102547pt;}
.h16{height:14.904507pt;}
.h7{height:22.571418pt;}
.h1d{height:23.177148pt;}
.h11{height:25.072183pt;}
.h19{height:25.751218pt;}
.h18{height:26.279615pt;}
.h4{height:30.095098pt;}
.h6{height:31.341747pt;}
.h20{height:31.859428pt;}
.h21{height:32.964884pt;}
.h1c{height:36.159267pt;}
.hb{height:37.618778pt;}
.h1f{height:38.628321pt;}
.h3{height:41.192762pt;}
.h9{height:42.298217pt;}
.ha{height:50.909133pt;}
.h2{height:54.171251pt;}
.h1e{height:55.624999pt;}
.h10{height:64.746796pt;}
.h5{height:80.937417pt;}
.h8{height:93.596090pt;}
.hf{height:103.516587pt;}
.h1b{height:117.583774pt;}
.h12{height:178.798038pt;}
.h1a{height:203.074815pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w3{width:-2397.079720pt;}
.w4{width:222.206876pt;}
.w5{width:296.322767pt;}
.w6{width:370.371101pt;}
.w2{width:370.421406pt;}
.w7{width:423.302129pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x56{left:4.027519pt;}
.x80{left:4.994711pt;}
.x24{left:7.872921pt;}
.x1b{left:9.492709pt;}
.x1a{left:10.750105pt;}
.x2c{left:14.350655pt;}
.xa{left:16.121333pt;}
.x2d{left:19.804091pt;}
.x2f{left:21.613359pt;}
.x1c{left:23.631650pt;}
.x32{left:24.836932pt;}
.x25{left:27.383729pt;}
.x60{left:32.986143pt;}
.xb{left:34.016000pt;}
.x13{left:37.794667pt;}
.x47{left:41.004503pt;}
.x48{left:43.220771pt;}
.x83{left:44.690253pt;}
.x50{left:46.174993pt;}
.x1f{left:47.576835pt;}
.x41{left:51.483840pt;}
.x49{left:55.045022pt;}
.x9{left:59.748000pt;}
.x21{left:60.774323pt;}
.xc{left:63.106667pt;}
.x42{left:64.525552pt;}
.x14{left:66.886667pt;}
.x81{left:67.790431pt;}
.x55{left:68.730655pt;}
.x82{left:69.986352pt;}
.x43{left:71.460560pt;}
.x51{left:72.809155pt;}
.x54{left:74.351763pt;}
.x36{left:75.613691pt;}
.x52{left:76.851402pt;}
.x6d{left:78.560380pt;}
.x4d{left:79.798826pt;}
.x26{left:81.594074pt;}
.x53{left:82.536095pt;}
.x3f{left:84.133649pt;}
.x38{left:85.305085pt;}
.x4f{left:86.356856pt;}
.x35{left:87.292362pt;}
.x19{left:89.957124pt;}
.x45{left:91.588382pt;}
.x4c{left:93.749421pt;}
.x23{left:94.905562pt;}
.x4e{left:96.165365pt;}
.x44{left:97.751449pt;}
.x4a{left:98.694319pt;}
.x40{left:99.826102pt;}
.x4b{left:101.417567pt;}
.x39{left:103.451436pt;}
.x37{left:104.780488pt;}
.x22{left:106.277638pt;}
.x8{left:107.545547pt;}
.x3b{left:111.767752pt;}
.x46{left:112.760612pt;}
.x3c{left:115.270022pt;}
.x7{left:117.166667pt;}
.x3e{left:118.198329pt;}
.x3d{left:119.852387pt;}
.x7f{left:121.843145pt;}
.x8f{left:122.803321pt;}
.x57{left:123.835722pt;}
.x3a{left:124.760182pt;}
.x30{left:126.685715pt;}
.x7e{left:128.665723pt;}
.x31{left:129.589664pt;}
.x2e{left:131.368060pt;}
.x2a{left:133.125355pt;}
.x6b{left:134.566709pt;}
.x62{left:135.917145pt;}
.x5c{left:138.091637pt;}
.x61{left:139.345776pt;}
.x69{left:141.042460pt;}
.x6c{left:143.741634pt;}
.x5a{left:144.735769pt;}
.x5b{left:146.542346pt;}
.x2b{left:149.362600pt;}
.x66{left:150.966952pt;}
.x63{left:152.276462pt;}
.x78{left:154.205333pt;}
.x5f{left:156.935157pt;}
.x59{left:157.916263pt;}
.x67{left:158.910822pt;}
.x65{left:159.817155pt;}
.x2{left:161.432000pt;}
.x64{left:162.482058pt;}
.x6a{left:164.450360pt;}
.x88{left:165.698671pt;}
.x68{left:166.669318pt;}
.x5d{left:169.148282pt;}
.x84{left:170.849505pt;}
.x5e{left:171.780755pt;}
.x85{left:174.567693pt;}
.x1{left:175.666667pt;}
.x86{left:176.717352pt;}
.x27{left:180.954123pt;}
.x58{left:183.019289pt;}
.x29{left:185.492304pt;}
.x28{left:187.152169pt;}
.x1d{left:193.243861pt;}
.x1e{left:194.160816pt;}
.x5{left:203.900000pt;}
.x33{left:207.118833pt;}
.x20{left:208.831237pt;}
.x34{left:211.206255pt;}
.x7c{left:222.992000pt;}
.x8b{left:230.199764pt;}
.x6{left:249.329333pt;}
.x87{left:258.468209pt;}
.x4{left:261.974667pt;}
.x8d{left:263.614064pt;}
.x8c{left:265.120189pt;}
.x3{left:268.238667pt;}
.x76{left:269.184000pt;}
.x8a{left:273.943502pt;}
.x75{left:279.453333pt;}
.x71{left:281.358667pt;}
.x8e{left:284.818189pt;}
.x9f{left:321.276000pt;}
.x6f{left:335.102667pt;}
.x89{left:343.505413pt;}
.x77{left:349.693333pt;}
.x96{left:369.134667pt;}
.x97{left:383.441333pt;}
.x70{left:398.434667pt;}
.x7d{left:413.857333pt;}
.x11{left:424.525333pt;}
.x9e{left:431.941333pt;}
.x10{left:434.501333pt;}
.x12{left:460.045333pt;}
.xe{left:477.440000pt;}
.x95{left:480.374667pt;}
.x91{left:483.257333pt;}
.x90{left:485.808000pt;}
.xd{left:487.416000pt;}
.x9b{left:488.358667pt;}
.x94{left:496.009333pt;}
.x9d{left:501.110667pt;}
.x93{left:503.661333pt;}
.x9a{left:511.312000pt;}
.xf{left:512.960000pt;}
.x92{left:516.413333pt;}
.x79{left:2698.826387pt;}
.x15{left:2704.495720pt;}
.x98{left:2720.989053pt;}
.x16{left:2733.587720pt;}
.x9c{left:2750.079720pt;}
.x17{left:2762.678387pt;}
.x7a{left:2889.693053pt;}
.x73{left:2935.885053pt;}
.x72{left:2946.154387pt;}
.x18{left:3001.803720pt;}
.x74{left:3016.394387pt;}
.x6e{left:3065.135720pt;}
.x7b{left:3080.558387pt;}
.x99{left:5416.780773pt;}
}




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