
    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_402d74608d156a3aab06a40f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_e36da940a13e8b419f796841.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_efdf4e23f7e133ff8cf1ee73.woff')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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:32.874000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:29.886540px;}
.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;}
}
.ws2f{word-spacing:-14.943900px;}
.ws8a{word-spacing:-11.955150px;}
.ws59{word-spacing:-3.287658px;}
.ws95{word-spacing:-3.227882px;}
.wsc7{word-spacing:-3.048556px;}
.ws92{word-spacing:-2.988780px;}
.ws11{word-spacing:-2.929004px;}
.ws27{word-spacing:-2.869229px;}
.ws69{word-spacing:-2.570351px;}
.ws39{word-spacing:-2.331248px;}
.ws94{word-spacing:-2.271473px;}
.ws34{word-spacing:-2.211697px;}
.ws8c{word-spacing:-2.151922px;}
.ws43{word-spacing:-2.092146px;}
.ws28{word-spacing:-1.972595px;}
.wsa1{word-spacing:-1.932642px;}
.ws99{word-spacing:-1.912819px;}
.ws93{word-spacing:-1.853044px;}
.ws7f{word-spacing:-1.793268px;}
.ws5d{word-spacing:-1.733492px;}
.wsb1{word-spacing:-1.673717px;}
.ws7c{word-spacing:-1.613941px;}
.ws42{word-spacing:-1.554166px;}
.ws6f{word-spacing:-1.434614px;}
.ws9d{word-spacing:-1.374839px;}
.ws10{word-spacing:-1.315063px;}
.ws2a{word-spacing:-0.956410px;}
.ws54{word-spacing:-0.778867px;}
.ws7{word-spacing:-0.777083px;}
.ws1a{word-spacing:-0.717307px;}
.ws68{word-spacing:-0.597756px;}
.wsc{word-spacing:-0.537980px;}
.ws63{word-spacing:-0.478205px;}
.ws5b{word-spacing:-0.418429px;}
.ws85{word-spacing:-0.298878px;}
.ws2c{word-spacing:-0.239102px;}
.ws36{word-spacing:-0.179327px;}
.ws0{word-spacing:0.000000px;}
.ws67{word-spacing:0.119551px;}
.ws9e{word-spacing:0.179327px;}
.ws41{word-spacing:0.239102px;}
.ws78{word-spacing:0.298878px;}
.ws80{word-spacing:0.358654px;}
.ws29{word-spacing:0.418429px;}
.ws83{word-spacing:0.478205px;}
.ws55{word-spacing:0.597756px;}
.ws3c{word-spacing:0.621720px;}
.ws3e{word-spacing:0.657532px;}
.ws12{word-spacing:0.836858px;}
.ws66{word-spacing:0.896634px;}
.wsc4{word-spacing:1.016185px;}
.ws51{word-spacing:1.075961px;}
.ws64{word-spacing:1.135736px;}
.ws2d{word-spacing:1.195512px;}
.wsc3{word-spacing:1.494390px;}
.ws9{word-spacing:1.554166px;}
.ws21{word-spacing:1.853044px;}
.ws1b{word-spacing:1.972595px;}
.wsf{word-spacing:2.092146px;}
.wsa0{word-spacing:2.240446px;}
.ws19{word-spacing:2.271473px;}
.ws26{word-spacing:2.391024px;}
.ws61{word-spacing:2.450800px;}
.ws6e{word-spacing:2.510575px;}
.ws6a{word-spacing:2.630126px;}
.ws6b{word-spacing:2.689902px;}
.wsc6{word-spacing:2.869229px;}
.ws9f{word-spacing:2.988780px;}
.ws1c{word-spacing:3.066509px;}
.ws6{word-spacing:3.108331px;}
.wsc5{word-spacing:3.227882px;}
.ws65{word-spacing:3.287658px;}
.ws30{word-spacing:3.338299px;}
.ws31{word-spacing:3.347434px;}
.ws87{word-spacing:3.466985px;}
.ws1{word-spacing:3.586536px;}
.ws81{word-spacing:3.646312px;}
.wsd{word-spacing:3.765863px;}
.ws18{word-spacing:4.064741px;}
.ws9b{word-spacing:4.124516px;}
.ws5c{word-spacing:4.303843px;}
.ws35{word-spacing:4.363619px;}
.ws76{word-spacing:4.602721px;}
.ws3b{word-spacing:4.782048px;}
.ws86{word-spacing:4.841824px;}
.ws8b{word-spacing:4.901599px;}
.wsa{word-spacing:4.961375px;}
.ws58{word-spacing:5.021150px;}
.ws88{word-spacing:5.260253px;}
.ws1e{word-spacing:5.320028px;}
.ws7e{word-spacing:5.379804px;}
.ws6d{word-spacing:5.439580px;}
.ws5{word-spacing:5.499355px;}
.ws5a{word-spacing:5.559131px;}
.ws3{word-spacing:5.678682px;}
.ws5f{word-spacing:5.798233px;}
.ws98{word-spacing:5.917784px;}
.ws82{word-spacing:6.216662px;}
.ws84{word-spacing:6.395989px;}
.ws53{word-spacing:6.874194px;}
.ws20{word-spacing:7.173072px;}
.wse{word-spacing:7.412174px;}
.ws79{word-spacing:7.531726px;}
.ws4f{word-spacing:7.747525px;}
.ws50{word-spacing:7.770828px;}
.ws8{word-spacing:7.830604px;}
.ws89{word-spacing:8.069706px;}
.ws6c{word-spacing:8.428360px;}
.ws9a{word-spacing:8.667462px;}
.ws1d{word-spacing:8.727238px;}
.ws2{word-spacing:8.787013px;}
.ws5e{word-spacing:8.966340px;}
.wsb{word-spacing:9.026116px;}
.ws17{word-spacing:9.145667px;}
.ws60{word-spacing:9.265218px;}
.ws97{word-spacing:9.384769px;}
.ws96{word-spacing:9.407358px;}
.ws25{word-spacing:9.444545px;}
.ws22{word-spacing:9.922750px;}
.ws9c{word-spacing:10.042301px;}
.ws1f{word-spacing:10.102076px;}
.ws8f{word-spacing:10.161852px;}
.ws91{word-spacing:10.580281px;}
.ws40{word-spacing:10.640057px;}
.ws3f{word-spacing:10.654867px;}
.ws2e{word-spacing:10.819384px;}
.ws77{word-spacing:11.178037px;}
.ws62{word-spacing:11.417140px;}
.ws24{word-spacing:11.955120px;}
.ws38{word-spacing:12.074671px;}
.ws37{word-spacing:12.134447px;}
.ws3a{word-spacing:12.536675px;}
.ws23{word-spacing:12.851754px;}
.ws8d{word-spacing:12.920335px;}
.ws8e{word-spacing:12.971305px;}
.ws32{word-spacing:13.090856px;}
.wsa2{word-spacing:13.449510px;}
.ws2b{word-spacing:14.107042px;}
.ws7b{word-spacing:14.585246px;}
.ws33{word-spacing:15.123227px;}
.ws7a{word-spacing:15.362329px;}
.ws3d{word-spacing:15.524316px;}
.ws7d{word-spacing:16.079636px;}
.ws4{word-spacing:17.155597px;}
.ws90{word-spacing:17.633802px;}
.ws52{word-spacing:19.666172px;}
.ws56{word-spacing:20.375220px;}
.ws57{word-spacing:20.383480px;}
.ws71{word-spacing:59.171975px;}
.ws13{word-spacing:59.176108px;}
.wsb4{word-spacing:59.181300px;}
.wsa8{word-spacing:66.645925px;}
.wsb7{word-spacing:66.649200px;}
.wsa6{word-spacing:66.651925px;}
.wsa7{word-spacing:66.653400px;}
.wsb6{word-spacing:66.655200px;}
.wsc2{word-spacing:71.641200px;}
.wsc0{word-spacing:71.647200px;}
.wsbe{word-spacing:79.109100px;}
.wsb0{word-spacing:81.593400px;}
.wsa5{word-spacing:84.908717px;}
.wsb5{word-spacing:86.581200px;}
.wsaf{word-spacing:91.543200px;}
.wsae{word-spacing:91.549200px;}
.wsb8{word-spacing:94.057200px;}
.wsbc{word-spacing:94.062900px;}
.wsb9{word-spacing:96.537000px;}
.wsba{word-spacing:108.999000px;}
.ws14{word-spacing:138.920700px;}
.ws44{word-spacing:142.804108px;}
.ws4c{word-spacing:144.537600px;}
.wsaa{word-spacing:151.318800px;}
.ws16{word-spacing:153.866700px;}
.wsac{word-spacing:156.310800px;}
.wsab{word-spacing:156.316800px;}
.wsbf{word-spacing:158.818825px;}
.wsc1{word-spacing:158.824825px;}
.wsbd{word-spacing:166.300825px;}
.wsbb{word-spacing:171.287725px;}
.ws15{word-spacing:198.690300px;}
.ws70{word-spacing:199.290024px;}
.ws74{word-spacing:215.365618px;}
.ws4b{word-spacing:222.604534px;}
.ws45{word-spacing:239.222150px;}
.ws4e{word-spacing:256.437523px;}
.ws47{word-spacing:275.745042px;}
.ws46{word-spacing:279.032700px;}
.ws49{word-spacing:308.920500px;}
.ws73{word-spacing:315.549523px;}
.wsa4{word-spacing:321.443945px;}
.ws4a{word-spacing:329.840767px;}
.ws75{word-spacing:338.144700px;}
.ws48{word-spacing:376.943940px;}
.ws4d{word-spacing:469.297242px;}
.ws72{word-spacing:507.433242px;}
.wsb3{word-spacing:579.917945px;}
.wsad{word-spacing:769.221059px;}
.wsb2{word-spacing:778.363943px;}
.wsa3{word-spacing:834.313943px;}
.wsa9{word-spacing:838.919408px;}
._0{margin-left:-7.919102px;}
._24{margin-left:-6.467808px;}
._a{margin-left:-5.439571px;}
._2{margin-left:-4.124516px;}
._1{margin-left:-2.151930px;}
._3{margin-left:-1.135728px;}
._31{width:2.451552px;}
._32{width:3.478202px;}
._b{width:11.587003px;}
._35{width:14.226593px;}
._25{width:16.438290px;}
._33{width:24.089567px;}
._34{width:29.887800px;}
._15{width:73.225309px;}
._38{width:74.234466px;}
._27{width:77.551972px;}
._39{width:86.583300px;}
._41{width:89.889308px;}
._43{width:96.539100px;}
._49{width:100.872608px;}
._37{width:104.860183px;}
._44{width:109.001100px;}
._22{width:117.756947px;}
._1c{width:123.613945px;}
._46{width:126.426900px;}
._6{width:152.132328px;}
._2c{width:156.132041px;}
._10{width:164.502650px;}
._23{width:167.490246px;}
._3d{width:171.266700px;}
._c{width:175.500168px;}
._4{width:179.268334px;}
._48{width:186.225625px;}
._47{width:197.077090px;}
._13{width:199.111538px;}
._8{width:203.001355px;}
._5{width:204.758400px;}
._45{width:211.247117px;}
._9{width:219.700200px;}
._e{width:226.787633px;}
._1e{width:236.829934px;}
._7{width:249.592200px;}
._20{width:254.284409px;}
._11{width:257.930712px;}
._14{width:262.831309px;}
._28{width:264.086873px;}
._3f{width:271.254860px;}
._19{width:289.910666px;}
._2e{width:312.265908px;}
._16{width:339.763517px;}
._1b{width:346.338833px;}
._1f{width:349.087500px;}
._29{width:357.994242px;}
._26{width:373.471354px;}
._36{width:377.395775px;}
._2a{width:382.976400px;}
._f{width:383.996450px;}
._2f{width:386.447518px;}
._d{width:388.479612px;}
._42{width:402.228059px;}
._1d{width:427.154434px;}
._3e{width:437.072375px;}
._12{width:443.772050px;}
._21{width:460.389667px;}
._30{width:470.310659px;}
._18{width:481.190383px;}
._17{width:483.582600px;}
._2d{width:487.587841px;}
._3b{width:503.454541px;}
._1a{width:512.872644px;}
._2b{width:539.114400px;}
._40{width:615.925775px;}
._3c{width:647.338627px;}
._3a{width:777.529867px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2a{bottom:135.000000px;}
.y29{bottom:149.944500px;}
.y51{bottom:151.438500px;}
.y50{bottom:167.877000px;}
.yc9{bottom:168.127500px;}
.y9f{bottom:172.797000px;}
.y28{bottom:175.971000px;}
.y4f{bottom:184.315500px;}
.yc8{bottom:184.566000px;}
.y27{bottom:192.409500px;}
.y4e{bottom:200.754000px;}
.yc7{bottom:201.004500px;}
.y9e{bottom:204.652500px;}
.y26{bottom:208.848000px;}
.y81{bottom:217.192500px;}
.y4d{bottom:221.053500px;}
.y9d{bottom:221.091000px;}
.yc6{bottom:222.676500px;}
.y25{bottom:225.286500px;}
.y80{bottom:233.629500px;}
.y4c{bottom:237.492000px;}
.y9c{bottom:237.529500px;}
.y24{bottom:241.725000px;}
.y7f{bottom:250.068000px;}
.y4b{bottom:253.930500px;}
.y9b{bottom:253.968000px;}
.yc5{bottom:254.874000px;}
.y7e{bottom:266.506500px;}
.y4a{bottom:270.369000px;}
.y9a{bottom:270.406500px;}
.y83{bottom:270.682500px;}
.yc4{bottom:271.312500px;}
.y23{bottom:277.878000px;}
.y7d{bottom:282.945000px;}
.y49{bottom:286.807500px;}
.y99{bottom:286.845000px;}
.yc3{bottom:287.751000px;}
.y22{bottom:294.315000px;}
.y7c{bottom:299.383500px;}
.y98{bottom:303.283500px;}
.yc2{bottom:304.188000px;}
.y48{bottom:307.108500px;}
.y7b{bottom:315.822000px;}
.yc1{bottom:320.626500px;}
.y47{bottom:323.545500px;}
.y97{bottom:324.642000px;}
.y21{bottom:326.296500px;}
.y7a{bottom:332.260500px;}
.yc0{bottom:337.065000px;}
.y46{bottom:339.984000px;}
.y20{bottom:343.332000px;}
.y79{bottom:349.332000px;}
.ybf{bottom:353.503500px;}
.y45{bottom:356.422500px;}
.y96{bottom:359.487000px;}
.y1f{bottom:360.367500px;}
.y78{bottom:365.770500px;}
.ybe{bottom:369.942000px;}
.y44{bottom:372.861000px;}
.y95{bottom:375.925500px;}
.y1e{bottom:377.404500px;}
.y77{bottom:382.209000px;}
.ybd{bottom:386.380500px;}
.y43{bottom:389.299500px;}
.y94{bottom:392.362500px;}
.y76{bottom:398.646000px;}
.ybc{bottom:402.819000px;}
.y42{bottom:405.738000px;}
.y93{bottom:408.801000px;}
.yea{bottom:410.014500px;}
.y1d{bottom:410.761500px;}
.ybb{bottom:419.257500px;}
.y75{bottom:421.467000px;}
.y92{bottom:425.239500px;}
.ye9{bottom:426.453000px;}
.y1c{bottom:427.200000px;}
.y41{bottom:428.280000px;}
.yba{bottom:435.696000px;}
.y91{bottom:441.678000px;}
.y1b{bottom:443.638500px;}
.ye8{bottom:447.373500px;}
.y40{bottom:449.391000px;}
.yb9{bottom:452.134500px;}
.y74{bottom:457.896000px;}
.y90{bottom:458.116500px;}
.y1a{bottom:460.077000px;}
.yb8{bottom:468.571500px;}
.y73{bottom:474.333000px;}
.y8f{bottom:474.555000px;}
.y19{bottom:476.515500px;}
.y3f{bottom:480.978000px;}
.ye7{bottom:481.744500px;}
.y72{bottom:490.771500px;}
.y8e{bottom:490.993500px;}
.yb7{bottom:491.488500px;}
.y18{bottom:492.954000px;}
.y3e{bottom:497.416500px;}
.ye6{bottom:498.183000px;}
.y71{bottom:507.210000px;}
.y8d{bottom:507.432000px;}
.yb6{bottom:507.927000px;}
.y17{bottom:509.392500px;}
.y3d{bottom:513.855000px;}
.ye5{bottom:514.621500px;}
.y70{bottom:523.648500px;}
.y8c{bottom:523.870500px;}
.yb5{bottom:524.365500px;}
.y16{bottom:525.831000px;}
.y3c{bottom:530.293500px;}
.ye4{bottom:531.060000px;}
.y6f{bottom:540.087000px;}
.yb4{bottom:540.804000px;}
.y15{bottom:542.268000px;}
.y3b{bottom:546.730500px;}
.y82{bottom:547.317000px;}
.ye3{bottom:547.498500px;}
.y6e{bottom:556.525500px;}
.yb3{bottom:557.242500px;}
.y14{bottom:558.706500px;}
.y3a{bottom:563.169000px;}
.y8b{bottom:563.292000px;}
.ye2{bottom:563.937000px;}
.y6d{bottom:572.964000px;}
.yb2{bottom:573.681000px;}
.y13{bottom:575.145000px;}
.y8a{bottom:579.730500px;}
.ye1{bottom:580.375500px;}
.y39{bottom:584.280000px;}
.yb1{bottom:594.357000px;}
.y6c{bottom:594.403500px;}
.y12{bottom:596.194500px;}
.ye0{bottom:596.814000px;}
.yb0{bottom:610.794000px;}
.y6b{bottom:610.842000px;}
.y38{bottom:618.856500px;}
.yaf{bottom:627.232500px;}
.y6a{bottom:627.280500px;}
.y11{bottom:630.703500px;}
.y37{bottom:635.295000px;}
.ydf{bottom:646.576500px;}
.y10{bottom:647.142000px;}
.yae{bottom:647.908500px;}
.y69{bottom:648.721500px;}
.y36{bottom:651.733500px;}
.yde{bottom:663.015000px;}
.yf{bottom:663.580500px;}
.yad{bottom:664.347000px;}
.y68{bottom:665.160000px;}
.y35{bottom:668.170500px;}
.ye{bottom:680.019000px;}
.yac{bottom:680.785500px;}
.y67{bottom:681.598500px;}
.y34{bottom:684.609000px;}
.ydd{bottom:694.398000px;}
.yd{bottom:696.457500px;}
.yab{bottom:697.224000px;}
.y33{bottom:701.047500px;}
.y66{bottom:703.038000px;}
.ydc{bottom:710.836500px;}
.yc{bottom:712.896000px;}
.y32{bottom:717.486000px;}
.yaa{bottom:717.898500px;}
.y65{bottom:719.476500px;}
.yb{bottom:729.334500px;}
.y31{bottom:733.924500px;}
.ya9{bottom:734.337000px;}
.y64{bottom:735.915000px;}
.ydb{bottom:742.816500px;}
.ya{bottom:745.815000px;}
.y30{bottom:750.363000px;}
.ya8{bottom:755.013000px;}
.y63{bottom:759.597000px;}
.yda{bottom:759.852000px;}
.y9{bottom:762.253500px;}
.y2f{bottom:766.801500px;}
.ya7{bottom:771.451500px;}
.yd9{bottom:776.887500px;}
.y8{bottom:778.692000px;}
.y62{bottom:782.416500px;}
.y2e{bottom:783.240000px;}
.ya6{bottom:792.126000px;}
.yd8{bottom:793.924500px;}
.y7{bottom:795.130500px;}
.y2d{bottom:799.678500px;}
.ya5{bottom:808.564500px;}
.yd7{bottom:810.960000px;}
.y6{bottom:811.569000px;}
.y2c{bottom:816.117000px;}
.yd6{bottom:819.180000px;}
.ya4{bottom:825.003000px;}
.y5{bottom:828.007500px;}
.y61{bottom:832.180500px;}
.y2b{bottom:832.617000px;}
.ya3{bottom:841.441500px;}
.y89{bottom:848.170500px;}
.y4{bottom:849.055500px;}
.ya2{bottom:857.880000px;}
.yd5{bottom:862.368000px;}
.y60{bottom:864.160500px;}
.y88{bottom:864.609000px;}
.ya1{bottom:874.318500px;}
.yd4{bottom:878.806500px;}
.y5f{bottom:880.599000px;}
.y87{bottom:881.047500px;}
.y5e{bottom:897.037500px;}
.ya0{bottom:897.235500px;}
.y86{bottom:897.486000px;}
.yd3{bottom:910.188000px;}
.y5d{bottom:913.476000px;}
.y85{bottom:913.924500px;}
.y5c{bottom:929.914500px;}
.yd2{bottom:942.168000px;}
.y5b{bottom:946.353000px;}
.yd1{bottom:959.205000px;}
.y5a{bottom:962.791500px;}
.y84{bottom:963.687000px;}
.yd0{bottom:976.240500px;}
.y3{bottom:976.852500px;}
.y59{bottom:979.228500px;}
.ycf{bottom:993.276000px;}
.y58{bottom:995.667000px;}
.y2{bottom:1000.762500px;}
.yce{bottom:1010.313000px;}
.y57{bottom:1012.105500px;}
.y1{bottom:1024.674000px;}
.ycd{bottom:1027.348500px;}
.y56{bottom:1028.544000px;}
.ycc{bottom:1044.385500px;}
.y55{bottom:1044.982500px;}
.y54{bottom:1061.421000px;}
.y53{bottom:1077.859500px;}
.ycb{bottom:1078.456500px;}
.yca{bottom:1086.676500px;}
.y52{bottom:1094.895000px;}
.h5{height:37.013299px;}
.h3{height:41.125613px;}
.h4{height:41.484266px;}
.h6{height:45.425492px;}
.h2{height:49.781453px;}
.h1{height:59.737577px;}
.h7{height:74.358266px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:81.000000px;}
.x11{left:87.724500px;}
.x1b{left:90.564000px;}
.x13{left:94.903500px;}
.x6{left:95.944500px;}
.x12{left:100.426500px;}
.x9{left:107.544000px;}
.x2{left:124.303500px;}
.x17{left:137.269500px;}
.x7{left:148.137000px;}
.x18{left:153.808500px;}
.x1d{left:164.392500px;}
.x1a{left:174.439500px;}
.x15{left:196.467000px;}
.x4{left:202.248000px;}
.xf{left:224.904000px;}
.x16{left:228.462000px;}
.x10{left:234.274500px;}
.x8{left:244.236000px;}
.x1c{left:270.189000px;}
.x1{left:348.144000px;}
.x19{left:380.349000px;}
.x3{left:415.381500px;}
.xa{left:479.250000px;}
.x14{left:484.239000px;}
.xd{left:485.974500px;}
.xc{left:490.849500px;}
.xb{left:494.194500px;}
.xe{left:498.676500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.221333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:26.565813pt;}
.ws2f{word-spacing:-13.283467pt;}
.ws8a{word-spacing:-10.626800pt;}
.ws59{word-spacing:-2.922363pt;}
.ws95{word-spacing:-2.869229pt;}
.wsc7{word-spacing:-2.709827pt;}
.ws92{word-spacing:-2.656693pt;}
.ws11{word-spacing:-2.603559pt;}
.ws27{word-spacing:-2.550426pt;}
.ws69{word-spacing:-2.284756pt;}
.ws39{word-spacing:-2.072221pt;}
.ws94{word-spacing:-2.019087pt;}
.ws34{word-spacing:-1.965953pt;}
.ws8c{word-spacing:-1.912819pt;}
.ws43{word-spacing:-1.859685pt;}
.ws28{word-spacing:-1.753418pt;}
.wsa1{word-spacing:-1.717904pt;}
.ws99{word-spacing:-1.700284pt;}
.ws93{word-spacing:-1.647150pt;}
.ws7f{word-spacing:-1.594016pt;}
.ws5d{word-spacing:-1.540882pt;}
.wsb1{word-spacing:-1.487748pt;}
.ws7c{word-spacing:-1.434614pt;}
.ws42{word-spacing:-1.381481pt;}
.ws6f{word-spacing:-1.275213pt;}
.ws9d{word-spacing:-1.222079pt;}
.ws10{word-spacing:-1.168945pt;}
.ws2a{word-spacing:-0.850142pt;}
.ws54{word-spacing:-0.692326pt;}
.ws7{word-spacing:-0.690740pt;}
.ws1a{word-spacing:-0.637606pt;}
.ws68{word-spacing:-0.531339pt;}
.wsc{word-spacing:-0.478205pt;}
.ws63{word-spacing:-0.425071pt;}
.ws5b{word-spacing:-0.371937pt;}
.ws85{word-spacing:-0.265669pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws36{word-spacing:-0.159402pt;}
.ws0{word-spacing:0.000000pt;}
.ws67{word-spacing:0.106268pt;}
.ws9e{word-spacing:0.159402pt;}
.ws41{word-spacing:0.212535pt;}
.ws78{word-spacing:0.265669pt;}
.ws80{word-spacing:0.318803pt;}
.ws29{word-spacing:0.371937pt;}
.ws83{word-spacing:0.425071pt;}
.ws55{word-spacing:0.531339pt;}
.ws3c{word-spacing:0.552640pt;}
.ws3e{word-spacing:0.584473pt;}
.ws12{word-spacing:0.743874pt;}
.ws66{word-spacing:0.797008pt;}
.wsc4{word-spacing:0.903276pt;}
.ws51{word-spacing:0.956410pt;}
.ws64{word-spacing:1.009543pt;}
.ws2d{word-spacing:1.062677pt;}
.wsc3{word-spacing:1.328347pt;}
.ws9{word-spacing:1.381481pt;}
.ws21{word-spacing:1.647150pt;}
.ws1b{word-spacing:1.753418pt;}
.wsf{word-spacing:1.859685pt;}
.wsa0{word-spacing:1.991508pt;}
.ws19{word-spacing:2.019087pt;}
.ws26{word-spacing:2.125355pt;}
.ws61{word-spacing:2.178489pt;}
.ws6e{word-spacing:2.231622pt;}
.ws6a{word-spacing:2.337890pt;}
.ws6b{word-spacing:2.391024pt;}
.wsc6{word-spacing:2.550426pt;}
.ws9f{word-spacing:2.656693pt;}
.ws1c{word-spacing:2.725786pt;}
.ws6{word-spacing:2.762961pt;}
.wsc5{word-spacing:2.869229pt;}
.ws65{word-spacing:2.922363pt;}
.ws30{word-spacing:2.967377pt;}
.ws31{word-spacing:2.975497pt;}
.ws87{word-spacing:3.081764pt;}
.ws1{word-spacing:3.188032pt;}
.ws81{word-spacing:3.241166pt;}
.wsd{word-spacing:3.347434pt;}
.ws18{word-spacing:3.613103pt;}
.ws9b{word-spacing:3.666237pt;}
.ws5c{word-spacing:3.825638pt;}
.ws35{word-spacing:3.878772pt;}
.ws76{word-spacing:4.091308pt;}
.ws3b{word-spacing:4.250709pt;}
.ws86{word-spacing:4.303843pt;}
.ws8b{word-spacing:4.356977pt;}
.wsa{word-spacing:4.410111pt;}
.ws58{word-spacing:4.463245pt;}
.ws88{word-spacing:4.675780pt;}
.ws1e{word-spacing:4.728914pt;}
.ws7e{word-spacing:4.782048pt;}
.ws6d{word-spacing:4.835182pt;}
.ws5{word-spacing:4.888316pt;}
.ws5a{word-spacing:4.941450pt;}
.ws3{word-spacing:5.047717pt;}
.ws5f{word-spacing:5.153985pt;}
.ws98{word-spacing:5.260253pt;}
.ws82{word-spacing:5.525922pt;}
.ws84{word-spacing:5.685324pt;}
.ws53{word-spacing:6.110395pt;}
.ws20{word-spacing:6.376064pt;}
.wse{word-spacing:6.588599pt;}
.ws79{word-spacing:6.694867pt;}
.ws4f{word-spacing:6.886689pt;}
.ws50{word-spacing:6.907403pt;}
.ws8{word-spacing:6.960537pt;}
.ws89{word-spacing:7.173072pt;}
.ws6c{word-spacing:7.491875pt;}
.ws9a{word-spacing:7.704411pt;}
.ws1d{word-spacing:7.757545pt;}
.ws2{word-spacing:7.810678pt;}
.ws5e{word-spacing:7.970080pt;}
.wsb{word-spacing:8.023214pt;}
.ws17{word-spacing:8.129482pt;}
.ws60{word-spacing:8.235749pt;}
.ws97{word-spacing:8.342017pt;}
.ws96{word-spacing:8.362096pt;}
.ws25{word-spacing:8.395151pt;}
.ws22{word-spacing:8.820222pt;}
.ws9c{word-spacing:8.926490pt;}
.ws1f{word-spacing:8.979623pt;}
.ws8f{word-spacing:9.032757pt;}
.ws91{word-spacing:9.404694pt;}
.ws40{word-spacing:9.457828pt;}
.ws3f{word-spacing:9.470993pt;}
.ws2e{word-spacing:9.617230pt;}
.ws77{word-spacing:9.936033pt;}
.ws62{word-spacing:10.148569pt;}
.ws24{word-spacing:10.626773pt;}
.ws38{word-spacing:10.733041pt;}
.ws37{word-spacing:10.786175pt;}
.ws3a{word-spacing:11.143711pt;}
.ws23{word-spacing:11.423781pt;}
.ws8d{word-spacing:11.484742pt;}
.ws8e{word-spacing:11.530049pt;}
.ws32{word-spacing:11.636317pt;}
.wsa2{word-spacing:11.955120pt;}
.ws2b{word-spacing:12.539593pt;}
.ws7b{word-spacing:12.964663pt;}
.ws33{word-spacing:13.442868pt;}
.ws7a{word-spacing:13.655404pt;}
.ws3d{word-spacing:13.799392pt;}
.ws7d{word-spacing:14.293010pt;}
.ws4{word-spacing:15.249420pt;}
.ws90{word-spacing:15.674491pt;}
.ws52{word-spacing:17.481042pt;}
.ws56{word-spacing:18.111307pt;}
.ws57{word-spacing:18.118649pt;}
.ws71{word-spacing:52.597311pt;}
.ws13{word-spacing:52.600985pt;}
.wsb4{word-spacing:52.605600pt;}
.wsa8{word-spacing:59.240822pt;}
.wsb7{word-spacing:59.243733pt;}
.wsa6{word-spacing:59.246156pt;}
.wsa7{word-spacing:59.247467pt;}
.wsb6{word-spacing:59.249067pt;}
.wsc2{word-spacing:63.681067pt;}
.wsc0{word-spacing:63.686400pt;}
.wsbe{word-spacing:70.319200pt;}
.wsb0{word-spacing:72.527467pt;}
.wsa5{word-spacing:75.474415pt;}
.wsb5{word-spacing:76.961067pt;}
.wsaf{word-spacing:81.371733pt;}
.wsae{word-spacing:81.377067pt;}
.wsb8{word-spacing:83.606400pt;}
.wsbc{word-spacing:83.611467pt;}
.wsb9{word-spacing:85.810667pt;}
.wsba{word-spacing:96.888000pt;}
.ws14{word-spacing:123.485067pt;}
.ws44{word-spacing:126.936985pt;}
.ws4c{word-spacing:128.477867pt;}
.wsaa{word-spacing:134.505600pt;}
.ws16{word-spacing:136.770400pt;}
.wsac{word-spacing:138.942933pt;}
.wsab{word-spacing:138.948267pt;}
.wsbf{word-spacing:141.172289pt;}
.wsc1{word-spacing:141.177622pt;}
.wsbd{word-spacing:147.822956pt;}
.wsbb{word-spacing:152.255756pt;}
.ws15{word-spacing:176.613600pt;}
.ws70{word-spacing:177.146688pt;}
.ws74{word-spacing:191.436105pt;}
.ws4b{word-spacing:197.870697pt;}
.ws45{word-spacing:212.641911pt;}
.ws4e{word-spacing:227.944465pt;}
.ws47{word-spacing:245.106704pt;}
.ws46{word-spacing:248.029067pt;}
.ws49{word-spacing:274.596000pt;}
.ws73{word-spacing:280.488465pt;}
.wsa4{word-spacing:285.727951pt;}
.ws4a{word-spacing:293.191793pt;}
.ws75{word-spacing:300.573067pt;}
.ws48{word-spacing:335.061280pt;}
.ws4d{word-spacing:417.153104pt;}
.ws72{word-spacing:451.051771pt;}
.wsb3{word-spacing:515.482618pt;}
.wsad{word-spacing:683.752052pt;}
.wsb2{word-spacing:691.879060pt;}
.wsa3{word-spacing:741.612394pt;}
.wsa9{word-spacing:745.706141pt;}
._0{margin-left:-7.039202pt;}
._24{margin-left:-5.749163pt;}
._a{margin-left:-4.835174pt;}
._2{margin-left:-3.666237pt;}
._1{margin-left:-1.912827pt;}
._3{margin-left:-1.009536pt;}
._31{width:2.179157pt;}
._32{width:3.091735pt;}
._b{width:10.299558pt;}
._35{width:12.645860pt;}
._25{width:14.611813pt;}
._33{width:21.412948pt;}
._34{width:26.566933pt;}
._15{width:65.089164pt;}
._38{width:65.986192pt;}
._27{width:68.935086pt;}
._39{width:76.962933pt;}
._41{width:79.901607pt;}
._43{width:85.812533pt;}
._49{width:89.664541pt;}
._37{width:93.209052pt;}
._44{width:96.889867pt;}
._22{width:104.672842pt;}
._1c{width:109.879062pt;}
._46{width:112.379467pt;}
._6{width:135.228736pt;}
._2c{width:138.784036pt;}
._10{width:146.224578pt;}
._23{width:148.880219pt;}
._3d{width:152.237067pt;}
._c{width:156.000149pt;}
._4{width:159.349630pt;}
._48{width:165.533889pt;}
._47{width:175.179635pt;}
._13{width:176.988034pt;}
._8{width:180.445649pt;}
._5{width:182.007467pt;}
._45{width:187.775215pt;}
._9{width:195.289067pt;}
._e{width:201.589007pt;}
._1e{width:210.515497pt;}
._7{width:221.859733pt;}
._20{width:226.030586pt;}
._11{width:229.271744pt;}
._14{width:233.627830pt;}
._28{width:234.743887pt;}
._3f{width:241.115431pt;}
._19{width:257.698370pt;}
._2e{width:277.569696pt;}
._16{width:302.012015pt;}
._1b{width:307.856740pt;}
._1f{width:310.300000pt;}
._29{width:318.217104pt;}
._26{width:331.974537pt;}
._36{width:335.462911pt;}
._2a{width:340.423467pt;}
._f{width:341.330178pt;}
._2f{width:343.508905pt;}
._d{width:345.315211pt;}
._42{width:357.536052pt;}
._1d{width:379.692830pt;}
._3e{width:388.508778pt;}
._12{width:394.464045pt;}
._21{width:409.235260pt;}
._30{width:418.053919pt;}
._18{width:427.724785pt;}
._17{width:429.851200pt;}
._2d{width:433.411414pt;}
._3b{width:447.515148pt;}
._1a{width:455.886795pt;}
._2b{width:479.212800pt;}
._40{width:547.489578pt;}
._3c{width:575.412113pt;}
._3a{width:691.137660pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:120.000000pt;}
.y29{bottom:133.284000pt;}
.y51{bottom:134.612000pt;}
.y50{bottom:149.224000pt;}
.yc9{bottom:149.446667pt;}
.y9f{bottom:153.597333pt;}
.y28{bottom:156.418667pt;}
.y4f{bottom:163.836000pt;}
.yc8{bottom:164.058667pt;}
.y27{bottom:171.030667pt;}
.y4e{bottom:178.448000pt;}
.yc7{bottom:178.670667pt;}
.y9e{bottom:181.913333pt;}
.y26{bottom:185.642667pt;}
.y81{bottom:193.060000pt;}
.y4d{bottom:196.492000pt;}
.y9d{bottom:196.525333pt;}
.yc6{bottom:197.934667pt;}
.y25{bottom:200.254667pt;}
.y80{bottom:207.670667pt;}
.y4c{bottom:211.104000pt;}
.y9c{bottom:211.137333pt;}
.y24{bottom:214.866667pt;}
.y7f{bottom:222.282667pt;}
.y4b{bottom:225.716000pt;}
.y9b{bottom:225.749333pt;}
.yc5{bottom:226.554667pt;}
.y7e{bottom:236.894667pt;}
.y4a{bottom:240.328000pt;}
.y9a{bottom:240.361333pt;}
.y83{bottom:240.606667pt;}
.yc4{bottom:241.166667pt;}
.y23{bottom:247.002667pt;}
.y7d{bottom:251.506667pt;}
.y49{bottom:254.940000pt;}
.y99{bottom:254.973333pt;}
.yc3{bottom:255.778667pt;}
.y22{bottom:261.613333pt;}
.y7c{bottom:266.118667pt;}
.y98{bottom:269.585333pt;}
.yc2{bottom:270.389333pt;}
.y48{bottom:272.985333pt;}
.y7b{bottom:280.730667pt;}
.yc1{bottom:285.001333pt;}
.y47{bottom:287.596000pt;}
.y97{bottom:288.570667pt;}
.y21{bottom:290.041333pt;}
.y7a{bottom:295.342667pt;}
.yc0{bottom:299.613333pt;}
.y46{bottom:302.208000pt;}
.y20{bottom:305.184000pt;}
.y79{bottom:310.517333pt;}
.ybf{bottom:314.225333pt;}
.y45{bottom:316.820000pt;}
.y96{bottom:319.544000pt;}
.y1f{bottom:320.326667pt;}
.y78{bottom:325.129333pt;}
.ybe{bottom:328.837333pt;}
.y44{bottom:331.432000pt;}
.y95{bottom:334.156000pt;}
.y1e{bottom:335.470667pt;}
.y77{bottom:339.741333pt;}
.ybd{bottom:343.449333pt;}
.y43{bottom:346.044000pt;}
.y94{bottom:348.766667pt;}
.y76{bottom:354.352000pt;}
.ybc{bottom:358.061333pt;}
.y42{bottom:360.656000pt;}
.y93{bottom:363.378667pt;}
.yea{bottom:364.457333pt;}
.y1d{bottom:365.121333pt;}
.ybb{bottom:372.673333pt;}
.y75{bottom:374.637333pt;}
.y92{bottom:377.990667pt;}
.ye9{bottom:379.069333pt;}
.y1c{bottom:379.733333pt;}
.y41{bottom:380.693333pt;}
.yba{bottom:387.285333pt;}
.y91{bottom:392.602667pt;}
.y1b{bottom:394.345333pt;}
.ye8{bottom:397.665333pt;}
.y40{bottom:399.458667pt;}
.yb9{bottom:401.897333pt;}
.y74{bottom:407.018667pt;}
.y90{bottom:407.214667pt;}
.y1a{bottom:408.957333pt;}
.yb8{bottom:416.508000pt;}
.y73{bottom:421.629333pt;}
.y8f{bottom:421.826667pt;}
.y19{bottom:423.569333pt;}
.y3f{bottom:427.536000pt;}
.ye7{bottom:428.217333pt;}
.y72{bottom:436.241333pt;}
.y8e{bottom:436.438667pt;}
.yb7{bottom:436.878667pt;}
.y18{bottom:438.181333pt;}
.y3e{bottom:442.148000pt;}
.ye6{bottom:442.829333pt;}
.y71{bottom:450.853333pt;}
.y8d{bottom:451.050667pt;}
.yb6{bottom:451.490667pt;}
.y17{bottom:452.793333pt;}
.y3d{bottom:456.760000pt;}
.ye5{bottom:457.441333pt;}
.y70{bottom:465.465333pt;}
.y8c{bottom:465.662667pt;}
.yb5{bottom:466.102667pt;}
.y16{bottom:467.405333pt;}
.y3c{bottom:471.372000pt;}
.ye4{bottom:472.053333pt;}
.y6f{bottom:480.077333pt;}
.yb4{bottom:480.714667pt;}
.y15{bottom:482.016000pt;}
.y3b{bottom:485.982667pt;}
.y82{bottom:486.504000pt;}
.ye3{bottom:486.665333pt;}
.y6e{bottom:494.689333pt;}
.yb3{bottom:495.326667pt;}
.y14{bottom:496.628000pt;}
.y3a{bottom:500.594667pt;}
.y8b{bottom:500.704000pt;}
.ye2{bottom:501.277333pt;}
.y6d{bottom:509.301333pt;}
.yb2{bottom:509.938667pt;}
.y13{bottom:511.240000pt;}
.y8a{bottom:515.316000pt;}
.ye1{bottom:515.889333pt;}
.y39{bottom:519.360000pt;}
.yb1{bottom:528.317333pt;}
.y6c{bottom:528.358667pt;}
.y12{bottom:529.950667pt;}
.ye0{bottom:530.501333pt;}
.yb0{bottom:542.928000pt;}
.y6b{bottom:542.970667pt;}
.y38{bottom:550.094667pt;}
.yaf{bottom:557.540000pt;}
.y6a{bottom:557.582667pt;}
.y11{bottom:560.625333pt;}
.y37{bottom:564.706667pt;}
.ydf{bottom:574.734667pt;}
.y10{bottom:575.237333pt;}
.yae{bottom:575.918667pt;}
.y69{bottom:576.641333pt;}
.y36{bottom:579.318667pt;}
.yde{bottom:589.346667pt;}
.yf{bottom:589.849333pt;}
.yad{bottom:590.530667pt;}
.y68{bottom:591.253333pt;}
.y35{bottom:593.929333pt;}
.ye{bottom:604.461333pt;}
.yac{bottom:605.142667pt;}
.y67{bottom:605.865333pt;}
.y34{bottom:608.541333pt;}
.ydd{bottom:617.242667pt;}
.yd{bottom:619.073333pt;}
.yab{bottom:619.754667pt;}
.y33{bottom:623.153333pt;}
.y66{bottom:624.922667pt;}
.ydc{bottom:631.854667pt;}
.yc{bottom:633.685333pt;}
.y32{bottom:637.765333pt;}
.yaa{bottom:638.132000pt;}
.y65{bottom:639.534667pt;}
.yb{bottom:648.297333pt;}
.y31{bottom:652.377333pt;}
.ya9{bottom:652.744000pt;}
.y64{bottom:654.146667pt;}
.ydb{bottom:660.281333pt;}
.ya{bottom:662.946667pt;}
.y30{bottom:666.989333pt;}
.ya8{bottom:671.122667pt;}
.y63{bottom:675.197333pt;}
.yda{bottom:675.424000pt;}
.y9{bottom:677.558667pt;}
.y2f{bottom:681.601333pt;}
.ya7{bottom:685.734667pt;}
.yd9{bottom:690.566667pt;}
.y8{bottom:692.170667pt;}
.y62{bottom:695.481333pt;}
.y2e{bottom:696.213333pt;}
.ya6{bottom:704.112000pt;}
.yd8{bottom:705.710667pt;}
.y7{bottom:706.782667pt;}
.y2d{bottom:710.825333pt;}
.ya5{bottom:718.724000pt;}
.yd7{bottom:720.853333pt;}
.y6{bottom:721.394667pt;}
.y2c{bottom:725.437333pt;}
.yd6{bottom:728.160000pt;}
.ya4{bottom:733.336000pt;}
.y5{bottom:736.006667pt;}
.y61{bottom:739.716000pt;}
.y2b{bottom:740.104000pt;}
.ya3{bottom:747.948000pt;}
.y89{bottom:753.929333pt;}
.y4{bottom:754.716000pt;}
.ya2{bottom:762.560000pt;}
.yd5{bottom:766.549333pt;}
.y60{bottom:768.142667pt;}
.y88{bottom:768.541333pt;}
.ya1{bottom:777.172000pt;}
.yd4{bottom:781.161333pt;}
.y5f{bottom:782.754667pt;}
.y87{bottom:783.153333pt;}
.y5e{bottom:797.366667pt;}
.ya0{bottom:797.542667pt;}
.y86{bottom:797.765333pt;}
.yd3{bottom:809.056000pt;}
.y5d{bottom:811.978667pt;}
.y85{bottom:812.377333pt;}
.y5c{bottom:826.590667pt;}
.yd2{bottom:837.482667pt;}
.y5b{bottom:841.202667pt;}
.yd1{bottom:852.626667pt;}
.y5a{bottom:855.814667pt;}
.y84{bottom:856.610667pt;}
.yd0{bottom:867.769333pt;}
.y3{bottom:868.313333pt;}
.y59{bottom:870.425333pt;}
.ycf{bottom:882.912000pt;}
.y58{bottom:885.037333pt;}
.y2{bottom:889.566667pt;}
.yce{bottom:898.056000pt;}
.y57{bottom:899.649333pt;}
.y1{bottom:910.821333pt;}
.ycd{bottom:913.198667pt;}
.y56{bottom:914.261333pt;}
.ycc{bottom:928.342667pt;}
.y55{bottom:928.873333pt;}
.y54{bottom:943.485333pt;}
.y53{bottom:958.097333pt;}
.ycb{bottom:958.628000pt;}
.yca{bottom:965.934667pt;}
.y52{bottom:973.240000pt;}
.h5{height:32.900710pt;}
.h3{height:36.556100pt;}
.h4{height:36.874903pt;}
.h6{height:40.378215pt;}
.h2{height:44.250180pt;}
.h1{height:53.100068pt;}
.h7{height:66.096237pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:72.000000pt;}
.x11{left:77.977333pt;}
.x1b{left:80.501333pt;}
.x13{left:84.358667pt;}
.x6{left:85.284000pt;}
.x12{left:89.268000pt;}
.x9{left:95.594667pt;}
.x2{left:110.492000pt;}
.x17{left:122.017333pt;}
.x7{left:131.677333pt;}
.x18{left:136.718667pt;}
.x1d{left:146.126667pt;}
.x1a{left:155.057333pt;}
.x15{left:174.637333pt;}
.x4{left:179.776000pt;}
.xf{left:199.914667pt;}
.x16{left:203.077333pt;}
.x10{left:208.244000pt;}
.x8{left:217.098667pt;}
.x1c{left:240.168000pt;}
.x1{left:309.461333pt;}
.x19{left:338.088000pt;}
.x3{left:369.228000pt;}
.xa{left:426.000000pt;}
.x14{left:430.434667pt;}
.xd{left:431.977333pt;}
.xc{left:436.310667pt;}
.xb{left:439.284000pt;}
.xe{left:443.268000pt;}
}




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