
    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_2d99e13484014bb00d8bad86.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dcb9c9cc1792fa04ab6fbbbf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7e12853dd3e8f855907e2ff9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_23125e2319e7d82324591c40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.855469;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_7c874c08536ad9e4d4a42c1d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-123.240000px;}
.v1{vertical-align:-41.040000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v2{vertical-align:3.300000px;}
.ls34{letter-spacing:-0.306000px;}
.ls36{letter-spacing:-0.201000px;}
.ls33{letter-spacing:-0.198000px;}
.ls2d{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.112800px;}
.ls2f{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.069600px;}
.ls2e{letter-spacing:-0.054000px;}
.ls2a{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.090000px;}
.ls2c{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.198720px;}
.ls37{letter-spacing:0.226200px;}
.ls2b{letter-spacing:0.238800px;}
.ls3a{letter-spacing:0.274200px;}
.ls38{letter-spacing:0.280200px;}
.ls30{letter-spacing:0.567600px;}
.ls16{letter-spacing:0.762000px;}
.ls0{letter-spacing:56.976480px;}
.ls1{letter-spacing:115.833600px;}
.ls2{letter-spacing:115.884000px;}
.lse{letter-spacing:216.828000px;}
.lsd{letter-spacing:222.662880px;}
.ls6{letter-spacing:222.708000px;}
.ls5{letter-spacing:222.782880px;}
.ls23{letter-spacing:244.662240px;}
.ls21{letter-spacing:245.655840px;}
.ls20{letter-spacing:246.997920px;}
.ls1b{letter-spacing:266.437920px;}
.ls19{letter-spacing:266.628000px;}
.ls18{letter-spacing:266.702880px;}
.ls1f{letter-spacing:270.541920px;}
.ls1e{letter-spacing:270.948000px;}
.ls1d{letter-spacing:271.742880px;}
.ls1a{letter-spacing:271.981920px;}
.ls22{letter-spacing:272.347680px;}
.ls17{letter-spacing:273.419040px;}
.ls28{letter-spacing:308.401920px;}
.ls26{letter-spacing:329.042880px;}
.ls27{letter-spacing:329.688000px;}
.ls29{letter-spacing:330.217920px;}
.ls25{letter-spacing:335.039040px;}
.ls14{letter-spacing:482.835840px;}
.ls10{letter-spacing:483.457920px;}
.ls9{letter-spacing:484.275840px;}
.lsf{letter-spacing:488.281920px;}
.ls7{letter-spacing:489.001920px;}
.lsc{letter-spacing:489.719040px;}
.lsa{letter-spacing:490.807680px;}
.ls24{letter-spacing:503.835840px;}
.ls1c{letter-spacing:509.279040px;}
.ls11{letter-spacing:778.335840px;}
.lsb{letter-spacing:780.042240px;}
.ls12{letter-spacing:780.547680px;}
.ls8{letter-spacing:781.657920px;}
.ls13{letter-spacing:1101.642240px;}
.ls4{letter-spacing:1110.599040px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc3{text-shadow:-0.015em 0 rgb(84,130,53),0 0.015em rgb(84,130,53),0.015em 0 rgb(84,130,53),0 -0.015em  rgb(84,130,53);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc5{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(84,130,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws0{word-spacing:-202.320000px;}
.ws9{word-spacing:-28.080000px;}
.ws13{word-spacing:-25.721280px;}
.wsa{word-spacing:-25.693200px;}
.ws2{word-spacing:-24.570000px;}
.wsb{word-spacing:-23.446800px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-13.115520px;}
.ws3{word-spacing:-12.916800px;}
.ws16{word-spacing:-11.653200px;}
.ws19{word-spacing:-10.530000px;}
.ws2e{word-spacing:0.000000px;}
.wse{word-spacing:0.182880px;}
.wsd{word-spacing:6.138720px;}
.wsc{word-spacing:29.571120px;}
.ws15{word-spacing:74.568000px;}
.ws14{word-spacing:77.304000px;}
.ws18{word-spacing:80.448000px;}
.ws17{word-spacing:83.304000px;}
.ws2c{word-spacing:141.012000px;}
.ws2d{word-spacing:152.066880px;}
.ws27{word-spacing:176.572320px;}
.ws25{word-spacing:176.752320px;}
.ws1f{word-spacing:179.423280px;}
.ws6{word-spacing:199.544880px;}
.ws26{word-spacing:202.302240px;}
.ws8{word-spacing:204.464880px;}
.ws21{word-spacing:207.401760px;}
.ws22{word-spacing:209.561760px;}
.ws20{word-spacing:211.186080px;}
.ws23{word-spacing:211.906080px;}
.ws2b{word-spacing:212.131440px;}
.ws24{word-spacing:213.881760px;}
.ws1e{word-spacing:225.391440px;}
.ws28{word-spacing:246.644400px;}
.ws2a{word-spacing:248.988720px;}
.ws29{word-spacing:252.824880px;}
.ws12{word-spacing:261.441120px;}
.wsf{word-spacing:354.260400px;}
.ws11{word-spacing:360.860400px;}
.ws1a{word-spacing:394.308000px;}
.ws1b{word-spacing:450.036000px;}
.ws7{word-spacing:458.624400px;}
.ws5{word-spacing:465.104400px;}
.ws1d{word-spacing:522.420000px;}
.ws1c{word-spacing:527.628000px;}
.ws10{word-spacing:1859.660400px;}
._6{margin-left:-11.448720px;}
._3{margin-left:-3.641760px;}
._1{margin-left:-2.225520px;}
._0{margin-left:-1.213920px;}
._4{width:1.216560px;}
._5{width:3.390720px;}
._2{width:36.552240px;}
._19{width:70.359840px;}
._33{width:91.202880px;}
._32{width:93.703920px;}
._1d{width:96.564000px;}
._1c{width:98.238000px;}
._1b{width:101.994000px;}
._1f{width:104.298000px;}
._1e{width:108.054000px;}
._31{width:115.134720px;}
._30{width:121.771680px;}
._2b{width:130.474560px;}
._2a{width:135.546240px;}
._21{width:143.646000px;}
._35{width:152.658000px;}
._34{width:156.474000px;}
._11{width:160.376160px;}
._37{width:164.859120px;}
._8{width:166.133280px;}
._36{width:169.206960px;}
._13{width:170.573280px;}
._20{width:175.880400px;}
._9{width:188.996160px;}
._b{width:190.842240px;}
._12{width:194.036160px;}
._14{width:198.533280px;}
._c{width:199.793280px;}
._24{width:214.584000px;}
._2f{width:215.901600px;}
._a{width:217.076160px;}
._7{width:218.192160px;}
._e{width:219.707760px;}
._15{width:222.508320px;}
._d{width:224.302080px;}
._28{width:225.523680px;}
._10{width:228.053280px;}
._27{width:229.173120px;}
._29{width:233.699040px;}
._23{width:235.536000px;}
._1a{width:385.760640px;}
._2c{width:424.619040px;}
._17{width:434.844000px;}
._2d{width:449.099040px;}
._16{width:517.076160px;}
._f{width:523.913280px;}
._25{width:650.472000px;}
._2e{width:658.499040px;}
._22{width:699.564000px;}
._26{width:802.272000px;}
._18{width:904.564560px;}
.fc8{color:transparent;}
.fc6{color:rgb(157,195,230);}
.fc5{color:rgb(84,130,53);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(30,100,200);}
.fc7{color:rgb(89,89,89);}
.fc3{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:54.000000px;}
.fse{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fsf{font-size:84.240000px;}
.fs7{font-size:108.000000px;}
.fsb{font-size:120.240000px;}
.fs8{font-size:126.000000px;}
.fs4{font-size:131.760000px;}
.fs5{font-size:131.904000px;}
.fsa{font-size:144.000000px;}
.fs3{font-size:147.600000px;}
.fs0{font-size:202.320000px;}
.fsc{font-size:203.760000px;}
.fs6{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:12.885000px;}
.y4d{bottom:22.065000px;}
.y49{bottom:22.110000px;}
.ya5{bottom:22.245000px;}
.y54{bottom:30.270000px;}
.y4c{bottom:44.205000px;}
.y48{bottom:44.250000px;}
.ya3{bottom:44.745000px;}
.y92{bottom:61.635000px;}
.y1b{bottom:63.330000px;}
.y7d{bottom:63.390000px;}
.y9b{bottom:64.050000px;}
.y55{bottom:69.405000px;}
.y9c{bottom:84.705000px;}
.y99{bottom:84.810000px;}
.y93{bottom:86.190000px;}
.ya4{bottom:86.325000px;}
.y67{bottom:103.755000px;}
.y64{bottom:103.785000px;}
.y60{bottom:103.860000px;}
.y9d{bottom:105.375000px;}
.y56{bottom:108.570000px;}
.y94{bottom:110.775000px;}
.y9e{bottom:126.030000px;}
.y95{bottom:135.330000px;}
.y9f{bottom:146.700000px;}
.y57{bottom:147.705000px;}
.y96{bottom:159.870000px;}
.ya0{bottom:167.370000px;}
.y97{bottom:184.470000px;}
.y58{bottom:186.870000px;}
.ya1{bottom:188.025000px;}
.ya2{bottom:208.695000px;}
.y98{bottom:209.010000px;}
.y59{bottom:226.005000px;}
.y4b{bottom:254.160000px;}
.y5a{bottom:265.140000px;}
.y4a{bottom:269.670000px;}
.y26{bottom:277.095000px;}
.y25{bottom:300.420000px;}
.y5b{bottom:304.305000px;}
.y24{bottom:323.715000px;}
.y16{bottom:327.780000px;}
.y5d{bottom:332.280000px;}
.y36{bottom:342.255000px;}
.y23{bottom:347.010000px;}
.y15{bottom:365.580000px;}
.y22{bottom:370.290000px;}
.y21{bottom:393.585000px;}
.y27{bottom:397.875000px;}
.y14{bottom:403.380000px;}
.y20{bottom:416.880000px;}
.y17{bottom:438.870000px;}
.y1f{bottom:440.175000px;}
.y1e{bottom:463.500000px;}
.y13{bottom:478.980000px;}
.y1a{bottom:480.960000px;}
.y1d{bottom:486.795000px;}
.y1c{bottom:510.090000px;}
.y66{bottom:519.480000px;}
.y19{bottom:544.290000px;}
.y47{bottom:562.500000px;}
.y63{bottom:567.720000px;}
.y34{bottom:593.565000px;}
.y33{bottom:616.860000px;}
.y68{bottom:623.235000px;}
.y32{bottom:640.155000px;}
.y31{bottom:663.450000px;}
.y65{bottom:671.505000px;}
.y5f{bottom:677.340000px;}
.y30{bottom:686.730000px;}
.y35{bottom:703.440000px;}
.y2f{bottom:710.070000px;}
.y62{bottom:719.790000px;}
.y2e{bottom:733.350000px;}
.y2d{bottom:756.645000px;}
.y61{bottom:765.000000px;}
.y2c{bottom:779.940000px;}
.y5e{bottom:781.200000px;}
.y18{bottom:782.640000px;}
.y29{bottom:797.400000px;}
.y2b{bottom:803.235000px;}
.y2a{bottom:826.530000px;}
.y28{bottom:860.730000px;}
.y7b{bottom:925.740000px;}
.y8a{bottom:926.310000px;}
.y7a{bottom:948.240000px;}
.y89{bottom:948.810000px;}
.y6e{bottom:960.375000px;}
.y79{bottom:970.740000px;}
.y88{bottom:971.310000px;}
.y90{bottom:987.915000px;}
.y78{bottom:993.240000px;}
.y87{bottom:993.810000px;}
.y6d{bottom:995.580000px;}
.y77{bottom:1015.740000px;}
.y86{bottom:1016.310000px;}
.y8f{bottom:1018.725000px;}
.y6c{bottom:1030.830000px;}
.y76{bottom:1038.240000px;}
.y85{bottom:1038.810000px;}
.y8e{bottom:1049.505000px;}
.y75{bottom:1060.740000px;}
.y84{bottom:1061.310000px;}
.y6b{bottom:1066.065000px;}
.y8d{bottom:1080.330000px;}
.y74{bottom:1083.240000px;}
.y83{bottom:1083.810000px;}
.y6a{bottom:1101.270000px;}
.y73{bottom:1105.740000px;}
.y82{bottom:1106.310000px;}
.y8c{bottom:1111.140000px;}
.y72{bottom:1128.240000px;}
.y81{bottom:1128.810000px;}
.y7c{bottom:1132.920000px;}
.y69{bottom:1136.520000px;}
.y8b{bottom:1141.920000px;}
.y71{bottom:1150.740000px;}
.y80{bottom:1151.310000px;}
.y70{bottom:1173.240000px;}
.y7f{bottom:1173.810000px;}
.y4f{bottom:1173.885000px;}
.y52{bottom:1183.065000px;}
.y6f{bottom:1195.740000px;}
.y7e{bottom:1196.310000px;}
.y50{bottom:1223.310000px;}
.y51{bottom:1226.730000px;}
.y3{bottom:1282.065000px;}
.y2{bottom:1354.830000px;}
.y1{bottom:1457.790000px;}
.y91{bottom:1532.340000px;}
.ya{bottom:1625.250000px;}
.yf{bottom:1661.970000px;}
.y9{bottom:1697.970000px;}
.ye{bottom:1701.570000px;}
.y11{bottom:1725.120000px;}
.yd{bottom:1741.170000px;}
.y8{bottom:1770.690000px;}
.yc{bottom:1780.815000px;}
.y9a{bottom:1783.800000px;}
.y7{bottom:1843.590000px;}
.yb{bottom:1860.015000px;}
.y10{bottom:1961.745000px;}
.y12{bottom:1984.035000px;}
.y6{bottom:1989.030000px;}
.y43{bottom:2218.110000px;}
.y42{bottom:2279.310000px;}
.y41{bottom:2340.510000px;}
.y46{bottom:2345.790000px;}
.y44{bottom:2417.370000px;}
.y45{bottom:2417.430000px;}
.y37{bottom:2602.770000px;}
.y53{bottom:2603.700000px;}
.y3a{bottom:2616.630000px;}
.y3f{bottom:2702.700000px;}
.y39{bottom:2723.325000px;}
.y3e{bottom:2745.900000px;}
.y3d{bottom:2789.100000px;}
.y38{bottom:2828.490000px;}
.y40{bottom:2831.685000px;}
.y3c{bottom:2863.230000px;}
.y3b{bottom:2933.640000px;}
.y5{bottom:3080.850000px;}
.y4{bottom:3195.210000px;}
.y4e{bottom:3461.910000px;}
.h15{height:39.550781px;}
.h16{height:43.769531px;}
.hc{height:48.515625px;}
.h17{height:61.699219px;}
.he{height:79.101562px;}
.ha{height:79.101570px;}
.h11{height:88.066406px;}
.hb{height:92.285156px;}
.h7{height:96.503906px;}
.h8{height:96.609375px;}
.h13{height:98.049375px;}
.h10{height:105.468750px;}
.hf{height:108.768750px;}
.hd{height:138.780000px;}
.h2{height:148.183594px;}
.h12{height:149.238281px;}
.h6{height:154.901250px;}
.h9{height:158.203125px;}
.h5{height:170.509922px;}
.h4{height:175.605469px;}
.h3{height:193.535156px;}
.h19{height:226.980000px;}
.h1a{height:229.860000px;}
.h1b{height:230.040000px;}
.h14{height:301.320000px;}
.h18{height:363.780000px;}
.h1{height:3571.500000px;}
.h0{height:3571.740000px;}
.w6{width:66.780000px;}
.w3{width:66.960000px;}
.w4{width:67.140000px;}
.w7{width:81.000000px;}
.w5{width:81.180000px;}
.wc{width:118.620000px;}
.wb{width:157.680000px;}
.w8{width:365.040000px;}
.w9{width:381.780000px;}
.wd{width:389.520000px;}
.we{width:417.960000px;}
.wa{width:752.040000px;}
.w1{width:2508.750000px;}
.w2{width:2508.839963px;}
.w0{width:2508.840000px;}
.x0{left:0.000000px;}
.xd{left:5.835000px;}
.x4d{left:8.175000px;}
.x13{left:9.180000px;}
.x48{left:10.545000px;}
.x47{left:12.345000px;}
.x56{left:14.655000px;}
.x46{left:16.125000px;}
.x3c{left:29.955000px;}
.x6d{left:33.405000px;}
.xf{left:37.515000px;}
.x6b{left:42.120000px;}
.x18{left:43.410000px;}
.x15{left:45.720000px;}
.x6a{left:47.700000px;}
.x4f{left:57.855000px;}
.x49{left:63.570000px;}
.x6c{left:86.610000px;}
.x70{left:90.900000px;}
.x3e{left:106.050000px;}
.x40{left:114.375000px;}
.x2{left:136.655963px;}
.x1{left:157.064963px;}
.x3{left:158.249963px;}
.x3d{left:160.050000px;}
.x3f{left:168.375000px;}
.x6e{left:197.310000px;}
.x71{left:212.790000px;}
.x4a{left:309.750000px;}
.x2d{left:311.864963px;}
.x59{left:325.829963px;}
.x5b{left:330.689963px;}
.x5a{left:331.769963px;}
.x36{left:343.589963px;}
.x1f{left:348.764963px;}
.x37{left:358.229963px;}
.x2b{left:365.249963px;}
.xb{left:521.099963px;}
.x20{left:522.749963px;}
.x1d{left:542.159963px;}
.x1e{left:543.779963px;}
.x1c{left:545.039963px;}
.x1b{left:546.119963px;}
.x2a{left:547.769963px;}
.xc{left:586.080000px;}
.x21{left:587.700000px;}
.xe{left:618.554963px;}
.x22{left:619.994963px;}
.x10{left:652.860000px;}
.x23{left:654.480000px;}
.x11{left:684.869963px;}
.x24{left:686.339963px;}
.x12{left:719.820000px;}
.x25{left:721.080000px;}
.x2f{left:753.869963px;}
.x14{left:760.499963px;}
.x26{left:761.654963px;}
.x30{left:768.989963px;}
.x2e{left:774.749963px;}
.x31{left:782.129963px;}
.x6{left:788.864963px;}
.x16{left:800.820000px;}
.x27{left:801.900000px;}
.x4{left:836.849963px;}
.x17{left:839.009963px;}
.x28{left:840.029963px;}
.x5c{left:854.489963px;}
.x5f{left:875.549963px;}
.x5{left:877.349963px;}
.x5e{left:878.429963px;}
.x5d{left:879.689963px;}
.x19{left:881.820000px;}
.x29{left:882.900000px;}
.x1a{left:920.084963px;}
.x43{left:950.399963px;}
.x3b{left:1053.900000px;}
.x3a{left:1061.849963px;}
.x39{left:1133.489963px;}
.x32{left:1267.484963px;}
.x6f{left:1403.820000px;}
.x60{left:1405.980000px;}
.x69{left:1412.460000px;}
.xa{left:1431.689963px;}
.x64{left:1433.129963px;}
.x65{left:1434.749963px;}
.x63{left:1436.009963px;}
.x62{left:1437.089963px;}
.x9{left:1448.354963px;}
.x34{left:1462.169963px;}
.x61{left:1486.109963px;}
.x33{left:1491.329963px;}
.x35{left:1533.809963px;}
.x42{left:1549.724963px;}
.x4b{left:1554.914963px;}
.x55{left:1570.214963px;}
.x8{left:1597.424963px;}
.x45{left:1649.700000px;}
.x4c{left:1652.400000px;}
.x57{left:1684.874963px;}
.x4e{left:1702.154963px;}
.x58{left:1725.554963px;}
.x51{left:1826.819963px;}
.x50{left:1838.699963px;}
.x38{left:1957.169963px;}
.x53{left:1988.564963px;}
.x2c{left:1994.654963px;}
.x52{left:2010.164963px;}
.x44{left:2139.554963px;}
.x66{left:2147.654963px;}
.x68{left:2152.514963px;}
.x67{left:2153.594963px;}
.x41{left:2199.674963px;}
.x54{left:2223.719963px;}
.x7{left:2405.189963px;}
@media print{
.v3{vertical-align:-109.546667pt;}
.v1{vertical-align:-36.480000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v2{vertical-align:2.933333pt;}
.ls34{letter-spacing:-0.272000pt;}
.ls36{letter-spacing:-0.178667pt;}
.ls33{letter-spacing:-0.176000pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.100267pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.061867pt;}
.ls2e{letter-spacing:-0.048000pt;}
.ls2a{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.080000pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.176640pt;}
.ls37{letter-spacing:0.201067pt;}
.ls2b{letter-spacing:0.212267pt;}
.ls3a{letter-spacing:0.243733pt;}
.ls38{letter-spacing:0.249067pt;}
.ls30{letter-spacing:0.504533pt;}
.ls16{letter-spacing:0.677333pt;}
.ls0{letter-spacing:50.645760pt;}
.ls1{letter-spacing:102.963200pt;}
.ls2{letter-spacing:103.008000pt;}
.lse{letter-spacing:192.736000pt;}
.lsd{letter-spacing:197.922560pt;}
.ls6{letter-spacing:197.962667pt;}
.ls5{letter-spacing:198.029227pt;}
.ls23{letter-spacing:217.477547pt;}
.ls21{letter-spacing:218.360747pt;}
.ls20{letter-spacing:219.553707pt;}
.ls1b{letter-spacing:236.833707pt;}
.ls19{letter-spacing:237.002667pt;}
.ls18{letter-spacing:237.069227pt;}
.ls1f{letter-spacing:240.481707pt;}
.ls1e{letter-spacing:240.842667pt;}
.ls1d{letter-spacing:241.549227pt;}
.ls1a{letter-spacing:241.761707pt;}
.ls22{letter-spacing:242.086827pt;}
.ls17{letter-spacing:243.039147pt;}
.ls28{letter-spacing:274.135040pt;}
.ls26{letter-spacing:292.482560pt;}
.ls27{letter-spacing:293.056000pt;}
.ls29{letter-spacing:293.527040pt;}
.ls25{letter-spacing:297.812480pt;}
.ls14{letter-spacing:429.187413pt;}
.ls10{letter-spacing:429.740373pt;}
.ls9{letter-spacing:430.467413pt;}
.lsf{letter-spacing:434.028373pt;}
.ls7{letter-spacing:434.668373pt;}
.lsc{letter-spacing:435.305813pt;}
.lsa{letter-spacing:436.273493pt;}
.ls24{letter-spacing:447.854080pt;}
.ls1c{letter-spacing:452.692480pt;}
.ls11{letter-spacing:691.854080pt;}
.lsb{letter-spacing:693.370880pt;}
.ls12{letter-spacing:693.820160pt;}
.ls8{letter-spacing:694.807040pt;}
.ls13{letter-spacing:979.237547pt;}
.ls4{letter-spacing:987.199147pt;}
.ws0{word-spacing:-179.840000pt;}
.ws9{word-spacing:-24.960000pt;}
.ws13{word-spacing:-22.863360pt;}
.wsa{word-spacing:-22.838400pt;}
.ws2{word-spacing:-21.840000pt;}
.wsb{word-spacing:-20.841600pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-11.658240pt;}
.ws3{word-spacing:-11.481600pt;}
.ws16{word-spacing:-10.358400pt;}
.ws19{word-spacing:-9.360000pt;}
.ws2e{word-spacing:0.000000pt;}
.wse{word-spacing:0.162560pt;}
.wsd{word-spacing:5.456640pt;}
.wsc{word-spacing:26.285440pt;}
.ws15{word-spacing:66.282667pt;}
.ws14{word-spacing:68.714667pt;}
.ws18{word-spacing:71.509333pt;}
.ws17{word-spacing:74.048000pt;}
.ws2c{word-spacing:125.344000pt;}
.ws2d{word-spacing:135.170560pt;}
.ws27{word-spacing:156.953173pt;}
.ws25{word-spacing:157.113173pt;}
.ws1f{word-spacing:159.487360pt;}
.ws6{word-spacing:177.373227pt;}
.ws26{word-spacing:179.824213pt;}
.ws8{word-spacing:181.746560pt;}
.ws21{word-spacing:184.357120pt;}
.ws22{word-spacing:186.277120pt;}
.ws20{word-spacing:187.720960pt;}
.ws23{word-spacing:188.360960pt;}
.ws2b{word-spacing:188.561280pt;}
.ws24{word-spacing:190.117120pt;}
.ws1e{word-spacing:200.347947pt;}
.ws28{word-spacing:219.239467pt;}
.ws2a{word-spacing:221.323307pt;}
.ws29{word-spacing:224.733227pt;}
.ws12{word-spacing:232.392107pt;}
.wsf{word-spacing:314.898133pt;}
.ws11{word-spacing:320.764800pt;}
.ws1a{word-spacing:350.496000pt;}
.ws1b{word-spacing:400.032000pt;}
.ws7{word-spacing:407.666133pt;}
.ws5{word-spacing:413.426133pt;}
.ws1d{word-spacing:464.373333pt;}
.ws1c{word-spacing:469.002667pt;}
.ws10{word-spacing:1653.031467pt;}
._6{margin-left:-10.176640pt;}
._3{margin-left:-3.237120pt;}
._1{margin-left:-1.978240pt;}
._0{margin-left:-1.079040pt;}
._4{width:1.081387pt;}
._5{width:3.013973pt;}
._2{width:32.490880pt;}
._19{width:62.542080pt;}
._33{width:81.069227pt;}
._32{width:83.292373pt;}
._1d{width:85.834667pt;}
._1c{width:87.322667pt;}
._1b{width:90.661333pt;}
._1f{width:92.709333pt;}
._1e{width:96.048000pt;}
._31{width:102.341973pt;}
._30{width:108.241493pt;}
._2b{width:115.977387pt;}
._2a{width:120.485547pt;}
._21{width:127.685333pt;}
._35{width:135.696000pt;}
._34{width:139.088000pt;}
._11{width:142.556587pt;}
._37{width:146.541440pt;}
._8{width:147.674027pt;}
._36{width:150.406187pt;}
._13{width:151.620693pt;}
._20{width:156.338133pt;}
._9{width:167.996587pt;}
._b{width:169.637547pt;}
._12{width:172.476587pt;}
._14{width:176.474027pt;}
._c{width:177.594027pt;}
._24{width:190.741333pt;}
._2f{width:191.912533pt;}
._a{width:192.956587pt;}
._7{width:193.948587pt;}
._e{width:195.295787pt;}
._15{width:197.785173pt;}
._d{width:199.379627pt;}
._28{width:200.465493pt;}
._10{width:202.714027pt;}
._27{width:203.709440pt;}
._29{width:207.732480pt;}
._23{width:209.365333pt;}
._1a{width:342.898347pt;}
._2c{width:377.439147pt;}
._17{width:386.528000pt;}
._2d{width:399.199147pt;}
._16{width:459.623253pt;}
._f{width:465.700693pt;}
._25{width:578.197333pt;}
._2e{width:585.332480pt;}
._22{width:621.834667pt;}
._26{width:713.130667pt;}
._18{width:804.057387pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fsf{font-size:74.880000pt;}
.fs7{font-size:96.000000pt;}
.fsb{font-size:106.880000pt;}
.fs8{font-size:112.000000pt;}
.fs4{font-size:117.120000pt;}
.fs5{font-size:117.248000pt;}
.fsa{font-size:128.000000pt;}
.fs3{font-size:131.200000pt;}
.fs0{font-size:179.840000pt;}
.fsc{font-size:181.120000pt;}
.fs6{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:11.453333pt;}
.y4d{bottom:19.613333pt;}
.y49{bottom:19.653333pt;}
.ya5{bottom:19.773333pt;}
.y54{bottom:26.906667pt;}
.y4c{bottom:39.293333pt;}
.y48{bottom:39.333333pt;}
.ya3{bottom:39.773333pt;}
.y92{bottom:54.786667pt;}
.y1b{bottom:56.293333pt;}
.y7d{bottom:56.346667pt;}
.y9b{bottom:56.933333pt;}
.y55{bottom:61.693333pt;}
.y9c{bottom:75.293333pt;}
.y99{bottom:75.386667pt;}
.y93{bottom:76.613333pt;}
.ya4{bottom:76.733333pt;}
.y67{bottom:92.226667pt;}
.y64{bottom:92.253333pt;}
.y60{bottom:92.320000pt;}
.y9d{bottom:93.666667pt;}
.y56{bottom:96.506667pt;}
.y94{bottom:98.466667pt;}
.y9e{bottom:112.026667pt;}
.y95{bottom:120.293333pt;}
.y9f{bottom:130.400000pt;}
.y57{bottom:131.293333pt;}
.y96{bottom:142.106667pt;}
.ya0{bottom:148.773333pt;}
.y97{bottom:163.973333pt;}
.y58{bottom:166.106667pt;}
.ya1{bottom:167.133333pt;}
.ya2{bottom:185.506667pt;}
.y98{bottom:185.786667pt;}
.y59{bottom:200.893333pt;}
.y4b{bottom:225.920000pt;}
.y5a{bottom:235.680000pt;}
.y4a{bottom:239.706667pt;}
.y26{bottom:246.306667pt;}
.y25{bottom:267.040000pt;}
.y5b{bottom:270.493333pt;}
.y24{bottom:287.746667pt;}
.y16{bottom:291.360000pt;}
.y5d{bottom:295.360000pt;}
.y36{bottom:304.226667pt;}
.y23{bottom:308.453333pt;}
.y15{bottom:324.960000pt;}
.y22{bottom:329.146667pt;}
.y21{bottom:349.853333pt;}
.y27{bottom:353.666667pt;}
.y14{bottom:358.560000pt;}
.y20{bottom:370.560000pt;}
.y17{bottom:390.106667pt;}
.y1f{bottom:391.266667pt;}
.y1e{bottom:412.000000pt;}
.y13{bottom:425.760000pt;}
.y1a{bottom:427.520000pt;}
.y1d{bottom:432.706667pt;}
.y1c{bottom:453.413333pt;}
.y66{bottom:461.760000pt;}
.y19{bottom:483.813333pt;}
.y47{bottom:500.000000pt;}
.y63{bottom:504.640000pt;}
.y34{bottom:527.613333pt;}
.y33{bottom:548.320000pt;}
.y68{bottom:553.986667pt;}
.y32{bottom:569.026667pt;}
.y31{bottom:589.733333pt;}
.y65{bottom:596.893333pt;}
.y5f{bottom:602.080000pt;}
.y30{bottom:610.426667pt;}
.y35{bottom:625.280000pt;}
.y2f{bottom:631.173333pt;}
.y62{bottom:639.813333pt;}
.y2e{bottom:651.866667pt;}
.y2d{bottom:672.573333pt;}
.y61{bottom:680.000000pt;}
.y2c{bottom:693.280000pt;}
.y5e{bottom:694.400000pt;}
.y18{bottom:695.680000pt;}
.y29{bottom:708.800000pt;}
.y2b{bottom:713.986667pt;}
.y2a{bottom:734.693333pt;}
.y28{bottom:765.093333pt;}
.y7b{bottom:822.880000pt;}
.y8a{bottom:823.386667pt;}
.y7a{bottom:842.880000pt;}
.y89{bottom:843.386667pt;}
.y6e{bottom:853.666667pt;}
.y79{bottom:862.880000pt;}
.y88{bottom:863.386667pt;}
.y90{bottom:878.146667pt;}
.y78{bottom:882.880000pt;}
.y87{bottom:883.386667pt;}
.y6d{bottom:884.960000pt;}
.y77{bottom:902.880000pt;}
.y86{bottom:903.386667pt;}
.y8f{bottom:905.533333pt;}
.y6c{bottom:916.293333pt;}
.y76{bottom:922.880000pt;}
.y85{bottom:923.386667pt;}
.y8e{bottom:932.893333pt;}
.y75{bottom:942.880000pt;}
.y84{bottom:943.386667pt;}
.y6b{bottom:947.613333pt;}
.y8d{bottom:960.293333pt;}
.y74{bottom:962.880000pt;}
.y83{bottom:963.386667pt;}
.y6a{bottom:978.906667pt;}
.y73{bottom:982.880000pt;}
.y82{bottom:983.386667pt;}
.y8c{bottom:987.680000pt;}
.y72{bottom:1002.880000pt;}
.y81{bottom:1003.386667pt;}
.y7c{bottom:1007.040000pt;}
.y69{bottom:1010.240000pt;}
.y8b{bottom:1015.040000pt;}
.y71{bottom:1022.880000pt;}
.y80{bottom:1023.386667pt;}
.y70{bottom:1042.880000pt;}
.y7f{bottom:1043.386667pt;}
.y4f{bottom:1043.453333pt;}
.y52{bottom:1051.613333pt;}
.y6f{bottom:1062.880000pt;}
.y7e{bottom:1063.386667pt;}
.y50{bottom:1087.386667pt;}
.y51{bottom:1090.426667pt;}
.y3{bottom:1139.613333pt;}
.y2{bottom:1204.293333pt;}
.y1{bottom:1295.813333pt;}
.y91{bottom:1362.080000pt;}
.ya{bottom:1444.666667pt;}
.yf{bottom:1477.306667pt;}
.y9{bottom:1509.306667pt;}
.ye{bottom:1512.506667pt;}
.y11{bottom:1533.440000pt;}
.yd{bottom:1547.706667pt;}
.y8{bottom:1573.946667pt;}
.yc{bottom:1582.946667pt;}
.y9a{bottom:1585.600000pt;}
.y7{bottom:1638.746667pt;}
.yb{bottom:1653.346667pt;}
.y10{bottom:1743.773333pt;}
.y12{bottom:1763.586667pt;}
.y6{bottom:1768.026667pt;}
.y43{bottom:1971.653333pt;}
.y42{bottom:2026.053333pt;}
.y41{bottom:2080.453333pt;}
.y46{bottom:2085.146667pt;}
.y44{bottom:2148.773333pt;}
.y45{bottom:2148.826667pt;}
.y37{bottom:2313.573333pt;}
.y53{bottom:2314.400000pt;}
.y3a{bottom:2325.893333pt;}
.y3f{bottom:2402.400000pt;}
.y39{bottom:2420.733333pt;}
.y3e{bottom:2440.800000pt;}
.y3d{bottom:2479.200000pt;}
.y38{bottom:2514.213333pt;}
.y40{bottom:2517.053333pt;}
.y3c{bottom:2545.093333pt;}
.y3b{bottom:2607.680000pt;}
.y5{bottom:2738.533333pt;}
.y4{bottom:2840.186667pt;}
.y4e{bottom:3077.253333pt;}
.h15{height:35.156250pt;}
.h16{height:38.906250pt;}
.hc{height:43.125000pt;}
.h17{height:54.843750pt;}
.he{height:70.312500pt;}
.ha{height:70.312507pt;}
.h11{height:78.281250pt;}
.hb{height:82.031250pt;}
.h7{height:85.781250pt;}
.h8{height:85.875000pt;}
.h13{height:87.155000pt;}
.h10{height:93.750000pt;}
.hf{height:96.683333pt;}
.hd{height:123.360000pt;}
.h2{height:131.718750pt;}
.h12{height:132.656250pt;}
.h6{height:137.690000pt;}
.h9{height:140.625000pt;}
.h5{height:151.564375pt;}
.h4{height:156.093750pt;}
.h3{height:172.031250pt;}
.h19{height:201.760000pt;}
.h1a{height:204.320000pt;}
.h1b{height:204.480000pt;}
.h14{height:267.840000pt;}
.h18{height:323.360000pt;}
.h1{height:3174.666667pt;}
.h0{height:3174.880000pt;}
.w6{width:59.360000pt;}
.w3{width:59.520000pt;}
.w4{width:59.680000pt;}
.w7{width:72.000000pt;}
.w5{width:72.160000pt;}
.wc{width:105.440000pt;}
.wb{width:140.160000pt;}
.w8{width:324.480000pt;}
.w9{width:339.360000pt;}
.wd{width:346.240000pt;}
.we{width:371.520000pt;}
.wa{width:668.480000pt;}
.w1{width:2230.000000pt;}
.w2{width:2230.079967pt;}
.w0{width:2230.080000pt;}
.x0{left:0.000000pt;}
.xd{left:5.186667pt;}
.x4d{left:7.266667pt;}
.x13{left:8.160000pt;}
.x48{left:9.373333pt;}
.x47{left:10.973333pt;}
.x56{left:13.026667pt;}
.x46{left:14.333333pt;}
.x3c{left:26.626667pt;}
.x6d{left:29.693333pt;}
.xf{left:33.346667pt;}
.x6b{left:37.440000pt;}
.x18{left:38.586667pt;}
.x15{left:40.640000pt;}
.x6a{left:42.400000pt;}
.x4f{left:51.426667pt;}
.x49{left:56.506667pt;}
.x6c{left:76.986667pt;}
.x70{left:80.800000pt;}
.x3e{left:94.266667pt;}
.x40{left:101.666667pt;}
.x2{left:121.471967pt;}
.x1{left:139.613300pt;}
.x3{left:140.666633pt;}
.x3d{left:142.266667pt;}
.x3f{left:149.666667pt;}
.x6e{left:175.386667pt;}
.x71{left:189.146667pt;}
.x4a{left:275.333333pt;}
.x2d{left:277.213300pt;}
.x59{left:289.626633pt;}
.x5b{left:293.946633pt;}
.x5a{left:294.906633pt;}
.x36{left:305.413300pt;}
.x1f{left:310.013300pt;}
.x37{left:318.426633pt;}
.x2b{left:324.666633pt;}
.xb{left:463.199967pt;}
.x20{left:464.666633pt;}
.x1d{left:481.919967pt;}
.x1e{left:483.359967pt;}
.x1c{left:484.479967pt;}
.x1b{left:485.439967pt;}
.x2a{left:486.906633pt;}
.xc{left:520.960000pt;}
.x21{left:522.400000pt;}
.xe{left:549.826633pt;}
.x22{left:551.106633pt;}
.x10{left:580.320000pt;}
.x23{left:581.760000pt;}
.x11{left:608.773300pt;}
.x24{left:610.079967pt;}
.x12{left:639.840000pt;}
.x25{left:640.960000pt;}
.x2f{left:670.106633pt;}
.x14{left:675.999967pt;}
.x26{left:677.026633pt;}
.x30{left:683.546633pt;}
.x2e{left:688.666633pt;}
.x31{left:695.226633pt;}
.x6{left:701.213300pt;}
.x16{left:711.840000pt;}
.x27{left:712.800000pt;}
.x4{left:743.866633pt;}
.x17{left:745.786633pt;}
.x28{left:746.693300pt;}
.x5c{left:759.546633pt;}
.x5f{left:778.266633pt;}
.x5{left:779.866633pt;}
.x5e{left:780.826633pt;}
.x5d{left:781.946633pt;}
.x19{left:783.840000pt;}
.x29{left:784.800000pt;}
.x1a{left:817.853300pt;}
.x43{left:844.799967pt;}
.x3b{left:936.800000pt;}
.x3a{left:943.866633pt;}
.x39{left:1007.546633pt;}
.x32{left:1126.653300pt;}
.x6f{left:1247.840000pt;}
.x60{left:1249.760000pt;}
.x69{left:1255.520000pt;}
.xa{left:1272.613300pt;}
.x64{left:1273.893300pt;}
.x65{left:1275.333300pt;}
.x63{left:1276.453300pt;}
.x62{left:1277.413300pt;}
.x9{left:1287.426633pt;}
.x34{left:1299.706633pt;}
.x61{left:1320.986633pt;}
.x33{left:1325.626633pt;}
.x35{left:1363.386633pt;}
.x42{left:1377.533300pt;}
.x4b{left:1382.146633pt;}
.x55{left:1395.746633pt;}
.x8{left:1419.933300pt;}
.x45{left:1466.400000pt;}
.x4c{left:1468.800000pt;}
.x57{left:1497.666633pt;}
.x4e{left:1513.026633pt;}
.x58{left:1533.826633pt;}
.x51{left:1623.839967pt;}
.x50{left:1634.399967pt;}
.x38{left:1739.706633pt;}
.x53{left:1767.613300pt;}
.x2c{left:1773.026633pt;}
.x52{left:1786.813300pt;}
.x44{left:1901.826633pt;}
.x66{left:1909.026633pt;}
.x68{left:1913.346633pt;}
.x67{left:1914.306633pt;}
.x41{left:1955.266633pt;}
.x54{left:1976.639967pt;}
.x7{left:2137.946633pt;}
}




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