
    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_2260e01e68d4207f0c6eff08.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4cfe1c16ffd741aec85fab52.woff')format("woff");}.ff2{font-family:ff2;line-height:0.927000;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_53293e3a36b5b165178e9ee1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_87a786b860236b61e886c1ec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_896dffecba134dfa19d0b571.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_d7b969e3b062bfc068a1a73f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_f1dde86589beb21ecb951d9f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.941406;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_4e70324b5f0199abca609b06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.055000;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_5dfa7455532ef9e364063386.woff')format("woff");}.ff9{font-family:ff9;line-height:1.048500;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_888b071c5fa7d5132f378cbd.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_bb2a7cee1021a61bc8f9a2f5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_95fa5fce282db73bf0b2f11e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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:ffd;src:url('chunks/assets/font_c03362d5faa44193541a4b50.woff')format("woff");}.ffd{font-family:ffd;line-height:0.706543;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.000000,-0.250002,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250002,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,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);}
.m3{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);}
.vd{vertical-align:-69.074727px;}
.v2{vertical-align:-56.160000px;}
.v8{vertical-align:-46.800000px;}
.v3{vertical-align:-38.160000px;}
.v5{vertical-align:-35.400000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.020000px;}
.vb{vertical-align:8.640000px;}
.va{vertical-align:42.060000px;}
.v6{vertical-align:43.200000px;}
.v4{vertical-align:46.800000px;}
.v1{vertical-align:56.160000px;}
.vc{vertical-align:69.074727px;}
.v7{vertical-align:100.200000px;}
.ls19{letter-spacing:-2.742000px;}
.ls1e{letter-spacing:-1.470000px;}
.ls18{letter-spacing:-1.248000px;}
.ls24{letter-spacing:-0.852000px;}
.ls2d{letter-spacing:-0.678000px;}
.ls23{letter-spacing:-0.654000px;}
.ls29{letter-spacing:-0.500400px;}
.ls25{letter-spacing:-0.489000px;}
.ls38{letter-spacing:-0.341302px;}
.ls33{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.322800px;}
.ls30{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.274800px;}
.ls20{letter-spacing:-0.258600px;}
.ls26{letter-spacing:-0.215400px;}
.ls35{letter-spacing:-0.160800px;}
.ls2a{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.130800px;}
.ls31{letter-spacing:-0.112200px;}
.ls1c{letter-spacing:-0.067800px;}
.ls2f{letter-spacing:-0.063600px;}
.ls32{letter-spacing:-0.036000px;}
.ls28{letter-spacing:-0.025920px;}
.ls37{letter-spacing:-0.017702px;}
.ls34{letter-spacing:-0.013680px;}
.ls2e{letter-spacing:-0.005748px;}
.ls17{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.041040px;}
.ls21{letter-spacing:0.052560px;}
.lsb{letter-spacing:0.064800px;}
.lsc{letter-spacing:0.064944px;}
.ls12{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.121680px;}
.lsd{letter-spacing:0.144000px;}
.ls36{letter-spacing:0.179400px;}
.ls1a{letter-spacing:0.198600px;}
.ls22{letter-spacing:0.219600px;}
.ls1d{letter-spacing:0.231000px;}
.ls2b{letter-spacing:0.256800px;}
.ls0{letter-spacing:0.264960px;}
.lse{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.468000px;}
.ls1{letter-spacing:1.638720px;}
.ls3{letter-spacing:2.633760px;}
.lsa{letter-spacing:7.889760px;}
.ls27{letter-spacing:19.380000px;}
.ls7{letter-spacing:19.409760px;}
.ls6{letter-spacing:28.769760px;}
.ls10{letter-spacing:32.112000px;}
.ls2{letter-spacing:45.084960px;}
.ls14{letter-spacing:80.676000px;}
.ls15{letter-spacing:161.277600px;}
.ls9{letter-spacing:161.304000px;}
.ls8{letter-spacing:161.316000px;}
.ls16{letter-spacing:161.328000px;}
.ls4{letter-spacing:161.496000px;}
.lsf{letter-spacing:1284.612000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,182,18),0 0.015em rgb(255,182,18),0.015em 0 rgb(255,182,18),0 -0.015em  rgb(255,182,18);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,182,18);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-185.760000px;}
.ws2e{word-spacing:-156.384000px;}
.ws28{word-spacing:-156.240000px;}
.ws2{word-spacing:-83.193600px;}
.ws3{word-spacing:-81.699600px;}
.ws1{word-spacing:-69.004800px;}
.ws12{word-spacing:-68.978880px;}
.ws13{word-spacing:-63.360000px;}
.ws0{word-spacing:-48.816000px;}
.ws6{word-spacing:-43.446240px;}
.ws18{word-spacing:-35.567040px;}
.ws7{word-spacing:-35.541240px;}
.wsc{word-spacing:-35.529840px;}
.ws14{word-spacing:-35.375040px;}
.wsb{word-spacing:-35.362800px;}
.ws8{word-spacing:-35.351280px;}
.wsf{word-spacing:-35.310240px;}
.ws1a{word-spacing:-35.179440px;}
.ws11{word-spacing:-35.094840px;}
.wsa{word-spacing:-35.051640px;}
.ws9{word-spacing:-35.035440px;}
.ws1e{word-spacing:-34.963392px;}
.ws10{word-spacing:-34.821240px;}
.ws15{word-spacing:-34.809840px;}
.wsd{word-spacing:-34.656240px;}
.ws1b{word-spacing:-34.632240px;}
.wse{word-spacing:-34.458240px;}
.ws4{word-spacing:-34.427520px;}
.ws24{word-spacing:-32.688000px;}
.ws25{word-spacing:-32.544000px;}
.ws22{word-spacing:-32.256000px;}
.ws26{word-spacing:-25.194240px;}
.ws21{word-spacing:-24.514560px;}
.ws17{word-spacing:-23.431680px;}
.ws1d{word-spacing:-23.269680px;}
.ws31{word-spacing:-18.255059px;}
.ws32{word-spacing:-13.122000px;}
.ws16{word-spacing:-0.473280px;}
.ws33{word-spacing:0.000000px;}
.ws23{word-spacing:1.152000px;}
.ws19{word-spacing:7.912080px;}
.ws30{word-spacing:244.974528px;}
.ws1f{word-spacing:553.173408px;}
.ws2a{word-spacing:678.892320px;}
.ws2b{word-spacing:698.332320px;}
.ws27{word-spacing:742.001760px;}
.ws2c{word-spacing:743.692320px;}
.ws29{word-spacing:762.412320px;}
.ws1c{word-spacing:996.182016px;}
.ws20{word-spacing:1144.932000px;}
.ws2d{word-spacing:2820.276000px;}
.ws2f{word-spacing:2829.552000px;}
._a{margin-left:-16.959360px;}
._b{margin-left:-14.107440px;}
._9{margin-left:-13.070640px;}
._6{margin-left:-7.336560px;}
._2{margin-left:-4.788960px;}
._4{margin-left:-3.457920px;}
._1{margin-left:-2.347440px;}
._5{margin-left:-1.197840px;}
._0{width:1.259280px;}
._7{width:2.325360px;}
._8{width:3.615360px;}
._1c{width:5.681280px;}
._17{width:6.986880px;}
._15{width:8.093760px;}
._16{width:9.499680px;}
._1a{width:15.435840px;}
._1b{width:16.802160px;}
._10{width:19.072800px;}
._11{width:20.111880px;}
._12{width:27.733680px;}
._d{width:28.954080px;}
._e{width:29.968800px;}
._24{width:31.029840px;}
._c{width:36.913200px;}
._13{width:44.645760px;}
._3{width:80.893680px;}
._14{width:99.687360px;}
._18{width:101.847360px;}
._19{width:103.173360px;}
._f{width:209.460720px;}
._25{width:269.926047px;}
._20{width:605.409840px;}
._1d{width:647.889840px;}
._1e{width:734.136864px;}
._21{width:810.619440px;}
._1f{width:892.512000px;}
._23{width:1010.880000px;}
._22{width:1050.324000px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,182,18);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(60,60,60);}
.fs18{font-size:54.000000px;}
.fs7{font-size:72.000000px;}
.fs16{font-size:74.385444px;}
.fs14{font-size:90.316765px;}
.fsf{font-size:95.760000px;}
.fsd{font-size:103.680000px;}
.fs12{font-size:104.125460px;}
.fs17{font-size:105.187603px;}
.fsc{font-size:108.000000px;}
.fs4{font-size:123.840000px;}
.fs15{font-size:125.403733px;}
.fs13{font-size:127.526847px;}
.fs10{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fsb{font-size:149.760000px;}
.fs6{font-size:156.240000px;}
.fs11{font-size:156.384000px;}
.fs3{font-size:185.760000px;}
.fs5{font-size:192.240000px;}
.fs0{font-size:216.000000px;}
.fs8{font-size:239.760000px;}
.fsa{font-size:395.280000px;}
.fs9{font-size:396.000000px;}
.fs1{font-size:431.280000px;}
.fs2{font-size:527.760000px;}
.y0{bottom:0.000000px;}
.y79{bottom:7.166990px;}
.y49{bottom:53.100000px;}
.y76{bottom:62.425709px;}
.y48{bottom:96.300000px;}
.y47{bottom:139.500000px;}
.y46{bottom:142.305000px;}
.y77{bottom:188.873883px;}
.y18{bottom:226.050000px;}
.y78{bottom:313.463306px;}
.y28{bottom:343.950000px;}
.y26{bottom:346.320000px;}
.y4e{bottom:369.570000px;}
.y27{bottom:390.750000px;}
.y25{bottom:393.120000px;}
.y6f{bottom:493.380000px;}
.y7a{bottom:519.331483px;}
.y6e{bottom:540.180000px;}
.y6d{bottom:586.980000px;}
.y6c{bottom:633.780000px;}
.y74{bottom:636.015000px;}
.y6b{bottom:727.380000px;}
.y6a{bottom:774.180000px;}
.y60{bottom:795.600000px;}
.y5e{bottom:797.610000px;}
.y5c{bottom:806.730000px;}
.y62{bottom:810.180000px;}
.y69{bottom:820.980000px;}
.y73{bottom:849.570000px;}
.y68{bottom:867.780000px;}
.y67{bottom:936.180000px;}
.y32{bottom:967.785000px;}
.y66{bottom:982.980000px;}
.y31{bottom:1014.585000px;}
.y65{bottom:1029.780000px;}
.y64{bottom:1076.580000px;}
.y30{bottom:1079.385000px;}
.y2f{bottom:1126.185000px;}
.y5d{bottom:1172.985000px;}
.y63{bottom:1173.420000px;}
.y5f{bottom:1178.970000px;}
.y5b{bottom:1179.000000px;}
.y61{bottom:1184.010000px;}
.y1{bottom:1221.195000px;}
.y14{bottom:1330.560000px;}
.y45{bottom:1462.140000px;}
.y2a{bottom:1484.205000px;}
.y2e{bottom:1485.150000px;}
.y7b{bottom:1517.730000px;}
.y29{bottom:1529.205000px;}
.y44{bottom:1579.605000px;}
.y75{bottom:1589.415000px;}
.y15{bottom:1600.350000px;}
.y43{bottom:1629.285000px;}
.y42{bottom:1680.990000px;}
.y41{bottom:1732.680000px;}
.y40{bottom:1782.360000px;}
.y3f{bottom:1834.590000px;}
.y3e{bottom:1884.270000px;}
.y3d{bottom:1936.515000px;}
.y3c{bottom:1986.195000px;}
.y3b{bottom:2039.685000px;}
.y3a{bottom:2092.605000px;}
.y5a{bottom:2115.570000px;}
.y4a{bottom:2183.250000px;}
.y7d{bottom:2191.830000px;}
.y2d{bottom:2215.905000px;}
.y59{bottom:2216.880000px;}
.y7c{bottom:2235.030000px;}
.y1a{bottom:2242.950000px;}
.y2c{bottom:2262.705000px;}
.y58{bottom:2263.680000px;}
.y72{bottom:2299.680000px;}
.y2b{bottom:2309.505000px;}
.y57{bottom:2310.480000px;}
.y71{bottom:2346.480000px;}
.y56{bottom:2395.950000px;}
.y70{bottom:2440.110000px;}
.y55{bottom:2449.290000px;}
.y54{bottom:2502.615000px;}
.y4d{bottom:2506.680000px;}
.y53{bottom:2555.970000px;}
.y39{bottom:2573.355000px;}
.y52{bottom:2609.310000px;}
.y38{bottom:2620.155000px;}
.y51{bottom:2662.635000px;}
.y37{bottom:2666.955000px;}
.y81{bottom:2670.735000px;}
.y80{bottom:2686.935000px;}
.y36{bottom:2713.755000px;}
.y50{bottom:2715.990000px;}
.y35{bottom:2760.555000px;}
.y4f{bottom:2769.330000px;}
.y34{bottom:2807.355000px;}
.y4c{bottom:2822.430000px;}
.y33{bottom:2854.155000px;}
.y4b{bottom:2876.250000px;}
.y7f{bottom:2902.785000px;}
.y7e{bottom:2918.985000px;}
.y16{bottom:2935.335000px;}
.y19{bottom:3026.235000px;}
.y17{bottom:3028.290000px;}
.y2{bottom:3155.790000px;}
.y24{bottom:3353.370000px;}
.y12{bottom:3362.865000px;}
.y23{bottom:3399.630000px;}
.y11{bottom:3433.065000px;}
.y22{bottom:3446.430000px;}
.y21{bottom:3493.230000px;}
.y10{bottom:3524.865000px;}
.y20{bottom:3586.830000px;}
.yf{bottom:3595.065000px;}
.y1f{bottom:3633.630000px;}
.ye{bottom:3665.265000px;}
.y1e{bottom:3680.430000px;}
.yd{bottom:3757.065000px;}
.y1d{bottom:3774.030000px;}
.y1c{bottom:3820.830000px;}
.yc{bottom:3848.865000px;}
.y1b{bottom:3867.630000px;}
.y13{bottom:4015.185000px;}
.y3{bottom:4028.400000px;}
.yb{bottom:4163.145000px;}
.ya{bottom:4234.965000px;}
.y9{bottom:4290.945000px;}
.y8{bottom:4346.745000px;}
.y7{bottom:4388.505000px;}
.y6{bottom:4444.305000px;}
.y5{bottom:4504.785000px;}
.y4{bottom:4663.230000px;}
.h29{height:47.196000px;}
.h25{height:63.062975px;}
.h27{height:71.289254px;}
.h23{height:72.704789px;}
.ha{height:73.722656px;}
.h24{height:89.044624px;}
.h6{height:91.368281px;}
.h1f{height:107.419922px;}
.h21{height:116.059922px;}
.h26{height:121.013782px;}
.h12{height:124.704000px;}
.h11{height:125.728704px;}
.h10{height:126.894240px;}
.h1d{height:136.143840px;}
.h1a{height:136.203840px;}
.h1b{height:136.263840px;}
.h1c{height:136.323840px;}
.h17{height:136.553760px;}
.h19{height:137.416320px;}
.h28{height:143.226562px;}
.h5{height:146.681719px;}
.h16{height:147.445312px;}
.hf{height:148.955625px;}
.he{height:153.343125px;}
.h9{height:155.400820px;}
.h20{height:155.544047px;}
.h8{height:159.978164px;}
.h1e{height:185.286563px;}
.h7{height:191.207461px;}
.h2{height:221.167969px;}
.h13{height:224.904000px;}
.h14{height:224.964000px;}
.hb{height:245.496445px;}
.h15{height:314.640000px;}
.hd{height:340.731360px;}
.hc{height:341.352000px;}
.h3{height:371.763360px;}
.h4{height:454.929120px;}
.h22{height:640.468940px;}
.h18{height:717.480000px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w3{width:183.060000px;}
.w4{width:328.860000px;}
.w5{width:913.158782px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x2c{left:15.915000px;}
.x31{left:22.215000px;}
.x47{left:112.887025px;}
.x12{left:115.667947px;}
.x2{left:117.719947px;}
.x19{left:125.351947px;}
.xf{left:128.231947px;}
.xe{left:158.069947px;}
.x21{left:172.004947px;}
.x15{left:178.454947px;}
.x45{left:182.234947px;}
.x20{left:210.314947px;}
.x28{left:228.599947px;}
.x16{left:232.454947px;}
.x8{left:243.749947px;}
.x11{left:247.679947px;}
.x25{left:249.119947px;}
.x26{left:250.199947px;}
.x2d{left:255.209947px;}
.x29{left:280.619947px;}
.x10{left:302.504947px;}
.x1a{left:336.134947px;}
.x27{left:342.719947px;}
.x48{left:344.503047px;}
.x24{left:359.639947px;}
.x2a{left:387.539947px;}
.x5{left:482.789947px;}
.x1{left:515.594947px;}
.x4{left:608.249947px;}
.x49{left:610.914359px;}
.x22{left:792.329947px;}
.xa{left:813.989947px;}
.x23{left:846.329947px;}
.x46{left:914.909947px;}
.x9{left:934.274947px;}
.x6{left:1023.194947px;}
.x2b{left:1049.580000px;}
.xb{left:1089.974947px;}
.x43{left:1247.939947px;}
.x42{left:1251.539947px;}
.x44{left:1281.779947px;}
.x4b{left:1354.424947px;}
.x4c{left:1357.664947px;}
.x4a{left:1401.329947px;}
.x7{left:1476.614947px;}
.x3{left:1506.269947px;}
.xc{left:1531.469947px;}
.xd{left:1585.514947px;}
.x3a{left:1728.929947px;}
.x39{left:1733.399947px;}
.x17{left:1763.924947px;}
.x13{left:1860.734947px;}
.x1b{left:1871.099947px;}
.x1e{left:1904.579947px;}
.x1d{left:1917.719947px;}
.x4e{left:1925.174947px;}
.x4d{left:1929.494947px;}
.x38{left:1951.484947px;}
.x18{left:1966.064947px;}
.x1c{left:2065.679947px;}
.x1f{left:2109.089947px;}
.x41{left:2149.019947px;}
.x40{left:2151.284947px;}
.x4f{left:2208.569947px;}
.x50{left:2213.069947px;}
.x3c{left:2217.059947px;}
.x3b{left:2219.969947px;}
.x14{left:2356.559947px;}
.x3e{left:2663.999947px;}
.x3d{left:2668.649947px;}
.x35{left:2794.574947px;}
.x36{left:2798.174947px;}
.x2e{left:2838.449947px;}
.x34{left:2907.569947px;}
.x2f{left:2914.949947px;}
.x33{left:2923.589947px;}
.x37{left:3076.454947px;}
.x30{left:3086.460000px;}
.x3f{left:3120.839947px;}
.x32{left:3160.334947px;}
@media print{
.vd{vertical-align:-61.399757pt;}
.v2{vertical-align:-49.920000pt;}
.v8{vertical-align:-41.600000pt;}
.v3{vertical-align:-33.920000pt;}
.v5{vertical-align:-31.466667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:0.906667pt;}
.vb{vertical-align:7.680000pt;}
.va{vertical-align:37.386667pt;}
.v6{vertical-align:38.400000pt;}
.v4{vertical-align:41.600000pt;}
.v1{vertical-align:49.920000pt;}
.vc{vertical-align:61.399757pt;}
.v7{vertical-align:89.066667pt;}
.ls19{letter-spacing:-2.437333pt;}
.ls1e{letter-spacing:-1.306667pt;}
.ls18{letter-spacing:-1.109333pt;}
.ls24{letter-spacing:-0.757333pt;}
.ls2d{letter-spacing:-0.602667pt;}
.ls23{letter-spacing:-0.581333pt;}
.ls29{letter-spacing:-0.444800pt;}
.ls25{letter-spacing:-0.434667pt;}
.ls38{letter-spacing:-0.303380pt;}
.ls33{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.286933pt;}
.ls30{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.244267pt;}
.ls20{letter-spacing:-0.229867pt;}
.ls26{letter-spacing:-0.191467pt;}
.ls35{letter-spacing:-0.142933pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.116267pt;}
.ls31{letter-spacing:-0.099733pt;}
.ls1c{letter-spacing:-0.060267pt;}
.ls2f{letter-spacing:-0.056533pt;}
.ls32{letter-spacing:-0.032000pt;}
.ls28{letter-spacing:-0.023040pt;}
.ls37{letter-spacing:-0.015735pt;}
.ls34{letter-spacing:-0.012160pt;}
.ls2e{letter-spacing:-0.005109pt;}
.ls17{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.036480pt;}
.ls21{letter-spacing:0.046720pt;}
.lsb{letter-spacing:0.057600pt;}
.lsc{letter-spacing:0.057728pt;}
.ls12{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.108160pt;}
.lsd{letter-spacing:0.128000pt;}
.ls36{letter-spacing:0.159467pt;}
.ls1a{letter-spacing:0.176533pt;}
.ls22{letter-spacing:0.195200pt;}
.ls1d{letter-spacing:0.205333pt;}
.ls2b{letter-spacing:0.228267pt;}
.ls0{letter-spacing:0.235520pt;}
.lse{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.416000pt;}
.ls1{letter-spacing:1.456640pt;}
.ls3{letter-spacing:2.341120pt;}
.lsa{letter-spacing:7.013120pt;}
.ls27{letter-spacing:17.226667pt;}
.ls7{letter-spacing:17.253120pt;}
.ls6{letter-spacing:25.573120pt;}
.ls10{letter-spacing:28.544000pt;}
.ls2{letter-spacing:40.075520pt;}
.ls14{letter-spacing:71.712000pt;}
.ls15{letter-spacing:143.357867pt;}
.ls9{letter-spacing:143.381333pt;}
.ls8{letter-spacing:143.392000pt;}
.ls16{letter-spacing:143.402667pt;}
.ls4{letter-spacing:143.552000pt;}
.lsf{letter-spacing:1141.877333pt;}
.ws5{word-spacing:-165.120000pt;}
.ws2e{word-spacing:-139.008000pt;}
.ws28{word-spacing:-138.880000pt;}
.ws2{word-spacing:-73.949867pt;}
.ws3{word-spacing:-72.621867pt;}
.ws1{word-spacing:-61.337600pt;}
.ws12{word-spacing:-61.314560pt;}
.ws13{word-spacing:-56.320000pt;}
.ws0{word-spacing:-43.392000pt;}
.ws6{word-spacing:-38.618880pt;}
.ws18{word-spacing:-31.615147pt;}
.ws7{word-spacing:-31.592213pt;}
.wsc{word-spacing:-31.582080pt;}
.ws14{word-spacing:-31.444480pt;}
.wsb{word-spacing:-31.433600pt;}
.ws8{word-spacing:-31.423360pt;}
.wsf{word-spacing:-31.386880pt;}
.ws1a{word-spacing:-31.270613pt;}
.ws11{word-spacing:-31.195413pt;}
.wsa{word-spacing:-31.157013pt;}
.ws9{word-spacing:-31.142613pt;}
.ws1e{word-spacing:-31.078571pt;}
.ws10{word-spacing:-30.952213pt;}
.ws15{word-spacing:-30.942080pt;}
.wsd{word-spacing:-30.805547pt;}
.ws1b{word-spacing:-30.784213pt;}
.wse{word-spacing:-30.629547pt;}
.ws4{word-spacing:-30.602240pt;}
.ws24{word-spacing:-29.056000pt;}
.ws25{word-spacing:-28.928000pt;}
.ws22{word-spacing:-28.672000pt;}
.ws26{word-spacing:-22.394880pt;}
.ws21{word-spacing:-21.790720pt;}
.ws17{word-spacing:-20.828160pt;}
.ws1d{word-spacing:-20.684160pt;}
.ws31{word-spacing:-16.226719pt;}
.ws32{word-spacing:-11.664000pt;}
.ws16{word-spacing:-0.420693pt;}
.ws33{word-spacing:0.000000pt;}
.ws23{word-spacing:1.024000pt;}
.ws19{word-spacing:7.032960pt;}
.ws30{word-spacing:217.755136pt;}
.ws1f{word-spacing:491.709696pt;}
.ws2a{word-spacing:603.459840pt;}
.ws2b{word-spacing:620.739840pt;}
.ws27{word-spacing:659.557120pt;}
.ws2c{word-spacing:661.059840pt;}
.ws29{word-spacing:677.699840pt;}
.ws1c{word-spacing:885.495125pt;}
.ws20{word-spacing:1017.717333pt;}
.ws2d{word-spacing:2506.912000pt;}
.ws2f{word-spacing:2515.157333pt;}
._a{margin-left:-15.074987pt;}
._b{margin-left:-12.539947pt;}
._9{margin-left:-11.618347pt;}
._6{margin-left:-6.521387pt;}
._2{margin-left:-4.256853pt;}
._4{margin-left:-3.073707pt;}
._1{margin-left:-2.086613pt;}
._5{margin-left:-1.064747pt;}
._0{width:1.119360pt;}
._7{width:2.066987pt;}
._8{width:3.213653pt;}
._1c{width:5.050027pt;}
._17{width:6.210560pt;}
._15{width:7.194453pt;}
._16{width:8.444160pt;}
._1a{width:13.720747pt;}
._1b{width:14.935253pt;}
._10{width:16.953600pt;}
._11{width:17.877227pt;}
._12{width:24.652160pt;}
._d{width:25.736960pt;}
._e{width:26.638933pt;}
._24{width:27.582080pt;}
._c{width:32.811733pt;}
._13{width:39.685120pt;}
._3{width:71.905493pt;}
._14{width:88.610987pt;}
._18{width:90.530987pt;}
._19{width:91.709653pt;}
._f{width:186.187307pt;}
._25{width:239.934264pt;}
._20{width:538.142080pt;}
._1d{width:575.902080pt;}
._1e{width:652.566101pt;}
._21{width:720.550613pt;}
._1f{width:793.344000pt;}
._23{width:898.560000pt;}
._22{width:933.621333pt;}
.fs18{font-size:48.000000pt;}
.fs7{font-size:64.000000pt;}
.fs16{font-size:66.120395pt;}
.fs14{font-size:80.281568pt;}
.fsf{font-size:85.120000pt;}
.fsd{font-size:92.160000pt;}
.fs12{font-size:92.555964pt;}
.fs17{font-size:93.500092pt;}
.fsc{font-size:96.000000pt;}
.fs4{font-size:110.080000pt;}
.fs15{font-size:111.469985pt;}
.fs13{font-size:113.357197pt;}
.fs10{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fsb{font-size:133.120000pt;}
.fs6{font-size:138.880000pt;}
.fs11{font-size:139.008000pt;}
.fs3{font-size:165.120000pt;}
.fs5{font-size:170.880000pt;}
.fs0{font-size:192.000000pt;}
.fs8{font-size:213.120000pt;}
.fsa{font-size:351.360000pt;}
.fs9{font-size:352.000000pt;}
.fs1{font-size:383.360000pt;}
.fs2{font-size:469.120000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:6.370658pt;}
.y49{bottom:47.200000pt;}
.y76{bottom:55.489519pt;}
.y48{bottom:85.600000pt;}
.y47{bottom:124.000000pt;}
.y46{bottom:126.493333pt;}
.y77{bottom:167.887896pt;}
.y18{bottom:200.933333pt;}
.y78{bottom:278.634049pt;}
.y28{bottom:305.733333pt;}
.y26{bottom:307.840000pt;}
.y4e{bottom:328.506667pt;}
.y27{bottom:347.333333pt;}
.y25{bottom:349.440000pt;}
.y6f{bottom:438.560000pt;}
.y7a{bottom:461.627985pt;}
.y6e{bottom:480.160000pt;}
.y6d{bottom:521.760000pt;}
.y6c{bottom:563.360000pt;}
.y74{bottom:565.346667pt;}
.y6b{bottom:646.560000pt;}
.y6a{bottom:688.160000pt;}
.y60{bottom:707.200000pt;}
.y5e{bottom:708.986667pt;}
.y5c{bottom:717.093333pt;}
.y62{bottom:720.160000pt;}
.y69{bottom:729.760000pt;}
.y73{bottom:755.173333pt;}
.y68{bottom:771.360000pt;}
.y67{bottom:832.160000pt;}
.y32{bottom:860.253333pt;}
.y66{bottom:873.760000pt;}
.y31{bottom:901.853333pt;}
.y65{bottom:915.360000pt;}
.y64{bottom:956.960000pt;}
.y30{bottom:959.453333pt;}
.y2f{bottom:1001.053333pt;}
.y5d{bottom:1042.653333pt;}
.y63{bottom:1043.040000pt;}
.y5f{bottom:1047.973333pt;}
.y5b{bottom:1048.000000pt;}
.y61{bottom:1052.453333pt;}
.y1{bottom:1085.506667pt;}
.y14{bottom:1182.720000pt;}
.y45{bottom:1299.680000pt;}
.y2a{bottom:1319.293333pt;}
.y2e{bottom:1320.133333pt;}
.y7b{bottom:1349.093333pt;}
.y29{bottom:1359.293333pt;}
.y44{bottom:1404.093333pt;}
.y75{bottom:1412.813333pt;}
.y15{bottom:1422.533333pt;}
.y43{bottom:1448.253333pt;}
.y42{bottom:1494.213333pt;}
.y41{bottom:1540.160000pt;}
.y40{bottom:1584.320000pt;}
.y3f{bottom:1630.746667pt;}
.y3e{bottom:1674.906667pt;}
.y3d{bottom:1721.346667pt;}
.y3c{bottom:1765.506667pt;}
.y3b{bottom:1813.053333pt;}
.y3a{bottom:1860.093333pt;}
.y5a{bottom:1880.506667pt;}
.y4a{bottom:1940.666667pt;}
.y7d{bottom:1948.293333pt;}
.y2d{bottom:1969.693333pt;}
.y59{bottom:1970.560000pt;}
.y7c{bottom:1986.693333pt;}
.y1a{bottom:1993.733333pt;}
.y2c{bottom:2011.293333pt;}
.y58{bottom:2012.160000pt;}
.y72{bottom:2044.160000pt;}
.y2b{bottom:2052.893333pt;}
.y57{bottom:2053.760000pt;}
.y71{bottom:2085.760000pt;}
.y56{bottom:2129.733333pt;}
.y70{bottom:2168.986667pt;}
.y55{bottom:2177.146667pt;}
.y54{bottom:2224.546667pt;}
.y4d{bottom:2228.160000pt;}
.y53{bottom:2271.973333pt;}
.y39{bottom:2287.426667pt;}
.y52{bottom:2319.386667pt;}
.y38{bottom:2329.026667pt;}
.y51{bottom:2366.786667pt;}
.y37{bottom:2370.626667pt;}
.y81{bottom:2373.986667pt;}
.y80{bottom:2388.386667pt;}
.y36{bottom:2412.226667pt;}
.y50{bottom:2414.213333pt;}
.y35{bottom:2453.826667pt;}
.y4f{bottom:2461.626667pt;}
.y34{bottom:2495.426667pt;}
.y4c{bottom:2508.826667pt;}
.y33{bottom:2537.026667pt;}
.y4b{bottom:2556.666667pt;}
.y7f{bottom:2580.253333pt;}
.y7e{bottom:2594.653333pt;}
.y16{bottom:2609.186667pt;}
.y19{bottom:2689.986667pt;}
.y17{bottom:2691.813333pt;}
.y2{bottom:2805.146667pt;}
.y24{bottom:2980.773333pt;}
.y12{bottom:2989.213333pt;}
.y23{bottom:3021.893333pt;}
.y11{bottom:3051.613333pt;}
.y22{bottom:3063.493333pt;}
.y21{bottom:3105.093333pt;}
.y10{bottom:3133.213333pt;}
.y20{bottom:3188.293333pt;}
.yf{bottom:3195.613333pt;}
.y1f{bottom:3229.893333pt;}
.ye{bottom:3258.013333pt;}
.y1e{bottom:3271.493333pt;}
.yd{bottom:3339.613333pt;}
.y1d{bottom:3354.693333pt;}
.y1c{bottom:3396.293333pt;}
.yc{bottom:3421.213333pt;}
.y1b{bottom:3437.893333pt;}
.y13{bottom:3569.053333pt;}
.y3{bottom:3580.800000pt;}
.yb{bottom:3700.573333pt;}
.ya{bottom:3764.413333pt;}
.y9{bottom:3814.173333pt;}
.y8{bottom:3863.773333pt;}
.y7{bottom:3900.893333pt;}
.y6{bottom:3950.493333pt;}
.y5{bottom:4004.253333pt;}
.y4{bottom:4145.093333pt;}
.h29{height:41.952000pt;}
.h25{height:56.055978pt;}
.h27{height:63.368226pt;}
.h23{height:64.626479pt;}
.ha{height:65.531250pt;}
.h24{height:79.150777pt;}
.h6{height:81.216250pt;}
.h1f{height:95.484375pt;}
.h21{height:103.164375pt;}
.h26{height:107.567806pt;}
.h12{height:110.848000pt;}
.h11{height:111.758848pt;}
.h10{height:112.794880pt;}
.h1d{height:121.016747pt;}
.h1a{height:121.070080pt;}
.h1b{height:121.123413pt;}
.h1c{height:121.176747pt;}
.h17{height:121.381120pt;}
.h19{height:122.147840pt;}
.h28{height:127.312500pt;}
.h5{height:130.383750pt;}
.h16{height:131.062500pt;}
.hf{height:132.405000pt;}
.he{height:136.305000pt;}
.h9{height:138.134062pt;}
.h20{height:138.261375pt;}
.h8{height:142.202812pt;}
.h1e{height:164.699167pt;}
.h7{height:169.962187pt;}
.h2{height:196.593750pt;}
.h13{height:199.914667pt;}
.h14{height:199.968000pt;}
.hb{height:218.219062pt;}
.h15{height:279.680000pt;}
.hd{height:302.872320pt;}
.hc{height:303.424000pt;}
.h3{height:330.456320pt;}
.h4{height:404.381440pt;}
.h22{height:569.305724pt;}
.h18{height:637.760000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w3{width:162.720000pt;}
.w4{width:292.320000pt;}
.w5{width:811.696695pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:14.146667pt;}
.x31{left:19.746667pt;}
.x47{left:100.344022pt;}
.x12{left:102.815953pt;}
.x2{left:104.639953pt;}
.x19{left:111.423953pt;}
.xf{left:113.983953pt;}
.xe{left:140.506619pt;}
.x21{left:152.893286pt;}
.x15{left:158.626619pt;}
.x45{left:161.986619pt;}
.x20{left:186.946619pt;}
.x28{left:203.199953pt;}
.x16{left:206.626619pt;}
.x8{left:216.666619pt;}
.x11{left:220.159953pt;}
.x25{left:221.439953pt;}
.x26{left:222.399953pt;}
.x2d{left:226.853286pt;}
.x29{left:249.439953pt;}
.x10{left:268.893286pt;}
.x1a{left:298.786619pt;}
.x27{left:304.639953pt;}
.x48{left:306.224931pt;}
.x24{left:319.679953pt;}
.x2a{left:344.479953pt;}
.x5{left:429.146619pt;}
.x1{left:458.306619pt;}
.x4{left:540.666619pt;}
.x49{left:543.034986pt;}
.x22{left:704.293286pt;}
.xa{left:723.546619pt;}
.x23{left:752.293286pt;}
.x46{left:813.253286pt;}
.x9{left:830.466619pt;}
.x6{left:909.506619pt;}
.x2b{left:932.960000pt;}
.xb{left:968.866619pt;}
.x43{left:1109.279953pt;}
.x42{left:1112.479953pt;}
.x44{left:1139.359953pt;}
.x4b{left:1203.933286pt;}
.x4c{left:1206.813286pt;}
.x4a{left:1245.626619pt;}
.x7{left:1312.546619pt;}
.x3{left:1338.906619pt;}
.xc{left:1361.306619pt;}
.xd{left:1409.346619pt;}
.x3a{left:1536.826619pt;}
.x39{left:1540.799953pt;}
.x17{left:1567.933286pt;}
.x13{left:1653.986619pt;}
.x1b{left:1663.199953pt;}
.x1e{left:1692.959953pt;}
.x1d{left:1704.639953pt;}
.x4e{left:1711.266619pt;}
.x4d{left:1715.106619pt;}
.x38{left:1734.653286pt;}
.x18{left:1747.613286pt;}
.x1c{left:1836.159953pt;}
.x1f{left:1874.746619pt;}
.x41{left:1910.239953pt;}
.x40{left:1912.253286pt;}
.x4f{left:1963.173286pt;}
.x50{left:1967.173286pt;}
.x3c{left:1970.719953pt;}
.x3b{left:1973.306619pt;}
.x14{left:2094.719953pt;}
.x3e{left:2367.999953pt;}
.x3d{left:2372.133286pt;}
.x35{left:2484.066619pt;}
.x36{left:2487.266619pt;}
.x2e{left:2523.066619pt;}
.x34{left:2584.506619pt;}
.x2f{left:2591.066619pt;}
.x33{left:2598.746619pt;}
.x37{left:2734.626619pt;}
.x30{left:2743.520000pt;}
.x3f{left:2774.079953pt;}
.x32{left:2809.186619pt;}
}




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