
    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_ac4cab8eff60d20b86cb946d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_1f4fa623c37100b746b79841.woff')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_99b9a8ceb08c69fd79aebbba.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6547bc1e2e0367a304f2211c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_9be7d7b0764a153c5ce273fb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.234000;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_ea3c245a6c90ea105b45e0d0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f97e576f342c7d807716a3a2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.806000;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_0ec94004d812543027c415f3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000538px;}
.ls3{letter-spacing:0.003030px;}
.ls1{letter-spacing:0.003269px;}
.ls4{letter-spacing:16.629030px;}
.ls5{letter-spacing:16.634013px;}
.ls6{letter-spacing:22.917008px;}
.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;}
}
.ws15{word-spacing:-19.092327px;}
.ws1d{word-spacing:-16.605662px;}
.ws4c{word-spacing:-4.617656px;}
.ws73{word-spacing:-4.572445px;}
.ws60{word-spacing:-3.739878px;}
.ws12{word-spacing:-3.335478px;}
.ws77{word-spacing:-2.587853px;}
.ws49{word-spacing:-2.457623px;}
.ws3b{word-spacing:-2.405546px;}
.ws74{word-spacing:-2.139966px;}
.ws3d{word-spacing:-1.751214px;}
.ws38{word-spacing:-1.318454px;}
.ws61{word-spacing:-1.243332px;}
.ws4d{word-spacing:-1.064006px;}
.ws69{word-spacing:-0.767087px;}
.wsa8{word-spacing:-0.705352px;}
.ws85{word-spacing:-0.526025px;}
.ws84{word-spacing:-0.466250px;}
.wsa0{word-spacing:-0.227147px;}
.ws78{word-spacing:-0.107596px;}
.ws8{word-spacing:-0.059776px;}
.wsa5{word-spacing:-0.047820px;}
.ws28{word-spacing:0.000000px;}
.ws3c{word-spacing:0.071731px;}
.wsac{word-spacing:0.251058px;}
.ws96{word-spacing:0.434703px;}
.ws9f{word-spacing:0.609711px;}
.ws3e{word-spacing:0.729262px;}
.ws6e{word-spacing:0.763279px;}
.ws8b{word-spacing:0.801978px;}
.ws41{word-spacing:0.807921px;}
.ws47{word-spacing:0.822483px;}
.ws6c{word-spacing:0.830594px;}
.ws63{word-spacing:0.831231px;}
.ws66{word-spacing:0.833274px;}
.ws81{word-spacing:0.834499px;}
.wsad{word-spacing:0.836600px;}
.ws92{word-spacing:0.838389px;}
.ws5d{word-spacing:0.838489px;}
.ws65{word-spacing:0.839021px;}
.ws7a{word-spacing:0.839292px;}
.ws3a{word-spacing:0.840258px;}
.ws1c{word-spacing:0.840849px;}
.ws19{word-spacing:0.841305px;}
.ws52{word-spacing:0.841360px;}
.ws1a{word-spacing:0.841392px;}
.ws51{word-spacing:0.841431px;}
.ws8f{word-spacing:0.841654px;}
.ws82{word-spacing:0.842233px;}
.ws54{word-spacing:0.842606px;}
.ws53{word-spacing:0.842676px;}
.ws68{word-spacing:0.843607px;}
.ws20{word-spacing:0.844085px;}
.ws33{word-spacing:0.844115px;}
.ws1b{word-spacing:0.844262px;}
.ws70{word-spacing:0.844830px;}
.ws9b{word-spacing:0.845048px;}
.ws8e{word-spacing:0.845091px;}
.ws40{word-spacing:0.845241px;}
.ws79{word-spacing:0.845292px;}
.ws8c{word-spacing:0.846282px;}
.ws2a{word-spacing:0.847740px;}
.ws8d{word-spacing:0.848061px;}
.ws3f{word-spacing:0.852238px;}
.ws34{word-spacing:0.852600px;}
.ws58{word-spacing:0.853760px;}
.ws8a{word-spacing:0.855462px;}
.ws5e{word-spacing:0.855685px;}
.ws89{word-spacing:0.856331px;}
.ws67{word-spacing:0.856992px;}
.ws35{word-spacing:0.860908px;}
.ws5b{word-spacing:0.861506px;}
.ws75{word-spacing:0.908589px;}
.wsa1{word-spacing:0.968365px;}
.ws36{word-spacing:0.974774px;}
.wsb4{word-spacing:1.087916px;}
.ws39{word-spacing:1.147692px;}
.wsa3{word-spacing:1.446570px;}
.ws87{word-spacing:1.451795px;}
.ws6a{word-spacing:1.685672px;}
.ws9c{word-spacing:1.793260px;}
.ws9d{word-spacing:1.793407px;}
.wsb2{word-spacing:1.976600px;}
.wsaa{word-spacing:1.984550px;}
.wsa6{word-spacing:2.104101px;}
.wsa7{word-spacing:2.462755px;}
.ws64{word-spacing:2.655742px;}
.ws95{word-spacing:2.940960px;}
.ws6f{word-spacing:3.239838px;}
.ws9{word-spacing:3.299613px;}
.ws10{word-spacing:3.309892px;}
.ws91{word-spacing:3.314872px;}
.ws21{word-spacing:3.315353px;}
.ws17{word-spacing:3.318053px;}
.ws7{word-spacing:3.318892px;}
.ws1f{word-spacing:3.323338px;}
.ws3{word-spacing:3.359389px;}
.ws37{word-spacing:3.478940px;}
.ws2f{word-spacing:3.538716px;}
.ws97{word-spacing:3.777818px;}
.wsa{word-spacing:3.801728px;}
.wsd{word-spacing:3.821108px;}
.wsf{word-spacing:3.826852px;}
.wsc{word-spacing:3.837594px;}
.wsb{word-spacing:3.861504px;}
.ws5a{word-spacing:3.957145px;}
.ws4e{word-spacing:3.998055px;}
.ws98{word-spacing:4.016920px;}
.ws25{word-spacing:4.124415px;}
.ws23{word-spacing:4.135305px;}
.ws1e{word-spacing:4.136472px;}
.ws2b{word-spacing:4.196247px;}
.wsaf{word-spacing:4.364600px;}
.wsb1{word-spacing:4.435350px;}
.ws31{word-spacing:4.483200px;}
.ws59{word-spacing:4.519035px;}
.ws4f{word-spacing:4.733767px;}
.ws94{word-spacing:4.734228px;}
.ws13{word-spacing:4.891993px;}
.ws6{word-spacing:4.910933px;}
.ws80{word-spacing:4.913554px;}
.ws29{word-spacing:4.926150px;}
.ws2e{word-spacing:4.934146px;}
.ws2d{word-spacing:4.942798px;}
.ws2c{word-spacing:5.033106px;}
.ws2{word-spacing:5.092881px;}
.ws4{word-spacing:5.379825px;}
.ws30{word-spacing:5.391759px;}
.ws5{word-spacing:5.511310px;}
.ws83{word-spacing:5.629048px;}
.ws7e{word-spacing:5.647631px;}
.ws16{word-spacing:5.648013px;}
.ws45{word-spacing:5.649126px;}
.ws6b{word-spacing:5.653833px;}
.ws18{word-spacing:5.654013px;}
.wsa2{word-spacing:5.654688px;}
.wsab{word-spacing:5.655558px;}
.ws48{word-spacing:5.655579px;}
.ws5f{word-spacing:5.658250px;}
.wse{word-spacing:5.658342px;}
.ws86{word-spacing:5.659012px;}
.ws4a{word-spacing:5.659256px;}
.ws7c{word-spacing:5.659806px;}
.ws88{word-spacing:5.660431px;}
.ws6d{word-spacing:5.660437px;}
.ws11{word-spacing:5.660785px;}
.ws7d{word-spacing:5.662003px;}
.ws55{word-spacing:5.663292px;}
.ws4b{word-spacing:5.672338px;}
.wsa9{word-spacing:6.527496px;}
.ws22{word-spacing:6.587271px;}
.ws24{word-spacing:6.609807px;}
.ws26{word-spacing:6.647047px;}
.wsb0{word-spacing:6.826374px;}
.wsae{word-spacing:6.836196px;}
.ws50{word-spacing:7.244803px;}
.wsa4{word-spacing:7.364354px;}
.ws62{word-spacing:7.482342px;}
.ws42{word-spacing:7.482989px;}
.ws57{word-spacing:7.483147px;}
.ws72{word-spacing:7.483664px;}
.ws32{word-spacing:7.483697px;}
.ws76{word-spacing:7.483828px;}
.ws7b{word-spacing:7.485677px;}
.ws7f{word-spacing:7.490180px;}
.ws71{word-spacing:7.492128px;}
.ws56{word-spacing:7.494281px;}
.ws43{word-spacing:7.880793px;}
.ws99{word-spacing:8.141437px;}
.ws46{word-spacing:8.380539px;}
.ws27{word-spacing:8.798968px;}
.ws93{word-spacing:9.934705px;}
.ws44{word-spacing:10.412910px;}
.ws14{word-spacing:10.652012px;}
.ws90{word-spacing:12.863709px;}
.wsb3{word-spacing:13.401690px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:31.091012px;}
.ws5c{word-spacing:38.034777px;}
.ws9e{word-spacing:58.281600px;}
.ws9a{word-spacing:69.937725px;}
._2{margin-left:-10.742410px;}
._0{margin-left:-8.056807px;}
._3{margin-left:-6.635092px;}
._9{margin-left:-5.499355px;}
._c{margin-left:-4.423394px;}
._1{margin-left:-2.788895px;}
._5{margin-left:-1.613941px;}
._4{width:1.733492px;}
._f{width:3.168107px;}
._d{width:15.123227px;}
._17{width:16.988026px;}
._1d{width:18.226783px;}
._1b{width:19.439821px;}
._1c{width:20.916290px;}
._10{width:21.917087px;}
._7{width:23.133157px;}
._a{width:24.945553px;}
._b{width:26.602391px;}
._13{width:28.493613px;}
._e{width:29.869877px;}
._12{width:31.421407px;}
._8{width:33.139805px;}
._1a{width:35.157439px;}
._1e{width:36.224014px;}
._18{width:38.325546px;}
._19{width:40.438341px;}
._16{width:43.107750px;}
._14{width:46.804295px;}
._15{width:48.536577px;}
._11{width:80.697600px;}
._6{width:96.836850px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y25{bottom:40.207500px;}
.y8a{bottom:85.039500px;}
.yce{bottom:88.732500px;}
.y54{bottom:96.744000px;}
.y89{bottom:102.972000px;}
.ycd{bottom:106.666500px;}
.y53{bottom:114.678000px;}
.y24{bottom:117.639000px;}
.y88{bottom:120.904500px;}
.ycc{bottom:124.599000px;}
.y52{bottom:132.610500px;}
.y23{bottom:135.571500px;}
.yf6{bottom:135.849000px;}
.y87{bottom:138.837000px;}
.ya3{bottom:139.894500px;}
.ycb{bottom:142.531500px;}
.y51{bottom:150.543000px;}
.y22{bottom:153.504000px;}
.yf5{bottom:153.781500px;}
.y86{bottom:156.771000px;}
.ya2{bottom:157.828500px;}
.y50{bottom:168.475500px;}
.y21{bottom:171.436500px;}
.yf4{bottom:171.714000px;}
.y85{bottom:174.703500px;}
.yca{bottom:175.263000px;}
.ya1{bottom:175.761000px;}
.y20{bottom:189.370500px;}
.y84{bottom:192.636000px;}
.ya0{bottom:193.693500px;}
.yf3{bottom:199.297500px;}
.y4f{bottom:204.340500px;}
.y1f{bottom:207.303000px;}
.y83{bottom:210.568500px;}
.y9f{bottom:211.626000px;}
.y4e{bottom:222.274500px;}
.yc9{bottom:224.682000px;}
.y1e{bottom:225.235500px;}
.y82{bottom:228.501000px;}
.y4d{bottom:240.207000px;}
.yf2{bottom:241.131000px;}
.yc8{bottom:242.614500px;}
.y1d{bottom:243.168000px;}
.y81{bottom:246.433500px;}
.y9e{bottom:247.491000px;}
.y4c{bottom:258.139500px;}
.yf1{bottom:259.063500px;}
.yc7{bottom:260.547000px;}
.y1c{bottom:261.100500px;}
.y80{bottom:264.367500px;}
.y9d{bottom:265.425000px;}
.y4b{bottom:276.072000px;}
.yf0{bottom:276.996000px;}
.yc6{bottom:278.479500px;}
.y7f{bottom:282.300000px;}
.y9c{bottom:283.357500px;}
.y4a{bottom:294.004500px;}
.yc5{bottom:296.412000px;}
.y1b{bottom:296.967000px;}
.y7e{bottom:300.232500px;}
.y9b{bottom:301.290000px;}
.yef{bottom:304.579500px;}
.y49{bottom:311.937000px;}
.y1a{bottom:314.899500px;}
.y7d{bottom:318.165000px;}
.y9a{bottom:319.222500px;}
.yc4{bottom:323.997000px;}
.y48{bottom:329.871000px;}
.y19{bottom:332.832000px;}
.y7c{bottom:336.097500px;}
.y99{bottom:337.155000px;}
.yee{bottom:346.413000px;}
.y47{bottom:347.803500px;}
.y18{bottom:350.764500px;}
.y7b{bottom:354.030000px;}
.y98{bottom:355.087500px;}
.yed{bottom:364.345500px;}
.y46{bottom:365.736000px;}
.yc3{bottom:365.829000px;}
.y17{bottom:368.697000px;}
.y7a{bottom:371.964000px;}
.y97{bottom:373.021500px;}
.y45{bottom:383.668500px;}
.yc2{bottom:383.761500px;}
.y79{bottom:389.896500px;}
.y96{bottom:390.954000px;}
.yec{bottom:391.929000px;}
.y44{bottom:401.601000px;}
.y16{bottom:404.563500px;}
.y78{bottom:407.829000px;}
.y95{bottom:408.886500px;}
.yc1{bottom:411.346500px;}
.y43{bottom:419.533500px;}
.y15{bottom:422.496000px;}
.y77{bottom:425.761500px;}
.y94{bottom:426.819000px;}
.yeb{bottom:433.762500px;}
.y42{bottom:437.467500px;}
.y76{bottom:443.694000px;}
.y93{bottom:444.751500px;}
.yc0{bottom:453.178500px;}
.y14{bottom:455.227500px;}
.y41{bottom:455.400000px;}
.yea{bottom:461.346000px;}
.y75{bottom:461.626500px;}
.y92{bottom:462.684000px;}
.y40{bottom:473.332500px;}
.y74{bottom:479.560500px;}
.y91{bottom:480.618000px;}
.ybf{bottom:480.763500px;}
.y73{bottom:497.493000px;}
.y90{bottom:498.550500px;}
.ye9{bottom:503.179500px;}
.y13{bottom:504.646500px;}
.y3f{bottom:509.197500px;}
.y72{bottom:515.425500px;}
.ye8{bottom:521.112000px;}
.ybe{bottom:522.595500px;}
.y8f{bottom:534.415500px;}
.ye7{bottom:539.044500px;}
.y12{bottom:540.511500px;}
.ybd{bottom:540.528000px;}
.y3e{bottom:545.064000px;}
.y71{bottom:550.662000px;}
.y8e{bottom:552.348000px;}
.ye6{bottom:556.977000px;}
.y11{bottom:558.444000px;}
.ybc{bottom:558.460500px;}
.y3d{bottom:562.996500px;}
.y70{bottom:568.594500px;}
.ye5{bottom:574.909500px;}
.y10{bottom:576.376500px;}
.ybb{bottom:576.393000px;}
.y8d{bottom:579.933000px;}
.y6f{bottom:586.528500px;}
.y3c{bottom:590.580000px;}
.ye4{bottom:592.842000px;}
.yba{bottom:594.327000px;}
.y6e{bottom:604.461000px;}
.ye3{bottom:610.776000px;}
.yf{bottom:612.243000px;}
.yb9{bottom:612.259500px;}
.y8c{bottom:621.765000px;}
.y6d{bottom:622.393500px;}
.ye2{bottom:628.708500px;}
.ye{bottom:630.175500px;}
.yb8{bottom:630.192000px;}
.y3b{bottom:632.413500px;}
.y8b{bottom:639.697500px;}
.ye1{bottom:646.641000px;}
.yb7{bottom:648.124500px;}
.y3a{bottom:650.346000px;}
.y6c{bottom:657.630000px;}
.ye0{bottom:664.573500px;}
.yd{bottom:666.040500px;}
.yb6{bottom:666.057000px;}
.y6b{bottom:675.564000px;}
.y39{bottom:683.077500px;}
.yc{bottom:683.973000px;}
.yb5{bottom:683.989500px;}
.ydf{bottom:692.157000px;}
.y6a{bottom:693.496500px;}
.yb4{bottom:701.923500px;}
.y69{bottom:711.429000px;}
.yb{bottom:719.839500px;}
.yb3{bottom:719.856000px;}
.y68{bottom:729.361500px;}
.y38{bottom:732.495000px;}
.yde{bottom:733.990500px;}
.ya{bottom:737.772000px;}
.yb2{bottom:737.788500px;}
.y67{bottom:747.294000px;}
.y37{bottom:750.429000px;}
.ydd{bottom:751.923000px;}
.y9{bottom:755.704500px;}
.yb1{bottom:755.721000px;}
.y66{bottom:765.226500px;}
.y36{bottom:768.361500px;}
.ydc{bottom:769.855500px;}
.y8{bottom:773.637000px;}
.yb0{bottom:773.653500px;}
.y65{bottom:783.160500px;}
.y35{bottom:786.294000px;}
.ydb{bottom:787.788000px;}
.y7{bottom:791.569500px;}
.yaf{bottom:791.586000px;}
.y64{bottom:801.093000px;}
.y34{bottom:804.226500px;}
.yae{bottom:809.520000px;}
.yda{bottom:815.373000px;}
.y63{bottom:819.025500px;}
.y33{bottom:822.159000px;}
.y6{bottom:824.301000px;}
.y62{bottom:836.958000px;}
.y32{bottom:840.091500px;}
.yad{bottom:845.385000px;}
.y61{bottom:854.890500px;}
.yd9{bottom:857.205000px;}
.y31{bottom:858.025500px;}
.yac{bottom:863.317500px;}
.y60{bottom:872.823000px;}
.y5{bottom:873.720000px;}
.yd8{bottom:875.137500px;}
.y30{bottom:875.958000px;}
.yab{bottom:881.250000px;}
.y5f{bottom:890.757000px;}
.y4{bottom:891.652500px;}
.yd7{bottom:893.070000px;}
.y2f{bottom:893.890500px;}
.yfe{bottom:903.417000px;}
.y5e{bottom:908.689500px;}
.yd6{bottom:911.004000px;}
.y2e{bottom:911.823000px;}
.yaa{bottom:917.116500px;}
.y5d{bottom:926.622000px;}
.yd5{bottom:928.936500px;}
.y2d{bottom:929.755500px;}
.ya9{bottom:935.049000px;}
.y5c{bottom:944.554500px;}
.yd4{bottom:946.869000px;}
.y3{bottom:946.945500px;}
.y2c{bottom:947.688000px;}
.yfd{bottom:952.836000px;}
.ya8{bottom:952.981500px;}
.y5b{bottom:962.487000px;}
.yd3{bottom:964.801500px;}
.yfc{bottom:970.768500px;}
.ya7{bottom:970.914000px;}
.y5a{bottom:980.419500px;}
.y2{bottom:981.915000px;}
.yd2{bottom:982.734000px;}
.y2b{bottom:983.554500px;}
.yfb{bottom:988.701000px;}
.ya6{bottom:988.846500px;}
.y59{bottom:998.353500px;}
.yd1{bottom:1000.666500px;}
.y2a{bottom:1001.487000px;}
.yfa{bottom:1006.635000px;}
.y58{bottom:1016.286000px;}
.yd0{bottom:1018.600500px;}
.y29{bottom:1019.419500px;}
.yf9{bottom:1024.567500px;}
.ya5{bottom:1024.713000px;}
.y1{bottom:1025.251500px;}
.y57{bottom:1034.218500px;}
.y28{bottom:1037.352000px;}
.yf8{bottom:1042.500000px;}
.ycf{bottom:1046.184000px;}
.y56{bottom:1052.151000px;}
.ya4{bottom:1052.296500px;}
.y27{bottom:1055.286000px;}
.yf7{bottom:1060.432500px;}
.y55{bottom:1070.083500px;}
.y26{bottom:1088.016000px;}
.h3{height:44.831700px;}
.h7{height:44.837700px;}
.h5{height:44.891476px;}
.h2{height:50.498765px;}
.h6{height:53.798400px;}
.h4{height:64.557900px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:127.558500px;}
.x4{left:149.974500px;}
.x7{left:155.703000px;}
.x1{left:277.852500px;}
.x3{left:407.545500px;}
.x2{left:416.812500px;}
.x6{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000479pt;}
.ls3{letter-spacing:0.002693pt;}
.ls1{letter-spacing:0.002906pt;}
.ls4{letter-spacing:14.781360pt;}
.ls5{letter-spacing:14.785789pt;}
.ls6{letter-spacing:20.370673pt;}
.ws15{word-spacing:-16.970957pt;}
.ws1d{word-spacing:-14.760588pt;}
.ws4c{word-spacing:-4.104583pt;}
.ws73{word-spacing:-4.064396pt;}
.ws60{word-spacing:-3.324336pt;}
.ws12{word-spacing:-2.964870pt;}
.ws77{word-spacing:-2.300314pt;}
.ws49{word-spacing:-2.184554pt;}
.ws3b{word-spacing:-2.138263pt;}
.ws74{word-spacing:-1.902192pt;}
.ws3d{word-spacing:-1.556635pt;}
.ws38{word-spacing:-1.171959pt;}
.ws61{word-spacing:-1.105184pt;}
.ws4d{word-spacing:-0.945783pt;}
.ws69{word-spacing:-0.681855pt;}
.wsa8{word-spacing:-0.626980pt;}
.ws85{word-spacing:-0.467578pt;}
.ws84{word-spacing:-0.414444pt;}
.wsa0{word-spacing:-0.201909pt;}
.ws78{word-spacing:-0.095641pt;}
.ws8{word-spacing:-0.053134pt;}
.wsa5{word-spacing:-0.042507pt;}
.ws28{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.063761pt;}
.wsac{word-spacing:0.223162pt;}
.ws96{word-spacing:0.386403pt;}
.ws9f{word-spacing:0.541965pt;}
.ws3e{word-spacing:0.648233pt;}
.ws6e{word-spacing:0.678470pt;}
.ws8b{word-spacing:0.712869pt;}
.ws41{word-spacing:0.718152pt;}
.ws47{word-spacing:0.731096pt;}
.ws6c{word-spacing:0.738306pt;}
.ws63{word-spacing:0.738872pt;}
.ws66{word-spacing:0.740688pt;}
.ws81{word-spacing:0.741777pt;}
.wsad{word-spacing:0.743644pt;}
.ws92{word-spacing:0.745235pt;}
.ws5d{word-spacing:0.745323pt;}
.ws65{word-spacing:0.745796pt;}
.ws7a{word-spacing:0.746037pt;}
.ws3a{word-spacing:0.746896pt;}
.ws1c{word-spacing:0.747421pt;}
.ws19{word-spacing:0.747827pt;}
.ws52{word-spacing:0.747876pt;}
.ws1a{word-spacing:0.747904pt;}
.ws51{word-spacing:0.747938pt;}
.ws8f{word-spacing:0.748137pt;}
.ws82{word-spacing:0.748652pt;}
.ws54{word-spacing:0.748983pt;}
.ws53{word-spacing:0.749046pt;}
.ws68{word-spacing:0.749873pt;}
.ws20{word-spacing:0.750297pt;}
.ws33{word-spacing:0.750324pt;}
.ws1b{word-spacing:0.750455pt;}
.ws70{word-spacing:0.750960pt;}
.ws9b{word-spacing:0.751154pt;}
.ws8e{word-spacing:0.751192pt;}
.ws40{word-spacing:0.751325pt;}
.ws79{word-spacing:0.751371pt;}
.ws8c{word-spacing:0.752251pt;}
.ws2a{word-spacing:0.753547pt;}
.ws8d{word-spacing:0.753832pt;}
.ws3f{word-spacing:0.757545pt;}
.ws34{word-spacing:0.757867pt;}
.ws58{word-spacing:0.758898pt;}
.ws8a{word-spacing:0.760410pt;}
.ws5e{word-spacing:0.760609pt;}
.ws89{word-spacing:0.761183pt;}
.ws67{word-spacing:0.761770pt;}
.ws35{word-spacing:0.765252pt;}
.ws5b{word-spacing:0.765783pt;}
.ws75{word-spacing:0.807635pt;}
.wsa1{word-spacing:0.860769pt;}
.ws36{word-spacing:0.866465pt;}
.wsb4{word-spacing:0.967036pt;}
.ws39{word-spacing:1.020170pt;}
.wsa3{word-spacing:1.285840pt;}
.ws87{word-spacing:1.290484pt;}
.ws6a{word-spacing:1.498375pt;}
.ws9c{word-spacing:1.594009pt;}
.ws9d{word-spacing:1.594139pt;}
.wsb2{word-spacing:1.756978pt;}
.wsaa{word-spacing:1.764044pt;}
.wsa6{word-spacing:1.870312pt;}
.wsa7{word-spacing:2.189115pt;}
.ws64{word-spacing:2.360660pt;}
.ws95{word-spacing:2.614186pt;}
.ws6f{word-spacing:2.879856pt;}
.ws9{word-spacing:2.932989pt;}
.ws10{word-spacing:2.942126pt;}
.ws91{word-spacing:2.946553pt;}
.ws21{word-spacing:2.946981pt;}
.ws17{word-spacing:2.949381pt;}
.ws7{word-spacing:2.950127pt;}
.ws1f{word-spacing:2.954079pt;}
.ws3{word-spacing:2.986123pt;}
.ws37{word-spacing:3.092391pt;}
.ws2f{word-spacing:3.145525pt;}
.ws97{word-spacing:3.358060pt;}
.wsa{word-spacing:3.379314pt;}
.wsd{word-spacing:3.396541pt;}
.wsf{word-spacing:3.401646pt;}
.wsc{word-spacing:3.411194pt;}
.wsb{word-spacing:3.432448pt;}
.ws5a{word-spacing:3.517462pt;}
.ws4e{word-spacing:3.553827pt;}
.ws98{word-spacing:3.570596pt;}
.ws25{word-spacing:3.666147pt;}
.ws23{word-spacing:3.675827pt;}
.ws1e{word-spacing:3.676864pt;}
.ws2b{word-spacing:3.729997pt;}
.wsaf{word-spacing:3.879644pt;}
.wsb1{word-spacing:3.942533pt;}
.ws31{word-spacing:3.985067pt;}
.ws59{word-spacing:4.016920pt;}
.ws4f{word-spacing:4.207793pt;}
.ws94{word-spacing:4.208202pt;}
.ws13{word-spacing:4.348438pt;}
.ws6{word-spacing:4.365274pt;}
.ws80{word-spacing:4.367604pt;}
.ws29{word-spacing:4.378800pt;}
.ws2e{word-spacing:4.385908pt;}
.ws2d{word-spacing:4.393598pt;}
.ws2c{word-spacing:4.473872pt;}
.ws2{word-spacing:4.527005pt;}
.ws4{word-spacing:4.782067pt;}
.ws30{word-spacing:4.792675pt;}
.ws5{word-spacing:4.898943pt;}
.ws83{word-spacing:5.003598pt;}
.ws7e{word-spacing:5.020116pt;}
.ws16{word-spacing:5.020456pt;}
.ws45{word-spacing:5.021446pt;}
.ws6b{word-spacing:5.025630pt;}
.ws18{word-spacing:5.025790pt;}
.wsa2{word-spacing:5.026389pt;}
.wsab{word-spacing:5.027162pt;}
.ws48{word-spacing:5.027182pt;}
.ws5f{word-spacing:5.029556pt;}
.wse{word-spacing:5.029638pt;}
.ws86{word-spacing:5.030233pt;}
.ws4a{word-spacing:5.030450pt;}
.ws7c{word-spacing:5.030939pt;}
.ws88{word-spacing:5.031495pt;}
.ws6d{word-spacing:5.031500pt;}
.ws11{word-spacing:5.031809pt;}
.ws7d{word-spacing:5.032892pt;}
.ws55{word-spacing:5.034037pt;}
.ws4b{word-spacing:5.042078pt;}
.wsa9{word-spacing:5.802218pt;}
.ws22{word-spacing:5.855352pt;}
.ws24{word-spacing:5.875384pt;}
.ws26{word-spacing:5.908486pt;}
.wsb0{word-spacing:6.067888pt;}
.wsae{word-spacing:6.076618pt;}
.ws50{word-spacing:6.439825pt;}
.wsa4{word-spacing:6.546092pt;}
.ws62{word-spacing:6.650971pt;}
.ws42{word-spacing:6.651546pt;}
.ws57{word-spacing:6.651686pt;}
.ws72{word-spacing:6.652146pt;}
.ws32{word-spacing:6.652175pt;}
.ws76{word-spacing:6.652291pt;}
.ws7b{word-spacing:6.653935pt;}
.ws7f{word-spacing:6.657938pt;}
.ws71{word-spacing:6.659669pt;}
.ws56{word-spacing:6.661583pt;}
.ws43{word-spacing:7.005149pt;}
.ws99{word-spacing:7.236833pt;}
.ws46{word-spacing:7.449368pt;}
.ws27{word-spacing:7.821305pt;}
.ws93{word-spacing:8.830849pt;}
.ws44{word-spacing:9.255920pt;}
.ws14{word-spacing:9.468455pt;}
.ws90{word-spacing:11.434408pt;}
.wsb3{word-spacing:11.912613pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:27.636455pt;}
.ws5c{word-spacing:33.808691pt;}
.ws9e{word-spacing:51.805867pt;}
.ws9a{word-spacing:62.166867pt;}
._2{margin-left:-9.548809pt;}
._0{margin-left:-7.161606pt;}
._3{margin-left:-5.897859pt;}
._9{margin-left:-4.888316pt;}
._c{margin-left:-3.931906pt;}
._1{margin-left:-2.479018pt;}
._5{margin-left:-1.434614pt;}
._4{width:1.540882pt;}
._f{width:2.816095pt;}
._d{width:13.442868pt;}
._17{width:15.100468pt;}
._1d{width:16.201585pt;}
._1b{width:17.279841pt;}
._1c{width:18.592258pt;}
._10{width:19.481855pt;}
._7{width:20.562806pt;}
._a{width:22.173825pt;}
._b{width:23.646570pt;}
._13{width:25.327656pt;}
._e{width:26.551002pt;}
._12{width:27.930140pt;}
._8{width:29.457604pt;}
._1a{width:31.251057pt;}
._1e{width:32.199123pt;}
._18{width:34.067152pt;}
._19{width:35.945192pt;}
._16{width:38.318000pt;}
._14{width:41.603818pt;}
._15{width:43.143624pt;}
._11{width:71.731200pt;}
._6{width:86.077200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:35.740000pt;}
.y8a{bottom:75.590667pt;}
.yce{bottom:78.873333pt;}
.y54{bottom:85.994667pt;}
.y89{bottom:91.530667pt;}
.ycd{bottom:94.814667pt;}
.y53{bottom:101.936000pt;}
.y24{bottom:104.568000pt;}
.y88{bottom:107.470667pt;}
.ycc{bottom:110.754667pt;}
.y52{bottom:117.876000pt;}
.y23{bottom:120.508000pt;}
.yf6{bottom:120.754667pt;}
.y87{bottom:123.410667pt;}
.ya3{bottom:124.350667pt;}
.ycb{bottom:126.694667pt;}
.y51{bottom:133.816000pt;}
.y22{bottom:136.448000pt;}
.yf5{bottom:136.694667pt;}
.y86{bottom:139.352000pt;}
.ya2{bottom:140.292000pt;}
.y50{bottom:149.756000pt;}
.y21{bottom:152.388000pt;}
.yf4{bottom:152.634667pt;}
.y85{bottom:155.292000pt;}
.yca{bottom:155.789333pt;}
.ya1{bottom:156.232000pt;}
.y20{bottom:168.329333pt;}
.y84{bottom:171.232000pt;}
.ya0{bottom:172.172000pt;}
.yf3{bottom:177.153333pt;}
.y4f{bottom:181.636000pt;}
.y1f{bottom:184.269333pt;}
.y83{bottom:187.172000pt;}
.y9f{bottom:188.112000pt;}
.y4e{bottom:197.577333pt;}
.yc9{bottom:199.717333pt;}
.y1e{bottom:200.209333pt;}
.y82{bottom:203.112000pt;}
.y4d{bottom:213.517333pt;}
.yf2{bottom:214.338667pt;}
.yc8{bottom:215.657333pt;}
.y1d{bottom:216.149333pt;}
.y81{bottom:219.052000pt;}
.y9e{bottom:219.992000pt;}
.y4c{bottom:229.457333pt;}
.yf1{bottom:230.278667pt;}
.yc7{bottom:231.597333pt;}
.y1c{bottom:232.089333pt;}
.y80{bottom:234.993333pt;}
.y9d{bottom:235.933333pt;}
.y4b{bottom:245.397333pt;}
.yf0{bottom:246.218667pt;}
.yc6{bottom:247.537333pt;}
.y7f{bottom:250.933333pt;}
.y9c{bottom:251.873333pt;}
.y4a{bottom:261.337333pt;}
.yc5{bottom:263.477333pt;}
.y1b{bottom:263.970667pt;}
.y7e{bottom:266.873333pt;}
.y9b{bottom:267.813333pt;}
.yef{bottom:270.737333pt;}
.y49{bottom:277.277333pt;}
.y1a{bottom:279.910667pt;}
.y7d{bottom:282.813333pt;}
.y9a{bottom:283.753333pt;}
.yc4{bottom:287.997333pt;}
.y48{bottom:293.218667pt;}
.y19{bottom:295.850667pt;}
.y7c{bottom:298.753333pt;}
.y99{bottom:299.693333pt;}
.yee{bottom:307.922667pt;}
.y47{bottom:309.158667pt;}
.y18{bottom:311.790667pt;}
.y7b{bottom:314.693333pt;}
.y98{bottom:315.633333pt;}
.yed{bottom:323.862667pt;}
.y46{bottom:325.098667pt;}
.yc3{bottom:325.181333pt;}
.y17{bottom:327.730667pt;}
.y7a{bottom:330.634667pt;}
.y97{bottom:331.574667pt;}
.y45{bottom:341.038667pt;}
.yc2{bottom:341.121333pt;}
.y79{bottom:346.574667pt;}
.y96{bottom:347.514667pt;}
.yec{bottom:348.381333pt;}
.y44{bottom:356.978667pt;}
.y16{bottom:359.612000pt;}
.y78{bottom:362.514667pt;}
.y95{bottom:363.454667pt;}
.yc1{bottom:365.641333pt;}
.y43{bottom:372.918667pt;}
.y15{bottom:375.552000pt;}
.y77{bottom:378.454667pt;}
.y94{bottom:379.394667pt;}
.yeb{bottom:385.566667pt;}
.y42{bottom:388.860000pt;}
.y76{bottom:394.394667pt;}
.y93{bottom:395.334667pt;}
.yc0{bottom:402.825333pt;}
.y14{bottom:404.646667pt;}
.y41{bottom:404.800000pt;}
.yea{bottom:410.085333pt;}
.y75{bottom:410.334667pt;}
.y92{bottom:411.274667pt;}
.y40{bottom:420.740000pt;}
.y74{bottom:426.276000pt;}
.y91{bottom:427.216000pt;}
.ybf{bottom:427.345333pt;}
.y73{bottom:442.216000pt;}
.y90{bottom:443.156000pt;}
.ye9{bottom:447.270667pt;}
.y13{bottom:448.574667pt;}
.y3f{bottom:452.620000pt;}
.y72{bottom:458.156000pt;}
.ye8{bottom:463.210667pt;}
.ybe{bottom:464.529333pt;}
.y8f{bottom:475.036000pt;}
.ye7{bottom:479.150667pt;}
.y12{bottom:480.454667pt;}
.ybd{bottom:480.469333pt;}
.y3e{bottom:484.501333pt;}
.y71{bottom:489.477333pt;}
.y8e{bottom:490.976000pt;}
.ye6{bottom:495.090667pt;}
.y11{bottom:496.394667pt;}
.ybc{bottom:496.409333pt;}
.y3d{bottom:500.441333pt;}
.y70{bottom:505.417333pt;}
.ye5{bottom:511.030667pt;}
.y10{bottom:512.334667pt;}
.ybb{bottom:512.349333pt;}
.y8d{bottom:515.496000pt;}
.y6f{bottom:521.358667pt;}
.y3c{bottom:524.960000pt;}
.ye4{bottom:526.970667pt;}
.yba{bottom:528.290667pt;}
.y6e{bottom:537.298667pt;}
.ye3{bottom:542.912000pt;}
.yf{bottom:544.216000pt;}
.yb9{bottom:544.230667pt;}
.y8c{bottom:552.680000pt;}
.y6d{bottom:553.238667pt;}
.ye2{bottom:558.852000pt;}
.ye{bottom:560.156000pt;}
.yb8{bottom:560.170667pt;}
.y3b{bottom:562.145333pt;}
.y8b{bottom:568.620000pt;}
.ye1{bottom:574.792000pt;}
.yb7{bottom:576.110667pt;}
.y3a{bottom:578.085333pt;}
.y6c{bottom:584.560000pt;}
.ye0{bottom:590.732000pt;}
.yd{bottom:592.036000pt;}
.yb6{bottom:592.050667pt;}
.y6b{bottom:600.501333pt;}
.y39{bottom:607.180000pt;}
.yc{bottom:607.976000pt;}
.yb5{bottom:607.990667pt;}
.ydf{bottom:615.250667pt;}
.y6a{bottom:616.441333pt;}
.yb4{bottom:623.932000pt;}
.y69{bottom:632.381333pt;}
.yb{bottom:639.857333pt;}
.yb3{bottom:639.872000pt;}
.y68{bottom:648.321333pt;}
.y38{bottom:651.106667pt;}
.yde{bottom:652.436000pt;}
.ya{bottom:655.797333pt;}
.yb2{bottom:655.812000pt;}
.y67{bottom:664.261333pt;}
.y37{bottom:667.048000pt;}
.ydd{bottom:668.376000pt;}
.y9{bottom:671.737333pt;}
.yb1{bottom:671.752000pt;}
.y66{bottom:680.201333pt;}
.y36{bottom:682.988000pt;}
.ydc{bottom:684.316000pt;}
.y8{bottom:687.677333pt;}
.yb0{bottom:687.692000pt;}
.y65{bottom:696.142667pt;}
.y35{bottom:698.928000pt;}
.ydb{bottom:700.256000pt;}
.y7{bottom:703.617333pt;}
.yaf{bottom:703.632000pt;}
.y64{bottom:712.082667pt;}
.y34{bottom:714.868000pt;}
.yae{bottom:719.573333pt;}
.yda{bottom:724.776000pt;}
.y63{bottom:728.022667pt;}
.y33{bottom:730.808000pt;}
.y6{bottom:732.712000pt;}
.y62{bottom:743.962667pt;}
.y32{bottom:746.748000pt;}
.yad{bottom:751.453333pt;}
.y61{bottom:759.902667pt;}
.yd9{bottom:761.960000pt;}
.y31{bottom:762.689333pt;}
.yac{bottom:767.393333pt;}
.y60{bottom:775.842667pt;}
.y5{bottom:776.640000pt;}
.yd8{bottom:777.900000pt;}
.y30{bottom:778.629333pt;}
.yab{bottom:783.333333pt;}
.y5f{bottom:791.784000pt;}
.y4{bottom:792.580000pt;}
.yd7{bottom:793.840000pt;}
.y2f{bottom:794.569333pt;}
.yfe{bottom:803.037333pt;}
.y5e{bottom:807.724000pt;}
.yd6{bottom:809.781333pt;}
.y2e{bottom:810.509333pt;}
.yaa{bottom:815.214667pt;}
.y5d{bottom:823.664000pt;}
.yd5{bottom:825.721333pt;}
.y2d{bottom:826.449333pt;}
.ya9{bottom:831.154667pt;}
.y5c{bottom:839.604000pt;}
.yd4{bottom:841.661333pt;}
.y3{bottom:841.729333pt;}
.y2c{bottom:842.389333pt;}
.yfd{bottom:846.965333pt;}
.ya8{bottom:847.094667pt;}
.y5b{bottom:855.544000pt;}
.yd3{bottom:857.601333pt;}
.yfc{bottom:862.905333pt;}
.ya7{bottom:863.034667pt;}
.y5a{bottom:871.484000pt;}
.y2{bottom:872.813333pt;}
.yd2{bottom:873.541333pt;}
.y2b{bottom:874.270667pt;}
.yfb{bottom:878.845333pt;}
.ya6{bottom:878.974667pt;}
.y59{bottom:887.425333pt;}
.yd1{bottom:889.481333pt;}
.y2a{bottom:890.210667pt;}
.yfa{bottom:894.786667pt;}
.y58{bottom:903.365333pt;}
.yd0{bottom:905.422667pt;}
.y29{bottom:906.150667pt;}
.yf9{bottom:910.726667pt;}
.ya5{bottom:910.856000pt;}
.y1{bottom:911.334667pt;}
.y57{bottom:919.305333pt;}
.y28{bottom:922.090667pt;}
.yf8{bottom:926.666667pt;}
.ycf{bottom:929.941333pt;}
.y56{bottom:935.245333pt;}
.ya4{bottom:935.374667pt;}
.y27{bottom:938.032000pt;}
.yf7{bottom:942.606667pt;}
.y55{bottom:951.185333pt;}
.y26{bottom:967.125333pt;}
.h3{height:39.850400pt;}
.h7{height:39.855733pt;}
.h5{height:39.903534pt;}
.h2{height:44.887791pt;}
.h6{height:47.820800pt;}
.h4{height:57.384800pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.385333pt;}
.x4{left:133.310667pt;}
.x7{left:138.402667pt;}
.x1{left:246.980000pt;}
.x3{left:362.262667pt;}
.x2{left:370.500000pt;}
.x6{left:404.678667pt;}
}




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