
    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_70566da76ecb36cf5c856837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_276e3c3bc75ee655b025ec95.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.219727;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_dcc8b7e5f746914ee8c30a25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.148438;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_a9e92e62636ab45ef957dec1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.176000;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_ee998a02d96ff628be92ddef.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.157000;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_9d8a9b5e029317b8f6dc6250.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136000;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_adf7d0b89d3a638c5e6e1a22.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.127000;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_a9e92e62636ab45ef957dec1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.176000;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);}
.v2{vertical-align:-18.187200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.232800px;}
.ls4{letter-spacing:-1.527600px;}
.ls3{letter-spacing:-1.425000px;}
.ls5{letter-spacing:-1.140000px;}
.ls7{letter-spacing:-0.863550px;}
.ls6{letter-spacing:-0.855000px;}
.lse{letter-spacing:-0.575700px;}
.lsd{letter-spacing:-0.570000px;}
.ls1c{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.285000px;}
.lsa{letter-spacing:-0.012000px;}
.lsf{letter-spacing:-0.011400px;}
.lsc{letter-spacing:-0.005700px;}
.ls1a{letter-spacing:-0.005400px;}
.ls1b{letter-spacing:-0.004800px;}
.ls10{letter-spacing:-0.004200px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.279300px;}
.ls0{letter-spacing:0.285000px;}
.ls19{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.570000px;}
.ls1{letter-spacing:3.990000px;}
.ls16{letter-spacing:13.580400px;}
.lsb{letter-spacing:14.070000px;}
.ls15{letter-spacing:14.134800px;}
.ls12{letter-spacing:15.130800px;}
.ls14{letter-spacing:18.676200px;}
.ls18{letter-spacing:19.182000px;}
.ls13{letter-spacing:20.971200px;}
.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;}
}
.ws36{word-spacing:-14.250000px;}
.ws6b{word-spacing:-14.244300px;}
.ws8a{word-spacing:-12.000000px;}
.ws3f{word-spacing:-2.109000px;}
.ws89{word-spacing:-1.938000px;}
.ws26{word-spacing:-1.881000px;}
.ws24{word-spacing:-1.824000px;}
.ws7{word-spacing:-1.767000px;}
.ws3e{word-spacing:-1.596000px;}
.ws2e{word-spacing:-1.425000px;}
.ws83{word-spacing:-1.311000px;}
.ws5e{word-spacing:-1.254000px;}
.ws45{word-spacing:-1.197000px;}
.wsa2{word-spacing:-1.104000px;}
.ws1a{word-spacing:-1.026000px;}
.ws43{word-spacing:-0.969000px;}
.wse{word-spacing:-0.912000px;}
.ws71{word-spacing:-0.855000px;}
.ws5f{word-spacing:-0.741000px;}
.ws3a{word-spacing:-0.684000px;}
.ws85{word-spacing:-0.666900px;}
.ws46{word-spacing:-0.513000px;}
.ws9e{word-spacing:-0.480000px;}
.ws49{word-spacing:-0.342000px;}
.ws8e{word-spacing:-0.336000px;}
.ws86{word-spacing:-0.333450px;}
.ws13{word-spacing:-0.114000px;}
.ws4f{word-spacing:0.000000px;}
.ws70{word-spacing:0.057000px;}
.ws56{word-spacing:0.285000px;}
.ws1e{word-spacing:0.342000px;}
.ws66{word-spacing:0.399000px;}
.ws6e{word-spacing:0.427500px;}
.ws69{word-spacing:0.456000px;}
.ws61{word-spacing:0.513000px;}
.ws9b{word-spacing:0.528000px;}
.ws4b{word-spacing:0.570000px;}
.ws37{word-spacing:0.575700px;}
.ws47{word-spacing:0.684000px;}
.ws65{word-spacing:0.712500px;}
.ws9f{word-spacing:0.720000px;}
.ws84{word-spacing:0.741000px;}
.ws5b{word-spacing:0.798000px;}
.ws4d{word-spacing:0.855000px;}
.ws19{word-spacing:0.912000px;}
.ws94{word-spacing:1.008000px;}
.ws12{word-spacing:1.026000px;}
.ws2d{word-spacing:1.083000px;}
.ws2f{word-spacing:1.140000px;}
.ws50{word-spacing:1.167600px;}
.ws33{word-spacing:1.176000px;}
.ws10{word-spacing:1.197000px;}
.ws8d{word-spacing:1.200000px;}
.ws3{word-spacing:1.350000px;}
.ws25{word-spacing:1.368000px;}
.ws4{word-spacing:1.425000px;}
.ws8{word-spacing:1.482000px;}
.ws44{word-spacing:1.539000px;}
.ws40{word-spacing:1.596000px;}
.ws97{word-spacing:1.632000px;}
.ws35{word-spacing:1.668000px;}
.ws8b{word-spacing:1.674000px;}
.ws31{word-spacing:1.710000px;}
.ws6{word-spacing:1.767000px;}
.ws38{word-spacing:1.824000px;}
.ws14{word-spacing:1.881000px;}
.wsf{word-spacing:1.938000px;}
.ws68{word-spacing:2.052000px;}
.ws4a{word-spacing:2.109000px;}
.wsd{word-spacing:2.166000px;}
.ws81{word-spacing:2.214450px;}
.ws34{word-spacing:2.232000px;}
.ws93{word-spacing:2.304000px;}
.ws99{word-spacing:2.400000px;}
.ws95{word-spacing:2.448000px;}
.ws20{word-spacing:2.451000px;}
.ws9d{word-spacing:2.496000px;}
.ws67{word-spacing:2.565000px;}
.ws63{word-spacing:2.622000px;}
.ws9a{word-spacing:2.640000px;}
.ws4e{word-spacing:2.679000px;}
.ws41{word-spacing:2.736000px;}
.ws88{word-spacing:2.793000px;}
.wsa{word-spacing:2.850000px;}
.ws54{word-spacing:2.907000px;}
.ws92{word-spacing:3.072000px;}
.ws17{word-spacing:3.135000px;}
.ws9c{word-spacing:3.168000px;}
.ws72{word-spacing:3.249000px;}
.ws78{word-spacing:3.363000px;}
.ws1d{word-spacing:3.420000px;}
.ws1b{word-spacing:3.477000px;}
.ws74{word-spacing:3.534000px;}
.ws5d{word-spacing:3.591000px;}
.ws30{word-spacing:3.705000px;}
.ws7d{word-spacing:3.876000px;}
.wsb{word-spacing:4.218000px;}
.wsa1{word-spacing:4.272000px;}
.ws80{word-spacing:4.428900px;}
.ws82{word-spacing:4.446000px;}
.ws48{word-spacing:4.617000px;}
.ws3c{word-spacing:4.845000px;}
.ws96{word-spacing:4.848000px;}
.ws87{word-spacing:4.959000px;}
.ws52{word-spacing:5.016000px;}
.ws75{word-spacing:5.073000px;}
.ws2c{word-spacing:5.130000px;}
.ws6c{word-spacing:5.187000px;}
.ws7f{word-spacing:5.301000px;}
.ws1{word-spacing:5.462100px;}
.ws11{word-spacing:5.700000px;}
.ws8c{word-spacing:5.760000px;}
.ws60{word-spacing:5.985000px;}
.ws51{word-spacing:6.042000px;}
.ws91{word-spacing:6.048000px;}
.ws6f{word-spacing:6.099000px;}
.ws39{word-spacing:6.213000px;}
.ws15{word-spacing:6.498000px;}
.ws28{word-spacing:6.703200px;}
.ws79{word-spacing:6.720300px;}
.ws77{word-spacing:6.726000px;}
.ws16{word-spacing:6.897000px;}
.ws18{word-spacing:7.011000px;}
.ws90{word-spacing:7.248000px;}
.ws7e{word-spacing:7.324500px;}
.ws5{word-spacing:7.638000px;}
.ws2b{word-spacing:7.752000px;}
.wsa0{word-spacing:7.776000px;}
.ws1c{word-spacing:7.866000px;}
.wsc{word-spacing:8.037000px;}
.ws29{word-spacing:8.151000px;}
.ws22{word-spacing:8.208000px;}
.ws1f{word-spacing:8.664000px;}
.ws7b{word-spacing:8.778000px;}
.ws9{word-spacing:8.949000px;}
.ws5c{word-spacing:9.120000px;}
.ws53{word-spacing:9.177000px;}
.ws6d{word-spacing:9.291000px;}
.ws7c{word-spacing:9.918000px;}
.ws21{word-spacing:10.830000px;}
.ws57{word-spacing:10.881300px;}
.ws58{word-spacing:10.887000px;}
.ws6a{word-spacing:10.944000px;}
.ws3d{word-spacing:11.058000px;}
.ws55{word-spacing:11.126400px;}
.ws73{word-spacing:11.571000px;}
.ws42{word-spacing:11.793300px;}
.ws32{word-spacing:11.799000px;}
.ws59{word-spacing:12.369000px;}
.ws2{word-spacing:12.770400px;}
.ws4c{word-spacing:13.053000px;}
.ws23{word-spacing:14.250000px;}
.ws2a{word-spacing:14.649000px;}
.ws62{word-spacing:14.877000px;}
.ws5a{word-spacing:15.219000px;}
.ws76{word-spacing:15.504000px;}
.ws0{word-spacing:15.673200px;}
.ws3b{word-spacing:16.074000px;}
.ws64{word-spacing:16.758000px;}
.ws98{word-spacing:17.088000px;}
.ws8f{word-spacing:17.472000px;}
.ws27{word-spacing:18.872700px;}
.ws7a{word-spacing:19.893000px;}
._7{margin-left:-10.260000px;}
._1{margin-left:-6.840000px;}
._6{margin-left:-5.757000px;}
._5{margin-left:-4.560000px;}
._3{margin-left:-3.420000px;}
._0{margin-left:-2.268000px;}
._2{margin-left:-1.083000px;}
._4{width:1.356000px;}
._8{width:12.696600px;}
._9{width:61.056000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:6.000000px;}
.fs6{font-size:28.500000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:42.750000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:39.900300px;}
.y65{bottom:40.325850px;}
.y64{bottom:66.201300px;}
.y3b{bottom:84.186900px;}
.yab{bottom:84.192450px;}
.y87{bottom:84.196050px;}
.y1d{bottom:84.204000px;}
.y3a{bottom:102.187500px;}
.yaa{bottom:102.193050px;}
.y86{bottom:102.196650px;}
.y63{bottom:102.201075px;}
.y1c{bottom:102.201750px;}
.y39{bottom:120.188100px;}
.ya9{bottom:120.193650px;}
.y85{bottom:120.197250px;}
.y1b{bottom:120.199500px;}
.y38{bottom:138.188700px;}
.y62{bottom:138.191250px;}
.ya8{bottom:138.194250px;}
.y1a{bottom:138.197250px;}
.y84{bottom:138.197850px;}
.y37{bottom:156.189300px;}
.y61{bottom:156.191850px;}
.ya7{bottom:156.194850px;}
.y19{bottom:156.197850px;}
.y83{bottom:156.198450px;}
.y36{bottom:174.189900px;}
.y60{bottom:174.192450px;}
.ya6{bottom:174.195450px;}
.y18{bottom:174.198450px;}
.y82{bottom:174.199050px;}
.y35{bottom:192.190500px;}
.y5f{bottom:192.193050px;}
.ya5{bottom:192.196050px;}
.y17{bottom:192.199050px;}
.y81{bottom:192.199650px;}
.y34{bottom:210.191100px;}
.y5e{bottom:210.193650px;}
.ya4{bottom:210.196650px;}
.y16{bottom:210.199650px;}
.y80{bottom:210.200250px;}
.y33{bottom:228.191700px;}
.y5d{bottom:228.194250px;}
.yba{bottom:228.195300px;}
.ya3{bottom:228.197250px;}
.y15{bottom:228.200250px;}
.y7f{bottom:228.200850px;}
.y7e{bottom:246.190050px;}
.y32{bottom:246.192300px;}
.y14{bottom:246.193050px;}
.y5c{bottom:246.194850px;}
.yb9{bottom:246.195900px;}
.ya2{bottom:246.197850px;}
.y7d{bottom:264.190650px;}
.y31{bottom:264.192900px;}
.y13{bottom:264.193650px;}
.y5b{bottom:264.195450px;}
.yb8{bottom:264.196500px;}
.ya1{bottom:264.198450px;}
.y7c{bottom:282.191250px;}
.y30{bottom:282.193500px;}
.y12{bottom:282.194250px;}
.y5a{bottom:282.196050px;}
.ya0{bottom:282.199050px;}
.y7b{bottom:300.191850px;}
.y2f{bottom:300.194100px;}
.y11{bottom:300.194850px;}
.yb7{bottom:300.196275px;}
.y59{bottom:300.196650px;}
.y9f{bottom:300.199650px;}
.y7a{bottom:318.192450px;}
.y2e{bottom:318.194700px;}
.y10{bottom:318.195450px;}
.yb6{bottom:318.196875px;}
.y58{bottom:318.197250px;}
.y9e{bottom:318.200250px;}
.y9d{bottom:336.188250px;}
.y79{bottom:336.193050px;}
.y2d{bottom:336.195300px;}
.yf{bottom:336.196050px;}
.y57{bottom:336.197850px;}
.yd3{bottom:345.200850px;}
.y9c{bottom:354.188850px;}
.y78{bottom:354.193650px;}
.y2c{bottom:354.195900px;}
.ye{bottom:354.196650px;}
.y56{bottom:354.198450px;}
.yd2{bottom:360.200850px;}
.y9b{bottom:372.189450px;}
.y77{bottom:372.194250px;}
.y2b{bottom:372.196500px;}
.yd{bottom:372.197250px;}
.y55{bottom:372.199050px;}
.yd1{bottom:375.200850px;}
.y9a{bottom:390.190050px;}
.y76{bottom:390.194850px;}
.y2a{bottom:390.197100px;}
.yc{bottom:390.197850px;}
.y54{bottom:390.199650px;}
.yd0{bottom:390.200850px;}
.ycf{bottom:405.200850px;}
.y99{bottom:408.190650px;}
.y75{bottom:408.195450px;}
.y29{bottom:408.197700px;}
.yb{bottom:408.198450px;}
.y53{bottom:408.200250px;}
.yce{bottom:420.200850px;}
.y52{bottom:426.189450px;}
.y98{bottom:426.191250px;}
.y74{bottom:426.196050px;}
.y28{bottom:426.198300px;}
.ya{bottom:426.199050px;}
.ycd{bottom:435.200850px;}
.y51{bottom:444.190050px;}
.y97{bottom:444.191850px;}
.y73{bottom:444.196650px;}
.y27{bottom:444.198900px;}
.y9{bottom:444.199650px;}
.ycc{bottom:450.200850px;}
.y50{bottom:462.190650px;}
.y96{bottom:462.192450px;}
.y72{bottom:462.197250px;}
.y26{bottom:462.199500px;}
.y8{bottom:462.200250px;}
.ycb{bottom:465.200850px;}
.y4f{bottom:480.191250px;}
.y95{bottom:480.193050px;}
.y71{bottom:480.197850px;}
.y25{bottom:480.200100px;}
.yb5{bottom:480.200250px;}
.y7{bottom:480.200850px;}
.yca{bottom:495.200850px;}
.y4e{bottom:498.191850px;}
.y94{bottom:498.193650px;}
.y6{bottom:498.198450px;}
.yb4{bottom:498.200250px;}
.y24{bottom:498.200700px;}
.yc9{bottom:510.200850px;}
.y4d{bottom:516.192450px;}
.y93{bottom:516.194250px;}
.yb3{bottom:516.196050px;}
.y5{bottom:516.199050px;}
.y23{bottom:516.201300px;}
.yc8{bottom:525.200850px;}
.y4c{bottom:534.193050px;}
.y92{bottom:534.194850px;}
.yb2{bottom:534.196650px;}
.y4{bottom:534.199650px;}
.y22{bottom:534.201900px;}
.yc7{bottom:540.200850px;}
.y4b{bottom:552.193650px;}
.y91{bottom:552.195450px;}
.yb1{bottom:552.197250px;}
.y3{bottom:552.200250px;}
.y21{bottom:552.202500px;}
.yc6{bottom:555.200850px;}
.y4a{bottom:570.194250px;}
.y70{bottom:570.195450px;}
.y90{bottom:570.196050px;}
.yb0{bottom:570.197850px;}
.y2{bottom:570.200850px;}
.y20{bottom:570.203100px;}
.yc5{bottom:585.200850px;}
.y49{bottom:588.194850px;}
.y6f{bottom:588.196050px;}
.y8f{bottom:588.196650px;}
.yaf{bottom:588.198450px;}
.y1f{bottom:588.203700px;}
.y66{bottom:590.561250px;}
.yc4{bottom:600.200850px;}
.y48{bottom:606.195450px;}
.y6e{bottom:606.196650px;}
.y8e{bottom:606.197250px;}
.yae{bottom:606.199050px;}
.y1{bottom:606.200850px;}
.y1e{bottom:606.204300px;}
.yc3{bottom:615.200850px;}
.y47{bottom:624.196050px;}
.y6d{bottom:624.197250px;}
.y8d{bottom:624.197850px;}
.yad{bottom:624.199650px;}
.yc2{bottom:630.200850px;}
.y46{bottom:642.196650px;}
.y6c{bottom:642.197850px;}
.y8c{bottom:642.198450px;}
.yac{bottom:642.200250px;}
.yc1{bottom:645.200850px;}
.y45{bottom:660.197250px;}
.y6b{bottom:660.198450px;}
.y8b{bottom:660.199050px;}
.yc0{bottom:660.200850px;}
.ybf{bottom:675.200850px;}
.y44{bottom:678.197850px;}
.y6a{bottom:678.199050px;}
.y8a{bottom:678.199650px;}
.ybe{bottom:690.200850px;}
.y43{bottom:696.198450px;}
.y69{bottom:696.199650px;}
.y89{bottom:696.200250px;}
.y3e{bottom:696.200850px;}
.ybd{bottom:705.200850px;}
.y42{bottom:714.199050px;}
.y68{bottom:714.200250px;}
.y88{bottom:714.200475px;}
.ybc{bottom:720.200850px;}
.y41{bottom:732.199650px;}
.y67{bottom:732.200850px;}
.ybb{bottom:735.200850px;}
.y40{bottom:750.200250px;}
.y3f{bottom:768.200850px;}
.y3d{bottom:772.700850px;}
.yd4{bottom:2392.500000px;}
.h14{height:5.724000px;}
.hb{height:38.262000px;}
.h13{height:40.848000px;}
.h6{height:42.369141px;}
.h2{height:45.954000px;}
.h3{height:48.507000px;}
.hd{height:48.508500px;}
.h11{height:48.509400px;}
.hf{height:48.521400px;}
.h10{height:48.526200px;}
.hc{height:48.528600px;}
.h5{height:48.538200px;}
.ha{height:48.545400px;}
.h9{height:48.552600px;}
.he{height:48.557400px;}
.h12{height:51.516000px;}
.h8{height:56.100000px;}
.h4{height:57.500977px;}
.h7{height:68.688000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8{left:-1500.000000px;}
.x0{left:0.000000px;}
.x3{left:85.039575px;}
.x2{left:106.299150px;}
.x7{left:306.581850px;}
.x1{left:326.326200px;}
.x5{left:459.212400px;}
.x4{left:480.471975px;}
.x6{left:736.948350px;}
@media print{
.v2{vertical-align:-16.166400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.206933pt;}
.ls4{letter-spacing:-1.357867pt;}
.ls3{letter-spacing:-1.266667pt;}
.ls5{letter-spacing:-1.013333pt;}
.ls7{letter-spacing:-0.767600pt;}
.ls6{letter-spacing:-0.760000pt;}
.lse{letter-spacing:-0.511733pt;}
.lsd{letter-spacing:-0.506667pt;}
.ls1c{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.253333pt;}
.lsa{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:-0.010133pt;}
.lsc{letter-spacing:-0.005067pt;}
.ls1a{letter-spacing:-0.004800pt;}
.ls1b{letter-spacing:-0.004267pt;}
.ls10{letter-spacing:-0.003733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.248267pt;}
.ls0{letter-spacing:0.253333pt;}
.ls19{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.506667pt;}
.ls1{letter-spacing:3.546667pt;}
.ls16{letter-spacing:12.071467pt;}
.lsb{letter-spacing:12.506667pt;}
.ls15{letter-spacing:12.564267pt;}
.ls12{letter-spacing:13.449600pt;}
.ls14{letter-spacing:16.601067pt;}
.ls18{letter-spacing:17.050667pt;}
.ls13{letter-spacing:18.641067pt;}
.ws36{word-spacing:-12.666667pt;}
.ws6b{word-spacing:-12.661600pt;}
.ws8a{word-spacing:-10.666667pt;}
.ws3f{word-spacing:-1.874667pt;}
.ws89{word-spacing:-1.722667pt;}
.ws26{word-spacing:-1.672000pt;}
.ws24{word-spacing:-1.621333pt;}
.ws7{word-spacing:-1.570667pt;}
.ws3e{word-spacing:-1.418667pt;}
.ws2e{word-spacing:-1.266667pt;}
.ws83{word-spacing:-1.165333pt;}
.ws5e{word-spacing:-1.114667pt;}
.ws45{word-spacing:-1.064000pt;}
.wsa2{word-spacing:-0.981333pt;}
.ws1a{word-spacing:-0.912000pt;}
.ws43{word-spacing:-0.861333pt;}
.wse{word-spacing:-0.810667pt;}
.ws71{word-spacing:-0.760000pt;}
.ws5f{word-spacing:-0.658667pt;}
.ws3a{word-spacing:-0.608000pt;}
.ws85{word-spacing:-0.592800pt;}
.ws46{word-spacing:-0.456000pt;}
.ws9e{word-spacing:-0.426667pt;}
.ws49{word-spacing:-0.304000pt;}
.ws8e{word-spacing:-0.298667pt;}
.ws86{word-spacing:-0.296400pt;}
.ws13{word-spacing:-0.101333pt;}
.ws4f{word-spacing:0.000000pt;}
.ws70{word-spacing:0.050667pt;}
.ws56{word-spacing:0.253333pt;}
.ws1e{word-spacing:0.304000pt;}
.ws66{word-spacing:0.354667pt;}
.ws6e{word-spacing:0.380000pt;}
.ws69{word-spacing:0.405333pt;}
.ws61{word-spacing:0.456000pt;}
.ws9b{word-spacing:0.469333pt;}
.ws4b{word-spacing:0.506667pt;}
.ws37{word-spacing:0.511733pt;}
.ws47{word-spacing:0.608000pt;}
.ws65{word-spacing:0.633333pt;}
.ws9f{word-spacing:0.640000pt;}
.ws84{word-spacing:0.658667pt;}
.ws5b{word-spacing:0.709333pt;}
.ws4d{word-spacing:0.760000pt;}
.ws19{word-spacing:0.810667pt;}
.ws94{word-spacing:0.896000pt;}
.ws12{word-spacing:0.912000pt;}
.ws2d{word-spacing:0.962667pt;}
.ws2f{word-spacing:1.013333pt;}
.ws50{word-spacing:1.037867pt;}
.ws33{word-spacing:1.045333pt;}
.ws10{word-spacing:1.064000pt;}
.ws8d{word-spacing:1.066667pt;}
.ws3{word-spacing:1.200000pt;}
.ws25{word-spacing:1.216000pt;}
.ws4{word-spacing:1.266667pt;}
.ws8{word-spacing:1.317333pt;}
.ws44{word-spacing:1.368000pt;}
.ws40{word-spacing:1.418667pt;}
.ws97{word-spacing:1.450667pt;}
.ws35{word-spacing:1.482667pt;}
.ws8b{word-spacing:1.488000pt;}
.ws31{word-spacing:1.520000pt;}
.ws6{word-spacing:1.570667pt;}
.ws38{word-spacing:1.621333pt;}
.ws14{word-spacing:1.672000pt;}
.wsf{word-spacing:1.722667pt;}
.ws68{word-spacing:1.824000pt;}
.ws4a{word-spacing:1.874667pt;}
.wsd{word-spacing:1.925333pt;}
.ws81{word-spacing:1.968400pt;}
.ws34{word-spacing:1.984000pt;}
.ws93{word-spacing:2.048000pt;}
.ws99{word-spacing:2.133333pt;}
.ws95{word-spacing:2.176000pt;}
.ws20{word-spacing:2.178667pt;}
.ws9d{word-spacing:2.218667pt;}
.ws67{word-spacing:2.280000pt;}
.ws63{word-spacing:2.330667pt;}
.ws9a{word-spacing:2.346667pt;}
.ws4e{word-spacing:2.381333pt;}
.ws41{word-spacing:2.432000pt;}
.ws88{word-spacing:2.482667pt;}
.wsa{word-spacing:2.533333pt;}
.ws54{word-spacing:2.584000pt;}
.ws92{word-spacing:2.730667pt;}
.ws17{word-spacing:2.786667pt;}
.ws9c{word-spacing:2.816000pt;}
.ws72{word-spacing:2.888000pt;}
.ws78{word-spacing:2.989333pt;}
.ws1d{word-spacing:3.040000pt;}
.ws1b{word-spacing:3.090667pt;}
.ws74{word-spacing:3.141333pt;}
.ws5d{word-spacing:3.192000pt;}
.ws30{word-spacing:3.293333pt;}
.ws7d{word-spacing:3.445333pt;}
.wsb{word-spacing:3.749333pt;}
.wsa1{word-spacing:3.797333pt;}
.ws80{word-spacing:3.936800pt;}
.ws82{word-spacing:3.952000pt;}
.ws48{word-spacing:4.104000pt;}
.ws3c{word-spacing:4.306667pt;}
.ws96{word-spacing:4.309333pt;}
.ws87{word-spacing:4.408000pt;}
.ws52{word-spacing:4.458667pt;}
.ws75{word-spacing:4.509333pt;}
.ws2c{word-spacing:4.560000pt;}
.ws6c{word-spacing:4.610667pt;}
.ws7f{word-spacing:4.712000pt;}
.ws1{word-spacing:4.855200pt;}
.ws11{word-spacing:5.066667pt;}
.ws8c{word-spacing:5.120000pt;}
.ws60{word-spacing:5.320000pt;}
.ws51{word-spacing:5.370667pt;}
.ws91{word-spacing:5.376000pt;}
.ws6f{word-spacing:5.421333pt;}
.ws39{word-spacing:5.522667pt;}
.ws15{word-spacing:5.776000pt;}
.ws28{word-spacing:5.958400pt;}
.ws79{word-spacing:5.973600pt;}
.ws77{word-spacing:5.978667pt;}
.ws16{word-spacing:6.130667pt;}
.ws18{word-spacing:6.232000pt;}
.ws90{word-spacing:6.442667pt;}
.ws7e{word-spacing:6.510667pt;}
.ws5{word-spacing:6.789333pt;}
.ws2b{word-spacing:6.890667pt;}
.wsa0{word-spacing:6.912000pt;}
.ws1c{word-spacing:6.992000pt;}
.wsc{word-spacing:7.144000pt;}
.ws29{word-spacing:7.245333pt;}
.ws22{word-spacing:7.296000pt;}
.ws1f{word-spacing:7.701333pt;}
.ws7b{word-spacing:7.802667pt;}
.ws9{word-spacing:7.954667pt;}
.ws5c{word-spacing:8.106667pt;}
.ws53{word-spacing:8.157333pt;}
.ws6d{word-spacing:8.258667pt;}
.ws7c{word-spacing:8.816000pt;}
.ws21{word-spacing:9.626667pt;}
.ws57{word-spacing:9.672267pt;}
.ws58{word-spacing:9.677333pt;}
.ws6a{word-spacing:9.728000pt;}
.ws3d{word-spacing:9.829333pt;}
.ws55{word-spacing:9.890133pt;}
.ws73{word-spacing:10.285333pt;}
.ws42{word-spacing:10.482933pt;}
.ws32{word-spacing:10.488000pt;}
.ws59{word-spacing:10.994667pt;}
.ws2{word-spacing:11.351467pt;}
.ws4c{word-spacing:11.602667pt;}
.ws23{word-spacing:12.666667pt;}
.ws2a{word-spacing:13.021333pt;}
.ws62{word-spacing:13.224000pt;}
.ws5a{word-spacing:13.528000pt;}
.ws76{word-spacing:13.781333pt;}
.ws0{word-spacing:13.931733pt;}
.ws3b{word-spacing:14.288000pt;}
.ws64{word-spacing:14.896000pt;}
.ws98{word-spacing:15.189333pt;}
.ws8f{word-spacing:15.530667pt;}
.ws27{word-spacing:16.775733pt;}
.ws7a{word-spacing:17.682667pt;}
._7{margin-left:-9.120000pt;}
._1{margin-left:-6.080000pt;}
._6{margin-left:-5.117333pt;}
._5{margin-left:-4.053333pt;}
._3{margin-left:-3.040000pt;}
._0{margin-left:-2.016000pt;}
._2{margin-left:-0.962667pt;}
._4{width:1.205333pt;}
._8{width:11.285867pt;}
._9{width:54.272000pt;}
.fs8{font-size:5.333333pt;}
.fs6{font-size:25.333333pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:38.000000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:35.466933pt;}
.y65{bottom:35.845200pt;}
.y64{bottom:58.845600pt;}
.y3b{bottom:74.832800pt;}
.yab{bottom:74.837733pt;}
.y87{bottom:74.840933pt;}
.y1d{bottom:74.848000pt;}
.y3a{bottom:90.833333pt;}
.yaa{bottom:90.838267pt;}
.y86{bottom:90.841467pt;}
.y63{bottom:90.845400pt;}
.y1c{bottom:90.846000pt;}
.y39{bottom:106.833867pt;}
.ya9{bottom:106.838800pt;}
.y85{bottom:106.842000pt;}
.y1b{bottom:106.844000pt;}
.y38{bottom:122.834400pt;}
.y62{bottom:122.836667pt;}
.ya8{bottom:122.839333pt;}
.y1a{bottom:122.842000pt;}
.y84{bottom:122.842533pt;}
.y37{bottom:138.834933pt;}
.y61{bottom:138.837200pt;}
.ya7{bottom:138.839867pt;}
.y19{bottom:138.842533pt;}
.y83{bottom:138.843067pt;}
.y36{bottom:154.835467pt;}
.y60{bottom:154.837733pt;}
.ya6{bottom:154.840400pt;}
.y18{bottom:154.843067pt;}
.y82{bottom:154.843600pt;}
.y35{bottom:170.836000pt;}
.y5f{bottom:170.838267pt;}
.ya5{bottom:170.840933pt;}
.y17{bottom:170.843600pt;}
.y81{bottom:170.844133pt;}
.y34{bottom:186.836533pt;}
.y5e{bottom:186.838800pt;}
.ya4{bottom:186.841467pt;}
.y16{bottom:186.844133pt;}
.y80{bottom:186.844667pt;}
.y33{bottom:202.837067pt;}
.y5d{bottom:202.839333pt;}
.yba{bottom:202.840267pt;}
.ya3{bottom:202.842000pt;}
.y15{bottom:202.844667pt;}
.y7f{bottom:202.845200pt;}
.y7e{bottom:218.835600pt;}
.y32{bottom:218.837600pt;}
.y14{bottom:218.838267pt;}
.y5c{bottom:218.839867pt;}
.yb9{bottom:218.840800pt;}
.ya2{bottom:218.842533pt;}
.y7d{bottom:234.836133pt;}
.y31{bottom:234.838133pt;}
.y13{bottom:234.838800pt;}
.y5b{bottom:234.840400pt;}
.yb8{bottom:234.841333pt;}
.ya1{bottom:234.843067pt;}
.y7c{bottom:250.836667pt;}
.y30{bottom:250.838667pt;}
.y12{bottom:250.839333pt;}
.y5a{bottom:250.840933pt;}
.ya0{bottom:250.843600pt;}
.y7b{bottom:266.837200pt;}
.y2f{bottom:266.839200pt;}
.y11{bottom:266.839867pt;}
.yb7{bottom:266.841133pt;}
.y59{bottom:266.841467pt;}
.y9f{bottom:266.844133pt;}
.y7a{bottom:282.837733pt;}
.y2e{bottom:282.839733pt;}
.y10{bottom:282.840400pt;}
.yb6{bottom:282.841667pt;}
.y58{bottom:282.842000pt;}
.y9e{bottom:282.844667pt;}
.y9d{bottom:298.834000pt;}
.y79{bottom:298.838267pt;}
.y2d{bottom:298.840267pt;}
.yf{bottom:298.840933pt;}
.y57{bottom:298.842533pt;}
.yd3{bottom:306.845200pt;}
.y9c{bottom:314.834533pt;}
.y78{bottom:314.838800pt;}
.y2c{bottom:314.840800pt;}
.ye{bottom:314.841467pt;}
.y56{bottom:314.843067pt;}
.yd2{bottom:320.178533pt;}
.y9b{bottom:330.835067pt;}
.y77{bottom:330.839333pt;}
.y2b{bottom:330.841333pt;}
.yd{bottom:330.842000pt;}
.y55{bottom:330.843600pt;}
.yd1{bottom:333.511867pt;}
.y9a{bottom:346.835600pt;}
.y76{bottom:346.839867pt;}
.y2a{bottom:346.841867pt;}
.yc{bottom:346.842533pt;}
.y54{bottom:346.844133pt;}
.yd0{bottom:346.845200pt;}
.ycf{bottom:360.178533pt;}
.y99{bottom:362.836133pt;}
.y75{bottom:362.840400pt;}
.y29{bottom:362.842400pt;}
.yb{bottom:362.843067pt;}
.y53{bottom:362.844667pt;}
.yce{bottom:373.511867pt;}
.y52{bottom:378.835067pt;}
.y98{bottom:378.836667pt;}
.y74{bottom:378.840933pt;}
.y28{bottom:378.842933pt;}
.ya{bottom:378.843600pt;}
.ycd{bottom:386.845200pt;}
.y51{bottom:394.835600pt;}
.y97{bottom:394.837200pt;}
.y73{bottom:394.841467pt;}
.y27{bottom:394.843467pt;}
.y9{bottom:394.844133pt;}
.ycc{bottom:400.178533pt;}
.y50{bottom:410.836133pt;}
.y96{bottom:410.837733pt;}
.y72{bottom:410.842000pt;}
.y26{bottom:410.844000pt;}
.y8{bottom:410.844667pt;}
.ycb{bottom:413.511867pt;}
.y4f{bottom:426.836667pt;}
.y95{bottom:426.838267pt;}
.y71{bottom:426.842533pt;}
.y25{bottom:426.844533pt;}
.yb5{bottom:426.844667pt;}
.y7{bottom:426.845200pt;}
.yca{bottom:440.178533pt;}
.y4e{bottom:442.837200pt;}
.y94{bottom:442.838800pt;}
.y6{bottom:442.843067pt;}
.yb4{bottom:442.844667pt;}
.y24{bottom:442.845067pt;}
.yc9{bottom:453.511867pt;}
.y4d{bottom:458.837733pt;}
.y93{bottom:458.839333pt;}
.yb3{bottom:458.840933pt;}
.y5{bottom:458.843600pt;}
.y23{bottom:458.845600pt;}
.yc8{bottom:466.845200pt;}
.y4c{bottom:474.838267pt;}
.y92{bottom:474.839867pt;}
.yb2{bottom:474.841467pt;}
.y4{bottom:474.844133pt;}
.y22{bottom:474.846133pt;}
.yc7{bottom:480.178533pt;}
.y4b{bottom:490.838800pt;}
.y91{bottom:490.840400pt;}
.yb1{bottom:490.842000pt;}
.y3{bottom:490.844667pt;}
.y21{bottom:490.846667pt;}
.yc6{bottom:493.511867pt;}
.y4a{bottom:506.839333pt;}
.y70{bottom:506.840400pt;}
.y90{bottom:506.840933pt;}
.yb0{bottom:506.842533pt;}
.y2{bottom:506.845200pt;}
.y20{bottom:506.847200pt;}
.yc5{bottom:520.178533pt;}
.y49{bottom:522.839867pt;}
.y6f{bottom:522.840933pt;}
.y8f{bottom:522.841467pt;}
.yaf{bottom:522.843067pt;}
.y1f{bottom:522.847733pt;}
.y66{bottom:524.943333pt;}
.yc4{bottom:533.511867pt;}
.y48{bottom:538.840400pt;}
.y6e{bottom:538.841467pt;}
.y8e{bottom:538.842000pt;}
.yae{bottom:538.843600pt;}
.y1{bottom:538.845200pt;}
.y1e{bottom:538.848267pt;}
.yc3{bottom:546.845200pt;}
.y47{bottom:554.840933pt;}
.y6d{bottom:554.842000pt;}
.y8d{bottom:554.842533pt;}
.yad{bottom:554.844133pt;}
.yc2{bottom:560.178533pt;}
.y46{bottom:570.841467pt;}
.y6c{bottom:570.842533pt;}
.y8c{bottom:570.843067pt;}
.yac{bottom:570.844667pt;}
.yc1{bottom:573.511867pt;}
.y45{bottom:586.842000pt;}
.y6b{bottom:586.843067pt;}
.y8b{bottom:586.843600pt;}
.yc0{bottom:586.845200pt;}
.ybf{bottom:600.178533pt;}
.y44{bottom:602.842533pt;}
.y6a{bottom:602.843600pt;}
.y8a{bottom:602.844133pt;}
.ybe{bottom:613.511867pt;}
.y43{bottom:618.843067pt;}
.y69{bottom:618.844133pt;}
.y89{bottom:618.844667pt;}
.y3e{bottom:618.845200pt;}
.ybd{bottom:626.845200pt;}
.y42{bottom:634.843600pt;}
.y68{bottom:634.844667pt;}
.y88{bottom:634.844867pt;}
.ybc{bottom:640.178533pt;}
.y41{bottom:650.844133pt;}
.y67{bottom:650.845200pt;}
.ybb{bottom:653.511867pt;}
.y40{bottom:666.844667pt;}
.y3f{bottom:682.845200pt;}
.y3d{bottom:686.845200pt;}
.yd4{bottom:2126.666667pt;}
.h14{height:5.088000pt;}
.hb{height:34.010667pt;}
.h13{height:36.309333pt;}
.h6{height:37.661458pt;}
.h2{height:40.848000pt;}
.h3{height:43.117333pt;}
.hd{height:43.118667pt;}
.h11{height:43.119467pt;}
.hf{height:43.130133pt;}
.h10{height:43.134400pt;}
.hc{height:43.136533pt;}
.h5{height:43.145067pt;}
.ha{height:43.151467pt;}
.h9{height:43.157867pt;}
.he{height:43.162133pt;}
.h12{height:45.792000pt;}
.h8{height:49.866667pt;}
.h4{height:51.111979pt;}
.h7{height:61.056000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8{left:-1333.333333pt;}
.x0{left:0.000000pt;}
.x3{left:75.590733pt;}
.x2{left:94.488133pt;}
.x7{left:272.517200pt;}
.x1{left:290.067733pt;}
.x5{left:408.188800pt;}
.x4{left:427.086200pt;}
.x6{left:655.065200pt;}
}




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