
    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_ef5cb17d25aad8b073cb71f0.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_9fe551c93d7040d41238f9b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_cc4449f5c2a8024f92e34ef0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_fc43b16930ca2bc96d0e6db1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;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_e4d1708439c095a739de20e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.581000;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_e1aeab3c2a4a9f07040bc2d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.478000;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_e0570af031919cd09d0c0886.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.881000;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_9dd8bb61bfb6059496a0bca0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.392000;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_8d8a460b501e9094ffc7c74a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_bf17858c1609eba80c4593a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;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_c4c2fa3af5c5314c54344938.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.515000;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_4612b3bec4f56dcb149d14eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_c4c16be0b8e22f2bc0fa675a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_55dfe4f562a7fd3f8a76d1e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.234000;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_edac5da03f68d5acd2ea6cfc.woff2')format("woff");}.fff{font-family:fff;line-height:0.579000;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_8f4498f3664850ed4ba9f319.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.718000;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(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012000px;}
.ls0{letter-spacing:0.037800px;}
.ls10{letter-spacing:0.038400px;}
.lsf{letter-spacing:0.060001px;}
.ls11{letter-spacing:0.081599px;}
.ls8{letter-spacing:0.108001px;}
.ls6{letter-spacing:0.114001px;}
.ls5{letter-spacing:0.174002px;}
.ls4{letter-spacing:0.186002px;}
.ls3{letter-spacing:10.243072px;}
.lsa{letter-spacing:13.038130px;}
.lsd{letter-spacing:13.110131px;}
.ls7{letter-spacing:13.374134px;}
.ls9{letter-spacing:13.380134px;}
.lsc{letter-spacing:13.452135px;}
.ls2{letter-spacing:20.783740px;}
.ls1{letter-spacing:21.124536px;}
.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;}
}
.ws29{word-spacing:-13.098131px;}
.ws33{word-spacing:-10.291071px;}
.ws20{word-spacing:-0.060001px;}
.ws3{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.047999px;}
.ws4f{word-spacing:0.000000px;}
.ws3b{word-spacing:9.599880px;}
.ws36{word-spacing:9.623880px;}
.ws4e{word-spacing:9.667079px;}
.ws96{word-spacing:9.705479px;}
.ws37{word-spacing:9.739078px;}
.ws42{word-spacing:9.815877px;}
.ws12{word-spacing:9.820677px;}
.ws35{word-spacing:9.825477px;}
.wsa0{word-spacing:9.830277px;}
.ws4d{word-spacing:9.839877px;}
.ws3d{word-spacing:9.849477px;}
.ws8c{word-spacing:9.859077px;}
.wsa5{word-spacing:9.868677px;}
.ws39{word-spacing:9.873477px;}
.ws10{word-spacing:9.878277px;}
.ws92{word-spacing:9.892676px;}
.ws9d{word-spacing:9.902276px;}
.ws32{word-spacing:9.907076px;}
.ws45{word-spacing:9.916676px;}
.ws3f{word-spacing:9.921476px;}
.ws46{word-spacing:9.926276px;}
.ws86{word-spacing:9.931076px;}
.ws15{word-spacing:9.940676px;}
.ws9c{word-spacing:9.950276px;}
.ws4c{word-spacing:9.974275px;}
.wsa3{word-spacing:9.979075px;}
.wsd{word-spacing:9.983875px;}
.ws9f{word-spacing:9.985996px;}
.ws94{word-spacing:9.993475px;}
.wsc{word-spacing:10.007875px;}
.ws13{word-spacing:10.012675px;}
.ws49{word-spacing:10.022275px;}
.ws8b{word-spacing:10.031875px;}
.ws44{word-spacing:10.036675px;}
.ws3e{word-spacing:10.046274px;}
.ws4a{word-spacing:10.051074px;}
.ws4b{word-spacing:10.055874px;}
.ws41{word-spacing:10.079874px;}
.wse{word-spacing:10.123073px;}
.ws38{word-spacing:10.137473px;}
.ws9e{word-spacing:10.151873px;}
.ws87{word-spacing:10.161473px;}
.ws11{word-spacing:10.171073px;}
.ws43{word-spacing:10.175873px;}
.ws34{word-spacing:10.180673px;}
.ws8a{word-spacing:10.195073px;}
.ws97{word-spacing:10.204672px;}
.ws91{word-spacing:10.209472px;}
.ws9b{word-spacing:10.228672px;}
.ws8f{word-spacing:10.267072px;}
.ws89{word-spacing:10.271872px;}
.ws8d{word-spacing:10.276672px;}
.ws8e{word-spacing:10.300671px;}
.ws48{word-spacing:10.319871px;}
.ws88{word-spacing:10.329471px;}
.wsa1{word-spacing:10.339071px;}
.ws95{word-spacing:10.348671px;}
.ws93{word-spacing:10.353471px;}
.wsa2{word-spacing:10.363070px;}
.ws3c{word-spacing:10.425470px;}
.ws40{word-spacing:10.444669px;}
.ws47{word-spacing:10.459069px;}
.ws3a{word-spacing:10.463869px;}
.ws98{word-spacing:10.468669px;}
.ws14{word-spacing:10.497469px;}
.ws90{word-spacing:10.502269px;}
.wsa4{word-spacing:10.531068px;}
.wsf{word-spacing:10.535868px;}
.ws99{word-spacing:10.569468px;}
.wsb{word-spacing:11.556000px;}
.ws6{word-spacing:11.599200px;}
.ws9{word-spacing:11.631600px;}
.ws2{word-spacing:11.674800px;}
.wsa{word-spacing:11.761200px;}
.ws7{word-spacing:11.820600px;}
.ws8{word-spacing:11.842200px;}
.ws5{word-spacing:11.847600px;}
.ws4{word-spacing:11.896200px;}
.ws18{word-spacing:12.340500px;}
.ws1a{word-spacing:12.357600px;}
.ws16{word-spacing:12.420300px;}
.ws17{word-spacing:12.448800px;}
.ws19{word-spacing:12.614100px;}
.ws69{word-spacing:12.690127px;}
.ws7c{word-spacing:12.708127px;}
.ws7f{word-spacing:12.786128px;}
.ws2e{word-spacing:12.936129px;}
.ws77{word-spacing:12.960130px;}
.ws1b{word-spacing:12.984130px;}
.ws5b{word-spacing:12.996130px;}
.ws5d{word-spacing:13.002130px;}
.ws2f{word-spacing:13.008130px;}
.ws72{word-spacing:13.014130px;}
.ws6a{word-spacing:13.020130px;}
.ws1e{word-spacing:13.026130px;}
.ws53{word-spacing:13.032130px;}
.ws76{word-spacing:13.038130px;}
.ws2b{word-spacing:13.044130px;}
.ws2c{word-spacing:13.050130px;}
.ws31{word-spacing:13.056131px;}
.ws56{word-spacing:13.062131px;}
.ws58{word-spacing:13.068131px;}
.ws6f{word-spacing:13.074131px;}
.ws24{word-spacing:13.080131px;}
.ws1f{word-spacing:13.086131px;}
.ws28{word-spacing:13.104131px;}
.ws26{word-spacing:13.110131px;}
.ws7d{word-spacing:13.122131px;}
.ws63{word-spacing:13.128131px;}
.ws51{word-spacing:13.134131px;}
.ws5a{word-spacing:13.140131px;}
.ws27{word-spacing:13.146131px;}
.ws1c{word-spacing:13.152132px;}
.ws30{word-spacing:13.170132px;}
.ws25{word-spacing:13.176132px;}
.ws21{word-spacing:13.182132px;}
.ws65{word-spacing:13.188132px;}
.ws2d{word-spacing:13.194132px;}
.ws70{word-spacing:13.206132px;}
.ws2a{word-spacing:13.218132px;}
.ws52{word-spacing:13.224132px;}
.ws5c{word-spacing:13.230132px;}
.ws6e{word-spacing:13.242132px;}
.ws60{word-spacing:13.248132px;}
.ws5e{word-spacing:13.260133px;}
.ws68{word-spacing:13.284133px;}
.ws1d{word-spacing:13.296133px;}
.ws64{word-spacing:13.308133px;}
.ws79{word-spacing:13.320133px;}
.ws23{word-spacing:13.332133px;}
.ws54{word-spacing:13.338133px;}
.ws82{word-spacing:13.350134px;}
.ws50{word-spacing:13.356134px;}
.ws67{word-spacing:13.362134px;}
.ws6b{word-spacing:13.368134px;}
.ws75{word-spacing:13.374134px;}
.ws80{word-spacing:13.380134px;}
.ws74{word-spacing:13.386134px;}
.ws73{word-spacing:13.392134px;}
.ws83{word-spacing:13.410134px;}
.ws5f{word-spacing:13.422134px;}
.ws71{word-spacing:13.440134px;}
.ws6c{word-spacing:13.446134px;}
.ws81{word-spacing:13.452135px;}
.ws57{word-spacing:13.464135px;}
.ws66{word-spacing:13.470135px;}
.ws7b{word-spacing:13.494135px;}
.ws55{word-spacing:13.506135px;}
.ws7e{word-spacing:13.536135px;}
.ws22{word-spacing:13.542135px;}
.ws78{word-spacing:13.554136px;}
.ws61{word-spacing:13.560136px;}
.ws59{word-spacing:13.578136px;}
.ws7a{word-spacing:13.608136px;}
.ws62{word-spacing:13.626136px;}
.ws6d{word-spacing:13.698137px;}
.ws84{word-spacing:15.631070px;}
.ws1{word-spacing:26.268131px;}
.ws85{word-spacing:59.821652px;}
.ws9a{word-spacing:59.860052px;}
._6{margin-left:-13.250518px;}
._7{margin-left:-12.162122px;}
._a{margin-left:-4.286346px;}
._2{margin-left:-1.420782px;}
._3{width:1.436400px;}
._1{width:9.388683px;}
._0{width:11.150261px;}
._b{width:12.444124px;}
._4{width:13.520400px;}
._5{width:14.547881px;}
._c{width:20.860539px;}
._8{width:47.687404px;}
._9{width:1777.398582px;}
.fc3{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.995200px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000600px;}
.fs7{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y29{bottom:54.000000px;}
.ya6{bottom:124.496250px;}
.y48{bottom:124.504395px;}
.y79{bottom:125.075490px;}
.y28{bottom:136.737225px;}
.ya5{bottom:138.783272px;}
.y47{bottom:141.001789px;}
.y78{bottom:144.550184px;}
.ya4{bottom:152.985094px;}
.y27{bottom:156.211920px;}
.y46{bottom:157.499182px;}
.y77{bottom:164.108880px;}
.ya3{bottom:172.458451px;}
.y45{bottom:173.996576px;}
.y26{bottom:175.686615px;}
.y76{bottom:183.583575px;}
.ya2{bottom:186.745472px;}
.y44{bottom:190.493970px;}
.y25{bottom:195.245311px;}
.ya1{bottom:201.032493px;}
.y75{bottom:203.058269px;}
.y43{bottom:206.991364px;}
.y24{bottom:214.720005px;}
.ya0{bottom:220.505953px;}
.y74{bottom:222.616965px;}
.y42{bottom:223.488757px;}
.y23{bottom:234.194700px;}
.y9f{bottom:234.707776px;}
.y41{bottom:239.986151px;}
.y73{bottom:242.091660px;}
.y22{bottom:253.669395px;}
.y9e{bottom:254.266331px;}
.y40{bottom:256.483545px;}
.y72{bottom:261.566355px;}
.y9d{bottom:268.468154px;}
.y3f{bottom:272.980939px;}
.y21{bottom:273.228090px;}
.y71{bottom:281.125050px;}
.y9c{bottom:288.026709px;}
.y3e{bottom:289.478333px;}
.y20{bottom:292.702785px;}
.y70{bottom:300.599745px;}
.y9b{bottom:302.228532px;}
.y3d{bottom:305.975726px;}
.y1f{bottom:312.177480px;}
.y9a{bottom:316.515553px;}
.y6f{bottom:320.074440px;}
.y3c{bottom:322.473120px;}
.y1e{bottom:331.736175px;}
.y99{bottom:335.988910px;}
.y6e{bottom:339.549134px;}
.y3b{bottom:347.984801px;}
.y98{bottom:350.275931px;}
.y1d{bottom:351.210870px;}
.y6d{bottom:359.107830px;}
.y3a{bottom:364.482195px;}
.y97{bottom:369.749288px;}
.y1c{bottom:370.685565px;}
.y6c{bottom:378.582525px;}
.y96{bottom:384.036309px;}
.y39{bottom:389.993876px;}
.y1b{bottom:390.244261px;}
.y6b{bottom:398.057219px;}
.y95{bottom:398.238132px;}
.y38{bottom:406.491270px;}
.y1a{bottom:409.718955px;}
.y6a{bottom:417.615915px;}
.y94{bottom:417.711488px;}
.y19{bottom:429.193650px;}
.y93{bottom:431.998510px;}
.y37{bottom:432.002951px;}
.y69{bottom:437.090610px;}
.y92{bottom:446.285531px;}
.y36{bottom:448.500345px;}
.y68{bottom:456.565305px;}
.y35{bottom:464.997739px;}
.y91{bottom:465.760088px;}
.y67{bottom:476.124000px;}
.y90{bottom:479.961910px;}
.y34{bottom:481.495132px;}
.y8f{bottom:494.248932px;}
.y66{bottom:495.598695px;}
.y33{bottom:497.992526px;}
.y8e{bottom:513.722288px;}
.y32{bottom:514.489920px;}
.y65{bottom:515.073390px;}
.y8d{bottom:528.009310px;}
.y64{bottom:534.632085px;}
.y31{bottom:540.001601px;}
.y8c{bottom:542.211132px;}
.y18{bottom:543.998250px;}
.y63{bottom:554.106780px;}
.y8b{bottom:561.769688px;}
.y17{bottom:564.917250px;}
.y30{bottom:565.513282px;}
.y62{bottom:573.581475px;}
.y8a{bottom:575.971510px;}
.y2f{bottom:582.010676px;}
.y16{bottom:585.921750px;}
.y89{bottom:590.258531px;}
.y61{bottom:593.056169px;}
.y2e{bottom:598.508070px;}
.y15{bottom:606.926250px;}
.y88{bottom:609.731888px;}
.y60{bottom:612.614865px;}
.y2d{bottom:615.005463px;}
.y87{bottom:624.018909px;}
.y14{bottom:627.930750px;}
.y2c{bottom:631.502857px;}
.y5f{bottom:632.089560px;}
.y86{bottom:643.492266px;}
.y13{bottom:648.935250px;}
.y5e{bottom:651.564254px;}
.y2b{bottom:656.078550px;}
.y85{bottom:657.779287px;}
.y5d{bottom:671.122950px;}
.y84{bottom:677.253844px;}
.y12{bottom:681.930450px;}
.y5c{bottom:690.597645px;}
.y83{bottom:696.727201px;}
.y5b{bottom:710.072340px;}
.y82{bottom:711.014222px;}
.y5a{bottom:729.631035px;}
.y81{bottom:730.487579px;}
.y80{bottom:744.774600px;}
.y11{bottom:744.945638px;}
.y59{bottom:749.105730px;}
.y7f{bottom:765.013950px;}
.y58{bottom:768.580425px;}
.y10{bottom:774.964463px;}
.y2a{bottom:784.062900px;}
.y57{bottom:788.055119px;}
.yf{bottom:789.931876px;}
.ye{bottom:804.983288px;}
.y56{bottom:807.613815px;}
.y7e{bottom:817.057065px;}
.yd{bottom:819.950700px;}
.y55{bottom:827.088510px;}
.yc{bottom:835.002112px;}
.y7d{bottom:836.531760px;}
.y54{bottom:846.563204px;}
.yb{bottom:849.968325px;}
.y7c{bottom:856.090455px;}
.ya{bottom:864.935738px;}
.y53{bottom:866.121900px;}
.y7b{bottom:875.565150px;}
.y9{bottom:879.987150px;}
.y52{bottom:885.596595px;}
.y7a{bottom:901.077000px;}
.y51{bottom:905.071290px;}
.y8{bottom:906.944700px;}
.y6{bottom:906.945300px;}
.y7{bottom:912.982500px;}
.y4{bottom:923.442300px;}
.y50{bottom:924.629985px;}
.y5{bottom:929.480100px;}
.y4f{bottom:944.104680px;}
.y3{bottom:960.943762px;}
.y4e{bottom:963.579375px;}
.y4d{bottom:983.138070px;}
.y2{bottom:998.446950px;}
.yab{bottom:1000.827628px;}
.y4c{bottom:1002.612765px;}
.yaa{bottom:1015.114650px;}
.y4b{bottom:1022.087460px;}
.ya9{bottom:1029.316472px;}
.y1{bottom:1035.949350px;}
.y4a{bottom:1041.562154px;}
.ya8{bottom:1048.789829px;}
.y49{bottom:1061.120850px;}
.ya7{bottom:1063.076850px;}
.h4{height:26.528462px;}
.ha{height:34.943563px;}
.h1{height:37.199535px;}
.hc{height:37.203921px;}
.h3{height:39.798000px;}
.h5{height:41.711479px;}
.h8{height:42.720427px;}
.h9{height:42.960430px;}
.h7{height:44.175000px;}
.hb{height:53.063558px;}
.h6{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:54.000000px;}
.x16{left:71.433000px;}
.x15{left:84.018900px;}
.x1{left:300.018750px;}
.x17{left:306.651900px;}
.x13{left:317.961929px;}
.x18{left:331.483190px;}
.xa{left:396.538500px;}
.xb{left:402.151050px;}
.x2{left:419.329050px;}
.x3{left:424.941600px;}
.xc{left:503.773050px;}
.xd{left:517.719600px;}
.x4{left:567.552600px;}
.x5{left:573.165150px;}
.xe{left:603.779400px;}
.xf{left:609.306900px;}
.x6{left:712.459650px;}
.x7{left:718.072200px;}
.x10{left:724.195050px;}
.x11{left:729.807750px;}
.x12{left:798.944700px;}
.x8{left:834.576150px;}
.x9{left:840.188850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.010667pt;}
.ls0{letter-spacing:0.033600pt;}
.ls10{letter-spacing:0.034133pt;}
.lsf{letter-spacing:0.053334pt;}
.ls11{letter-spacing:0.072532pt;}
.ls8{letter-spacing:0.096001pt;}
.ls6{letter-spacing:0.101334pt;}
.ls5{letter-spacing:0.154668pt;}
.ls4{letter-spacing:0.165335pt;}
.ls3{letter-spacing:9.104953pt;}
.lsa{letter-spacing:11.589449pt;}
.lsd{letter-spacing:11.653450pt;}
.ls7{letter-spacing:11.888119pt;}
.ls9{letter-spacing:11.893452pt;}
.lsc{letter-spacing:11.957453pt;}
.ls2{letter-spacing:18.474436pt;}
.ls1{letter-spacing:18.777365pt;}
.ws29{word-spacing:-11.642783pt;}
.ws33{word-spacing:-9.147619pt;}
.ws20{word-spacing:-0.053334pt;}
.ws3{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042666pt;}
.ws4f{word-spacing:0.000000pt;}
.ws3b{word-spacing:8.533227pt;}
.ws36{word-spacing:8.554560pt;}
.ws4e{word-spacing:8.592959pt;}
.ws96{word-spacing:8.627092pt;}
.ws37{word-spacing:8.656958pt;}
.ws42{word-spacing:8.725224pt;}
.ws12{word-spacing:8.729491pt;}
.ws35{word-spacing:8.733757pt;}
.wsa0{word-spacing:8.738024pt;}
.ws4d{word-spacing:8.746557pt;}
.ws3d{word-spacing:8.755091pt;}
.ws8c{word-spacing:8.763624pt;}
.wsa5{word-spacing:8.772157pt;}
.ws39{word-spacing:8.776424pt;}
.ws10{word-spacing:8.780690pt;}
.ws92{word-spacing:8.793490pt;}
.ws9d{word-spacing:8.802023pt;}
.ws32{word-spacing:8.806290pt;}
.ws45{word-spacing:8.814823pt;}
.ws3f{word-spacing:8.819090pt;}
.ws46{word-spacing:8.823356pt;}
.ws86{word-spacing:8.827623pt;}
.ws15{word-spacing:8.836156pt;}
.ws9c{word-spacing:8.844689pt;}
.ws4c{word-spacing:8.866023pt;}
.wsa3{word-spacing:8.870289pt;}
.wsd{word-spacing:8.874556pt;}
.ws9f{word-spacing:8.876441pt;}
.ws94{word-spacing:8.883089pt;}
.wsc{word-spacing:8.895889pt;}
.ws13{word-spacing:8.900155pt;}
.ws49{word-spacing:8.908689pt;}
.ws8b{word-spacing:8.917222pt;}
.ws44{word-spacing:8.921488pt;}
.ws3e{word-spacing:8.930022pt;}
.ws4a{word-spacing:8.934288pt;}
.ws4b{word-spacing:8.938555pt;}
.ws41{word-spacing:8.959888pt;}
.wse{word-spacing:8.998288pt;}
.ws38{word-spacing:9.011087pt;}
.ws9e{word-spacing:9.023887pt;}
.ws87{word-spacing:9.032420pt;}
.ws11{word-spacing:9.040954pt;}
.ws43{word-spacing:9.045220pt;}
.ws34{word-spacing:9.049487pt;}
.ws8a{word-spacing:9.062287pt;}
.ws97{word-spacing:9.070820pt;}
.ws91{word-spacing:9.075087pt;}
.ws9b{word-spacing:9.092153pt;}
.ws8f{word-spacing:9.126286pt;}
.ws89{word-spacing:9.130553pt;}
.ws8d{word-spacing:9.134819pt;}
.ws8e{word-spacing:9.156152pt;}
.ws48{word-spacing:9.173219pt;}
.ws88{word-spacing:9.181752pt;}
.wsa1{word-spacing:9.190285pt;}
.ws95{word-spacing:9.198818pt;}
.ws93{word-spacing:9.203085pt;}
.wsa2{word-spacing:9.211618pt;}
.ws3c{word-spacing:9.267084pt;}
.ws40{word-spacing:9.284151pt;}
.ws47{word-spacing:9.296950pt;}
.ws3a{word-spacing:9.301217pt;}
.ws98{word-spacing:9.305484pt;}
.ws14{word-spacing:9.331083pt;}
.ws90{word-spacing:9.335350pt;}
.wsa4{word-spacing:9.360950pt;}
.wsf{word-spacing:9.365216pt;}
.ws99{word-spacing:9.395083pt;}
.wsb{word-spacing:10.272000pt;}
.ws6{word-spacing:10.310400pt;}
.ws9{word-spacing:10.339200pt;}
.ws2{word-spacing:10.377600pt;}
.wsa{word-spacing:10.454400pt;}
.ws7{word-spacing:10.507200pt;}
.ws8{word-spacing:10.526400pt;}
.ws5{word-spacing:10.531200pt;}
.ws4{word-spacing:10.574400pt;}
.ws18{word-spacing:10.969333pt;}
.ws1a{word-spacing:10.984533pt;}
.ws16{word-spacing:11.040267pt;}
.ws17{word-spacing:11.065600pt;}
.ws19{word-spacing:11.212533pt;}
.ws69{word-spacing:11.280113pt;}
.ws7c{word-spacing:11.296113pt;}
.ws7f{word-spacing:11.365447pt;}
.ws2e{word-spacing:11.498782pt;}
.ws77{word-spacing:11.520115pt;}
.ws1b{word-spacing:11.541449pt;}
.ws5b{word-spacing:11.552116pt;}
.ws5d{word-spacing:11.557449pt;}
.ws2f{word-spacing:11.562782pt;}
.ws72{word-spacing:11.568116pt;}
.ws6a{word-spacing:11.573449pt;}
.ws1e{word-spacing:11.578782pt;}
.ws53{word-spacing:11.584116pt;}
.ws76{word-spacing:11.589449pt;}
.ws2b{word-spacing:11.594783pt;}
.ws2c{word-spacing:11.600116pt;}
.ws31{word-spacing:11.605449pt;}
.ws56{word-spacing:11.610783pt;}
.ws58{word-spacing:11.616116pt;}
.ws6f{word-spacing:11.621450pt;}
.ws24{word-spacing:11.626783pt;}
.ws1f{word-spacing:11.632116pt;}
.ws28{word-spacing:11.648116pt;}
.ws26{word-spacing:11.653450pt;}
.ws7d{word-spacing:11.664117pt;}
.ws63{word-spacing:11.669450pt;}
.ws51{word-spacing:11.674783pt;}
.ws5a{word-spacing:11.680117pt;}
.ws27{word-spacing:11.685450pt;}
.ws1c{word-spacing:11.690784pt;}
.ws30{word-spacing:11.706784pt;}
.ws25{word-spacing:11.712117pt;}
.ws21{word-spacing:11.717451pt;}
.ws65{word-spacing:11.722784pt;}
.ws2d{word-spacing:11.728117pt;}
.ws70{word-spacing:11.738784pt;}
.ws2a{word-spacing:11.749451pt;}
.ws52{word-spacing:11.754784pt;}
.ws5c{word-spacing:11.760118pt;}
.ws6e{word-spacing:11.770784pt;}
.ws60{word-spacing:11.776118pt;}
.ws5e{word-spacing:11.786785pt;}
.ws68{word-spacing:11.808118pt;}
.ws1d{word-spacing:11.818785pt;}
.ws64{word-spacing:11.829452pt;}
.ws79{word-spacing:11.840118pt;}
.ws23{word-spacing:11.850785pt;}
.ws54{word-spacing:11.856119pt;}
.ws82{word-spacing:11.866785pt;}
.ws50{word-spacing:11.872119pt;}
.ws67{word-spacing:11.877452pt;}
.ws6b{word-spacing:11.882785pt;}
.ws75{word-spacing:11.888119pt;}
.ws80{word-spacing:11.893452pt;}
.ws74{word-spacing:11.898786pt;}
.ws73{word-spacing:11.904119pt;}
.ws83{word-spacing:11.920119pt;}
.ws5f{word-spacing:11.930786pt;}
.ws71{word-spacing:11.946786pt;}
.ws6c{word-spacing:11.952120pt;}
.ws81{word-spacing:11.957453pt;}
.ws57{word-spacing:11.968120pt;}
.ws66{word-spacing:11.973453pt;}
.ws7b{word-spacing:11.994787pt;}
.ws55{word-spacing:12.005453pt;}
.ws7e{word-spacing:12.032120pt;}
.ws22{word-spacing:12.037454pt;}
.ws78{word-spacing:12.048120pt;}
.ws61{word-spacing:12.053454pt;}
.ws59{word-spacing:12.069454pt;}
.ws7a{word-spacing:12.096121pt;}
.ws62{word-spacing:12.112121pt;}
.ws6d{word-spacing:12.176122pt;}
.ws84{word-spacing:13.894284pt;}
.ws1{word-spacing:23.349450pt;}
.ws85{word-spacing:53.174802pt;}
.ws9a{word-spacing:53.208935pt;}
._6{margin-left:-11.778238pt;}
._7{margin-left:-10.810775pt;}
._a{margin-left:-3.810086pt;}
._2{margin-left:-1.262918pt;}
._3{width:1.276800pt;}
._1{width:8.345496pt;}
._0{width:9.911343pt;}
._b{width:11.061444pt;}
._4{width:12.018133pt;}
._5{width:12.931449pt;}
._c{width:18.542702pt;}
._8{width:42.388803pt;}
._9{width:1579.909851pt;}
.fs3{font-size:31.995733pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333867pt;}
.fs7{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:48.000000pt;}
.ya6{bottom:110.663333pt;}
.y48{bottom:110.670573pt;}
.y79{bottom:111.178213pt;}
.y28{bottom:121.544200pt;}
.ya5{bottom:123.362908pt;}
.y47{bottom:125.334923pt;}
.y78{bottom:128.489053pt;}
.ya4{bottom:135.986750pt;}
.y27{bottom:138.855040pt;}
.y46{bottom:139.999273pt;}
.y77{bottom:145.874560pt;}
.ya3{bottom:153.296401pt;}
.y45{bottom:154.663623pt;}
.y26{bottom:156.165880pt;}
.y76{bottom:163.185400pt;}
.ya2{bottom:165.995975pt;}
.y44{bottom:169.327973pt;}
.y25{bottom:173.551387pt;}
.ya1{bottom:178.695550pt;}
.y75{bottom:180.496240pt;}
.y43{bottom:183.992323pt;}
.y24{bottom:190.862227pt;}
.ya0{bottom:196.005292pt;}
.y74{bottom:197.881747pt;}
.y42{bottom:198.656673pt;}
.y23{bottom:208.173067pt;}
.y9f{bottom:208.629134pt;}
.y41{bottom:213.321023pt;}
.y73{bottom:215.192586pt;}
.y22{bottom:225.483906pt;}
.y9e{bottom:226.014517pt;}
.y40{bottom:227.985373pt;}
.y72{bottom:232.503426pt;}
.y9d{bottom:238.638359pt;}
.y3f{bottom:242.649723pt;}
.y21{bottom:242.869414pt;}
.y71{bottom:249.888933pt;}
.y9c{bottom:256.023742pt;}
.y3e{bottom:257.314073pt;}
.y20{bottom:260.180253pt;}
.y70{bottom:267.199773pt;}
.y9b{bottom:268.647584pt;}
.y3d{bottom:271.978423pt;}
.y1f{bottom:277.491093pt;}
.y9a{bottom:281.347158pt;}
.y6f{bottom:284.510613pt;}
.y3c{bottom:286.642773pt;}
.y1e{bottom:294.876600pt;}
.y99{bottom:298.656809pt;}
.y6e{bottom:301.821453pt;}
.y3b{bottom:309.319823pt;}
.y98{bottom:311.356383pt;}
.y1d{bottom:312.187440pt;}
.y6d{bottom:319.206960pt;}
.y3a{bottom:323.984173pt;}
.y97{bottom:328.666034pt;}
.y1c{bottom:329.498280pt;}
.y6c{bottom:336.517800pt;}
.y96{bottom:341.365608pt;}
.y39{bottom:346.661223pt;}
.y1b{bottom:346.883787pt;}
.y6b{bottom:353.828639pt;}
.y95{bottom:353.989450pt;}
.y38{bottom:361.325573pt;}
.y1a{bottom:364.194627pt;}
.y6a{bottom:371.214147pt;}
.y94{bottom:371.299101pt;}
.y19{bottom:381.505467pt;}
.y93{bottom:383.998675pt;}
.y37{bottom:384.002623pt;}
.y69{bottom:388.524986pt;}
.y92{bottom:396.698250pt;}
.y36{bottom:398.666973pt;}
.y68{bottom:405.835826pt;}
.y35{bottom:413.331323pt;}
.y91{bottom:414.008967pt;}
.y67{bottom:423.221333pt;}
.y90{bottom:426.632809pt;}
.y34{bottom:427.995673pt;}
.y8f{bottom:439.332384pt;}
.y66{bottom:440.532173pt;}
.y33{bottom:442.660023pt;}
.y8e{bottom:456.642034pt;}
.y32{bottom:457.324373pt;}
.y65{bottom:457.843013pt;}
.y8d{bottom:469.341609pt;}
.y64{bottom:475.228520pt;}
.y31{bottom:480.001423pt;}
.y8c{bottom:481.965451pt;}
.y18{bottom:483.554000pt;}
.y63{bottom:492.539360pt;}
.y8b{bottom:499.350833pt;}
.y17{bottom:502.148667pt;}
.y30{bottom:502.678473pt;}
.y62{bottom:509.850200pt;}
.y8a{bottom:511.974676pt;}
.y2f{bottom:517.342823pt;}
.y16{bottom:520.819333pt;}
.y89{bottom:524.674250pt;}
.y61{bottom:527.161039pt;}
.y2e{bottom:532.007173pt;}
.y15{bottom:539.490000pt;}
.y88{bottom:541.983900pt;}
.y60{bottom:544.546547pt;}
.y2d{bottom:546.671523pt;}
.y87{bottom:554.683475pt;}
.y14{bottom:558.160667pt;}
.y2c{bottom:561.335873pt;}
.y5f{bottom:561.857386pt;}
.y86{bottom:571.993125pt;}
.y13{bottom:576.831333pt;}
.y5e{bottom:579.168226pt;}
.y2b{bottom:583.180933pt;}
.y85{bottom:584.692700pt;}
.y5d{bottom:596.553733pt;}
.y84{bottom:602.003417pt;}
.y12{bottom:606.160400pt;}
.y5c{bottom:613.864573pt;}
.y83{bottom:619.313067pt;}
.y5b{bottom:631.175413pt;}
.y82{bottom:632.012642pt;}
.y5a{bottom:648.560920pt;}
.y81{bottom:649.322292pt;}
.y80{bottom:662.021867pt;}
.y11{bottom:662.173900pt;}
.y59{bottom:665.871760pt;}
.y7f{bottom:680.012400pt;}
.y58{bottom:683.182600pt;}
.y10{bottom:688.857300pt;}
.y2a{bottom:696.944800pt;}
.y57{bottom:700.493439pt;}
.yf{bottom:702.161667pt;}
.ye{bottom:715.540700pt;}
.y56{bottom:717.878947pt;}
.y7e{bottom:726.272947pt;}
.yd{bottom:728.845067pt;}
.y55{bottom:735.189786pt;}
.yc{bottom:742.224100pt;}
.y7d{bottom:743.583786pt;}
.y54{bottom:752.500626pt;}
.yb{bottom:755.527400pt;}
.y7c{bottom:760.969294pt;}
.ya{bottom:768.831767pt;}
.y53{bottom:769.886133pt;}
.y7b{bottom:778.280133pt;}
.y9{bottom:782.210800pt;}
.y52{bottom:787.196973pt;}
.y7a{bottom:800.957333pt;}
.y51{bottom:804.507813pt;}
.y8{bottom:806.173067pt;}
.y6{bottom:806.173600pt;}
.y7{bottom:811.540000pt;}
.y4{bottom:820.837600pt;}
.y50{bottom:821.893320pt;}
.y5{bottom:826.204533pt;}
.y4f{bottom:839.204160pt;}
.y3{bottom:854.172233pt;}
.y4e{bottom:856.515000pt;}
.y4d{bottom:873.900507pt;}
.y2{bottom:887.508400pt;}
.yab{bottom:889.624558pt;}
.y4c{bottom:891.211347pt;}
.yaa{bottom:902.324133pt;}
.y4b{bottom:908.522186pt;}
.ya9{bottom:914.947975pt;}
.y1{bottom:920.843867pt;}
.y4a{bottom:925.833026pt;}
.ya8{bottom:932.257625pt;}
.y49{bottom:943.218533pt;}
.ya7{bottom:944.957200pt;}
.h4{height:23.580855pt;}
.ha{height:31.060945pt;}
.h1{height:33.066253pt;}
.hc{height:33.070152pt;}
.h3{height:35.376000pt;}
.h5{height:37.076870pt;}
.h8{height:37.973713pt;}
.h9{height:38.187049pt;}
.h7{height:39.266667pt;}
.hb{height:47.167607pt;}
.h6{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:48.000000pt;}
.x16{left:63.496000pt;}
.x15{left:74.683467pt;}
.x1{left:266.683333pt;}
.x17{left:272.579467pt;}
.x13{left:282.632826pt;}
.x18{left:294.651724pt;}
.xa{left:352.478667pt;}
.xb{left:357.467600pt;}
.x2{left:372.736933pt;}
.x3{left:377.725867pt;}
.xc{left:447.798267pt;}
.xd{left:460.195200pt;}
.x4{left:504.491200pt;}
.x5{left:509.480133pt;}
.xe{left:536.692800pt;}
.xf{left:541.606133pt;}
.x6{left:633.297467pt;}
.x7{left:638.286400pt;}
.x10{left:643.728933pt;}
.x11{left:648.718000pt;}
.x12{left:710.173067pt;}
.x8{left:741.845467pt;}
.x9{left:746.834533pt;}
}




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