
    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_654d0c76c57c0bef3b73b3da.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_2d849d52f35d221c5e20f0da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_c5a31cc6c0bdf2c525eeda81.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e0bc9a8e81be641b59de405f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.058594;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_6c13fb0f88c2abc008a09326.woff')format("woff");}.ff5{font-family:ff5;line-height:1.058594;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_9b1be34122a085dc82e05334.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_83b05b7a6014348d4b725938.woff')format("woff");}.ff7{font-family:ff7;line-height:1.070312;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_e78464336eef0b09515e7e66.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-6.588000px;}
.ls21{letter-spacing:-2.691000px;}
.ls20{letter-spacing:-2.415000px;}
.ls7{letter-spacing:-2.268000px;}
.ls26{letter-spacing:-2.208000px;}
.ls9{letter-spacing:-2.016000px;}
.lsb{letter-spacing:-1.848000px;}
.ls14{letter-spacing:-1.794000px;}
.ls1e{letter-spacing:-1.725000px;}
.ls25{letter-spacing:-1.680000px;}
.ls1f{letter-spacing:-1.518000px;}
.ls11{letter-spacing:-0.960000px;}
.ls13{letter-spacing:-0.855000px;}
.lsa{letter-spacing:-0.672000px;}
.ls15{letter-spacing:-0.627000px;}
.ls1a{letter-spacing:-0.570000px;}
.ls10{letter-spacing:-0.405000px;}
.ls5{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.171000px;}
.ls19{letter-spacing:-0.081000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.216000px;}
.ls29{letter-spacing:0.276000px;}
.ls4{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.262700px;}
.ls24{letter-spacing:1.662900px;}
.lsd{letter-spacing:2.400000px;}
.ls1d{letter-spacing:2.484000px;}
.ls12{letter-spacing:2.891100px;}
.ls28{letter-spacing:3.300000px;}
.ls0{letter-spacing:4.200000px;}
.ls2a{letter-spacing:4.347000px;}
.ls1b{letter-spacing:4.774800px;}
.ls17{letter-spacing:5.025000px;}
.ls16{letter-spacing:5.520000px;}
.ls3{letter-spacing:5.820000px;}
.lsc{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsf{letter-spacing:6.300000px;}
.ls22{letter-spacing:6.417000px;}
.lse{letter-spacing:6.675000px;}
.ls27{letter-spacing:7.969500px;}
.ls23{letter-spacing:22.611300px;}
.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;}
}
.wsf{word-spacing:-27.750000px;}
.ws1{word-spacing:-26.892000px;}
.ws19{word-spacing:-26.100000px;}
.ws2b{word-spacing:-24.375000px;}
.ws31{word-spacing:-22.860000px;}
.ws2{word-spacing:-22.740000px;}
.ws11{word-spacing:-22.356000px;}
.ws2c{word-spacing:-22.050000px;}
.ws0{word-spacing:-20.088000px;}
.ws1d{word-spacing:-19.389000px;}
.ws10{word-spacing:-18.102000px;}
.ws30{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.043000px;}
.ws4{word-spacing:-16.860000px;}
.ws2d{word-spacing:-15.561000px;}
.ws1f{word-spacing:-15.525000px;}
.ws1e{word-spacing:-15.318000px;}
.ws16{word-spacing:-15.249000px;}
.ws2a{word-spacing:-14.835000px;}
.ws3{word-spacing:-14.820000px;}
.ws23{word-spacing:-14.628000px;}
.ws2f{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.ws7{word-spacing:-5.820000px;}
.wse{word-spacing:-4.200000px;}
.ws12{word-spacing:-2.400000px;}
.ws8{word-spacing:-1.260000px;}
.ws2e{word-spacing:-0.276000px;}
.ws18{word-spacing:-0.069000px;}
.ws5{word-spacing:0.000000px;}
.ws1b{word-spacing:0.081000px;}
.ws1a{word-spacing:0.171000px;}
.ws9{word-spacing:0.240000px;}
.ws1c{word-spacing:0.570000px;}
.ws17{word-spacing:0.627000px;}
.wsc{word-spacing:0.672000px;}
.ws15{word-spacing:0.855000px;}
.ws13{word-spacing:0.960000px;}
.ws21{word-spacing:1.518000px;}
.ws20{word-spacing:1.725000px;}
.wsd{word-spacing:1.848000px;}
.wsb{word-spacing:2.016000px;}
.wsa{word-spacing:2.268000px;}
.ws22{word-spacing:2.415000px;}
.ws24{word-spacing:2.691000px;}
.ws25{word-spacing:372.288000px;}
.ws26{word-spacing:407.094000px;}
.ws27{word-spacing:445.158000px;}
.ws29{word-spacing:453.294000px;}
.ws28{word-spacing:478.566000px;}
._c{margin-left:-27.069000px;}
._2f{margin-left:-17.169600px;}
._21{margin-left:-12.179400px;}
._d{margin-left:-10.325400px;}
._26{margin-left:-8.487000px;}
._24{margin-left:-7.448100px;}
._8{margin-left:-6.036000px;}
._9{margin-left:-4.776000px;}
._3{margin-left:-3.099000px;}
._5{margin-left:-1.518000px;}
._7{width:1.008000px;}
._1{width:2.400000px;}
._a{width:3.417600px;}
._11{width:4.419600px;}
._4{width:5.526000px;}
._6{width:6.846000px;}
._b{width:8.764800px;}
._10{width:10.000200px;}
._16{width:11.658000px;}
._15{width:12.684000px;}
._1b{width:14.364600px;}
._1f{width:15.537000px;}
._25{width:16.626600px;}
._1d{width:17.664000px;}
._f{width:18.744000px;}
._e{width:20.616000px;}
._2a{width:21.679800px;}
._27{width:23.346000px;}
._1e{width:24.846900px;}
._1c{width:26.369700px;}
._19{width:27.912000px;}
._17{width:28.917000px;}
._22{width:30.372000px;}
._18{width:32.514000px;}
._13{width:48.255600px;}
._28{width:57.214800px;}
._12{width:62.454000px;}
._1a{width:260.610000px;}
._14{width:456.177000px;}
._2c{width:457.335000px;}
._2d{width:458.485800px;}
._2b{width:459.712200px;}
._2e{width:461.469600px;}
._0{width:578.400000px;}
._2{width:956.206200px;}
._20{width:958.831200px;}
._23{width:962.881200px;}
._29{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y106{bottom:105.102900px;}
.y97{bottom:105.770100px;}
.y154{bottom:106.165350px;}
.y165{bottom:106.228200px;}
.y1b3{bottom:106.250850px;}
.yd0{bottom:106.276050px;}
.y78{bottom:106.278600px;}
.y12d{bottom:106.292400px;}
.y1e{bottom:106.294500px;}
.y193{bottom:106.304700px;}
.y18a{bottom:106.310850px;}
.y41{bottom:106.316250px;}
.ya0{bottom:111.601350px;}
.y179{bottom:112.490850px;}
.y53{bottom:112.495350px;}
.y16c{bottom:112.501350px;}
.y118{bottom:112.927350px;}
.y105{bottom:125.768400px;}
.y153{bottom:126.589350px;}
.ycf{bottom:126.976050px;}
.y12c{bottom:127.061400px;}
.y40{bottom:127.154250px;}
.y77{bottom:127.651350px;}
.y192{bottom:127.815450px;}
.y1b2{bottom:128.033100px;}
.yf3{bottom:128.693850px;}
.y1d{bottom:128.704500px;}
.y164{bottom:129.308700px;}
.y189{bottom:130.512600px;}
.y178{bottom:132.742350px;}
.y52{bottom:132.746850px;}
.y117{bottom:133.178850px;}
.y104{bottom:146.433900px;}
.y152{bottom:147.013350px;}
.yce{bottom:147.676050px;}
.y12b{bottom:147.830400px;}
.y3f{bottom:147.992250px;}
.y76{bottom:149.024100px;}
.y1b1{bottom:149.815350px;}
.yf2{bottom:150.808350px;}
.y1c{bottom:151.057500px;}
.y163{bottom:152.389200px;}
.yb0{bottom:152.551350px;}
.y177{bottom:152.993850px;}
.y51{bottom:152.998350px;}
.y116{bottom:153.430350px;}
.y188{bottom:154.714350px;}
.y103{bottom:167.099400px;}
.y151{bottom:167.437350px;}
.ycd{bottom:168.376050px;}
.y12a{bottom:168.599400px;}
.y3e{bottom:168.830250px;}
.y75{bottom:170.396850px;}
.y191{bottom:170.847600px;}
.y1b{bottom:171.967500px;}
.yf1{bottom:172.922850px;}
.y176{bottom:173.245350px;}
.y50{bottom:173.249850px;}
.y115{bottom:173.681850px;}
.y162{bottom:175.469700px;}
.y1b0{bottom:180.102600px;}
.y102{bottom:187.764900px;}
.y150{bottom:187.861350px;}
.ycc{bottom:189.076050px;}
.y129{bottom:189.368400px;}
.y3d{bottom:189.668250px;}
.y74{bottom:191.769600px;}
.y1a{bottom:192.877500px;}
.y175{bottom:193.496850px;}
.y4f{bottom:193.501350px;}
.y114{bottom:193.933350px;}
.yf0{bottom:195.037350px;}
.y161{bottom:198.550200px;}
.y1af{bottom:201.884850px;}
.y96{bottom:202.749900px;}
.y187{bottom:203.129550px;}
.y14f{bottom:208.285350px;}
.y101{bottom:208.430400px;}
.ycb{bottom:209.776050px;}
.y128{bottom:210.137400px;}
.y3c{bottom:210.506250px;}
.y73{bottom:213.142350px;}
.y174{bottom:213.748350px;}
.y19{bottom:213.787500px;}
.y113{bottom:214.184850px;}
.yef{bottom:217.151850px;}
.y160{bottom:221.630700px;}
.y95{bottom:223.191150px;}
.y14e{bottom:228.709350px;}
.y100{bottom:229.095900px;}
.yca{bottom:230.476050px;}
.y127{bottom:230.906400px;}
.y3b{bottom:231.344250px;}
.y1ae{bottom:232.172100px;}
.y173{bottom:233.999850px;}
.y4e{bottom:234.001350px;}
.y112{bottom:234.436350px;}
.y72{bottom:234.515100px;}
.y18{bottom:234.697500px;}
.yee{bottom:239.266350px;}
.y94{bottom:243.632400px;}
.y15f{bottom:244.711200px;}
.y14d{bottom:249.133350px;}
.yff{bottom:249.761400px;}
.yc9{bottom:251.176050px;}
.y126{bottom:251.675400px;}
.y3a{bottom:252.182250px;}
.y1ad{bottom:253.954350px;}
.y172{bottom:254.251350px;}
.y111{bottom:254.687850px;}
.y17{bottom:255.607500px;}
.y71{bottom:255.887850px;}
.yed{bottom:261.380850px;}
.y93{bottom:264.073650px;}
.y15e{bottom:267.791700px;}
.y14c{bottom:269.557350px;}
.yfe{bottom:270.426900px;}
.yc8{bottom:271.876050px;}
.y125{bottom:272.444400px;}
.y39{bottom:273.020250px;}
.y110{bottom:274.939350px;}
.y16{bottom:276.517500px;}
.y70{bottom:277.260600px;}
.yec{bottom:283.495350px;}
.y1ac{bottom:284.241600px;}
.y92{bottom:284.514900px;}
.y14b{bottom:289.981350px;}
.y15d{bottom:290.872200px;}
.yfd{bottom:291.092400px;}
.yc7{bottom:292.576050px;}
.y124{bottom:293.213400px;}
.y38{bottom:293.858250px;}
.y171{bottom:294.751350px;}
.y10f{bottom:295.190850px;}
.y15{bottom:297.427500px;}
.y6f{bottom:298.633350px;}
.y91{bottom:304.956150px;}
.y1e7{bottom:305.184750px;}
.yeb{bottom:305.609850px;}
.y1ce{bottom:305.797350px;}
.y14a{bottom:310.405350px;}
.yfc{bottom:311.757900px;}
.yc6{bottom:313.276050px;}
.y15c{bottom:313.952700px;}
.y123{bottom:313.982400px;}
.y9f{bottom:314.548350px;}
.y37{bottom:314.696250px;}
.y10e{bottom:315.442350px;}
.y14{bottom:318.337500px;}
.y6e{bottom:320.006100px;}
.y90{bottom:325.397400px;}
.y1e6{bottom:325.434750px;}
.y1cd{bottom:326.051850px;}
.yea{bottom:327.724350px;}
.y149{bottom:330.829350px;}
.yfb{bottom:332.423400px;}
.yc5{bottom:333.976050px;}
.y122{bottom:334.751400px;}
.y9e{bottom:334.799850px;}
.y36{bottom:335.534250px;}
.y10d{bottom:335.693850px;}
.y13{bottom:339.247500px;}
.y6d{bottom:341.378850px;}
.y1e5{bottom:345.684750px;}
.y8f{bottom:345.838650px;}
.y1cc{bottom:346.306350px;}
.ye9{bottom:349.838850px;}
.y148{bottom:351.253350px;}
.yfa{bottom:353.088900px;}
.yc4{bottom:354.676050px;}
.y9d{bottom:355.051350px;}
.y121{bottom:355.520400px;}
.y10c{bottom:355.945350px;}
.y35{bottom:356.372250px;}
.y15b{bottom:360.097950px;}
.y12{bottom:360.157500px;}
.y6c{bottom:362.751600px;}
.y1e4{bottom:365.934750px;}
.y8e{bottom:366.279900px;}
.y147{bottom:371.677350px;}
.ye8{bottom:371.953350px;}
.yf9{bottom:373.754400px;}
.y1cb{bottom:375.065850px;}
.yc3{bottom:375.376050px;}
.y10b{bottom:376.196850px;}
.y120{bottom:376.289400px;}
.y34{bottom:377.210250px;}
.y1ab{bottom:380.233350px;}
.y11{bottom:381.067500px;}
.y6b{bottom:384.124350px;}
.y146{bottom:392.101350px;}
.ye7{bottom:394.067850px;}
.yf8{bottom:394.419900px;}
.y1ca{bottom:395.320350px;}
.y9c{bottom:395.551350px;}
.yc2{bottom:396.076050px;}
.y10a{bottom:396.448350px;}
.y11f{bottom:397.058400px;}
.y33{bottom:398.048250px;}
.y1aa{bottom:402.002850px;}
.y6a{bottom:405.497100px;}
.y1e3{bottom:406.434750px;}
.y8d{bottom:407.989350px;}
.y145{bottom:412.525350px;}
.y10{bottom:414.727500px;}
.yf7{bottom:415.085400px;}
.y1c9{bottom:415.574850px;}
.ye6{bottom:416.182350px;}
.y109{bottom:416.699850px;}
.y11e{bottom:417.827400px;}
.y32{bottom:418.886250px;}
.y1a9{bottom:423.772350px;}
.y1e2{bottom:426.684750px;}
.y69{bottom:426.869850px;}
.y144{bottom:432.949350px;}
.yf6{bottom:435.750900px;}
.yaf{bottom:436.481850px;}
.y16b{bottom:436.945350px;}
.y108{bottom:436.951350px;}
.yc1{bottom:438.047400px;}
.ye5{bottom:438.296850px;}
.y31{bottom:439.724250px;}
.y1c8{bottom:444.334350px;}
.y1a8{bottom:445.541850px;}
.y1e1{bottom:446.934750px;}
.y68{bottom:448.242600px;}
.y143{bottom:453.373350px;}
.yf5{bottom:456.416400px;}
.yae{bottom:456.733350px;}
.y16a{bottom:457.196850px;}
.y11d{bottom:459.364500px;}
.ye4{bottom:460.411350px;}
.y30{bottom:460.562250px;}
.yc0{bottom:462.489150px;}
.y1c7{bottom:464.588850px;}
.y1e0{bottom:467.184750px;}
.y1a7{bottom:467.311350px;}
.y67{bottom:469.615350px;}
.y8c{bottom:470.613150px;}
.y142{bottom:473.797350px;}
.yf{bottom:473.884650px;}
.yad{bottom:476.984850px;}
.y169{bottom:477.448350px;}
.y107{bottom:477.451350px;}
.ye3{bottom:482.525850px;}
.y1c6{bottom:484.843350px;}
.ybf{bottom:486.930900px;}
.y1a6{bottom:489.080850px;}
.y66{bottom:490.988100px;}
.y8b{bottom:491.054400px;}
.y141{bottom:494.221350px;}
.yac{bottom:497.236350px;}
.y168{bottom:497.699850px;}
.yf4{bottom:497.731800px;}
.y1df{bottom:500.184750px;}
.ye{bottom:502.297650px;}
.y2f{bottom:502.661100px;}
.ye2{bottom:504.640350px;}
.y1c5{bottom:505.097850px;}
.y1a5{bottom:510.850350px;}
.y8a{bottom:511.495650px;}
.y65{bottom:512.360850px;}
.y140{bottom:514.645350px;}
.y190{bottom:515.092650px;}
.yab{bottom:517.487850px;}
.y167{bottom:517.951350px;}
.y1c4{bottom:525.352350px;}
.ye1{bottom:526.754850px;}
.yd{bottom:530.710650px;}
.y89{bottom:531.936900px;}
.y1a4{bottom:532.619850px;}
.y64{bottom:533.733600px;}
.y13f{bottom:535.069350px;}
.y18f{bottom:536.603400px;}
.yaa{bottom:537.739350px;}
.y1de{bottom:541.689750px;}
.y1c3{bottom:545.606850px;}
.ye0{bottom:548.869350px;}
.ybe{bottom:549.637050px;}
.y88{bottom:552.378150px;}
.y1a3{bottom:554.389350px;}
.y186{bottom:554.491350px;}
.y63{bottom:555.106350px;}
.y13e{bottom:555.493350px;}
.ya9{bottom:557.990850px;}
.y18e{bottom:558.114150px;}
.y166{bottom:558.451350px;}
.y1dd{bottom:561.189750px;}
.y1c2{bottom:565.861350px;}
.ybd{bottom:570.337050px;}
.ydf{bottom:570.983850px;}
.y87{bottom:572.819400px;}
.y13d{bottom:575.917350px;}
.y1a2{bottom:576.158850px;}
.y62{bottom:576.479100px;}
.ya8{bottom:578.242350px;}
.y185{bottom:578.693100px;}
.y18d{bottom:579.624900px;}
.yc{bottom:580.344300px;}
.y1dc{bottom:580.689750px;}
.ybc{bottom:591.037050px;}
.yde{bottom:593.098350px;}
.y86{bottom:593.260650px;}
.y1c1{bottom:594.620850px;}
.y13c{bottom:596.341350px;}
.y61{bottom:597.851850px;}
.y1a1{bottom:597.928350px;}
.ya7{bottom:598.493850px;}
.y1db{bottom:600.189750px;}
.y184{bottom:602.894850px;}
.y2e{bottom:607.199850px;}
.ybb{bottom:611.737050px;}
.yb{bottom:613.257300px;}
.y85{bottom:613.701900px;}
.y1c0{bottom:614.875350px;}
.ydd{bottom:615.212850px;}
.y13b{bottom:616.765350px;}
.ya6{bottom:618.745350px;}
.y170{bottom:619.180350px;}
.y60{bottom:619.224600px;}
.y1da{bottom:619.689750px;}
.y1a0{bottom:619.697850px;}
.y18c{bottom:622.657200px;}
.y183{bottom:627.096600px;}
.y2d{bottom:628.784850px;}
.yba{bottom:632.437050px;}
.y84{bottom:634.143150px;}
.y1bf{bottom:635.129850px;}
.y13a{bottom:637.189350px;}
.ydc{bottom:637.327350px;}
.ya5{bottom:638.996850px;}
.y9b{bottom:638.998350px;}
.y1d9{bottom:639.189750px;}
.y16f{bottom:639.431850px;}
.y5f{bottom:640.597350px;}
.y19f{bottom:641.467350px;}
.y18b{bottom:644.173350px;}
.ya{bottom:646.170300px;}
.y2c{bottom:650.412750px;}
.y182{bottom:651.298350px;}
.yb9{bottom:653.137050px;}
.y83{bottom:654.584400px;}
.y1be{bottom:655.384350px;}
.y139{bottom:657.613350px;}
.y1d8{bottom:658.689750px;}
.ya4{bottom:659.248350px;}
.y9a{bottom:659.249850px;}
.ydb{bottom:659.441850px;}
.y16e{bottom:659.683350px;}
.y5e{bottom:661.970100px;}
.y19e{bottom:663.236850px;}
.y2b{bottom:670.497750px;}
.yb8{bottom:673.837050px;}
.y82{bottom:675.025650px;}
.y181{bottom:675.500100px;}
.y1bd{bottom:675.638850px;}
.y138{bottom:678.037350px;}
.y1d7{bottom:678.189750px;}
.y9{bottom:679.083300px;}
.ya3{bottom:679.499850px;}
.y99{bottom:679.501350px;}
.y16d{bottom:679.934850px;}
.yda{bottom:681.556350px;}
.y5d{bottom:683.342850px;}
.y19d{bottom:685.006350px;}
.y2a{bottom:690.582750px;}
.y81{bottom:695.466900px;}
.y1bc{bottom:695.893350px;}
.y1d6{bottom:697.689750px;}
.y137{bottom:698.461350px;}
.ya2{bottom:699.751350px;}
.y4d{bottom:700.186350px;}
.yd9{bottom:703.670850px;}
.y5c{bottom:704.715600px;}
.y19c{bottom:706.775850px;}
.y29{bottom:710.667750px;}
.y8{bottom:711.996300px;}
.yb7{bottom:715.795200px;}
.y80{bottom:715.908150px;}
.y1bb{bottom:716.147850px;}
.y1d5{bottom:717.189750px;}
.y136{bottom:718.885350px;}
.y98{bottom:720.001350px;}
.y4c{bottom:720.437850px;}
.y180{bottom:723.915300px;}
.yd8{bottom:725.785350px;}
.y5b{bottom:726.088350px;}
.y19b{bottom:728.545350px;}
.y28{bottom:730.752750px;}
.y7f{bottom:736.349400px;}
.y1d4{bottom:736.689750px;}
.y135{bottom:739.309350px;}
.ya1{bottom:740.251350px;}
.y4b{bottom:740.689350px;}
.y1ba{bottom:744.907350px;}
.y5a{bottom:747.461100px;}
.yd7{bottom:747.899850px;}
.y19a{bottom:750.314850px;}
.y27{bottom:750.837750px;}
.y17f{bottom:754.526850px;}
.y1d3{bottom:756.189750px;}
.y7e{bottom:756.790650px;}
.y134{bottom:759.733350px;}
.y4a{bottom:760.940850px;}
.y15a{bottom:764.218350px;}
.y1b9{bottom:765.161850px;}
.y59{bottom:768.833850px;}
.yd6{bottom:770.014350px;}
.y26{bottom:770.922750px;}
.y199{bottom:772.084350px;}
.y7{bottom:774.643800px;}
.y7d{bottom:777.231900px;}
.y17e{bottom:777.251850px;}
.yb6{bottom:778.501350px;}
.y133{bottom:780.157350px;}
.y49{bottom:781.192350px;}
.y159{bottom:787.298850px;}
.y1d2{bottom:788.439750px;}
.y58{bottom:790.206600px;}
.y25{bottom:791.007750px;}
.yd5{bottom:792.128850px;}
.y198{bottom:793.853850px;}
.y1b8{bottom:793.921350px;}
.y7c{bottom:797.673150px;}
.yb5{bottom:799.201350px;}
.y17d{bottom:799.976850px;}
.y132{bottom:800.581350px;}
.y48{bottom:801.443850px;}
.y6{bottom:805.558800px;}
.y158{bottom:810.379350px;}
.y24{bottom:811.092750px;}
.y57{bottom:811.579350px;}
.y1b7{bottom:814.175850px;}
.yd4{bottom:814.243350px;}
.y197{bottom:815.623350px;}
.y7b{bottom:818.114400px;}
.y11c{bottom:819.625350px;}
.yb4{bottom:819.901350px;}
.y131{bottom:821.005350px;}
.y47{bottom:821.695350px;}
.y17c{bottom:822.701850px;}
.y5{bottom:827.968800px;}
.y23{bottom:831.177750px;}
.y56{bottom:832.952100px;}
.y157{bottom:833.459850px;}
.y1b6{bottom:834.430350px;}
.yd3{bottom:836.357850px;}
.y196{bottom:837.392850px;}
.y7a{bottom:838.555650px;}
.y11b{bottom:840.394350px;}
.yb3{bottom:840.601350px;}
.y130{bottom:841.429350px;}
.y46{bottom:841.946850px;}
.y17b{bottom:845.426850px;}
.y1d1{bottom:846.195450px;}
.y22{bottom:851.262750px;}
.y156{bottom:856.540350px;}
.yd2{bottom:858.472350px;}
.y4{bottom:858.883800px;}
.y79{bottom:858.996900px;}
.y195{bottom:859.162350px;}
.y11a{bottom:861.163350px;}
.yb2{bottom:861.301350px;}
.y12f{bottom:861.853350px;}
.y45{bottom:862.198350px;}
.y1b5{bottom:863.189850px;}
.y21{bottom:871.347750px;}
.y1d0{bottom:873.201450px;}
.y55{bottom:875.575950px;}
.y17a{bottom:878.499600px;}
.y155{bottom:879.620850px;}
.yd1{bottom:880.586850px;}
.y194{bottom:880.931850px;}
.y3{bottom:881.293800px;}
.y119{bottom:881.932350px;}
.yb1{bottom:882.001350px;}
.y12e{bottom:882.277350px;}
.y44{bottom:882.449850px;}
.y1b4{bottom:883.444350px;}
.y1cf{bottom:900.207450px;}
.y54{bottom:900.706200px;}
.y43{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y42{bottom:966.189000px;}
.hc{height:39.703125px;}
.hf{height:43.466309px;}
.h8{height:45.375000px;}
.he{height:47.605957px;}
.hb{height:49.511719px;}
.hd{height:50.068359px;}
.h7{height:51.884766px;}
.h4{height:56.718750px;}
.h3{height:59.554688px;}
.ha{height:65.226562px;}
.h2{height:70.898438px;}
.h6{height:72.638672px;}
.h9{height:76.570312px;}
.h5{height:93.392578px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.929800px;}
.x4{left:82.214250px;}
.x5{left:83.775600px;}
.x1{left:85.039350px;}
.x8{left:103.733250px;}
.x3{left:105.960600px;}
.xb{left:130.142250px;}
.x6{left:212.663850px;}
.x9{left:231.311250px;}
.x2{left:233.415450px;}
.xa{left:237.969000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-5.856000pt;}
.ls21{letter-spacing:-2.392000pt;}
.ls20{letter-spacing:-2.146667pt;}
.ls7{letter-spacing:-2.016000pt;}
.ls26{letter-spacing:-1.962667pt;}
.ls9{letter-spacing:-1.792000pt;}
.lsb{letter-spacing:-1.642667pt;}
.ls14{letter-spacing:-1.594667pt;}
.ls1e{letter-spacing:-1.533333pt;}
.ls25{letter-spacing:-1.493333pt;}
.ls1f{letter-spacing:-1.349333pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls13{letter-spacing:-0.760000pt;}
.lsa{letter-spacing:-0.597333pt;}
.ls15{letter-spacing:-0.557333pt;}
.ls1a{letter-spacing:-0.506667pt;}
.ls10{letter-spacing:-0.360000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.152000pt;}
.ls19{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls29{letter-spacing:0.245333pt;}
.ls4{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.122400pt;}
.ls24{letter-spacing:1.478133pt;}
.lsd{letter-spacing:2.133333pt;}
.ls1d{letter-spacing:2.208000pt;}
.ls12{letter-spacing:2.569867pt;}
.ls28{letter-spacing:2.933333pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2a{letter-spacing:3.864000pt;}
.ls1b{letter-spacing:4.244267pt;}
.ls17{letter-spacing:4.466667pt;}
.ls16{letter-spacing:4.906667pt;}
.ls3{letter-spacing:5.173333pt;}
.lsc{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsf{letter-spacing:5.600000pt;}
.ls22{letter-spacing:5.704000pt;}
.lse{letter-spacing:5.933333pt;}
.ls27{letter-spacing:7.084000pt;}
.ls23{letter-spacing:20.098933pt;}
.wsf{word-spacing:-24.666667pt;}
.ws1{word-spacing:-23.904000pt;}
.ws19{word-spacing:-23.200000pt;}
.ws2b{word-spacing:-21.666667pt;}
.ws31{word-spacing:-20.320000pt;}
.ws2{word-spacing:-20.213333pt;}
.ws11{word-spacing:-19.872000pt;}
.ws2c{word-spacing:-19.600000pt;}
.ws0{word-spacing:-17.856000pt;}
.ws1d{word-spacing:-17.234667pt;}
.ws10{word-spacing:-16.090667pt;}
.ws30{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.149333pt;}
.ws4{word-spacing:-14.986667pt;}
.ws2d{word-spacing:-13.832000pt;}
.ws1f{word-spacing:-13.800000pt;}
.ws1e{word-spacing:-13.616000pt;}
.ws16{word-spacing:-13.554667pt;}
.ws2a{word-spacing:-13.186667pt;}
.ws3{word-spacing:-13.173333pt;}
.ws23{word-spacing:-13.002667pt;}
.ws2f{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws7{word-spacing:-5.173333pt;}
.wse{word-spacing:-3.733333pt;}
.ws12{word-spacing:-2.133333pt;}
.ws8{word-spacing:-1.120000pt;}
.ws2e{word-spacing:-0.245333pt;}
.ws18{word-spacing:-0.061333pt;}
.ws5{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.072000pt;}
.ws1a{word-spacing:0.152000pt;}
.ws9{word-spacing:0.213333pt;}
.ws1c{word-spacing:0.506667pt;}
.ws17{word-spacing:0.557333pt;}
.wsc{word-spacing:0.597333pt;}
.ws15{word-spacing:0.760000pt;}
.ws13{word-spacing:0.853333pt;}
.ws21{word-spacing:1.349333pt;}
.ws20{word-spacing:1.533333pt;}
.wsd{word-spacing:1.642667pt;}
.wsb{word-spacing:1.792000pt;}
.wsa{word-spacing:2.016000pt;}
.ws22{word-spacing:2.146667pt;}
.ws24{word-spacing:2.392000pt;}
.ws25{word-spacing:330.922667pt;}
.ws26{word-spacing:361.861333pt;}
.ws27{word-spacing:395.696000pt;}
.ws29{word-spacing:402.928000pt;}
.ws28{word-spacing:425.392000pt;}
._c{margin-left:-24.061333pt;}
._2f{margin-left:-15.261867pt;}
._21{margin-left:-10.826133pt;}
._d{margin-left:-9.178133pt;}
._26{margin-left:-7.544000pt;}
._24{margin-left:-6.620533pt;}
._8{margin-left:-5.365333pt;}
._9{margin-left:-4.245333pt;}
._3{margin-left:-2.754667pt;}
._5{margin-left:-1.349333pt;}
._7{width:0.896000pt;}
._1{width:2.133333pt;}
._a{width:3.037867pt;}
._11{width:3.928533pt;}
._4{width:4.912000pt;}
._6{width:6.085333pt;}
._b{width:7.790933pt;}
._10{width:8.889067pt;}
._16{width:10.362667pt;}
._15{width:11.274667pt;}
._1b{width:12.768533pt;}
._1f{width:13.810667pt;}
._25{width:14.779200pt;}
._1d{width:15.701333pt;}
._f{width:16.661333pt;}
._e{width:18.325333pt;}
._2a{width:19.270933pt;}
._27{width:20.752000pt;}
._1e{width:22.086133pt;}
._1c{width:23.439733pt;}
._19{width:24.810667pt;}
._17{width:25.704000pt;}
._22{width:26.997333pt;}
._18{width:28.901333pt;}
._13{width:42.893867pt;}
._28{width:50.857600pt;}
._12{width:55.514667pt;}
._1a{width:231.653333pt;}
._14{width:405.490667pt;}
._2c{width:406.520000pt;}
._2d{width:407.542933pt;}
._2b{width:408.633067pt;}
._2e{width:410.195200pt;}
._0{width:514.133333pt;}
._2{width:849.961067pt;}
._20{width:852.294400pt;}
._23{width:855.894400pt;}
._29{width:857.654400pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y106{bottom:93.424800pt;}
.y97{bottom:94.017867pt;}
.y154{bottom:94.369200pt;}
.y165{bottom:94.425067pt;}
.y1b3{bottom:94.445200pt;}
.yd0{bottom:94.467600pt;}
.y78{bottom:94.469867pt;}
.y12d{bottom:94.482133pt;}
.y1e{bottom:94.484000pt;}
.y193{bottom:94.493067pt;}
.y18a{bottom:94.498533pt;}
.y41{bottom:94.503333pt;}
.ya0{bottom:99.201200pt;}
.y179{bottom:99.991867pt;}
.y53{bottom:99.995867pt;}
.y16c{bottom:100.001200pt;}
.y118{bottom:100.379867pt;}
.y105{bottom:111.794133pt;}
.y153{bottom:112.523867pt;}
.ycf{bottom:112.867600pt;}
.y12c{bottom:112.943467pt;}
.y40{bottom:113.026000pt;}
.y77{bottom:113.467867pt;}
.y192{bottom:113.613733pt;}
.y1b2{bottom:113.807200pt;}
.yf3{bottom:114.394533pt;}
.y1d{bottom:114.404000pt;}
.y164{bottom:114.941067pt;}
.y189{bottom:116.011200pt;}
.y178{bottom:117.993200pt;}
.y52{bottom:117.997200pt;}
.y117{bottom:118.381200pt;}
.y104{bottom:130.163467pt;}
.y152{bottom:130.678533pt;}
.yce{bottom:131.267600pt;}
.y12b{bottom:131.404800pt;}
.y3f{bottom:131.548667pt;}
.y76{bottom:132.465867pt;}
.y1b1{bottom:133.169200pt;}
.yf2{bottom:134.051867pt;}
.y1c{bottom:134.273333pt;}
.y163{bottom:135.457067pt;}
.yb0{bottom:135.601200pt;}
.y177{bottom:135.994533pt;}
.y51{bottom:135.998533pt;}
.y116{bottom:136.382533pt;}
.y188{bottom:137.523867pt;}
.y103{bottom:148.532800pt;}
.y151{bottom:148.833200pt;}
.ycd{bottom:149.667600pt;}
.y12a{bottom:149.866133pt;}
.y3e{bottom:150.071333pt;}
.y75{bottom:151.463867pt;}
.y191{bottom:151.864533pt;}
.y1b{bottom:152.860000pt;}
.yf1{bottom:153.709200pt;}
.y176{bottom:153.995867pt;}
.y50{bottom:153.999867pt;}
.y115{bottom:154.383867pt;}
.y162{bottom:155.973067pt;}
.y1b0{bottom:160.091200pt;}
.y102{bottom:166.902133pt;}
.y150{bottom:166.987867pt;}
.ycc{bottom:168.067600pt;}
.y129{bottom:168.327467pt;}
.y3d{bottom:168.594000pt;}
.y74{bottom:170.461867pt;}
.y1a{bottom:171.446667pt;}
.y175{bottom:171.997200pt;}
.y4f{bottom:172.001200pt;}
.y114{bottom:172.385200pt;}
.yf0{bottom:173.366533pt;}
.y161{bottom:176.489067pt;}
.y1af{bottom:179.453200pt;}
.y96{bottom:180.222133pt;}
.y187{bottom:180.559600pt;}
.y14f{bottom:185.142533pt;}
.y101{bottom:185.271467pt;}
.ycb{bottom:186.467600pt;}
.y128{bottom:186.788800pt;}
.y3c{bottom:187.116667pt;}
.y73{bottom:189.459867pt;}
.y174{bottom:189.998533pt;}
.y19{bottom:190.033333pt;}
.y113{bottom:190.386533pt;}
.yef{bottom:193.023867pt;}
.y160{bottom:197.005067pt;}
.y95{bottom:198.392133pt;}
.y14e{bottom:203.297200pt;}
.y100{bottom:203.640800pt;}
.yca{bottom:204.867600pt;}
.y127{bottom:205.250133pt;}
.y3b{bottom:205.639333pt;}
.y1ae{bottom:206.375200pt;}
.y173{bottom:207.999867pt;}
.y4e{bottom:208.001200pt;}
.y112{bottom:208.387867pt;}
.y72{bottom:208.457867pt;}
.y18{bottom:208.620000pt;}
.yee{bottom:212.681200pt;}
.y94{bottom:216.562133pt;}
.y15f{bottom:217.521067pt;}
.y14d{bottom:221.451867pt;}
.yff{bottom:222.010133pt;}
.yc9{bottom:223.267600pt;}
.y126{bottom:223.711467pt;}
.y3a{bottom:224.162000pt;}
.y1ad{bottom:225.737200pt;}
.y172{bottom:226.001200pt;}
.y111{bottom:226.389200pt;}
.y17{bottom:227.206667pt;}
.y71{bottom:227.455867pt;}
.yed{bottom:232.338533pt;}
.y93{bottom:234.732133pt;}
.y15e{bottom:238.037067pt;}
.y14c{bottom:239.606533pt;}
.yfe{bottom:240.379467pt;}
.yc8{bottom:241.667600pt;}
.y125{bottom:242.172800pt;}
.y39{bottom:242.684667pt;}
.y110{bottom:244.390533pt;}
.y16{bottom:245.793333pt;}
.y70{bottom:246.453867pt;}
.yec{bottom:251.995867pt;}
.y1ac{bottom:252.659200pt;}
.y92{bottom:252.902133pt;}
.y14b{bottom:257.761200pt;}
.y15d{bottom:258.553067pt;}
.yfd{bottom:258.748800pt;}
.yc7{bottom:260.067600pt;}
.y124{bottom:260.634133pt;}
.y38{bottom:261.207333pt;}
.y171{bottom:262.001200pt;}
.y10f{bottom:262.391867pt;}
.y15{bottom:264.380000pt;}
.y6f{bottom:265.451867pt;}
.y91{bottom:271.072133pt;}
.y1e7{bottom:271.275333pt;}
.yeb{bottom:271.653200pt;}
.y1ce{bottom:271.819867pt;}
.y14a{bottom:275.915867pt;}
.yfc{bottom:277.118133pt;}
.yc6{bottom:278.467600pt;}
.y15c{bottom:279.069067pt;}
.y123{bottom:279.095467pt;}
.y9f{bottom:279.598533pt;}
.y37{bottom:279.730000pt;}
.y10e{bottom:280.393200pt;}
.y14{bottom:282.966667pt;}
.y6e{bottom:284.449867pt;}
.y90{bottom:289.242133pt;}
.y1e6{bottom:289.275333pt;}
.y1cd{bottom:289.823867pt;}
.yea{bottom:291.310533pt;}
.y149{bottom:294.070533pt;}
.yfb{bottom:295.487467pt;}
.yc5{bottom:296.867600pt;}
.y122{bottom:297.556800pt;}
.y9e{bottom:297.599867pt;}
.y36{bottom:298.252667pt;}
.y10d{bottom:298.394533pt;}
.y13{bottom:301.553333pt;}
.y6d{bottom:303.447867pt;}
.y1e5{bottom:307.275333pt;}
.y8f{bottom:307.412133pt;}
.y1cc{bottom:307.827867pt;}
.ye9{bottom:310.967867pt;}
.y148{bottom:312.225200pt;}
.yfa{bottom:313.856800pt;}
.yc4{bottom:315.267600pt;}
.y9d{bottom:315.601200pt;}
.y121{bottom:316.018133pt;}
.y10c{bottom:316.395867pt;}
.y35{bottom:316.775333pt;}
.y15b{bottom:320.087067pt;}
.y12{bottom:320.140000pt;}
.y6c{bottom:322.445867pt;}
.y1e4{bottom:325.275333pt;}
.y8e{bottom:325.582133pt;}
.y147{bottom:330.379867pt;}
.ye8{bottom:330.625200pt;}
.yf9{bottom:332.226133pt;}
.y1cb{bottom:333.391867pt;}
.yc3{bottom:333.667600pt;}
.y10b{bottom:334.397200pt;}
.y120{bottom:334.479467pt;}
.y34{bottom:335.298000pt;}
.y1ab{bottom:337.985200pt;}
.y11{bottom:338.726667pt;}
.y6b{bottom:341.443867pt;}
.y146{bottom:348.534533pt;}
.ye7{bottom:350.282533pt;}
.yf8{bottom:350.595467pt;}
.y1ca{bottom:351.395867pt;}
.y9c{bottom:351.601200pt;}
.yc2{bottom:352.067600pt;}
.y10a{bottom:352.398533pt;}
.y11f{bottom:352.940800pt;}
.y33{bottom:353.820667pt;}
.y1aa{bottom:357.335867pt;}
.y6a{bottom:360.441867pt;}
.y1e3{bottom:361.275333pt;}
.y8d{bottom:362.657200pt;}
.y145{bottom:366.689200pt;}
.y10{bottom:368.646667pt;}
.yf7{bottom:368.964800pt;}
.y1c9{bottom:369.399867pt;}
.ye6{bottom:369.939867pt;}
.y109{bottom:370.399867pt;}
.y11e{bottom:371.402133pt;}
.y32{bottom:372.343333pt;}
.y1a9{bottom:376.686533pt;}
.y1e2{bottom:379.275333pt;}
.y69{bottom:379.439867pt;}
.y144{bottom:384.843867pt;}
.yf6{bottom:387.334133pt;}
.yaf{bottom:387.983867pt;}
.y16b{bottom:388.395867pt;}
.y108{bottom:388.401200pt;}
.yc1{bottom:389.375467pt;}
.ye5{bottom:389.597200pt;}
.y31{bottom:390.866000pt;}
.y1c8{bottom:394.963867pt;}
.y1a8{bottom:396.037200pt;}
.y1e1{bottom:397.275333pt;}
.y68{bottom:398.437867pt;}
.y143{bottom:402.998533pt;}
.yf5{bottom:405.703467pt;}
.yae{bottom:405.985200pt;}
.y16a{bottom:406.397200pt;}
.y11d{bottom:408.324000pt;}
.ye4{bottom:409.254533pt;}
.y30{bottom:409.388667pt;}
.yc0{bottom:411.101467pt;}
.y1c7{bottom:412.967867pt;}
.y1e0{bottom:415.275333pt;}
.y1a7{bottom:415.387867pt;}
.y67{bottom:417.435867pt;}
.y8c{bottom:418.322800pt;}
.y142{bottom:421.153200pt;}
.yf{bottom:421.230800pt;}
.yad{bottom:423.986533pt;}
.y169{bottom:424.398533pt;}
.y107{bottom:424.401200pt;}
.ye3{bottom:428.911867pt;}
.y1c6{bottom:430.971867pt;}
.ybf{bottom:432.827467pt;}
.y1a6{bottom:434.738533pt;}
.y66{bottom:436.433867pt;}
.y8b{bottom:436.492800pt;}
.y141{bottom:439.307867pt;}
.yac{bottom:441.987867pt;}
.y168{bottom:442.399867pt;}
.yf4{bottom:442.428267pt;}
.y1df{bottom:444.608667pt;}
.ye{bottom:446.486800pt;}
.y2f{bottom:446.809867pt;}
.ye2{bottom:448.569200pt;}
.y1c5{bottom:448.975867pt;}
.y1a5{bottom:454.089200pt;}
.y8a{bottom:454.662800pt;}
.y65{bottom:455.431867pt;}
.y140{bottom:457.462533pt;}
.y190{bottom:457.860133pt;}
.yab{bottom:459.989200pt;}
.y167{bottom:460.401200pt;}
.y1c4{bottom:466.979867pt;}
.ye1{bottom:468.226533pt;}
.yd{bottom:471.742800pt;}
.y89{bottom:472.832800pt;}
.y1a4{bottom:473.439867pt;}
.y64{bottom:474.429867pt;}
.y13f{bottom:475.617200pt;}
.y18f{bottom:476.980800pt;}
.yaa{bottom:477.990533pt;}
.y1de{bottom:481.502000pt;}
.y1c3{bottom:484.983867pt;}
.ye0{bottom:487.883867pt;}
.ybe{bottom:488.566267pt;}
.y88{bottom:491.002800pt;}
.y1a3{bottom:492.790533pt;}
.y186{bottom:492.881200pt;}
.y63{bottom:493.427867pt;}
.y13e{bottom:493.771867pt;}
.ya9{bottom:495.991867pt;}
.y18e{bottom:496.101467pt;}
.y166{bottom:496.401200pt;}
.y1dd{bottom:498.835333pt;}
.y1c2{bottom:502.987867pt;}
.ybd{bottom:506.966267pt;}
.ydf{bottom:507.541200pt;}
.y87{bottom:509.172800pt;}
.y13d{bottom:511.926533pt;}
.y1a2{bottom:512.141200pt;}
.y62{bottom:512.425867pt;}
.ya8{bottom:513.993200pt;}
.y185{bottom:514.393867pt;}
.y18d{bottom:515.222133pt;}
.yc{bottom:515.861600pt;}
.y1dc{bottom:516.168667pt;}
.ybc{bottom:525.366267pt;}
.yde{bottom:527.198533pt;}
.y86{bottom:527.342800pt;}
.y1c1{bottom:528.551867pt;}
.y13c{bottom:530.081200pt;}
.y61{bottom:531.423867pt;}
.y1a1{bottom:531.491867pt;}
.ya7{bottom:531.994533pt;}
.y1db{bottom:533.502000pt;}
.y184{bottom:535.906533pt;}
.y2e{bottom:539.733200pt;}
.ybb{bottom:543.766267pt;}
.yb{bottom:545.117600pt;}
.y85{bottom:545.512800pt;}
.y1c0{bottom:546.555867pt;}
.ydd{bottom:546.855867pt;}
.y13b{bottom:548.235867pt;}
.ya6{bottom:549.995867pt;}
.y170{bottom:550.382533pt;}
.y60{bottom:550.421867pt;}
.y1da{bottom:550.835333pt;}
.y1a0{bottom:550.842533pt;}
.y18c{bottom:553.473067pt;}
.y183{bottom:557.419200pt;}
.y2d{bottom:558.919867pt;}
.yba{bottom:562.166267pt;}
.y84{bottom:563.682800pt;}
.y1bf{bottom:564.559867pt;}
.y13a{bottom:566.390533pt;}
.ydc{bottom:566.513200pt;}
.ya5{bottom:567.997200pt;}
.y9b{bottom:567.998533pt;}
.y1d9{bottom:568.168667pt;}
.y16f{bottom:568.383867pt;}
.y5f{bottom:569.419867pt;}
.y19f{bottom:570.193200pt;}
.y18b{bottom:572.598533pt;}
.ya{bottom:574.373600pt;}
.y2c{bottom:578.144667pt;}
.y182{bottom:578.931867pt;}
.yb9{bottom:580.566267pt;}
.y83{bottom:581.852800pt;}
.y1be{bottom:582.563867pt;}
.y139{bottom:584.545200pt;}
.y1d8{bottom:585.502000pt;}
.ya4{bottom:585.998533pt;}
.y9a{bottom:585.999867pt;}
.ydb{bottom:586.170533pt;}
.y16e{bottom:586.385200pt;}
.y5e{bottom:588.417867pt;}
.y19e{bottom:589.543867pt;}
.y2b{bottom:595.998000pt;}
.yb8{bottom:598.966267pt;}
.y82{bottom:600.022800pt;}
.y181{bottom:600.444533pt;}
.y1bd{bottom:600.567867pt;}
.y138{bottom:602.699867pt;}
.y1d7{bottom:602.835333pt;}
.y9{bottom:603.629600pt;}
.ya3{bottom:603.999867pt;}
.y99{bottom:604.001200pt;}
.y16d{bottom:604.386533pt;}
.yda{bottom:605.827867pt;}
.y5d{bottom:607.415867pt;}
.y19d{bottom:608.894533pt;}
.y2a{bottom:613.851333pt;}
.y81{bottom:618.192800pt;}
.y1bc{bottom:618.571867pt;}
.y1d6{bottom:620.168667pt;}
.y137{bottom:620.854533pt;}
.ya2{bottom:622.001200pt;}
.y4d{bottom:622.387867pt;}
.yd9{bottom:625.485200pt;}
.y5c{bottom:626.413867pt;}
.y19c{bottom:628.245200pt;}
.y29{bottom:631.704667pt;}
.y8{bottom:632.885600pt;}
.yb7{bottom:636.262400pt;}
.y80{bottom:636.362800pt;}
.y1bb{bottom:636.575867pt;}
.y1d5{bottom:637.502000pt;}
.y136{bottom:639.009200pt;}
.y98{bottom:640.001200pt;}
.y4c{bottom:640.389200pt;}
.y180{bottom:643.480267pt;}
.yd8{bottom:645.142533pt;}
.y5b{bottom:645.411867pt;}
.y19b{bottom:647.595867pt;}
.y28{bottom:649.558000pt;}
.y7f{bottom:654.532800pt;}
.y1d4{bottom:654.835333pt;}
.y135{bottom:657.163867pt;}
.ya1{bottom:658.001200pt;}
.y4b{bottom:658.390533pt;}
.y1ba{bottom:662.139867pt;}
.y5a{bottom:664.409867pt;}
.yd7{bottom:664.799867pt;}
.y19a{bottom:666.946533pt;}
.y27{bottom:667.411333pt;}
.y17f{bottom:670.690533pt;}
.y1d3{bottom:672.168667pt;}
.y7e{bottom:672.702800pt;}
.y134{bottom:675.318533pt;}
.y4a{bottom:676.391867pt;}
.y15a{bottom:679.305200pt;}
.y1b9{bottom:680.143867pt;}
.y59{bottom:683.407867pt;}
.yd6{bottom:684.457200pt;}
.y26{bottom:685.264667pt;}
.y199{bottom:686.297200pt;}
.y7{bottom:688.572267pt;}
.y7d{bottom:690.872800pt;}
.y17e{bottom:690.890533pt;}
.yb6{bottom:692.001200pt;}
.y133{bottom:693.473200pt;}
.y49{bottom:694.393200pt;}
.y159{bottom:699.821200pt;}
.y1d2{bottom:700.835333pt;}
.y58{bottom:702.405867pt;}
.y25{bottom:703.118000pt;}
.yd5{bottom:704.114533pt;}
.y198{bottom:705.647867pt;}
.y1b8{bottom:705.707867pt;}
.y7c{bottom:709.042800pt;}
.yb5{bottom:710.401200pt;}
.y17d{bottom:711.090533pt;}
.y132{bottom:711.627867pt;}
.y48{bottom:712.394533pt;}
.y6{bottom:716.052267pt;}
.y158{bottom:720.337200pt;}
.y24{bottom:720.971333pt;}
.y57{bottom:721.403867pt;}
.y1b7{bottom:723.711867pt;}
.yd4{bottom:723.771867pt;}
.y197{bottom:724.998533pt;}
.y7b{bottom:727.212800pt;}
.y11c{bottom:728.555867pt;}
.yb4{bottom:728.801200pt;}
.y131{bottom:729.782533pt;}
.y47{bottom:730.395867pt;}
.y17c{bottom:731.290533pt;}
.y5{bottom:735.972267pt;}
.y23{bottom:738.824667pt;}
.y56{bottom:740.401867pt;}
.y157{bottom:740.853200pt;}
.y1b6{bottom:741.715867pt;}
.yd3{bottom:743.429200pt;}
.y196{bottom:744.349200pt;}
.y7a{bottom:745.382800pt;}
.y11b{bottom:747.017200pt;}
.yb3{bottom:747.201200pt;}
.y130{bottom:747.937200pt;}
.y46{bottom:748.397200pt;}
.y17b{bottom:751.490533pt;}
.y1d1{bottom:752.173733pt;}
.y22{bottom:756.678000pt;}
.y156{bottom:761.369200pt;}
.yd2{bottom:763.086533pt;}
.y4{bottom:763.452267pt;}
.y79{bottom:763.552800pt;}
.y195{bottom:763.699867pt;}
.y11a{bottom:765.478533pt;}
.yb2{bottom:765.601200pt;}
.y12f{bottom:766.091867pt;}
.y45{bottom:766.398533pt;}
.y1b5{bottom:767.279867pt;}
.y21{bottom:774.531333pt;}
.y1d0{bottom:776.179067pt;}
.y55{bottom:778.289733pt;}
.y17a{bottom:780.888533pt;}
.y155{bottom:781.885200pt;}
.yd1{bottom:782.743867pt;}
.y194{bottom:783.050533pt;}
.y3{bottom:783.372267pt;}
.y119{bottom:783.939867pt;}
.yb1{bottom:784.001200pt;}
.y12e{bottom:784.246533pt;}
.y44{bottom:784.399867pt;}
.y1b4{bottom:785.283867pt;}
.y1cf{bottom:800.184400pt;}
.y54{bottom:800.627733pt;}
.y43{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y42{bottom:858.834667pt;}
.hc{height:35.291667pt;}
.hf{height:38.636719pt;}
.h8{height:40.333333pt;}
.he{height:42.316406pt;}
.hb{height:44.010417pt;}
.hd{height:44.505208pt;}
.h7{height:46.119792pt;}
.h4{height:50.416667pt;}
.h3{height:52.937500pt;}
.ha{height:57.979167pt;}
.h2{height:63.020833pt;}
.h6{height:64.567708pt;}
.h9{height:68.062500pt;}
.h5{height:83.015625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.937600pt;}
.x4{left:73.079333pt;}
.x5{left:74.467200pt;}
.x1{left:75.590533pt;}
.x8{left:92.207333pt;}
.x3{left:94.187200pt;}
.xb{left:115.682000pt;}
.x6{left:189.034533pt;}
.x9{left:205.610000pt;}
.x2{left:207.480400pt;}
.xa{left:211.528000pt;}
}




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