
    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_5f9ce2730adad3497e5fd1e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_39f5df293382c7fffb63517e.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dcfce896958a194d158606c8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_cb2f41c56212b9f33905b645.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_ce6c31553aabf29bb1c64d3a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ad912bb03c278e489cc06383.woff')format("woff");}.ff6{font-family:ff6;line-height:0.383000;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_65f11f1e78879d835ca2e760.woff')format("woff");}.ff7{font-family:ff7;line-height:0.785000;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_c9ba49222843ad57b6953452.woff')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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:ff9;src:url('chunks/assets/font_9d0e3b2e0a6ac86202a27045.woff')format("woff");}.ff9{font-family:ff9;line-height:0.929000;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:ffa;src:url('chunks/assets/font_879a759223945dd7a99ff539.woff')format("woff");}.ffa{font-family:ffa;line-height:0.696000;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:ffb;src:url('chunks/assets/font_f3e732a20c06b94081fa2e69.woff')format("woff");}.ffb{font-family:ffb;line-height:0.046000;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:ffc;src:url('chunks/assets/font_2636b5c3f55cf8aae5c81564.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.616000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001695px;}
.lsc{letter-spacing:0.002915px;}
.lsa{letter-spacing:0.003056px;}
.ls15{letter-spacing:0.003763px;}
.ls9{letter-spacing:0.007188px;}
.ls6{letter-spacing:2.985072px;}
.ls5{letter-spacing:2.989289px;}
.ls4{letter-spacing:7.126787px;}
.lse{letter-spacing:7.492752px;}
.ls7{letter-spacing:11.953114px;}
.ls3{letter-spacing:19.925518px;}
.lsb{letter-spacing:26.396915px;}
.ls2{letter-spacing:27.046787px;}
.lsf{letter-spacing:30.532787px;}
.ls10{letter-spacing:34.258787px;}
.lsd{letter-spacing:35.042915px;}
.ls1{letter-spacing:35.117578px;}
.ls1c{letter-spacing:145.412915px;}
.ls1b{letter-spacing:241.262915px;}
.ls1a{letter-spacing:267.590915px;}
.ls19{letter-spacing:350.768915px;}
.ls18{letter-spacing:363.452915px;}
.ls17{letter-spacing:377.096915px;}
.ls16{letter-spacing:390.740915px;}
.ls13{letter-spacing:472.952915px;}
.ls14{letter-spacing:473.912915px;}
.ls12{letter-spacing:486.596915px;}
.ls11{letter-spacing:500.240915px;}
.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;}
}
.ws38{word-spacing:-45.664082px;}
.ws1c{word-spacing:-33.684972px;}
.ws1d{word-spacing:-33.211407px;}
.wsa{word-spacing:-32.278875px;}
.ws25{word-spacing:-22.416000px;}
.ws14{word-spacing:-19.510886px;}
.ws2a{word-spacing:-6.455775px;}
.ws5b{word-spacing:-3.837619px;}
.ws5c{word-spacing:-3.371366px;}
.ws61{word-spacing:-3.227904px;}
.ws3{word-spacing:-2.212365px;}
.ws55{word-spacing:-0.932506px;}
.ws31{word-spacing:-0.192313px;}
.ws32{word-spacing:-0.143462px;}
.ws1{word-spacing:-0.123975px;}
.ws2e{word-spacing:-0.047821px;}
.ws11{word-spacing:0.000000px;}
.ws44{word-spacing:0.464816px;}
.ws4f{word-spacing:1.147699px;}
.wse{word-spacing:1.219430px;}
.ws4{word-spacing:1.714911px;}
.ws3c{word-spacing:1.865011px;}
.ws53{word-spacing:2.223667px;}
.ws52{word-spacing:2.324079px;}
.wsf{word-spacing:3.084442px;}
.ws2b{word-spacing:3.299635px;}
.ws18{word-spacing:3.371366px;}
.ws5a{word-spacing:3.658291px;}
.ws9{word-spacing:3.678549px;}
.ws10{word-spacing:3.873485px;}
.ws1b{word-spacing:3.945216px;}
.ws59{word-spacing:4.124544px;}
.wsb{word-spacing:4.483200px;}
.ws2{word-spacing:4.648169px;}
.ws34{word-spacing:4.662528px;}
.ws30{word-spacing:4.734259px;}
.ws5f{word-spacing:4.805990px;}
.ws19{word-spacing:4.949453px;}
.wsd{word-spacing:5.021184px;}
.ws60{word-spacing:5.235525px;}
.ws3f{word-spacing:5.236378px;}
.ws27{word-spacing:5.308109px;}
.ws47{word-spacing:5.379825px;}
.ws57{word-spacing:5.595034px;}
.ws1e{word-spacing:6.168883px;}
.ws26{word-spacing:6.384077px;}
.wsc{word-spacing:6.455775px;}
.ws36{word-spacing:6.527539px;}
.ws20{word-spacing:6.662360px;}
.ws54{word-spacing:6.671002px;}
.ws28{word-spacing:6.742733px;}
.ws8{word-spacing:6.820369px;}
.ws17{word-spacing:6.886195px;}
.ws1a{word-spacing:7.460045px;}
.ws48{word-spacing:7.531776px;}
.ws6{word-spacing:7.540370px;}
.ws3d{word-spacing:7.603507px;}
.ws37{word-spacing:7.818701px;}
.ws3a{word-spacing:7.829220px;}
.ws33{word-spacing:7.890432px;}
.ws58{word-spacing:8.643610px;}
.ws39{word-spacing:8.778150px;}
.ws4c{word-spacing:8.797818px;}
.ws4d{word-spacing:8.798932px;}
.ws5d{word-spacing:8.810145px;}
.ws1f{word-spacing:8.894669px;}
.ws3e{word-spacing:9.109862px;}
.ws13{word-spacing:9.396787px;}
.ws46{word-spacing:9.540250px;}
.ws35{word-spacing:9.611981px;}
.ws16{word-spacing:9.827174px;}
.ws5{word-spacing:10.027645px;}
.ws7{word-spacing:10.354918px;}
.ws45{word-spacing:10.616218px;}
.ws5e{word-spacing:10.648831px;}
.ws42{word-spacing:10.687949px;}
.ws12{word-spacing:10.723814px;}
.ws24{word-spacing:10.759680px;}
.ws2c{word-spacing:10.831411px;}
.ws29{word-spacing:11.046605px;}
.ws22{word-spacing:11.261798px;}
.ws15{word-spacing:11.297664px;}
.ws3b{word-spacing:11.692186px;}
.ws23{word-spacing:11.835648px;}
.ws4a{word-spacing:11.979110px;}
.ws56{word-spacing:12.224145px;}
.ws21{word-spacing:12.337766px;}
.ws2f{word-spacing:12.552960px;}
.ws4b{word-spacing:12.839885px;}
.ws41{word-spacing:13.485466px;}
.ws51{word-spacing:13.700659px;}
.ws43{word-spacing:13.844122px;}
.ws4e{word-spacing:14.131046px;}
.ws2d{word-spacing:15.637402px;}
.ws50{word-spacing:16.282982px;}
.ws40{word-spacing:17.502413px;}
.ws49{word-spacing:21.433173px;}
.ws0{word-spacing:37.316475px;}
._4{margin-left:-42.177828px;}
._0{margin-left:-9.670050px;}
._27{margin-left:-8.091257px;}
._7{margin-left:-6.479113px;}
._9{margin-left:-4.515475px;}
._1{margin-left:-3.347325px;}
._3{margin-left:-2.324084px;}
._6{margin-left:-1.210464px;}
._5{width:1.832729px;}
._2{width:3.223350px;}
._15{width:4.332558px;}
._16{width:6.740691px;}
._1b{width:8.159031px;}
._57{width:20.357302px;}
._55{width:21.727696px;}
._11{width:22.987919px;}
._10{width:24.224386px;}
._13{width:27.625469px;}
._12{width:29.273187px;}
._f{width:30.566448px;}
._17{width:31.726710px;}
._19{width:33.670619px;}
._14{width:35.148288px;}
._1a{width:36.217486px;}
._1c{width:38.583388px;}
._54{width:43.717532px;}
._8{width:48.240040px;}
._18{width:53.663894px;}
._42{width:57.725666px;}
._26{width:60.211163px;}
._56{width:61.315817px;}
._a{width:64.988467px;}
._22{width:72.116056px;}
._29{width:82.288659px;}
._4c{width:98.727862px;}
._46{width:106.110576px;}
._28{width:109.632735px;}
._4a{width:111.875667px;}
._e{width:116.203950px;}
._47{width:152.087828px;}
._41{width:163.777513px;}
._4f{width:164.891672px;}
._24{width:166.920574px;}
._49{width:172.666295px;}
._2a{width:181.620000px;}
._1f{width:189.225387px;}
._52{width:209.246148px;}
._3d{width:216.453108px;}
._4d{width:217.908016px;}
._2d{width:219.226404px;}
._37{width:224.416404px;}
._50{width:231.982967px;}
._40{width:234.968927px;}
._1d{width:244.002915px;}
._3b{width:251.571108px;}
._3e{width:254.863213px;}
._30{width:261.169213px;}
._2f{width:269.137895px;}
._21{width:279.936662px;}
._32{width:286.692300px;}
._23{width:287.723101px;}
._33{width:296.290404px;}
._39{width:298.747213px;}
._3f{width:315.881640px;}
._2c{width:335.501424px;}
._3c{width:342.204340px;}
._35{width:367.516404px;}
._43{width:373.753818px;}
._3a{width:392.746749px;}
._20{width:402.997728px;}
._38{width:423.101261px;}
._4b{width:442.644972px;}
._36{width:454.187450px;}
._34{width:467.711639px;}
._48{width:510.527788px;}
._31{width:517.529926px;}
._25{width:520.321286px;}
._1e{width:530.962619px;}
._d{width:543.410449px;}
._2e{width:548.610115px;}
._4e{width:561.992780px;}
._53{width:580.224908px;}
._51{width:589.172353px;}
._2b{width:593.352303px;}
._45{width:598.595023px;}
._44{width:612.372176px;}
._c{width:667.189814px;}
._b{width:1356.962416px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y17{bottom:63.168000px;}
.y16{bottom:108.000000px;}
.yd0{bottom:111.445500px;}
.yba{bottom:126.951000px;}
.y8f{bottom:129.664500px;}
.y15{bottom:129.669000px;}
.ycf{bottom:133.114500px;}
.y14{bottom:151.338000px;}
.yce{bottom:154.783500px;}
.y74{bottom:159.652500px;}
.y8e{bottom:166.278000px;}
.y13{bottom:173.005500px;}
.yb9{bottom:177.760500px;}
.y73{bottom:181.321500px;}
.y30{bottom:188.797500px;}
.ya4{bottom:202.147500px;}
.y8d{bottom:202.890000px;}
.ycd{bottom:205.593000px;}
.y5b{bottom:212.233500px;}
.y72{bottom:220.549500px;}
.y2f{bottom:221.674500px;}
.y12{bottom:232.134000px;}
.y8c{bottom:239.503500px;}
.y71{bottom:242.217000px;}
.yb8{bottom:247.311000px;}
.y45{bottom:247.996500px;}
.y70{bottom:263.886000px;}
.yb7{bottom:268.980000px;}
.y44{bottom:269.665500px;}
.ya3{bottom:270.168000px;}
.ycc{bottom:275.145000px;}
.y5a{bottom:280.749000px;}
.y6f{bottom:285.555000px;}
.y8b{bottom:290.313000px;}
.yb6{bottom:290.649000px;}
.y2e{bottom:297.993000px;}
.ya2{bottom:303.819000px;}
.y6e{bottom:307.224000px;}
.y11{bottom:309.352500px;}
.ycb{bottom:311.757000px;}
.yb5{bottom:312.318000px;}
.y59{bottom:315.438000px;}
.y2d{bottom:319.662000px;}
.y43{bottom:328.320000px;}
.yca{bottom:333.426000px;}
.ya1{bottom:337.471500px;}
.y58{bottom:350.125500px;}
.y2c{bottom:358.890000px;}
.y8a{bottom:360.387000px;}
.yb4{bottom:363.127500px;}
.y42{bottom:364.932000px;}
.y10{bottom:366.139500px;}
.yc9{bottom:370.038000px;}
.ya0{bottom:371.122500px;}
.y6d{bottom:371.308500px;}
.y2b{bottom:380.557500px;}
.y89{bottom:382.056000px;}
.y57{bottom:384.814500px;}
.y41{bottom:401.545500px;}
.y88{bottom:403.725000px;}
.y6c{bottom:416.514000px;}
.y9f{bottom:417.931500px;}
.yc8{bottom:420.847500px;}
.yf{bottom:422.926500px;}
.y87{bottom:425.394000px;}
.y2a{bottom:426.189000px;}
.yb3{bottom:428.631000px;}
.y56{bottom:435.771000px;}
.y6b{bottom:438.780000px;}
.y86{bottom:447.061500px;}
.y40{bottom:460.200000px;}
.y6a{bottom:461.047500px;}
.yb2{bottom:461.508000px;}
.y85{bottom:468.730500px;}
.y9e{bottom:468.741000px;}
.y69{bottom:483.313500px;}
.y55{bottom:486.727500px;}
.y29{bottom:487.086000px;}
.y84{bottom:490.399500px;}
.ye{bottom:499.614000px;}
.y68{bottom:505.579500px;}
.y83{bottom:512.068500px;}
.y3f{bottom:518.854500px;}
.y54{bottom:521.416500px;}
.y82{bottom:533.737500px;}
.y28{bottom:536.913000px;}
.y9d{bottom:537.285000px;}
.yb1{bottom:538.968000px;}
.y3e{bottom:540.523500px;}
.y67{bottom:547.248000px;}
.yc7{bottom:548.680500px;}
.y81{bottom:555.405000px;}
.y53{bottom:556.104000px;}
.y9c{bottom:558.954000px;}
.yb0{bottom:560.635500px;}
.yc6{bottom:570.349500px;}
.y27{bottom:571.318500px;}
.yd{bottom:576.832500px;}
.y80{bottom:577.074000px;}
.y3d{bottom:577.137000px;}
.y9b{bottom:580.623000px;}
.yaf{bottom:582.304500px;}
.y52{bottom:590.793000px;}
.yc{bottom:597.156000px;}
.y3c{bottom:598.804500px;}
.y7f{bottom:599.341500px;}
.y9a{bottom:602.292000px;}
.y26{bottom:605.724000px;}
.yc5{bottom:606.961500px;}
.yb{bottom:617.479500px;}
.y66{bottom:623.463000px;}
.y99{bottom:623.959500px;}
.yc4{bottom:628.630500px;}
.yae{bottom:633.114000px;}
.y3b{bottom:635.418000px;}
.ya{bottom:637.804500px;}
.y51{bottom:641.749500px;}
.y98{bottom:646.227000px;}
.y7e{bottom:653.811000px;}
.y25{bottom:655.551000px;}
.y3a{bottom:657.087000px;}
.y9{bottom:658.128000px;}
.y65{bottom:660.075000px;}
.yc3{bottom:665.244000px;}
.y24{bottom:677.220000px;}
.y8{bottom:678.451500px;}
.yc2{bottom:686.913000px;}
.y50{bottom:692.706000px;}
.y39{bottom:693.699000px;}
.y64{bottom:696.688500px;}
.y7{bottom:698.775000px;}
.yad{bottom:702.666000px;}
.y97{bottom:714.295500px;}
.y23{bottom:716.446500px;}
.y7d{bottom:723.363000px;}
.y4f{bottom:727.395000px;}
.y63{bottom:733.300500px;}
.yc1{bottom:737.721000px;}
.y22{bottom:738.115500px;}
.yac{bottom:739.278000px;}
.y6{bottom:743.551500px;}
.y7c{bottom:745.032000px;}
.y38{bottom:752.353500px;}
.y21{bottom:759.784500px;}
.y4e{bottom:762.082500px;}
.y7b{bottom:766.701000px;}
.y62{bottom:769.912500px;}
.yab{bottom:775.891500px;}
.y20{bottom:781.453500px;}
.y96{bottom:782.317500px;}
.y4d{bottom:796.771500px;}
.y95{bottom:803.986500px;}
.y61{bottom:806.526000px;}
.yc0{bottom:807.273000px;}
.y37{bottom:811.009500px;}
.y5{bottom:817.168500px;}
.y94{bottom:825.655500px;}
.y7a{bottom:825.828000px;}
.y1f{bottom:831.280500px;}
.y4c{bottom:831.459000px;}
.yaa{bottom:834.546000px;}
.ybf{bottom:843.886500px;}
.y4{bottom:844.068000px;}
.y36{bottom:847.621500px;}
.y1e{bottom:852.949500px;}
.y79{bottom:858.705000px;}
.y60{bottom:865.180500px;}
.ya9{bottom:873.774000px;}
.ybe{bottom:880.498500px;}
.y4b{bottom:882.417000px;}
.y35{bottom:884.235000px;}
.y93{bottom:884.782500px;}
.y1d{bottom:887.355000px;}
.ya8{bottom:895.443000px;}
.y1c{bottom:909.024000px;}
.y3{bottom:914.863500px;}
.ya7{bottom:917.110500px;}
.y92{bottom:917.659500px;}
.y34{bottom:920.847000px;}
.y4a{bottom:921.643500px;}
.y5f{bottom:923.835000px;}
.ybd{bottom:934.669500px;}
.y78{bottom:936.165000px;}
.y49{bottom:943.312500px;}
.y1b{bottom:943.429500px;}
.y5e{bottom:945.504000px;}
.y2{bottom:952.224000px;}
.y77{bottom:957.834000px;}
.y48{bottom:964.981500px;}
.ya6{bottom:971.283000px;}
.y1a{bottom:977.835000px;}
.y33{bottom:979.501500px;}
.y5d{bottom:982.117500px;}
.ybc{bottom:988.842000px;}
.y1{bottom:989.583000px;}
.y91{bottom:993.589500px;}
.y76{bottom:997.060500px;}
.y32{bottom:1001.170500px;}
.y5c{bottom:1003.786500px;}
.ya5{bottom:1007.895000px;}
.y19{bottom:1012.240500px;}
.y90{bottom:1015.258500px;}
.y75{bottom:1018.729500px;}
.y47{bottom:1024.110000px;}
.ybb{bottom:1025.454000px;}
.y31{bottom:1040.398500px;}
.y46{bottom:1056.987000px;}
.y18{bottom:1062.067500px;}
.h3{height:45.687311px;}
.h4{height:46.145493px;}
.h6{height:53.798400px;}
.h7{height:62.803496px;}
.h2{height:64.557900px;}
.h5{height:77.469300px;}
.h1{height:92.857275px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xe{left:116.967000px;}
.x15{left:122.257500px;}
.x13{left:125.178000px;}
.x18{left:126.841500px;}
.xc{left:129.460500px;}
.x16{left:132.207000px;}
.x12{left:133.293000px;}
.xb{left:134.340000px;}
.x17{left:136.843500px;}
.x1{left:138.306000px;}
.x11{left:141.408000px;}
.x10{left:149.524500px;}
.x8{left:151.897500px;}
.x7{left:176.443500px;}
.x14{left:189.130500px;}
.xf{left:232.630500px;}
.x3{left:271.305000px;}
.xd{left:322.797000px;}
.x4{left:334.996500px;}
.x5{left:363.748500px;}
.x2{left:420.124500px;}
.x6{left:422.998500px;}
.xa{left:454.611000px;}
@media print{
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.325333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001507pt;}
.lsc{letter-spacing:0.002591pt;}
.lsa{letter-spacing:0.002717pt;}
.ls15{letter-spacing:0.003345pt;}
.ls9{letter-spacing:0.006390pt;}
.ls6{letter-spacing:2.653398pt;}
.ls5{letter-spacing:2.657146pt;}
.ls4{letter-spacing:6.334921pt;}
.lse{letter-spacing:6.660224pt;}
.ls7{letter-spacing:10.624990pt;}
.ls3{letter-spacing:17.711572pt;}
.lsb{letter-spacing:23.463925pt;}
.ls2{letter-spacing:24.041588pt;}
.lsf{letter-spacing:27.140255pt;}
.ls10{letter-spacing:30.452255pt;}
.lsd{letter-spacing:31.149258pt;}
.ls1{letter-spacing:31.215625pt;}
.ls1c{letter-spacing:129.255925pt;}
.ls1b{letter-spacing:214.455925pt;}
.ls1a{letter-spacing:237.858591pt;}
.ls19{letter-spacing:311.794591pt;}
.ls18{letter-spacing:323.069258pt;}
.ls17{letter-spacing:335.197258pt;}
.ls16{letter-spacing:347.325258pt;}
.ls13{letter-spacing:420.402591pt;}
.ls14{letter-spacing:421.255925pt;}
.ls12{letter-spacing:432.530591pt;}
.ls11{letter-spacing:444.658591pt;}
.ws38{word-spacing:-40.590295pt;}
.ws1c{word-spacing:-29.942197pt;}
.ws1d{word-spacing:-29.521250pt;}
.wsa{word-spacing:-28.692333pt;}
.ws25{word-spacing:-19.925333pt;}
.ws14{word-spacing:-17.343010pt;}
.ws2a{word-spacing:-5.738467pt;}
.ws5b{word-spacing:-3.411217pt;}
.ws5c{word-spacing:-2.996770pt;}
.ws61{word-spacing:-2.869248pt;}
.ws3{word-spacing:-1.966547pt;}
.ws55{word-spacing:-0.828894pt;}
.ws31{word-spacing:-0.170945pt;}
.ws32{word-spacing:-0.127522pt;}
.ws1{word-spacing:-0.110200pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws11{word-spacing:0.000000pt;}
.ws44{word-spacing:0.413170pt;}
.ws4f{word-spacing:1.020177pt;}
.wse{word-spacing:1.083938pt;}
.ws4{word-spacing:1.524365pt;}
.ws3c{word-spacing:1.657788pt;}
.ws53{word-spacing:1.976593pt;}
.ws52{word-spacing:2.065848pt;}
.wsf{word-spacing:2.741726pt;}
.ws2b{word-spacing:2.933009pt;}
.ws18{word-spacing:2.996770pt;}
.ws5a{word-spacing:3.251814pt;}
.ws9{word-spacing:3.269821pt;}
.ws10{word-spacing:3.443098pt;}
.ws1b{word-spacing:3.506859pt;}
.ws59{word-spacing:3.666261pt;}
.wsb{word-spacing:3.985067pt;}
.ws2{word-spacing:4.131706pt;}
.ws34{word-spacing:4.144469pt;}
.ws30{word-spacing:4.208230pt;}
.ws5f{word-spacing:4.271991pt;}
.ws19{word-spacing:4.399514pt;}
.wsd{word-spacing:4.463275pt;}
.ws60{word-spacing:4.653800pt;}
.ws3f{word-spacing:4.654558pt;}
.ws27{word-spacing:4.718319pt;}
.ws47{word-spacing:4.782067pt;}
.ws57{word-spacing:4.973363pt;}
.ws1e{word-spacing:5.483452pt;}
.ws26{word-spacing:5.674735pt;}
.wsc{word-spacing:5.738467pt;}
.ws36{word-spacing:5.802257pt;}
.ws20{word-spacing:5.922098pt;}
.ws54{word-spacing:5.929779pt;}
.ws28{word-spacing:5.993540pt;}
.ws8{word-spacing:6.062551pt;}
.ws17{word-spacing:6.121062pt;}
.ws1a{word-spacing:6.631151pt;}
.ws48{word-spacing:6.694912pt;}
.ws6{word-spacing:6.702551pt;}
.ws3d{word-spacing:6.758673pt;}
.ws37{word-spacing:6.949956pt;}
.ws3a{word-spacing:6.959307pt;}
.ws33{word-spacing:7.013717pt;}
.ws58{word-spacing:7.683209pt;}
.ws39{word-spacing:7.802800pt;}
.ws4c{word-spacing:7.820283pt;}
.ws4d{word-spacing:7.821273pt;}
.ws5d{word-spacing:7.831240pt;}
.ws1f{word-spacing:7.906372pt;}
.ws3e{word-spacing:8.097655pt;}
.ws13{word-spacing:8.352700pt;}
.ws46{word-spacing:8.480222pt;}
.ws35{word-spacing:8.543983pt;}
.ws16{word-spacing:8.735266pt;}
.ws5{word-spacing:8.913462pt;}
.ws7{word-spacing:9.204371pt;}
.ws45{word-spacing:9.436638pt;}
.ws5e{word-spacing:9.465627pt;}
.ws42{word-spacing:9.500399pt;}
.ws12{word-spacing:9.532279pt;}
.ws24{word-spacing:9.564160pt;}
.ws2c{word-spacing:9.627921pt;}
.ws29{word-spacing:9.819204pt;}
.ws22{word-spacing:10.010487pt;}
.ws15{word-spacing:10.042368pt;}
.ws3b{word-spacing:10.393054pt;}
.ws23{word-spacing:10.520576pt;}
.ws4a{word-spacing:10.648098pt;}
.ws56{word-spacing:10.865906pt;}
.ws21{word-spacing:10.966903pt;}
.ws2f{word-spacing:11.158187pt;}
.ws4b{word-spacing:11.413231pt;}
.ws41{word-spacing:11.987081pt;}
.ws51{word-spacing:12.178364pt;}
.ws43{word-spacing:12.305886pt;}
.ws4e{word-spacing:12.560930pt;}
.ws2d{word-spacing:13.899913pt;}
.ws50{word-spacing:14.473762pt;}
.ws40{word-spacing:15.557700pt;}
.ws49{word-spacing:19.051709pt;}
.ws0{word-spacing:33.170200pt;}
._4{margin-left:-37.491403pt;}
._0{margin-left:-8.595600pt;}
._27{margin-left:-7.192228pt;}
._7{margin-left:-5.759212pt;}
._9{margin-left:-4.013756pt;}
._1{margin-left:-2.975400pt;}
._3{margin-left:-2.065853pt;}
._6{margin-left:-1.075968pt;}
._5{width:1.629092pt;}
._2{width:2.865200pt;}
._15{width:3.851163pt;}
._16{width:5.991725pt;}
._1b{width:7.252472pt;}
._57{width:18.095379pt;}
._55{width:19.313508pt;}
._11{width:20.433706pt;}
._10{width:21.532787pt;}
._13{width:24.555972pt;}
._12{width:26.020611pt;}
._f{width:27.170176pt;}
._17{width:28.201520pt;}
._19{width:29.929439pt;}
._14{width:31.242923pt;}
._1a{width:32.193321pt;}
._1c{width:34.296345pt;}
._54{width:38.860028pt;}
._8{width:42.880036pt;}
._18{width:47.701239pt;}
._42{width:51.311703pt;}
._26{width:53.521034pt;}
._56{width:54.502948pt;}
._a{width:57.767526pt;}
._22{width:64.103161pt;}
._29{width:73.145475pt;}
._4c{width:87.758099pt;}
._46{width:94.320512pt;}
._28{width:97.451320pt;}
._4a{width:99.445038pt;}
._e{width:103.292400pt;}
._47{width:135.189180pt;}
._41{width:145.580012pt;}
._4f{width:146.570375pt;}
._24{width:148.373843pt;}
._49{width:153.481151pt;}
._2a{width:161.440000pt;}
._1f{width:168.200344pt;}
._52{width:185.996576pt;}
._3d{width:192.402763pt;}
._4d{width:193.696015pt;}
._2d{width:194.867915pt;}
._37{width:199.481248pt;}
._50{width:206.207081pt;}
._40{width:208.861268pt;}
._1d{width:216.891480pt;}
._3b{width:223.618763pt;}
._3e{width:226.545079pt;}
._30{width:232.150412pt;}
._2f{width:239.233684pt;}
._21{width:248.832589pt;}
._32{width:254.837600pt;}
._23{width:255.753867pt;}
._33{width:263.369248pt;}
._39{width:265.553079pt;}
._3f{width:280.783680pt;}
._2c{width:298.223488pt;}
._3c{width:304.181636pt;}
._35{width:326.681248pt;}
._43{width:332.225616pt;}
._3a{width:349.108222pt;}
._20{width:358.220203pt;}
._38{width:376.090010pt;}
._4b{width:393.462198pt;}
._36{width:403.722178pt;}
._34{width:415.743679pt;}
._48{width:453.802479pt;}
._31{width:460.026601pt;}
._25{width:462.507809pt;}
._1e{width:471.966772pt;}
._d{width:483.031510pt;}
._2e{width:487.653435pt;}
._4e{width:499.549137pt;}
._53{width:515.755474pt;}
._51{width:523.708758pt;}
._2b{width:527.424270pt;}
._45{width:532.084465pt;}
._44{width:544.330823pt;}
._c{width:593.057613pt;}
._b{width:1206.188814pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:56.149333pt;}
.y16{bottom:96.000000pt;}
.yd0{bottom:99.062667pt;}
.yba{bottom:112.845333pt;}
.y8f{bottom:115.257333pt;}
.y15{bottom:115.261333pt;}
.ycf{bottom:118.324000pt;}
.y14{bottom:134.522667pt;}
.yce{bottom:137.585333pt;}
.y74{bottom:141.913333pt;}
.y8e{bottom:147.802667pt;}
.y13{bottom:153.782667pt;}
.yb9{bottom:158.009333pt;}
.y73{bottom:161.174667pt;}
.y30{bottom:167.820000pt;}
.ya4{bottom:179.686667pt;}
.y8d{bottom:180.346667pt;}
.ycd{bottom:182.749333pt;}
.y5b{bottom:188.652000pt;}
.y72{bottom:196.044000pt;}
.y2f{bottom:197.044000pt;}
.y12{bottom:206.341333pt;}
.y8c{bottom:212.892000pt;}
.y71{bottom:215.304000pt;}
.yb8{bottom:219.832000pt;}
.y45{bottom:220.441333pt;}
.y70{bottom:234.565333pt;}
.yb7{bottom:239.093333pt;}
.y44{bottom:239.702667pt;}
.ya3{bottom:240.149333pt;}
.ycc{bottom:244.573333pt;}
.y5a{bottom:249.554667pt;}
.y6f{bottom:253.826667pt;}
.y8b{bottom:258.056000pt;}
.yb6{bottom:258.354667pt;}
.y2e{bottom:264.882667pt;}
.ya2{bottom:270.061333pt;}
.y6e{bottom:273.088000pt;}
.y11{bottom:274.980000pt;}
.ycb{bottom:277.117333pt;}
.yb5{bottom:277.616000pt;}
.y59{bottom:280.389333pt;}
.y2d{bottom:284.144000pt;}
.y43{bottom:291.840000pt;}
.yca{bottom:296.378667pt;}
.ya1{bottom:299.974667pt;}
.y58{bottom:311.222667pt;}
.y2c{bottom:319.013333pt;}
.y8a{bottom:320.344000pt;}
.yb4{bottom:322.780000pt;}
.y42{bottom:324.384000pt;}
.y10{bottom:325.457333pt;}
.yc9{bottom:328.922667pt;}
.ya0{bottom:329.886667pt;}
.y6d{bottom:330.052000pt;}
.y2b{bottom:338.273333pt;}
.y89{bottom:339.605333pt;}
.y57{bottom:342.057333pt;}
.y41{bottom:356.929333pt;}
.y88{bottom:358.866667pt;}
.y6c{bottom:370.234667pt;}
.y9f{bottom:371.494667pt;}
.yc8{bottom:374.086667pt;}
.yf{bottom:375.934667pt;}
.y87{bottom:378.128000pt;}
.y2a{bottom:378.834667pt;}
.yb3{bottom:381.005333pt;}
.y56{bottom:387.352000pt;}
.y6b{bottom:390.026667pt;}
.y86{bottom:397.388000pt;}
.y40{bottom:409.066667pt;}
.y6a{bottom:409.820000pt;}
.yb2{bottom:410.229333pt;}
.y85{bottom:416.649333pt;}
.y9e{bottom:416.658667pt;}
.y69{bottom:429.612000pt;}
.y55{bottom:432.646667pt;}
.y29{bottom:432.965333pt;}
.y84{bottom:435.910667pt;}
.ye{bottom:444.101333pt;}
.y68{bottom:449.404000pt;}
.y83{bottom:455.172000pt;}
.y3f{bottom:461.204000pt;}
.y54{bottom:463.481333pt;}
.y82{bottom:474.433333pt;}
.y28{bottom:477.256000pt;}
.y9d{bottom:477.586667pt;}
.yb1{bottom:479.082667pt;}
.y3e{bottom:480.465333pt;}
.y67{bottom:486.442667pt;}
.yc7{bottom:487.716000pt;}
.y81{bottom:493.693333pt;}
.y53{bottom:494.314667pt;}
.y9c{bottom:496.848000pt;}
.yb0{bottom:498.342667pt;}
.yc6{bottom:506.977333pt;}
.y27{bottom:507.838667pt;}
.yd{bottom:512.740000pt;}
.y80{bottom:512.954667pt;}
.y3d{bottom:513.010667pt;}
.y9b{bottom:516.109333pt;}
.yaf{bottom:517.604000pt;}
.y52{bottom:525.149333pt;}
.yc{bottom:530.805333pt;}
.y3c{bottom:532.270667pt;}
.y7f{bottom:532.748000pt;}
.y9a{bottom:535.370667pt;}
.y26{bottom:538.421333pt;}
.yc5{bottom:539.521333pt;}
.yb{bottom:548.870667pt;}
.y66{bottom:554.189333pt;}
.y99{bottom:554.630667pt;}
.yc4{bottom:558.782667pt;}
.yae{bottom:562.768000pt;}
.y3b{bottom:564.816000pt;}
.ya{bottom:566.937333pt;}
.y51{bottom:570.444000pt;}
.y98{bottom:574.424000pt;}
.y7e{bottom:581.165333pt;}
.y25{bottom:582.712000pt;}
.y3a{bottom:584.077333pt;}
.y9{bottom:585.002667pt;}
.y65{bottom:586.733333pt;}
.yc3{bottom:591.328000pt;}
.y24{bottom:601.973333pt;}
.y8{bottom:603.068000pt;}
.yc2{bottom:610.589333pt;}
.y50{bottom:615.738667pt;}
.y39{bottom:616.621333pt;}
.y64{bottom:619.278667pt;}
.y7{bottom:621.133333pt;}
.yad{bottom:624.592000pt;}
.y97{bottom:634.929333pt;}
.y23{bottom:636.841333pt;}
.y7d{bottom:642.989333pt;}
.y4f{bottom:646.573333pt;}
.y63{bottom:651.822667pt;}
.yc1{bottom:655.752000pt;}
.y22{bottom:656.102667pt;}
.yac{bottom:657.136000pt;}
.y6{bottom:660.934667pt;}
.y7c{bottom:662.250667pt;}
.y38{bottom:668.758667pt;}
.y21{bottom:675.364000pt;}
.y4e{bottom:677.406667pt;}
.y7b{bottom:681.512000pt;}
.y62{bottom:684.366667pt;}
.yab{bottom:689.681333pt;}
.y20{bottom:694.625333pt;}
.y96{bottom:695.393333pt;}
.y4d{bottom:708.241333pt;}
.y95{bottom:714.654667pt;}
.y61{bottom:716.912000pt;}
.yc0{bottom:717.576000pt;}
.y37{bottom:720.897333pt;}
.y5{bottom:726.372000pt;}
.y94{bottom:733.916000pt;}
.y7a{bottom:734.069333pt;}
.y1f{bottom:738.916000pt;}
.y4c{bottom:739.074667pt;}
.yaa{bottom:741.818667pt;}
.ybf{bottom:750.121333pt;}
.y4{bottom:750.282667pt;}
.y36{bottom:753.441333pt;}
.y1e{bottom:758.177333pt;}
.y79{bottom:763.293333pt;}
.y60{bottom:769.049333pt;}
.ya9{bottom:776.688000pt;}
.ybe{bottom:782.665333pt;}
.y4b{bottom:784.370667pt;}
.y35{bottom:785.986667pt;}
.y93{bottom:786.473333pt;}
.y1d{bottom:788.760000pt;}
.ya8{bottom:795.949333pt;}
.y1c{bottom:808.021333pt;}
.y3{bottom:813.212000pt;}
.ya7{bottom:815.209333pt;}
.y92{bottom:815.697333pt;}
.y34{bottom:818.530667pt;}
.y4a{bottom:819.238667pt;}
.y5f{bottom:821.186667pt;}
.ybd{bottom:830.817333pt;}
.y78{bottom:832.146667pt;}
.y49{bottom:838.500000pt;}
.y1b{bottom:838.604000pt;}
.y5e{bottom:840.448000pt;}
.y2{bottom:846.421333pt;}
.y77{bottom:851.408000pt;}
.y48{bottom:857.761333pt;}
.ya6{bottom:863.362667pt;}
.y1a{bottom:869.186667pt;}
.y33{bottom:870.668000pt;}
.y5d{bottom:872.993333pt;}
.ybc{bottom:878.970667pt;}
.y1{bottom:879.629333pt;}
.y91{bottom:883.190667pt;}
.y76{bottom:886.276000pt;}
.y32{bottom:889.929333pt;}
.y5c{bottom:892.254667pt;}
.ya5{bottom:895.906667pt;}
.y19{bottom:899.769333pt;}
.y90{bottom:902.452000pt;}
.y75{bottom:905.537333pt;}
.y47{bottom:910.320000pt;}
.ybb{bottom:911.514667pt;}
.y31{bottom:924.798667pt;}
.y46{bottom:939.544000pt;}
.y18{bottom:944.060000pt;}
.h3{height:40.610943pt;}
.h4{height:41.018216pt;}
.h6{height:47.820800pt;}
.h7{height:55.825330pt;}
.h2{height:57.384800pt;}
.h5{height:68.861600pt;}
.h1{height:82.539800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xe{left:103.970667pt;}
.x15{left:108.673333pt;}
.x13{left:111.269333pt;}
.x18{left:112.748000pt;}
.xc{left:115.076000pt;}
.x16{left:117.517333pt;}
.x12{left:118.482667pt;}
.xb{left:119.413333pt;}
.x17{left:121.638667pt;}
.x1{left:122.938667pt;}
.x11{left:125.696000pt;}
.x10{left:132.910667pt;}
.x8{left:135.020000pt;}
.x7{left:156.838667pt;}
.x14{left:168.116000pt;}
.xf{left:206.782667pt;}
.x3{left:241.160000pt;}
.xd{left:286.930667pt;}
.x4{left:297.774667pt;}
.x5{left:323.332000pt;}
.x2{left:373.444000pt;}
.x6{left:375.998667pt;}
.xa{left:404.098667pt;}
}




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