
    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_c357c3d5a08eac0bb825a496.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_e601fb00ae0c6a3161df18cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_309736e7ac5c6c4cb4461363.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.733000;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_1ba2426290031ab95925d4e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.896000;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_d75e3799db1a685b81914d14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_41702cf316190c6f47fddace.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708000;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_a4390c9b64d3be063e720925.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_fb37d4b7c8cddda590ccd002.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.001000;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_1a4e8054e28d4563f889f271.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_a6dee1b84468c7b6816221ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_8252454c62291c28bed4ab16.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_5ead70386388d00f96bc44de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.693000;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_8f7d56ea26682c8bc581c93b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;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_d9d3e516b355d8271305a0c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.427000;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:fff;src:url('chunks/assets/font_0fbd036a2260ba83c71d1199.woff2')format("woff");}.fff{font-family:fff;line-height:0.638000;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:ff10;src:url('chunks/assets/font_ecd4fc824c1cc5a571b5d2dc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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:ff11;src:url('chunks/assets/font_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v5{vertical-align:-21.696000px;}
.v6{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.460000px;}
.v7{vertical-align:10.764000px;}
.v1{vertical-align:12.870000px;}
.v8{vertical-align:18.132000px;}
.v3{vertical-align:23.754000px;}
.v2{vertical-align:26.028000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001139px;}
.ls15{letter-spacing:0.003056px;}
.ls2{letter-spacing:0.003801px;}
.lsa{letter-spacing:0.004737px;}
.ls18{letter-spacing:1.946759px;}
.ls4{letter-spacing:2.984525px;}
.ls16{letter-spacing:2.984915px;}
.ls5{letter-spacing:2.990525px;}
.ls1c{letter-spacing:3.454878px;}
.lsd{letter-spacing:3.978993px;}
.ls20{letter-spacing:4.688690px;}
.ls1f{letter-spacing:7.135599px;}
.ls13{letter-spacing:15.934404px;}
.ls14{letter-spacing:15.941073px;}
.ls6{letter-spacing:16.273409px;}
.ls19{letter-spacing:16.641638px;}
.ls9{letter-spacing:18.865306px;}
.lsf{letter-spacing:19.080499px;}
.ls10{letter-spacing:19.921473px;}
.ls0{letter-spacing:19.926300px;}
.ls12{letter-spacing:19.927473px;}
.ls17{letter-spacing:21.949747px;}
.ls1b{letter-spacing:25.991587px;}
.ls1a{letter-spacing:26.402915px;}
.ls21{letter-spacing:26.403056px;}
.ls11{letter-spacing:27.401318px;}
.ls1{letter-spacing:27.714772px;}
.lsb{letter-spacing:28.753473px;}
.ls1e{letter-spacing:29.099412px;}
.lse{letter-spacing:29.911910px;}
.ls1d{letter-spacing:31.987611px;}
.ls3{letter-spacing:52.440772px;}
.ls8{letter-spacing:968.206404px;}
.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:-45.664082px;}
.ws4b{word-spacing:-42.637126px;}
.ws6{word-spacing:-20.906199px;}
.wsc{word-spacing:-19.510886px;}
.ws68{word-spacing:-18.183288px;}
.ws2{word-spacing:-16.605662px;}
.ws42{word-spacing:-2.869248px;}
.ws40{word-spacing:-2.367130px;}
.ws66{word-spacing:-2.151936px;}
.ws4d{word-spacing:-0.903273px;}
.ws1a{word-spacing:-0.645581px;}
.ws28{word-spacing:-0.430387px;}
.ws58{word-spacing:-0.314182px;}
.ws23{word-spacing:-0.047821px;}
.ws18{word-spacing:0.000000px;}
.ws44{word-spacing:1.075968px;}
.ws14{word-spacing:1.434624px;}
.ws61{word-spacing:1.721549px;}
.ws30{word-spacing:2.151936px;}
.ws32{word-spacing:2.367130px;}
.ws69{word-spacing:2.631275px;}
.ws1b{word-spacing:2.654054px;}
.ws5b{word-spacing:3.220366px;}
.ws6a{word-spacing:3.285821px;}
.ws1{word-spacing:3.299613px;}
.ws0{word-spacing:3.502850px;}
.ws56{word-spacing:3.547639px;}
.ws5e{word-spacing:3.586560px;}
.ws57{word-spacing:3.613094px;}
.wsa{word-spacing:3.678549px;}
.ws8{word-spacing:3.770185px;}
.ws3d{word-spacing:3.801754px;}
.ws5{word-spacing:3.835640px;}
.wsb{word-spacing:3.873485px;}
.ws47{word-spacing:3.874560px;}
.ws59{word-spacing:3.874912px;}
.ws5a{word-spacing:3.940367px;}
.ws62{word-spacing:4.016947px;}
.ws19{word-spacing:4.203448px;}
.ws46{word-spacing:4.232141px;}
.ws4f{word-spacing:4.333095px;}
.ws4e{word-spacing:4.398549px;}
.ws3c{word-spacing:4.447334px;}
.ws4{word-spacing:4.483200px;}
.ws49{word-spacing:4.529458px;}
.ws27{word-spacing:4.949453px;}
.ws2b{word-spacing:5.021184px;}
.ws41{word-spacing:5.308109px;}
.ws67{word-spacing:5.810227px;}
.ws9{word-spacing:6.121021px;}
.ws2f{word-spacing:6.168883px;}
.ws45{word-spacing:6.209543px;}
.ws1c{word-spacing:6.240614px;}
.ws4a{word-spacing:6.296733px;}
.ws33{word-spacing:6.384077px;}
.ws12{word-spacing:6.671002px;}
.ws35{word-spacing:6.742733px;}
.ws1d{word-spacing:6.814464px;}
.ws64{word-spacing:6.957926px;}
.ws55{word-spacing:7.147642px;}
.ws37{word-spacing:7.531776px;}
.ws52{word-spacing:7.605825px;}
.ws60{word-spacing:7.675238px;}
.ws15{word-spacing:7.818701px;}
.ws2a{word-spacing:7.890432px;}
.ws34{word-spacing:8.320819px;}
.ws29{word-spacing:8.536013px;}
.ws3e{word-spacing:8.751206px;}
.ws26{word-spacing:9.038131px;}
.ws20{word-spacing:9.109862px;}
.ws43{word-spacing:9.468518px;}
.ws10{word-spacing:9.755443px;}
.ws54{word-spacing:10.093099px;}
.ws50{word-spacing:10.158554px;}
.ws51{word-spacing:10.224009px;}
.ws5d{word-spacing:10.544486px;}
.ws63{word-spacing:10.974874px;}
.wsf{word-spacing:11.046605px;}
.ws39{word-spacing:11.164637px;}
.ws31{word-spacing:11.190067px;}
.ws4c{word-spacing:11.336737px;}
.ws5f{word-spacing:11.548723px;}
.ws25{word-spacing:12.018732px;}
.ws24{word-spacing:12.050842px;}
.wse{word-spacing:12.194304px;}
.ws38{word-spacing:12.997845px;}
.ws13{word-spacing:13.772390px;}
.ws11{word-spacing:13.844122px;}
.ws1f{word-spacing:14.417971px;}
.ws65{word-spacing:14.848358px;}
.ws1e{word-spacing:15.135283px;}
.wsd{word-spacing:15.493939px;}
.ws3a{word-spacing:15.996058px;}
.ws3b{word-spacing:16.014732px;}
.ws3f{word-spacing:17.102801px;}
.ws3{word-spacing:19.864773px;}
.ws53{word-spacing:22.922201px;}
.ws2e{word-spacing:25.034189px;}
.ws5c{word-spacing:25.448124px;}
.ws17{word-spacing:25.454124px;}
.ws48{word-spacing:26.050931px;}
.ws2c{word-spacing:26.346010px;}
.ws36{word-spacing:27.306150px;}
.ws2d{word-spacing:27.312150px;}
.ws16{word-spacing:27.371340px;}
.ws21{word-spacing:31.697926px;}
.ws7{word-spacing:44.838732px;}
._24{margin-left:-230.760000px;}
._23{margin-left:-32.792462px;}
._9{margin-left:-30.724658px;}
._a{margin-left:-29.230268px;}
._b{margin-left:-23.908917px;}
._3{margin-left:-7.473273px;}
._5{margin-left:-5.760005px;}
._1{margin-left:-3.945190px;}
._c{margin-left:-2.498646px;}
._0{margin-left:-1.374839px;}
._2{width:1.374839px;}
._8{width:2.638431px;}
._17{width:3.945216px;}
._7{width:5.978651px;}
._19{width:21.878016px;}
._21{width:23.091567px;}
._14{width:26.839244px;}
._16{width:29.194598px;}
._11{width:30.414029px;}
._1f{width:31.738115px;}
._1b{width:33.056137px;}
._e{width:34.419030px;}
._4{width:35.865600px;}
._1e{width:36.869837px;}
._d{width:38.507708px;}
._22{width:40.528128px;}
._18{width:42.177919px;}
._1a{width:44.118365px;}
._f{width:45.477581px;}
._13{width:47.199103px;}
._20{width:48.771215px;}
._10{width:53.018920px;}
._1d{width:56.093798px;}
._12{width:61.318230px;}
._15{width:62.556960px;}
._6{width:65.703133px;}
._1c{width:71.157350px;}
.fc1{color:rgb(46,49,146);}
.fc2{color:rgb(180,180,180);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:24.000000px;}
.fs1{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y9b{bottom:7.500000px;}
.y84{bottom:61.360500px;}
.y83{bottom:80.787000px;}
.y4a{bottom:86.400000px;}
.y23{bottom:97.417500px;}
.y61{bottom:97.668000px;}
.y82{bottom:100.213500px;}
.y49{bottom:110.311500px;}
.y22{bottom:115.821000px;}
.y81{bottom:119.641500px;}
.y60{bottom:121.579500px;}
.y9a{bottom:123.882000px;}
.y48{bottom:134.221500px;}
.y21{bottom:136.660500px;}
.y5f{bottom:145.489500px;}
.y99{bottom:146.401500px;}
.y80{bottom:147.642000px;}
.y47{bottom:158.131500px;}
.y7f{bottom:167.070000px;}
.y98{bottom:168.919500px;}
.y5e{bottom:169.399500px;}
.y46{bottom:182.041500px;}
.y7e{bottom:186.496500px;}
.y20{bottom:188.881500px;}
.y5d{bottom:193.309500px;}
.y97{bottom:194.530500px;}
.y7d{bottom:205.924500px;}
.y45{bottom:205.951500px;}
.y96{bottom:217.050000px;}
.y5c{bottom:217.219500px;}
.y7c{bottom:225.351000px;}
.y44{bottom:229.863000px;}
.y95{bottom:239.568000px;}
.y5b{bottom:241.131000px;}
.y7b{bottom:244.779000px;}
.y1f{bottom:245.967000px;}
.y43{bottom:253.773000px;}
.y94{bottom:262.087500px;}
.y7a{bottom:264.205500px;}
.y5a{bottom:271.018500px;}
.y42{bottom:277.683000px;}
.y79{bottom:283.632000px;}
.y93{bottom:287.697000px;}
.y1e{bottom:291.297000px;}
.y41{bottom:301.593000px;}
.y78{bottom:303.060000px;}
.y92{bottom:310.216500px;}
.y1d{bottom:315.207000px;}
.y59{bottom:317.538000px;}
.y77{bottom:322.486500px;}
.y40{bottom:325.504500px;}
.y91{bottom:332.734500px;}
.y58{bottom:335.470500px;}
.y1c{bottom:339.117000px;}
.y76{bottom:341.914500px;}
.y3f{bottom:349.414500px;}
.y57{bottom:353.403000px;}
.y90{bottom:355.254000px;}
.y8f{bottom:359.391000px;}
.y75{bottom:361.341000px;}
.y1b{bottom:363.028500px;}
.y56{bottom:371.335500px;}
.y3e{bottom:373.324500px;}
.y8e{bottom:379.431000px;}
.y74{bottom:380.769000px;}
.y1a{bottom:386.938500px;}
.y55{bottom:389.269500px;}
.y3d{bottom:397.234500px;}
.y73{bottom:400.195500px;}
.y8d{bottom:401.949000px;}
.y54{bottom:407.202000px;}
.y19{bottom:410.848500px;}
.y72{bottom:419.622000px;}
.y3c{bottom:421.144500px;}
.y53{bottom:425.134500px;}
.y8c{bottom:427.560000px;}
.y18{bottom:434.758500px;}
.y71{bottom:439.050000px;}
.y52{bottom:443.067000px;}
.y8b{bottom:450.079500px;}
.y3b{bottom:451.033500px;}
.y70{bottom:458.476500px;}
.y17{bottom:458.668500px;}
.y51{bottom:460.999500px;}
.y8a{bottom:475.689000px;}
.y6f{bottom:477.904500px;}
.y50{bottom:478.932000px;}
.y16{bottom:482.580000px;}
.y3a{bottom:496.525500px;}
.y4f{bottom:496.866000px;}
.y6e{bottom:497.331000px;}
.y89{bottom:498.208500px;}
.y15{bottom:506.490000px;}
.y4e{bottom:514.798500px;}
.y6d{bottom:516.759000px;}
.y39{bottom:520.435500px;}
.y88{bottom:520.726500px;}
.y4d{bottom:532.731000px;}
.y14{bottom:534.652500px;}
.y6c{bottom:536.185500px;}
.y38{bottom:544.345500px;}
.y87{bottom:546.337500px;}
.y4c{bottom:550.663500px;}
.y6b{bottom:555.612000px;}
.y37{bottom:568.257000px;}
.y4b{bottom:568.596000px;}
.y86{bottom:568.857000px;}
.y6a{bottom:575.040000px;}
.y13{bottom:576.495000px;}
.y85{bottom:591.375000px;}
.y36{bottom:592.167000px;}
.y69{bottom:594.466500px;}
.y12{bottom:609.372000px;}
.y68{bottom:613.894500px;}
.y35{bottom:616.077000px;}
.y34{bottom:639.987000px;}
.y67{bottom:646.771500px;}
.y11{bottom:650.661000px;}
.y33{bottom:669.874500px;}
.y10{bottom:670.213500px;}
.yf{bottom:689.767500px;}
.y32{bottom:699.763500px;}
.y66{bottom:703.857000px;}
.ye{bottom:709.320000px;}
.y65{bottom:727.767000px;}
.yd{bottom:729.703500px;}
.y31{bottom:745.255500px;}
.yc{bottom:750.088500px;}
.y64{bottom:751.677000px;}
.y30{bottom:769.165500px;}
.y63{bottom:775.587000px;}
.yb{bottom:788.593500px;}
.y2f{bottom:793.075500px;}
.y62{bottom:805.476000px;}
.ya{bottom:816.987000px;}
.y9{bottom:836.413500px;}
.y2e{bottom:840.897000px;}
.y8{bottom:855.840000px;}
.y2d{bottom:864.807000px;}
.y7{bottom:875.268000px;}
.y2c{bottom:888.717000px;}
.y6{bottom:903.661500px;}
.y2b{bottom:912.627000px;}
.y5{bottom:927.571500px;}
.y2a{bottom:936.538500px;}
.y29{bottom:960.448500px;}
.y28{bottom:984.358500px;}
.y27{bottom:1008.268500px;}
.y4{bottom:1019.995500px;}
.y2{bottom:1023.213000px;}
.y3{bottom:1025.916000px;}
.y26{bottom:1032.180000px;}
.y1{bottom:1042.639500px;}
.y25{bottom:1056.090000px;}
.y24{bottom:1095.531000px;}
.hb{height:23.141700px;}
.h10{height:25.031250px;}
.h2{height:29.833916px;}
.h1{height:44.831700px;}
.h9{height:49.090950px;}
.h4{height:50.211840px;}
.ha{height:53.798400px;}
.h7{height:54.550950px;}
.h5{height:54.911642px;}
.h3{height:57.701700px;}
.hd{height:58.689470px;}
.hf{height:58.695470px;}
.h8{height:59.613450px;}
.h6{height:59.619450px;}
.hc{height:66.482400px;}
.he{height:71.930400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:75.000000px;}
.x1{left:135.000000px;}
.xf{left:138.390000px;}
.x19{left:140.853000px;}
.x5{left:142.996500px;}
.x18{left:148.449000px;}
.xa{left:150.697500px;}
.x1e{left:155.086500px;}
.xd{left:162.328500px;}
.x7{left:168.429000px;}
.x8{left:193.426500px;}
.x11{left:201.958500px;}
.x13{left:209.593500px;}
.x9{left:216.439500px;}
.x2{left:235.914000px;}
.x12{left:237.673500px;}
.x3{left:242.493000px;}
.x4{left:250.794000px;}
.x1d{left:266.844000px;}
.x10{left:271.294500px;}
.x14{left:278.898000px;}
.x15{left:287.431500px;}
.x1c{left:300.501000px;}
.x20{left:307.843500px;}
.x21{left:360.439500px;}
.xe{left:374.559000px;}
.x16{left:382.780500px;}
.x6{left:392.235000px;}
.x22{left:398.655000px;}
.x1b{left:407.316000px;}
.x17{left:409.503000px;}
.xb{left:433.243500px;}
.x23{left:480.358500px;}
.x24{left:496.722000px;}
.xc{left:632.899500px;}
.x1a{left:733.663500px;}
.x1f{left:774.220500px;}
@media print{
.v5{vertical-align:-19.285333pt;}
.v6{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.853333pt;}
.v7{vertical-align:9.568000pt;}
.v1{vertical-align:11.440000pt;}
.v8{vertical-align:16.117333pt;}
.v3{vertical-align:21.114667pt;}
.v2{vertical-align:23.136000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001012pt;}
.ls15{letter-spacing:0.002717pt;}
.ls2{letter-spacing:0.003378pt;}
.lsa{letter-spacing:0.004210pt;}
.ls18{letter-spacing:1.730452pt;}
.ls4{letter-spacing:2.652911pt;}
.ls16{letter-spacing:2.653258pt;}
.ls5{letter-spacing:2.658245pt;}
.ls1c{letter-spacing:3.071003pt;}
.lsd{letter-spacing:3.536882pt;}
.ls20{letter-spacing:4.167724pt;}
.ls1f{letter-spacing:6.342755pt;}
.ls13{letter-spacing:14.163915pt;}
.ls14{letter-spacing:14.169842pt;}
.ls6{letter-spacing:14.465253pt;}
.ls19{letter-spacing:14.792567pt;}
.ls9{letter-spacing:16.769161pt;}
.lsf{letter-spacing:16.960444pt;}
.ls10{letter-spacing:17.707976pt;}
.ls0{letter-spacing:17.712267pt;}
.ls12{letter-spacing:17.713309pt;}
.ls17{letter-spacing:19.510886pt;}
.ls1b{letter-spacing:23.103633pt;}
.ls1a{letter-spacing:23.469258pt;}
.ls21{letter-spacing:23.469383pt;}
.ls11{letter-spacing:24.356727pt;}
.ls1{letter-spacing:24.635353pt;}
.lsb{letter-spacing:25.558642pt;}
.ls1e{letter-spacing:25.866144pt;}
.lse{letter-spacing:26.588365pt;}
.ls1d{letter-spacing:28.433432pt;}
.ls3{letter-spacing:46.614020pt;}
.ls8{letter-spacing:860.627915pt;}
.ws22{word-spacing:-40.590295pt;}
.ws4b{word-spacing:-37.899668pt;}
.ws6{word-spacing:-18.583288pt;}
.wsc{word-spacing:-17.343010pt;}
.ws68{word-spacing:-16.162923pt;}
.ws2{word-spacing:-14.760588pt;}
.ws42{word-spacing:-2.550443pt;}
.ws40{word-spacing:-2.104115pt;}
.ws66{word-spacing:-1.912832pt;}
.ws4d{word-spacing:-0.802910pt;}
.ws1a{word-spacing:-0.573850pt;}
.ws28{word-spacing:-0.382566pt;}
.ws58{word-spacing:-0.279273pt;}
.ws23{word-spacing:-0.042507pt;}
.ws18{word-spacing:0.000000pt;}
.ws44{word-spacing:0.956416pt;}
.ws14{word-spacing:1.275221pt;}
.ws61{word-spacing:1.530266pt;}
.ws30{word-spacing:1.912832pt;}
.ws32{word-spacing:2.104115pt;}
.ws69{word-spacing:2.338911pt;}
.ws1b{word-spacing:2.359159pt;}
.ws5b{word-spacing:2.862548pt;}
.ws6a{word-spacing:2.920730pt;}
.ws1{word-spacing:2.932989pt;}
.ws0{word-spacing:3.113645pt;}
.ws56{word-spacing:3.153457pt;}
.ws5e{word-spacing:3.188053pt;}
.ws57{word-spacing:3.211639pt;}
.wsa{word-spacing:3.269821pt;}
.ws8{word-spacing:3.351276pt;}
.ws3d{word-spacing:3.379337pt;}
.ws5{word-spacing:3.409457pt;}
.wsb{word-spacing:3.443098pt;}
.ws47{word-spacing:3.444053pt;}
.ws59{word-spacing:3.444367pt;}
.ws5a{word-spacing:3.502548pt;}
.ws62{word-spacing:3.570620pt;}
.ws19{word-spacing:3.736399pt;}
.ws46{word-spacing:3.761903pt;}
.ws4f{word-spacing:3.851640pt;}
.ws4e{word-spacing:3.909821pt;}
.ws3c{word-spacing:3.953186pt;}
.ws4{word-spacing:3.985067pt;}
.ws49{word-spacing:4.026185pt;}
.ws27{word-spacing:4.399514pt;}
.ws2b{word-spacing:4.463275pt;}
.ws41{word-spacing:4.718319pt;}
.ws67{word-spacing:5.164646pt;}
.ws9{word-spacing:5.440908pt;}
.ws2f{word-spacing:5.483452pt;}
.ws45{word-spacing:5.519594pt;}
.ws1c{word-spacing:5.547213pt;}
.ws4a{word-spacing:5.597096pt;}
.ws33{word-spacing:5.674735pt;}
.ws12{word-spacing:5.929779pt;}
.ws35{word-spacing:5.993540pt;}
.ws1d{word-spacing:6.057301pt;}
.ws64{word-spacing:6.184823pt;}
.ws55{word-spacing:6.353460pt;}
.ws37{word-spacing:6.694912pt;}
.ws52{word-spacing:6.760733pt;}
.ws60{word-spacing:6.822434pt;}
.ws15{word-spacing:6.949956pt;}
.ws2a{word-spacing:7.013717pt;}
.ws34{word-spacing:7.396284pt;}
.ws29{word-spacing:7.587567pt;}
.ws3e{word-spacing:7.778850pt;}
.ws26{word-spacing:8.033894pt;}
.ws20{word-spacing:8.097655pt;}
.ws43{word-spacing:8.416461pt;}
.ws10{word-spacing:8.671505pt;}
.ws54{word-spacing:8.971644pt;}
.ws50{word-spacing:9.029826pt;}
.ws51{word-spacing:9.088008pt;}
.ws5d{word-spacing:9.372877pt;}
.ws63{word-spacing:9.755443pt;}
.wsf{word-spacing:9.819204pt;}
.ws39{word-spacing:9.924122pt;}
.ws31{word-spacing:9.946726pt;}
.ws4c{word-spacing:10.077099pt;}
.ws5f{word-spacing:10.265532pt;}
.ws25{word-spacing:10.683317pt;}
.ws24{word-spacing:10.711859pt;}
.wse{word-spacing:10.839381pt;}
.ws38{word-spacing:11.553640pt;}
.ws13{word-spacing:12.242125pt;}
.ws11{word-spacing:12.305886pt;}
.ws1f{word-spacing:12.815974pt;}
.ws65{word-spacing:13.198541pt;}
.ws1e{word-spacing:13.453585pt;}
.wsd{word-spacing:13.772390pt;}
.ws3a{word-spacing:14.218718pt;}
.ws3b{word-spacing:14.235317pt;}
.ws3f{word-spacing:15.202490pt;}
.ws3{word-spacing:17.657576pt;}
.ws53{word-spacing:20.375290pt;}
.ws2e{word-spacing:22.252612pt;}
.ws5c{word-spacing:22.620555pt;}
.ws17{word-spacing:22.625888pt;}
.ws48{word-spacing:23.156383pt;}
.ws2c{word-spacing:23.418675pt;}
.ws36{word-spacing:24.272133pt;}
.ws2d{word-spacing:24.277466pt;}
.ws16{word-spacing:24.330080pt;}
.ws21{word-spacing:28.175935pt;}
.ws7{word-spacing:39.856651pt;}
._24{margin-left:-205.120000pt;}
._23{margin-left:-29.148855pt;}
._9{margin-left:-27.310807pt;}
._a{margin-left:-25.982461pt;}
._b{margin-left:-21.252370pt;}
._3{margin-left:-6.642910pt;}
._5{margin-left:-5.120004pt;}
._1{margin-left:-3.506835pt;}
._c{margin-left:-2.221019pt;}
._0{margin-left:-1.222079pt;}
._2{width:1.222079pt;}
._8{width:2.345272pt;}
._17{width:3.506859pt;}
._7{width:5.314356pt;}
._19{width:19.447125pt;}
._21{width:20.525837pt;}
._14{width:23.857106pt;}
._16{width:25.950754pt;}
._11{width:27.034692pt;}
._1f{width:28.211658pt;}
._1b{width:29.383233pt;}
._e{width:30.594693pt;}
._4{width:31.880533pt;}
._1e{width:32.773188pt;}
._d{width:34.229074pt;}
._22{width:36.025003pt;}
._18{width:37.491484pt;}
._1a{width:39.216324pt;}
._f{width:40.424516pt;}
._13{width:41.954758pt;}
._20{width:43.352191pt;}
._10{width:47.127929pt;}
._1d{width:49.861154pt;}
._12{width:54.505093pt;}
._15{width:55.606187pt;}
._6{width:58.402785pt;}
._1c{width:63.250978pt;}
.fs5{font-size:21.333333pt;}
.fs1{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:6.666667pt;}
.y84{bottom:54.542667pt;}
.y83{bottom:71.810667pt;}
.y4a{bottom:76.800000pt;}
.y23{bottom:86.593333pt;}
.y61{bottom:86.816000pt;}
.y82{bottom:89.078667pt;}
.y49{bottom:98.054667pt;}
.y22{bottom:102.952000pt;}
.y81{bottom:106.348000pt;}
.y60{bottom:108.070667pt;}
.y9a{bottom:110.117333pt;}
.y48{bottom:119.308000pt;}
.y21{bottom:121.476000pt;}
.y5f{bottom:129.324000pt;}
.y99{bottom:130.134667pt;}
.y80{bottom:131.237333pt;}
.y47{bottom:140.561333pt;}
.y7f{bottom:148.506667pt;}
.y98{bottom:150.150667pt;}
.y5e{bottom:150.577333pt;}
.y46{bottom:161.814667pt;}
.y7e{bottom:165.774667pt;}
.y20{bottom:167.894667pt;}
.y5d{bottom:171.830667pt;}
.y97{bottom:172.916000pt;}
.y7d{bottom:183.044000pt;}
.y45{bottom:183.068000pt;}
.y96{bottom:192.933333pt;}
.y5c{bottom:193.084000pt;}
.y7c{bottom:200.312000pt;}
.y44{bottom:204.322667pt;}
.y95{bottom:212.949333pt;}
.y5b{bottom:214.338667pt;}
.y7b{bottom:217.581333pt;}
.y1f{bottom:218.637333pt;}
.y43{bottom:225.576000pt;}
.y94{bottom:232.966667pt;}
.y7a{bottom:234.849333pt;}
.y5a{bottom:240.905333pt;}
.y42{bottom:246.829333pt;}
.y79{bottom:252.117333pt;}
.y93{bottom:255.730667pt;}
.y1e{bottom:258.930667pt;}
.y41{bottom:268.082667pt;}
.y78{bottom:269.386667pt;}
.y92{bottom:275.748000pt;}
.y1d{bottom:280.184000pt;}
.y59{bottom:282.256000pt;}
.y77{bottom:286.654667pt;}
.y40{bottom:289.337333pt;}
.y91{bottom:295.764000pt;}
.y58{bottom:298.196000pt;}
.y1c{bottom:301.437333pt;}
.y76{bottom:303.924000pt;}
.y3f{bottom:310.590667pt;}
.y57{bottom:314.136000pt;}
.y90{bottom:315.781333pt;}
.y8f{bottom:319.458667pt;}
.y75{bottom:321.192000pt;}
.y1b{bottom:322.692000pt;}
.y56{bottom:330.076000pt;}
.y3e{bottom:331.844000pt;}
.y8e{bottom:337.272000pt;}
.y74{bottom:338.461333pt;}
.y1a{bottom:343.945333pt;}
.y55{bottom:346.017333pt;}
.y3d{bottom:353.097333pt;}
.y73{bottom:355.729333pt;}
.y8d{bottom:357.288000pt;}
.y54{bottom:361.957333pt;}
.y19{bottom:365.198667pt;}
.y72{bottom:372.997333pt;}
.y3c{bottom:374.350667pt;}
.y53{bottom:377.897333pt;}
.y8c{bottom:380.053333pt;}
.y18{bottom:386.452000pt;}
.y71{bottom:390.266667pt;}
.y52{bottom:393.837333pt;}
.y8b{bottom:400.070667pt;}
.y3b{bottom:400.918667pt;}
.y70{bottom:407.534667pt;}
.y17{bottom:407.705333pt;}
.y51{bottom:409.777333pt;}
.y8a{bottom:422.834667pt;}
.y6f{bottom:424.804000pt;}
.y50{bottom:425.717333pt;}
.y16{bottom:428.960000pt;}
.y3a{bottom:441.356000pt;}
.y4f{bottom:441.658667pt;}
.y6e{bottom:442.072000pt;}
.y89{bottom:442.852000pt;}
.y15{bottom:450.213333pt;}
.y4e{bottom:457.598667pt;}
.y6d{bottom:459.341333pt;}
.y39{bottom:462.609333pt;}
.y88{bottom:462.868000pt;}
.y4d{bottom:473.538667pt;}
.y14{bottom:475.246667pt;}
.y6c{bottom:476.609333pt;}
.y38{bottom:483.862667pt;}
.y87{bottom:485.633333pt;}
.y4c{bottom:489.478667pt;}
.y6b{bottom:493.877333pt;}
.y37{bottom:505.117333pt;}
.y4b{bottom:505.418667pt;}
.y86{bottom:505.650667pt;}
.y6a{bottom:511.146667pt;}
.y13{bottom:512.440000pt;}
.y85{bottom:525.666667pt;}
.y36{bottom:526.370667pt;}
.y69{bottom:528.414667pt;}
.y12{bottom:541.664000pt;}
.y68{bottom:545.684000pt;}
.y35{bottom:547.624000pt;}
.y34{bottom:568.877333pt;}
.y67{bottom:574.908000pt;}
.y11{bottom:578.365333pt;}
.y33{bottom:595.444000pt;}
.y10{bottom:595.745333pt;}
.yf{bottom:613.126667pt;}
.y32{bottom:622.012000pt;}
.y66{bottom:625.650667pt;}
.ye{bottom:630.506667pt;}
.y65{bottom:646.904000pt;}
.yd{bottom:648.625333pt;}
.y31{bottom:662.449333pt;}
.yc{bottom:666.745333pt;}
.y64{bottom:668.157333pt;}
.y30{bottom:683.702667pt;}
.y63{bottom:689.410667pt;}
.yb{bottom:700.972000pt;}
.y2f{bottom:704.956000pt;}
.y62{bottom:715.978667pt;}
.ya{bottom:726.210667pt;}
.y9{bottom:743.478667pt;}
.y2e{bottom:747.464000pt;}
.y8{bottom:760.746667pt;}
.y2d{bottom:768.717333pt;}
.y7{bottom:778.016000pt;}
.y2c{bottom:789.970667pt;}
.y6{bottom:803.254667pt;}
.y2b{bottom:811.224000pt;}
.y5{bottom:824.508000pt;}
.y2a{bottom:832.478667pt;}
.y29{bottom:853.732000pt;}
.y28{bottom:874.985333pt;}
.y27{bottom:896.238667pt;}
.y4{bottom:906.662667pt;}
.y2{bottom:909.522667pt;}
.y3{bottom:911.925333pt;}
.y26{bottom:917.493333pt;}
.y1{bottom:926.790667pt;}
.y25{bottom:938.746667pt;}
.y24{bottom:973.805333pt;}
.hb{height:20.570400pt;}
.h10{height:22.250000pt;}
.h2{height:26.519037pt;}
.h1{height:39.850400pt;}
.h9{height:43.636400pt;}
.h4{height:44.632747pt;}
.ha{height:47.820800pt;}
.h7{height:48.489733pt;}
.h5{height:48.810349pt;}
.h3{height:51.290400pt;}
.hd{height:52.168418pt;}
.hf{height:52.173751pt;}
.h8{height:52.989733pt;}
.h6{height:52.995067pt;}
.hc{height:59.095467pt;}
.he{height:63.938133pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:66.666667pt;}
.x1{left:120.000000pt;}
.xf{left:123.013333pt;}
.x19{left:125.202667pt;}
.x5{left:127.108000pt;}
.x18{left:131.954667pt;}
.xa{left:133.953333pt;}
.x1e{left:137.854667pt;}
.xd{left:144.292000pt;}
.x7{left:149.714667pt;}
.x8{left:171.934667pt;}
.x11{left:179.518667pt;}
.x13{left:186.305333pt;}
.x9{left:192.390667pt;}
.x2{left:209.701333pt;}
.x12{left:211.265333pt;}
.x3{left:215.549333pt;}
.x4{left:222.928000pt;}
.x1d{left:237.194667pt;}
.x10{left:241.150667pt;}
.x14{left:247.909333pt;}
.x15{left:255.494667pt;}
.x1c{left:267.112000pt;}
.x20{left:273.638667pt;}
.x21{left:320.390667pt;}
.xe{left:332.941333pt;}
.x16{left:340.249333pt;}
.x6{left:348.653333pt;}
.x22{left:354.360000pt;}
.x1b{left:362.058667pt;}
.x17{left:364.002667pt;}
.xb{left:385.105333pt;}
.x23{left:426.985333pt;}
.x24{left:441.530667pt;}
.xc{left:562.577333pt;}
.x1a{left:652.145333pt;}
.x1f{left:688.196000pt;}
}




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