
    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_f5367bada47ca0647c7c3824.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_94a953702c848d2d10d0c979.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_9c1777ea61b53ca4b0c9eb5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_3d3f7172ad9856bd0ab01ee8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d95f93fe97fc288f9d0f6897.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.148926;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_c8aaf78090a25b010c829a25.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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_2777176b9b840f9d07cf26d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-97.200000px;}
.vb{vertical-align:-20.880000px;}
.v5{vertical-align:-17.280000px;}
.vd{vertical-align:-15.120000px;}
.v14{vertical-align:-12.960000px;}
.v11{vertical-align:-10.800000px;}
.v8{vertical-align:-8.640000px;}
.v10{vertical-align:-6.480000px;}
.v9{vertical-align:-5.040000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.va{vertical-align:5.040000px;}
.v1{vertical-align:6.480000px;}
.v7{vertical-align:8.640000px;}
.vf{vertical-align:10.080000px;}
.v12{vertical-align:11.520000px;}
.v13{vertical-align:13.680000px;}
.ve{vertical-align:15.120000px;}
.v4{vertical-align:17.280000px;}
.vc{vertical-align:20.880000px;}
.ls27{letter-spacing:-21.780000px;}
.lsb{letter-spacing:-19.140000px;}
.lsa{letter-spacing:-17.280000px;}
.ls16{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.684000px;}
.ls7{letter-spacing:-0.414600px;}
.ls2e{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.180000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.341280px;}
.ls6{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1e{letter-spacing:2.489760px;}
.lsc{letter-spacing:4.140000px;}
.ls24{letter-spacing:4.882320px;}
.ls20{letter-spacing:4.969440px;}
.ls12{letter-spacing:5.369760px;}
.ls1{letter-spacing:5.580000px;}
.ls19{letter-spacing:7.526880px;}
.ls0{letter-spacing:7.740000px;}
.ls1f{letter-spacing:8.331120px;}
.ls1d{letter-spacing:8.336880px;}
.ls1b{letter-spacing:24.300000px;}
.ls2{letter-spacing:37.260000px;}
.ls29{letter-spacing:134.460000px;}
.ls25{letter-spacing:135.900000px;}
.ls23{letter-spacing:187.716000px;}
.ls22{letter-spacing:187.740000px;}
.ls1c{letter-spacing:191.484000px;}
.ls18{letter-spacing:225.900000px;}
.ls2d{letter-spacing:230.400000px;}
.ls14{letter-spacing:233.244000px;}
.ls28{letter-spacing:391.476000px;}
.ls2a{letter-spacing:650.160000px;}
.ls21{letter-spacing:721.380000px;}
.lsf{letter-spacing:773.280000px;}
.lse{letter-spacing:781.200000px;}
.ls2b{letter-spacing:1970.940000px;}
.ls2c{letter-spacing:2428.836000px;}
.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;}
}
.ws2{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.700000px;}
.wsa{word-spacing:-20.160000px;}
.ws5{word-spacing:-18.414720px;}
.ws6{word-spacing:-16.568640px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:135.026640px;}
.ws8{word-spacing:229.609440px;}
._48{margin-left:-1926.107520px;}
._47{margin-left:-1908.600000px;}
._45{margin-left:-1382.124240px;}
._93{margin-left:-1142.596080px;}
._72{margin-left:-1074.532080px;}
._8f{margin-left:-964.846080px;}
._9c{margin-left:-886.035120px;}
._94{margin-left:-880.895280px;}
._a2{margin-left:-812.520000px;}
._40{margin-left:-795.069120px;}
._9a{margin-left:-788.714880px;}
._41{margin-left:-786.600000px;}
._3e{margin-left:-776.249040px;}
._8c{margin-left:-770.760000px;}
._8e{margin-left:-755.862480px;}
._6c{margin-left:-744.695760px;}
._7b{margin-left:-725.603040px;}
._6e{margin-left:-723.960000px;}
._77{margin-left:-721.668000px;}
._9b{margin-left:-670.911600px;}
._74{margin-left:-647.640000px;}
._42{margin-left:-641.958480px;}
._7c{margin-left:-630.871200px;}
._a4{margin-left:-610.986240px;}
._25{margin-left:-605.943360px;}
._9e{margin-left:-565.789061px;}
._7a{margin-left:-525.364080px;}
._9d{margin-left:-436.051468px;}
._91{margin-left:-426.666240px;}
._79{margin-left:-337.140000px;}
._95{margin-left:-277.920000px;}
._a6{margin-left:-250.294560px;}
._99{margin-left:-249.243120px;}
._98{margin-left:-229.140000px;}
._4b{margin-left:-217.608240px;}
._a0{margin-left:-210.240000px;}
._88{margin-left:-203.512320px;}
._38{margin-left:-200.597760px;}
._37{margin-left:-199.440240px;}
._54{margin-left:-197.642160px;}
._4a{margin-left:-194.814720px;}
._85{margin-left:-186.480240px;}
._36{margin-left:-184.965120px;}
._4f{margin-left:-183.127680px;}
._4e{margin-left:-181.854720px;}
._53{margin-left:-179.313360px;}
._51{margin-left:-176.656320px;}
._2c{margin-left:-171.187200px;}
._65{margin-left:-169.200000px;}
._52{margin-left:-168.087600px;}
._35{margin-left:-166.457280px;}
._67{margin-left:-165.365520px;}
._83{margin-left:-163.438320px;}
._50{margin-left:-160.974720px;}
._27{margin-left:-158.814720px;}
._86{margin-left:-157.530480px;}
._5a{margin-left:-156.415680px;}
._2b{margin-left:-153.427680px;}
._96{margin-left:-152.328960px;}
._63{margin-left:-151.213920px;}
._68{margin-left:-149.492160px;}
._97{margin-left:-147.828000px;}
._31{margin-left:-146.160240px;}
._5e{margin-left:-144.851040px;}
._4c{margin-left:-143.280240px;}
._5f{margin-left:-141.105120px;}
._84{margin-left:-139.957440px;}
._59{margin-left:-137.934720px;}
._81{margin-left:-136.800000px;}
._5b{margin-left:-134.820240px;}
._30{margin-left:-132.229440px;}
._64{margin-left:-130.455360px;}
._32{margin-left:-128.082240px;}
._58{margin-left:-126.100800px;}
._4d{margin-left:-124.902720px;}
._60{margin-left:-122.849280px;}
._2d{margin-left:-121.680240px;}
._5d{margin-left:-119.459520px;}
._5c{margin-left:-118.080000px;}
._82{margin-left:-116.636160px;}
._2f{margin-left:-111.072960px;}
._61{margin-left:-108.912960px;}
._6a{margin-left:-105.813600px;}
._2e{margin-left:-104.567040px;}
._66{margin-left:-102.945120px;}
._39{margin-left:-101.520240px;}
._69{margin-left:-99.168480px;}
._2a{margin-left:-91.134720px;}
._57{margin-left:-89.905920px;}
._62{margin-left:-87.186480px;}
._33{margin-left:-86.094720px;}
._56{margin-left:-85.060560px;}
._29{margin-left:-83.436480px;}
._28{margin-left:-82.125360px;}
._89{margin-left:-75.571920px;}
._3a{margin-left:-72.095040px;}
._a3{margin-left:-69.939120px;}
._90{margin-left:-68.933760px;}
._8a{margin-left:-63.856800px;}
._80{margin-left:-48.805680px;}
._a1{margin-left:-43.767600px;}
._8b{margin-left:-42.711120px;}
._3b{margin-left:-29.509440px;}
._26{margin-left:-21.818160px;}
._55{margin-left:-19.928400px;}
._34{margin-left:-17.288640px;}
._43{margin-left:-14.346480px;}
._44{margin-left:-12.273840px;}
._71{margin-left:-11.222400px;}
._3f{margin-left:-9.638640px;}
._49{margin-left:-8.524080px;}
._24{margin-left:-7.200000px;}
._b{margin-left:-6.120000px;}
._a{margin-left:-4.970160px;}
._1c{margin-left:-3.736080px;}
._1d{margin-left:-2.527200px;}
._0{margin-left:-1.432080px;}
._1{width:1.389360px;}
._9{width:3.372000px;}
._2{width:4.801680px;}
._3{width:6.065280px;}
._6{width:7.834320px;}
._16{width:8.985840px;}
._e{width:10.193040px;}
._1b{width:11.203920px;}
._1a{width:12.214800px;}
._10{width:13.899600px;}
._11{width:14.994720px;}
._d{width:16.412160px;}
._21{width:17.623200px;}
._14{width:18.701280px;}
._15{width:19.796400px;}
._3d{width:22.407840px;}
._6b{width:23.671440px;}
._4{width:24.682320px;}
._5{width:25.693200px;}
._1e{width:26.831040px;}
._c{width:27.883440px;}
._13{width:28.978560px;}
._19{width:30.326400px;}
._f{width:33.274800px;}
._8{width:35.128080px;}
._7{width:36.728640px;}
._1f{width:37.992240px;}
._20{width:39.003120px;}
._23{width:41.193360px;}
._22{width:42.204240px;}
._3c{width:44.226000px;}
._12{width:46.332000px;}
._17{width:57.620160px;}
._18{width:58.673760px;}
._6f{width:105.721200px;}
._70{width:107.069040px;}
._75{width:115.830000px;}
._76{width:117.093600px;}
._7d{width:137.991600px;}
._7e{width:139.498080px;}
._7f{width:187.815360px;}
._87{width:263.684400px;}
._a7{width:843.240000px;}
._78{width:895.680000px;}
._6d{width:918.720000px;}
._8d{width:924.488400px;}
._73{width:1249.320000px;}
._46{width:1921.200000px;}
._9f{width:1943.258640px;}
._92{width:2093.230800px;}
._a5{width:2173.996080px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y72{bottom:89.676000px;}
.y71{bottom:97.236000px;}
.y2e{bottom:98.856000px;}
.y5a{bottom:101.736000px;}
.y59{bottom:109.296000px;}
.y70{bottom:113.976000px;}
.y6f{bottom:121.536000px;}
.y2d{bottom:123.156000px;}
.y58{bottom:125.856000px;}
.y6e{bottom:138.096000px;}
.y6d{bottom:145.656000px;}
.y2c{bottom:147.276000px;}
.y57{bottom:159.150000px;}
.y6c{bottom:162.210000px;}
.y6b{bottom:169.770000px;}
.y2b{bottom:171.390000px;}
.y56{bottom:183.270000px;}
.y6a{bottom:186.330000px;}
.y69{bottom:193.890000px;}
.y2a{bottom:195.510000px;}
.y54{bottom:207.390000px;}
.y68{bottom:210.450000px;}
.y55{bottom:214.950000px;}
.y67{bottom:218.010000px;}
.y29{bottom:219.630000px;}
.y53{bottom:229.890000px;}
.y52{bottom:231.510000px;}
.y66{bottom:234.570000px;}
.y65{bottom:242.130000px;}
.y28{bottom:243.750000px;}
.y51{bottom:255.630000px;}
.y64{bottom:258.870000px;}
.y27{bottom:267.870000px;}
.y50{bottom:279.795000px;}
.y26{bottom:292.215000px;}
.y4f{bottom:303.915000px;}
.y25{bottom:316.335000px;}
.y4e{bottom:328.215000px;}
.y24{bottom:340.455000px;}
.y4d{bottom:352.335000px;}
.y63{bottom:359.895000px;}
.y4c{bottom:376.455000px;}
.y23{bottom:376.635000px;}
.y4b{bottom:400.575000px;}
.y22{bottom:400.755000px;}
.y4a{bottom:424.695000px;}
.y21{bottom:424.875000px;}
.y49{bottom:448.815000px;}
.y20{bottom:448.995000px;}
.y1f{bottom:473.115000px;}
.y77{bottom:480.675000px;}
.y48{bottom:497.235000px;}
.y1e{bottom:497.415000px;}
.y47{bottom:521.355000px;}
.y1d{bottom:521.535000px;}
.y62{bottom:528.915000px;}
.y46{bottom:545.475000px;}
.y1c{bottom:545.655000px;}
.y76{bottom:553.035000px;}
.y45{bottom:569.625000px;}
.y1b{bottom:569.805000px;}
.y44{bottom:593.745000px;}
.y1a{bottom:605.985000px;}
.y43{bottom:618.045000px;}
.y19{bottom:630.105000px;}
.y61{bottom:636.945000px;}
.y42{bottom:642.165000px;}
.y60{bottom:649.725000px;}
.y18{bottom:654.225000px;}
.y5f{bottom:661.065000px;}
.y41{bottom:666.285000px;}
.y17{bottom:678.345000px;}
.y40{bottom:690.405000px;}
.y75{bottom:697.965000px;}
.y16{bottom:702.465000px;}
.y3f{bottom:714.525000px;}
.y15{bottom:726.765000px;}
.y3e{bottom:738.645000px;}
.y14{bottom:750.885000px;}
.y3d{bottom:762.765000px;}
.y13{bottom:775.005000px;}
.y3c{bottom:787.065000px;}
.y12{bottom:799.125000px;}
.y3b{bottom:811.185000px;}
.y11{bottom:823.245000px;}
.y3a{bottom:835.305000px;}
.y10{bottom:847.410000px;}
.y39{bottom:859.470000px;}
.y74{bottom:867.030000px;}
.yf{bottom:871.710000px;}
.y38{bottom:883.590000px;}
.y5e{bottom:891.150000px;}
.ye{bottom:895.830000px;}
.y37{bottom:907.710000px;}
.yd{bottom:919.950000px;}
.y36{bottom:932.010000px;}
.yc{bottom:944.070000px;}
.y35{bottom:956.130000px;}
.y5d{bottom:963.690000px;}
.yb{bottom:968.190000px;}
.y34{bottom:980.250000px;}
.ya{bottom:992.310000px;}
.y33{bottom:1004.370000px;}
.y9{bottom:1016.430000px;}
.y32{bottom:1028.490000px;}
.y73{bottom:1036.050000px;}
.y8{bottom:1040.730000px;}
.y31{bottom:1052.610000px;}
.y5c{bottom:1060.170000px;}
.y7{bottom:1064.850000px;}
.y30{bottom:1076.730000px;}
.y6{bottom:1088.970000px;}
.y2f{bottom:1101.030000px;}
.y78{bottom:1108.590000px;}
.y5{bottom:1125.180000px;}
.y5b{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h9{height:52.998047px;}
.ha{height:65.010937px;}
.h3{height:74.820586px;}
.h6{height:75.519844px;}
.h7{height:78.604805px;}
.h5{height:82.635820px;}
.h2{height:82.676953px;}
.h13{height:82.855911px;}
.hd{height:83.644805px;}
.h4{height:84.898125px;}
.h12{height:87.964805px;}
.he{height:88.684805px;}
.h11{height:91.564805px;}
.h10{height:92.284805px;}
.hf{height:93.724805px;}
.hc{height:99.484805px;}
.h8{height:102.364805px;}
.hb{height:103.556953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:80.099987px;}
.x1{left:85.319987px;}
.x4{left:97.739987px;}
.x26{left:98.999987px;}
.x6{left:112.355987px;}
.x37{left:118.835987px;}
.xe{left:139.355987px;}
.x1e{left:149.075987px;}
.x7{left:154.829987px;}
.x30{left:156.449973px;}
.x5{left:163.469987px;}
.x31{left:170.129987px;}
.x35{left:204.689987px;}
.x34{left:232.769987px;}
.xa{left:234.749987px;}
.x3b{left:250.589987px;}
.x36{left:275.789987px;}
.x3a{left:278.489987px;}
.x14{left:301.394987px;}
.xc{left:305.354987px;}
.x9{left:306.794987px;}
.x1a{left:332.714973px;}
.x1b{left:346.394987px;}
.xb{left:355.214987px;}
.x8{left:378.074987px;}
.x39{left:416.954987px;}
.x32{left:419.834987px;}
.x18{left:429.374973px;}
.x2{left:430.814987px;}
.x19{left:443.054987px;}
.x3{left:446.474987px;}
.xd{left:473.474987px;}
.x1d{left:486.794987px;}
.x1c{left:496.514973px;}
.x27{left:498.884987px;}
.x23{left:545.324987px;}
.x13{left:555.224987px;}
.x12{left:564.944973px;}
.x22{left:568.724987px;}
.x2f{left:572.684987px;}
.x24{left:576.464973px;}
.x11{left:578.624987px;}
.x2e{left:582.404973px;}
.x2b{left:587.264987px;}
.x25{left:590.144987px;}
.x28{left:594.644987px;}
.x21{left:603.104987px;}
.xf{left:612.104987px;}
.x10{left:613.724987px;}
.x2a{left:622.724987px;}
.x38{left:628.484987px;}
.x29{left:632.444973px;}
.x2d{left:647.924987px;}
.x1f{left:653.504973px;}
.x2c{left:657.644973px;}
.x20{left:667.184987px;}
.x16{left:789.629987px;}
.x15{left:794.309973px;}
.x17{left:802.769987px;}
@media print{
.v6{vertical-align:-86.400000pt;}
.vb{vertical-align:-18.560000pt;}
.v5{vertical-align:-15.360000pt;}
.vd{vertical-align:-13.440000pt;}
.v14{vertical-align:-11.520000pt;}
.v11{vertical-align:-9.600000pt;}
.v8{vertical-align:-7.680000pt;}
.v10{vertical-align:-5.760000pt;}
.v9{vertical-align:-4.480000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.va{vertical-align:4.480000pt;}
.v1{vertical-align:5.760000pt;}
.v7{vertical-align:7.680000pt;}
.vf{vertical-align:8.960000pt;}
.v12{vertical-align:10.240000pt;}
.v13{vertical-align:12.160000pt;}
.ve{vertical-align:13.440000pt;}
.v4{vertical-align:15.360000pt;}
.vc{vertical-align:18.560000pt;}
.ls27{letter-spacing:-19.360000pt;}
.lsb{letter-spacing:-17.013333pt;}
.lsa{letter-spacing:-15.360000pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.608000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.303360pt;}
.ls6{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:2.213120pt;}
.lsc{letter-spacing:3.680000pt;}
.ls24{letter-spacing:4.339840pt;}
.ls20{letter-spacing:4.417280pt;}
.ls12{letter-spacing:4.773120pt;}
.ls1{letter-spacing:4.960000pt;}
.ls19{letter-spacing:6.690560pt;}
.ls0{letter-spacing:6.880000pt;}
.ls1f{letter-spacing:7.405440pt;}
.ls1d{letter-spacing:7.410560pt;}
.ls1b{letter-spacing:21.600000pt;}
.ls2{letter-spacing:33.120000pt;}
.ls29{letter-spacing:119.520000pt;}
.ls25{letter-spacing:120.800000pt;}
.ls23{letter-spacing:166.858667pt;}
.ls22{letter-spacing:166.880000pt;}
.ls1c{letter-spacing:170.208000pt;}
.ls18{letter-spacing:200.800000pt;}
.ls2d{letter-spacing:204.800000pt;}
.ls14{letter-spacing:207.328000pt;}
.ls28{letter-spacing:347.978667pt;}
.ls2a{letter-spacing:577.920000pt;}
.ls21{letter-spacing:641.226667pt;}
.lsf{letter-spacing:687.360000pt;}
.lse{letter-spacing:694.400000pt;}
.ls2b{letter-spacing:1751.946667pt;}
.ls2c{letter-spacing:2158.965333pt;}
.ws2{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.400000pt;}
.wsa{word-spacing:-17.920000pt;}
.ws5{word-spacing:-16.368640pt;}
.ws6{word-spacing:-14.727680pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:120.023680pt;}
.ws8{word-spacing:204.097280pt;}
._48{margin-left:-1712.095573pt;}
._47{margin-left:-1696.533333pt;}
._45{margin-left:-1228.554880pt;}
._93{margin-left:-1015.640960pt;}
._72{margin-left:-955.139627pt;}
._8f{margin-left:-857.640960pt;}
._9c{margin-left:-787.586773pt;}
._94{margin-left:-783.018027pt;}
._a2{margin-left:-722.240000pt;}
._40{margin-left:-706.728107pt;}
._9a{margin-left:-701.079893pt;}
._41{margin-left:-699.200000pt;}
._3e{margin-left:-689.999147pt;}
._8c{margin-left:-685.120000pt;}
._8e{margin-left:-671.877760pt;}
._6c{margin-left:-661.951787pt;}
._7b{margin-left:-644.980480pt;}
._6e{margin-left:-643.520000pt;}
._77{margin-left:-641.482667pt;}
._9b{margin-left:-596.365867pt;}
._74{margin-left:-575.680000pt;}
._42{margin-left:-570.629760pt;}
._7c{margin-left:-560.774400pt;}
._a4{margin-left:-543.098880pt;}
._25{margin-left:-538.616320pt;}
._9e{margin-left:-502.923610pt;}
._7a{margin-left:-466.990293pt;}
._9d{margin-left:-387.601305pt;}
._91{margin-left:-379.258880pt;}
._79{margin-left:-299.680000pt;}
._95{margin-left:-247.040000pt;}
._a6{margin-left:-222.484053pt;}
._99{margin-left:-221.549440pt;}
._98{margin-left:-203.680000pt;}
._4b{margin-left:-193.429547pt;}
._a0{margin-left:-186.880000pt;}
._88{margin-left:-180.899840pt;}
._38{margin-left:-178.309120pt;}
._37{margin-left:-177.280213pt;}
._54{margin-left:-175.681920pt;}
._4a{margin-left:-173.168640pt;}
._85{margin-left:-165.760213pt;}
._36{margin-left:-164.413440pt;}
._4f{margin-left:-162.780160pt;}
._4e{margin-left:-161.648640pt;}
._53{margin-left:-159.389653pt;}
._51{margin-left:-157.027840pt;}
._2c{margin-left:-152.166400pt;}
._65{margin-left:-150.400000pt;}
._52{margin-left:-149.411200pt;}
._35{margin-left:-147.962027pt;}
._67{margin-left:-146.991573pt;}
._83{margin-left:-145.278507pt;}
._50{margin-left:-143.088640pt;}
._27{margin-left:-141.168640pt;}
._86{margin-left:-140.027093pt;}
._5a{margin-left:-139.036160pt;}
._2b{margin-left:-136.380160pt;}
._96{margin-left:-135.403520pt;}
._63{margin-left:-134.412373pt;}
._68{margin-left:-132.881920pt;}
._97{margin-left:-131.402667pt;}
._31{margin-left:-129.920213pt;}
._5e{margin-left:-128.756480pt;}
._4c{margin-left:-127.360213pt;}
._5f{margin-left:-125.426773pt;}
._84{margin-left:-124.406613pt;}
._59{margin-left:-122.608640pt;}
._81{margin-left:-121.600000pt;}
._5b{margin-left:-119.840213pt;}
._30{margin-left:-117.537280pt;}
._64{margin-left:-115.960320pt;}
._32{margin-left:-113.850880pt;}
._58{margin-left:-112.089600pt;}
._4d{margin-left:-111.024640pt;}
._60{margin-left:-109.199360pt;}
._2d{margin-left:-108.160213pt;}
._5d{margin-left:-106.186240pt;}
._5c{margin-left:-104.960000pt;}
._82{margin-left:-103.676587pt;}
._2f{margin-left:-98.731520pt;}
._61{margin-left:-96.811520pt;}
._6a{margin-left:-94.056533pt;}
._2e{margin-left:-92.948480pt;}
._66{margin-left:-91.506773pt;}
._39{margin-left:-90.240213pt;}
._69{margin-left:-88.149760pt;}
._2a{margin-left:-81.008640pt;}
._57{margin-left:-79.916373pt;}
._62{margin-left:-77.499093pt;}
._33{margin-left:-76.528640pt;}
._56{margin-left:-75.609387pt;}
._29{margin-left:-74.165760pt;}
._28{margin-left:-73.000320pt;}
._89{margin-left:-67.175040pt;}
._3a{margin-left:-64.084480pt;}
._a3{margin-left:-62.168107pt;}
._90{margin-left:-61.274453pt;}
._8a{margin-left:-56.761600pt;}
._80{margin-left:-43.382827pt;}
._a1{margin-left:-38.904533pt;}
._8b{margin-left:-37.965440pt;}
._3b{margin-left:-26.230613pt;}
._26{margin-left:-19.393920pt;}
._55{margin-left:-17.714133pt;}
._34{margin-left:-15.367680pt;}
._43{margin-left:-12.752427pt;}
._44{margin-left:-10.910080pt;}
._71{margin-left:-9.975467pt;}
._3f{margin-left:-8.567680pt;}
._49{margin-left:-7.576960pt;}
._24{margin-left:-6.400000pt;}
._b{margin-left:-5.440000pt;}
._a{margin-left:-4.417920pt;}
._1c{margin-left:-3.320960pt;}
._1d{margin-left:-2.246400pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.234987pt;}
._9{width:2.997333pt;}
._2{width:4.268160pt;}
._3{width:5.391360pt;}
._6{width:6.963840pt;}
._16{width:7.987413pt;}
._e{width:9.060480pt;}
._1b{width:9.959040pt;}
._1a{width:10.857600pt;}
._10{width:12.355200pt;}
._11{width:13.328640pt;}
._d{width:14.588587pt;}
._21{width:15.665067pt;}
._14{width:16.623360pt;}
._15{width:17.596800pt;}
._3d{width:19.918080pt;}
._6b{width:21.041280pt;}
._4{width:21.939840pt;}
._5{width:22.838400pt;}
._1e{width:23.849813pt;}
._c{width:24.785280pt;}
._13{width:25.758720pt;}
._19{width:26.956800pt;}
._f{width:29.577600pt;}
._8{width:31.224960pt;}
._7{width:32.647680pt;}
._1f{width:33.770880pt;}
._20{width:34.669440pt;}
._23{width:36.616320pt;}
._22{width:37.514880pt;}
._3c{width:39.312000pt;}
._12{width:41.184000pt;}
._17{width:51.217920pt;}
._18{width:52.154453pt;}
._6f{width:93.974400pt;}
._70{width:95.172480pt;}
._75{width:102.960000pt;}
._76{width:104.083200pt;}
._7d{width:122.659200pt;}
._7e{width:123.998293pt;}
._7f{width:166.946987pt;}
._87{width:234.386133pt;}
._a7{width:749.546667pt;}
._78{width:796.160000pt;}
._6d{width:816.640000pt;}
._8d{width:821.767467pt;}
._73{width:1110.506667pt;}
._46{width:1707.733333pt;}
._9f{width:1727.341013pt;}
._92{width:1860.649600pt;}
._a5{width:1932.440960pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y72{bottom:79.712000pt;}
.y71{bottom:86.432000pt;}
.y2e{bottom:87.872000pt;}
.y5a{bottom:90.432000pt;}
.y59{bottom:97.152000pt;}
.y70{bottom:101.312000pt;}
.y6f{bottom:108.032000pt;}
.y2d{bottom:109.472000pt;}
.y58{bottom:111.872000pt;}
.y6e{bottom:122.752000pt;}
.y6d{bottom:129.472000pt;}
.y2c{bottom:130.912000pt;}
.y57{bottom:141.466667pt;}
.y6c{bottom:144.186667pt;}
.y6b{bottom:150.906667pt;}
.y2b{bottom:152.346667pt;}
.y56{bottom:162.906667pt;}
.y6a{bottom:165.626667pt;}
.y69{bottom:172.346667pt;}
.y2a{bottom:173.786667pt;}
.y54{bottom:184.346667pt;}
.y68{bottom:187.066667pt;}
.y55{bottom:191.066667pt;}
.y67{bottom:193.786667pt;}
.y29{bottom:195.226667pt;}
.y53{bottom:204.346667pt;}
.y52{bottom:205.786667pt;}
.y66{bottom:208.506667pt;}
.y65{bottom:215.226667pt;}
.y28{bottom:216.666667pt;}
.y51{bottom:227.226667pt;}
.y64{bottom:230.106667pt;}
.y27{bottom:238.106667pt;}
.y50{bottom:248.706667pt;}
.y26{bottom:259.746667pt;}
.y4f{bottom:270.146667pt;}
.y25{bottom:281.186667pt;}
.y4e{bottom:291.746667pt;}
.y24{bottom:302.626667pt;}
.y4d{bottom:313.186667pt;}
.y63{bottom:319.906667pt;}
.y4c{bottom:334.626667pt;}
.y23{bottom:334.786667pt;}
.y4b{bottom:356.066667pt;}
.y22{bottom:356.226667pt;}
.y4a{bottom:377.506667pt;}
.y21{bottom:377.666667pt;}
.y49{bottom:398.946667pt;}
.y20{bottom:399.106667pt;}
.y1f{bottom:420.546667pt;}
.y77{bottom:427.266667pt;}
.y48{bottom:441.986667pt;}
.y1e{bottom:442.146667pt;}
.y47{bottom:463.426667pt;}
.y1d{bottom:463.586667pt;}
.y62{bottom:470.146667pt;}
.y46{bottom:484.866667pt;}
.y1c{bottom:485.026667pt;}
.y76{bottom:491.586667pt;}
.y45{bottom:506.333333pt;}
.y1b{bottom:506.493333pt;}
.y44{bottom:527.773333pt;}
.y1a{bottom:538.653333pt;}
.y43{bottom:549.373333pt;}
.y19{bottom:560.093333pt;}
.y61{bottom:566.173333pt;}
.y42{bottom:570.813333pt;}
.y60{bottom:577.533333pt;}
.y18{bottom:581.533333pt;}
.y5f{bottom:587.613333pt;}
.y41{bottom:592.253333pt;}
.y17{bottom:602.973333pt;}
.y40{bottom:613.693333pt;}
.y75{bottom:620.413333pt;}
.y16{bottom:624.413333pt;}
.y3f{bottom:635.133333pt;}
.y15{bottom:646.013333pt;}
.y3e{bottom:656.573333pt;}
.y14{bottom:667.453333pt;}
.y3d{bottom:678.013333pt;}
.y13{bottom:688.893333pt;}
.y3c{bottom:699.613333pt;}
.y12{bottom:710.333333pt;}
.y3b{bottom:721.053333pt;}
.y11{bottom:731.773333pt;}
.y3a{bottom:742.493333pt;}
.y10{bottom:753.253333pt;}
.y39{bottom:763.973333pt;}
.y74{bottom:770.693333pt;}
.yf{bottom:774.853333pt;}
.y38{bottom:785.413333pt;}
.y5e{bottom:792.133333pt;}
.ye{bottom:796.293333pt;}
.y37{bottom:806.853333pt;}
.yd{bottom:817.733333pt;}
.y36{bottom:828.453333pt;}
.yc{bottom:839.173333pt;}
.y35{bottom:849.893333pt;}
.y5d{bottom:856.613333pt;}
.yb{bottom:860.613333pt;}
.y34{bottom:871.333333pt;}
.ya{bottom:882.053333pt;}
.y33{bottom:892.773333pt;}
.y9{bottom:903.493333pt;}
.y32{bottom:914.213333pt;}
.y73{bottom:920.933333pt;}
.y8{bottom:925.093333pt;}
.y31{bottom:935.653333pt;}
.y5c{bottom:942.373333pt;}
.y7{bottom:946.533333pt;}
.y30{bottom:957.093333pt;}
.y6{bottom:967.973333pt;}
.y2f{bottom:978.693333pt;}
.y78{bottom:985.413333pt;}
.y5{bottom:1000.160000pt;}
.y5b{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:47.109375pt;}
.ha{height:57.787500pt;}
.h3{height:66.507188pt;}
.h6{height:67.128750pt;}
.h7{height:69.870937pt;}
.h5{height:73.454062pt;}
.h2{height:73.490625pt;}
.h13{height:73.649698pt;}
.hd{height:74.350937pt;}
.h4{height:75.465000pt;}
.h12{height:78.190937pt;}
.he{height:78.830937pt;}
.h11{height:81.390938pt;}
.h10{height:82.030938pt;}
.hf{height:83.310937pt;}
.hc{height:88.430938pt;}
.h8{height:90.990937pt;}
.hb{height:92.050625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:71.199988pt;}
.x1{left:75.839988pt;}
.x4{left:86.879988pt;}
.x26{left:87.999988pt;}
.x6{left:99.871988pt;}
.x37{left:105.631988pt;}
.xe{left:123.871988pt;}
.x1e{left:132.511988pt;}
.x7{left:137.626655pt;}
.x30{left:139.066643pt;}
.x5{left:145.306655pt;}
.x31{left:151.226655pt;}
.x35{left:181.946655pt;}
.x34{left:206.906655pt;}
.xa{left:208.666655pt;}
.x3b{left:222.746655pt;}
.x36{left:245.146655pt;}
.x3a{left:247.546655pt;}
.x14{left:267.906655pt;}
.xc{left:271.426655pt;}
.x9{left:272.706655pt;}
.x1a{left:295.746643pt;}
.x1b{left:307.906655pt;}
.xb{left:315.746655pt;}
.x8{left:336.066655pt;}
.x39{left:370.626655pt;}
.x32{left:373.186655pt;}
.x18{left:381.666643pt;}
.x2{left:382.946655pt;}
.x19{left:393.826655pt;}
.x3{left:396.866655pt;}
.xd{left:420.866655pt;}
.x1d{left:432.706655pt;}
.x1c{left:441.346643pt;}
.x27{left:443.453322pt;}
.x23{left:484.733322pt;}
.x13{left:493.533322pt;}
.x12{left:502.173310pt;}
.x22{left:505.533322pt;}
.x2f{left:509.053322pt;}
.x24{left:512.413310pt;}
.x11{left:514.333322pt;}
.x2e{left:517.693310pt;}
.x2b{left:522.013322pt;}
.x25{left:524.573322pt;}
.x28{left:528.573322pt;}
.x21{left:536.093322pt;}
.xf{left:544.093322pt;}
.x10{left:545.533322pt;}
.x2a{left:553.533322pt;}
.x38{left:558.653322pt;}
.x29{left:562.173310pt;}
.x2d{left:575.933322pt;}
.x1f{left:580.893310pt;}
.x2c{left:584.573310pt;}
.x20{left:593.053322pt;}
.x16{left:701.893322pt;}
.x15{left:706.053310pt;}
.x17{left:713.573322pt;}
}




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