
    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_1c72c062eaa4db9e980259df.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_17dc1f5d555f6888e6ccc648.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fe173955509240179fa8bc89.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_6035bc0ebb5fbeaa5eed7e51.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.119141;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_a02a3c72d90776ee38686040.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_edca898f6d4ac7aed93cc85c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_fc0fb2cd64401bc91a8190f1.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dd61c2766efae68b4a577f17.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.951660;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_2f6f8768bf01af4c514b8d4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975586;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_6c45f8435689b4768c9ab8d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.974609;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_ab1ceb5ea6a963c3fa286bf8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;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_1967a993749254f422b018ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.201172;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_80ce994da0590f862ee6fb9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_62fb0f71fefe0e057a66ba55.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.863281;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);}
.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);}
.v1{vertical-align:-8.784000px;}
.v0{vertical-align:0.000000px;}
.ls26{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.696000px;}
.ls25{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.348600px;}
.ls29{letter-spacing:-0.346800px;}
.ls3{letter-spacing:-0.342600px;}
.ls1b{letter-spacing:-0.306600px;}
.ls2b{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.270600px;}
.ls7{letter-spacing:-0.265200px;}
.ls10{letter-spacing:-0.126000px;}
.lsf{letter-spacing:-0.067800px;}
.ls2d{letter-spacing:-0.063000px;}
.ls24{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.046080px;}
.ls2e{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.023040px;}
.lse{letter-spacing:-0.011520px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.011520px;}
.ls15{letter-spacing:0.023040px;}
.ls9{letter-spacing:0.026460px;}
.ls1{letter-spacing:0.034560px;}
.ls19{letter-spacing:0.050700px;}
.ls18{letter-spacing:0.101400px;}
.ls8{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.126720px;}
.ls17{letter-spacing:0.174000px;}
.ls1f{letter-spacing:0.178800px;}
.ls1c{letter-spacing:0.181200px;}
.ls2a{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.306600px;}
.ls13{letter-spacing:0.334200px;}
.lsb{letter-spacing:28.765440px;}
.ls27{letter-spacing:48.708000px;}
.ls1e{letter-spacing:54.000000px;}
.ls23{letter-spacing:60.130080px;}
.ls22{letter-spacing:65.736000px;}
.ls6{letter-spacing:75.240000px;}
.ls0{letter-spacing:80.812800px;}
.ls11{letter-spacing:86.115168px;}
.ls12{letter-spacing:86.181120px;}
.ls5{letter-spacing:99.952800px;}
.ls2c{letter-spacing:107.856000px;}
.ls1a{letter-spacing:108.000000px;}
.ls21{letter-spacing:180.036000px;}
.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;}
}
.ws22{word-spacing:-70.220160px;}
.wsb{word-spacing:-66.240000px;}
.ws6{word-spacing:-35.628480px;}
.ws21{word-spacing:-33.493212px;}
.ws24{word-spacing:-33.466752px;}
.ws1f{word-spacing:-33.426720px;}
.ws4b{word-spacing:-33.084000px;}
.ws15{word-spacing:-28.863072px;}
.ws19{word-spacing:-28.823040px;}
.ws52{word-spacing:-28.795272px;}
.ws2{word-spacing:-28.422720px;}
.ws23{word-spacing:-20.056032px;}
.ws0{word-spacing:-20.016000px;}
.ws13{word-spacing:-17.948280px;}
.ws14{word-spacing:-17.740800px;}
.wsc{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.713280px;}
.ws50{word-spacing:-15.012000px;}
.ws7{word-spacing:-13.446000px;}
.ws29{word-spacing:-13.410720px;}
.ws12{word-spacing:-13.392000px;}
.wsd{word-spacing:-12.011760px;}
.ws2b{word-spacing:-2.733840px;}
.ws3c{word-spacing:-2.327760px;}
.ws1e{word-spacing:-2.202000px;}
.ws28{word-spacing:-2.191392px;}
.ws47{word-spacing:-2.081280px;}
.ws2c{word-spacing:-2.011200px;}
.wsa{word-spacing:-1.942272px;}
.ws2e{word-spacing:-1.874880px;}
.ws20{word-spacing:-1.711440px;}
.ws3b{word-spacing:-1.413360px;}
.ws2a{word-spacing:-1.227600px;}
.ws1d{word-spacing:-1.214880px;}
.ws48{word-spacing:-1.176000px;}
.ws27{word-spacing:-1.146624px;}
.ws8{word-spacing:-1.134240px;}
.ws2d{word-spacing:-1.093140px;}
.ws4{word-spacing:-1.091520px;}
.ws9{word-spacing:-0.973104px;}
.ws1b{word-spacing:-0.925440px;}
.ws1a{word-spacing:-0.893520px;}
.ws3d{word-spacing:-0.666960px;}
.ws4a{word-spacing:-0.504000px;}
.ws4d{word-spacing:-0.144000px;}
.ws4c{word-spacing:-0.072000px;}
.ws1c{word-spacing:-0.050760px;}
.ws4f{word-spacing:-0.024000px;}
.ws3{word-spacing:0.000000px;}
.ws49{word-spacing:0.288000px;}
.ws5{word-spacing:0.395880px;}
.ws4e{word-spacing:1.008000px;}
.ws1{word-spacing:1.028160px;}
.ws16{word-spacing:1.336320px;}
.ws17{word-spacing:1.486080px;}
.ws25{word-spacing:1.943280px;}
.wse{word-spacing:2.005920px;}
.ws26{word-spacing:2.616480px;}
.ws18{word-spacing:2.761920px;}
.ws51{word-spacing:3.126720px;}
.ws10{word-spacing:3.344544px;}
.ws11{word-spacing:3.666816px;}
.ws31{word-spacing:11.106000px;}
.ws36{word-spacing:11.412720px;}
.ws37{word-spacing:11.546400px;}
.ws32{word-spacing:11.868480px;}
.ws3a{word-spacing:11.894400px;}
.ws33{word-spacing:12.079440px;}
.ws39{word-spacing:12.159840px;}
.ws35{word-spacing:12.250080px;}
.ws2f{word-spacing:12.304560px;}
.ws30{word-spacing:12.519840px;}
.ws34{word-spacing:13.982400px;}
.ws38{word-spacing:14.811120px;}
.ws45{word-spacing:28.387200px;}
.ws43{word-spacing:30.597120px;}
.ws44{word-spacing:30.799440px;}
.ws42{word-spacing:31.132800px;}
.ws41{word-spacing:31.519440px;}
.ws40{word-spacing:31.707120px;}
.ws3f{word-spacing:31.851840px;}
.ws46{word-spacing:32.019120px;}
.ws3e{word-spacing:32.399640px;}
._6{margin-left:-9.600768px;}
._5{margin-left:-3.384000px;}
._3{margin-left:-1.679328px;}
._4{width:1.439424px;}
._0{width:3.384000px;}
._2{width:4.392000px;}
._1{width:5.400000px;}
._9{width:15.539520px;}
._d{width:27.732864px;}
._a{width:30.184704px;}
._b{width:31.556352px;}
._e{width:32.694576px;}
._8{width:33.781920px;}
._c{width:34.995648px;}
._f{width:36.106464px;}
._7{width:47.186928px;}
._10{width:65.459856px;}
.fc9{color:rgb(140,180,35);}
.fc8{color:rgb(0,0,255);}
.fc3{color:rgb(0,90,160);}
.fc2{color:transparent;}
.fca{color:rgb(127,127,127);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(41,109,235);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(33,37,41);}
.fc0{color:rgb(0,40,100);}
.fs0{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs13{font-size:63.360000px;}
.fs16{font-size:63.504000px;}
.fs1{font-size:64.080000px;}
.fsf{font-size:66.240000px;}
.fs10{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs1a{font-size:72.144000px;}
.fs1c{font-size:95.760000px;}
.fs6{font-size:102.240000px;}
.fs11{font-size:103.680000px;}
.fs12{font-size:103.824000px;}
.fsc{font-size:108.000000px;}
.fs1f{font-size:108.144000px;}
.fsd{font-size:112.320000px;}
.fs5{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fs18{font-size:126.000000px;}
.fs7{font-size:128.160000px;}
.fs1d{font-size:128.304000px;}
.fs19{font-size:131.760000px;}
.fs17{font-size:131.904000px;}
.fs1b{font-size:138.240000px;}
.fs8{font-size:144.000000px;}
.fs1e{font-size:144.144000px;}
.fs15{font-size:159.840000px;}
.fse{font-size:159.984000px;}
.fs14{font-size:167.760000px;}
.fs4{font-size:198.000000px;}
.fs20{font-size:224.064000px;}
.fs3{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.y1{bottom:21.240000px;}
.y23{bottom:27.720000px;}
.y22{bottom:43.920000px;}
.y8f{bottom:44.784000px;}
.y37{bottom:46.080000px;}
.y35{bottom:51.552000px;}
.y2{bottom:56.448000px;}
.y85{bottom:62.028000px;}
.y36{bottom:62.460000px;}
.y2c{bottom:64.656000px;}
.y57{bottom:67.464000px;}
.yd{bottom:67.752000px;}
.y34{bottom:67.932000px;}
.y64{bottom:71.640000px;}
.y43{bottom:79.272000px;}
.yc{bottom:83.952000px;}
.y7{bottom:90.360000px;}
.y42{bottom:98.172000px;}
.yb{bottom:100.152000px;}
.y15{bottom:115.596000px;}
.y41{bottom:117.072000px;}
.y6{bottom:123.876000px;}
.y40{bottom:135.972000px;}
.y21{bottom:165.090000px;}
.y14{bottom:166.035000px;}
.y18{bottom:166.425000px;}
.y3f{bottom:166.965000px;}
.y20{bottom:179.490000px;}
.y17{bottom:182.670000px;}
.y5{bottom:185.430000px;}
.y3e{bottom:185.865000px;}
.y65{bottom:197.025000px;}
.y3d{bottom:216.645000px;}
.y84{bottom:217.725000px;}
.y3c{bottom:235.545000px;}
.y72{bottom:249.195000px;}
.y13{bottom:256.395000px;}
.y4a{bottom:258.120000px;}
.y71{bottom:263.595000px;}
.y3b{bottom:266.505000px;}
.y1f{bottom:280.335000px;}
.y3a{bottom:285.405000px;}
.y8d{bottom:286.665000px;}
.y50{bottom:287.280000px;}
.y83{bottom:289.725000px;}
.y1e{bottom:303.225000px;}
.y39{bottom:304.350000px;}
.y4{bottom:312.015000px;}
.y49{bottom:316.800000px;}
.y78{bottom:321.585000px;}
.y56{bottom:325.590000px;}
.y1d{bottom:325.905000px;}
.y12{bottom:329.505000px;}
.y70{bottom:329.685000px;}
.y8c{bottom:333.510000px;}
.y82{bottom:334.725000px;}
.y4f{bottom:341.280000px;}
.y5d{bottom:347.325000px;}
.y8e{bottom:350.280000px;}
.y63{bottom:361.050000px;}
.y48{bottom:363.630000px;}
.y77{bottom:375.585000px;}
.y6f{bottom:378.330000px;}
.y55{bottom:379.620000px;}
.y8b{bottom:380.310000px;}
.y6a{bottom:387.000000px;}
.y11{bottom:402.585000px;}
.y81{bottom:406.770000px;}
.y4e{bottom:408.060000px;}
.y62{bottom:415.050000px;}
.y5c{bottom:419.325000px;}
.y47{bottom:422.490000px;}
.y7c{bottom:423.030000px;}
.y6e{bottom:426.930000px;}
.y8a{bottom:427.110000px;}
.y54{bottom:433.620000px;}
.y69{bottom:446.400000px;}
.y80{bottom:451.770000px;}
.y76{bottom:465.630000px;}
.y33{bottom:469.695000px;}
.y89{bottom:473.910000px;}
.y10{bottom:475.710000px;}
.y7b{bottom:477.075000px;}
.y3{bottom:484.275000px;}
.y2f{bottom:486.255000px;}
.y61{bottom:487.050000px;}
.y53{bottom:487.620000px;}
.y5b{bottom:491.370000px;}
.y32{bottom:500.865000px;}
.y6d{bottom:505.620000px;}
.y2a{bottom:513.465000px;}
.y75{bottom:519.630000px;}
.y2e{bottom:521.385000px;}
.y7f{bottom:523.800000px;}
.y68{bottom:532.830000px;}
.y1c{bottom:534.165000px;}
.y46{bottom:540.075000px;}
.y31{bottom:547.665000px;}
.yf{bottom:550.230000px;}
.y26{bottom:551.085000px;}
.y6c{bottom:554.220000px;}
.y4d{bottom:558.390000px;}
.y29{bottom:558.465000px;}
.y60{bottom:561.060000px;}
.ya{bottom:562.035000px;}
.y5a{bottom:563.370000px;}
.y7a{bottom:567.075000px;}
.y52{bottom:568.650000px;}
.y7e{bottom:568.800000px;}
.y88{bottom:569.340000px;}
.y1b{bottom:575.610000px;}
.y45{bottom:586.875000px;}
.y25{bottom:599.685000px;}
.y28{bottom:603.465000px;}
.ye{bottom:604.260000px;}
.y30{bottom:610.125000px;}
.y74{bottom:610.920000px;}
.y67{bottom:611.715000px;}
.y4c{bottom:615.675000px;}
.y1a{bottom:617.010000px;}
.y9{bottom:618.735000px;}
.y79{bottom:621.105000px;}
.y51{bottom:622.650000px;}
.y5f{bottom:623.160000px;}
.y87{bottom:623.370000px;}
.y59{bottom:632.160000px;}
.y44{bottom:633.705000px;}
.y6b{bottom:634.170000px;}
.y7d{bottom:640.830000px;}
.y27{bottom:660.390000px;}
.y24{bottom:665.070000px;}
.y2d{bottom:669.030000px;}
.y16{bottom:723.315000px;}
.y19{bottom:733.035000px;}
.y38{bottom:738.360000px;}
.y4b{bottom:743.040000px;}
.y66{bottom:743.940000px;}
.y73{bottom:744.510000px;}
.y58{bottom:745.350000px;}
.y86{bottom:745.635000px;}
.y8{bottom:745.710000px;}
.y2b{bottom:750.780000px;}
.y5e{bottom:751.575000px;}
.h17{height:41.132812px;}
.h12{height:43.670391px;}
.h15{height:48.262500px;}
.hf{height:48.884766px;}
.h25{height:50.312812px;}
.ha{height:56.320312px;}
.h1{height:58.049437px;}
.h10{height:59.965312px;}
.h11{height:60.095672px;}
.h1a{height:66.082500px;}
.h19{height:66.232687px;}
.h2{height:75.093750px;}
.h21{height:75.243937px;}
.h2a{height:81.896484px;}
.h20{height:90.414844px;}
.h1e{height:91.589062px;}
.h1f{height:91.698750px;}
.h1c{height:95.976562px;}
.h24{height:98.051133px;}
.h1d{height:100.364062px;}
.h6{height:106.633125px;}
.h13{height:108.135000px;}
.h14{height:108.285188px;}
.hc{height:112.640625px;}
.h28{height:112.790813px;}
.hd{height:117.146250px;}
.h5{height:118.648125px;}
.hb{height:125.406562px;}
.h9{height:125.556750px;}
.h7{height:133.666875px;}
.h26{height:133.817062px;}
.h22{height:137.421562px;}
.h1b{height:137.571750px;}
.h23{height:144.180000px;}
.h8{height:150.187500px;}
.h27{height:150.337688px;}
.h18{height:166.708125px;}
.he{height:166.858313px;}
.h16{height:174.968437px;}
.h4{height:206.507812px;}
.h29{height:233.691750px;}
.h3{height:250.212375px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1e{left:49.103979px;}
.x2{left:56.519979px;}
.x3{left:59.903979px;}
.x6{left:62.243979px;}
.xa{left:63.503979px;}
.x1a{left:74.519979px;}
.x28{left:77.903979px;}
.x12{left:80.099979px;}
.x7{left:90.683979px;}
.x22{left:98.423979px;}
.x2b{left:100.403979px;}
.x32{left:107.063979px;}
.x30{left:117.683979px;}
.x29{left:131.903979px;}
.x14{left:133.559979px;}
.x24{left:145.079979px;}
.x25{left:153.869979px;}
.xb{left:180.104979px;}
.xe{left:202.499979px;}
.x13{left:209.339979px;}
.x21{left:232.019979px;}
.x1d{left:269.279979px;}
.x1c{left:317.339979px;}
.xf{left:346.709979px;}
.x23{left:359.099979px;}
.x4{left:443.669979px;}
.x26{left:538.199979px;}
.x11{left:540.569979px;}
.x27{left:592.199979px;}
.x10{left:737.099979px;}
.x15{left:764.099979px;}
.x18{left:780.839979px;}
.x1f{left:792.899979px;}
.x20{left:821.699979px;}
.x2e{left:865.079979px;}
.x2c{left:867.779979px;}
.x8{left:898.994979px;}
.x16{left:908.489979px;}
.x1b{left:955.049979px;}
.xc{left:956.339979px;}
.x2d{left:993.344979px;}
.x19{left:1003.889979px;}
.x17{left:1047.089979px;}
.x2a{left:1069.094979px;}
.x2f{left:1118.009979px;}
.x31{left:1155.029979px;}
.xd{left:1195.229979px;}
.x9{left:1280.264979px;}
.x33{left:1364.549979px;}
.x5{left:1377.074979px;}
.x1{left:1381.859979px;}
@media print{
.v1{vertical-align:-7.808000pt;}
.v0{vertical-align:0.000000pt;}
.ls26{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.618667pt;}
.ls25{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.309867pt;}
.ls29{letter-spacing:-0.308267pt;}
.ls3{letter-spacing:-0.304533pt;}
.ls1b{letter-spacing:-0.272533pt;}
.ls2b{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.240533pt;}
.ls7{letter-spacing:-0.235733pt;}
.ls10{letter-spacing:-0.112000pt;}
.lsf{letter-spacing:-0.060267pt;}
.ls2d{letter-spacing:-0.056000pt;}
.ls24{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.040960pt;}
.ls2e{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.020480pt;}
.lse{letter-spacing:-0.010240pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.010240pt;}
.ls15{letter-spacing:0.020480pt;}
.ls9{letter-spacing:0.023520pt;}
.ls1{letter-spacing:0.030720pt;}
.ls19{letter-spacing:0.045067pt;}
.ls18{letter-spacing:0.090133pt;}
.ls8{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.112640pt;}
.ls17{letter-spacing:0.154667pt;}
.ls1f{letter-spacing:0.158933pt;}
.ls1c{letter-spacing:0.161067pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.272533pt;}
.ls13{letter-spacing:0.297067pt;}
.lsb{letter-spacing:25.569280pt;}
.ls27{letter-spacing:43.296000pt;}
.ls1e{letter-spacing:48.000000pt;}
.ls23{letter-spacing:53.448960pt;}
.ls22{letter-spacing:58.432000pt;}
.ls6{letter-spacing:66.880000pt;}
.ls0{letter-spacing:71.833600pt;}
.ls11{letter-spacing:76.546816pt;}
.ls12{letter-spacing:76.605440pt;}
.ls5{letter-spacing:88.846933pt;}
.ls2c{letter-spacing:95.872000pt;}
.ls1a{letter-spacing:96.000000pt;}
.ls21{letter-spacing:160.032000pt;}
.ws22{word-spacing:-62.417920pt;}
.wsb{word-spacing:-58.880000pt;}
.ws6{word-spacing:-31.669760pt;}
.ws21{word-spacing:-29.771744pt;}
.ws24{word-spacing:-29.748224pt;}
.ws1f{word-spacing:-29.712640pt;}
.ws4b{word-spacing:-29.408000pt;}
.ws15{word-spacing:-25.656064pt;}
.ws19{word-spacing:-25.620480pt;}
.ws52{word-spacing:-25.595797pt;}
.ws2{word-spacing:-25.264640pt;}
.ws23{word-spacing:-17.827584pt;}
.ws0{word-spacing:-17.792000pt;}
.ws13{word-spacing:-15.954027pt;}
.ws14{word-spacing:-15.769600pt;}
.wsc{word-spacing:-14.661120pt;}
.wsf{word-spacing:-13.967360pt;}
.ws50{word-spacing:-13.344000pt;}
.ws7{word-spacing:-11.952000pt;}
.ws29{word-spacing:-11.920640pt;}
.ws12{word-spacing:-11.904000pt;}
.wsd{word-spacing:-10.677120pt;}
.ws2b{word-spacing:-2.430080pt;}
.ws3c{word-spacing:-2.069120pt;}
.ws1e{word-spacing:-1.957333pt;}
.ws28{word-spacing:-1.947904pt;}
.ws47{word-spacing:-1.850027pt;}
.ws2c{word-spacing:-1.787733pt;}
.wsa{word-spacing:-1.726464pt;}
.ws2e{word-spacing:-1.666560pt;}
.ws20{word-spacing:-1.521280pt;}
.ws3b{word-spacing:-1.256320pt;}
.ws2a{word-spacing:-1.091200pt;}
.ws1d{word-spacing:-1.079893pt;}
.ws48{word-spacing:-1.045333pt;}
.ws27{word-spacing:-1.019221pt;}
.ws8{word-spacing:-1.008213pt;}
.ws2d{word-spacing:-0.971680pt;}
.ws4{word-spacing:-0.970240pt;}
.ws9{word-spacing:-0.864981pt;}
.ws1b{word-spacing:-0.822613pt;}
.ws1a{word-spacing:-0.794240pt;}
.ws3d{word-spacing:-0.592853pt;}
.ws4a{word-spacing:-0.448000pt;}
.ws4d{word-spacing:-0.128000pt;}
.ws4c{word-spacing:-0.064000pt;}
.ws1c{word-spacing:-0.045120pt;}
.ws4f{word-spacing:-0.021333pt;}
.ws3{word-spacing:0.000000pt;}
.ws49{word-spacing:0.256000pt;}
.ws5{word-spacing:0.351893pt;}
.ws4e{word-spacing:0.896000pt;}
.ws1{word-spacing:0.913920pt;}
.ws16{word-spacing:1.187840pt;}
.ws17{word-spacing:1.320960pt;}
.ws25{word-spacing:1.727360pt;}
.wse{word-spacing:1.783040pt;}
.ws26{word-spacing:2.325760pt;}
.ws18{word-spacing:2.455040pt;}
.ws51{word-spacing:2.779307pt;}
.ws10{word-spacing:2.972928pt;}
.ws11{word-spacing:3.259392pt;}
.ws31{word-spacing:9.872000pt;}
.ws36{word-spacing:10.144640pt;}
.ws37{word-spacing:10.263467pt;}
.ws32{word-spacing:10.549760pt;}
.ws3a{word-spacing:10.572800pt;}
.ws33{word-spacing:10.737280pt;}
.ws39{word-spacing:10.808747pt;}
.ws35{word-spacing:10.888960pt;}
.ws2f{word-spacing:10.937387pt;}
.ws30{word-spacing:11.128747pt;}
.ws34{word-spacing:12.428800pt;}
.ws38{word-spacing:13.165440pt;}
.ws45{word-spacing:25.233067pt;}
.ws43{word-spacing:27.197440pt;}
.ws44{word-spacing:27.377280pt;}
.ws42{word-spacing:27.673600pt;}
.ws41{word-spacing:28.017280pt;}
.ws40{word-spacing:28.184107pt;}
.ws3f{word-spacing:28.312747pt;}
.ws46{word-spacing:28.461440pt;}
.ws3e{word-spacing:28.799680pt;}
._6{margin-left:-8.534016pt;}
._5{margin-left:-3.008000pt;}
._3{margin-left:-1.492736pt;}
._4{width:1.279488pt;}
._0{width:3.008000pt;}
._2{width:3.904000pt;}
._1{width:4.800000pt;}
._9{width:13.812907pt;}
._d{width:24.651435pt;}
._a{width:26.830848pt;}
._b{width:28.050091pt;}
._e{width:29.061845pt;}
._8{width:30.028373pt;}
._c{width:31.107243pt;}
._f{width:32.094635pt;}
._7{width:41.943936pt;}
._10{width:58.186539pt;}
.fs0{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs13{font-size:56.320000pt;}
.fs16{font-size:56.448000pt;}
.fs1{font-size:56.960000pt;}
.fsf{font-size:58.880000pt;}
.fs10{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs1a{font-size:64.128000pt;}
.fs1c{font-size:85.120000pt;}
.fs6{font-size:90.880000pt;}
.fs11{font-size:92.160000pt;}
.fs12{font-size:92.288000pt;}
.fsc{font-size:96.000000pt;}
.fs1f{font-size:96.128000pt;}
.fsd{font-size:99.840000pt;}
.fs5{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fs18{font-size:112.000000pt;}
.fs7{font-size:113.920000pt;}
.fs1d{font-size:114.048000pt;}
.fs19{font-size:117.120000pt;}
.fs17{font-size:117.248000pt;}
.fs1b{font-size:122.880000pt;}
.fs8{font-size:128.000000pt;}
.fs1e{font-size:128.128000pt;}
.fs15{font-size:142.080000pt;}
.fse{font-size:142.208000pt;}
.fs14{font-size:149.120000pt;}
.fs4{font-size:176.000000pt;}
.fs20{font-size:199.168000pt;}
.fs3{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:18.880000pt;}
.y23{bottom:24.640000pt;}
.y22{bottom:39.040000pt;}
.y8f{bottom:39.808000pt;}
.y37{bottom:40.960000pt;}
.y35{bottom:45.824000pt;}
.y2{bottom:50.176000pt;}
.y85{bottom:55.136000pt;}
.y36{bottom:55.520000pt;}
.y2c{bottom:57.472000pt;}
.y57{bottom:59.968000pt;}
.yd{bottom:60.224000pt;}
.y34{bottom:60.384000pt;}
.y64{bottom:63.680000pt;}
.y43{bottom:70.464000pt;}
.yc{bottom:74.624000pt;}
.y7{bottom:80.320000pt;}
.y42{bottom:87.264000pt;}
.yb{bottom:89.024000pt;}
.y15{bottom:102.752000pt;}
.y41{bottom:104.064000pt;}
.y6{bottom:110.112000pt;}
.y40{bottom:120.864000pt;}
.y21{bottom:146.746667pt;}
.y14{bottom:147.586667pt;}
.y18{bottom:147.933333pt;}
.y3f{bottom:148.413333pt;}
.y20{bottom:159.546667pt;}
.y17{bottom:162.373333pt;}
.y5{bottom:164.826667pt;}
.y3e{bottom:165.213333pt;}
.y65{bottom:175.133333pt;}
.y3d{bottom:192.573333pt;}
.y84{bottom:193.533333pt;}
.y3c{bottom:209.373333pt;}
.y72{bottom:221.506667pt;}
.y13{bottom:227.906667pt;}
.y4a{bottom:229.440000pt;}
.y71{bottom:234.306667pt;}
.y3b{bottom:236.893333pt;}
.y1f{bottom:249.186667pt;}
.y3a{bottom:253.693333pt;}
.y8d{bottom:254.813333pt;}
.y50{bottom:255.360000pt;}
.y83{bottom:257.533333pt;}
.y1e{bottom:269.533333pt;}
.y39{bottom:270.533333pt;}
.y4{bottom:277.346667pt;}
.y49{bottom:281.600000pt;}
.y78{bottom:285.853333pt;}
.y56{bottom:289.413333pt;}
.y1d{bottom:289.693333pt;}
.y12{bottom:292.893333pt;}
.y70{bottom:293.053333pt;}
.y8c{bottom:296.453333pt;}
.y82{bottom:297.533333pt;}
.y4f{bottom:303.360000pt;}
.y5d{bottom:308.733333pt;}
.y8e{bottom:311.360000pt;}
.y63{bottom:320.933333pt;}
.y48{bottom:323.226667pt;}
.y77{bottom:333.853333pt;}
.y6f{bottom:336.293333pt;}
.y55{bottom:337.440000pt;}
.y8b{bottom:338.053333pt;}
.y6a{bottom:344.000000pt;}
.y11{bottom:357.853333pt;}
.y81{bottom:361.573333pt;}
.y4e{bottom:362.720000pt;}
.y62{bottom:368.933333pt;}
.y5c{bottom:372.733333pt;}
.y47{bottom:375.546667pt;}
.y7c{bottom:376.026667pt;}
.y6e{bottom:379.493333pt;}
.y8a{bottom:379.653333pt;}
.y54{bottom:385.440000pt;}
.y69{bottom:396.800000pt;}
.y80{bottom:401.573333pt;}
.y76{bottom:413.893333pt;}
.y33{bottom:417.506667pt;}
.y89{bottom:421.253333pt;}
.y10{bottom:422.853333pt;}
.y7b{bottom:424.066667pt;}
.y3{bottom:430.466667pt;}
.y2f{bottom:432.226667pt;}
.y61{bottom:432.933333pt;}
.y53{bottom:433.440000pt;}
.y5b{bottom:436.773333pt;}
.y32{bottom:445.213333pt;}
.y6d{bottom:449.440000pt;}
.y2a{bottom:456.413333pt;}
.y75{bottom:461.893333pt;}
.y2e{bottom:463.453333pt;}
.y7f{bottom:465.600000pt;}
.y68{bottom:473.626667pt;}
.y1c{bottom:474.813333pt;}
.y46{bottom:480.066667pt;}
.y31{bottom:486.813333pt;}
.yf{bottom:489.093333pt;}
.y26{bottom:489.853333pt;}
.y6c{bottom:492.640000pt;}
.y4d{bottom:496.346667pt;}
.y29{bottom:496.413333pt;}
.y60{bottom:498.720000pt;}
.ya{bottom:499.586667pt;}
.y5a{bottom:500.773333pt;}
.y7a{bottom:504.066667pt;}
.y52{bottom:505.466667pt;}
.y7e{bottom:505.600000pt;}
.y88{bottom:506.080000pt;}
.y1b{bottom:511.653333pt;}
.y45{bottom:521.666667pt;}
.y25{bottom:533.053333pt;}
.y28{bottom:536.413333pt;}
.ye{bottom:537.120000pt;}
.y30{bottom:542.333333pt;}
.y74{bottom:543.040000pt;}
.y67{bottom:543.746667pt;}
.y4c{bottom:547.266667pt;}
.y1a{bottom:548.453333pt;}
.y9{bottom:549.986667pt;}
.y79{bottom:552.093333pt;}
.y51{bottom:553.466667pt;}
.y5f{bottom:553.920000pt;}
.y87{bottom:554.106667pt;}
.y59{bottom:561.920000pt;}
.y44{bottom:563.293333pt;}
.y6b{bottom:563.706667pt;}
.y7d{bottom:569.626667pt;}
.y27{bottom:587.013333pt;}
.y24{bottom:591.173333pt;}
.y2d{bottom:594.693333pt;}
.y16{bottom:642.946667pt;}
.y19{bottom:651.586667pt;}
.y38{bottom:656.320000pt;}
.y4b{bottom:660.480000pt;}
.y66{bottom:661.280000pt;}
.y73{bottom:661.786667pt;}
.y58{bottom:662.533333pt;}
.y86{bottom:662.786667pt;}
.y8{bottom:662.853333pt;}
.y2b{bottom:667.360000pt;}
.y5e{bottom:668.066667pt;}
.h17{height:36.562500pt;}
.h12{height:38.818125pt;}
.h15{height:42.900000pt;}
.hf{height:43.453125pt;}
.h25{height:44.722500pt;}
.ha{height:50.062500pt;}
.h1{height:51.599500pt;}
.h10{height:53.302500pt;}
.h11{height:53.418375pt;}
.h1a{height:58.740000pt;}
.h19{height:58.873500pt;}
.h2{height:66.750000pt;}
.h21{height:66.883500pt;}
.h2a{height:72.796875pt;}
.h20{height:80.368750pt;}
.h1e{height:81.412500pt;}
.h1f{height:81.510000pt;}
.h1c{height:85.312500pt;}
.h24{height:87.156562pt;}
.h1d{height:89.212500pt;}
.h6{height:94.785000pt;}
.h13{height:96.120000pt;}
.h14{height:96.253500pt;}
.hc{height:100.125000pt;}
.h28{height:100.258500pt;}
.hd{height:104.130000pt;}
.h5{height:105.465000pt;}
.hb{height:111.472500pt;}
.h9{height:111.606000pt;}
.h7{height:118.815000pt;}
.h26{height:118.948500pt;}
.h22{height:122.152500pt;}
.h1b{height:122.286000pt;}
.h23{height:128.160000pt;}
.h8{height:133.500000pt;}
.h27{height:133.633500pt;}
.h18{height:148.185000pt;}
.he{height:148.318500pt;}
.h16{height:155.527500pt;}
.h4{height:183.562500pt;}
.h29{height:207.726000pt;}
.h3{height:222.411000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:43.647981pt;}
.x2{left:50.239981pt;}
.x3{left:53.247981pt;}
.x6{left:55.327981pt;}
.xa{left:56.447981pt;}
.x1a{left:66.239981pt;}
.x28{left:69.247981pt;}
.x12{left:71.199981pt;}
.x7{left:80.607981pt;}
.x22{left:87.487981pt;}
.x2b{left:89.247981pt;}
.x32{left:95.167981pt;}
.x30{left:104.607981pt;}
.x29{left:117.247981pt;}
.x14{left:118.719981pt;}
.x24{left:128.959981pt;}
.x25{left:136.773314pt;}
.xb{left:160.093314pt;}
.xe{left:179.999981pt;}
.x13{left:186.079981pt;}
.x21{left:206.239981pt;}
.x1d{left:239.359981pt;}
.x1c{left:282.079981pt;}
.xf{left:308.186648pt;}
.x23{left:319.199981pt;}
.x4{left:394.373314pt;}
.x26{left:478.399981pt;}
.x11{left:480.506648pt;}
.x27{left:526.399981pt;}
.x10{left:655.199981pt;}
.x15{left:679.199981pt;}
.x18{left:694.079981pt;}
.x1f{left:704.799981pt;}
.x20{left:730.399981pt;}
.x2e{left:768.959981pt;}
.x2c{left:771.359981pt;}
.x8{left:799.106648pt;}
.x16{left:807.546648pt;}
.x1b{left:848.933314pt;}
.xc{left:850.079981pt;}
.x2d{left:882.973314pt;}
.x19{left:892.346648pt;}
.x17{left:930.746648pt;}
.x2a{left:950.306648pt;}
.x2f{left:993.786648pt;}
.x31{left:1026.693314pt;}
.xd{left:1062.426648pt;}
.x9{left:1138.013314pt;}
.x33{left:1212.933314pt;}
.x5{left:1224.066648pt;}
.x1{left:1228.319981pt;}
}




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