
    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_dd3d6673bf91b72adb1ce78a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_373f48ea00e5625edbd43152.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106000;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_2e5e0a008eff38280040722b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_f95fba934b9a365ae1babfc1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.057000;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_5ab0182799f87dbc67cfc873.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_65e049a118e90c59ae6e942f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_19bb14b95bdc038e38c1ed70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935547;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_fad33066306549c2072f454f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.839000;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_52b5810c04729af985e7f813.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,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;}
.ls1f{letter-spacing:-3.348000px;}
.ls14{letter-spacing:-3.186000px;}
.ls26{letter-spacing:-0.864000px;}
.ls25{letter-spacing:-0.810000px;}
.ls16{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.486000px;}
.ls24{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.378000px;}
.ls2c{letter-spacing:-0.324000px;}
.ls20{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264000px;}
.ls29{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.198000px;}
.ls2b{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.270000px;}
.lse{letter-spacing:0.324000px;}
.ls5{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.450000px;}
.ls28{letter-spacing:0.486000px;}
.ls2{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.702000px;}
.ls2f{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.780000px;}
.lsc{letter-spacing:0.810000px;}
.ls8{letter-spacing:0.858000px;}
.lsa{letter-spacing:0.864000px;}
.ls27{letter-spacing:0.918000px;}
.lsb{letter-spacing:0.972000px;}
.ls13{letter-spacing:1.026000px;}
.ls2a{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.134000px;}
.ls1{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.296000px;}
.ls30{letter-spacing:1.440000px;}
.ls33{letter-spacing:1.500000px;}
.ls23{letter-spacing:1.620000px;}
.ls32{letter-spacing:1.740000px;}
.ls15{letter-spacing:1.890000px;}
.ls1c{letter-spacing:1.998000px;}
.ls1a{letter-spacing:2.376000px;}
.ls19{letter-spacing:4.050000px;}
.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;}
}
.ws0{word-spacing:-13.068000px;}
.ws43{word-spacing:-12.150000px;}
.ws5c{word-spacing:-11.880000px;}
.ws3a{word-spacing:-11.286000px;}
.ws5a{word-spacing:-11.232000px;}
.ws1d{word-spacing:-11.070000px;}
.ws44{word-spacing:-10.530000px;}
.ws75{word-spacing:-10.476000px;}
.ws83{word-spacing:-9.990000px;}
.ws7{word-spacing:-3.168000px;}
.ws20{word-spacing:-3.102000px;}
.ws52{word-spacing:-2.862000px;}
.ws55{word-spacing:-2.592000px;}
.ws54{word-spacing:-2.538000px;}
.ws6{word-spacing:-2.376000px;}
.ws12{word-spacing:-2.244000px;}
.ws64{word-spacing:-2.052000px;}
.ws70{word-spacing:-1.998000px;}
.ws51{word-spacing:-1.890000px;}
.ws4{word-spacing:-1.848000px;}
.ws34{word-spacing:-1.782000px;}
.ws53{word-spacing:-1.620000px;}
.ws26{word-spacing:-1.518000px;}
.ws98{word-spacing:-1.500000px;}
.ws82{word-spacing:-1.458000px;}
.ws21{word-spacing:-1.386000px;}
.ws7f{word-spacing:-1.350000px;}
.ws5{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.242000px;}
.ws2{word-spacing:-1.224000px;}
.ws31{word-spacing:-1.188000px;}
.ws38{word-spacing:-1.080000px;}
.ws50{word-spacing:-0.972000px;}
.ws7b{word-spacing:-0.918000px;}
.ws7c{word-spacing:-0.864000px;}
.ws7d{word-spacing:-0.810000px;}
.ws25{word-spacing:-0.792000px;}
.ws94{word-spacing:-0.780000px;}
.ws80{word-spacing:-0.756000px;}
.wse{word-spacing:-0.726000px;}
.ws95{word-spacing:-0.720000px;}
.ws6c{word-spacing:-0.648000px;}
.ws29{word-spacing:-0.594000px;}
.ws65{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.528000px;}
.ws63{word-spacing:-0.486000px;}
.wsf{word-spacing:-0.462000px;}
.ws1e{word-spacing:-0.450000px;}
.ws6d{word-spacing:-0.432000px;}
.ws15{word-spacing:-0.396000px;}
.ws2e{word-spacing:-0.330000px;}
.ws37{word-spacing:-0.324000px;}
.ws4c{word-spacing:-0.270000px;}
.ws2a{word-spacing:-0.264000px;}
.ws8e{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.162000px;}
.ws10{word-spacing:-0.132000px;}
.ws81{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.066000px;}
.ws9a{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws6a{word-spacing:0.108000px;}
.ws6e{word-spacing:0.162000px;}
.ws28{word-spacing:0.198000px;}
.ws32{word-spacing:0.264000px;}
.ws4b{word-spacing:0.270000px;}
.ws8{word-spacing:0.330000px;}
.ws35{word-spacing:0.432000px;}
.ws33{word-spacing:0.528000px;}
.ws97{word-spacing:0.540000px;}
.ws2b{word-spacing:0.594000px;}
.ws89{word-spacing:0.648000px;}
.ws4a{word-spacing:0.756000px;}
.ws61{word-spacing:0.810000px;}
.ws49{word-spacing:0.864000px;}
.ws6f{word-spacing:0.918000px;}
.ws68{word-spacing:0.972000px;}
.ws86{word-spacing:1.080000px;}
.ws17{word-spacing:1.134000px;}
.ws18{word-spacing:1.218000px;}
.ws6b{word-spacing:1.242000px;}
.ws24{word-spacing:1.254000px;}
.ws91{word-spacing:1.296000px;}
.ws13{word-spacing:1.320000px;}
.ws4f{word-spacing:1.350000px;}
.ws2d{word-spacing:1.386000px;}
.wsd{word-spacing:1.452000px;}
.ws7a{word-spacing:1.620000px;}
.ws22{word-spacing:1.848000px;}
.ws90{word-spacing:1.890000px;}
.ws69{word-spacing:2.052000px;}
.ws14{word-spacing:2.112000px;}
.wsb{word-spacing:2.178000px;}
.ws8d{word-spacing:2.214000px;}
.ws67{word-spacing:2.268000px;}
.ws7e{word-spacing:2.322000px;}
.ws56{word-spacing:2.376000px;}
.ws8c{word-spacing:2.430000px;}
.ws9{word-spacing:2.508000px;}
.wsa{word-spacing:2.574000px;}
.ws79{word-spacing:2.700000px;}
.ws8f{word-spacing:2.754000px;}
.ws3{word-spacing:2.772000px;}
.wsc{word-spacing:2.904000px;}
.ws30{word-spacing:3.036000px;}
.ws11{word-spacing:3.168000px;}
.ws48{word-spacing:3.186000px;}
.ws1f{word-spacing:3.234000px;}
.ws99{word-spacing:3.240000px;}
.ws62{word-spacing:3.294000px;}
.ws66{word-spacing:3.348000px;}
.ws46{word-spacing:3.618000px;}
.ws87{word-spacing:3.726000px;}
.ws8b{word-spacing:3.834000px;}
.ws36{word-spacing:4.050000px;}
.ws8a{word-spacing:4.104000px;}
.ws4e{word-spacing:4.212000px;}
.ws23{word-spacing:4.422000px;}
.ws27{word-spacing:4.686000px;}
.ws85{word-spacing:4.806000px;}
.ws84{word-spacing:4.860000px;}
.ws93{word-spacing:5.040000px;}
.ws4d{word-spacing:5.076000px;}
.ws47{word-spacing:5.130000px;}
.ws16{word-spacing:5.250000px;}
.ws92{word-spacing:5.700000px;}
.ws96{word-spacing:5.760000px;}
.ws19{word-spacing:82.846800px;}
.ws78{word-spacing:86.243400px;}
.ws5e{word-spacing:86.248800px;}
.ws3f{word-spacing:89.645400px;}
.ws1b{word-spacing:151.858800px;}
.ws60{word-spacing:155.255400px;}
.ws3e{word-spacing:158.295600px;}
.ws41{word-spacing:158.662800px;}
.ws77{word-spacing:161.697600px;}
.ws5d{word-spacing:165.099600px;}
.ws3b{word-spacing:169.371000px;}
.ws73{word-spacing:172.773000px;}
.ws58{word-spacing:176.175000px;}
.ws3d{word-spacing:198.228600px;}
.ws76{word-spacing:201.630600px;}
.ws5b{word-spacing:205.032600px;}
.ws39{word-spacing:229.267800px;}
.ws72{word-spacing:232.669800px;}
.ws1a{word-spacing:235.175400px;}
.ws57{word-spacing:236.071800px;}
.ws5f{word-spacing:238.577400px;}
.ws40{word-spacing:241.979400px;}
.ws3c{word-spacing:317.444400px;}
.ws74{word-spacing:320.846400px;}
.ws59{word-spacing:324.248400px;}
.ws1c{word-spacing:643.064400px;}
.ws71{word-spacing:645.602400px;}
.ws42{word-spacing:674.006400px;}
._c{margin-left:-6.571200px;}
._5{margin-left:-4.482120px;}
._2{margin-left:-2.937600px;}
._0{margin-left:-1.512000px;}
._1{width:1.141560px;}
._3{width:2.436600px;}
._4{width:3.801960px;}
._6{width:5.222280px;}
._8{width:31.171560px;}
._11{width:34.876440px;}
._e{width:38.278440px;}
._a{width:154.918440px;}
._10{width:158.320440px;}
._d{width:161.722440px;}
._9{width:274.825200px;}
._f{width:278.227200px;}
._b{width:281.629200px;}
._7{width:284.704440px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y21{bottom:70.883850px;}
.y20{bottom:99.909750px;}
.y9b{bottom:109.733550px;}
.y1f{bottom:111.911250px;}
.yc5{bottom:112.846800px;}
.y73{bottom:113.651850px;}
.y1e{bottom:123.912750px;}
.y9a{bottom:124.732050px;}
.yc4{bottom:127.845300px;}
.y4a{bottom:128.023650px;}
.y72{bottom:128.650350px;}
.y1d{bottom:135.914250px;}
.y99{bottom:139.730550px;}
.yc3{bottom:142.843800px;}
.y1c{bottom:147.915750px;}
.y49{bottom:149.934150px;}
.y71{bottom:150.560850px;}
.y98{bottom:154.729050px;}
.yc2{bottom:157.842300px;}
.y1b{bottom:164.169750px;}
.y70{bottom:165.559350px;}
.y97{bottom:169.727550px;}
.y48{bottom:171.844650px;}
.y1a{bottom:176.171250px;}
.yc1{bottom:179.752800px;}
.y6f{bottom:180.557850px;}
.y47{bottom:186.843150px;}
.y96{bottom:191.638050px;}
.y19{bottom:192.425250px;}
.yc0{bottom:201.663300px;}
.y46{bottom:201.841650px;}
.y6e{bottom:202.468350px;}
.y95{bottom:206.636550px;}
.y45{bottom:216.840150px;}
.y6d{bottom:217.466850px;}
.ybf{bottom:223.573800px;}
.y94{bottom:228.547050px;}
.yeb{bottom:237.253050px;}
.y44{bottom:238.750650px;}
.y6c{bottom:239.377350px;}
.y18{bottom:242.180400px;}
.y93{bottom:250.646550px;}
.yea{bottom:252.251550px;}
.y43{bottom:253.749150px;}
.y17{bottom:260.181900px;}
.y6b{bottom:261.287850px;}
.ye9{bottom:274.162050px;}
.y42{bottom:275.659650px;}
.y6a{bottom:276.286350px;}
.y16{bottom:278.183400px;}
.ybe{bottom:281.872050px;}
.y69{bottom:291.284850px;}
.ye8{bottom:296.072550px;}
.y15{bottom:296.184900px;}
.ybd{bottom:296.870550px;}
.y41{bottom:297.570150px;}
.y92{bottom:309.331050px;}
.y68{bottom:313.195350px;}
.y14{bottom:314.186400px;}
.ye7{bottom:317.983050px;}
.ybc{bottom:318.781050px;}
.y91{bottom:324.329550px;}
.y13{bottom:332.187900px;}
.y67{bottom:335.105850px;}
.y40{bottom:337.462500px;}
.ye6{bottom:339.893550px;}
.ybb{bottom:340.691550px;}
.y90{bottom:346.240050px;}
.y12{bottom:350.189400px;}
.ye5{bottom:354.892050px;}
.y3f{bottom:355.464000px;}
.y66{bottom:357.016350px;}
.yba{bottom:362.602050px;}
.y8f{bottom:368.150550px;}
.y11{bottom:368.190900px;}
.ye4{bottom:369.890550px;}
.y3e{bottom:373.465500px;}
.yfb{bottom:374.824200px;}
.yb9{bottom:384.512550px;}
.ye3{bottom:384.889050px;}
.y10{bottom:386.192400px;}
.y8e{bottom:390.061050px;}
.yfa{bottom:391.324200px;}
.y3d{bottom:391.467000px;}
.yb8{bottom:399.511050px;}
.ye2{bottom:399.887550px;}
.yf{bottom:404.193900px;}
.yf9{bottom:407.824200px;}
.y3c{bottom:409.468500px;}
.y8d{bottom:411.971550px;}
.yb7{bottom:414.509550px;}
.ye1{bottom:414.886050px;}
.y65{bottom:415.495050px;}
.ye{bottom:422.195400px;}
.yf8{bottom:424.324200px;}
.y8c{bottom:426.970050px;}
.y3b{bottom:427.470000px;}
.yb6{bottom:429.508050px;}
.ye0{bottom:429.884550px;}
.y64{bottom:430.493550px;}
.yd{bottom:440.196900px;}
.yf7{bottom:440.824200px;}
.y8b{bottom:441.968550px;}
.yb5{bottom:444.506550px;}
.ydf{bottom:444.883050px;}
.y3a{bottom:445.471500px;}
.y63{bottom:452.404050px;}
.y8a{bottom:456.967050px;}
.yf6{bottom:457.324200px;}
.yc{bottom:458.198400px;}
.yb4{bottom:459.505050px;}
.yde{bottom:459.881550px;}
.y39{bottom:463.473000px;}
.y89{bottom:471.965550px;}
.yf5{bottom:473.824200px;}
.yb3{bottom:474.503550px;}
.ydd{bottom:474.880050px;}
.yb{bottom:476.199900px;}
.y38{bottom:481.474500px;}
.y88{bottom:486.964050px;}
.y62{bottom:489.313050px;}
.yb2{bottom:489.502050px;}
.ydc{bottom:489.878550px;}
.yf4{bottom:490.324200px;}
.ya{bottom:494.201400px;}
.y37{bottom:499.476000px;}
.y87{bottom:501.962550px;}
.yb1{bottom:504.500550px;}
.ydb{bottom:504.877050px;}
.yf3{bottom:506.824200px;}
.y61{bottom:511.223550px;}
.y9{bottom:512.202900px;}
.y86{bottom:516.961050px;}
.yb0{bottom:519.499050px;}
.yda{bottom:519.875550px;}
.yf2{bottom:523.324200px;}
.y36{bottom:526.970550px;}
.y8{bottom:530.204400px;}
.y85{bottom:531.959550px;}
.y60{bottom:533.134050px;}
.yaf{bottom:534.497550px;}
.yd9{bottom:534.874050px;}
.yf1{bottom:539.824200px;}
.y84{bottom:546.958050px;}
.y5f{bottom:548.132550px;}
.y7{bottom:548.205900px;}
.yae{bottom:549.496050px;}
.yd8{bottom:549.872550px;}
.yf0{bottom:556.324200px;}
.y83{bottom:561.956550px;}
.y5e{bottom:563.131050px;}
.yad{bottom:564.494550px;}
.yd7{bottom:564.871050px;}
.y6{bottom:566.207400px;}
.y35{bottom:570.455400px;}
.yef{bottom:572.824200px;}
.y82{bottom:576.955050px;}
.y5d{bottom:578.129550px;}
.yac{bottom:579.493050px;}
.yd6{bottom:579.869550px;}
.y5{bottom:584.208900px;}
.y34{bottom:588.456900px;}
.yee{bottom:589.324200px;}
.y81{bottom:591.953550px;}
.y5c{bottom:593.128050px;}
.yab{bottom:594.491550px;}
.yd5{bottom:594.868050px;}
.y33{bottom:606.458400px;}
.y80{bottom:606.952050px;}
.y5b{bottom:608.126550px;}
.yaa{bottom:609.490050px;}
.yd4{bottom:609.866550px;}
.y4{bottom:611.703600px;}
.yed{bottom:615.318900px;}
.y7f{bottom:621.950550px;}
.y5a{bottom:623.125050px;}
.y32{bottom:624.459900px;}
.ya9{bottom:624.488550px;}
.yd3{bottom:624.865050px;}
.y7e{bottom:636.949050px;}
.y59{bottom:638.123550px;}
.ya8{bottom:639.487050px;}
.yd2{bottom:639.863550px;}
.y31{bottom:642.461400px;}
.y7d{bottom:651.947550px;}
.y58{bottom:653.122050px;}
.yd1{bottom:654.862050px;}
.y30{bottom:660.462900px;}
.ya7{bottom:661.397550px;}
.y7c{bottom:666.946050px;}
.y57{bottom:668.120550px;}
.yd0{bottom:676.772550px;}
.yec{bottom:678.330750px;}
.y2f{bottom:678.464400px;}
.y7b{bottom:681.944550px;}
.y56{bottom:683.119050px;}
.ya6{bottom:683.308050px;}
.y2e{bottom:696.465900px;}
.y7a{bottom:696.943050px;}
.y55{bottom:698.117550px;}
.ya5{bottom:698.306550px;}
.ycf{bottom:698.683050px;}
.y79{bottom:711.941550px;}
.y54{bottom:713.116050px;}
.y2d{bottom:714.467400px;}
.ya4{bottom:720.217050px;}
.y78{bottom:726.940050px;}
.y53{bottom:728.114550px;}
.y2c{bottom:732.468900px;}
.ya3{bottom:735.215550px;}
.yce{bottom:735.592050px;}
.y77{bottom:741.938550px;}
.y52{bottom:750.025050px;}
.y2b{bottom:750.470400px;}
.y76{bottom:756.937050px;}
.ya2{bottom:757.126050px;}
.ycd{bottom:757.502550px;}
.y2a{bottom:768.471900px;}
.y51{bottom:771.935550px;}
.ya1{bottom:772.124550px;}
.ycc{bottom:772.501050px;}
.y29{bottom:786.473400px;}
.y75{bottom:786.934050px;}
.y50{bottom:793.846050px;}
.ya0{bottom:794.035050px;}
.ycb{bottom:794.411550px;}
.y28{bottom:804.474900px;}
.y4f{bottom:808.844550px;}
.y9f{bottom:809.033550px;}
.yca{bottom:809.410050px;}
.y27{bottom:822.476400px;}
.y4e{bottom:830.755050px;}
.y9e{bottom:830.944050px;}
.yc9{bottom:831.320550px;}
.y3{bottom:835.215300px;}
.y26{bottom:840.477900px;}
.y4d{bottom:845.753550px;}
.y9d{bottom:845.942550px;}
.yc8{bottom:846.319050px;}
.y74{bottom:852.665550px;}
.y25{bottom:858.479400px;}
.y2{bottom:864.725550px;}
.y4c{bottom:867.664050px;}
.y9c{bottom:867.853050px;}
.yc7{bottom:868.229550px;}
.y24{bottom:876.480900px;}
.y4b{bottom:889.763550px;}
.y1{bottom:889.919250px;}
.yc6{bottom:889.951050px;}
.y23{bottom:894.482400px;}
.y22{bottom:934.435800px;}
.h6{height:30.618164px;}
.hc{height:39.788086px;}
.h8{height:41.176758px;}
.ha{height:42.984000px;}
.h9{height:43.038000px;}
.hb{height:47.760000px;}
.h4{height:49.412109px;}
.h5{height:52.536000px;}
.h7{height:54.902344px;}
.h3{height:57.312000px;}
.h2{height:69.176953px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x4{left:89.291250px;}
.x1{left:106.299150px;}
.x8{left:110.551200px;}
.x2{left:127.559100px;}
.x7{left:157.927050px;}
.x5{left:192.188250px;}
.xd{left:193.889400px;}
.xa{left:213.448200px;}
.xb{left:215.149200px;}
.xe{left:289.347900px;}
.x9{left:309.973200px;}
.xc{left:317.708700px;}
.x6{left:578.591100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-2.976000pt;}
.ls14{letter-spacing:-2.832000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls25{letter-spacing:-0.720000pt;}
.ls16{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.432000pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.336000pt;}
.ls2c{letter-spacing:-0.288000pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.234667pt;}
.ls29{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls2b{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.288000pt;}
.ls5{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.400000pt;}
.ls28{letter-spacing:0.432000pt;}
.ls2{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.624000pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.693333pt;}
.lsc{letter-spacing:0.720000pt;}
.ls8{letter-spacing:0.762667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.816000pt;}
.lsb{letter-spacing:0.864000pt;}
.ls13{letter-spacing:0.912000pt;}
.ls2a{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.008000pt;}
.ls1{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.152000pt;}
.ls30{letter-spacing:1.280000pt;}
.ls33{letter-spacing:1.333333pt;}
.ls23{letter-spacing:1.440000pt;}
.ls32{letter-spacing:1.546667pt;}
.ls15{letter-spacing:1.680000pt;}
.ls1c{letter-spacing:1.776000pt;}
.ls1a{letter-spacing:2.112000pt;}
.ls19{letter-spacing:3.600000pt;}
.ws0{word-spacing:-11.616000pt;}
.ws43{word-spacing:-10.800000pt;}
.ws5c{word-spacing:-10.560000pt;}
.ws3a{word-spacing:-10.032000pt;}
.ws5a{word-spacing:-9.984000pt;}
.ws1d{word-spacing:-9.840000pt;}
.ws44{word-spacing:-9.360000pt;}
.ws75{word-spacing:-9.312000pt;}
.ws83{word-spacing:-8.880000pt;}
.ws7{word-spacing:-2.816000pt;}
.ws20{word-spacing:-2.757333pt;}
.ws52{word-spacing:-2.544000pt;}
.ws55{word-spacing:-2.304000pt;}
.ws54{word-spacing:-2.256000pt;}
.ws6{word-spacing:-2.112000pt;}
.ws12{word-spacing:-1.994667pt;}
.ws64{word-spacing:-1.824000pt;}
.ws70{word-spacing:-1.776000pt;}
.ws51{word-spacing:-1.680000pt;}
.ws4{word-spacing:-1.642667pt;}
.ws34{word-spacing:-1.584000pt;}
.ws53{word-spacing:-1.440000pt;}
.ws26{word-spacing:-1.349333pt;}
.ws98{word-spacing:-1.333333pt;}
.ws82{word-spacing:-1.296000pt;}
.ws21{word-spacing:-1.232000pt;}
.ws7f{word-spacing:-1.200000pt;}
.ws5{word-spacing:-1.173333pt;}
.ws88{word-spacing:-1.104000pt;}
.ws2{word-spacing:-1.088000pt;}
.ws31{word-spacing:-1.056000pt;}
.ws38{word-spacing:-0.960000pt;}
.ws50{word-spacing:-0.864000pt;}
.ws7b{word-spacing:-0.816000pt;}
.ws7c{word-spacing:-0.768000pt;}
.ws7d{word-spacing:-0.720000pt;}
.ws25{word-spacing:-0.704000pt;}
.ws94{word-spacing:-0.693333pt;}
.ws80{word-spacing:-0.672000pt;}
.wse{word-spacing:-0.645333pt;}
.ws95{word-spacing:-0.640000pt;}
.ws6c{word-spacing:-0.576000pt;}
.ws29{word-spacing:-0.528000pt;}
.ws65{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.469333pt;}
.ws63{word-spacing:-0.432000pt;}
.wsf{word-spacing:-0.410667pt;}
.ws1e{word-spacing:-0.400000pt;}
.ws6d{word-spacing:-0.384000pt;}
.ws15{word-spacing:-0.352000pt;}
.ws2e{word-spacing:-0.293333pt;}
.ws37{word-spacing:-0.288000pt;}
.ws4c{word-spacing:-0.240000pt;}
.ws2a{word-spacing:-0.234667pt;}
.ws8e{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.144000pt;}
.ws10{word-spacing:-0.117333pt;}
.ws81{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.058667pt;}
.ws9a{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.096000pt;}
.ws6e{word-spacing:0.144000pt;}
.ws28{word-spacing:0.176000pt;}
.ws32{word-spacing:0.234667pt;}
.ws4b{word-spacing:0.240000pt;}
.ws8{word-spacing:0.293333pt;}
.ws35{word-spacing:0.384000pt;}
.ws33{word-spacing:0.469333pt;}
.ws97{word-spacing:0.480000pt;}
.ws2b{word-spacing:0.528000pt;}
.ws89{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.672000pt;}
.ws61{word-spacing:0.720000pt;}
.ws49{word-spacing:0.768000pt;}
.ws6f{word-spacing:0.816000pt;}
.ws68{word-spacing:0.864000pt;}
.ws86{word-spacing:0.960000pt;}
.ws17{word-spacing:1.008000pt;}
.ws18{word-spacing:1.082667pt;}
.ws6b{word-spacing:1.104000pt;}
.ws24{word-spacing:1.114667pt;}
.ws91{word-spacing:1.152000pt;}
.ws13{word-spacing:1.173333pt;}
.ws4f{word-spacing:1.200000pt;}
.ws2d{word-spacing:1.232000pt;}
.wsd{word-spacing:1.290667pt;}
.ws7a{word-spacing:1.440000pt;}
.ws22{word-spacing:1.642667pt;}
.ws90{word-spacing:1.680000pt;}
.ws69{word-spacing:1.824000pt;}
.ws14{word-spacing:1.877333pt;}
.wsb{word-spacing:1.936000pt;}
.ws8d{word-spacing:1.968000pt;}
.ws67{word-spacing:2.016000pt;}
.ws7e{word-spacing:2.064000pt;}
.ws56{word-spacing:2.112000pt;}
.ws8c{word-spacing:2.160000pt;}
.ws9{word-spacing:2.229333pt;}
.wsa{word-spacing:2.288000pt;}
.ws79{word-spacing:2.400000pt;}
.ws8f{word-spacing:2.448000pt;}
.ws3{word-spacing:2.464000pt;}
.wsc{word-spacing:2.581333pt;}
.ws30{word-spacing:2.698667pt;}
.ws11{word-spacing:2.816000pt;}
.ws48{word-spacing:2.832000pt;}
.ws1f{word-spacing:2.874667pt;}
.ws99{word-spacing:2.880000pt;}
.ws62{word-spacing:2.928000pt;}
.ws66{word-spacing:2.976000pt;}
.ws46{word-spacing:3.216000pt;}
.ws87{word-spacing:3.312000pt;}
.ws8b{word-spacing:3.408000pt;}
.ws36{word-spacing:3.600000pt;}
.ws8a{word-spacing:3.648000pt;}
.ws4e{word-spacing:3.744000pt;}
.ws23{word-spacing:3.930667pt;}
.ws27{word-spacing:4.165333pt;}
.ws85{word-spacing:4.272000pt;}
.ws84{word-spacing:4.320000pt;}
.ws93{word-spacing:4.480000pt;}
.ws4d{word-spacing:4.512000pt;}
.ws47{word-spacing:4.560000pt;}
.ws16{word-spacing:4.666667pt;}
.ws92{word-spacing:5.066667pt;}
.ws96{word-spacing:5.120000pt;}
.ws19{word-spacing:73.641600pt;}
.ws78{word-spacing:76.660800pt;}
.ws5e{word-spacing:76.665600pt;}
.ws3f{word-spacing:79.684800pt;}
.ws1b{word-spacing:134.985600pt;}
.ws60{word-spacing:138.004800pt;}
.ws3e{word-spacing:140.707200pt;}
.ws41{word-spacing:141.033600pt;}
.ws77{word-spacing:143.731200pt;}
.ws5d{word-spacing:146.755200pt;}
.ws3b{word-spacing:150.552000pt;}
.ws73{word-spacing:153.576000pt;}
.ws58{word-spacing:156.600000pt;}
.ws3d{word-spacing:176.203200pt;}
.ws76{word-spacing:179.227200pt;}
.ws5b{word-spacing:182.251200pt;}
.ws39{word-spacing:203.793600pt;}
.ws72{word-spacing:206.817600pt;}
.ws1a{word-spacing:209.044800pt;}
.ws57{word-spacing:209.841600pt;}
.ws5f{word-spacing:212.068800pt;}
.ws40{word-spacing:215.092800pt;}
.ws3c{word-spacing:282.172800pt;}
.ws74{word-spacing:285.196800pt;}
.ws59{word-spacing:288.220800pt;}
.ws1c{word-spacing:571.612800pt;}
.ws71{word-spacing:573.868800pt;}
.ws42{word-spacing:599.116800pt;}
._c{margin-left:-5.841067pt;}
._5{margin-left:-3.984107pt;}
._2{margin-left:-2.611200pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.014720pt;}
._3{width:2.165867pt;}
._4{width:3.379520pt;}
._6{width:4.642027pt;}
._8{width:27.708053pt;}
._11{width:31.001280pt;}
._e{width:34.025280pt;}
._a{width:137.705280pt;}
._10{width:140.729280pt;}
._d{width:143.753280pt;}
._9{width:244.289067pt;}
._f{width:247.313067pt;}
._b{width:250.337067pt;}
._7{width:253.070613pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:63.007867pt;}
.y20{bottom:88.808667pt;}
.y9b{bottom:97.540933pt;}
.y1f{bottom:99.476667pt;}
.yc5{bottom:100.308267pt;}
.y73{bottom:101.023867pt;}
.y1e{bottom:110.144667pt;}
.y9a{bottom:110.872933pt;}
.yc4{bottom:113.640267pt;}
.y4a{bottom:113.798800pt;}
.y72{bottom:114.355867pt;}
.y1d{bottom:120.812667pt;}
.y99{bottom:124.204933pt;}
.yc3{bottom:126.972267pt;}
.y1c{bottom:131.480667pt;}
.y49{bottom:133.274800pt;}
.y71{bottom:133.831867pt;}
.y98{bottom:137.536933pt;}
.yc2{bottom:140.304267pt;}
.y1b{bottom:145.928667pt;}
.y70{bottom:147.163867pt;}
.y97{bottom:150.868933pt;}
.y48{bottom:152.750800pt;}
.y1a{bottom:156.596667pt;}
.yc1{bottom:159.780267pt;}
.y6f{bottom:160.495867pt;}
.y47{bottom:166.082800pt;}
.y96{bottom:170.344933pt;}
.y19{bottom:171.044667pt;}
.yc0{bottom:179.256267pt;}
.y46{bottom:179.414800pt;}
.y6e{bottom:179.971867pt;}
.y95{bottom:183.676933pt;}
.y45{bottom:192.746800pt;}
.y6d{bottom:193.303867pt;}
.ybf{bottom:198.732267pt;}
.y94{bottom:203.152933pt;}
.yeb{bottom:210.891600pt;}
.y44{bottom:212.222800pt;}
.y6c{bottom:212.779867pt;}
.y18{bottom:215.271467pt;}
.y93{bottom:222.796933pt;}
.yea{bottom:224.223600pt;}
.y43{bottom:225.554800pt;}
.y17{bottom:231.272800pt;}
.y6b{bottom:232.255867pt;}
.ye9{bottom:243.699600pt;}
.y42{bottom:245.030800pt;}
.y6a{bottom:245.587867pt;}
.y16{bottom:247.274133pt;}
.ybe{bottom:250.552933pt;}
.y69{bottom:258.919867pt;}
.ye8{bottom:263.175600pt;}
.y15{bottom:263.275467pt;}
.ybd{bottom:263.884933pt;}
.y41{bottom:264.506800pt;}
.y92{bottom:274.960933pt;}
.y68{bottom:278.395867pt;}
.y14{bottom:279.276800pt;}
.ye7{bottom:282.651600pt;}
.ybc{bottom:283.360933pt;}
.y91{bottom:288.292933pt;}
.y13{bottom:295.278133pt;}
.y67{bottom:297.871867pt;}
.y40{bottom:299.966667pt;}
.ye6{bottom:302.127600pt;}
.ybb{bottom:302.836933pt;}
.y90{bottom:307.768933pt;}
.y12{bottom:311.279467pt;}
.ye5{bottom:315.459600pt;}
.y3f{bottom:315.968000pt;}
.y66{bottom:317.347867pt;}
.yba{bottom:322.312933pt;}
.y8f{bottom:327.244933pt;}
.y11{bottom:327.280800pt;}
.ye4{bottom:328.791600pt;}
.y3e{bottom:331.969333pt;}
.yfb{bottom:333.177067pt;}
.yb9{bottom:341.788933pt;}
.ye3{bottom:342.123600pt;}
.y10{bottom:343.282133pt;}
.y8e{bottom:346.720933pt;}
.yfa{bottom:347.843733pt;}
.y3d{bottom:347.970667pt;}
.yb8{bottom:355.120933pt;}
.ye2{bottom:355.455600pt;}
.yf{bottom:359.283467pt;}
.yf9{bottom:362.510400pt;}
.y3c{bottom:363.972000pt;}
.y8d{bottom:366.196933pt;}
.yb7{bottom:368.452933pt;}
.ye1{bottom:368.787600pt;}
.y65{bottom:369.328933pt;}
.ye{bottom:375.284800pt;}
.yf8{bottom:377.177067pt;}
.y8c{bottom:379.528933pt;}
.y3b{bottom:379.973333pt;}
.yb6{bottom:381.784933pt;}
.ye0{bottom:382.119600pt;}
.y64{bottom:382.660933pt;}
.yd{bottom:391.286133pt;}
.yf7{bottom:391.843733pt;}
.y8b{bottom:392.860933pt;}
.yb5{bottom:395.116933pt;}
.ydf{bottom:395.451600pt;}
.y3a{bottom:395.974667pt;}
.y63{bottom:402.136933pt;}
.y8a{bottom:406.192933pt;}
.yf6{bottom:406.510400pt;}
.yc{bottom:407.287467pt;}
.yb4{bottom:408.448933pt;}
.yde{bottom:408.783600pt;}
.y39{bottom:411.976000pt;}
.y89{bottom:419.524933pt;}
.yf5{bottom:421.177067pt;}
.yb3{bottom:421.780933pt;}
.ydd{bottom:422.115600pt;}
.yb{bottom:423.288800pt;}
.y38{bottom:427.977333pt;}
.y88{bottom:432.856933pt;}
.y62{bottom:434.944933pt;}
.yb2{bottom:435.112933pt;}
.ydc{bottom:435.447600pt;}
.yf4{bottom:435.843733pt;}
.ya{bottom:439.290133pt;}
.y37{bottom:443.978667pt;}
.y87{bottom:446.188933pt;}
.yb1{bottom:448.444933pt;}
.ydb{bottom:448.779600pt;}
.yf3{bottom:450.510400pt;}
.y61{bottom:454.420933pt;}
.y9{bottom:455.291467pt;}
.y86{bottom:459.520933pt;}
.yb0{bottom:461.776933pt;}
.yda{bottom:462.111600pt;}
.yf2{bottom:465.177067pt;}
.y36{bottom:468.418267pt;}
.y8{bottom:471.292800pt;}
.y85{bottom:472.852933pt;}
.y60{bottom:473.896933pt;}
.yaf{bottom:475.108933pt;}
.yd9{bottom:475.443600pt;}
.yf1{bottom:479.843733pt;}
.y84{bottom:486.184933pt;}
.y5f{bottom:487.228933pt;}
.y7{bottom:487.294133pt;}
.yae{bottom:488.440933pt;}
.yd8{bottom:488.775600pt;}
.yf0{bottom:494.510400pt;}
.y83{bottom:499.516933pt;}
.y5e{bottom:500.560933pt;}
.yad{bottom:501.772933pt;}
.yd7{bottom:502.107600pt;}
.y6{bottom:503.295467pt;}
.y35{bottom:507.071467pt;}
.yef{bottom:509.177067pt;}
.y82{bottom:512.848933pt;}
.y5d{bottom:513.892933pt;}
.yac{bottom:515.104933pt;}
.yd6{bottom:515.439600pt;}
.y5{bottom:519.296800pt;}
.y34{bottom:523.072800pt;}
.yee{bottom:523.843733pt;}
.y81{bottom:526.180933pt;}
.y5c{bottom:527.224933pt;}
.yab{bottom:528.436933pt;}
.yd5{bottom:528.771600pt;}
.y33{bottom:539.074133pt;}
.y80{bottom:539.512933pt;}
.y5b{bottom:540.556933pt;}
.yaa{bottom:541.768933pt;}
.yd4{bottom:542.103600pt;}
.y4{bottom:543.736533pt;}
.yed{bottom:546.950133pt;}
.y7f{bottom:552.844933pt;}
.y5a{bottom:553.888933pt;}
.y32{bottom:555.075467pt;}
.ya9{bottom:555.100933pt;}
.yd3{bottom:555.435600pt;}
.y7e{bottom:566.176933pt;}
.y59{bottom:567.220933pt;}
.ya8{bottom:568.432933pt;}
.yd2{bottom:568.767600pt;}
.y31{bottom:571.076800pt;}
.y7d{bottom:579.508933pt;}
.y58{bottom:580.552933pt;}
.yd1{bottom:582.099600pt;}
.y30{bottom:587.078133pt;}
.ya7{bottom:587.908933pt;}
.y7c{bottom:592.840933pt;}
.y57{bottom:593.884933pt;}
.yd0{bottom:601.575600pt;}
.yec{bottom:602.960667pt;}
.y2f{bottom:603.079467pt;}
.y7b{bottom:606.172933pt;}
.y56{bottom:607.216933pt;}
.ya6{bottom:607.384933pt;}
.y2e{bottom:619.080800pt;}
.y7a{bottom:619.504933pt;}
.y55{bottom:620.548933pt;}
.ya5{bottom:620.716933pt;}
.ycf{bottom:621.051600pt;}
.y79{bottom:632.836933pt;}
.y54{bottom:633.880933pt;}
.y2d{bottom:635.082133pt;}
.ya4{bottom:640.192933pt;}
.y78{bottom:646.168933pt;}
.y53{bottom:647.212933pt;}
.y2c{bottom:651.083467pt;}
.ya3{bottom:653.524933pt;}
.yce{bottom:653.859600pt;}
.y77{bottom:659.500933pt;}
.y52{bottom:666.688933pt;}
.y2b{bottom:667.084800pt;}
.y76{bottom:672.832933pt;}
.ya2{bottom:673.000933pt;}
.ycd{bottom:673.335600pt;}
.y2a{bottom:683.086133pt;}
.y51{bottom:686.164933pt;}
.ya1{bottom:686.332933pt;}
.ycc{bottom:686.667600pt;}
.y29{bottom:699.087467pt;}
.y75{bottom:699.496933pt;}
.y50{bottom:705.640933pt;}
.ya0{bottom:705.808933pt;}
.ycb{bottom:706.143600pt;}
.y28{bottom:715.088800pt;}
.y4f{bottom:718.972933pt;}
.y9f{bottom:719.140933pt;}
.yca{bottom:719.475600pt;}
.y27{bottom:731.090133pt;}
.y4e{bottom:738.448933pt;}
.y9e{bottom:738.616933pt;}
.yc9{bottom:738.951600pt;}
.y3{bottom:742.413600pt;}
.y26{bottom:747.091467pt;}
.y4d{bottom:751.780933pt;}
.y9d{bottom:751.948933pt;}
.yc8{bottom:752.283600pt;}
.y74{bottom:757.924933pt;}
.y25{bottom:763.092800pt;}
.y2{bottom:768.644933pt;}
.y4c{bottom:771.256933pt;}
.y9c{bottom:771.424933pt;}
.yc7{bottom:771.759600pt;}
.y24{bottom:779.094133pt;}
.y4b{bottom:790.900933pt;}
.y1{bottom:791.039333pt;}
.yc6{bottom:791.067600pt;}
.y23{bottom:795.095467pt;}
.y22{bottom:830.609600pt;}
.h6{height:27.216146pt;}
.hc{height:35.367188pt;}
.h8{height:36.601562pt;}
.ha{height:38.208000pt;}
.h9{height:38.256000pt;}
.hb{height:42.453333pt;}
.h4{height:43.921875pt;}
.h5{height:46.698667pt;}
.h7{height:48.802083pt;}
.h3{height:50.944000pt;}
.h2{height:61.490625pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x4{left:79.370000pt;}
.x1{left:94.488133pt;}
.x8{left:98.267733pt;}
.x2{left:113.385867pt;}
.x7{left:140.379600pt;}
.x5{left:170.834000pt;}
.xd{left:172.346133pt;}
.xa{left:189.731733pt;}
.xb{left:191.243733pt;}
.xe{left:257.198133pt;}
.x9{left:275.531733pt;}
.xc{left:282.407733pt;}
.x6{left:514.303200pt;}
}




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