
    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_2fe280c6e2a196f40362689a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_e68f7952a301533e1bc24ae4.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ec98e9ae7fd3de4bfac56591.woff')format("woff");}.ff3{font-family:ff3;line-height:0.968000;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_fefbe2710e61eb78806823bc.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_162f2e4f190b1564c11dfe34.woff')format("woff");}.ff5{font-family:ff5;line-height:0.816000;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_47d50344c8da1d924a0172c3.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a0ba05ee127de31b5d05d556.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_1e66db40b9c11e0e39cf2859.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;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_9c0aadf074d0e45ecf111eb9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1955114ae855c3f1dd0aa4ef.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_37c43bff82bd042f5e89f859.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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_1e7982880e7a904e26b62df9.woff')format("woff");}.ffc{font-family:ffc;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;}
.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:-23.760000px;}
.v6{vertical-align:-19.800000px;}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.800000px;}
.v2{vertical-align:23.400000px;}
.v1{vertical-align:177.600000px;}
.lsa{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.101400px;}
.ls10{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.576000px;}
.ls1d{letter-spacing:0.627000px;}
.ls20{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.792000px;}
.ls4{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.008000px;}
.ls7{letter-spacing:1.152000px;}
.ls1e{letter-spacing:1.224000px;}
.ls6{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.232000px;}
.lse{letter-spacing:2.376000px;}
.ls26{letter-spacing:2.448000px;}
.ls21{letter-spacing:2.736000px;}
.ls25{letter-spacing:3.024000px;}
.ls14{letter-spacing:3.456000px;}
.ls16{letter-spacing:4.392000px;}
.ls27{letter-spacing:4.752000px;}
.ls1f{letter-spacing:6.264000px;}
.lsf{letter-spacing:7.272000px;}
.ls1{letter-spacing:8.385009px;}
.lsb{letter-spacing:8.460000px;}
.lsc{letter-spacing:8.856000px;}
.ls23{letter-spacing:9.216000px;}
.ls15{letter-spacing:9.792000px;}
.ls13{letter-spacing:10.296000px;}
.ls0{letter-spacing:10.740000px;}
.ls22{letter-spacing:13.795500px;}
.ls1a{letter-spacing:13.796100px;}
.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;}
}
.ws5{word-spacing:-49.536000px;}
.wse{word-spacing:-49.320000px;}
.ws4{word-spacing:-49.248000px;}
.wsf{word-spacing:-49.176000px;}
.ws12{word-spacing:-49.104000px;}
.ws6{word-spacing:-48.960000px;}
.wsb{word-spacing:-48.888000px;}
.wsc{word-spacing:-48.816000px;}
.ws10{word-spacing:-48.744000px;}
.wsd{word-spacing:-48.672000px;}
.wsa{word-spacing:-48.600000px;}
.ws1{word-spacing:-48.528000px;}
.ws2{word-spacing:-40.440000px;}
.ws7{word-spacing:-32.352000px;}
.ws11{word-spacing:-25.320000px;}
.ws9{word-spacing:-20.232000px;}
.ws15{word-spacing:-16.860000px;}
.ws3{word-spacing:-14.162400px;}
.ws14{word-spacing:-11.802000px;}
.ws0{word-spacing:-8.400000px;}
.ws8{word-spacing:0.000000px;}
.ws13{word-spacing:129.300000px;}
._15{margin-left:-15.900000px;}
._16{margin-left:-13.860000px;}
._7{margin-left:-11.100000px;}
._12{margin-left:-9.360000px;}
._b{margin-left:-8.280000px;}
._f{margin-left:-7.272000px;}
._0{margin-left:-5.940000px;}
._13{margin-left:-4.896000px;}
._5{margin-left:-3.600000px;}
._9{margin-left:-2.472000px;}
._2{margin-left:-1.260000px;}
._1{width:1.860000px;}
._a{width:3.060000px;}
._3{width:4.200000px;}
._c{width:5.220000px;}
._e{width:6.960000px;}
._6{width:8.520000px;}
._8{width:10.164000px;}
._d{width:11.448000px;}
._14{width:13.440000px;}
._10{width:31.645500px;}
._11{width:201.540000px;}
._4{width:203.820000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:419.376600px;}
.y0{bottom:0.000000px;}
.y1{bottom:93.257850px;}
.y69{bottom:138.384300px;}
.yda{bottom:139.423500px;}
.yb4{bottom:141.311400px;}
.y20{bottom:141.471900px;}
.y8e{bottom:142.733400px;}
.y45{bottom:142.891950px;}
.yfd{bottom:143.631150px;}
.yd9{bottom:154.423500px;}
.y68{bottom:157.591800px;}
.y44{bottom:161.184450px;}
.yb3{bottom:163.811400px;}
.y1f{bottom:163.971900px;}
.y8d{bottom:165.233400px;}
.yd8{bottom:169.423500px;}
.y43{bottom:176.184450px;}
.yfc{bottom:179.923650px;}
.y67{bottom:180.091800px;}
.y8c{bottom:183.525900px;}
.yb2{bottom:186.311400px;}
.y125{bottom:187.737150px;}
.yd7{bottom:188.631000px;}
.y42{bottom:191.184450px;}
.y66{bottom:198.384300px;}
.y8b{bottom:198.525900px;}
.y1e{bottom:198.603150px;}
.yfb{bottom:202.423650px;}
.y124{bottom:206.487150px;}
.y41{bottom:210.391950px;}
.y65{bottom:213.384300px;}
.y8a{bottom:217.733400px;}
.yd6{bottom:219.487500px;}
.y1d{bottom:220.797150px;}
.yb1{bottom:221.703900px;}
.yfa{bottom:224.923650px;}
.y123{bottom:225.237150px;}
.y64{bottom:232.591800px;}
.y89{bottom:240.233400px;}
.yd5{bottom:241.393500px;}
.y1c{bottom:242.991150px;}
.yb0{bottom:242.997900px;}
.y40{bottom:243.534450px;}
.y122{bottom:243.987150px;}
.yf9{bottom:247.423650px;}
.yd4{bottom:263.299500px;}
.yaf{bottom:263.841900px;}
.y1b{bottom:265.185150px;}
.y3f{bottom:265.584450px;}
.y63{bottom:266.196300px;}
.yf8{bottom:269.923650px;}
.y88{bottom:272.763900px;}
.y121{bottom:281.487150px;}
.yae{bottom:284.685900px;}
.yd3{bottom:285.205500px;}
.y1a{bottom:287.379150px;}
.y3e{bottom:287.634450px;}
.y62{bottom:287.940300px;}
.yf7{bottom:292.423650px;}
.y87{bottom:294.813900px;}
.yad{bottom:305.529900px;}
.yd2{bottom:307.111500px;}
.y19{bottom:309.591150px;}
.y61{bottom:309.684300px;}
.y3d{bottom:309.684450px;}
.yf6{bottom:314.923650px;}
.y86{bottom:316.863900px;}
.y120{bottom:322.737150px;}
.yac{bottom:326.373900px;}
.yd1{bottom:329.017500px;}
.y60{bottom:331.734300px;}
.y3c{bottom:331.734450px;}
.y18{bottom:331.785150px;}
.yf5{bottom:337.423650px;}
.y85{bottom:338.913900px;}
.y11f{bottom:341.487150px;}
.yab{bottom:347.829900px;}
.yd0{bottom:351.073500px;}
.y5f{bottom:353.784300px;}
.y3b{bottom:353.784450px;}
.y17{bottom:353.979150px;}
.yf4{bottom:359.923650px;}
.y11e{bottom:360.237150px;}
.y84{bottom:360.963900px;}
.yaa{bottom:369.285900px;}
.ycf{bottom:372.367500px;}
.y5e{bottom:375.834300px;}
.y3a{bottom:375.834450px;}
.y16{bottom:376.263150px;}
.y11d{bottom:378.987150px;}
.yf3{bottom:382.423650px;}
.y83{bottom:382.707900px;}
.ya9{bottom:390.741900px;}
.yce{bottom:393.661500px;}
.y11c{bottom:397.737150px;}
.y5d{bottom:397.884300px;}
.y39{bottom:397.884450px;}
.y15{bottom:398.457150px;}
.y82{bottom:404.451900px;}
.yf2{bottom:404.923650px;}
.ya8{bottom:412.197900px;}
.ycd{bottom:414.955500px;}
.y11b{bottom:416.487150px;}
.y5c{bottom:419.934300px;}
.y38{bottom:419.934450px;}
.y14{bottom:420.651150px;}
.y81{bottom:426.195900px;}
.yf1{bottom:427.423650px;}
.ya7{bottom:433.575900px;}
.y11a{bottom:435.237150px;}
.ycc{bottom:436.249500px;}
.y5b{bottom:441.984300px;}
.y37{bottom:441.984450px;}
.y13{bottom:442.845150px;}
.yf0{bottom:449.923650px;}
.y119{bottom:453.987150px;}
.ya6{bottom:455.031900px;}
.ycb{bottom:457.543500px;}
.y5a{bottom:464.034300px;}
.y36{bottom:464.034450px;}
.y12{bottom:465.039150px;}
.y80{bottom:469.701900px;}
.yef{bottom:472.423650px;}
.y118{bottom:472.737150px;}
.ya5{bottom:476.487900px;}
.yca{bottom:478.837500px;}
.y35{bottom:486.084450px;}
.y11{bottom:487.233150px;}
.y7f{bottom:491.445900px;}
.y117{bottom:491.487150px;}
.yee{bottom:494.923650px;}
.ya4{bottom:497.943900px;}
.yc9{bottom:500.131500px;}
.y59{bottom:508.134300px;}
.y34{bottom:508.134450px;}
.y10{bottom:509.427150px;}
.y116{bottom:510.237150px;}
.y7e{bottom:513.189900px;}
.yed{bottom:517.423650px;}
.ya3{bottom:519.399900px;}
.yc8{bottom:521.425500px;}
.y115{bottom:528.987150px;}
.y58{bottom:530.184300px;}
.y33{bottom:530.184450px;}
.yf{bottom:531.621150px;}
.y7d{bottom:534.933900px;}
.ya2{bottom:540.855900px;}
.yc7{bottom:542.719500px;}
.y114{bottom:547.737150px;}
.y57{bottom:552.234300px;}
.y32{bottom:552.234450px;}
.ye{bottom:553.815150px;}
.y7c{bottom:556.677900px;}
.ya1{bottom:562.311900px;}
.yec{bottom:562.423650px;}
.yc6{bottom:564.013500px;}
.y113{bottom:566.487150px;}
.y56{bottom:574.284300px;}
.y31{bottom:574.284450px;}
.yd{bottom:576.009150px;}
.y7b{bottom:578.421900px;}
.ya0{bottom:583.767900px;}
.yeb{bottom:584.923650px;}
.y112{bottom:585.237150px;}
.yc5{bottom:585.307500px;}
.y55{bottom:596.334300px;}
.y30{bottom:596.334450px;}
.yc{bottom:598.203150px;}
.y7a{bottom:600.165900px;}
.y111{bottom:603.987150px;}
.y9f{bottom:605.223900px;}
.yc4{bottom:606.601500px;}
.yea{bottom:607.423650px;}
.y2f{bottom:618.384450px;}
.yb{bottom:620.397150px;}
.y79{bottom:621.909900px;}
.y110{bottom:622.737150px;}
.y9e{bottom:626.679900px;}
.yc3{bottom:627.895500px;}
.ye9{bottom:629.923650px;}
.y54{bottom:640.434300px;}
.y2e{bottom:640.434450px;}
.y10f{bottom:641.487150px;}
.ya{bottom:642.591150px;}
.y78{bottom:643.677900px;}
.y9d{bottom:648.135900px;}
.yc2{bottom:649.189500px;}
.ye8{bottom:652.423650px;}
.y10e{bottom:660.237150px;}
.y53{bottom:662.484300px;}
.y2d{bottom:662.484450px;}
.y7{bottom:664.773150px;}
.y9{bottom:664.785150px;}
.y77{bottom:665.421900px;}
.y9c{bottom:669.591900px;}
.yc1{bottom:670.483500px;}
.ye7{bottom:674.923650px;}
.y52{bottom:684.534300px;}
.y2c{bottom:684.534450px;}
.y10d{bottom:685.371000px;}
.y8{bottom:686.979150px;}
.y76{bottom:687.165900px;}
.y9b{bottom:691.047900px;}
.ye6{bottom:697.423650px;}
.y10c{bottom:701.871000px;}
.y51{bottom:706.584300px;}
.y2b{bottom:706.584450px;}
.y75{bottom:708.909900px;}
.y9a{bottom:712.473900px;}
.yc0{bottom:713.089500px;}
.ye5{bottom:719.923650px;}
.y50{bottom:728.634300px;}
.y2a{bottom:728.634450px;}
.y74{bottom:730.665900px;}
.y99{bottom:733.929900px;}
.ybf{bottom:734.383500px;}
.ye4{bottom:742.423650px;}
.y10b{bottom:746.871000px;}
.y4f{bottom:750.684300px;}
.y29{bottom:750.684450px;}
.y73{bottom:752.409900px;}
.y6{bottom:752.632950px;}
.y98{bottom:755.385900px;}
.ybe{bottom:755.677500px;}
.y10a{bottom:761.871000px;}
.ye3{bottom:764.923650px;}
.y4e{bottom:772.734300px;}
.y72{bottom:774.201900px;}
.y97{bottom:776.841900px;}
.y109{bottom:776.871000px;}
.ybd{bottom:776.971500px;}
.ye2{bottom:787.423650px;}
.y108{bottom:791.871000px;}
.y5{bottom:794.018850px;}
.y4d{bottom:794.784300px;}
.y28{bottom:794.784450px;}
.y71{bottom:795.945900px;}
.ybc{bottom:798.265500px;}
.y96{bottom:798.297900px;}
.y107{bottom:806.871000px;}
.ye1{bottom:809.923650px;}
.y4{bottom:816.518850px;}
.y4c{bottom:816.834300px;}
.y27{bottom:816.834450px;}
.y70{bottom:817.689900px;}
.ybb{bottom:819.559500px;}
.y95{bottom:819.717900px;}
.y106{bottom:821.871000px;}
.ye0{bottom:832.423650px;}
.y105{bottom:836.871000px;}
.y4b{bottom:838.884300px;}
.y26{bottom:838.884450px;}
.y6f{bottom:839.433900px;}
.yba{bottom:840.853500px;}
.y94{bottom:841.173900px;}
.y104{bottom:851.871000px;}
.ydf{bottom:854.923650px;}
.y4a{bottom:860.934300px;}
.y25{bottom:860.934450px;}
.y6e{bottom:861.177900px;}
.yb9{bottom:862.147500px;}
.y93{bottom:862.629900px;}
.y103{bottom:866.871000px;}
.yde{bottom:877.423650px;}
.y102{bottom:881.871000px;}
.y6d{bottom:882.921900px;}
.y49{bottom:882.984300px;}
.y24{bottom:882.984450px;}
.yb8{bottom:883.441500px;}
.y3{bottom:883.664550px;}
.y92{bottom:884.085900px;}
.y101{bottom:896.871000px;}
.ydd{bottom:899.923650px;}
.y6c{bottom:904.665900px;}
.yb7{bottom:904.735500px;}
.y48{bottom:905.034300px;}
.y23{bottom:905.034450px;}
.y91{bottom:905.541900px;}
.y100{bottom:911.871000px;}
.y2{bottom:913.664550px;}
.ydc{bottom:922.423650px;}
.yb6{bottom:926.029500px;}
.y6b{bottom:926.409900px;}
.yff{bottom:926.871000px;}
.y90{bottom:926.997900px;}
.y47{bottom:927.084300px;}
.y22{bottom:927.084450px;}
.ydb{bottom:944.923650px;}
.yb5{bottom:947.323500px;}
.y6a{bottom:948.153900px;}
.yfe{bottom:948.243000px;}
.y8f{bottom:948.453900px;}
.y46{bottom:949.134300px;}
.y21{bottom:949.134450px;}
.h7{height:24.630908px;}
.ha{height:30.313623px;}
.h11{height:39.072000px;}
.h9{height:40.757812px;}
.h10{height:47.988281px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h12{height:55.463086px;}
.h5{height:61.136719px;}
.hd{height:61.256719px;}
.hc{height:61.280719px;}
.hf{height:65.955703px;}
.hb{height:66.363703px;}
.h8{height:66.555703px;}
.he{height:66.867703px;}
.h3{height:101.894531px;}
.h6{height:338.856293px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x6{left:88.759800px;}
.x7{left:103.641750px;}
.x2{left:112.500000px;}
.x5{left:127.403250px;}
.x4{left:154.961250px;}
.x8{left:156.703350px;}
.x3{left:325.098450px;}
.x1{left:417.403050px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v6{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.600000pt;}
.v2{vertical-align:20.800000pt;}
.v1{vertical-align:157.866667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.090133pt;}
.ls10{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.512000pt;}
.ls1d{letter-spacing:0.557333pt;}
.ls20{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls4{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.832000pt;}
.ls3{letter-spacing:0.896000pt;}
.ls7{letter-spacing:1.024000pt;}
.ls1e{letter-spacing:1.088000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.984000pt;}
.lse{letter-spacing:2.112000pt;}
.ls26{letter-spacing:2.176000pt;}
.ls21{letter-spacing:2.432000pt;}
.ls25{letter-spacing:2.688000pt;}
.ls14{letter-spacing:3.072000pt;}
.ls16{letter-spacing:3.904000pt;}
.ls27{letter-spacing:4.224000pt;}
.ls1f{letter-spacing:5.568000pt;}
.lsf{letter-spacing:6.464000pt;}
.ls1{letter-spacing:7.453341pt;}
.lsb{letter-spacing:7.520000pt;}
.lsc{letter-spacing:7.872000pt;}
.ls23{letter-spacing:8.192000pt;}
.ls15{letter-spacing:8.704000pt;}
.ls13{letter-spacing:9.152000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls22{letter-spacing:12.262667pt;}
.ls1a{letter-spacing:12.263200pt;}
.ws5{word-spacing:-44.032000pt;}
.wse{word-spacing:-43.840000pt;}
.ws4{word-spacing:-43.776000pt;}
.wsf{word-spacing:-43.712000pt;}
.ws12{word-spacing:-43.648000pt;}
.ws6{word-spacing:-43.520000pt;}
.wsb{word-spacing:-43.456000pt;}
.wsc{word-spacing:-43.392000pt;}
.ws10{word-spacing:-43.328000pt;}
.wsd{word-spacing:-43.264000pt;}
.wsa{word-spacing:-43.200000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws2{word-spacing:-35.946667pt;}
.ws7{word-spacing:-28.757333pt;}
.ws11{word-spacing:-22.506667pt;}
.ws9{word-spacing:-17.984000pt;}
.ws15{word-spacing:-14.986667pt;}
.ws3{word-spacing:-12.588800pt;}
.ws14{word-spacing:-10.490667pt;}
.ws0{word-spacing:-7.466667pt;}
.ws8{word-spacing:0.000000pt;}
.ws13{word-spacing:114.933333pt;}
._15{margin-left:-14.133333pt;}
._16{margin-left:-12.320000pt;}
._7{margin-left:-9.866667pt;}
._12{margin-left:-8.320000pt;}
._b{margin-left:-7.360000pt;}
._f{margin-left:-6.464000pt;}
._0{margin-left:-5.280000pt;}
._13{margin-left:-4.352000pt;}
._5{margin-left:-3.200000pt;}
._9{margin-left:-2.197333pt;}
._2{margin-left:-1.120000pt;}
._1{width:1.653333pt;}
._a{width:2.720000pt;}
._3{width:3.733333pt;}
._c{width:4.640000pt;}
._e{width:6.186667pt;}
._6{width:7.573333pt;}
._8{width:9.034667pt;}
._d{width:10.176000pt;}
._14{width:11.946667pt;}
._10{width:28.129333pt;}
._11{width:179.146667pt;}
._4{width:181.173333pt;}
.fs5{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:372.779200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:82.895867pt;}
.y69{bottom:123.008267pt;}
.yda{bottom:123.932000pt;}
.yb4{bottom:125.610133pt;}
.y20{bottom:125.752800pt;}
.y8e{bottom:126.874133pt;}
.y45{bottom:127.015067pt;}
.yfd{bottom:127.672133pt;}
.yd9{bottom:137.265333pt;}
.y68{bottom:140.081600pt;}
.y44{bottom:143.275067pt;}
.yb3{bottom:145.610133pt;}
.y1f{bottom:145.752800pt;}
.y8d{bottom:146.874133pt;}
.yd8{bottom:150.598667pt;}
.y43{bottom:156.608400pt;}
.yfc{bottom:159.932133pt;}
.y67{bottom:160.081600pt;}
.y8c{bottom:163.134133pt;}
.yb2{bottom:165.610133pt;}
.y125{bottom:166.877467pt;}
.yd7{bottom:167.672000pt;}
.y42{bottom:169.941733pt;}
.y66{bottom:176.341600pt;}
.y8b{bottom:176.467467pt;}
.y1e{bottom:176.536133pt;}
.yfb{bottom:179.932133pt;}
.y124{bottom:183.544133pt;}
.y41{bottom:187.015067pt;}
.y65{bottom:189.674933pt;}
.y8a{bottom:193.540800pt;}
.yd6{bottom:195.100000pt;}
.y1d{bottom:196.264133pt;}
.yb1{bottom:197.070133pt;}
.yfa{bottom:199.932133pt;}
.y123{bottom:200.210800pt;}
.y64{bottom:206.748267pt;}
.y89{bottom:213.540800pt;}
.yd5{bottom:214.572000pt;}
.y1c{bottom:215.992133pt;}
.yb0{bottom:215.998133pt;}
.y40{bottom:216.475067pt;}
.y122{bottom:216.877467pt;}
.yf9{bottom:219.932133pt;}
.yd4{bottom:234.044000pt;}
.yaf{bottom:234.526133pt;}
.y1b{bottom:235.720133pt;}
.y3f{bottom:236.075067pt;}
.y63{bottom:236.618933pt;}
.yf8{bottom:239.932133pt;}
.y88{bottom:242.456800pt;}
.y121{bottom:250.210800pt;}
.yae{bottom:253.054133pt;}
.yd3{bottom:253.516000pt;}
.y1a{bottom:255.448133pt;}
.y3e{bottom:255.675067pt;}
.y62{bottom:255.946933pt;}
.yf7{bottom:259.932133pt;}
.y87{bottom:262.056800pt;}
.yad{bottom:271.582133pt;}
.yd2{bottom:272.988000pt;}
.y19{bottom:275.192133pt;}
.y61{bottom:275.274933pt;}
.y3d{bottom:275.275067pt;}
.yf6{bottom:279.932133pt;}
.y86{bottom:281.656800pt;}
.y120{bottom:286.877467pt;}
.yac{bottom:290.110133pt;}
.yd1{bottom:292.460000pt;}
.y60{bottom:294.874933pt;}
.y3c{bottom:294.875067pt;}
.y18{bottom:294.920133pt;}
.yf5{bottom:299.932133pt;}
.y85{bottom:301.256800pt;}
.y11f{bottom:303.544133pt;}
.yab{bottom:309.182133pt;}
.yd0{bottom:312.065333pt;}
.y5f{bottom:314.474933pt;}
.y3b{bottom:314.475067pt;}
.y17{bottom:314.648133pt;}
.yf4{bottom:319.932133pt;}
.y11e{bottom:320.210800pt;}
.y84{bottom:320.856800pt;}
.yaa{bottom:328.254133pt;}
.ycf{bottom:330.993333pt;}
.y5e{bottom:334.074933pt;}
.y3a{bottom:334.075067pt;}
.y16{bottom:334.456133pt;}
.y11d{bottom:336.877467pt;}
.yf3{bottom:339.932133pt;}
.y83{bottom:340.184800pt;}
.ya9{bottom:347.326133pt;}
.yce{bottom:349.921333pt;}
.y11c{bottom:353.544133pt;}
.y5d{bottom:353.674933pt;}
.y39{bottom:353.675067pt;}
.y15{bottom:354.184133pt;}
.y82{bottom:359.512800pt;}
.yf2{bottom:359.932133pt;}
.ya8{bottom:366.398133pt;}
.ycd{bottom:368.849333pt;}
.y11b{bottom:370.210800pt;}
.y5c{bottom:373.274933pt;}
.y38{bottom:373.275067pt;}
.y14{bottom:373.912133pt;}
.y81{bottom:378.840800pt;}
.yf1{bottom:379.932133pt;}
.ya7{bottom:385.400800pt;}
.y11a{bottom:386.877467pt;}
.ycc{bottom:387.777333pt;}
.y5b{bottom:392.874933pt;}
.y37{bottom:392.875067pt;}
.y13{bottom:393.640133pt;}
.yf0{bottom:399.932133pt;}
.y119{bottom:403.544133pt;}
.ya6{bottom:404.472800pt;}
.ycb{bottom:406.705333pt;}
.y5a{bottom:412.474933pt;}
.y36{bottom:412.475067pt;}
.y12{bottom:413.368133pt;}
.y80{bottom:417.512800pt;}
.yef{bottom:419.932133pt;}
.y118{bottom:420.210800pt;}
.ya5{bottom:423.544800pt;}
.yca{bottom:425.633333pt;}
.y35{bottom:432.075067pt;}
.y11{bottom:433.096133pt;}
.y7f{bottom:436.840800pt;}
.y117{bottom:436.877467pt;}
.yee{bottom:439.932133pt;}
.ya4{bottom:442.616800pt;}
.yc9{bottom:444.561333pt;}
.y59{bottom:451.674933pt;}
.y34{bottom:451.675067pt;}
.y10{bottom:452.824133pt;}
.y116{bottom:453.544133pt;}
.y7e{bottom:456.168800pt;}
.yed{bottom:459.932133pt;}
.ya3{bottom:461.688800pt;}
.yc8{bottom:463.489333pt;}
.y115{bottom:470.210800pt;}
.y58{bottom:471.274933pt;}
.y33{bottom:471.275067pt;}
.yf{bottom:472.552133pt;}
.y7d{bottom:475.496800pt;}
.ya2{bottom:480.760800pt;}
.yc7{bottom:482.417333pt;}
.y114{bottom:486.877467pt;}
.y57{bottom:490.874933pt;}
.y32{bottom:490.875067pt;}
.ye{bottom:492.280133pt;}
.y7c{bottom:494.824800pt;}
.ya1{bottom:499.832800pt;}
.yec{bottom:499.932133pt;}
.yc6{bottom:501.345333pt;}
.y113{bottom:503.544133pt;}
.y56{bottom:510.474933pt;}
.y31{bottom:510.475067pt;}
.yd{bottom:512.008133pt;}
.y7b{bottom:514.152800pt;}
.ya0{bottom:518.904800pt;}
.yeb{bottom:519.932133pt;}
.y112{bottom:520.210800pt;}
.yc5{bottom:520.273333pt;}
.y55{bottom:530.074933pt;}
.y30{bottom:530.075067pt;}
.yc{bottom:531.736133pt;}
.y7a{bottom:533.480800pt;}
.y111{bottom:536.877467pt;}
.y9f{bottom:537.976800pt;}
.yc4{bottom:539.201333pt;}
.yea{bottom:539.932133pt;}
.y2f{bottom:549.675067pt;}
.yb{bottom:551.464133pt;}
.y79{bottom:552.808800pt;}
.y110{bottom:553.544133pt;}
.y9e{bottom:557.048800pt;}
.yc3{bottom:558.129333pt;}
.ye9{bottom:559.932133pt;}
.y54{bottom:569.274933pt;}
.y2e{bottom:569.275067pt;}
.y10f{bottom:570.210800pt;}
.ya{bottom:571.192133pt;}
.y78{bottom:572.158133pt;}
.y9d{bottom:576.120800pt;}
.yc2{bottom:577.057333pt;}
.ye8{bottom:579.932133pt;}
.y10e{bottom:586.877467pt;}
.y53{bottom:588.874933pt;}
.y2d{bottom:588.875067pt;}
.y7{bottom:590.909467pt;}
.y9{bottom:590.920133pt;}
.y77{bottom:591.486133pt;}
.y9c{bottom:595.192800pt;}
.yc1{bottom:595.985333pt;}
.ye7{bottom:599.932133pt;}
.y52{bottom:608.474933pt;}
.y2c{bottom:608.475067pt;}
.y10d{bottom:609.218667pt;}
.y8{bottom:610.648133pt;}
.y76{bottom:610.814133pt;}
.y9b{bottom:614.264800pt;}
.ye6{bottom:619.932133pt;}
.y10c{bottom:623.885333pt;}
.y51{bottom:628.074933pt;}
.y2b{bottom:628.075067pt;}
.y75{bottom:630.142133pt;}
.y9a{bottom:633.310133pt;}
.yc0{bottom:633.857333pt;}
.ye5{bottom:639.932133pt;}
.y50{bottom:647.674933pt;}
.y2a{bottom:647.675067pt;}
.y74{bottom:649.480800pt;}
.y99{bottom:652.382133pt;}
.ybf{bottom:652.785333pt;}
.ye4{bottom:659.932133pt;}
.y10b{bottom:663.885333pt;}
.y4f{bottom:667.274933pt;}
.y29{bottom:667.275067pt;}
.y73{bottom:668.808800pt;}
.y6{bottom:669.007067pt;}
.y98{bottom:671.454133pt;}
.ybe{bottom:671.713333pt;}
.y10a{bottom:677.218667pt;}
.ye3{bottom:679.932133pt;}
.y4e{bottom:686.874933pt;}
.y72{bottom:688.179467pt;}
.y97{bottom:690.526133pt;}
.y109{bottom:690.552000pt;}
.ybd{bottom:690.641333pt;}
.ye2{bottom:699.932133pt;}
.y108{bottom:703.885333pt;}
.y5{bottom:705.794533pt;}
.y4d{bottom:706.474933pt;}
.y28{bottom:706.475067pt;}
.y71{bottom:707.507467pt;}
.ybc{bottom:709.569333pt;}
.y96{bottom:709.598133pt;}
.y107{bottom:717.218667pt;}
.ye1{bottom:719.932133pt;}
.y4{bottom:725.794533pt;}
.y4c{bottom:726.074933pt;}
.y27{bottom:726.075067pt;}
.y70{bottom:726.835467pt;}
.ybb{bottom:728.497333pt;}
.y95{bottom:728.638133pt;}
.y106{bottom:730.552000pt;}
.ye0{bottom:739.932133pt;}
.y105{bottom:743.885333pt;}
.y4b{bottom:745.674933pt;}
.y26{bottom:745.675067pt;}
.y6f{bottom:746.163467pt;}
.yba{bottom:747.425333pt;}
.y94{bottom:747.710133pt;}
.y104{bottom:757.218667pt;}
.ydf{bottom:759.932133pt;}
.y4a{bottom:765.274933pt;}
.y25{bottom:765.275067pt;}
.y6e{bottom:765.491467pt;}
.yb9{bottom:766.353333pt;}
.y93{bottom:766.782133pt;}
.y103{bottom:770.552000pt;}
.yde{bottom:779.932133pt;}
.y102{bottom:783.885333pt;}
.y6d{bottom:784.819467pt;}
.y49{bottom:784.874933pt;}
.y24{bottom:784.875067pt;}
.yb8{bottom:785.281333pt;}
.y3{bottom:785.479600pt;}
.y92{bottom:785.854133pt;}
.y101{bottom:797.218667pt;}
.ydd{bottom:799.932133pt;}
.y6c{bottom:804.147467pt;}
.yb7{bottom:804.209333pt;}
.y48{bottom:804.474933pt;}
.y23{bottom:804.475067pt;}
.y91{bottom:804.926133pt;}
.y100{bottom:810.552000pt;}
.y2{bottom:812.146267pt;}
.ydc{bottom:819.932133pt;}
.yb6{bottom:823.137333pt;}
.y6b{bottom:823.475467pt;}
.yff{bottom:823.885333pt;}
.y90{bottom:823.998133pt;}
.y47{bottom:824.074933pt;}
.y22{bottom:824.075067pt;}
.ydb{bottom:839.932133pt;}
.yb5{bottom:842.065333pt;}
.y6a{bottom:842.803467pt;}
.yfe{bottom:842.882667pt;}
.y8f{bottom:843.070133pt;}
.y46{bottom:843.674933pt;}
.y21{bottom:843.675067pt;}
.h7{height:21.894141pt;}
.ha{height:26.945443pt;}
.h11{height:34.730667pt;}
.h9{height:36.229167pt;}
.h10{height:42.656250pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h12{height:49.300521pt;}
.h5{height:54.343750pt;}
.hd{height:54.450417pt;}
.hc{height:54.471750pt;}
.hf{height:58.627292pt;}
.hb{height:58.989958pt;}
.h8{height:59.160625pt;}
.he{height:59.437958pt;}
.h3{height:90.572917pt;}
.h6{height:301.205594pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x6{left:78.897600pt;}
.x7{left:92.126000pt;}
.x2{left:100.000000pt;}
.x5{left:113.247333pt;}
.x4{left:137.743333pt;}
.x8{left:139.291867pt;}
.x3{left:288.976400pt;}
.x1{left:371.024933pt;}
}




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