
    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_755aec27f35a47bc2d44570c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_bac90d08e902e9e3367d51dc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_d9f06c76f6c1f5d1e04849c1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_10eed8f480b803de4f83e9af.woff')format("woff");}.ff4{font-family:ff4;line-height:0.678711;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_0f3f00b023d3d83d18595681.woff')format("woff");}.ff5{font-family:ff5;line-height:1.059000;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_242cf72d5badbe426094ab0b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_04021114f2044cf84f7b4d78.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_22cd7852c7f73da1a75d3f97.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_1ccd87dd44f949473b8140b9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_378cce9db1847fbb34749b38.woff')format("woff");}.ffa{font-family:ffa;line-height:0.947266;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_33b6d288dd58e8a419b18635.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944824;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_9f885f1e2a0ff6a48290defa.woff')format("woff");}.ffc{font-family:ffc;line-height:0.944336;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);}
.v4{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.000000px;}
.v3{vertical-align:23.760000px;}
.v2{vertical-align:182.400000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.153600px;}
.ls24{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.792000px;}
.ls23{letter-spacing:0.864000px;}
.ls10{letter-spacing:1.008000px;}
.ls12{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.224000px;}
.lse{letter-spacing:1.584000px;}
.ls1a{letter-spacing:2.592000px;}
.ls17{letter-spacing:3.024000px;}
.ls1e{letter-spacing:3.240000px;}
.ls39{letter-spacing:3.660000px;}
.ls1d{letter-spacing:3.672000px;}
.ls28{letter-spacing:3.744000px;}
.ls20{letter-spacing:4.104000px;}
.ls3a{letter-spacing:4.260000px;}
.ls2b{letter-spacing:4.392000px;}
.ls21{letter-spacing:4.680000px;}
.ls38{letter-spacing:4.752000px;}
.ls33{letter-spacing:4.968000px;}
.ls34{letter-spacing:5.112000px;}
.ls2c{letter-spacing:5.148000px;}
.ls27{letter-spacing:5.214000px;}
.ls26{letter-spacing:5.472000px;}
.ls2f{letter-spacing:5.478000px;}
.ls31{letter-spacing:5.760000px;}
.ls30{letter-spacing:5.832000px;}
.ls32{letter-spacing:5.904000px;}
.ls29{letter-spacing:6.048000px;}
.ls15{letter-spacing:6.183000px;}
.ls36{letter-spacing:6.264000px;}
.ls37{letter-spacing:6.336000px;}
.lsc{letter-spacing:6.696000px;}
.ls2e{letter-spacing:6.984000px;}
.ls14{letter-spacing:7.056000px;}
.ls11{letter-spacing:7.614000px;}
.ls0{letter-spacing:8.460000px;}
.ls2a{letter-spacing:8.640000px;}
.ls1f{letter-spacing:9.648000px;}
.ls18{letter-spacing:9.792000px;}
.ls2d{letter-spacing:10.008000px;}
.ls16{letter-spacing:10.584000px;}
.ls2{letter-spacing:10.701359px;}
.ls1b{letter-spacing:10.728000px;}
.ls1{letter-spacing:10.740000px;}
.ls1c{letter-spacing:10.800000px;}
.ls13{letter-spacing:11.376000px;}
.ls35{letter-spacing:13.440000px;}
.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;}
}
.ws3{word-spacing:-80.880000px;}
.ws1b{word-spacing:-72.000000px;}
.ws11{word-spacing:-55.584000px;}
.ws9{word-spacing:-55.224000px;}
.ws1c{word-spacing:-54.360000px;}
.ws1d{word-spacing:-54.288000px;}
.ws10{word-spacing:-49.608000px;}
.wsd{word-spacing:-49.536000px;}
.ws16{word-spacing:-49.320000px;}
.wsb{word-spacing:-49.248000px;}
.ws7{word-spacing:-49.176000px;}
.ws15{word-spacing:-49.104000px;}
.ws14{word-spacing:-49.032000px;}
.ws12{word-spacing:-48.960000px;}
.wse{word-spacing:-48.888000px;}
.ws8{word-spacing:-48.816000px;}
.ws13{word-spacing:-48.744000px;}
.wsc{word-spacing:-48.672000px;}
.wsf{word-spacing:-48.600000px;}
.ws4{word-spacing:-48.528000px;}
.ws1{word-spacing:-40.440000px;}
.ws18{word-spacing:-32.544000px;}
.ws19{word-spacing:-32.352000px;}
.ws6{word-spacing:-25.320000px;}
.wsa{word-spacing:-20.952000px;}
.ws1a{word-spacing:-20.232000px;}
.ws2{word-spacing:-16.860000px;}
.ws17{word-spacing:-14.162400px;}
.ws5{word-spacing:0.000000px;}
.ws0{word-spacing:129.300000px;}
._11{margin-left:-948.900000px;}
._16{margin-left:-18.684000px;}
._17{margin-left:-13.291200px;}
._12{margin-left:-12.240000px;}
._d{margin-left:-11.040000px;}
._13{margin-left:-8.352000px;}
._14{margin-left:-7.344000px;}
._0{margin-left:-6.300000px;}
._b{margin-left:-4.860000px;}
._a{margin-left:-3.420000px;}
._4{margin-left:-1.800000px;}
._2{width:1.440000px;}
._3{width:3.060000px;}
._1{width:4.200000px;}
._e{width:5.280000px;}
._c{width:6.900000px;}
._9{width:8.520000px;}
._10{width:10.224000px;}
._f{width:11.268000px;}
._5{width:26.160000px;}
._15{width:31.646100px;}
._8{width:73.080000px;}
._6{width:75.180000px;}
._7{width:77.280000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:35.700000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:428.278800px;}
.y0{bottom:0.000000px;}
.y2{bottom:76.757850px;}
.y1{bottom:93.257850px;}
.y77{bottom:138.257850px;}
.ya0{bottom:138.359850px;}
.yc3{bottom:138.521850px;}
.y53{bottom:139.498050px;}
.y11{bottom:141.590400px;}
.ye7{bottom:142.343850px;}
.y34{bottom:142.465350px;}
.y76{bottom:157.465350px;}
.ye6{bottom:157.487850px;}
.y9f{bottom:160.265850px;}
.yc2{bottom:160.427850px;}
.y52{bottom:161.998050px;}
.y10{bottom:164.396400px;}
.y33{bottom:164.965350px;}
.ye5{bottom:172.631850px;}
.y7b{bottom:175.757850px;}
.y10b{bottom:176.879850px;}
.y9e{bottom:182.171850px;}
.yc1{bottom:182.333850px;}
.y51{bottom:184.498050px;}
.yf{bottom:187.202400px;}
.y78{bottom:187.465350px;}
.ye4{bottom:187.775850px;}
.y7a{bottom:194.965350px;}
.y75{bottom:195.365850px;}
.y10a{bottom:195.629850px;}
.ye3{bottom:202.919850px;}
.y9d{bottom:204.077850px;}
.yc0{bottom:204.239850px;}
.y32{bottom:205.757850px;}
.y50{bottom:206.998050px;}
.ye{bottom:210.008400px;}
.y109{bottom:214.379850px;}
.y79{bottom:217.465350px;}
.ye2{bottom:218.063850px;}
.y74{bottom:218.171850px;}
.y9c{bottom:225.983850px;}
.ybf{bottom:226.145850px;}
.y31{bottom:228.257850px;}
.y4f{bottom:229.498050px;}
.yd{bottom:232.814400px;}
.yb{bottom:232.826400px;}
.y108{bottom:233.129850px;}
.ye1{bottom:233.207850px;}
.y73{bottom:240.977850px;}
.y9b{bottom:247.889850px;}
.ybe{bottom:248.051850px;}
.ye0{bottom:248.351850px;}
.y30{bottom:250.757850px;}
.y4e{bottom:251.998050px;}
.yc{bottom:255.620400px;}
.y72{bottom:263.783850px;}
.y9a{bottom:269.795850px;}
.ydf{bottom:269.879850px;}
.ybd{bottom:269.957850px;}
.y107{bottom:270.629850px;}
.y2f{bottom:273.257850px;}
.y4d{bottom:274.498050px;}
.y71{bottom:286.589850px;}
.y99{bottom:291.701850px;}
.ybc{bottom:291.857850px;}
.y2e{bottom:295.757850px;}
.y4c{bottom:296.998050px;}
.y70{bottom:309.395850px;}
.y106{bottom:311.879850px;}
.ya{bottom:312.776250px;}
.y98{bottom:313.607850px;}
.yde{bottom:315.179850px;}
.y2d{bottom:318.257850px;}
.y4b{bottom:319.498050px;}
.y105{bottom:330.629850px;}
.y6f{bottom:332.201850px;}
.ybb{bottom:335.507850px;}
.y97{bottom:335.513850px;}
.ydd{bottom:336.707850px;}
.y2c{bottom:340.757850px;}
.y4a{bottom:341.998050px;}
.y104{bottom:349.379850px;}
.y6e{bottom:354.851850px;}
.yba{bottom:357.413850px;}
.y96{bottom:357.419850px;}
.y2b{bottom:363.257850px;}
.y49{bottom:364.498050px;}
.y103{bottom:368.129850px;}
.y6d{bottom:377.657850px;}
.yb9{bottom:379.319850px;}
.y95{bottom:379.325850px;}
.ydc{bottom:382.151850px;}
.y2a{bottom:385.757850px;}
.y102{bottom:386.879850px;}
.y48{bottom:386.998050px;}
.y6c{bottom:400.463850px;}
.yb8{bottom:401.225850px;}
.y94{bottom:401.231850px;}
.ydb{bottom:404.795850px;}
.y101{bottom:405.629850px;}
.y29{bottom:408.257850px;}
.y47{bottom:409.498050px;}
.yb7{bottom:423.131850px;}
.y93{bottom:423.137850px;}
.y6b{bottom:423.269850px;}
.y100{bottom:424.379850px;}
.yda{bottom:427.439850px;}
.y28{bottom:430.757850px;}
.y46{bottom:431.998050px;}
.yff{bottom:443.129850px;}
.yb6{bottom:445.037850px;}
.y92{bottom:445.043850px;}
.y6a{bottom:446.075850px;}
.yd9{bottom:450.083850px;}
.y27{bottom:453.257850px;}
.y45{bottom:454.498050px;}
.yfe{bottom:461.879850px;}
.yb5{bottom:466.943850px;}
.y91{bottom:466.949850px;}
.y69{bottom:468.881850px;}
.yd8{bottom:472.727850px;}
.y26{bottom:475.757850px;}
.y44{bottom:476.998050px;}
.yfd{bottom:480.629850px;}
.yb4{bottom:488.849850px;}
.y90{bottom:488.855850px;}
.y68{bottom:491.687850px;}
.yd7{bottom:495.371850px;}
.y25{bottom:498.257850px;}
.yfc{bottom:499.379850px;}
.y43{bottom:499.498050px;}
.yb3{bottom:510.755850px;}
.y8f{bottom:510.761850px;}
.y67{bottom:514.493850px;}
.yd6{bottom:518.015850px;}
.yfb{bottom:518.129850px;}
.y24{bottom:520.757850px;}
.y42{bottom:521.998050px;}
.yb2{bottom:532.661850px;}
.y8e{bottom:532.667850px;}
.yfa{bottom:536.879850px;}
.y66{bottom:537.299850px;}
.yd5{bottom:540.659850px;}
.y23{bottom:543.257850px;}
.y41{bottom:544.498050px;}
.yb1{bottom:554.567850px;}
.y8d{bottom:554.573850px;}
.yf9{bottom:555.629850px;}
.y65{bottom:560.105850px;}
.yd4{bottom:563.303850px;}
.y22{bottom:565.757850px;}
.y40{bottom:566.998050px;}
.yf8{bottom:574.379850px;}
.yb0{bottom:576.473850px;}
.y8c{bottom:576.479850px;}
.y64{bottom:582.911850px;}
.yd3{bottom:585.947850px;}
.y21{bottom:588.257850px;}
.y3f{bottom:589.498050px;}
.yf7{bottom:593.129850px;}
.yaf{bottom:598.379850px;}
.y8b{bottom:598.385850px;}
.y63{bottom:605.717850px;}
.yd2{bottom:608.591850px;}
.y20{bottom:610.757850px;}
.yf6{bottom:611.879850px;}
.y3e{bottom:611.998050px;}
.yae{bottom:620.285850px;}
.y8a{bottom:620.291850px;}
.y62{bottom:628.523850px;}
.yf5{bottom:630.629850px;}
.yd1{bottom:631.235850px;}
.y1f{bottom:633.257850px;}
.y3d{bottom:634.498050px;}
.yad{bottom:642.191850px;}
.y89{bottom:642.197850px;}
.yf4{bottom:649.379850px;}
.y61{bottom:651.329850px;}
.yd0{bottom:653.879850px;}
.y1e{bottom:655.757850px;}
.y3c{bottom:656.998050px;}
.yac{bottom:664.097850px;}
.y88{bottom:664.103850px;}
.yf3{bottom:668.129850px;}
.y60{bottom:674.135850px;}
.ycf{bottom:676.523850px;}
.y1d{bottom:678.257850px;}
.y3b{bottom:679.498050px;}
.y87{bottom:686.009850px;}
.yf2{bottom:686.879850px;}
.y5f{bottom:696.941850px;}
.yce{bottom:699.167850px;}
.y1c{bottom:700.757850px;}
.y3a{bottom:701.998050px;}
.yf1{bottom:705.629850px;}
.yab{bottom:707.891850px;}
.y86{bottom:707.915850px;}
.y5e{bottom:719.747850px;}
.ycd{bottom:721.811850px;}
.y1b{bottom:723.257850px;}
.yf0{bottom:724.379850px;}
.y39{bottom:724.498050px;}
.yaa{bottom:729.797850px;}
.y85{bottom:729.821850px;}
.y9{bottom:730.226400px;}
.y5d{bottom:742.553850px;}
.yef{bottom:743.129850px;}
.ycc{bottom:744.455850px;}
.y1a{bottom:745.757850px;}
.y38{bottom:746.998050px;}
.y8{bottom:748.976400px;}
.ya9{bottom:751.703850px;}
.y84{bottom:751.727850px;}
.yee{bottom:761.879850px;}
.y5c{bottom:765.359850px;}
.ycb{bottom:767.099850px;}
.y19{bottom:768.257850px;}
.y37{bottom:769.498050px;}
.ya8{bottom:773.609850px;}
.y83{bottom:773.633850px;}
.yed{bottom:780.629850px;}
.y5b{bottom:788.165850px;}
.yca{bottom:789.743850px;}
.y18{bottom:790.757850px;}
.y7{bottom:791.112150px;}
.y36{bottom:791.998050px;}
.ya7{bottom:795.515850px;}
.y82{bottom:795.539850px;}
.yec{bottom:805.757850px;}
.y5a{bottom:810.971850px;}
.yc9{bottom:812.387850px;}
.y17{bottom:813.257850px;}
.y6{bottom:813.612150px;}
.ya6{bottom:817.421850px;}
.y81{bottom:817.445850px;}
.y35{bottom:825.119850px;}
.y59{bottom:833.777850px;}
.yc8{bottom:835.031850px;}
.y16{bottom:835.757850px;}
.ya5{bottom:839.327850px;}
.y80{bottom:839.351850px;}
.yeb{bottom:850.757850px;}
.y58{bottom:856.583850px;}
.yc7{bottom:857.675850px;}
.y15{bottom:858.257850px;}
.ya4{bottom:861.233850px;}
.y7f{bottom:861.257850px;}
.yea{bottom:865.757850px;}
.y57{bottom:879.389850px;}
.yc6{bottom:880.319850px;}
.y5{bottom:880.757850px;}
.ya3{bottom:883.139850px;}
.ye9{bottom:895.757850px;}
.y56{bottom:902.195850px;}
.yc5{bottom:902.963850px;}
.y14{bottom:903.257850px;}
.ya2{bottom:905.045850px;}
.y7e{bottom:905.051850px;}
.y4{bottom:910.757850px;}
.y55{bottom:925.001850px;}
.yc4{bottom:925.607850px;}
.y13{bottom:925.757850px;}
.ya1{bottom:926.951850px;}
.y7d{bottom:926.957850px;}
.y3{bottom:940.757850px;}
.y54{bottom:947.807850px;}
.y12{bottom:948.257850px;}
.y7c{bottom:948.857850px;}
.ye8{bottom:955.757850px;}
.ha{height:29.482500px;}
.hf{height:34.444922px;}
.h11{height:39.072000px;}
.hd{height:46.312500px;}
.h10{height:48.840000px;}
.h5{height:50.580000px;}
.h7{height:50.947266px;}
.hb{height:52.101562px;}
.h2{height:57.890625px;}
.h6{height:61.136719px;}
.h9{height:69.468750px;}
.h3{height:69.890625px;}
.hc{height:70.092750px;}
.he{height:72.388125px;}
.h4{height:115.781250px;}
.h8{height:299.795160px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x1{left:88.759800px;}
.x8{left:103.641750px;}
.x6{left:112.500000px;}
.x7{left:127.386000px;}
.x4{left:134.155950px;}
.x2{left:156.259800px;}
.x3{left:301.358250px;}
.x5{left:625.781250px;}
@media print{
.v4{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.666667pt;}
.v3{vertical-align:21.120000pt;}
.v2{vertical-align:162.133333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.136533pt;}
.ls24{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.704000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.896000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.088000pt;}
.lse{letter-spacing:1.408000pt;}
.ls1a{letter-spacing:2.304000pt;}
.ls17{letter-spacing:2.688000pt;}
.ls1e{letter-spacing:2.880000pt;}
.ls39{letter-spacing:3.253333pt;}
.ls1d{letter-spacing:3.264000pt;}
.ls28{letter-spacing:3.328000pt;}
.ls20{letter-spacing:3.648000pt;}
.ls3a{letter-spacing:3.786667pt;}
.ls2b{letter-spacing:3.904000pt;}
.ls21{letter-spacing:4.160000pt;}
.ls38{letter-spacing:4.224000pt;}
.ls33{letter-spacing:4.416000pt;}
.ls34{letter-spacing:4.544000pt;}
.ls2c{letter-spacing:4.576000pt;}
.ls27{letter-spacing:4.634667pt;}
.ls26{letter-spacing:4.864000pt;}
.ls2f{letter-spacing:4.869333pt;}
.ls31{letter-spacing:5.120000pt;}
.ls30{letter-spacing:5.184000pt;}
.ls32{letter-spacing:5.248000pt;}
.ls29{letter-spacing:5.376000pt;}
.ls15{letter-spacing:5.496000pt;}
.ls36{letter-spacing:5.568000pt;}
.ls37{letter-spacing:5.632000pt;}
.lsc{letter-spacing:5.952000pt;}
.ls2e{letter-spacing:6.208000pt;}
.ls14{letter-spacing:6.272000pt;}
.ls11{letter-spacing:6.768000pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2a{letter-spacing:7.680000pt;}
.ls1f{letter-spacing:8.576000pt;}
.ls18{letter-spacing:8.704000pt;}
.ls2d{letter-spacing:8.896000pt;}
.ls16{letter-spacing:9.408000pt;}
.ls2{letter-spacing:9.512319pt;}
.ls1b{letter-spacing:9.536000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls13{letter-spacing:10.112000pt;}
.ls35{letter-spacing:11.946667pt;}
.ws3{word-spacing:-71.893333pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws11{word-spacing:-49.408000pt;}
.ws9{word-spacing:-49.088000pt;}
.ws1c{word-spacing:-48.320000pt;}
.ws1d{word-spacing:-48.256000pt;}
.ws10{word-spacing:-44.096000pt;}
.wsd{word-spacing:-44.032000pt;}
.ws16{word-spacing:-43.840000pt;}
.wsb{word-spacing:-43.776000pt;}
.ws7{word-spacing:-43.712000pt;}
.ws15{word-spacing:-43.648000pt;}
.ws14{word-spacing:-43.584000pt;}
.ws12{word-spacing:-43.520000pt;}
.wse{word-spacing:-43.456000pt;}
.ws8{word-spacing:-43.392000pt;}
.ws13{word-spacing:-43.328000pt;}
.wsc{word-spacing:-43.264000pt;}
.wsf{word-spacing:-43.200000pt;}
.ws4{word-spacing:-43.136000pt;}
.ws1{word-spacing:-35.946667pt;}
.ws18{word-spacing:-28.928000pt;}
.ws19{word-spacing:-28.757333pt;}
.ws6{word-spacing:-22.506667pt;}
.wsa{word-spacing:-18.624000pt;}
.ws1a{word-spacing:-17.984000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws17{word-spacing:-12.588800pt;}
.ws5{word-spacing:0.000000pt;}
.ws0{word-spacing:114.933333pt;}
._11{margin-left:-843.466667pt;}
._16{margin-left:-16.608000pt;}
._17{margin-left:-11.814400pt;}
._12{margin-left:-10.880000pt;}
._d{margin-left:-9.813333pt;}
._13{margin-left:-7.424000pt;}
._14{margin-left:-6.528000pt;}
._0{margin-left:-5.600000pt;}
._b{margin-left:-4.320000pt;}
._a{margin-left:-3.040000pt;}
._4{margin-left:-1.600000pt;}
._2{width:1.280000pt;}
._3{width:2.720000pt;}
._1{width:3.733333pt;}
._e{width:4.693333pt;}
._c{width:6.133333pt;}
._9{width:7.573333pt;}
._10{width:9.088000pt;}
._f{width:10.016000pt;}
._5{width:23.253333pt;}
._15{width:28.129867pt;}
._8{width:64.960000pt;}
._6{width:66.826667pt;}
._7{width:68.693333pt;}
.fs6{font-size:31.733333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:380.692267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:68.229200pt;}
.y1{bottom:82.895867pt;}
.y77{bottom:122.895867pt;}
.ya0{bottom:122.986533pt;}
.yc3{bottom:123.130533pt;}
.y53{bottom:123.998267pt;}
.y11{bottom:125.858133pt;}
.ye7{bottom:126.527867pt;}
.y34{bottom:126.635867pt;}
.y76{bottom:139.969200pt;}
.ye6{bottom:139.989200pt;}
.y9f{bottom:142.458533pt;}
.yc2{bottom:142.602533pt;}
.y52{bottom:143.998267pt;}
.y10{bottom:146.130133pt;}
.y33{bottom:146.635867pt;}
.ye5{bottom:153.450533pt;}
.y7b{bottom:156.229200pt;}
.y10b{bottom:157.226533pt;}
.y9e{bottom:161.930533pt;}
.yc1{bottom:162.074533pt;}
.y51{bottom:163.998267pt;}
.yf{bottom:166.402133pt;}
.y78{bottom:166.635867pt;}
.ye4{bottom:166.911867pt;}
.y7a{bottom:173.302533pt;}
.y75{bottom:173.658533pt;}
.y10a{bottom:173.893200pt;}
.ye3{bottom:180.373200pt;}
.y9d{bottom:181.402533pt;}
.yc0{bottom:181.546533pt;}
.y32{bottom:182.895867pt;}
.y50{bottom:183.998267pt;}
.ye{bottom:186.674133pt;}
.y109{bottom:190.559867pt;}
.y79{bottom:193.302533pt;}
.ye2{bottom:193.834533pt;}
.y74{bottom:193.930533pt;}
.y9c{bottom:200.874533pt;}
.ybf{bottom:201.018533pt;}
.y31{bottom:202.895867pt;}
.y4f{bottom:203.998267pt;}
.yd{bottom:206.946133pt;}
.yb{bottom:206.956800pt;}
.y108{bottom:207.226533pt;}
.ye1{bottom:207.295867pt;}
.y73{bottom:214.202533pt;}
.y9b{bottom:220.346533pt;}
.ybe{bottom:220.490533pt;}
.ye0{bottom:220.757200pt;}
.y30{bottom:222.895867pt;}
.y4e{bottom:223.998267pt;}
.yc{bottom:227.218133pt;}
.y72{bottom:234.474533pt;}
.y9a{bottom:239.818533pt;}
.ydf{bottom:239.893200pt;}
.ybd{bottom:239.962533pt;}
.y107{bottom:240.559867pt;}
.y2f{bottom:242.895867pt;}
.y4d{bottom:243.998267pt;}
.y71{bottom:254.746533pt;}
.y99{bottom:259.290533pt;}
.ybc{bottom:259.429200pt;}
.y2e{bottom:262.895867pt;}
.y4c{bottom:263.998267pt;}
.y70{bottom:275.018533pt;}
.y106{bottom:277.226533pt;}
.ya{bottom:278.023333pt;}
.y98{bottom:278.762533pt;}
.yde{bottom:280.159867pt;}
.y2d{bottom:282.895867pt;}
.y4b{bottom:283.998267pt;}
.y105{bottom:293.893200pt;}
.y6f{bottom:295.290533pt;}
.ybb{bottom:298.229200pt;}
.y97{bottom:298.234533pt;}
.ydd{bottom:299.295867pt;}
.y2c{bottom:302.895867pt;}
.y4a{bottom:303.998267pt;}
.y104{bottom:310.559867pt;}
.y6e{bottom:315.423867pt;}
.yba{bottom:317.701200pt;}
.y96{bottom:317.706533pt;}
.y2b{bottom:322.895867pt;}
.y49{bottom:323.998267pt;}
.y103{bottom:327.226533pt;}
.y6d{bottom:335.695867pt;}
.yb9{bottom:337.173200pt;}
.y95{bottom:337.178533pt;}
.ydc{bottom:339.690533pt;}
.y2a{bottom:342.895867pt;}
.y102{bottom:343.893200pt;}
.y48{bottom:343.998267pt;}
.y6c{bottom:355.967867pt;}
.yb8{bottom:356.645200pt;}
.y94{bottom:356.650533pt;}
.ydb{bottom:359.818533pt;}
.y101{bottom:360.559867pt;}
.y29{bottom:362.895867pt;}
.y47{bottom:363.998267pt;}
.yb7{bottom:376.117200pt;}
.y93{bottom:376.122533pt;}
.y6b{bottom:376.239867pt;}
.y100{bottom:377.226533pt;}
.yda{bottom:379.946533pt;}
.y28{bottom:382.895867pt;}
.y46{bottom:383.998267pt;}
.yff{bottom:393.893200pt;}
.yb6{bottom:395.589200pt;}
.y92{bottom:395.594533pt;}
.y6a{bottom:396.511867pt;}
.yd9{bottom:400.074533pt;}
.y27{bottom:402.895867pt;}
.y45{bottom:403.998267pt;}
.yfe{bottom:410.559867pt;}
.yb5{bottom:415.061200pt;}
.y91{bottom:415.066533pt;}
.y69{bottom:416.783867pt;}
.yd8{bottom:420.202533pt;}
.y26{bottom:422.895867pt;}
.y44{bottom:423.998267pt;}
.yfd{bottom:427.226533pt;}
.yb4{bottom:434.533200pt;}
.y90{bottom:434.538533pt;}
.y68{bottom:437.055867pt;}
.yd7{bottom:440.330533pt;}
.y25{bottom:442.895867pt;}
.yfc{bottom:443.893200pt;}
.y43{bottom:443.998267pt;}
.yb3{bottom:454.005200pt;}
.y8f{bottom:454.010533pt;}
.y67{bottom:457.327867pt;}
.yd6{bottom:460.458533pt;}
.yfb{bottom:460.559867pt;}
.y24{bottom:462.895867pt;}
.y42{bottom:463.998267pt;}
.yb2{bottom:473.477200pt;}
.y8e{bottom:473.482533pt;}
.yfa{bottom:477.226533pt;}
.y66{bottom:477.599867pt;}
.yd5{bottom:480.586533pt;}
.y23{bottom:482.895867pt;}
.y41{bottom:483.998267pt;}
.yb1{bottom:492.949200pt;}
.y8d{bottom:492.954533pt;}
.yf9{bottom:493.893200pt;}
.y65{bottom:497.871867pt;}
.yd4{bottom:500.714533pt;}
.y22{bottom:502.895867pt;}
.y40{bottom:503.998267pt;}
.yf8{bottom:510.559867pt;}
.yb0{bottom:512.421200pt;}
.y8c{bottom:512.426533pt;}
.y64{bottom:518.143867pt;}
.yd3{bottom:520.842533pt;}
.y21{bottom:522.895867pt;}
.y3f{bottom:523.998267pt;}
.yf7{bottom:527.226533pt;}
.yaf{bottom:531.893200pt;}
.y8b{bottom:531.898533pt;}
.y63{bottom:538.415867pt;}
.yd2{bottom:540.970533pt;}
.y20{bottom:542.895867pt;}
.yf6{bottom:543.893200pt;}
.y3e{bottom:543.998267pt;}
.yae{bottom:551.365200pt;}
.y8a{bottom:551.370533pt;}
.y62{bottom:558.687867pt;}
.yf5{bottom:560.559867pt;}
.yd1{bottom:561.098533pt;}
.y1f{bottom:562.895867pt;}
.y3d{bottom:563.998267pt;}
.yad{bottom:570.837200pt;}
.y89{bottom:570.842533pt;}
.yf4{bottom:577.226533pt;}
.y61{bottom:578.959867pt;}
.yd0{bottom:581.226533pt;}
.y1e{bottom:582.895867pt;}
.y3c{bottom:583.998267pt;}
.yac{bottom:590.309200pt;}
.y88{bottom:590.314533pt;}
.yf3{bottom:593.893200pt;}
.y60{bottom:599.231867pt;}
.ycf{bottom:601.354533pt;}
.y1d{bottom:602.895867pt;}
.y3b{bottom:603.998267pt;}
.y87{bottom:609.786533pt;}
.yf2{bottom:610.559867pt;}
.y5f{bottom:619.503867pt;}
.yce{bottom:621.482533pt;}
.y1c{bottom:622.895867pt;}
.y3a{bottom:623.998267pt;}
.yf1{bottom:627.226533pt;}
.yab{bottom:629.237200pt;}
.y86{bottom:629.258533pt;}
.y5e{bottom:639.775867pt;}
.ycd{bottom:641.610533pt;}
.y1b{bottom:642.895867pt;}
.yf0{bottom:643.893200pt;}
.y39{bottom:643.998267pt;}
.yaa{bottom:648.709200pt;}
.y85{bottom:648.730533pt;}
.y9{bottom:649.090133pt;}
.y5d{bottom:660.047867pt;}
.yef{bottom:660.559867pt;}
.ycc{bottom:661.738533pt;}
.y1a{bottom:662.895867pt;}
.y38{bottom:663.998267pt;}
.y8{bottom:665.756800pt;}
.ya9{bottom:668.181200pt;}
.y84{bottom:668.202533pt;}
.yee{bottom:677.226533pt;}
.y5c{bottom:680.319867pt;}
.ycb{bottom:681.866533pt;}
.y19{bottom:682.895867pt;}
.y37{bottom:683.998267pt;}
.ya8{bottom:687.653200pt;}
.y83{bottom:687.674533pt;}
.yed{bottom:693.893200pt;}
.y5b{bottom:700.591867pt;}
.yca{bottom:701.994533pt;}
.y18{bottom:702.895867pt;}
.y7{bottom:703.210800pt;}
.y36{bottom:703.998267pt;}
.ya7{bottom:707.125200pt;}
.y82{bottom:707.146533pt;}
.yec{bottom:716.229200pt;}
.y5a{bottom:720.863867pt;}
.yc9{bottom:722.122533pt;}
.y17{bottom:722.895867pt;}
.y6{bottom:723.210800pt;}
.ya6{bottom:726.597200pt;}
.y81{bottom:726.618533pt;}
.y35{bottom:733.439867pt;}
.y59{bottom:741.135867pt;}
.yc8{bottom:742.250533pt;}
.y16{bottom:742.895867pt;}
.ya5{bottom:746.069200pt;}
.y80{bottom:746.090533pt;}
.yeb{bottom:756.229200pt;}
.y58{bottom:761.407867pt;}
.yc7{bottom:762.378533pt;}
.y15{bottom:762.895867pt;}
.ya4{bottom:765.541200pt;}
.y7f{bottom:765.562533pt;}
.yea{bottom:769.562533pt;}
.y57{bottom:781.679867pt;}
.yc6{bottom:782.506533pt;}
.y5{bottom:782.895867pt;}
.ya3{bottom:785.013200pt;}
.ye9{bottom:796.229200pt;}
.y56{bottom:801.951867pt;}
.yc5{bottom:802.634533pt;}
.y14{bottom:802.895867pt;}
.ya2{bottom:804.485200pt;}
.y7e{bottom:804.490533pt;}
.y4{bottom:809.562533pt;}
.y55{bottom:822.223867pt;}
.yc4{bottom:822.762533pt;}
.y13{bottom:822.895867pt;}
.ya1{bottom:823.957200pt;}
.y7d{bottom:823.962533pt;}
.y3{bottom:836.229200pt;}
.y54{bottom:842.495867pt;}
.y12{bottom:842.895867pt;}
.y7c{bottom:843.429200pt;}
.ye8{bottom:849.562533pt;}
.ha{height:26.206667pt;}
.hf{height:30.617708pt;}
.h11{height:34.730667pt;}
.hd{height:41.166667pt;}
.h10{height:43.413333pt;}
.h5{height:44.960000pt;}
.h7{height:45.286458pt;}
.hb{height:46.312500pt;}
.h2{height:51.458333pt;}
.h6{height:54.343750pt;}
.h9{height:61.750000pt;}
.h3{height:62.125000pt;}
.hc{height:62.304667pt;}
.he{height:64.345000pt;}
.h4{height:102.916667pt;}
.h8{height:266.484587pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x1{left:78.897600pt;}
.x8{left:92.126000pt;}
.x6{left:100.000000pt;}
.x7{left:113.232000pt;}
.x4{left:119.249733pt;}
.x2{left:138.897600pt;}
.x3{left:267.874000pt;}
.x5{left:556.250000pt;}
}




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