
    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_9f105d8e2110ef528f91fb35.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_5deeabd14c006bc9de5d6039.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_d7e57acb09416769eb3a6899.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731000;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_c4eebeb7f2b28b9544e0df4d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_1a998c11d09b3da5e84721d2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2508e27eb0c202c7646dd588.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_cefd44b824dd5ae07513d849.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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_b2614d07b42900e4e6bc6259.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.726000;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;}
.m5{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{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);}
.v2{vertical-align:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.781200px;}
.ls2{letter-spacing:-1.305000px;}
.ls9{letter-spacing:-0.450000px;}
.ls8{letter-spacing:-0.306600px;}
.ls1{letter-spacing:-0.225000px;}
.ls4{letter-spacing:-0.175200px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.033600px;}
.ls7{letter-spacing:0.630000px;}
.ls6{letter-spacing:1.522800px;}
.ls0{letter-spacing:2090.608163px;}
.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;}
}
.ws56{word-spacing:-16.694400px;}
.ws6d{word-spacing:-10.800000px;}
.ws8b{word-spacing:-10.320000px;}
.ws2{word-spacing:-9.000000px;}
.ws1c{word-spacing:-8.760000px;}
.ws3b{word-spacing:-8.584800px;}
.ws0{word-spacing:-7.695000px;}
.ws6f{word-spacing:-3.214800px;}
.ws28{word-spacing:-3.158400px;}
.wsb{word-spacing:-3.069000px;}
.ws3a{word-spacing:-2.890800px;}
.ws14{word-spacing:-2.845800px;}
.ws76{word-spacing:-2.650800px;}
.wse{word-spacing:-2.622600px;}
.ws12{word-spacing:-2.566800px;}
.ws23{word-spacing:-2.425200px;}
.ws13{word-spacing:-2.176200px;}
.ws46{word-spacing:-2.030400px;}
.ws65{word-spacing:-1.974000px;}
.ws35{word-spacing:-1.861200px;}
.wsf{word-spacing:-1.785600px;}
.ws70{word-spacing:-1.748400px;}
.ws40{word-spacing:-1.692000px;}
.ws2f{word-spacing:-1.522800px;}
.ws72{word-spacing:-1.240800px;}
.ws20{word-spacing:-1.184400px;}
.ws6b{word-spacing:-1.138800px;}
.ws52{word-spacing:-1.128000px;}
.ws8a{word-spacing:-1.080000px;}
.ws3d{word-spacing:-1.015200px;}
.ws34{word-spacing:-0.958800px;}
.ws68{word-spacing:-0.902400px;}
.ws1d{word-spacing:-0.855000px;}
.ws6e{word-spacing:-0.789600px;}
.ws37{word-spacing:-0.733200px;}
.wsa0{word-spacing:-0.412800px;}
.ws81{word-spacing:-0.360000px;}
.ws59{word-spacing:-0.338400px;}
.wsa8{word-spacing:-0.309600px;}
.ws80{word-spacing:-0.270000px;}
.wsc{word-spacing:-0.223200px;}
.ws61{word-spacing:-0.112800px;}
.ws1{word-spacing:-0.043800px;}
.ws1a{word-spacing:-0.032881px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:0.131400px;}
.ws4{word-spacing:0.225000px;}
.wsa7{word-spacing:0.309600px;}
.wsd{word-spacing:0.334800px;}
.ws74{word-spacing:0.338400px;}
.ws96{word-spacing:0.450000px;}
.ws3c{word-spacing:0.507600px;}
.ws7{word-spacing:0.558000px;}
.ws18{word-spacing:0.564000px;}
.ws32{word-spacing:0.620400px;}
.ws5e{word-spacing:0.676800px;}
.ws63{word-spacing:0.789600px;}
.ws49{word-spacing:0.902400px;}
.ws87{word-spacing:0.990000px;}
.ws45{word-spacing:1.071600px;}
.ws89{word-spacing:1.080000px;}
.ws9e{word-spacing:1.083600px;}
.ws4b{word-spacing:1.128000px;}
.wsa2{word-spacing:1.135200px;}
.ws33{word-spacing:1.522800px;}
.ws82{word-spacing:1.575000px;}
.wsa6{word-spacing:1.702800px;}
.ws50{word-spacing:1.804800px;}
.wsa1{word-spacing:1.806000px;}
.ws5d{word-spacing:1.861200px;}
.ws2a{word-spacing:1.917600px;}
.ws55{word-spacing:1.927200px;}
.ws90{word-spacing:1.980000px;}
.ws91{word-spacing:2.115000px;}
.ws10{word-spacing:2.176200px;}
.ws24{word-spacing:2.199600px;}
.ws4c{word-spacing:2.368800px;}
.ws47{word-spacing:2.481600px;}
.ws6{word-spacing:2.566800px;}
.ws51{word-spacing:2.594400px;}
.ws69{word-spacing:2.715600px;}
.ws53{word-spacing:2.763600px;}
.ws8e{word-spacing:2.835000px;}
.ws16{word-spacing:2.876400px;}
.wsa{word-spacing:2.901600px;}
.ws1f{word-spacing:2.932800px;}
.ws97{word-spacing:3.105000px;}
.ws25{word-spacing:3.158400px;}
.ws54{word-spacing:3.285000px;}
.ws2c{word-spacing:3.327600px;}
.ws84{word-spacing:3.375000px;}
.ws41{word-spacing:3.384000px;}
.wsa5{word-spacing:3.457200px;}
.ws19{word-spacing:3.496800px;}
.ws5{word-spacing:3.515400px;}
.ws4d{word-spacing:3.553200px;}
.wsa4{word-spacing:3.612000px;}
.ws78{word-spacing:3.891600px;}
.ws6a{word-spacing:3.942000px;}
.ws3f{word-spacing:3.948000px;}
.ws7e{word-spacing:3.960000px;}
.ws98{word-spacing:4.095000px;}
.ws22{word-spacing:4.117200px;}
.ws77{word-spacing:4.173600px;}
.ws9c{word-spacing:4.231200px;}
.ws57{word-spacing:4.286400px;}
.ws29{word-spacing:4.399200px;}
.ws36{word-spacing:4.624800px;}
.ws15{word-spacing:4.687200px;}
.ws9f{word-spacing:4.695600px;}
.ws83{word-spacing:4.905000px;}
.ws62{word-spacing:4.906800px;}
.ws30{word-spacing:5.019600px;}
.ws66{word-spacing:5.132400px;}
.ws64{word-spacing:5.188800px;}
.ws60{word-spacing:5.245200px;}
.ws2b{word-spacing:5.470800px;}
.ws5c{word-spacing:5.527200px;}
.ws5f{word-spacing:5.865600px;}
.ws44{word-spacing:5.978400px;}
.ws43{word-spacing:6.147600px;}
.ws9{word-spacing:6.249600px;}
.ws4f{word-spacing:6.260400px;}
.ws5a{word-spacing:6.316800px;}
.ws8{word-spacing:6.361200px;}
.ws73{word-spacing:6.486000px;}
.ws5b{word-spacing:6.598800px;}
.ws8f{word-spacing:6.615000px;}
.ws88{word-spacing:6.705000px;}
.ws38{word-spacing:6.711600px;}
.ws4a{word-spacing:6.824400px;}
.ws85{word-spacing:6.840000px;}
.wsa3{word-spacing:7.224000px;}
.ws71{word-spacing:7.275600px;}
.ws75{word-spacing:7.332000px;}
.ws11{word-spacing:7.421400px;}
.ws48{word-spacing:7.557600px;}
.ws26{word-spacing:7.614000px;}
.ws7d{word-spacing:7.785000px;}
.ws17{word-spacing:8.008800px;}
.ws21{word-spacing:8.121600px;}
.ws31{word-spacing:8.234400px;}
.ws8c{word-spacing:8.550000px;}
.ws27{word-spacing:8.572800px;}
.ws1e{word-spacing:8.629200px;}
.ws3e{word-spacing:8.685600px;}
.ws58{word-spacing:8.742000px;}
.ws7b{word-spacing:8.955000px;}
.ws67{word-spacing:8.967600px;}
.ws6c{word-spacing:8.979000px;}
.ws86{word-spacing:9.000000px;}
.ws2d{word-spacing:9.024000px;}
.ws99{word-spacing:9.090000px;}
.ws2e{word-spacing:9.362400px;}
.ws92{word-spacing:9.450000px;}
.ws93{word-spacing:9.585000px;}
.ws4e{word-spacing:9.588000px;}
.ws42{word-spacing:9.982800px;}
.ws95{word-spacing:10.350000px;}
.ws7c{word-spacing:10.575000px;}
.ws9d{word-spacing:11.816400px;}
.ws79{word-spacing:12.825000px;}
.ws7a{word-spacing:13.500000px;}
.ws7f{word-spacing:13.770000px;}
.ws9b{word-spacing:14.805000px;}
.ws8d{word-spacing:16.380000px;}
.ws94{word-spacing:18.945000px;}
.ws9a{word-spacing:21.555000px;}
.ws39{word-spacing:32.280600px;}
._4{margin-left:-7.398000px;}
._5{margin-left:-6.098400px;}
._6{margin-left:-4.991400px;}
._1{margin-left:-3.060000px;}
._d{margin-left:-2.056440px;}
._3{margin-left:-1.044000px;}
._0{width:1.080000px;}
._2{width:2.844000px;}
._a{width:4.318102px;}
._f{width:7.360800px;}
._e{width:23.169816px;}
._b{width:28.863198px;}
._c{width:32.151427px;}
._8{width:37.272970px;}
._7{width:55.450416px;}
._9{width:1001.249694px;}
.fc1{color:rgb(0,88,158);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:32.531400px;}
.fs8{font-size:32.881200px;}
.fs7{font-size:43.800000px;}
.fs0{font-size:45.000000px;}
.fsa{font-size:51.600000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:55.800000px;}
.fs6{font-size:56.400000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:63.673350px;}
.yd1{bottom:104.161200px;}
.y4e{bottom:104.172000px;}
.y25{bottom:104.173350px;}
.y70{bottom:104.175450px;}
.y4d{bottom:117.673350px;}
.y87{bottom:121.925400px;}
.y24{bottom:121.925550px;}
.y6f{bottom:121.927650px;}
.yd0{bottom:124.414200px;}
.y4c{bottom:135.425400px;}
.y23{bottom:139.677600px;}
.y86{bottom:139.678350px;}
.ycf{bottom:144.667200px;}
.y4b{bottom:153.177600px;}
.y85{bottom:157.428300px;}
.y22{bottom:157.429800px;}
.y6e{bottom:157.431900px;}
.yce{bottom:164.920200px;}
.ya3{bottom:165.852600px;}
.y4a{bottom:170.929650px;}
.y6d{bottom:175.181250px;}
.ya2{bottom:180.106350px;}
.y9e{bottom:184.358850px;}
.ycd{bottom:185.173200px;}
.y49{bottom:188.681850px;}
.y6c{bottom:192.931200px;}
.y9d{bottom:198.612600px;}
.y21{bottom:205.430550px;}
.y6b{bottom:206.432550px;}
.y48{bottom:206.433900px;}
.y9c{bottom:212.866350px;}
.y6a{bottom:219.933900px;}
.y84{bottom:224.185500px;}
.y47{bottom:224.186100px;}
.y20{bottom:225.678150px;}
.ya1{bottom:227.120100px;}
.y9b{bottom:231.372600px;}
.y83{bottom:241.935450px;}
.y9a{bottom:245.626350px;}
.y1f{bottom:245.925750px;}
.y82{bottom:255.436800px;}
.y99{bottom:259.880100px;}
.ycc{bottom:266.158200px;}
.y1e{bottom:266.173350px;}
.y46{bottom:266.178000px;}
.y69{bottom:266.192400px;}
.y81{bottom:268.938150px;}
.ya0{bottom:274.133850px;}
.y98{bottom:278.386350px;}
.y80{bottom:282.438150px;}
.y1c{bottom:286.390950px;}
.ycb{bottom:286.411200px;}
.y45{bottom:286.425600px;}
.y68{bottom:286.440000px;}
.y1d{bottom:291.068550px;}
.y97{bottom:292.640100px;}
.y1b{bottom:306.646350px;}
.yca{bottom:306.664200px;}
.y44{bottom:306.685200px;}
.y67{bottom:306.687600px;}
.y96{bottom:306.893850px;}
.y95{bottom:321.147600px;}
.y9f{bottom:325.400100px;}
.y1a{bottom:326.901750px;}
.yc9{bottom:326.917200px;}
.y7f{bottom:326.925600px;}
.y43{bottom:326.932800px;}
.y66{bottom:326.935200px;}
.y94{bottom:339.653850px;}
.y19{bottom:347.157150px;}
.yc8{bottom:347.170200px;}
.y7e{bottom:347.178000px;}
.y42{bottom:347.180400px;}
.y65{bottom:347.182800px;}
.y93{bottom:353.907600px;}
.y18{bottom:367.412550px;}
.yc7{bottom:367.423200px;}
.y7d{bottom:367.425600px;}
.y41{bottom:367.428000px;}
.y64{bottom:367.430400px;}
.y92{bottom:368.161350px;}
.y17{bottom:387.667950px;}
.y7c{bottom:387.673200px;}
.y40{bottom:387.675600px;}
.y63{bottom:387.678000px;}
.y14{bottom:407.901750px;}
.y91{bottom:407.923200px;}
.y16{bottom:407.923350px;}
.y62{bottom:407.925600px;}
.y3f{bottom:407.930400px;}
.y7b{bottom:407.935200px;}
.y15{bottom:412.568550px;}
.y13{bottom:428.157150px;}
.yc6{bottom:428.158200px;}
.y61{bottom:428.173200px;}
.y3e{bottom:428.178000px;}
.y7a{bottom:428.182800px;}
.yc5{bottom:448.411200px;}
.y12{bottom:448.412550px;}
.y3d{bottom:448.425600px;}
.y79{bottom:448.430400px;}
.y60{bottom:448.435200px;}
.yc4{bottom:468.664200px;}
.y11{bottom:468.667950px;}
.y3c{bottom:468.678000px;}
.y5f{bottom:468.682800px;}
.ye{bottom:488.890950px;}
.yc3{bottom:488.917200px;}
.y10{bottom:488.923350px;}
.y3b{bottom:488.925600px;}
.y5e{bottom:488.930400px;}
.y90{bottom:488.937600px;}
.yf{bottom:493.568550px;}
.yd{bottom:509.146350px;}
.yc2{bottom:509.170200px;}
.y5d{bottom:509.178000px;}
.y3a{bottom:509.182800px;}
.y8f{bottom:509.185200px;}
.yc{bottom:529.401750px;}
.yc0{bottom:529.420200px;}
.yc1{bottom:529.423200px;}
.y5c{bottom:529.425600px;}
.y39{bottom:529.430400px;}
.y8e{bottom:529.432800px;}
.yb{bottom:549.657150px;}
.ybf{bottom:549.673200px;}
.y38{bottom:549.678000px;}
.y8d{bottom:549.680400px;}
.y5b{bottom:549.687600px;}
.ya{bottom:569.912550px;}
.ybe{bottom:569.923200px;}
.y37{bottom:569.925600px;}
.y8c{bottom:569.928000px;}
.y5a{bottom:569.935200px;}
.y9{bottom:590.167950px;}
.y36{bottom:590.173200px;}
.y8b{bottom:590.175600px;}
.y59{bottom:590.182800px;}
.y6{bottom:610.417950px;}
.ybd{bottom:610.423200px;}
.y8{bottom:610.423350px;}
.y35{bottom:610.430400px;}
.y8a{bottom:610.440000px;}
.y7{bottom:615.068550px;}
.y5{bottom:630.673350px;}
.y34{bottom:630.678000px;}
.y89{bottom:630.687600px;}
.y33{bottom:650.925600px;}
.y88{bottom:650.935200px;}
.yb4{bottom:662.619450px;}
.y58{bottom:671.178000px;}
.y78{bottom:671.182800px;}
.y32{bottom:671.199600px;}
.yb3{bottom:676.873200px;}
.yb1{bottom:691.076100px;}
.yb2{bottom:691.126950px;}
.y57{bottom:691.425600px;}
.y77{bottom:691.430400px;}
.y31{bottom:691.447200px;}
.yb0{bottom:709.582350px;}
.y76{bottom:711.678000px;}
.y56{bottom:711.680400px;}
.y30{bottom:711.694800px;}
.yaf{bottom:723.836100px;}
.y75{bottom:731.925600px;}
.y55{bottom:731.928000px;}
.y2f{bottom:731.942400px;}
.yae{bottom:738.089850px;}
.y54{bottom:752.175600px;}
.y74{bottom:752.182800px;}
.y2e{bottom:752.190000px;}
.ybc{bottom:752.343600px;}
.yad{bottom:756.596100px;}
.ybb{bottom:766.597350px;}
.yac{bottom:770.849850px;}
.y73{bottom:772.430400px;}
.y53{bottom:772.435200px;}
.y2d{bottom:772.437600px;}
.yba{bottom:785.103600px;}
.yab{bottom:789.356100px;}
.y4{bottom:792.673350px;}
.y72{bottom:792.678000px;}
.y52{bottom:792.682800px;}
.y2c{bottom:792.685200px;}
.yb9{bottom:799.357350px;}
.yaa{bottom:803.609850px;}
.y71{bottom:812.925600px;}
.y51{bottom:812.930400px;}
.y2b{bottom:812.932800px;}
.yb8{bottom:813.611100px;}
.ya9{bottom:817.863600px;}
.yb7{bottom:832.117350px;}
.y3{bottom:833.173350px;}
.y50{bottom:833.178000px;}
.y2a{bottom:833.180400px;}
.ya8{bottom:836.369850px;}
.yb6{bottom:846.371100px;}
.ya7{bottom:850.623600px;}
.y4f{bottom:853.425600px;}
.y29{bottom:853.428000px;}
.yb5{bottom:860.624850px;}
.ya6{bottom:864.877350px;}
.y28{bottom:873.675600px;}
.ya5{bottom:879.131100px;}
.ya4{bottom:893.384850px;}
.y27{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.h7{height:23.552734px;}
.hc{height:34.461600px;}
.hd{height:34.462200px;}
.he{height:34.467600px;}
.h9{height:34.470600px;}
.hb{height:34.473000px;}
.ha{height:35.415000px;}
.h2{height:36.450000px;}
.h10{height:41.796000px;}
.hf{height:42.498000px;}
.h6{height:47.374200px;}
.h8{height:47.883600px;}
.h3{height:48.600000px;}
.h5{height:51.942000px;}
.h4{height:84.996000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.xd{left:89.287838px;}
.x12{left:90.590850px;}
.x9{left:93.543300px;}
.xc{left:97.796694px;}
.x11{left:111.746250px;}
.xa{left:126.799500px;}
.x10{left:251.665800px;}
.x8{left:327.011100px;}
.xe{left:359.291400px;}
.xb{left:367.835400px;}
.xf{left:372.052275px;}
.x2{left:468.653850px;}
.x3{left:472.957650px;}
.x4{left:557.588850px;}
.x5{left:561.892800px;}
.x6{left:565.330950px;}
.x7{left:569.634900px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.694400pt;}
.ls2{letter-spacing:-1.160000pt;}
.ls9{letter-spacing:-0.400000pt;}
.ls8{letter-spacing:-0.272533pt;}
.ls1{letter-spacing:-0.200000pt;}
.ls4{letter-spacing:-0.155733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.029867pt;}
.ls7{letter-spacing:0.560000pt;}
.ls6{letter-spacing:1.353600pt;}
.ls0{letter-spacing:1858.318367pt;}
.ws56{word-spacing:-14.839467pt;}
.ws6d{word-spacing:-9.600000pt;}
.ws8b{word-spacing:-9.173333pt;}
.ws2{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-7.786667pt;}
.ws3b{word-spacing:-7.630933pt;}
.ws0{word-spacing:-6.840000pt;}
.ws6f{word-spacing:-2.857600pt;}
.ws28{word-spacing:-2.807467pt;}
.wsb{word-spacing:-2.728000pt;}
.ws3a{word-spacing:-2.569600pt;}
.ws14{word-spacing:-2.529600pt;}
.ws76{word-spacing:-2.356267pt;}
.wse{word-spacing:-2.331200pt;}
.ws12{word-spacing:-2.281600pt;}
.ws23{word-spacing:-2.155733pt;}
.ws13{word-spacing:-1.934400pt;}
.ws46{word-spacing:-1.804800pt;}
.ws65{word-spacing:-1.754667pt;}
.ws35{word-spacing:-1.654400pt;}
.wsf{word-spacing:-1.587200pt;}
.ws70{word-spacing:-1.554133pt;}
.ws40{word-spacing:-1.504000pt;}
.ws2f{word-spacing:-1.353600pt;}
.ws72{word-spacing:-1.102933pt;}
.ws20{word-spacing:-1.052800pt;}
.ws6b{word-spacing:-1.012267pt;}
.ws52{word-spacing:-1.002667pt;}
.ws8a{word-spacing:-0.960000pt;}
.ws3d{word-spacing:-0.902400pt;}
.ws34{word-spacing:-0.852267pt;}
.ws68{word-spacing:-0.802133pt;}
.ws1d{word-spacing:-0.760000pt;}
.ws6e{word-spacing:-0.701867pt;}
.ws37{word-spacing:-0.651733pt;}
.wsa0{word-spacing:-0.366933pt;}
.ws81{word-spacing:-0.320000pt;}
.ws59{word-spacing:-0.300800pt;}
.wsa8{word-spacing:-0.275200pt;}
.ws80{word-spacing:-0.240000pt;}
.wsc{word-spacing:-0.198400pt;}
.ws61{word-spacing:-0.100267pt;}
.ws1{word-spacing:-0.038933pt;}
.ws1a{word-spacing:-0.029228pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.116800pt;}
.ws4{word-spacing:0.200000pt;}
.wsa7{word-spacing:0.275200pt;}
.wsd{word-spacing:0.297600pt;}
.ws74{word-spacing:0.300800pt;}
.ws96{word-spacing:0.400000pt;}
.ws3c{word-spacing:0.451200pt;}
.ws7{word-spacing:0.496000pt;}
.ws18{word-spacing:0.501333pt;}
.ws32{word-spacing:0.551467pt;}
.ws5e{word-spacing:0.601600pt;}
.ws63{word-spacing:0.701867pt;}
.ws49{word-spacing:0.802133pt;}
.ws87{word-spacing:0.880000pt;}
.ws45{word-spacing:0.952533pt;}
.ws89{word-spacing:0.960000pt;}
.ws9e{word-spacing:0.963200pt;}
.ws4b{word-spacing:1.002667pt;}
.wsa2{word-spacing:1.009067pt;}
.ws33{word-spacing:1.353600pt;}
.ws82{word-spacing:1.400000pt;}
.wsa6{word-spacing:1.513600pt;}
.ws50{word-spacing:1.604267pt;}
.wsa1{word-spacing:1.605333pt;}
.ws5d{word-spacing:1.654400pt;}
.ws2a{word-spacing:1.704533pt;}
.ws55{word-spacing:1.713067pt;}
.ws90{word-spacing:1.760000pt;}
.ws91{word-spacing:1.880000pt;}
.ws10{word-spacing:1.934400pt;}
.ws24{word-spacing:1.955200pt;}
.ws4c{word-spacing:2.105600pt;}
.ws47{word-spacing:2.205867pt;}
.ws6{word-spacing:2.281600pt;}
.ws51{word-spacing:2.306133pt;}
.ws69{word-spacing:2.413867pt;}
.ws53{word-spacing:2.456533pt;}
.ws8e{word-spacing:2.520000pt;}
.ws16{word-spacing:2.556800pt;}
.wsa{word-spacing:2.579200pt;}
.ws1f{word-spacing:2.606933pt;}
.ws97{word-spacing:2.760000pt;}
.ws25{word-spacing:2.807467pt;}
.ws54{word-spacing:2.920000pt;}
.ws2c{word-spacing:2.957867pt;}
.ws84{word-spacing:3.000000pt;}
.ws41{word-spacing:3.008000pt;}
.wsa5{word-spacing:3.073067pt;}
.ws19{word-spacing:3.108267pt;}
.ws5{word-spacing:3.124800pt;}
.ws4d{word-spacing:3.158400pt;}
.wsa4{word-spacing:3.210667pt;}
.ws78{word-spacing:3.459200pt;}
.ws6a{word-spacing:3.504000pt;}
.ws3f{word-spacing:3.509333pt;}
.ws7e{word-spacing:3.520000pt;}
.ws98{word-spacing:3.640000pt;}
.ws22{word-spacing:3.659733pt;}
.ws77{word-spacing:3.709867pt;}
.ws9c{word-spacing:3.761067pt;}
.ws57{word-spacing:3.810133pt;}
.ws29{word-spacing:3.910400pt;}
.ws36{word-spacing:4.110933pt;}
.ws15{word-spacing:4.166400pt;}
.ws9f{word-spacing:4.173867pt;}
.ws83{word-spacing:4.360000pt;}
.ws62{word-spacing:4.361600pt;}
.ws30{word-spacing:4.461867pt;}
.ws66{word-spacing:4.562133pt;}
.ws64{word-spacing:4.612267pt;}
.ws60{word-spacing:4.662400pt;}
.ws2b{word-spacing:4.862933pt;}
.ws5c{word-spacing:4.913067pt;}
.ws5f{word-spacing:5.213867pt;}
.ws44{word-spacing:5.314133pt;}
.ws43{word-spacing:5.464533pt;}
.ws9{word-spacing:5.555200pt;}
.ws4f{word-spacing:5.564800pt;}
.ws5a{word-spacing:5.614933pt;}
.ws8{word-spacing:5.654400pt;}
.ws73{word-spacing:5.765333pt;}
.ws5b{word-spacing:5.865600pt;}
.ws8f{word-spacing:5.880000pt;}
.ws88{word-spacing:5.960000pt;}
.ws38{word-spacing:5.965867pt;}
.ws4a{word-spacing:6.066133pt;}
.ws85{word-spacing:6.080000pt;}
.wsa3{word-spacing:6.421333pt;}
.ws71{word-spacing:6.467200pt;}
.ws75{word-spacing:6.517333pt;}
.ws11{word-spacing:6.596800pt;}
.ws48{word-spacing:6.717867pt;}
.ws26{word-spacing:6.768000pt;}
.ws7d{word-spacing:6.920000pt;}
.ws17{word-spacing:7.118933pt;}
.ws21{word-spacing:7.219200pt;}
.ws31{word-spacing:7.319467pt;}
.ws8c{word-spacing:7.600000pt;}
.ws27{word-spacing:7.620267pt;}
.ws1e{word-spacing:7.670400pt;}
.ws3e{word-spacing:7.720533pt;}
.ws58{word-spacing:7.770667pt;}
.ws7b{word-spacing:7.960000pt;}
.ws67{word-spacing:7.971200pt;}
.ws6c{word-spacing:7.981333pt;}
.ws86{word-spacing:8.000000pt;}
.ws2d{word-spacing:8.021333pt;}
.ws99{word-spacing:8.080000pt;}
.ws2e{word-spacing:8.322133pt;}
.ws92{word-spacing:8.400000pt;}
.ws93{word-spacing:8.520000pt;}
.ws4e{word-spacing:8.522667pt;}
.ws42{word-spacing:8.873600pt;}
.ws95{word-spacing:9.200000pt;}
.ws7c{word-spacing:9.400000pt;}
.ws9d{word-spacing:10.503467pt;}
.ws79{word-spacing:11.400000pt;}
.ws7a{word-spacing:12.000000pt;}
.ws7f{word-spacing:12.240000pt;}
.ws9b{word-spacing:13.160000pt;}
.ws8d{word-spacing:14.560000pt;}
.ws94{word-spacing:16.840000pt;}
.ws9a{word-spacing:19.160000pt;}
.ws39{word-spacing:28.693867pt;}
._4{margin-left:-6.576000pt;}
._5{margin-left:-5.420800pt;}
._6{margin-left:-4.436800pt;}
._1{margin-left:-2.720000pt;}
._d{margin-left:-1.827947pt;}
._3{margin-left:-0.928000pt;}
._0{width:0.960000pt;}
._2{width:2.528000pt;}
._a{width:3.838313pt;}
._f{width:6.542933pt;}
._e{width:20.595392pt;}
._b{width:25.656176pt;}
._c{width:28.579046pt;}
._8{width:33.131529pt;}
._7{width:49.289259pt;}
._9{width:889.999728pt;}
.fs5{font-size:28.916800pt;}
.fs8{font-size:29.227733pt;}
.fs7{font-size:38.933333pt;}
.fs0{font-size:40.000000pt;}
.fsa{font-size:45.866667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:49.600000pt;}
.fs6{font-size:50.133333pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:56.598533pt;}
.yd1{bottom:92.587733pt;}
.y4e{bottom:92.597333pt;}
.y25{bottom:92.598533pt;}
.y70{bottom:92.600400pt;}
.y4d{bottom:104.598533pt;}
.y87{bottom:108.378133pt;}
.y24{bottom:108.378267pt;}
.y6f{bottom:108.380133pt;}
.yd0{bottom:110.590400pt;}
.y4c{bottom:120.378133pt;}
.y23{bottom:124.157867pt;}
.y86{bottom:124.158533pt;}
.ycf{bottom:128.593067pt;}
.y4b{bottom:136.157867pt;}
.y85{bottom:139.936267pt;}
.y22{bottom:139.937600pt;}
.y6e{bottom:139.939467pt;}
.yce{bottom:146.595733pt;}
.ya3{bottom:147.424533pt;}
.y4a{bottom:151.937467pt;}
.y6d{bottom:155.716667pt;}
.ya2{bottom:160.094533pt;}
.y9e{bottom:163.874533pt;}
.ycd{bottom:164.598400pt;}
.y49{bottom:167.717200pt;}
.y6c{bottom:171.494400pt;}
.y9d{bottom:176.544533pt;}
.y21{bottom:182.604933pt;}
.y6b{bottom:183.495600pt;}
.y48{bottom:183.496800pt;}
.y9c{bottom:189.214533pt;}
.y6a{bottom:195.496800pt;}
.y84{bottom:199.276000pt;}
.y47{bottom:199.276533pt;}
.y20{bottom:200.602800pt;}
.ya1{bottom:201.884533pt;}
.y9b{bottom:205.664533pt;}
.y83{bottom:215.053733pt;}
.y9a{bottom:218.334533pt;}
.y1f{bottom:218.600667pt;}
.y82{bottom:227.054933pt;}
.y99{bottom:231.004533pt;}
.ycc{bottom:236.585067pt;}
.y1e{bottom:236.598533pt;}
.y46{bottom:236.602667pt;}
.y69{bottom:236.615467pt;}
.y81{bottom:239.056133pt;}
.ya0{bottom:243.674533pt;}
.y98{bottom:247.454533pt;}
.y80{bottom:251.056133pt;}
.y1c{bottom:254.569733pt;}
.ycb{bottom:254.587733pt;}
.y45{bottom:254.600533pt;}
.y68{bottom:254.613333pt;}
.y1d{bottom:258.727600pt;}
.y97{bottom:260.124533pt;}
.y1b{bottom:272.574533pt;}
.yca{bottom:272.590400pt;}
.y44{bottom:272.609067pt;}
.y67{bottom:272.611200pt;}
.y96{bottom:272.794533pt;}
.y95{bottom:285.464533pt;}
.y9f{bottom:289.244533pt;}
.y1a{bottom:290.579333pt;}
.yc9{bottom:290.593067pt;}
.y7f{bottom:290.600533pt;}
.y43{bottom:290.606933pt;}
.y66{bottom:290.609067pt;}
.y94{bottom:301.914533pt;}
.y19{bottom:308.584133pt;}
.yc8{bottom:308.595733pt;}
.y7e{bottom:308.602667pt;}
.y42{bottom:308.604800pt;}
.y65{bottom:308.606933pt;}
.y93{bottom:314.584533pt;}
.y18{bottom:326.588933pt;}
.yc7{bottom:326.598400pt;}
.y7d{bottom:326.600533pt;}
.y41{bottom:326.602667pt;}
.y64{bottom:326.604800pt;}
.y92{bottom:327.254533pt;}
.y17{bottom:344.593733pt;}
.y7c{bottom:344.598400pt;}
.y40{bottom:344.600533pt;}
.y63{bottom:344.602667pt;}
.y14{bottom:362.579333pt;}
.y91{bottom:362.598400pt;}
.y16{bottom:362.598533pt;}
.y62{bottom:362.600533pt;}
.y3f{bottom:362.604800pt;}
.y7b{bottom:362.609067pt;}
.y15{bottom:366.727600pt;}
.y13{bottom:380.584133pt;}
.yc6{bottom:380.585067pt;}
.y61{bottom:380.598400pt;}
.y3e{bottom:380.602667pt;}
.y7a{bottom:380.606933pt;}
.yc5{bottom:398.587733pt;}
.y12{bottom:398.588933pt;}
.y3d{bottom:398.600533pt;}
.y79{bottom:398.604800pt;}
.y60{bottom:398.609067pt;}
.yc4{bottom:416.590400pt;}
.y11{bottom:416.593733pt;}
.y3c{bottom:416.602667pt;}
.y5f{bottom:416.606933pt;}
.ye{bottom:434.569733pt;}
.yc3{bottom:434.593067pt;}
.y10{bottom:434.598533pt;}
.y3b{bottom:434.600533pt;}
.y5e{bottom:434.604800pt;}
.y90{bottom:434.611200pt;}
.yf{bottom:438.727600pt;}
.yd{bottom:452.574533pt;}
.yc2{bottom:452.595733pt;}
.y5d{bottom:452.602667pt;}
.y3a{bottom:452.606933pt;}
.y8f{bottom:452.609067pt;}
.yc{bottom:470.579333pt;}
.yc0{bottom:470.595733pt;}
.yc1{bottom:470.598400pt;}
.y5c{bottom:470.600533pt;}
.y39{bottom:470.604800pt;}
.y8e{bottom:470.606933pt;}
.yb{bottom:488.584133pt;}
.ybf{bottom:488.598400pt;}
.y38{bottom:488.602667pt;}
.y8d{bottom:488.604800pt;}
.y5b{bottom:488.611200pt;}
.ya{bottom:506.588933pt;}
.ybe{bottom:506.598400pt;}
.y37{bottom:506.600533pt;}
.y8c{bottom:506.602667pt;}
.y5a{bottom:506.609067pt;}
.y9{bottom:524.593733pt;}
.y36{bottom:524.598400pt;}
.y8b{bottom:524.600533pt;}
.y59{bottom:524.606933pt;}
.y6{bottom:542.593733pt;}
.ybd{bottom:542.598400pt;}
.y8{bottom:542.598533pt;}
.y35{bottom:542.604800pt;}
.y8a{bottom:542.613333pt;}
.y7{bottom:546.727600pt;}
.y5{bottom:560.598533pt;}
.y34{bottom:560.602667pt;}
.y89{bottom:560.611200pt;}
.y33{bottom:578.600533pt;}
.y88{bottom:578.609067pt;}
.yb4{bottom:588.995067pt;}
.y58{bottom:596.602667pt;}
.y78{bottom:596.606933pt;}
.y32{bottom:596.621867pt;}
.yb3{bottom:601.665067pt;}
.yb1{bottom:614.289867pt;}
.yb2{bottom:614.335067pt;}
.y57{bottom:614.600533pt;}
.y77{bottom:614.604800pt;}
.y31{bottom:614.619733pt;}
.yb0{bottom:630.739867pt;}
.y76{bottom:632.602667pt;}
.y56{bottom:632.604800pt;}
.y30{bottom:632.617600pt;}
.yaf{bottom:643.409867pt;}
.y75{bottom:650.600533pt;}
.y55{bottom:650.602667pt;}
.y2f{bottom:650.615467pt;}
.yae{bottom:656.079867pt;}
.y54{bottom:668.600533pt;}
.y74{bottom:668.606933pt;}
.y2e{bottom:668.613333pt;}
.ybc{bottom:668.749867pt;}
.yad{bottom:672.529867pt;}
.ybb{bottom:681.419867pt;}
.yac{bottom:685.199867pt;}
.y73{bottom:686.604800pt;}
.y53{bottom:686.609067pt;}
.y2d{bottom:686.611200pt;}
.yba{bottom:697.869867pt;}
.yab{bottom:701.649867pt;}
.y4{bottom:704.598533pt;}
.y72{bottom:704.602667pt;}
.y52{bottom:704.606933pt;}
.y2c{bottom:704.609067pt;}
.yb9{bottom:710.539867pt;}
.yaa{bottom:714.319867pt;}
.y71{bottom:722.600533pt;}
.y51{bottom:722.604800pt;}
.y2b{bottom:722.606933pt;}
.yb8{bottom:723.209867pt;}
.ya9{bottom:726.989867pt;}
.yb7{bottom:739.659867pt;}
.y3{bottom:740.598533pt;}
.y50{bottom:740.602667pt;}
.y2a{bottom:740.604800pt;}
.ya8{bottom:743.439867pt;}
.yb6{bottom:752.329867pt;}
.ya7{bottom:756.109867pt;}
.y4f{bottom:758.600533pt;}
.y29{bottom:758.602667pt;}
.yb5{bottom:764.999867pt;}
.ya6{bottom:768.779867pt;}
.y28{bottom:776.600533pt;}
.ya5{bottom:781.449867pt;}
.ya4{bottom:794.119867pt;}
.y27{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.h7{height:20.935763pt;}
.hc{height:30.632533pt;}
.hd{height:30.633067pt;}
.he{height:30.637867pt;}
.h9{height:30.640533pt;}
.hb{height:30.642667pt;}
.ha{height:31.480000pt;}
.h2{height:32.400000pt;}
.h10{height:37.152000pt;}
.hf{height:37.776000pt;}
.h6{height:42.110400pt;}
.h8{height:42.563200pt;}
.h3{height:43.200000pt;}
.h5{height:46.170667pt;}
.h4{height:75.552000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.xd{left:79.366967pt;}
.x12{left:80.525200pt;}
.x9{left:83.149600pt;}
.xc{left:86.930395pt;}
.x11{left:99.330000pt;}
.xa{left:112.710667pt;}
.x10{left:223.702933pt;}
.x8{left:290.676533pt;}
.xe{left:319.370133pt;}
.xb{left:326.964800pt;}
.xf{left:330.713133pt;}
.x2{left:416.581200pt;}
.x3{left:420.406800pt;}
.x4{left:495.634533pt;}
.x5{left:499.460267pt;}
.x6{left:502.516400pt;}
.x7{left:506.342133pt;}
}




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