
    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_66d4f6a2c14afd7d99c61dd4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_287c463e89506a29eed94098.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_28d02858f92d75a23b4e994e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f37b3d051833249d41c14e05.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2ed1541dda5eede70733fd29.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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;}
.v1{vertical-align:4.962000px;}
.lsb{letter-spacing:-4.141800px;}
.ls18{letter-spacing:-1.458000px;}
.lsd{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.054000px;}
.ls12{letter-spacing:-0.032400px;}
.ls11{letter-spacing:-0.021600px;}
.ls16{letter-spacing:-0.010800px;}
.ls15{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005400px;}
.lsf{letter-spacing:0.010800px;}
.ls4{letter-spacing:0.016200px;}
.ls13{letter-spacing:0.021600px;}
.ls0{letter-spacing:0.027000px;}
.ls3{letter-spacing:0.032400px;}
.ls2{letter-spacing:0.043200px;}
.ls1{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.075600px;}
.lsc{letter-spacing:2.106000px;}
.ls6{letter-spacing:6.382800px;}
.lse{letter-spacing:7.057800px;}
.ls5{letter-spacing:11.318400px;}
.ls8{letter-spacing:12.285000px;}
.ls19{letter-spacing:15.849000px;}
.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;}
}
.ws0{word-spacing:-13.500000px;}
.wse{word-spacing:-12.960000px;}
.ws22{word-spacing:-12.420000px;}
.ws23{word-spacing:-4.352400px;}
.ws1a{word-spacing:-3.272400px;}
.ws3d{word-spacing:-3.153600px;}
.ws18{word-spacing:-2.953800px;}
.ws36{word-spacing:-2.624400px;}
.ws40{word-spacing:-2.430000px;}
.ws41{word-spacing:-2.300400px;}
.ws39{word-spacing:-2.224800px;}
.ws1d{word-spacing:-2.106000px;}
.ws29{word-spacing:-2.068200px;}
.ws49{word-spacing:-1.819800px;}
.ws31{word-spacing:-1.809000px;}
.ws4{word-spacing:-1.544400px;}
.ws1f{word-spacing:-1.301400px;}
.ws43{word-spacing:-1.209600px;}
.ws42{word-spacing:-1.198800px;}
.ws3f{word-spacing:-0.993600px;}
.ws30{word-spacing:-0.502200px;}
.ws1{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws3b{word-spacing:0.189000px;}
.ws3{word-spacing:0.259200px;}
.ws37{word-spacing:0.399600px;}
.ws2a{word-spacing:0.496800px;}
.ws2f{word-spacing:0.621000px;}
.ws3c{word-spacing:0.901800px;}
.ws12{word-spacing:0.993600px;}
.ws26{word-spacing:1.976400px;}
.ws1c{word-spacing:2.106000px;}
.ws19{word-spacing:2.937600px;}
.wsd{word-spacing:3.682800px;}
.ws28{word-spacing:4.050000px;}
.ws45{word-spacing:4.255200px;}
.ws7{word-spacing:4.266000px;}
.ws8{word-spacing:4.271400px;}
.ws14{word-spacing:4.530600px;}
.ws32{word-spacing:4.638600px;}
.ws25{word-spacing:4.741200px;}
.ws9{word-spacing:5.065200px;}
.wsf{word-spacing:5.254200px;}
.ws1b{word-spacing:5.275800px;}
.ws24{word-spacing:5.686200px;}
.ws16{word-spacing:6.102000px;}
.ws15{word-spacing:6.107400px;}
.ws2c{word-spacing:6.345000px;}
.ws6{word-spacing:6.382800px;}
.ws13{word-spacing:6.561000px;}
.ws34{word-spacing:6.809400px;}
.ws35{word-spacing:6.966000px;}
.ws10{word-spacing:7.041600px;}
.ws2e{word-spacing:7.057800px;}
.ws38{word-spacing:7.122600px;}
.ws17{word-spacing:7.981200px;}
.ws46{word-spacing:8.013600px;}
.ws21{word-spacing:8.607600px;}
.ws20{word-spacing:8.974800px;}
.ws3a{word-spacing:8.991000px;}
.wsa{word-spacing:9.099000px;}
.wsb{word-spacing:9.158400px;}
.ws48{word-spacing:9.234000px;}
.ws27{word-spacing:9.293400px;}
.ws11{word-spacing:9.757800px;}
.ws33{word-spacing:9.979200px;}
.ws1e{word-spacing:10.794600px;}
.ws5{word-spacing:11.313000px;}
.wsc{word-spacing:12.285000px;}
.ws44{word-spacing:13.359600px;}
.ws47{word-spacing:13.419000px;}
.ws3e{word-spacing:15.849000px;}
.ws2d{word-spacing:16.335000px;}
.ws2b{word-spacing:17.415000px;}
.ws4a{word-spacing:40.116600px;}
._18{margin-left:-29.730600px;}
._12{margin-left:-16.032600px;}
._9{margin-left:-14.664600px;}
._c{margin-left:-13.570200px;}
._f{margin-left:-12.312000px;}
._1{margin-left:-7.734000px;}
._11{margin-left:-5.983200px;}
._7{margin-left:-4.735800px;}
._0{margin-left:-3.312000px;}
._2{margin-left:-1.900800px;}
._3{width:1.299600px;}
._6{width:2.511000px;}
._5{width:3.531600px;}
._b{width:5.005800px;}
._4{width:6.453000px;}
._d{width:8.418600px;}
._10{width:9.655200px;}
._8{width:10.670400px;}
._a{width:11.939400px;}
._e{width:15.557400px;}
._15{width:17.047800px;}
._17{width:18.203400px;}
._13{width:23.005200px;}
._14{width:25.212600px;}
._1a{width:39.328200px;}
._19{width:40.910400px;}
._16{width:723.540000px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:42.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:73.655850px;}
.y25{bottom:78.825450px;}
.yf1{bottom:83.388750px;}
.ya1{bottom:84.250650px;}
.yc9{bottom:84.262650px;}
.y4d{bottom:86.256750px;}
.y78{bottom:93.456300px;}
.y119{bottom:96.086100px;}
.y24{bottom:98.625900px;}
.yf0{bottom:103.189200px;}
.ya0{bottom:104.051100px;}
.yc8{bottom:104.063100px;}
.y4c{bottom:106.057200px;}
.y77{bottom:113.256750px;}
.y118{bottom:115.886550px;}
.y23{bottom:118.426350px;}
.yef{bottom:122.989650px;}
.y9f{bottom:123.851550px;}
.yc7{bottom:123.863550px;}
.y4b{bottom:125.857650px;}
.y13f{bottom:125.955900px;}
.y76{bottom:133.057200px;}
.y117{bottom:135.685650px;}
.y22{bottom:138.226800px;}
.yee{bottom:142.790100px;}
.y9e{bottom:143.652000px;}
.yc6{bottom:143.664000px;}
.y4a{bottom:145.658100px;}
.y13e{bottom:145.756350px;}
.y75{bottom:152.857650px;}
.y116{bottom:155.486100px;}
.y21{bottom:158.026650px;}
.yed{bottom:162.590550px;}
.y9d{bottom:163.452450px;}
.yc5{bottom:163.464450px;}
.y49{bottom:165.458550px;}
.y13d{bottom:165.556800px;}
.y74{bottom:172.658100px;}
.y115{bottom:175.286550px;}
.yec{bottom:182.391000px;}
.y9c{bottom:183.252900px;}
.yc4{bottom:183.264900px;}
.y48{bottom:185.259000px;}
.y13c{bottom:185.357250px;}
.y20{bottom:191.314650px;}
.y73{bottom:192.458550px;}
.y114{bottom:195.087000px;}
.yeb{bottom:202.191450px;}
.y9b{bottom:203.053350px;}
.yc3{bottom:203.065350px;}
.y47{bottom:205.059450px;}
.y13b{bottom:205.157700px;}
.y1f{bottom:211.115100px;}
.y72{bottom:212.259000px;}
.y113{bottom:214.887450px;}
.yea{bottom:221.991900px;}
.y9a{bottom:222.853800px;}
.yc2{bottom:222.865800px;}
.y46{bottom:224.859900px;}
.y13a{bottom:224.958150px;}
.y1e{bottom:230.915550px;}
.y71{bottom:232.059450px;}
.y112{bottom:234.687900px;}
.ye9{bottom:241.792350px;}
.y99{bottom:242.653800px;}
.yc1{bottom:242.665800px;}
.y45{bottom:244.660350px;}
.y139{bottom:244.758600px;}
.y1d{bottom:250.716000px;}
.y70{bottom:251.859900px;}
.y111{bottom:254.488350px;}
.ye8{bottom:261.592800px;}
.y44{bottom:264.460800px;}
.y138{bottom:264.559050px;}
.y1c{bottom:270.516450px;}
.y6f{bottom:271.660350px;}
.y110{bottom:274.288800px;}
.y98{bottom:275.945250px;}
.yc0{bottom:275.957250px;}
.ye7{bottom:281.392800px;}
.y43{bottom:284.260800px;}
.y137{bottom:284.359500px;}
.y1b{bottom:290.316900px;}
.y6e{bottom:291.460800px;}
.y10f{bottom:294.089250px;}
.y97{bottom:295.745700px;}
.ybf{bottom:295.757700px;}
.y136{bottom:304.159950px;}
.y1a{bottom:310.117350px;}
.y6d{bottom:311.261250px;}
.y10e{bottom:313.889700px;}
.ye6{bottom:314.684250px;}
.y96{bottom:315.546150px;}
.ybe{bottom:315.558150px;}
.y42{bottom:317.551800px;}
.y135{bottom:323.960400px;}
.y19{bottom:329.917800px;}
.y6c{bottom:331.061700px;}
.y10d{bottom:333.690150px;}
.ye5{bottom:334.484700px;}
.y95{bottom:335.346600px;}
.ybd{bottom:335.358600px;}
.y41{bottom:337.352250px;}
.y134{bottom:343.760850px;}
.y18{bottom:349.718250px;}
.y6b{bottom:350.862150px;}
.y10c{bottom:353.490600px;}
.ye4{bottom:354.285150px;}
.y94{bottom:355.147050px;}
.ybc{bottom:355.159050px;}
.y40{bottom:357.152700px;}
.y133{bottom:363.561300px;}
.y17{bottom:369.518700px;}
.y6a{bottom:370.662600px;}
.y10b{bottom:373.291050px;}
.ye3{bottom:374.085600px;}
.y93{bottom:374.947500px;}
.ybb{bottom:374.959500px;}
.y3f{bottom:376.953150px;}
.y132{bottom:383.361300px;}
.y16{bottom:389.319150px;}
.y69{bottom:390.463050px;}
.y10a{bottom:393.091500px;}
.ye2{bottom:393.886050px;}
.y92{bottom:394.747950px;}
.yba{bottom:394.759950px;}
.y3e{bottom:396.753600px;}
.y15{bottom:409.119600px;}
.y68{bottom:410.263500px;}
.y109{bottom:412.891950px;}
.ye1{bottom:413.686500px;}
.y91{bottom:414.548400px;}
.yb9{bottom:414.560400px;}
.y3d{bottom:416.554050px;}
.y131{bottom:416.653200px;}
.y14{bottom:428.920050px;}
.y67{bottom:430.063950px;}
.y108{bottom:432.692400px;}
.ye0{bottom:433.486950px;}
.y90{bottom:434.348850px;}
.yb8{bottom:434.360850px;}
.y3c{bottom:436.354500px;}
.y130{bottom:436.453650px;}
.y13{bottom:448.720500px;}
.y66{bottom:449.864400px;}
.y107{bottom:452.492850px;}
.ydf{bottom:453.287400px;}
.y8f{bottom:454.149300px;}
.yb7{bottom:454.161300px;}
.y3b{bottom:456.154950px;}
.y12f{bottom:456.254100px;}
.y12{bottom:468.520950px;}
.y65{bottom:469.664850px;}
.y106{bottom:472.293300px;}
.yde{bottom:473.087850px;}
.y8e{bottom:473.949750px;}
.yb6{bottom:473.961750px;}
.y3a{bottom:475.955400px;}
.y12e{bottom:476.054550px;}
.y11{bottom:488.321400px;}
.y64{bottom:489.465300px;}
.y105{bottom:492.093300px;}
.ydd{bottom:492.888300px;}
.y8d{bottom:493.750200px;}
.yb5{bottom:493.762200px;}
.y39{bottom:495.755850px;}
.y12d{bottom:495.855000px;}
.y10{bottom:508.121850px;}
.y63{bottom:509.265750px;}
.ydc{bottom:512.688750px;}
.y8c{bottom:513.550650px;}
.yb4{bottom:513.562650px;}
.y38{bottom:515.556300px;}
.y12c{bottom:515.655450px;}
.y152{bottom:525.138150px;}
.y104{bottom:525.386400px;}
.yf{bottom:527.922300px;}
.y62{bottom:529.066200px;}
.ydb{bottom:532.489200px;}
.y8b{bottom:533.351100px;}
.yb3{bottom:533.363100px;}
.y37{bottom:535.356750px;}
.y12b{bottom:535.455900px;}
.y151{bottom:544.938600px;}
.y103{bottom:545.186850px;}
.ye{bottom:547.722750px;}
.y61{bottom:548.866650px;}
.yda{bottom:552.289650px;}
.y8a{bottom:553.151550px;}
.yb2{bottom:553.163550px;}
.y36{bottom:555.157200px;}
.y12a{bottom:555.256350px;}
.y150{bottom:564.739050px;}
.y102{bottom:564.988650px;}
.yd{bottom:567.523200px;}
.y60{bottom:568.667100px;}
.yd9{bottom:572.090100px;}
.y89{bottom:572.952000px;}
.yb1{bottom:572.964000px;}
.y35{bottom:574.957650px;}
.y129{bottom:575.056800px;}
.y14f{bottom:584.539500px;}
.y101{bottom:584.789100px;}
.yc{bottom:587.323650px;}
.y5f{bottom:588.467550px;}
.yd8{bottom:591.890550px;}
.y88{bottom:592.752450px;}
.yb0{bottom:592.764450px;}
.y34{bottom:594.758100px;}
.y128{bottom:594.857250px;}
.y14e{bottom:604.339950px;}
.y100{bottom:604.589550px;}
.yb{bottom:607.124100px;}
.y5e{bottom:608.268000px;}
.yd7{bottom:611.691000px;}
.y87{bottom:612.552900px;}
.yaf{bottom:612.564900px;}
.y33{bottom:614.558550px;}
.y127{bottom:614.657700px;}
.y14d{bottom:624.140400px;}
.yff{bottom:624.390000px;}
.ya{bottom:626.924550px;}
.y5d{bottom:628.068450px;}
.yd6{bottom:631.491450px;}
.y86{bottom:632.353350px;}
.yae{bottom:632.365350px;}
.y32{bottom:634.359000px;}
.y126{bottom:634.458150px;}
.y14c{bottom:643.940850px;}
.yfe{bottom:644.190450px;}
.y9{bottom:646.725000px;}
.y5c{bottom:647.868900px;}
.yd5{bottom:651.291900px;}
.y85{bottom:652.153800px;}
.yad{bottom:652.165800px;}
.y31{bottom:654.159450px;}
.y125{bottom:654.258600px;}
.y14b{bottom:663.741300px;}
.yfd{bottom:663.990900px;}
.y8{bottom:666.525450px;}
.y5b{bottom:667.669350px;}
.yd4{bottom:671.092350px;}
.y84{bottom:671.953800px;}
.yac{bottom:671.965800px;}
.y30{bottom:673.959900px;}
.y124{bottom:674.059050px;}
.y14a{bottom:683.541750px;}
.yfc{bottom:683.791350px;}
.y7{bottom:686.325900px;}
.y5a{bottom:687.469800px;}
.yd3{bottom:690.892800px;}
.y2f{bottom:693.760350px;}
.y123{bottom:693.859500px;}
.y149{bottom:703.342200px;}
.yfb{bottom:703.591800px;}
.y83{bottom:705.250500px;}
.yab{bottom:705.262350px;}
.y6{bottom:706.126350px;}
.y59{bottom:707.270250px;}
.yd2{bottom:710.692650px;}
.y2e{bottom:713.560800px;}
.y122{bottom:713.659950px;}
.y148{bottom:723.142650px;}
.yfa{bottom:723.392250px;}
.y82{bottom:725.050950px;}
.yaa{bottom:725.062800px;}
.y5{bottom:725.926800px;}
.y58{bottom:727.070700px;}
.y2d{bottom:733.360650px;}
.y121{bottom:733.460400px;}
.y147{bottom:742.943100px;}
.yf9{bottom:743.192700px;}
.yd1{bottom:743.989200px;}
.y81{bottom:744.851400px;}
.ya9{bottom:744.863250px;}
.y4{bottom:745.726800px;}
.y57{bottom:746.871150px;}
.y120{bottom:753.260850px;}
.y146{bottom:762.743550px;}
.yf8{bottom:762.993150px;}
.yd0{bottom:763.789650px;}
.y80{bottom:764.651850px;}
.ya8{bottom:764.663700px;}
.y2c{bottom:766.658400px;}
.y56{bottom:766.671600px;}
.y11f{bottom:773.061300px;}
.y145{bottom:782.544000px;}
.yf7{bottom:782.793600px;}
.ycf{bottom:783.590100px;}
.y7f{bottom:784.452300px;}
.ya7{bottom:784.464150px;}
.y2b{bottom:786.458850px;}
.y55{bottom:786.472050px;}
.y11e{bottom:792.861300px;}
.y144{bottom:802.344450px;}
.yf6{bottom:802.594050px;}
.yce{bottom:803.390550px;}
.y7e{bottom:804.252750px;}
.ya6{bottom:804.264600px;}
.y2a{bottom:806.259300px;}
.y54{bottom:806.272500px;}
.y3{bottom:815.026200px;}
.y143{bottom:822.144900px;}
.yf5{bottom:822.394500px;}
.ycd{bottom:823.191000px;}
.y7d{bottom:824.053200px;}
.ya5{bottom:824.065050px;}
.y29{bottom:826.059750px;}
.y53{bottom:826.072950px;}
.y11d{bottom:826.160550px;}
.y2{bottom:839.776200px;}
.y142{bottom:841.945350px;}
.yf4{bottom:842.194950px;}
.ycc{bottom:842.991450px;}
.y7c{bottom:843.853650px;}
.ya4{bottom:843.865500px;}
.y28{bottom:845.860200px;}
.y52{bottom:845.873400px;}
.y11c{bottom:845.961000px;}
.y141{bottom:861.745800px;}
.yf3{bottom:861.994050px;}
.ycb{bottom:862.791900px;}
.y7b{bottom:863.652750px;}
.ya3{bottom:863.665950px;}
.y1{bottom:864.526200px;}
.y27{bottom:865.660650px;}
.y51{bottom:865.673850px;}
.y11b{bottom:865.761450px;}
.y140{bottom:881.545950px;}
.yf2{bottom:881.794050px;}
.yca{bottom:882.592350px;}
.y7a{bottom:883.453200px;}
.ya2{bottom:883.466400px;}
.y26{bottom:885.461100px;}
.y50{bottom:885.474300px;}
.y11a{bottom:885.561900px;}
.y4e{bottom:926.758650px;}
.y4f{bottom:927.999150px;}
.h7{height:37.303711px;}
.h5{height:47.381836px;}
.h6{height:47.513672px;}
.h4{height:47.961914px;}
.h3{height:53.291016px;}
.h2{height:58.620117px;}
.h0{height:980.808300px;}
.h1{height:981.000000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x5{left:94.726050px;}
.x4{left:99.474150px;}
.x6{left:297.169050px;}
.x3{left:302.721300px;}
.x1{left:309.577050px;}
.x2{left:316.465800px;}
.x7{left:570.823050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.410667pt;}
.lsb{letter-spacing:-3.681600pt;}
.ls18{letter-spacing:-1.296000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls12{letter-spacing:-0.028800pt;}
.ls11{letter-spacing:-0.019200pt;}
.ls16{letter-spacing:-0.009600pt;}
.ls15{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004800pt;}
.lsf{letter-spacing:0.009600pt;}
.ls4{letter-spacing:0.014400pt;}
.ls13{letter-spacing:0.019200pt;}
.ls0{letter-spacing:0.024000pt;}
.ls3{letter-spacing:0.028800pt;}
.ls2{letter-spacing:0.038400pt;}
.ls1{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.067200pt;}
.lsc{letter-spacing:1.872000pt;}
.ls6{letter-spacing:5.673600pt;}
.lse{letter-spacing:6.273600pt;}
.ls5{letter-spacing:10.060800pt;}
.ls8{letter-spacing:10.920000pt;}
.ls19{letter-spacing:14.088000pt;}
.ws0{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.520000pt;}
.ws22{word-spacing:-11.040000pt;}
.ws23{word-spacing:-3.868800pt;}
.ws1a{word-spacing:-2.908800pt;}
.ws3d{word-spacing:-2.803200pt;}
.ws18{word-spacing:-2.625600pt;}
.ws36{word-spacing:-2.332800pt;}
.ws40{word-spacing:-2.160000pt;}
.ws41{word-spacing:-2.044800pt;}
.ws39{word-spacing:-1.977600pt;}
.ws1d{word-spacing:-1.872000pt;}
.ws29{word-spacing:-1.838400pt;}
.ws49{word-spacing:-1.617600pt;}
.ws31{word-spacing:-1.608000pt;}
.ws4{word-spacing:-1.372800pt;}
.ws1f{word-spacing:-1.156800pt;}
.ws43{word-spacing:-1.075200pt;}
.ws42{word-spacing:-1.065600pt;}
.ws3f{word-spacing:-0.883200pt;}
.ws30{word-spacing:-0.446400pt;}
.ws1{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.168000pt;}
.ws3{word-spacing:0.230400pt;}
.ws37{word-spacing:0.355200pt;}
.ws2a{word-spacing:0.441600pt;}
.ws2f{word-spacing:0.552000pt;}
.ws3c{word-spacing:0.801600pt;}
.ws12{word-spacing:0.883200pt;}
.ws26{word-spacing:1.756800pt;}
.ws1c{word-spacing:1.872000pt;}
.ws19{word-spacing:2.611200pt;}
.wsd{word-spacing:3.273600pt;}
.ws28{word-spacing:3.600000pt;}
.ws45{word-spacing:3.782400pt;}
.ws7{word-spacing:3.792000pt;}
.ws8{word-spacing:3.796800pt;}
.ws14{word-spacing:4.027200pt;}
.ws32{word-spacing:4.123200pt;}
.ws25{word-spacing:4.214400pt;}
.ws9{word-spacing:4.502400pt;}
.wsf{word-spacing:4.670400pt;}
.ws1b{word-spacing:4.689600pt;}
.ws24{word-spacing:5.054400pt;}
.ws16{word-spacing:5.424000pt;}
.ws15{word-spacing:5.428800pt;}
.ws2c{word-spacing:5.640000pt;}
.ws6{word-spacing:5.673600pt;}
.ws13{word-spacing:5.832000pt;}
.ws34{word-spacing:6.052800pt;}
.ws35{word-spacing:6.192000pt;}
.ws10{word-spacing:6.259200pt;}
.ws2e{word-spacing:6.273600pt;}
.ws38{word-spacing:6.331200pt;}
.ws17{word-spacing:7.094400pt;}
.ws46{word-spacing:7.123200pt;}
.ws21{word-spacing:7.651200pt;}
.ws20{word-spacing:7.977600pt;}
.ws3a{word-spacing:7.992000pt;}
.wsa{word-spacing:8.088000pt;}
.wsb{word-spacing:8.140800pt;}
.ws48{word-spacing:8.208000pt;}
.ws27{word-spacing:8.260800pt;}
.ws11{word-spacing:8.673600pt;}
.ws33{word-spacing:8.870400pt;}
.ws1e{word-spacing:9.595200pt;}
.ws5{word-spacing:10.056000pt;}
.wsc{word-spacing:10.920000pt;}
.ws44{word-spacing:11.875200pt;}
.ws47{word-spacing:11.928000pt;}
.ws3e{word-spacing:14.088000pt;}
.ws2d{word-spacing:14.520000pt;}
.ws2b{word-spacing:15.480000pt;}
.ws4a{word-spacing:35.659200pt;}
._18{margin-left:-26.427200pt;}
._12{margin-left:-14.251200pt;}
._9{margin-left:-13.035200pt;}
._c{margin-left:-12.062400pt;}
._f{margin-left:-10.944000pt;}
._1{margin-left:-6.874667pt;}
._11{margin-left:-5.318400pt;}
._7{margin-left:-4.209600pt;}
._0{margin-left:-2.944000pt;}
._2{margin-left:-1.689600pt;}
._3{width:1.155200pt;}
._6{width:2.232000pt;}
._5{width:3.139200pt;}
._b{width:4.449600pt;}
._4{width:5.736000pt;}
._d{width:7.483200pt;}
._10{width:8.582400pt;}
._8{width:9.484800pt;}
._a{width:10.612800pt;}
._e{width:13.828800pt;}
._15{width:15.153600pt;}
._17{width:16.180800pt;}
._13{width:20.449067pt;}
._14{width:22.411200pt;}
._1a{width:34.958400pt;}
._19{width:36.364800pt;}
._16{width:643.146667pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:65.471867pt;}
.y25{bottom:70.067067pt;}
.yf1{bottom:74.123333pt;}
.ya1{bottom:74.889467pt;}
.yc9{bottom:74.900133pt;}
.y4d{bottom:76.672667pt;}
.y78{bottom:83.072267pt;}
.y119{bottom:85.409867pt;}
.y24{bottom:87.667467pt;}
.yf0{bottom:91.723733pt;}
.ya0{bottom:92.489867pt;}
.yc8{bottom:92.500533pt;}
.y4c{bottom:94.273067pt;}
.y77{bottom:100.672667pt;}
.y118{bottom:103.010267pt;}
.y23{bottom:105.267867pt;}
.yef{bottom:109.324133pt;}
.y9f{bottom:110.090267pt;}
.yc7{bottom:110.100933pt;}
.y4b{bottom:111.873467pt;}
.y13f{bottom:111.960800pt;}
.y76{bottom:118.273067pt;}
.y117{bottom:120.609467pt;}
.y22{bottom:122.868267pt;}
.yee{bottom:126.924533pt;}
.y9e{bottom:127.690667pt;}
.yc6{bottom:127.701333pt;}
.y4a{bottom:129.473867pt;}
.y13e{bottom:129.561200pt;}
.y75{bottom:135.873467pt;}
.y116{bottom:138.209867pt;}
.y21{bottom:140.468133pt;}
.yed{bottom:144.524933pt;}
.y9d{bottom:145.291067pt;}
.yc5{bottom:145.301733pt;}
.y49{bottom:147.074267pt;}
.y13d{bottom:147.161600pt;}
.y74{bottom:153.473867pt;}
.y115{bottom:155.810267pt;}
.yec{bottom:162.125333pt;}
.y9c{bottom:162.891467pt;}
.yc4{bottom:162.902133pt;}
.y48{bottom:164.674667pt;}
.y13c{bottom:164.762000pt;}
.y20{bottom:170.057467pt;}
.y73{bottom:171.074267pt;}
.y114{bottom:173.410667pt;}
.yeb{bottom:179.725733pt;}
.y9b{bottom:180.491867pt;}
.yc3{bottom:180.502533pt;}
.y47{bottom:182.275067pt;}
.y13b{bottom:182.362400pt;}
.y1f{bottom:187.657867pt;}
.y72{bottom:188.674667pt;}
.y113{bottom:191.011067pt;}
.yea{bottom:197.326133pt;}
.y9a{bottom:198.092267pt;}
.yc2{bottom:198.102933pt;}
.y46{bottom:199.875467pt;}
.y13a{bottom:199.962800pt;}
.y1e{bottom:205.258267pt;}
.y71{bottom:206.275067pt;}
.y112{bottom:208.611467pt;}
.ye9{bottom:214.926533pt;}
.y99{bottom:215.692267pt;}
.yc1{bottom:215.702933pt;}
.y45{bottom:217.475867pt;}
.y139{bottom:217.563200pt;}
.y1d{bottom:222.858667pt;}
.y70{bottom:223.875467pt;}
.y111{bottom:226.211867pt;}
.ye8{bottom:232.526933pt;}
.y44{bottom:235.076267pt;}
.y138{bottom:235.163600pt;}
.y1c{bottom:240.459067pt;}
.y6f{bottom:241.475867pt;}
.y110{bottom:243.812267pt;}
.y98{bottom:245.284667pt;}
.yc0{bottom:245.295333pt;}
.ye7{bottom:250.126933pt;}
.y43{bottom:252.676267pt;}
.y137{bottom:252.764000pt;}
.y1b{bottom:258.059467pt;}
.y6e{bottom:259.076267pt;}
.y10f{bottom:261.412667pt;}
.y97{bottom:262.885067pt;}
.ybf{bottom:262.895733pt;}
.y136{bottom:270.364400pt;}
.y1a{bottom:275.659867pt;}
.y6d{bottom:276.676667pt;}
.y10e{bottom:279.013067pt;}
.ye6{bottom:279.719333pt;}
.y96{bottom:280.485467pt;}
.ybe{bottom:280.496133pt;}
.y42{bottom:282.268267pt;}
.y135{bottom:287.964800pt;}
.y19{bottom:293.260267pt;}
.y6c{bottom:294.277067pt;}
.y10d{bottom:296.613467pt;}
.ye5{bottom:297.319733pt;}
.y95{bottom:298.085867pt;}
.ybd{bottom:298.096533pt;}
.y41{bottom:299.868667pt;}
.y134{bottom:305.565200pt;}
.y18{bottom:310.860667pt;}
.y6b{bottom:311.877467pt;}
.y10c{bottom:314.213867pt;}
.ye4{bottom:314.920133pt;}
.y94{bottom:315.686267pt;}
.ybc{bottom:315.696933pt;}
.y40{bottom:317.469067pt;}
.y133{bottom:323.165600pt;}
.y17{bottom:328.461067pt;}
.y6a{bottom:329.477867pt;}
.y10b{bottom:331.814267pt;}
.ye3{bottom:332.520533pt;}
.y93{bottom:333.286667pt;}
.ybb{bottom:333.297333pt;}
.y3f{bottom:335.069467pt;}
.y132{bottom:340.765600pt;}
.y16{bottom:346.061467pt;}
.y69{bottom:347.078267pt;}
.y10a{bottom:349.414667pt;}
.ye2{bottom:350.120933pt;}
.y92{bottom:350.887067pt;}
.yba{bottom:350.897733pt;}
.y3e{bottom:352.669867pt;}
.y15{bottom:363.661867pt;}
.y68{bottom:364.678667pt;}
.y109{bottom:367.015067pt;}
.ye1{bottom:367.721333pt;}
.y91{bottom:368.487467pt;}
.yb9{bottom:368.498133pt;}
.y3d{bottom:370.270267pt;}
.y131{bottom:370.358400pt;}
.y14{bottom:381.262267pt;}
.y67{bottom:382.279067pt;}
.y108{bottom:384.615467pt;}
.ye0{bottom:385.321733pt;}
.y90{bottom:386.087867pt;}
.yb8{bottom:386.098533pt;}
.y3c{bottom:387.870667pt;}
.y130{bottom:387.958800pt;}
.y13{bottom:398.862667pt;}
.y66{bottom:399.879467pt;}
.y107{bottom:402.215867pt;}
.ydf{bottom:402.922133pt;}
.y8f{bottom:403.688267pt;}
.yb7{bottom:403.698933pt;}
.y3b{bottom:405.471067pt;}
.y12f{bottom:405.559200pt;}
.y12{bottom:416.463067pt;}
.y65{bottom:417.479867pt;}
.y106{bottom:419.816267pt;}
.yde{bottom:420.522533pt;}
.y8e{bottom:421.288667pt;}
.yb6{bottom:421.299333pt;}
.y3a{bottom:423.071467pt;}
.y12e{bottom:423.159600pt;}
.y11{bottom:434.063467pt;}
.y64{bottom:435.080267pt;}
.y105{bottom:437.416267pt;}
.ydd{bottom:438.122933pt;}
.y8d{bottom:438.889067pt;}
.yb5{bottom:438.899733pt;}
.y39{bottom:440.671867pt;}
.y12d{bottom:440.760000pt;}
.y10{bottom:451.663867pt;}
.y63{bottom:452.680667pt;}
.ydc{bottom:455.723333pt;}
.y8c{bottom:456.489467pt;}
.yb4{bottom:456.500133pt;}
.y38{bottom:458.272267pt;}
.y12c{bottom:458.360400pt;}
.y152{bottom:466.789467pt;}
.y104{bottom:467.010133pt;}
.yf{bottom:469.264267pt;}
.y62{bottom:470.281067pt;}
.ydb{bottom:473.323733pt;}
.y8b{bottom:474.089867pt;}
.yb3{bottom:474.100533pt;}
.y37{bottom:475.872667pt;}
.y12b{bottom:475.960800pt;}
.y151{bottom:484.389867pt;}
.y103{bottom:484.610533pt;}
.ye{bottom:486.864667pt;}
.y61{bottom:487.881467pt;}
.yda{bottom:490.924133pt;}
.y8a{bottom:491.690267pt;}
.yb2{bottom:491.700933pt;}
.y36{bottom:493.473067pt;}
.y12a{bottom:493.561200pt;}
.y150{bottom:501.990267pt;}
.y102{bottom:502.212133pt;}
.yd{bottom:504.465067pt;}
.y60{bottom:505.481867pt;}
.yd9{bottom:508.524533pt;}
.y89{bottom:509.290667pt;}
.yb1{bottom:509.301333pt;}
.y35{bottom:511.073467pt;}
.y129{bottom:511.161600pt;}
.y14f{bottom:519.590667pt;}
.y101{bottom:519.812533pt;}
.yc{bottom:522.065467pt;}
.y5f{bottom:523.082267pt;}
.yd8{bottom:526.124933pt;}
.y88{bottom:526.891067pt;}
.yb0{bottom:526.901733pt;}
.y34{bottom:528.673867pt;}
.y128{bottom:528.762000pt;}
.y14e{bottom:537.191067pt;}
.y100{bottom:537.412933pt;}
.yb{bottom:539.665867pt;}
.y5e{bottom:540.682667pt;}
.yd7{bottom:543.725333pt;}
.y87{bottom:544.491467pt;}
.yaf{bottom:544.502133pt;}
.y33{bottom:546.274267pt;}
.y127{bottom:546.362400pt;}
.y14d{bottom:554.791467pt;}
.yff{bottom:555.013333pt;}
.ya{bottom:557.266267pt;}
.y5d{bottom:558.283067pt;}
.yd6{bottom:561.325733pt;}
.y86{bottom:562.091867pt;}
.yae{bottom:562.102533pt;}
.y32{bottom:563.874667pt;}
.y126{bottom:563.962800pt;}
.y14c{bottom:572.391867pt;}
.yfe{bottom:572.613733pt;}
.y9{bottom:574.866667pt;}
.y5c{bottom:575.883467pt;}
.yd5{bottom:578.926133pt;}
.y85{bottom:579.692267pt;}
.yad{bottom:579.702933pt;}
.y31{bottom:581.475067pt;}
.y125{bottom:581.563200pt;}
.y14b{bottom:589.992267pt;}
.yfd{bottom:590.214133pt;}
.y8{bottom:592.467067pt;}
.y5b{bottom:593.483867pt;}
.yd4{bottom:596.526533pt;}
.y84{bottom:597.292267pt;}
.yac{bottom:597.302933pt;}
.y30{bottom:599.075467pt;}
.y124{bottom:599.163600pt;}
.y14a{bottom:607.592667pt;}
.yfc{bottom:607.814533pt;}
.y7{bottom:610.067467pt;}
.y5a{bottom:611.084267pt;}
.yd3{bottom:614.126933pt;}
.y2f{bottom:616.675867pt;}
.y123{bottom:616.764000pt;}
.y149{bottom:625.193067pt;}
.yfb{bottom:625.414933pt;}
.y83{bottom:626.889333pt;}
.yab{bottom:626.899867pt;}
.y6{bottom:627.667867pt;}
.y59{bottom:628.684667pt;}
.yd2{bottom:631.726800pt;}
.y2e{bottom:634.276267pt;}
.y122{bottom:634.364400pt;}
.y148{bottom:642.793467pt;}
.yfa{bottom:643.015333pt;}
.y82{bottom:644.489733pt;}
.yaa{bottom:644.500267pt;}
.y5{bottom:645.268267pt;}
.y58{bottom:646.285067pt;}
.y2d{bottom:651.876133pt;}
.y121{bottom:651.964800pt;}
.y147{bottom:660.393867pt;}
.yf9{bottom:660.615733pt;}
.yd1{bottom:661.323733pt;}
.y81{bottom:662.090133pt;}
.ya9{bottom:662.100667pt;}
.y4{bottom:662.868267pt;}
.y57{bottom:663.885467pt;}
.y120{bottom:669.565200pt;}
.y146{bottom:677.994267pt;}
.yf8{bottom:678.216133pt;}
.yd0{bottom:678.924133pt;}
.y80{bottom:679.690533pt;}
.ya8{bottom:679.701067pt;}
.y2c{bottom:681.474133pt;}
.y56{bottom:681.485867pt;}
.y11f{bottom:687.165600pt;}
.y145{bottom:695.594667pt;}
.yf7{bottom:695.816533pt;}
.ycf{bottom:696.524533pt;}
.y7f{bottom:697.290933pt;}
.ya7{bottom:697.301467pt;}
.y2b{bottom:699.074533pt;}
.y55{bottom:699.086267pt;}
.y11e{bottom:704.765600pt;}
.y144{bottom:713.195067pt;}
.yf6{bottom:713.416933pt;}
.yce{bottom:714.124933pt;}
.y7e{bottom:714.891333pt;}
.ya6{bottom:714.901867pt;}
.y2a{bottom:716.674933pt;}
.y54{bottom:716.686667pt;}
.y3{bottom:724.467733pt;}
.y143{bottom:730.795467pt;}
.yf5{bottom:731.017333pt;}
.ycd{bottom:731.725333pt;}
.y7d{bottom:732.491733pt;}
.ya5{bottom:732.502267pt;}
.y29{bottom:734.275333pt;}
.y53{bottom:734.287067pt;}
.y11d{bottom:734.364933pt;}
.y2{bottom:746.467733pt;}
.y142{bottom:748.395867pt;}
.yf4{bottom:748.617733pt;}
.ycc{bottom:749.325733pt;}
.y7c{bottom:750.092133pt;}
.ya4{bottom:750.102667pt;}
.y28{bottom:751.875733pt;}
.y52{bottom:751.887467pt;}
.y11c{bottom:751.965333pt;}
.y141{bottom:765.996267pt;}
.yf3{bottom:766.216933pt;}
.ycb{bottom:766.926133pt;}
.y7b{bottom:767.691333pt;}
.ya3{bottom:767.703067pt;}
.y1{bottom:768.467733pt;}
.y27{bottom:769.476133pt;}
.y51{bottom:769.487867pt;}
.y11b{bottom:769.565733pt;}
.y140{bottom:783.596400pt;}
.yf2{bottom:783.816933pt;}
.yca{bottom:784.526533pt;}
.y7a{bottom:785.291733pt;}
.ya2{bottom:785.303467pt;}
.y26{bottom:787.076533pt;}
.y50{bottom:787.088267pt;}
.y11a{bottom:787.166133pt;}
.y4e{bottom:823.785467pt;}
.y4f{bottom:824.888133pt;}
.h7{height:33.158854pt;}
.h5{height:42.117188pt;}
.h6{height:42.234375pt;}
.h4{height:42.632812pt;}
.h3{height:47.369792pt;}
.h2{height:52.106771pt;}
.h0{height:871.829600pt;}
.h1{height:872.000000pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x5{left:84.200933pt;}
.x4{left:88.421467pt;}
.x6{left:264.150267pt;}
.x3{left:269.085600pt;}
.x1{left:275.179600pt;}
.x2{left:281.302933pt;}
.x7{left:507.398267pt;}
}




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