
    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_f4e4c33702bc75e1a38e2b4c.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_9b7f725278ffba480af8e459.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_9c537fb40d29a556bfa4a49b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_80f3fe53614ff9917a0d9acd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_4d5b5e0f0cd340d0abea7f73.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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);}
.v2{vertical-align:-21.690000px;}
.v4{vertical-align:-12.552000px;}
.v3{vertical-align:-11.460000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.002640px;}
.ls1{letter-spacing:2.988600px;}
.ls5{letter-spacing:25.177651px;}
.ls4{letter-spacing:37.658880px;}
.ls3{letter-spacing:43.037280px;}
.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;}
}
.ws4b{word-spacing:-17.932800px;}
.ws32{word-spacing:-4.303872px;}
.ws2c{word-spacing:-4.088678px;}
.ws33{word-spacing:-3.945216px;}
.ws8b{word-spacing:-3.801754px;}
.ws26{word-spacing:-3.730022px;}
.ws1b{word-spacing:-3.443098px;}
.ws28{word-spacing:-3.371366px;}
.ws95{word-spacing:-3.299635px;}
.wsa2{word-spacing:-2.725786px;}
.wsab{word-spacing:-2.654054px;}
.ws64{word-spacing:-2.582323px;}
.ws55{word-spacing:-2.510592px;}
.ws56{word-spacing:-2.438861px;}
.ws9{word-spacing:-2.421820px;}
.ws76{word-spacing:-2.367130px;}
.ws88{word-spacing:-2.295398px;}
.ws77{word-spacing:-2.151936px;}
.ws34{word-spacing:-2.080205px;}
.ws75{word-spacing:-1.936742px;}
.ws40{word-spacing:-1.865011px;}
.ws8e{word-spacing:-1.793280px;}
.ws9c{word-spacing:-1.649818px;}
.ws47{word-spacing:-1.506355px;}
.ws9f{word-spacing:-1.362893px;}
.ws4e{word-spacing:-1.291162px;}
.ws6c{word-spacing:-1.147699px;}
.ws2a{word-spacing:-1.075968px;}
.ws65{word-spacing:-1.004237px;}
.wsa8{word-spacing:-0.932506px;}
.ws7{word-spacing:-0.916364px;}
.ws93{word-spacing:-0.860774px;}
.wsa1{word-spacing:-0.789043px;}
.wsac{word-spacing:-0.717312px;}
.ws96{word-spacing:-0.645581px;}
.wsaf{word-spacing:-0.430387px;}
.ws97{word-spacing:-0.286925px;}
.ws4{word-spacing:-0.261818px;}
.wsb0{word-spacing:-0.215194px;}
.ws91{word-spacing:-0.143462px;}
.wsa6{word-spacing:-0.086077px;}
.ws61{word-spacing:-0.071731px;}
.ws52{word-spacing:-0.059776px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.065455px;}
.ws94{word-spacing:0.071731px;}
.ws84{word-spacing:0.215194px;}
.ws20{word-spacing:0.286925px;}
.ws80{word-spacing:0.358656px;}
.ws70{word-spacing:0.430387px;}
.ws89{word-spacing:0.502118px;}
.ws16{word-spacing:0.573850px;}
.ws4a{word-spacing:0.645581px;}
.ws69{word-spacing:0.717312px;}
.ws49{word-spacing:0.789043px;}
.ws53{word-spacing:0.860774px;}
.ws37{word-spacing:0.932506px;}
.ws8a{word-spacing:1.004237px;}
.ws1c{word-spacing:1.075968px;}
.ws58{word-spacing:1.147699px;}
.ws1e{word-spacing:1.291162px;}
.ws59{word-spacing:1.362893px;}
.wsad{word-spacing:1.434624px;}
.ws19{word-spacing:1.506355px;}
.ws25{word-spacing:1.578086px;}
.ws87{word-spacing:1.649818px;}
.ws12{word-spacing:1.721549px;}
.ws27{word-spacing:1.793280px;}
.ws35{word-spacing:1.865011px;}
.ws71{word-spacing:2.008474px;}
.wse{word-spacing:2.080205px;}
.ws30{word-spacing:2.151936px;}
.ws6e{word-spacing:2.223667px;}
.ws45{word-spacing:2.367130px;}
.ws3e{word-spacing:2.438861px;}
.ws48{word-spacing:2.510592px;}
.ws5a{word-spacing:2.654054px;}
.ws3a{word-spacing:2.725786px;}
.ws6f{word-spacing:2.797517px;}
.ws18{word-spacing:2.940979px;}
.ws85{word-spacing:3.012710px;}
.ws6{word-spacing:3.076366px;}
.ws3f{word-spacing:3.084442px;}
.ws90{word-spacing:3.156173px;}
.ws9e{word-spacing:3.227904px;}
.wsf{word-spacing:3.443098px;}
.ws60{word-spacing:3.514829px;}
.ws51{word-spacing:3.586536px;}
.wsa7{word-spacing:3.658291px;}
.ws2e{word-spacing:3.801754px;}
.ws36{word-spacing:3.873485px;}
.ws2f{word-spacing:4.016947px;}
.ws68{word-spacing:4.088678px;}
.ws2d{word-spacing:4.303872px;}
.ws78{word-spacing:4.375603px;}
.ws2b{word-spacing:4.447334px;}
.wsa{word-spacing:4.450913px;}
.ws44{word-spacing:4.590797px;}
.ws9b{word-spacing:4.662528px;}
.ws72{word-spacing:4.734259px;}
.ws57{word-spacing:4.805990px;}
.ws4c{word-spacing:4.877722px;}
.ws4d{word-spacing:4.949453px;}
.ws38{word-spacing:5.092915px;}
.ws74{word-spacing:5.164646px;}
.ws14{word-spacing:5.308109px;}
.ws82{word-spacing:5.379840px;}
.ws62{word-spacing:5.595034px;}
.ws4f{word-spacing:5.666765px;}
.ws9d{word-spacing:5.738496px;}
.ws67{word-spacing:5.810227px;}
.ws73{word-spacing:5.953690px;}
.ws1f{word-spacing:6.025421px;}
.ws50{word-spacing:6.168883px;}
.ws31{word-spacing:6.240614px;}
.ws15{word-spacing:6.384077px;}
.wsd{word-spacing:6.455808px;}
.ws6d{word-spacing:6.527539px;}
.ws54{word-spacing:6.599270px;}
.ws3d{word-spacing:6.957926px;}
.ws39{word-spacing:7.029658px;}
.ws5b{word-spacing:7.173120px;}
.ws7e{word-spacing:7.460045px;}
.ws17{word-spacing:7.603507px;}
.ws79{word-spacing:7.675238px;}
.ws24{word-spacing:7.818701px;}
.ws86{word-spacing:7.890432px;}
.ws6a{word-spacing:7.962163px;}
.ws29{word-spacing:8.033894px;}
.ws43{word-spacing:8.105626px;}
.wsb1{word-spacing:8.249088px;}
.ws3b{word-spacing:8.320819px;}
.ws13{word-spacing:8.392550px;}
.ws3c{word-spacing:8.464282px;}
.ws5f{word-spacing:8.536013px;}
.ws63{word-spacing:8.607744px;}
.ws92{word-spacing:8.679475px;}
.ws23{word-spacing:8.822938px;}
.wsa0{word-spacing:8.966400px;}
.wsa9{word-spacing:9.038131px;}
.ws6b{word-spacing:9.325056px;}
.ws98{word-spacing:9.468518px;}
.ws5d{word-spacing:9.540250px;}
.ws7a{word-spacing:9.611981px;}
.wsae{word-spacing:9.683712px;}
.ws3{word-spacing:9.687281px;}
.ws9a{word-spacing:9.755443px;}
.ws81{word-spacing:9.898906px;}
.ws22{word-spacing:10.257562px;}
.ws5e{word-spacing:10.401024px;}
.ws5c{word-spacing:10.616218px;}
.ws99{word-spacing:10.687949px;}
.ws42{word-spacing:11.118336px;}
.ws7d{word-spacing:11.548723px;}
.ws2{word-spacing:11.650919px;}
.ws46{word-spacing:11.692186px;}
.wsaa{word-spacing:12.050842px;}
.ws7c{word-spacing:12.194304px;}
.ws41{word-spacing:12.409498px;}
.ws66{word-spacing:12.768154px;}
.ws7b{word-spacing:13.485466px;}
.ws8c{word-spacing:14.059315px;}
.ws1a{word-spacing:14.417971px;}
.ws8d{word-spacing:14.489702px;}
.ws8f{word-spacing:16.067789px;}
.ws5{word-spacing:16.887287px;}
.wsa3{word-spacing:17.861069px;}
.ws7f{word-spacing:18.793574px;}
.ws1d{word-spacing:19.152230px;}
.ws11{word-spacing:19.582618px;}
.ws10{word-spacing:19.869542px;}
.wsb{word-spacing:21.433223px;}
.ws83{word-spacing:23.169178px;}
.wsc{word-spacing:24.316877px;}
.ws0{word-spacing:30.869775px;}
.wsa4{word-spacing:42.966989px;}
.ws21{word-spacing:85.991123px;}
.wsa5{word-spacing:172.083149px;}
._17{margin-left:-9.444038px;}
._4{margin-left:-7.962163px;}
._1{margin-left:-6.198750px;}
._3{margin-left:-4.587075px;}
._2{margin-left:-3.099375px;}
._0{margin-left:-1.859625px;}
._1c{width:2.269570px;}
._14{width:3.684119px;}
._24{width:14.004962px;}
._d{width:15.129897px;}
._20{width:16.763556px;}
._21{width:17.771908px;}
._7{width:19.309107px;}
._6{width:20.641208px;}
._a{width:22.586220px;}
._12{width:24.160585px;}
._13{width:25.966694px;}
._5{width:26.967295px;}
._22{width:27.975168px;}
._9{width:28.990616px;}
._c{width:30.916147px;}
._23{width:32.402622px;}
._e{width:33.641933px;}
._1e{width:34.717901px;}
._15{width:36.869837px;}
._1d{width:39.165235px;}
._8{width:40.737935px;}
._16{width:42.165948px;}
._f{width:43.391990px;}
._18{width:45.549312px;}
._b{width:46.752584px;}
._1b{width:47.772979px;}
._1f{width:49.509461px;}
._26{width:51.891439px;}
._19{width:54.146284px;}
._11{width:56.447068px;}
._25{width:58.174003px;}
._1a{width:59.680358px;}
._10{width:86.077200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y10{bottom:63.168000px;}
.y110{bottom:108.000000px;}
.yf3{bottom:115.420500px;}
.y10f{bottom:134.890500px;}
.y69{bottom:141.777000px;}
.yf2{bottom:142.311000px;}
.yaf{bottom:153.580500px;}
.y47{bottom:156.075000px;}
.y84{bottom:167.628000px;}
.y68{bottom:168.933000px;}
.yf1{bottom:169.203000px;}
.y10e{bottom:176.095500px;}
.yae{bottom:180.471000px;}
.y46{bottom:182.965500px;}
.y83{bottom:194.518500px;}
.y67{bottom:195.823500px;}
.yf0{bottom:196.093500px;}
.y10d{bottom:202.986000px;}
.yad{bottom:207.361500px;}
.y45{bottom:209.856000px;}
.y82{bottom:221.409000px;}
.y66{bottom:222.714000px;}
.yef{bottom:222.984000px;}
.yca{bottom:223.903500px;}
.yac{bottom:234.253500px;}
.y44{bottom:236.748000px;}
.y10c{bottom:244.191000px;}
.y81{bottom:248.299500px;}
.y65{bottom:249.606000px;}
.yee{bottom:249.874500px;}
.yc9{bottom:250.794000px;}
.yab{bottom:261.144000px;}
.y43{bottom:263.638500px;}
.y10b{bottom:271.081500px;}
.y80{bottom:275.191500px;}
.y64{bottom:276.496500px;}
.yed{bottom:276.766500px;}
.yc8{bottom:277.686000px;}
.yaa{bottom:288.034500px;}
.y42{bottom:290.529000px;}
.y10a{bottom:297.972000px;}
.y7f{bottom:302.082000px;}
.y63{bottom:303.387000px;}
.yec{bottom:303.657000px;}
.yc7{bottom:304.576500px;}
.ya9{bottom:314.925000px;}
.y41{bottom:317.419500px;}
.y28{bottom:319.777500px;}
.y7e{bottom:328.972500px;}
.y62{bottom:330.277500px;}
.yeb{bottom:330.547500px;}
.yc6{bottom:331.467000px;}
.y109{bottom:339.177000px;}
.y40{bottom:344.311500px;}
.y7d{bottom:355.863000px;}
.y61{bottom:357.168000px;}
.yea{bottom:357.438000px;}
.yc5{bottom:358.357500px;}
.y108{bottom:366.067500px;}
.y3f{bottom:371.202000px;}
.y27{bottom:380.143500px;}
.y7c{bottom:382.755000px;}
.y60{bottom:384.060000px;}
.ye9{bottom:384.330000px;}
.y107{bottom:392.958000px;}
.y3e{bottom:398.092500px;}
.yc4{bottom:399.295500px;}
.y26{bottom:407.034000px;}
.y7b{bottom:409.645500px;}
.y5f{bottom:410.950500px;}
.ye8{bottom:411.220500px;}
.y3d{bottom:424.983000px;}
.yc3{bottom:426.187500px;}
.y25{bottom:433.924500px;}
.y106{bottom:434.163000px;}
.y7a{bottom:436.536000px;}
.y5e{bottom:437.841000px;}
.ye7{bottom:438.111000px;}
.y3c{bottom:451.873500px;}
.yc2{bottom:453.078000px;}
.y24{bottom:460.816500px;}
.y105{bottom:461.053500px;}
.y79{bottom:463.426500px;}
.ye6{bottom:465.001500px;}
.y92{bottom:465.936000px;}
.y3b{bottom:478.765500px;}
.y5d{bottom:478.779000px;}
.yc1{bottom:479.968500px;}
.ya0{bottom:481.090500px;}
.y104{bottom:487.944000px;}
.ya8{bottom:490.318500px;}
.ye5{bottom:491.893500px;}
.y91{bottom:492.826500px;}
.yf{bottom:496.840500px;}
.y78{bottom:504.364500px;}
.y5c{bottom:505.669500px;}
.yc0{bottom:506.859000px;}
.y9f{bottom:507.981000px;}
.ya7{bottom:517.209000px;}
.ye4{bottom:518.784000px;}
.y23{bottom:519.687000px;}
.y3a{bottom:519.703500px;}
.y90{bottom:519.717000px;}
.ye{bottom:522.061500px;}
.y103{bottom:529.149000px;}
.y77{bottom:531.256500px;}
.y5b{bottom:532.561500px;}
.ybf{bottom:533.751000px;}
.y9e{bottom:534.871500px;}
.ya6{bottom:544.099500px;}
.ye3{bottom:545.674500px;}
.y22{bottom:546.577500px;}
.y39{bottom:546.594000px;}
.y8f{bottom:546.609000px;}
.yd{bottom:547.284000px;}
.y102{bottom:556.039500px;}
.y76{bottom:558.147000px;}
.y5a{bottom:559.452000px;}
.ybe{bottom:560.641500px;}
.y9d{bottom:561.762000px;}
.ya5{bottom:570.990000px;}
.yc{bottom:572.505000px;}
.ye2{bottom:572.565000px;}
.y21{bottom:573.468000px;}
.y38{bottom:573.484500px;}
.y8e{bottom:573.499500px;}
.y75{bottom:585.037500px;}
.y59{bottom:586.342500px;}
.ybd{bottom:587.532000px;}
.y9c{bottom:588.654000px;}
.y120{bottom:590.094000px;}
.y101{bottom:597.243000px;}
.yb{bottom:597.727500px;}
.ya4{bottom:597.880500px;}
.ye1{bottom:599.455500px;}
.y37{bottom:600.375000px;}
.y8d{bottom:600.390000px;}
.y74{bottom:611.928000px;}
.y58{bottom:613.233000px;}
.y9b{bottom:615.544500px;}
.y11f{bottom:616.984500px;}
.ya{bottom:622.948500px;}
.y100{bottom:624.135000px;}
.ya3{bottom:624.772500px;}
.ye0{bottom:626.347500px;}
.y36{bottom:627.267000px;}
.y8c{bottom:627.280500px;}
.ybc{bottom:628.470000px;}
.y20{bottom:632.338500px;}
.y73{bottom:638.820000px;}
.y57{bottom:640.125000px;}
.y9a{bottom:642.435000px;}
.y11e{bottom:643.875000px;}
.y9{bottom:648.171000px;}
.ya2{bottom:651.663000px;}
.ydf{bottom:653.238000px;}
.y35{bottom:654.157500px;}
.y8b{bottom:654.171000px;}
.ybb{bottom:655.360500px;}
.y1f{bottom:659.230500px;}
.yff{bottom:665.338500px;}
.y72{bottom:665.710500px;}
.y56{bottom:667.015500px;}
.y99{bottom:669.325500px;}
.y8{bottom:673.392000px;}
.yde{bottom:680.128500px;}
.y8a{bottom:681.063000px;}
.yba{bottom:682.252500px;}
.y11d{bottom:685.710000px;}
.y1e{bottom:686.121000px;}
.yfe{bottom:692.229000px;}
.y71{bottom:692.601000px;}
.y55{bottom:693.906000px;}
.y34{bottom:695.095500px;}
.y98{bottom:696.217500px;}
.y7{bottom:698.614500px;}
.ydd{bottom:707.019000px;}
.y89{bottom:707.953500px;}
.yb9{bottom:709.143000px;}
.y11c{bottom:712.600500px;}
.y1d{bottom:713.011500px;}
.y70{bottom:719.491500px;}
.y54{bottom:720.796500px;}
.y33{bottom:721.986000px;}
.y97{bottom:723.108000px;}
.yfd{bottom:733.434000px;}
.ycf{bottom:733.539000px;}
.ydc{bottom:733.911000px;}
.y88{bottom:734.844000px;}
.yb8{bottom:736.033500px;}
.y1c{bottom:739.902000px;}
.ya1{bottom:746.382000px;}
.y6f{bottom:746.383500px;}
.y6{bottom:747.634500px;}
.y53{bottom:747.688500px;}
.y32{bottom:748.876500px;}
.y96{bottom:749.998500px;}
.y11b{bottom:754.435500px;}
.yfc{bottom:760.324500px;}
.yce{bottom:760.429500px;}
.ydb{bottom:760.801500px;}
.yb7{bottom:762.924000px;}
.y1b{bottom:766.794000px;}
.y6e{bottom:773.274000px;}
.y31{bottom:775.768500px;}
.y11a{bottom:781.326000px;}
.ycd{bottom:787.321500px;}
.yda{bottom:787.692000px;}
.yb6{bottom:789.816000px;}
.y95{bottom:791.679000px;}
.y87{bottom:793.540500px;}
.y1a{bottom:793.684500px;}
.y6d{bottom:800.164500px;}
.yfb{bottom:801.529500px;}
.y30{bottom:802.659000px;}
.y52{bottom:806.385000px;}
.y94{bottom:813.348000px;}
.ycc{bottom:814.212000px;}
.yd9{bottom:814.582500px;}
.yb5{bottom:816.706500px;}
.y19{bottom:820.575000px;}
.y119{bottom:823.161000px;}
.y5{bottom:825.757500px;}
.y6c{bottom:827.055000px;}
.yfa{bottom:828.420000px;}
.y93{bottom:835.015500px;}
.ycb{bottom:841.102500px;}
.y2f{bottom:843.597000px;}
.y18{bottom:847.465500px;}
.y118{bottom:850.053000px;}
.y6b{bottom:853.945500px;}
.yf9{bottom:855.310500px;}
.y86{bottom:867.993000px;}
.yd8{bottom:868.365000px;}
.y2e{bottom:870.487500px;}
.y51{bottom:880.837500px;}
.yf8{bottom:882.201000px;}
.yb4{bottom:884.535000px;}
.y117{bottom:891.886500px;}
.y85{bottom:894.883500px;}
.yd7{bottom:895.255500px;}
.y2d{bottom:897.378000px;}
.y4{bottom:900.085500px;}
.y17{bottom:906.337500px;}
.y50{bottom:907.728000px;}
.yb3{bottom:911.425500px;}
.y116{bottom:918.778500px;}
.y6a{bottom:921.775500px;}
.yd6{bottom:922.146000px;}
.yf7{bottom:923.406000px;}
.y2c{bottom:924.270000px;}
.y16{bottom:933.228000px;}
.yb0{bottom:934.618500px;}
.yb2{bottom:938.317500px;}
.y115{bottom:945.669000px;}
.y4f{bottom:948.666000px;}
.yd5{bottom:949.038000px;}
.yf6{bottom:950.296500px;}
.y2b{bottom:951.160500px;}
.y3{bottom:961.945500px;}
.yb1{bottom:965.208000px;}
.y4e{bottom:975.556500px;}
.yd4{bottom:975.928500px;}
.yf5{bottom:977.187000px;}
.y2a{bottom:978.051000px;}
.y114{bottom:987.504000px;}
.y15{bottom:992.098500px;}
.y4d{bottom:1002.447000px;}
.yd3{bottom:1002.819000px;}
.y29{bottom:1004.941500px;}
.y2{bottom:1008.309000px;}
.y113{bottom:1014.394500px;}
.y14{bottom:1018.989000px;}
.y4c{bottom:1029.339000px;}
.yf4{bottom:1035.883500px;}
.y112{bottom:1041.285000px;}
.y13{bottom:1045.879500px;}
.y1{bottom:1054.672500px;}
.y4b{bottom:1056.229500px;}
.yd2{bottom:1056.600000px;}
.y111{bottom:1068.175500px;}
.y12{bottom:1072.771500px;}
.y4a{bottom:1083.120000px;}
.yd1{bottom:1083.492000px;}
.y49{bottom:1110.010500px;}
.y11{bottom:1131.468000px;}
.yd0{bottom:1136.011500px;}
.y48{bottom:1136.902500px;}
.he{height:28.787846px;}
.h6{height:45.032765px;}
.h5{height:45.425492px;}
.h7{height:45.752765px;}
.h10{height:47.916442px;}
.hb{height:48.992410px;}
.h3{height:49.351066px;}
.hd{height:49.705066px;}
.hf{height:49.711066px;}
.h9{height:49.781453px;}
.ha{height:50.140109px;}
.hc{height:58.928573px;}
.h4{height:59.221114px;}
.h8{height:59.737577px;}
.h2{height:86.038650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x2{left:111.279000px;}
.x1{left:120.250500px;}
.xe{left:128.922000px;}
.x17{left:140.278500px;}
.x8{left:151.897500px;}
.x18{left:161.797500px;}
.x7{left:176.443500px;}
.x12{left:234.073500px;}
.x4{left:239.470500px;}
.x13{left:251.001000px;}
.x14{left:284.466000px;}
.x19{left:285.987000px;}
.x15{left:301.395000px;}
.x1a{left:302.914500px;}
.x3{left:350.052000px;}
.x5{left:370.752000px;}
.x11{left:383.980500px;}
.xf{left:401.830500px;}
.x6{left:416.013000px;}
.x10{left:418.759500px;}
.x16{left:437.490000px;}
.x9{left:441.973500px;}
.xb{left:503.065500px;}
.xc{left:534.579000px;}
.xd{left:551.508000px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v4{vertical-align:-11.157333pt;}
.v3{vertical-align:-10.186667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.002347pt;}
.ls1{letter-spacing:2.656533pt;}
.ls5{letter-spacing:22.380134pt;}
.ls4{letter-spacing:33.474560pt;}
.ls3{letter-spacing:38.255360pt;}
.ws4b{word-spacing:-15.940267pt;}
.ws32{word-spacing:-3.825664pt;}
.ws2c{word-spacing:-3.634381pt;}
.ws33{word-spacing:-3.506859pt;}
.ws8b{word-spacing:-3.379337pt;}
.ws26{word-spacing:-3.315575pt;}
.ws1b{word-spacing:-3.060531pt;}
.ws28{word-spacing:-2.996770pt;}
.ws95{word-spacing:-2.933009pt;}
.wsa2{word-spacing:-2.422921pt;}
.wsab{word-spacing:-2.359159pt;}
.ws64{word-spacing:-2.295398pt;}
.ws55{word-spacing:-2.231637pt;}
.ws56{word-spacing:-2.167876pt;}
.ws9{word-spacing:-2.152729pt;}
.ws76{word-spacing:-2.104115pt;}
.ws88{word-spacing:-2.040354pt;}
.ws77{word-spacing:-1.912832pt;}
.ws34{word-spacing:-1.849071pt;}
.ws75{word-spacing:-1.721549pt;}
.ws40{word-spacing:-1.657788pt;}
.ws8e{word-spacing:-1.594027pt;}
.ws9c{word-spacing:-1.466505pt;}
.ws47{word-spacing:-1.338982pt;}
.ws9f{word-spacing:-1.211460pt;}
.ws4e{word-spacing:-1.147699pt;}
.ws6c{word-spacing:-1.020177pt;}
.ws2a{word-spacing:-0.956416pt;}
.ws65{word-spacing:-0.892655pt;}
.wsa8{word-spacing:-0.828894pt;}
.ws7{word-spacing:-0.814546pt;}
.ws93{word-spacing:-0.765133pt;}
.wsa1{word-spacing:-0.701372pt;}
.wsac{word-spacing:-0.637611pt;}
.ws96{word-spacing:-0.573850pt;}
.wsaf{word-spacing:-0.382566pt;}
.ws97{word-spacing:-0.255044pt;}
.ws4{word-spacing:-0.232727pt;}
.wsb0{word-spacing:-0.191283pt;}
.ws91{word-spacing:-0.127522pt;}
.wsa6{word-spacing:-0.076513pt;}
.ws61{word-spacing:-0.063761pt;}
.ws52{word-spacing:-0.053134pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.058182pt;}
.ws94{word-spacing:0.063761pt;}
.ws84{word-spacing:0.191283pt;}
.ws20{word-spacing:0.255044pt;}
.ws80{word-spacing:0.318805pt;}
.ws70{word-spacing:0.382566pt;}
.ws89{word-spacing:0.446327pt;}
.ws16{word-spacing:0.510089pt;}
.ws4a{word-spacing:0.573850pt;}
.ws69{word-spacing:0.637611pt;}
.ws49{word-spacing:0.701372pt;}
.ws53{word-spacing:0.765133pt;}
.ws37{word-spacing:0.828894pt;}
.ws8a{word-spacing:0.892655pt;}
.ws1c{word-spacing:0.956416pt;}
.ws58{word-spacing:1.020177pt;}
.ws1e{word-spacing:1.147699pt;}
.ws59{word-spacing:1.211460pt;}
.wsad{word-spacing:1.275221pt;}
.ws19{word-spacing:1.338982pt;}
.ws25{word-spacing:1.402743pt;}
.ws87{word-spacing:1.466505pt;}
.ws12{word-spacing:1.530266pt;}
.ws27{word-spacing:1.594027pt;}
.ws35{word-spacing:1.657788pt;}
.ws71{word-spacing:1.785310pt;}
.wse{word-spacing:1.849071pt;}
.ws30{word-spacing:1.912832pt;}
.ws6e{word-spacing:1.976593pt;}
.ws45{word-spacing:2.104115pt;}
.ws3e{word-spacing:2.167876pt;}
.ws48{word-spacing:2.231637pt;}
.ws5a{word-spacing:2.359159pt;}
.ws3a{word-spacing:2.422921pt;}
.ws6f{word-spacing:2.486682pt;}
.ws18{word-spacing:2.614204pt;}
.ws85{word-spacing:2.677965pt;}
.ws6{word-spacing:2.734548pt;}
.ws3f{word-spacing:2.741726pt;}
.ws90{word-spacing:2.805487pt;}
.ws9e{word-spacing:2.869248pt;}
.wsf{word-spacing:3.060531pt;}
.ws60{word-spacing:3.124292pt;}
.ws51{word-spacing:3.188032pt;}
.wsa7{word-spacing:3.251814pt;}
.ws2e{word-spacing:3.379337pt;}
.ws36{word-spacing:3.443098pt;}
.ws2f{word-spacing:3.570620pt;}
.ws68{word-spacing:3.634381pt;}
.ws2d{word-spacing:3.825664pt;}
.ws78{word-spacing:3.889425pt;}
.ws2b{word-spacing:3.953186pt;}
.wsa{word-spacing:3.956367pt;}
.ws44{word-spacing:4.080708pt;}
.ws9b{word-spacing:4.144469pt;}
.ws72{word-spacing:4.208230pt;}
.ws57{word-spacing:4.271991pt;}
.ws4c{word-spacing:4.335753pt;}
.ws4d{word-spacing:4.399514pt;}
.ws38{word-spacing:4.527036pt;}
.ws74{word-spacing:4.590797pt;}
.ws14{word-spacing:4.718319pt;}
.ws82{word-spacing:4.782080pt;}
.ws62{word-spacing:4.973363pt;}
.ws4f{word-spacing:5.037124pt;}
.ws9d{word-spacing:5.100885pt;}
.ws67{word-spacing:5.164646pt;}
.ws73{word-spacing:5.292169pt;}
.ws1f{word-spacing:5.355930pt;}
.ws50{word-spacing:5.483452pt;}
.ws31{word-spacing:5.547213pt;}
.ws15{word-spacing:5.674735pt;}
.wsd{word-spacing:5.738496pt;}
.ws6d{word-spacing:5.802257pt;}
.ws54{word-spacing:5.866018pt;}
.ws3d{word-spacing:6.184823pt;}
.ws39{word-spacing:6.248585pt;}
.ws5b{word-spacing:6.376107pt;}
.ws7e{word-spacing:6.631151pt;}
.ws17{word-spacing:6.758673pt;}
.ws79{word-spacing:6.822434pt;}
.ws24{word-spacing:6.949956pt;}
.ws86{word-spacing:7.013717pt;}
.ws6a{word-spacing:7.077478pt;}
.ws29{word-spacing:7.141239pt;}
.ws43{word-spacing:7.205001pt;}
.wsb1{word-spacing:7.332523pt;}
.ws3b{word-spacing:7.396284pt;}
.ws13{word-spacing:7.460045pt;}
.ws3c{word-spacing:7.523806pt;}
.ws5f{word-spacing:7.587567pt;}
.ws63{word-spacing:7.651328pt;}
.ws92{word-spacing:7.715089pt;}
.ws23{word-spacing:7.842611pt;}
.wsa0{word-spacing:7.970133pt;}
.wsa9{word-spacing:8.033894pt;}
.ws6b{word-spacing:8.288939pt;}
.ws98{word-spacing:8.416461pt;}
.ws5d{word-spacing:8.480222pt;}
.ws7a{word-spacing:8.543983pt;}
.wsae{word-spacing:8.607744pt;}
.ws3{word-spacing:8.610916pt;}
.ws9a{word-spacing:8.671505pt;}
.ws81{word-spacing:8.799027pt;}
.ws22{word-spacing:9.117833pt;}
.ws5e{word-spacing:9.245355pt;}
.ws5c{word-spacing:9.436638pt;}
.ws99{word-spacing:9.500399pt;}
.ws42{word-spacing:9.882965pt;}
.ws7d{word-spacing:10.265532pt;}
.ws2{word-spacing:10.356372pt;}
.ws46{word-spacing:10.393054pt;}
.wsaa{word-spacing:10.711859pt;}
.ws7c{word-spacing:10.839381pt;}
.ws41{word-spacing:11.030665pt;}
.ws66{word-spacing:11.349470pt;}
.ws7b{word-spacing:11.987081pt;}
.ws8c{word-spacing:12.497169pt;}
.ws1a{word-spacing:12.815974pt;}
.ws8d{word-spacing:12.879735pt;}
.ws8f{word-spacing:14.282479pt;}
.ws5{word-spacing:15.010922pt;}
.wsa3{word-spacing:15.876506pt;}
.ws7f{word-spacing:16.705399pt;}
.ws1d{word-spacing:17.024205pt;}
.ws11{word-spacing:17.406771pt;}
.ws10{word-spacing:17.661815pt;}
.wsb{word-spacing:19.051754pt;}
.ws83{word-spacing:20.594825pt;}
.wsc{word-spacing:21.615002pt;}
.ws0{word-spacing:27.439800pt;}
.wsa4{word-spacing:38.192879pt;}
.ws21{word-spacing:76.436554pt;}
.wsa5{word-spacing:152.962799pt;}
._17{margin-left:-8.394700pt;}
._4{margin-left:-7.077478pt;}
._1{margin-left:-5.510000pt;}
._3{margin-left:-4.077400pt;}
._2{margin-left:-2.755000pt;}
._0{margin-left:-1.653000pt;}
._1c{width:2.017396pt;}
._14{width:3.274773pt;}
._24{width:12.448855pt;}
._d{width:13.448797pt;}
._20{width:14.900939pt;}
._21{width:15.797251pt;}
._7{width:17.163651pt;}
._6{width:18.347740pt;}
._a{width:20.076640pt;}
._12{width:21.476075pt;}
._13{width:23.081506pt;}
._5{width:23.970929pt;}
._22{width:24.866816pt;}
._9{width:25.769437pt;}
._c{width:27.481020pt;}
._23{width:28.802331pt;}
._e{width:29.903940pt;}
._1e{width:30.860356pt;}
._15{width:32.773188pt;}
._1d{width:34.813542pt;}
._8{width:36.211498pt;}
._16{width:37.480843pt;}
._f{width:38.570658pt;}
._18{width:40.488277pt;}
._b{width:41.557852pt;}
._1b{width:42.464870pt;}
._1f{width:44.008410pt;}
._26{width:46.125723pt;}
._19{width:48.130030pt;}
._11{width:50.175172pt;}
._25{width:51.710225pt;}
._1a{width:53.049207pt;}
._10{width:76.513067pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:56.149333pt;}
.y110{bottom:96.000000pt;}
.yf3{bottom:102.596000pt;}
.y10f{bottom:119.902667pt;}
.y69{bottom:126.024000pt;}
.yf2{bottom:126.498667pt;}
.yaf{bottom:136.516000pt;}
.y47{bottom:138.733333pt;}
.y84{bottom:149.002667pt;}
.y68{bottom:150.162667pt;}
.yf1{bottom:150.402667pt;}
.y10e{bottom:156.529333pt;}
.yae{bottom:160.418667pt;}
.y46{bottom:162.636000pt;}
.y83{bottom:172.905333pt;}
.y67{bottom:174.065333pt;}
.yf0{bottom:174.305333pt;}
.y10d{bottom:180.432000pt;}
.yad{bottom:184.321333pt;}
.y45{bottom:186.538667pt;}
.y82{bottom:196.808000pt;}
.y66{bottom:197.968000pt;}
.yef{bottom:198.208000pt;}
.yca{bottom:199.025333pt;}
.yac{bottom:208.225333pt;}
.y44{bottom:210.442667pt;}
.y10c{bottom:217.058667pt;}
.y81{bottom:220.710667pt;}
.y65{bottom:221.872000pt;}
.yee{bottom:222.110667pt;}
.yc9{bottom:222.928000pt;}
.yab{bottom:232.128000pt;}
.y43{bottom:234.345333pt;}
.y10b{bottom:240.961333pt;}
.y80{bottom:244.614667pt;}
.y64{bottom:245.774667pt;}
.yed{bottom:246.014667pt;}
.yc8{bottom:246.832000pt;}
.yaa{bottom:256.030667pt;}
.y42{bottom:258.248000pt;}
.y10a{bottom:264.864000pt;}
.y7f{bottom:268.517333pt;}
.y63{bottom:269.677333pt;}
.yec{bottom:269.917333pt;}
.yc7{bottom:270.734667pt;}
.ya9{bottom:279.933333pt;}
.y41{bottom:282.150667pt;}
.y28{bottom:284.246667pt;}
.y7e{bottom:292.420000pt;}
.y62{bottom:293.580000pt;}
.yeb{bottom:293.820000pt;}
.yc6{bottom:294.637333pt;}
.y109{bottom:301.490667pt;}
.y40{bottom:306.054667pt;}
.y7d{bottom:316.322667pt;}
.y61{bottom:317.482667pt;}
.yea{bottom:317.722667pt;}
.yc5{bottom:318.540000pt;}
.y108{bottom:325.393333pt;}
.y3f{bottom:329.957333pt;}
.y27{bottom:337.905333pt;}
.y7c{bottom:340.226667pt;}
.y60{bottom:341.386667pt;}
.ye9{bottom:341.626667pt;}
.y107{bottom:349.296000pt;}
.y3e{bottom:353.860000pt;}
.yc4{bottom:354.929333pt;}
.y26{bottom:361.808000pt;}
.y7b{bottom:364.129333pt;}
.y5f{bottom:365.289333pt;}
.ye8{bottom:365.529333pt;}
.y3d{bottom:377.762667pt;}
.yc3{bottom:378.833333pt;}
.y25{bottom:385.710667pt;}
.y106{bottom:385.922667pt;}
.y7a{bottom:388.032000pt;}
.y5e{bottom:389.192000pt;}
.ye7{bottom:389.432000pt;}
.y3c{bottom:401.665333pt;}
.yc2{bottom:402.736000pt;}
.y24{bottom:409.614667pt;}
.y105{bottom:409.825333pt;}
.y79{bottom:411.934667pt;}
.ye6{bottom:413.334667pt;}
.y92{bottom:414.165333pt;}
.y3b{bottom:425.569333pt;}
.y5d{bottom:425.581333pt;}
.yc1{bottom:426.638667pt;}
.ya0{bottom:427.636000pt;}
.y104{bottom:433.728000pt;}
.ya8{bottom:435.838667pt;}
.ye5{bottom:437.238667pt;}
.y91{bottom:438.068000pt;}
.yf{bottom:441.636000pt;}
.y78{bottom:448.324000pt;}
.y5c{bottom:449.484000pt;}
.yc0{bottom:450.541333pt;}
.y9f{bottom:451.538667pt;}
.ya7{bottom:459.741333pt;}
.ye4{bottom:461.141333pt;}
.y23{bottom:461.944000pt;}
.y3a{bottom:461.958667pt;}
.y90{bottom:461.970667pt;}
.ye{bottom:464.054667pt;}
.y103{bottom:470.354667pt;}
.y77{bottom:472.228000pt;}
.y5b{bottom:473.388000pt;}
.ybf{bottom:474.445333pt;}
.y9e{bottom:475.441333pt;}
.ya6{bottom:483.644000pt;}
.ye3{bottom:485.044000pt;}
.y22{bottom:485.846667pt;}
.y39{bottom:485.861333pt;}
.y8f{bottom:485.874667pt;}
.yd{bottom:486.474667pt;}
.y102{bottom:494.257333pt;}
.y76{bottom:496.130667pt;}
.y5a{bottom:497.290667pt;}
.ybe{bottom:498.348000pt;}
.y9d{bottom:499.344000pt;}
.ya5{bottom:507.546667pt;}
.yc{bottom:508.893333pt;}
.ye2{bottom:508.946667pt;}
.y21{bottom:509.749333pt;}
.y38{bottom:509.764000pt;}
.y8e{bottom:509.777333pt;}
.y75{bottom:520.033333pt;}
.y59{bottom:521.193333pt;}
.ybd{bottom:522.250667pt;}
.y9c{bottom:523.248000pt;}
.y120{bottom:524.528000pt;}
.y101{bottom:530.882667pt;}
.yb{bottom:531.313333pt;}
.ya4{bottom:531.449333pt;}
.ye1{bottom:532.849333pt;}
.y37{bottom:533.666667pt;}
.y8d{bottom:533.680000pt;}
.y74{bottom:543.936000pt;}
.y58{bottom:545.096000pt;}
.y9b{bottom:547.150667pt;}
.y11f{bottom:548.430667pt;}
.ya{bottom:553.732000pt;}
.y100{bottom:554.786667pt;}
.ya3{bottom:555.353333pt;}
.ye0{bottom:556.753333pt;}
.y36{bottom:557.570667pt;}
.y8c{bottom:557.582667pt;}
.ybc{bottom:558.640000pt;}
.y20{bottom:562.078667pt;}
.y73{bottom:567.840000pt;}
.y57{bottom:569.000000pt;}
.y9a{bottom:571.053333pt;}
.y11e{bottom:572.333333pt;}
.y9{bottom:576.152000pt;}
.ya2{bottom:579.256000pt;}
.ydf{bottom:580.656000pt;}
.y35{bottom:581.473333pt;}
.y8b{bottom:581.485333pt;}
.ybb{bottom:582.542667pt;}
.y1f{bottom:585.982667pt;}
.yff{bottom:591.412000pt;}
.y72{bottom:591.742667pt;}
.y56{bottom:592.902667pt;}
.y99{bottom:594.956000pt;}
.y8{bottom:598.570667pt;}
.yde{bottom:604.558667pt;}
.y8a{bottom:605.389333pt;}
.yba{bottom:606.446667pt;}
.y11d{bottom:609.520000pt;}
.y1e{bottom:609.885333pt;}
.yfe{bottom:615.314667pt;}
.y71{bottom:615.645333pt;}
.y55{bottom:616.805333pt;}
.y34{bottom:617.862667pt;}
.y98{bottom:618.860000pt;}
.y7{bottom:620.990667pt;}
.ydd{bottom:628.461333pt;}
.y89{bottom:629.292000pt;}
.yb9{bottom:630.349333pt;}
.y11c{bottom:633.422667pt;}
.y1d{bottom:633.788000pt;}
.y70{bottom:639.548000pt;}
.y54{bottom:640.708000pt;}
.y33{bottom:641.765333pt;}
.y97{bottom:642.762667pt;}
.yfd{bottom:651.941333pt;}
.ycf{bottom:652.034667pt;}
.ydc{bottom:652.365333pt;}
.y88{bottom:653.194667pt;}
.yb8{bottom:654.252000pt;}
.y1c{bottom:657.690667pt;}
.ya1{bottom:663.450667pt;}
.y6f{bottom:663.452000pt;}
.y6{bottom:664.564000pt;}
.y53{bottom:664.612000pt;}
.y32{bottom:665.668000pt;}
.y96{bottom:666.665333pt;}
.y11b{bottom:670.609333pt;}
.yfc{bottom:675.844000pt;}
.yce{bottom:675.937333pt;}
.ydb{bottom:676.268000pt;}
.yb7{bottom:678.154667pt;}
.y1b{bottom:681.594667pt;}
.y6e{bottom:687.354667pt;}
.y31{bottom:689.572000pt;}
.y11a{bottom:694.512000pt;}
.ycd{bottom:699.841333pt;}
.yda{bottom:700.170667pt;}
.yb6{bottom:702.058667pt;}
.y95{bottom:703.714667pt;}
.y87{bottom:705.369333pt;}
.y1a{bottom:705.497333pt;}
.y6d{bottom:711.257333pt;}
.yfb{bottom:712.470667pt;}
.y30{bottom:713.474667pt;}
.y52{bottom:716.786667pt;}
.y94{bottom:722.976000pt;}
.ycc{bottom:723.744000pt;}
.yd9{bottom:724.073333pt;}
.yb5{bottom:725.961333pt;}
.y19{bottom:729.400000pt;}
.y119{bottom:731.698667pt;}
.y5{bottom:734.006667pt;}
.y6c{bottom:735.160000pt;}
.yfa{bottom:736.373333pt;}
.y93{bottom:742.236000pt;}
.ycb{bottom:747.646667pt;}
.y2f{bottom:749.864000pt;}
.y18{bottom:753.302667pt;}
.y118{bottom:755.602667pt;}
.y6b{bottom:759.062667pt;}
.yf9{bottom:760.276000pt;}
.y86{bottom:771.549333pt;}
.yd8{bottom:771.880000pt;}
.y2e{bottom:773.766667pt;}
.y51{bottom:782.966667pt;}
.yf8{bottom:784.178667pt;}
.yb4{bottom:786.253333pt;}
.y117{bottom:792.788000pt;}
.y85{bottom:795.452000pt;}
.yd7{bottom:795.782667pt;}
.y2d{bottom:797.669333pt;}
.y4{bottom:800.076000pt;}
.y17{bottom:805.633333pt;}
.y50{bottom:806.869333pt;}
.yb3{bottom:810.156000pt;}
.y116{bottom:816.692000pt;}
.y6a{bottom:819.356000pt;}
.yd6{bottom:819.685333pt;}
.yf7{bottom:820.805333pt;}
.y2c{bottom:821.573333pt;}
.y16{bottom:829.536000pt;}
.yb0{bottom:830.772000pt;}
.yb2{bottom:834.060000pt;}
.y115{bottom:840.594667pt;}
.y4f{bottom:843.258667pt;}
.yd5{bottom:843.589333pt;}
.yf6{bottom:844.708000pt;}
.y2b{bottom:845.476000pt;}
.y3{bottom:855.062667pt;}
.yb1{bottom:857.962667pt;}
.y4e{bottom:867.161333pt;}
.yd4{bottom:867.492000pt;}
.yf5{bottom:868.610667pt;}
.y2a{bottom:869.378667pt;}
.y114{bottom:877.781333pt;}
.y15{bottom:881.865333pt;}
.y4d{bottom:891.064000pt;}
.yd3{bottom:891.394667pt;}
.y29{bottom:893.281333pt;}
.y2{bottom:896.274667pt;}
.y113{bottom:901.684000pt;}
.y14{bottom:905.768000pt;}
.y4c{bottom:914.968000pt;}
.yf4{bottom:920.785333pt;}
.y112{bottom:925.586667pt;}
.y13{bottom:929.670667pt;}
.y1{bottom:937.486667pt;}
.y4b{bottom:938.870667pt;}
.yd2{bottom:939.200000pt;}
.y111{bottom:949.489333pt;}
.y12{bottom:953.574667pt;}
.y4a{bottom:962.773333pt;}
.yd1{bottom:963.104000pt;}
.y49{bottom:986.676000pt;}
.y11{bottom:1005.749333pt;}
.yd0{bottom:1009.788000pt;}
.y48{bottom:1010.580000pt;}
.he{height:25.589197pt;}
.h6{height:40.029124pt;}
.h5{height:40.378215pt;}
.h7{height:40.669125pt;}
.h10{height:42.592393pt;}
.hb{height:43.548809pt;}
.h3{height:43.867614pt;}
.hd{height:44.182281pt;}
.hf{height:44.187614pt;}
.h9{height:44.250180pt;}
.ha{height:44.568986pt;}
.hc{height:52.380954pt;}
.h4{height:52.640990pt;}
.h8{height:53.100068pt;}
.h2{height:76.478800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x2{left:98.914667pt;}
.x1{left:106.889333pt;}
.xe{left:114.597333pt;}
.x17{left:124.692000pt;}
.x8{left:135.020000pt;}
.x18{left:143.820000pt;}
.x7{left:156.838667pt;}
.x12{left:208.065333pt;}
.x4{left:212.862667pt;}
.x13{left:223.112000pt;}
.x14{left:252.858667pt;}
.x19{left:254.210667pt;}
.x15{left:267.906667pt;}
.x1a{left:269.257333pt;}
.x3{left:311.157333pt;}
.x5{left:329.557333pt;}
.x11{left:341.316000pt;}
.xf{left:357.182667pt;}
.x6{left:369.789333pt;}
.x10{left:372.230667pt;}
.x16{left:388.880000pt;}
.x9{left:392.865333pt;}
.xb{left:447.169333pt;}
.xc{left:475.181333pt;}
.xd{left:490.229333pt;}
}




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