
    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_d8e99630a2cf0f132c88069a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c8f2418cf0d22debbe55ab22.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_23f0c6276058fdd7172ed535.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_dd2d54c09f711a5c4a5119f5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7a73715eae88cf691885e6ae.woff')format("woff");}.ff5{font-family:ff5;line-height:0.902344;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_e4b792a57cd0a0223f3ddb2e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.853000;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_0c61ab2c8d636f08610d23d1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_0855e87666b10dbda2b1292b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;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_72d320becfed4ac785a3baff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_44da23403d3434bd3201a6d0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_70bbd41baaae057058098a75.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_e04e923fd58c7c971bdc8a2a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.922852;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_599043d7e0e80bf2ee079dd9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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);}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:182.400000px;}
.ls24{letter-spacing:-2.808000px;}
.ls25{letter-spacing:-1.296000px;}
.ls26{letter-spacing:-1.224000px;}
.ls3e{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.576000px;}
.ls2f{letter-spacing:-0.504000px;}
.ls3f{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.ls40{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.021600px;}
.ls15{letter-spacing:0.057600px;}
.ls3{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.129600px;}
.ls3a{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.223200px;}
.ls34{letter-spacing:0.237600px;}
.ls3c{letter-spacing:0.252000px;}
.ls29{letter-spacing:0.273600px;}
.ls22{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.316800px;}
.ls2d{letter-spacing:0.324000px;}
.ls21{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.388800px;}
.ls32{letter-spacing:0.396000px;}
.ls33{letter-spacing:0.403200px;}
.ls2c{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.475200px;}
.ls23{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.576000px;}
.ls28{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.727200px;}
.ls39{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.842400px;}
.ls2{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.928800px;}
.lsf{letter-spacing:0.936000px;}
.ls1c{letter-spacing:0.972000px;}
.ls12{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.044000px;}
.lsb{letter-spacing:1.080000px;}
.ls20{letter-spacing:1.101600px;}
.lse{letter-spacing:1.116000px;}
.lsc{letter-spacing:1.123200px;}
.ls14{letter-spacing:1.130400px;}
.lsd{letter-spacing:1.152000px;}
.ls36{letter-spacing:3.744000px;}
.ls1a{letter-spacing:3.895200px;}
.ls41{letter-spacing:4.266000px;}
.ls5{letter-spacing:4.560000px;}
.ls3d{letter-spacing:4.752000px;}
.ls3b{letter-spacing:8.460000px;}
.ls31{letter-spacing:10.504800px;}
.ls1{letter-spacing:10.701905px;}
.ls0{letter-spacing:10.740000px;}
.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;}
}
.ws67{word-spacing:-25.320000px;}
.ws2{word-spacing:-20.232000px;}
.ws68{word-spacing:-19.368000px;}
.ws19{word-spacing:-18.864000px;}
.ws1b{word-spacing:-18.792000px;}
.ws1a{word-spacing:-18.648000px;}
.ws34{word-spacing:-18.504000px;}
.ws66{word-spacing:-18.432000px;}
.ws5d{word-spacing:-18.360000px;}
.ws39{word-spacing:-18.072000px;}
.ws37{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.784000px;}
.ws5c{word-spacing:-17.712000px;}
.ws35{word-spacing:-17.568000px;}
.ws4b{word-spacing:-17.352000px;}
.ws4a{word-spacing:-17.280000px;}
.ws36{word-spacing:-17.208000px;}
.ws79{word-spacing:-16.860000px;}
.ws38{word-spacing:-16.560000px;}
.ws18{word-spacing:-14.820000px;}
.ws73{word-spacing:-14.520000px;}
.ws74{word-spacing:-4.752000px;}
.ws7{word-spacing:-4.560000px;}
.ws6e{word-spacing:-2.016000px;}
.ws48{word-spacing:-0.648000px;}
.ws63{word-spacing:-0.576000px;}
.ws55{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.360000px;}
.ws49{word-spacing:-0.288000px;}
.ws70{word-spacing:-0.216000px;}
.ws44{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws41{word-spacing:0.072000px;}
.ws10{word-spacing:0.144000px;}
.ws24{word-spacing:0.216000px;}
.ws54{word-spacing:0.288000px;}
.ws78{word-spacing:0.300000px;}
.ws42{word-spacing:0.360000px;}
.ws11{word-spacing:0.504000px;}
.wsf{word-spacing:0.576000px;}
.wsa{word-spacing:0.600000px;}
.ws46{word-spacing:0.720000px;}
.ws14{word-spacing:0.864000px;}
.ws3b{word-spacing:1.080000px;}
.ws2f{word-spacing:1.224000px;}
.ws20{word-spacing:1.368000px;}
.ws77{word-spacing:1.440000px;}
.ws12{word-spacing:1.584000px;}
.ws3f{word-spacing:1.656000px;}
.ws5{word-spacing:1.800000px;}
.ws56{word-spacing:1.944000px;}
.ws22{word-spacing:2.088000px;}
.ws28{word-spacing:2.160000px;}
.ws2e{word-spacing:2.304000px;}
.ws21{word-spacing:2.376000px;}
.ws27{word-spacing:2.448000px;}
.ws58{word-spacing:2.592000px;}
.ws33{word-spacing:2.736000px;}
.ws5a{word-spacing:2.808000px;}
.ws8{word-spacing:2.880000px;}
.ws76{word-spacing:2.976000px;}
.wsc{word-spacing:3.096000px;}
.ws60{word-spacing:3.168000px;}
.ws5e{word-spacing:3.240000px;}
.ws31{word-spacing:3.312000px;}
.ws75{word-spacing:3.360000px;}
.ws13{word-spacing:3.456000px;}
.ws17{word-spacing:3.528000px;}
.ws69{word-spacing:3.600000px;}
.ws40{word-spacing:3.672000px;}
.ws1d{word-spacing:3.720000px;}
.ws71{word-spacing:3.816000px;}
.ws3a{word-spacing:3.888000px;}
.ws16{word-spacing:4.032000px;}
.ws2c{word-spacing:4.104000px;}
.ws53{word-spacing:4.176000px;}
.ws3{word-spacing:4.200000px;}
.ws6a{word-spacing:4.248000px;}
.ws6c{word-spacing:4.392000px;}
.ws6{word-spacing:4.464000px;}
.ws50{word-spacing:4.752000px;}
.wse{word-spacing:5.040000px;}
.ws6d{word-spacing:5.112000px;}
.ws2a{word-spacing:5.832000px;}
.ws61{word-spacing:6.192000px;}
.ws52{word-spacing:6.264000px;}
.ws4d{word-spacing:6.408000px;}
.ws5f{word-spacing:6.552000px;}
.ws32{word-spacing:6.624000px;}
.ws29{word-spacing:6.696000px;}
.ws5b{word-spacing:6.768000px;}
.ws57{word-spacing:6.984000px;}
.ws59{word-spacing:7.056000px;}
.ws2d{word-spacing:7.128000px;}
.ws51{word-spacing:7.200000px;}
.ws1e{word-spacing:7.344000px;}
.ws3e{word-spacing:7.488000px;}
.ws72{word-spacing:7.560000px;}
.ws4f{word-spacing:7.992000px;}
.ws4e{word-spacing:8.136000px;}
.ws3d{word-spacing:8.208000px;}
.wsd{word-spacing:8.280000px;}
.ws0{word-spacing:8.376000px;}
.ws4{word-spacing:8.400000px;}
.ws43{word-spacing:8.496000px;}
.ws6f{word-spacing:8.712000px;}
.ws45{word-spacing:8.784000px;}
.ws23{word-spacing:8.856000px;}
.ws3c{word-spacing:8.928000px;}
.ws6b{word-spacing:9.000000px;}
.ws30{word-spacing:9.072000px;}
.ws62{word-spacing:9.288000px;}
.ws26{word-spacing:9.360000px;}
.ws47{word-spacing:9.432000px;}
.ws4c{word-spacing:9.576000px;}
.ws1f{word-spacing:9.720000px;}
.ws2b{word-spacing:9.792000px;}
.ws15{word-spacing:10.080000px;}
.wsb{word-spacing:10.152000px;}
.ws65{word-spacing:10.512000px;}
.ws25{word-spacing:10.728000px;}
.ws1c{word-spacing:75.180000px;}
._0{margin-left:-940.386000px;}
._5{margin-left:-24.132000px;}
._11{margin-left:-14.711400px;}
._7{margin-left:-11.928000px;}
._c{margin-left:-9.236400px;}
._a{margin-left:-7.336800px;}
._1{margin-left:-5.964000px;}
._9{margin-left:-4.219200px;}
._8{margin-left:-2.400000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._4{width:3.072000px;}
._d{width:4.146600px;}
._b{width:5.800200px;}
._f{width:7.080000px;}
._12{width:8.496000px;}
._10{width:10.752000px;}
._16{width:13.553400px;}
._14{width:23.282400px;}
._13{width:36.648000px;}
._6{width:47.880000px;}
._15{width:73.152000px;}
._e{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:428.278800px;}
.y0{bottom:0.000000px;}
.y21{bottom:55.500000px;}
.y22{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y57{bottom:117.000000px;}
.yb2{bottom:117.966150px;}
.y7b{bottom:118.110000px;}
.y45{bottom:118.602000px;}
.y20{bottom:120.086550px;}
.yb1{bottom:136.866150px;}
.y56{bottom:139.500000px;}
.y44{bottom:141.102000px;}
.y7a{bottom:141.204000px;}
.y1f{bottom:142.892550px;}
.yb0{bottom:155.766150px;}
.y55{bottom:162.000000px;}
.y43{bottom:163.458000px;}
.y79{bottom:164.298000px;}
.y1e{bottom:165.698550px;}
.yaf{bottom:174.666150px;}
.y54{bottom:184.500000px;}
.y42{bottom:185.814000px;}
.y78{bottom:187.392000px;}
.y1d{bottom:188.504550px;}
.yae{bottom:193.566150px;}
.y53{bottom:207.000000px;}
.y41{bottom:208.170000px;}
.y77{bottom:210.486000px;}
.y1c{bottom:211.310550px;}
.yad{bottom:212.466150px;}
.y52{bottom:229.500000px;}
.y40{bottom:230.526000px;}
.yac{bottom:231.366150px;}
.y76{bottom:233.580000px;}
.y1b{bottom:234.116550px;}
.yab{bottom:250.266150px;}
.y51{bottom:252.000000px;}
.y3f{bottom:252.882000px;}
.y75{bottom:256.674000px;}
.y1a{bottom:256.922550px;}
.yaa{bottom:269.166150px;}
.y88{bottom:274.500000px;}
.y3e{bottom:275.238000px;}
.y19{bottom:279.728550px;}
.y74{bottom:279.768000px;}
.y50{bottom:285.750000px;}
.ya9{bottom:288.066150px;}
.y87{bottom:297.000000px;}
.y3d{bottom:297.594000px;}
.y18{bottom:302.534550px;}
.y73{bottom:302.862000px;}
.ya8{bottom:306.966150px;}
.y4f{bottom:308.250000px;}
.yd2{bottom:309.372000px;}
.y86{bottom:319.500000px;}
.y3c{bottom:319.950000px;}
.y17{bottom:325.340550px;}
.ya7{bottom:325.866150px;}
.y72{bottom:325.956000px;}
.yd1{bottom:328.122000px;}
.y4e{bottom:330.750000px;}
.y85{bottom:342.000000px;}
.y3b{bottom:342.306000px;}
.ya6{bottom:344.766150px;}
.yd0{bottom:346.872000px;}
.y16{bottom:348.146550px;}
.y71{bottom:349.050000px;}
.y4d{bottom:353.250000px;}
.ya5{bottom:363.666150px;}
.y84{bottom:364.500000px;}
.ycf{bottom:365.622000px;}
.y15{bottom:370.952550px;}
.y70{bottom:372.144000px;}
.y3a{bottom:375.750000px;}
.ya4{bottom:382.566150px;}
.yce{bottom:384.372000px;}
.y83{bottom:387.000000px;}
.y14{bottom:393.758550px;}
.y6f{bottom:395.238000px;}
.y39{bottom:398.250000px;}
.ya3{bottom:401.466150px;}
.y82{bottom:409.500000px;}
.ycd{bottom:414.372000px;}
.y13{bottom:416.564550px;}
.y6e{bottom:418.332000px;}
.ya2{bottom:420.366150px;}
.y38{bottom:420.750000px;}
.y81{bottom:432.000000px;}
.y12{bottom:439.370550px;}
.y6d{bottom:441.426000px;}
.y37{bottom:443.250000px;}
.ya1{bottom:445.740000px;}
.y80{bottom:454.500000px;}
.ycc{bottom:455.622000px;}
.y11{bottom:462.176550px;}
.y6c{bottom:464.520000px;}
.y36{bottom:465.750000px;}
.ycb{bottom:474.372000px;}
.y7f{bottom:477.000000px;}
.y10{bottom:484.982550px;}
.y6b{bottom:487.614000px;}
.y35{bottom:488.250000px;}
.ya0{bottom:490.740000px;}
.yca{bottom:493.122000px;}
.y7e{bottom:499.500000px;}
.y9f{bottom:505.584000px;}
.yf{bottom:507.788550px;}
.y6a{bottom:510.708000px;}
.y34{bottom:510.750000px;}
.yc9{bottom:511.872000px;}
.y9e{bottom:520.428000px;}
.y7d{bottom:522.000000px;}
.ye{bottom:530.594550px;}
.yc8{bottom:530.622000px;}
.y33{bottom:533.250000px;}
.y69{bottom:533.802000px;}
.y9d{bottom:535.272000px;}
.y7c{bottom:544.500000px;}
.yc7{bottom:549.372000px;}
.y9c{bottom:550.116000px;}
.yd{bottom:553.400550px;}
.y4c{bottom:555.750000px;}
.y68{bottom:556.896000px;}
.y9b{bottom:564.960000px;}
.y32{bottom:567.000000px;}
.yc6{bottom:568.122000px;}
.yc{bottom:576.206550px;}
.ya{bottom:576.218550px;}
.y4b{bottom:578.250000px;}
.y9a{bottom:579.804000px;}
.y67{bottom:579.990000px;}
.yc5{bottom:586.872000px;}
.y31{bottom:589.500000px;}
.y99{bottom:594.648000px;}
.yb{bottom:599.012550px;}
.y4a{bottom:600.750000px;}
.y66{bottom:603.084000px;}
.yc4{bottom:605.622000px;}
.y98{bottom:609.492000px;}
.y30{bottom:612.000000px;}
.y49{bottom:623.250000px;}
.y97{bottom:624.336000px;}
.yc3{bottom:624.372000px;}
.y65{bottom:626.178000px;}
.y2f{bottom:634.500000px;}
.y96{bottom:639.180000px;}
.yc2{bottom:643.122000px;}
.y48{bottom:645.750000px;}
.y64{bottom:649.272000px;}
.y95{bottom:654.024000px;}
.y2e{bottom:657.000000px;}
.yc1{bottom:661.872000px;}
.y47{bottom:668.250000px;}
.y94{bottom:668.868000px;}
.y63{bottom:672.366000px;}
.y2d{bottom:679.500000px;}
.yc0{bottom:680.622000px;}
.y93{bottom:683.712000px;}
.y9{bottom:690.218550px;}
.y46{bottom:690.750000px;}
.y62{bottom:695.460000px;}
.ybf{bottom:699.372000px;}
.y2c{bottom:702.000000px;}
.y92{bottom:704.940000px;}
.y8{bottom:708.968550px;}
.ybe{bottom:718.122000px;}
.y61{bottom:718.554000px;}
.y2b{bottom:724.500000px;}
.y7{bottom:727.718550px;}
.ybd{bottom:736.872000px;}
.y60{bottom:741.648000px;}
.y2a{bottom:747.000000px;}
.y91{bottom:749.640000px;}
.ybc{bottom:755.622000px;}
.y90{bottom:764.484000px;}
.y5f{bottom:764.742000px;}
.y29{bottom:769.500000px;}
.y6{bottom:769.854300px;}
.ybb{bottom:774.372000px;}
.y8f{bottom:779.328000px;}
.y5e{bottom:787.836000px;}
.y28{bottom:792.000000px;}
.y5{bottom:792.354300px;}
.yba{bottom:793.122000px;}
.y8e{bottom:794.172000px;}
.y5d{bottom:810.930000px;}
.yb9{bottom:811.872000px;}
.y27{bottom:814.500000px;}
.y8d{bottom:815.400000px;}
.yb8{bottom:830.622000px;}
.y5c{bottom:834.024000px;}
.y26{bottom:837.000000px;}
.yb7{bottom:849.372000px;}
.y5b{bottom:857.118000px;}
.y4{bottom:859.500000px;}
.y8c{bottom:860.082000px;}
.yb6{bottom:868.122000px;}
.y5a{bottom:880.212000px;}
.y25{bottom:882.000000px;}
.y8b{bottom:882.438000px;}
.yb5{bottom:886.872000px;}
.y3{bottom:889.500000px;}
.y59{bottom:903.306000px;}
.y24{bottom:904.500000px;}
.y8a{bottom:904.794000px;}
.yb4{bottom:912.000000px;}
.y2{bottom:919.500000px;}
.y58{bottom:926.400000px;}
.y23{bottom:927.000000px;}
.y89{bottom:927.150000px;}
.yb3{bottom:930.000000px;}
.h9{height:33.117188px;}
.h8{height:39.888000px;}
.h7{height:39.990234px;}
.h1{height:41.396484px;}
.h3{height:42.000000px;}
.h4{height:47.988281px;}
.h6{height:49.675781px;}
.h2{height:82.792969px;}
.h5{height:299.795160px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x6{left:67.500000px;}
.xa{left:82.361700px;}
.x9{left:99.389700px;}
.x2{left:112.500000px;}
.x4{left:127.392150px;}
.x7{left:135.000000px;}
.x5{left:144.384150px;}
.x3{left:153.078150px;}
.xb{left:159.277950px;}
.x8{left:240.000000px;}
.x1{left:635.390550px;}
@media print{
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:162.133333pt;}
.ls24{letter-spacing:-2.496000pt;}
.ls25{letter-spacing:-1.152000pt;}
.ls26{letter-spacing:-1.088000pt;}
.ls3e{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls2f{letter-spacing:-0.448000pt;}
.ls3f{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls40{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.019200pt;}
.ls15{letter-spacing:0.051200pt;}
.ls3{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.115200pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.198400pt;}
.ls34{letter-spacing:0.211200pt;}
.ls3c{letter-spacing:0.224000pt;}
.ls29{letter-spacing:0.243200pt;}
.ls22{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.281600pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls21{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.345600pt;}
.ls32{letter-spacing:0.352000pt;}
.ls33{letter-spacing:0.358400pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.422400pt;}
.ls23{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.646400pt;}
.ls39{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.748800pt;}
.ls2{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.825600pt;}
.lsf{letter-spacing:0.832000pt;}
.ls1c{letter-spacing:0.864000pt;}
.ls12{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.928000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls20{letter-spacing:0.979200pt;}
.lse{letter-spacing:0.992000pt;}
.lsc{letter-spacing:0.998400pt;}
.ls14{letter-spacing:1.004800pt;}
.lsd{letter-spacing:1.024000pt;}
.ls36{letter-spacing:3.328000pt;}
.ls1a{letter-spacing:3.462400pt;}
.ls41{letter-spacing:3.792000pt;}
.ls5{letter-spacing:4.053333pt;}
.ls3d{letter-spacing:4.224000pt;}
.ls3b{letter-spacing:7.520000pt;}
.ls31{letter-spacing:9.337600pt;}
.ls1{letter-spacing:9.512804pt;}
.ls0{letter-spacing:9.546667pt;}
.ws67{word-spacing:-22.506667pt;}
.ws2{word-spacing:-17.984000pt;}
.ws68{word-spacing:-17.216000pt;}
.ws19{word-spacing:-16.768000pt;}
.ws1b{word-spacing:-16.704000pt;}
.ws1a{word-spacing:-16.576000pt;}
.ws34{word-spacing:-16.448000pt;}
.ws66{word-spacing:-16.384000pt;}
.ws5d{word-spacing:-16.320000pt;}
.ws39{word-spacing:-16.064000pt;}
.ws37{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws5c{word-spacing:-15.744000pt;}
.ws35{word-spacing:-15.616000pt;}
.ws4b{word-spacing:-15.424000pt;}
.ws4a{word-spacing:-15.360000pt;}
.ws36{word-spacing:-15.296000pt;}
.ws79{word-spacing:-14.986667pt;}
.ws38{word-spacing:-14.720000pt;}
.ws18{word-spacing:-13.173333pt;}
.ws73{word-spacing:-12.906667pt;}
.ws74{word-spacing:-4.224000pt;}
.ws7{word-spacing:-4.053333pt;}
.ws6e{word-spacing:-1.792000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws63{word-spacing:-0.512000pt;}
.ws55{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.320000pt;}
.ws49{word-spacing:-0.256000pt;}
.ws70{word-spacing:-0.192000pt;}
.ws44{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws41{word-spacing:0.064000pt;}
.ws10{word-spacing:0.128000pt;}
.ws24{word-spacing:0.192000pt;}
.ws54{word-spacing:0.256000pt;}
.ws78{word-spacing:0.266667pt;}
.ws42{word-spacing:0.320000pt;}
.ws11{word-spacing:0.448000pt;}
.wsf{word-spacing:0.512000pt;}
.wsa{word-spacing:0.533333pt;}
.ws46{word-spacing:0.640000pt;}
.ws14{word-spacing:0.768000pt;}
.ws3b{word-spacing:0.960000pt;}
.ws2f{word-spacing:1.088000pt;}
.ws20{word-spacing:1.216000pt;}
.ws77{word-spacing:1.280000pt;}
.ws12{word-spacing:1.408000pt;}
.ws3f{word-spacing:1.472000pt;}
.ws5{word-spacing:1.600000pt;}
.ws56{word-spacing:1.728000pt;}
.ws22{word-spacing:1.856000pt;}
.ws28{word-spacing:1.920000pt;}
.ws2e{word-spacing:2.048000pt;}
.ws21{word-spacing:2.112000pt;}
.ws27{word-spacing:2.176000pt;}
.ws58{word-spacing:2.304000pt;}
.ws33{word-spacing:2.432000pt;}
.ws5a{word-spacing:2.496000pt;}
.ws8{word-spacing:2.560000pt;}
.ws76{word-spacing:2.645333pt;}
.wsc{word-spacing:2.752000pt;}
.ws60{word-spacing:2.816000pt;}
.ws5e{word-spacing:2.880000pt;}
.ws31{word-spacing:2.944000pt;}
.ws75{word-spacing:2.986667pt;}
.ws13{word-spacing:3.072000pt;}
.ws17{word-spacing:3.136000pt;}
.ws69{word-spacing:3.200000pt;}
.ws40{word-spacing:3.264000pt;}
.ws1d{word-spacing:3.306667pt;}
.ws71{word-spacing:3.392000pt;}
.ws3a{word-spacing:3.456000pt;}
.ws16{word-spacing:3.584000pt;}
.ws2c{word-spacing:3.648000pt;}
.ws53{word-spacing:3.712000pt;}
.ws3{word-spacing:3.733333pt;}
.ws6a{word-spacing:3.776000pt;}
.ws6c{word-spacing:3.904000pt;}
.ws6{word-spacing:3.968000pt;}
.ws50{word-spacing:4.224000pt;}
.wse{word-spacing:4.480000pt;}
.ws6d{word-spacing:4.544000pt;}
.ws2a{word-spacing:5.184000pt;}
.ws61{word-spacing:5.504000pt;}
.ws52{word-spacing:5.568000pt;}
.ws4d{word-spacing:5.696000pt;}
.ws5f{word-spacing:5.824000pt;}
.ws32{word-spacing:5.888000pt;}
.ws29{word-spacing:5.952000pt;}
.ws5b{word-spacing:6.016000pt;}
.ws57{word-spacing:6.208000pt;}
.ws59{word-spacing:6.272000pt;}
.ws2d{word-spacing:6.336000pt;}
.ws51{word-spacing:6.400000pt;}
.ws1e{word-spacing:6.528000pt;}
.ws3e{word-spacing:6.656000pt;}
.ws72{word-spacing:6.720000pt;}
.ws4f{word-spacing:7.104000pt;}
.ws4e{word-spacing:7.232000pt;}
.ws3d{word-spacing:7.296000pt;}
.wsd{word-spacing:7.360000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4{word-spacing:7.466667pt;}
.ws43{word-spacing:7.552000pt;}
.ws6f{word-spacing:7.744000pt;}
.ws45{word-spacing:7.808000pt;}
.ws23{word-spacing:7.872000pt;}
.ws3c{word-spacing:7.936000pt;}
.ws6b{word-spacing:8.000000pt;}
.ws30{word-spacing:8.064000pt;}
.ws62{word-spacing:8.256000pt;}
.ws26{word-spacing:8.320000pt;}
.ws47{word-spacing:8.384000pt;}
.ws4c{word-spacing:8.512000pt;}
.ws1f{word-spacing:8.640000pt;}
.ws2b{word-spacing:8.704000pt;}
.ws15{word-spacing:8.960000pt;}
.wsb{word-spacing:9.024000pt;}
.ws65{word-spacing:9.344000pt;}
.ws25{word-spacing:9.536000pt;}
.ws1c{word-spacing:66.826667pt;}
._0{margin-left:-835.898667pt;}
._5{margin-left:-21.450667pt;}
._11{margin-left:-13.076800pt;}
._7{margin-left:-10.602667pt;}
._c{margin-left:-8.210133pt;}
._a{margin-left:-6.521600pt;}
._1{margin-left:-5.301333pt;}
._9{margin-left:-3.750400pt;}
._8{margin-left:-2.133333pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._4{width:2.730667pt;}
._d{width:3.685867pt;}
._b{width:5.155733pt;}
._f{width:6.293333pt;}
._12{width:7.552000pt;}
._10{width:9.557333pt;}
._16{width:12.047467pt;}
._14{width:20.695467pt;}
._13{width:32.576000pt;}
._6{width:42.560000pt;}
._15{width:65.024000pt;}
._e{width:179.168000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:380.692267pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:49.333333pt;}
.y22{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y57{bottom:104.000000pt;}
.yb2{bottom:104.858800pt;}
.y7b{bottom:104.986667pt;}
.y45{bottom:105.424000pt;}
.y20{bottom:106.743600pt;}
.yb1{bottom:121.658800pt;}
.y56{bottom:124.000000pt;}
.y44{bottom:125.424000pt;}
.y7a{bottom:125.514667pt;}
.y1f{bottom:127.015600pt;}
.yb0{bottom:138.458800pt;}
.y55{bottom:144.000000pt;}
.y43{bottom:145.296000pt;}
.y79{bottom:146.042667pt;}
.y1e{bottom:147.287600pt;}
.yaf{bottom:155.258800pt;}
.y54{bottom:164.000000pt;}
.y42{bottom:165.168000pt;}
.y78{bottom:166.570667pt;}
.y1d{bottom:167.559600pt;}
.yae{bottom:172.058800pt;}
.y53{bottom:184.000000pt;}
.y41{bottom:185.040000pt;}
.y77{bottom:187.098667pt;}
.y1c{bottom:187.831600pt;}
.yad{bottom:188.858800pt;}
.y52{bottom:204.000000pt;}
.y40{bottom:204.912000pt;}
.yac{bottom:205.658800pt;}
.y76{bottom:207.626667pt;}
.y1b{bottom:208.103600pt;}
.yab{bottom:222.458800pt;}
.y51{bottom:224.000000pt;}
.y3f{bottom:224.784000pt;}
.y75{bottom:228.154667pt;}
.y1a{bottom:228.375600pt;}
.yaa{bottom:239.258800pt;}
.y88{bottom:244.000000pt;}
.y3e{bottom:244.656000pt;}
.y19{bottom:248.647600pt;}
.y74{bottom:248.682667pt;}
.y50{bottom:254.000000pt;}
.ya9{bottom:256.058800pt;}
.y87{bottom:264.000000pt;}
.y3d{bottom:264.528000pt;}
.y18{bottom:268.919600pt;}
.y73{bottom:269.210667pt;}
.ya8{bottom:272.858800pt;}
.y4f{bottom:274.000000pt;}
.yd2{bottom:274.997333pt;}
.y86{bottom:284.000000pt;}
.y3c{bottom:284.400000pt;}
.y17{bottom:289.191600pt;}
.ya7{bottom:289.658800pt;}
.y72{bottom:289.738667pt;}
.yd1{bottom:291.664000pt;}
.y4e{bottom:294.000000pt;}
.y85{bottom:304.000000pt;}
.y3b{bottom:304.272000pt;}
.ya6{bottom:306.458800pt;}
.yd0{bottom:308.330667pt;}
.y16{bottom:309.463600pt;}
.y71{bottom:310.266667pt;}
.y4d{bottom:314.000000pt;}
.ya5{bottom:323.258800pt;}
.y84{bottom:324.000000pt;}
.ycf{bottom:324.997333pt;}
.y15{bottom:329.735600pt;}
.y70{bottom:330.794667pt;}
.y3a{bottom:334.000000pt;}
.ya4{bottom:340.058800pt;}
.yce{bottom:341.664000pt;}
.y83{bottom:344.000000pt;}
.y14{bottom:350.007600pt;}
.y6f{bottom:351.322667pt;}
.y39{bottom:354.000000pt;}
.ya3{bottom:356.858800pt;}
.y82{bottom:364.000000pt;}
.ycd{bottom:368.330667pt;}
.y13{bottom:370.279600pt;}
.y6e{bottom:371.850667pt;}
.ya2{bottom:373.658800pt;}
.y38{bottom:374.000000pt;}
.y81{bottom:384.000000pt;}
.y12{bottom:390.551600pt;}
.y6d{bottom:392.378667pt;}
.y37{bottom:394.000000pt;}
.ya1{bottom:396.213333pt;}
.y80{bottom:404.000000pt;}
.ycc{bottom:404.997333pt;}
.y11{bottom:410.823600pt;}
.y6c{bottom:412.906667pt;}
.y36{bottom:414.000000pt;}
.ycb{bottom:421.664000pt;}
.y7f{bottom:424.000000pt;}
.y10{bottom:431.095600pt;}
.y6b{bottom:433.434667pt;}
.y35{bottom:434.000000pt;}
.ya0{bottom:436.213333pt;}
.yca{bottom:438.330667pt;}
.y7e{bottom:444.000000pt;}
.y9f{bottom:449.408000pt;}
.yf{bottom:451.367600pt;}
.y6a{bottom:453.962667pt;}
.y34{bottom:454.000000pt;}
.yc9{bottom:454.997333pt;}
.y9e{bottom:462.602667pt;}
.y7d{bottom:464.000000pt;}
.ye{bottom:471.639600pt;}
.yc8{bottom:471.664000pt;}
.y33{bottom:474.000000pt;}
.y69{bottom:474.490667pt;}
.y9d{bottom:475.797333pt;}
.y7c{bottom:484.000000pt;}
.yc7{bottom:488.330667pt;}
.y9c{bottom:488.992000pt;}
.yd{bottom:491.911600pt;}
.y4c{bottom:494.000000pt;}
.y68{bottom:495.018667pt;}
.y9b{bottom:502.186667pt;}
.y32{bottom:504.000000pt;}
.yc6{bottom:504.997333pt;}
.yc{bottom:512.183600pt;}
.ya{bottom:512.194267pt;}
.y4b{bottom:514.000000pt;}
.y9a{bottom:515.381333pt;}
.y67{bottom:515.546667pt;}
.yc5{bottom:521.664000pt;}
.y31{bottom:524.000000pt;}
.y99{bottom:528.576000pt;}
.yb{bottom:532.455600pt;}
.y4a{bottom:534.000000pt;}
.y66{bottom:536.074667pt;}
.yc4{bottom:538.330667pt;}
.y98{bottom:541.770667pt;}
.y30{bottom:544.000000pt;}
.y49{bottom:554.000000pt;}
.y97{bottom:554.965333pt;}
.yc3{bottom:554.997333pt;}
.y65{bottom:556.602667pt;}
.y2f{bottom:564.000000pt;}
.y96{bottom:568.160000pt;}
.yc2{bottom:571.664000pt;}
.y48{bottom:574.000000pt;}
.y64{bottom:577.130667pt;}
.y95{bottom:581.354667pt;}
.y2e{bottom:584.000000pt;}
.yc1{bottom:588.330667pt;}
.y47{bottom:594.000000pt;}
.y94{bottom:594.549333pt;}
.y63{bottom:597.658667pt;}
.y2d{bottom:604.000000pt;}
.yc0{bottom:604.997333pt;}
.y93{bottom:607.744000pt;}
.y9{bottom:613.527600pt;}
.y46{bottom:614.000000pt;}
.y62{bottom:618.186667pt;}
.ybf{bottom:621.664000pt;}
.y2c{bottom:624.000000pt;}
.y92{bottom:626.613333pt;}
.y8{bottom:630.194267pt;}
.ybe{bottom:638.330667pt;}
.y61{bottom:638.714667pt;}
.y2b{bottom:644.000000pt;}
.y7{bottom:646.860933pt;}
.ybd{bottom:654.997333pt;}
.y60{bottom:659.242667pt;}
.y2a{bottom:664.000000pt;}
.y91{bottom:666.346667pt;}
.ybc{bottom:671.664000pt;}
.y90{bottom:679.541333pt;}
.y5f{bottom:679.770667pt;}
.y29{bottom:684.000000pt;}
.y6{bottom:684.314933pt;}
.ybb{bottom:688.330667pt;}
.y8f{bottom:692.736000pt;}
.y5e{bottom:700.298667pt;}
.y28{bottom:704.000000pt;}
.y5{bottom:704.314933pt;}
.yba{bottom:704.997333pt;}
.y8e{bottom:705.930667pt;}
.y5d{bottom:720.826667pt;}
.yb9{bottom:721.664000pt;}
.y27{bottom:724.000000pt;}
.y8d{bottom:724.800000pt;}
.yb8{bottom:738.330667pt;}
.y5c{bottom:741.354667pt;}
.y26{bottom:744.000000pt;}
.yb7{bottom:754.997333pt;}
.y5b{bottom:761.882667pt;}
.y4{bottom:764.000000pt;}
.y8c{bottom:764.517333pt;}
.yb6{bottom:771.664000pt;}
.y5a{bottom:782.410667pt;}
.y25{bottom:784.000000pt;}
.y8b{bottom:784.389333pt;}
.yb5{bottom:788.330667pt;}
.y3{bottom:790.666667pt;}
.y59{bottom:802.938667pt;}
.y24{bottom:804.000000pt;}
.y8a{bottom:804.261333pt;}
.yb4{bottom:810.666667pt;}
.y2{bottom:817.333333pt;}
.y58{bottom:823.466667pt;}
.y23{bottom:824.000000pt;}
.y89{bottom:824.133333pt;}
.yb3{bottom:826.666667pt;}
.h9{height:29.437500pt;}
.h8{height:35.456000pt;}
.h7{height:35.546875pt;}
.h1{height:36.796875pt;}
.h3{height:37.333333pt;}
.h4{height:42.656250pt;}
.h6{height:44.156250pt;}
.h2{height:73.593750pt;}
.h5{height:266.484587pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x6{left:60.000000pt;}
.xa{left:73.210400pt;}
.x9{left:88.346400pt;}
.x2{left:100.000000pt;}
.x4{left:113.237467pt;}
.x7{left:120.000000pt;}
.x5{left:128.341467pt;}
.x3{left:136.069467pt;}
.xb{left:141.580400pt;}
.x8{left:213.333333pt;}
.x1{left:564.791600pt;}
}




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