
    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_055216e838282d58c269091d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_b81e4a300898d39500f42593.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_a76afc24d2521a0db9194170.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_0f54a36bc97f191faf48fc20.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091797;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_70d3f05b6a7cf7a69d498f6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_2f2a0123dd28779fbde4260e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_933494a8664e57f53435ff94.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172363;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_f50df683921eebb1535f33c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.021484;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_57939839f2573af580d0f733.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.030273;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_a6f486930f898ae4c5ca5f8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:83.220000px;}
.ls1a{letter-spacing:-0.511200px;}
.ls19{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.344400px;}
.ls27{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.252000px;}
.ls21{letter-spacing:-0.145200px;}
.ls1f{letter-spacing:-0.128400px;}
.ls28{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.079200px;}
.ls22{letter-spacing:-0.027360px;}
.ls26{letter-spacing:-0.012840px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000003px;}
.ls4{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.171600px;}
.ls18{letter-spacing:0.175800px;}
.lsc{letter-spacing:0.289200px;}
.ls8{letter-spacing:57.549600px;}
.ls7{letter-spacing:57.600000px;}
.ls1e{letter-spacing:61.977600px;}
.ls15{letter-spacing:65.865600px;}
.lsa{letter-spacing:65.916000px;}
.ls1b{letter-spacing:66.009600px;}
.ls1d{letter-spacing:66.060000px;}
.ls24{letter-spacing:70.149600px;}
.ls1c{letter-spacing:70.200000px;}
.lsb{letter-spacing:74.484000px;}
.ls25{letter-spacing:78.516000px;}
.ls14{letter-spacing:93.420000px;}
.lsf{letter-spacing:97.509600px;}
.lsd{letter-spacing:97.560000px;}
.lse{letter-spacing:101.844000px;}
.ls11{letter-spacing:124.125600px;}
.ls10{letter-spacing:124.176000px;}
.ls13{letter-spacing:128.433600px;}
.ls12{letter-spacing:128.484000px;}
.ls2{letter-spacing:165.549600px;}
.ls1{letter-spacing:165.600000px;}
.ls3{letter-spacing:173.916000px;}
.ls5{letter-spacing:173.985600px;}
.ls6{letter-spacing:174.036000px;}
.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;}
}
.ws16{word-spacing:-39.679200px;}
.ws1b{word-spacing:-36.511200px;}
.ws19{word-spacing:-36.432000px;}
.ws1a{word-spacing:-36.000000px;}
.wsa{word-spacing:-33.628320px;}
.ws9{word-spacing:-32.544000px;}
.ws14{word-spacing:-32.405472px;}
.ws29{word-spacing:-32.377680px;}
.ws6{word-spacing:-29.232000px;}
.wsf{word-spacing:-27.819792px;}
.ws15{word-spacing:-24.437952px;}
.ws13{word-spacing:-24.408720px;}
.wsd{word-spacing:-23.093280px;}
.wsc{word-spacing:-21.955680px;}
.ws2{word-spacing:-21.953232px;}
.ws3{word-spacing:-21.924000px;}
.ws10{word-spacing:-19.728480px;}
.ws18{word-spacing:-19.468512px;}
.ws12{word-spacing:-19.439280px;}
.ws11{word-spacing:-17.129952px;}
.ws20{word-spacing:-17.100720px;}
.ws2a{word-spacing:-14.632392px;}
.ws27{word-spacing:-0.856800px;}
.ws8{word-spacing:-0.710640px;}
.ws17{word-spacing:-0.703080px;}
.ws0{word-spacing:-0.164112px;}
.ws4{word-spacing:0.000000px;}
.ws26{word-spacing:0.028800px;}
.ws1d{word-spacing:0.092160px;}
.wsb{word-spacing:0.108000px;}
.ws2d{word-spacing:0.120000px;}
.wse{word-spacing:0.140400px;}
.ws25{word-spacing:0.233280px;}
.ws28{word-spacing:0.745200px;}
.ws7{word-spacing:0.840000px;}
.ws2c{word-spacing:1.008000px;}
.ws2b{word-spacing:1.080000px;}
.ws1{word-spacing:18.925488px;}
.ws23{word-spacing:164.096400px;}
.ws1f{word-spacing:164.295360px;}
.ws1e{word-spacing:214.873200px;}
.ws24{word-spacing:294.392880px;}
.ws22{word-spacing:313.185360px;}
.ws21{word-spacing:383.535600px;}
.ws1c{word-spacing:516.771600px;}
.ws5{word-spacing:992.628096px;}
._5{margin-left:-11.655600px;}
._8{margin-left:-8.574720px;}
._2{margin-left:-7.112880px;}
._6{margin-left:-5.467440px;}
._1{margin-left:-4.037040px;}
._3{margin-left:-2.691360px;}
._0{margin-left:-1.537920px;}
._4{width:1.537920px;}
._b{width:2.591280px;}
._17{width:15.625920px;}
._15{width:18.044640px;}
._a{width:20.787840px;}
._9{width:22.827600px;}
._16{width:25.958160px;}
._7{width:41.040000px;}
._18{width:171.962640px;}
._12{width:231.852720px;}
._f{width:247.863120px;}
._11{width:259.392960px;}
._10{width:274.828320px;}
._14{width:281.712720px;}
._13{width:297.370800px;}
._1a{width:304.925280px;}
._19{width:332.596800px;}
._1b{width:417.504000px;}
._e{width:536.352000px;}
._c{width:708.320400px;}
._d{width:709.392000px;}
._1c{width:1141.593840px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:59.760000px;}
.fs19{font-size:59.904000px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs13{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fs17{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fs10{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fse{font-size:113.760000px;}
.fsf{font-size:113.904000px;}
.fs7{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs16{font-size:131.760000px;}
.fs15{font-size:131.904000px;}
.fs5{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fsa{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fsd{font-size:174.240000px;}
.fsc{font-size:174.384000px;}
.fs0{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.y21{bottom:44.532000px;}
.yb7{bottom:47.268000px;}
.y39{bottom:54.396000px;}
.y97{bottom:55.656000px;}
.y47{bottom:59.004000px;}
.y75{bottom:62.280000px;}
.y20{bottom:63.792000px;}
.yeb{bottom:70.308000px;}
.y76{bottom:70.488000px;}
.yf0{bottom:71.244000px;}
.ya{bottom:72.252000px;}
.y95{bottom:74.448000px;}
.ybb{bottom:81.360000px;}
.yc0{bottom:81.390000px;}
.yda{bottom:82.944000px;}
.y1f{bottom:83.592000px;}
.y15{bottom:89.640000px;}
.yef{bottom:93.924000px;}
.y6d{bottom:96.480000px;}
.y1e{bottom:103.428000px;}
.y9{bottom:104.652000px;}
.y94{bottom:106.848000px;}
.y3d{bottom:108.720000px;}
.ya6{bottom:109.584000px;}
.yc7{bottom:115.164000px;}
.yee{bottom:116.604000px;}
.yd9{bottom:119.484000px;}
.y1d{bottom:123.228000px;}
.y8c{bottom:123.624000px;}
.y7c{bottom:125.424000px;}
.y54{bottom:127.656000px;}
.y7e{bottom:127.836000px;}
.yb2{bottom:128.700000px;}
.y6c{bottom:129.996000px;}
.y93{bottom:139.248000px;}
.yed{bottom:139.284000px;}
.ya5{bottom:142.020000px;}
.y3c{bottom:142.920000px;}
.y1c{bottom:143.028000px;}
.y14{bottom:143.676000px;}
.ye4{bottom:143.820000px;}
.yc6{bottom:150.090000px;}
.y89{bottom:150.225000px;}
.y8b{bottom:156.030000px;}
.yd8{bottom:157.110000px;}
.y7b{bottom:157.860000px;}
.y2a{bottom:157.890000px;}
.y7d{bottom:160.230000px;}
.y53{bottom:161.850000px;}
.yec{bottom:162.000000px;}
.y6b{bottom:164.190000px;}
.yb1{bottom:164.370000px;}
.y60{bottom:169.020000px;}
.y92{bottom:171.645000px;}
.yc5{bottom:182.520000px;}
.ye3{bottom:183.780000px;}
.yb6{bottom:185.835000px;}
.y29{bottom:190.290000px;}
.y52{bottom:191.010000px;}
.y13{bottom:197.490000px;}
.y6a{bottom:200.010000px;}
.y5f{bottom:202.500000px;}
.yd7{bottom:203.550000px;}
.y96{bottom:209.775000px;}
.ycc{bottom:213.300000px;}
.yb0{bottom:214.230000px;}
.yb5{bottom:214.995000px;}
.ye2{bottom:216.180000px;}
.y46{bottom:225.360000px;}
.yc4{bottom:228.420000px;}
.y28{bottom:230.250000px;}
.y8{bottom:231.660000px;}
.y69{bottom:233.490000px;}
.y51{bottom:235.290000px;}
.y5e{bottom:235.830000px;}
.yd6{bottom:238.680000px;}
.yaf{bottom:246.630000px;}
.ycb{bottom:246.780000px;}
.y12{bottom:251.310000px;}
.y1b{bottom:252.360000px;}
.ye1{bottom:257.790000px;}
.y45{bottom:258.870000px;}
.yc3{bottom:261.720000px;}
.y50{bottom:264.495000px;}
.y68{bottom:267.735000px;}
.y5d{bottom:270.030000px;}
.y27{bottom:270.255000px;}
.yd5{bottom:270.540000px;}
.y7{bottom:271.650000px;}
.y8e{bottom:281.700000px;}
.yca{bottom:281.880000px;}
.y3b{bottom:289.185000px;}
.yae{bottom:293.250000px;}
.y44{bottom:293.790000px;}
.yea{bottom:295.410000px;}
.y1a{bottom:296.460000px;}
.ye0{bottom:296.670000px;}
.yc2{bottom:296.820000px;}
.y74{bottom:297.750000px;}
.y67{bottom:305.175000px;}
.y11{bottom:305.355000px;}
.y6{bottom:305.670000px;}
.yd4{bottom:307.080000px;}
.y4f{bottom:307.875000px;}
.y8d{bottom:310.860000px;}
.ya7{bottom:310.965000px;}
.y26{bottom:311.655000px;}
.y3a{bottom:313.125000px;}
.y5c{bottom:313.410000px;}
.y2d{bottom:315.030000px;}
.ybf{bottom:319.680000px;}
.yad{bottom:322.455000px;}
.ye9{bottom:327.855000px;}
.yc1{bottom:329.250000px;}
.y5b{bottom:339.330000px;}
.y5{bottom:339.690000px;}
.y19{bottom:340.740000px;}
.y32{bottom:340.890000px;}
.y4e{bottom:341.175000px;}
.yfb{bottom:341.205000px;}
.yd3{bottom:344.700000px;}
.y91{bottom:347.220000px;}
.ydf{bottom:348.870000px;}
.ya4{bottom:351.285000px;}
.yac{bottom:351.615000px;}
.y73{bottom:351.750000px;}
.y66{bottom:352.515000px;}
.y2c{bottom:353.910000px;}
.y8a{bottom:355.170000px;}
.y10{bottom:357.555000px;}
.yfa{bottom:358.665000px;}
.ybd{bottom:359.100000px;}
.y43{bottom:365.610000px;}
.y5a{bottom:372.810000px;}
.y90{bottom:373.140000px;}
.y4{bottom:373.710000px;}
.ya3{bottom:374.730000px;}
.y4d{bottom:375.375000px;}
.yf9{bottom:376.665000px;}
.y35{bottom:379.545000px;}
.y31{bottom:379.800000px;}
.yab{bottom:388.335000px;}
.yde{bottom:388.830000px;}
.y72{bottom:390.675000px;}
.yd2{bottom:391.170000px;}
.ye8{bottom:392.655000px;}
.yf8{bottom:394.665000px;}
.yf{bottom:397.515000px;}
.y88{bottom:397.980000px;}
.ya2{bottom:398.130000px;}
.yba{bottom:398.520000px;}
.y42{bottom:398.955000px;}
.y65{bottom:399.135000px;}
.ybe{bottom:401.070000px;}
.y8f{bottom:406.620000px;}
.y59{bottom:407.055000px;}
.yf7{bottom:412.665000px;}
.yaa{bottom:417.495000px;}
.y38{bottom:417.930000px;}
.y4c{bottom:418.785000px;}
.y25{bottom:419.505000px;}
.ya1{bottom:421.530000px;}
.y87{bottom:422.310000px;}
.y41{bottom:424.875000px;}
.ye7{bottom:425.055000px;}
.yd1{bottom:427.890000px;}
.ydd{bottom:428.655000px;}
.y18{bottom:428.970000px;}
.yf6{bottom:430.665000px;}
.y34{bottom:433.410000px;}
.y30{bottom:433.620000px;}
.y64{bottom:435.885000px;}
.ye{bottom:438.945000px;}
.y3{bottom:439.740000px;}
.ybc{bottom:440.460000px;}
.y7a{bottom:441.720000px;}
.y71{bottom:444.495000px;}
.y4b{bottom:444.705000px;}
.ya0{bottom:444.930000px;}
.y86{bottom:446.610000px;}
.yf5{bottom:448.710000px;}
.y58{bottom:451.155000px;}
.ya9{bottom:454.935000px;}
.ye6{bottom:457.455000px;}
.y17{bottom:458.130000px;}
.y24{bottom:458.385000px;}
.y40{bottom:459.975000px;}
.yd0{bottom:464.610000px;}
.y37{bottom:464.910000px;}
.yf4{bottom:466.710000px;}
.y9f{bottom:468.330000px;}
.ydc{bottom:470.235000px;}
.y85{bottom:470.910000px;}
.y63{bottom:473.325000px;}
.y79{bottom:474.120000px;}
.y4a{bottom:478.905000px;}
.yb9{bottom:479.880000px;}
.y57{bottom:480.315000px;}
.y70{bottom:483.375000px;}
.yf3{bottom:484.710000px;}
.y16{bottom:487.290000px;}
.ya8{bottom:487.365000px;}
.y2{bottom:491.610000px;}
.y9e{bottom:491.730000px;}
.yd{bottom:492.945000px;}
.ycf{bottom:493.770000px;}
.y84{bottom:495.210000px;}
.y23{bottom:497.265000px;}
.yb8{bottom:499.575000px;}
.yf2{bottom:502.710000px;}
.y62{bottom:505.725000px;}
.y2f{bottom:507.930000px;}
.y49{bottom:508.065000px;}
.ydb{bottom:509.115000px;}
.y36{bottom:511.920000px;}
.y33{bottom:514.905000px;}
.y9d{bottom:515.130000px;}
.y2b{bottom:515.595000px;}
.y83{bottom:519.510000px;}
.yf1{bottom:520.710000px;}
.y78{bottom:521.490000px;}
.yce{bottom:531.255000px;}
.yb4{bottom:534.855000px;}
.y9c{bottom:538.560000px;}
.y56{bottom:542.130000px;}
.y1{bottom:543.450000px;}
.y82{bottom:543.810000px;}
.y3f{bottom:546.735000px;}
.yc{bottom:553.065000px;}
.y9b{bottom:561.960000px;}
.ye5{bottom:563.910000px;}
.yb3{bottom:564.015000px;}
.yc9{bottom:567.930000px;}
.y81{bottom:568.155000px;}
.y77{bottom:577.830000px;}
.y2e{bottom:579.855000px;}
.y6f{bottom:580.755000px;}
.y61{bottom:581.505000px;}
.y9a{bottom:585.360000px;}
.y3e{bottom:585.615000px;}
.y48{bottom:585.645000px;}
.y22{bottom:587.490000px;}
.yb{bottom:589.425000px;}
.yc8{bottom:589.530000px;}
.ycd{bottom:591.840000px;}
.y6e{bottom:591.990000px;}
.y80{bottom:592.455000px;}
.y55{bottom:594.000000px;}
.y99{bottom:608.760000px;}
.y7f{bottom:616.755000px;}
.y98{bottom:632.160000px;}
.h27{height:43.681992px;}
.h28{height:43.787250px;}
.ha{height:48.418594px;}
.hb{height:48.523852px;}
.h1d{height:57.668906px;}
.h1e{height:57.794273px;}
.h21{height:62.402344px;}
.h26{height:62.527148px;}
.h1b{height:62.683594px;}
.h1c{height:62.808961px;}
.h25{height:73.010742px;}
.h23{height:73.134141px;}
.h18{height:73.135547px;}
.h16{height:82.995117px;}
.h17{height:83.119922px;}
.h19{height:91.283203px;}
.h1a{height:91.404914px;}
.h3{height:93.603516px;}
.h4{height:93.728320px;}
.h5{height:93.761719px;}
.h11{height:96.151641px;}
.h12{height:98.595703px;}
.h13{height:98.720508px;}
.h9{height:104.211914px;}
.hd{height:104.336719px;}
.h20{height:114.196289px;}
.h1f{height:114.321094px;}
.h14{height:121.710938px;}
.h15{height:121.832648px;}
.h7{height:124.804688px;}
.h8{height:124.929492px;}
.hc{height:141.793242px;}
.h6{height:141.914953px;}
.he{height:143.226562px;}
.h22{height:145.727812px;}
.h10{height:147.270234px;}
.hf{height:147.391945px;}
.h1{height:162.484102px;}
.h2{height:162.605813px;}
.h24{height:176.580000px;}
.h0{height:810.000000px;}
.w3{width:68.400000px;}
.w2{width:95.580000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4b{left:5.760000px;}
.x4f{left:9.030000px;}
.x9{left:55.439979px;}
.x59{left:71.387979px;}
.x13{left:82.115979px;}
.x2{left:94.931979px;}
.x1{left:97.739979px;}
.x40{left:100.799979px;}
.x26{left:105.479979px;}
.x1b{left:110.015979px;}
.x25{left:115.199979px;}
.x17{left:118.547979px;}
.x21{left:122.363979px;}
.x27{left:132.479979px;}
.x3e{left:134.531979px;}
.x16{left:141.875979px;}
.x1c{left:143.855979px;}
.x1f{left:150.509979px;}
.x6{left:153.539979px;}
.xf{left:155.444979px;}
.x15{left:157.169979px;}
.x31{left:159.479979px;}
.x1d{left:164.009979px;}
.x41{left:169.229979px;}
.x18{left:172.544979px;}
.x22{left:176.399979px;}
.x10{left:180.869979px;}
.x32{left:186.479979px;}
.x50{left:190.829979px;}
.x42{left:196.229979px;}
.x1e{left:197.849979px;}
.x19{left:199.544979px;}
.x20{left:204.509979px;}
.x48{left:205.919979px;}
.x11{left:207.869979px;}
.x4d{left:209.699979px;}
.x51{left:217.829979px;}
.xa{left:229.034979px;}
.x23{left:230.399979px;}
.x5{left:235.649979px;}
.x54{left:261.869979px;}
.xb{left:283.034979px;}
.x55{left:288.869979px;}
.x2b{left:292.784979px;}
.x37{left:295.199979px;}
.x2a{left:302.504979px;}
.x38{left:308.699979px;}
.x36{left:310.499979px;}
.x57{left:325.049979px;}
.xc{left:337.064979px;}
.x29{left:547.094979px;}
.x28{left:555.374979px;}
.x7{left:574.889979px;}
.x33{left:581.039979px;}
.x47{left:582.224979px;}
.x35{left:584.459979px;}
.x49{left:585.899979px;}
.x34{left:595.619979px;}
.x8{left:628.889979px;}
.x1a{left:731.549979px;}
.x56{left:743.909979px;}
.x52{left:770.249979px;}
.x12{left:771.809979px;}
.x3{left:785.009979px;}
.x53{left:824.294979px;}
.x4{left:825.509979px;}
.x24{left:831.959979px;}
.x2f{left:855.869979px;}
.x2e{left:869.114979px;}
.x30{left:888.269979px;}
.x39{left:897.764979px;}
.xd{left:901.004979px;}
.x3a{left:906.404979px;}
.x3b{left:911.954979px;}
.xe{left:928.004979px;}
.x3d{left:947.954979px;}
.x3c{left:965.954979px;}
.x14{left:1001.804979px;}
.x5a{left:1024.589979px;}
.x4a{left:1030.320000px;}
.x46{left:1063.514979px;}
.x44{left:1081.049979px;}
.x43{left:1089.329979px;}
.x45{left:1090.694979px;}
.x4e{left:1125.720000px;}
.x4c{left:1139.069979px;}
.x58{left:1142.744979px;}
.x2c{left:1163.489979px;}
.x3f{left:1181.129979px;}
.x2d{left:1213.349979px;}
@media print{
.v1{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:73.973333pt;}
.ls1a{letter-spacing:-0.454400pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.306133pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.224000pt;}
.ls21{letter-spacing:-0.129067pt;}
.ls1f{letter-spacing:-0.114133pt;}
.ls28{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.070400pt;}
.ls22{letter-spacing:-0.024320pt;}
.ls26{letter-spacing:-0.011413pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000003pt;}
.ls4{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.152533pt;}
.ls18{letter-spacing:0.156267pt;}
.lsc{letter-spacing:0.257067pt;}
.ls8{letter-spacing:51.155200pt;}
.ls7{letter-spacing:51.200000pt;}
.ls1e{letter-spacing:55.091200pt;}
.ls15{letter-spacing:58.547200pt;}
.lsa{letter-spacing:58.592000pt;}
.ls1b{letter-spacing:58.675200pt;}
.ls1d{letter-spacing:58.720000pt;}
.ls24{letter-spacing:62.355200pt;}
.ls1c{letter-spacing:62.400000pt;}
.lsb{letter-spacing:66.208000pt;}
.ls25{letter-spacing:69.792000pt;}
.ls14{letter-spacing:83.040000pt;}
.lsf{letter-spacing:86.675200pt;}
.lsd{letter-spacing:86.720000pt;}
.lse{letter-spacing:90.528000pt;}
.ls11{letter-spacing:110.333867pt;}
.ls10{letter-spacing:110.378667pt;}
.ls13{letter-spacing:114.163200pt;}
.ls12{letter-spacing:114.208000pt;}
.ls2{letter-spacing:147.155200pt;}
.ls1{letter-spacing:147.200000pt;}
.ls3{letter-spacing:154.592000pt;}
.ls5{letter-spacing:154.653867pt;}
.ls6{letter-spacing:154.698667pt;}
.ws16{word-spacing:-35.270400pt;}
.ws1b{word-spacing:-32.454400pt;}
.ws19{word-spacing:-32.384000pt;}
.ws1a{word-spacing:-32.000000pt;}
.wsa{word-spacing:-29.891840pt;}
.ws9{word-spacing:-28.928000pt;}
.ws14{word-spacing:-28.804864pt;}
.ws29{word-spacing:-28.780160pt;}
.ws6{word-spacing:-25.984000pt;}
.wsf{word-spacing:-24.728704pt;}
.ws15{word-spacing:-21.722624pt;}
.ws13{word-spacing:-21.696640pt;}
.wsd{word-spacing:-20.527360pt;}
.wsc{word-spacing:-19.516160pt;}
.ws2{word-spacing:-19.513984pt;}
.ws3{word-spacing:-19.488000pt;}
.ws10{word-spacing:-17.536427pt;}
.ws18{word-spacing:-17.305344pt;}
.ws12{word-spacing:-17.279360pt;}
.ws11{word-spacing:-15.226624pt;}
.ws20{word-spacing:-15.200640pt;}
.ws2a{word-spacing:-13.006571pt;}
.ws27{word-spacing:-0.761600pt;}
.ws8{word-spacing:-0.631680pt;}
.ws17{word-spacing:-0.624960pt;}
.ws0{word-spacing:-0.145877pt;}
.ws4{word-spacing:0.000000pt;}
.ws26{word-spacing:0.025600pt;}
.ws1d{word-spacing:0.081920pt;}
.wsb{word-spacing:0.096000pt;}
.ws2d{word-spacing:0.106667pt;}
.wse{word-spacing:0.124800pt;}
.ws25{word-spacing:0.207360pt;}
.ws28{word-spacing:0.662400pt;}
.ws7{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.896000pt;}
.ws2b{word-spacing:0.960000pt;}
.ws1{word-spacing:16.822656pt;}
.ws23{word-spacing:145.863467pt;}
.ws1f{word-spacing:146.040320pt;}
.ws1e{word-spacing:190.998400pt;}
.ws24{word-spacing:261.682560pt;}
.ws22{word-spacing:278.386987pt;}
.ws21{word-spacing:340.920533pt;}
.ws1c{word-spacing:459.352533pt;}
.ws5{word-spacing:882.336085pt;}
._5{margin-left:-10.360533pt;}
._8{margin-left:-7.621973pt;}
._2{margin-left:-6.322560pt;}
._6{margin-left:-4.859947pt;}
._1{margin-left:-3.588480pt;}
._3{margin-left:-2.392320pt;}
._0{margin-left:-1.367040pt;}
._4{width:1.367040pt;}
._b{width:2.303360pt;}
._17{width:13.889707pt;}
._15{width:16.039680pt;}
._a{width:18.478080pt;}
._9{width:20.291200pt;}
._16{width:23.073920pt;}
._7{width:36.480000pt;}
._18{width:152.855680pt;}
._12{width:206.091307pt;}
._f{width:220.322773pt;}
._11{width:230.571520pt;}
._10{width:244.291840pt;}
._14{width:250.411307pt;}
._13{width:264.329600pt;}
._1a{width:271.044693pt;}
._19{width:295.641600pt;}
._1b{width:371.114667pt;}
._e{width:476.757333pt;}
._c{width:629.618133pt;}
._d{width:630.570667pt;}
._1c{width:1014.750080pt;}
.fs18{font-size:53.120000pt;}
.fs19{font-size:53.248000pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs13{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fs17{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fs10{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fse{font-size:101.120000pt;}
.fsf{font-size:101.248000pt;}
.fs7{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs16{font-size:117.120000pt;}
.fs15{font-size:117.248000pt;}
.fs5{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fsa{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fsd{font-size:154.880000pt;}
.fsc{font-size:155.008000pt;}
.fs0{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:39.584000pt;}
.yb7{bottom:42.016000pt;}
.y39{bottom:48.352000pt;}
.y97{bottom:49.472000pt;}
.y47{bottom:52.448000pt;}
.y75{bottom:55.360000pt;}
.y20{bottom:56.704000pt;}
.yeb{bottom:62.496000pt;}
.y76{bottom:62.656000pt;}
.yf0{bottom:63.328000pt;}
.ya{bottom:64.224000pt;}
.y95{bottom:66.176000pt;}
.ybb{bottom:72.320000pt;}
.yc0{bottom:72.346667pt;}
.yda{bottom:73.728000pt;}
.y1f{bottom:74.304000pt;}
.y15{bottom:79.680000pt;}
.yef{bottom:83.488000pt;}
.y6d{bottom:85.760000pt;}
.y1e{bottom:91.936000pt;}
.y9{bottom:93.024000pt;}
.y94{bottom:94.976000pt;}
.y3d{bottom:96.640000pt;}
.ya6{bottom:97.408000pt;}
.yc7{bottom:102.368000pt;}
.yee{bottom:103.648000pt;}
.yd9{bottom:106.208000pt;}
.y1d{bottom:109.536000pt;}
.y8c{bottom:109.888000pt;}
.y7c{bottom:111.488000pt;}
.y54{bottom:113.472000pt;}
.y7e{bottom:113.632000pt;}
.yb2{bottom:114.400000pt;}
.y6c{bottom:115.552000pt;}
.y93{bottom:123.776000pt;}
.yed{bottom:123.808000pt;}
.ya5{bottom:126.240000pt;}
.y3c{bottom:127.040000pt;}
.y1c{bottom:127.136000pt;}
.y14{bottom:127.712000pt;}
.ye4{bottom:127.840000pt;}
.yc6{bottom:133.413333pt;}
.y89{bottom:133.533333pt;}
.y8b{bottom:138.693333pt;}
.yd8{bottom:139.653333pt;}
.y7b{bottom:140.320000pt;}
.y2a{bottom:140.346667pt;}
.y7d{bottom:142.426667pt;}
.y53{bottom:143.866667pt;}
.yec{bottom:144.000000pt;}
.y6b{bottom:145.946667pt;}
.yb1{bottom:146.106667pt;}
.y60{bottom:150.240000pt;}
.y92{bottom:152.573333pt;}
.yc5{bottom:162.240000pt;}
.ye3{bottom:163.360000pt;}
.yb6{bottom:165.186667pt;}
.y29{bottom:169.146667pt;}
.y52{bottom:169.786667pt;}
.y13{bottom:175.546667pt;}
.y6a{bottom:177.786667pt;}
.y5f{bottom:180.000000pt;}
.yd7{bottom:180.933333pt;}
.y96{bottom:186.466667pt;}
.ycc{bottom:189.600000pt;}
.yb0{bottom:190.426667pt;}
.yb5{bottom:191.106667pt;}
.ye2{bottom:192.160000pt;}
.y46{bottom:200.320000pt;}
.yc4{bottom:203.040000pt;}
.y28{bottom:204.666667pt;}
.y8{bottom:205.920000pt;}
.y69{bottom:207.546667pt;}
.y51{bottom:209.146667pt;}
.y5e{bottom:209.626667pt;}
.yd6{bottom:212.160000pt;}
.yaf{bottom:219.226667pt;}
.ycb{bottom:219.360000pt;}
.y12{bottom:223.386667pt;}
.y1b{bottom:224.320000pt;}
.ye1{bottom:229.146667pt;}
.y45{bottom:230.106667pt;}
.yc3{bottom:232.640000pt;}
.y50{bottom:235.106667pt;}
.y68{bottom:237.986667pt;}
.y5d{bottom:240.026667pt;}
.y27{bottom:240.226667pt;}
.yd5{bottom:240.480000pt;}
.y7{bottom:241.466667pt;}
.y8e{bottom:250.400000pt;}
.yca{bottom:250.560000pt;}
.y3b{bottom:257.053333pt;}
.yae{bottom:260.666667pt;}
.y44{bottom:261.146667pt;}
.yea{bottom:262.586667pt;}
.y1a{bottom:263.520000pt;}
.ye0{bottom:263.706667pt;}
.yc2{bottom:263.840000pt;}
.y74{bottom:264.666667pt;}
.y67{bottom:271.266667pt;}
.y11{bottom:271.426667pt;}
.y6{bottom:271.706667pt;}
.yd4{bottom:272.960000pt;}
.y4f{bottom:273.666667pt;}
.y8d{bottom:276.320000pt;}
.ya7{bottom:276.413333pt;}
.y26{bottom:277.026667pt;}
.y3a{bottom:278.333333pt;}
.y5c{bottom:278.586667pt;}
.y2d{bottom:280.026667pt;}
.ybf{bottom:284.160000pt;}
.yad{bottom:286.626667pt;}
.ye9{bottom:291.426667pt;}
.yc1{bottom:292.666667pt;}
.y5b{bottom:301.626667pt;}
.y5{bottom:301.946667pt;}
.y19{bottom:302.880000pt;}
.y32{bottom:303.013333pt;}
.y4e{bottom:303.266667pt;}
.yfb{bottom:303.293333pt;}
.yd3{bottom:306.400000pt;}
.y91{bottom:308.640000pt;}
.ydf{bottom:310.106667pt;}
.ya4{bottom:312.253333pt;}
.yac{bottom:312.546667pt;}
.y73{bottom:312.666667pt;}
.y66{bottom:313.346667pt;}
.y2c{bottom:314.586667pt;}
.y8a{bottom:315.706667pt;}
.y10{bottom:317.826667pt;}
.yfa{bottom:318.813333pt;}
.ybd{bottom:319.200000pt;}
.y43{bottom:324.986667pt;}
.y5a{bottom:331.386667pt;}
.y90{bottom:331.680000pt;}
.y4{bottom:332.186667pt;}
.ya3{bottom:333.093333pt;}
.y4d{bottom:333.666667pt;}
.yf9{bottom:334.813333pt;}
.y35{bottom:337.373333pt;}
.y31{bottom:337.600000pt;}
.yab{bottom:345.186667pt;}
.yde{bottom:345.626667pt;}
.y72{bottom:347.266667pt;}
.yd2{bottom:347.706667pt;}
.ye8{bottom:349.026667pt;}
.yf8{bottom:350.813333pt;}
.yf{bottom:353.346667pt;}
.y88{bottom:353.760000pt;}
.ya2{bottom:353.893333pt;}
.yba{bottom:354.240000pt;}
.y42{bottom:354.626667pt;}
.y65{bottom:354.786667pt;}
.ybe{bottom:356.506667pt;}
.y8f{bottom:361.440000pt;}
.y59{bottom:361.826667pt;}
.yf7{bottom:366.813333pt;}
.yaa{bottom:371.106667pt;}
.y38{bottom:371.493333pt;}
.y4c{bottom:372.253333pt;}
.y25{bottom:372.893333pt;}
.ya1{bottom:374.693333pt;}
.y87{bottom:375.386667pt;}
.y41{bottom:377.666667pt;}
.ye7{bottom:377.826667pt;}
.yd1{bottom:380.346667pt;}
.ydd{bottom:381.026667pt;}
.y18{bottom:381.306667pt;}
.yf6{bottom:382.813333pt;}
.y34{bottom:385.253333pt;}
.y30{bottom:385.440000pt;}
.y64{bottom:387.453333pt;}
.ye{bottom:390.173333pt;}
.y3{bottom:390.880000pt;}
.ybc{bottom:391.520000pt;}
.y7a{bottom:392.640000pt;}
.y71{bottom:395.106667pt;}
.y4b{bottom:395.293333pt;}
.ya0{bottom:395.493333pt;}
.y86{bottom:396.986667pt;}
.yf5{bottom:398.853333pt;}
.y58{bottom:401.026667pt;}
.ya9{bottom:404.386667pt;}
.ye6{bottom:406.626667pt;}
.y17{bottom:407.226667pt;}
.y24{bottom:407.453333pt;}
.y40{bottom:408.866667pt;}
.yd0{bottom:412.986667pt;}
.y37{bottom:413.253333pt;}
.yf4{bottom:414.853333pt;}
.y9f{bottom:416.293333pt;}
.ydc{bottom:417.986667pt;}
.y85{bottom:418.586667pt;}
.y63{bottom:420.733333pt;}
.y79{bottom:421.440000pt;}
.y4a{bottom:425.693333pt;}
.yb9{bottom:426.560000pt;}
.y57{bottom:426.946667pt;}
.y70{bottom:429.666667pt;}
.yf3{bottom:430.853333pt;}
.y16{bottom:433.146667pt;}
.ya8{bottom:433.213333pt;}
.y2{bottom:436.986667pt;}
.y9e{bottom:437.093333pt;}
.yd{bottom:438.173333pt;}
.ycf{bottom:438.906667pt;}
.y84{bottom:440.186667pt;}
.y23{bottom:442.013333pt;}
.yb8{bottom:444.066667pt;}
.yf2{bottom:446.853333pt;}
.y62{bottom:449.533333pt;}
.y2f{bottom:451.493333pt;}
.y49{bottom:451.613333pt;}
.ydb{bottom:452.546667pt;}
.y36{bottom:455.040000pt;}
.y33{bottom:457.693333pt;}
.y9d{bottom:457.893333pt;}
.y2b{bottom:458.306667pt;}
.y83{bottom:461.786667pt;}
.yf1{bottom:462.853333pt;}
.y78{bottom:463.546667pt;}
.yce{bottom:472.226667pt;}
.yb4{bottom:475.426667pt;}
.y9c{bottom:478.720000pt;}
.y56{bottom:481.893333pt;}
.y1{bottom:483.066667pt;}
.y82{bottom:483.386667pt;}
.y3f{bottom:485.986667pt;}
.yc{bottom:491.613333pt;}
.y9b{bottom:499.520000pt;}
.ye5{bottom:501.253333pt;}
.yb3{bottom:501.346667pt;}
.yc9{bottom:504.826667pt;}
.y81{bottom:505.026667pt;}
.y77{bottom:513.626667pt;}
.y2e{bottom:515.426667pt;}
.y6f{bottom:516.226667pt;}
.y61{bottom:516.893333pt;}
.y9a{bottom:520.320000pt;}
.y3e{bottom:520.546667pt;}
.y48{bottom:520.573333pt;}
.y22{bottom:522.213333pt;}
.yb{bottom:523.933333pt;}
.yc8{bottom:524.026667pt;}
.ycd{bottom:526.080000pt;}
.y6e{bottom:526.213333pt;}
.y80{bottom:526.626667pt;}
.y55{bottom:528.000000pt;}
.y99{bottom:541.120000pt;}
.y7f{bottom:548.226667pt;}
.y98{bottom:561.920000pt;}
.h27{height:38.828437pt;}
.h28{height:38.922000pt;}
.ha{height:43.038750pt;}
.hb{height:43.132312pt;}
.h1d{height:51.261250pt;}
.h1e{height:51.372687pt;}
.h21{height:55.468750pt;}
.h26{height:55.579687pt;}
.h1b{height:55.718750pt;}
.h1c{height:55.830187pt;}
.h25{height:64.898438pt;}
.h23{height:65.008125pt;}
.h18{height:65.009375pt;}
.h16{height:73.773438pt;}
.h17{height:73.884375pt;}
.h19{height:81.140625pt;}
.h1a{height:81.248812pt;}
.h3{height:83.203125pt;}
.h4{height:83.314062pt;}
.h5{height:83.343750pt;}
.h11{height:85.468125pt;}
.h12{height:87.640625pt;}
.h13{height:87.751562pt;}
.h9{height:92.632812pt;}
.hd{height:92.743750pt;}
.h20{height:101.507812pt;}
.h1f{height:101.618750pt;}
.h14{height:108.187500pt;}
.h15{height:108.295687pt;}
.h7{height:110.937500pt;}
.h8{height:111.048437pt;}
.hc{height:126.038437pt;}
.h6{height:126.146625pt;}
.he{height:127.312500pt;}
.h22{height:129.535833pt;}
.h10{height:130.906875pt;}
.hf{height:131.015062pt;}
.h1{height:144.430312pt;}
.h2{height:144.538500pt;}
.h24{height:156.960000pt;}
.h0{height:720.000000pt;}
.w3{width:60.800000pt;}
.w2{width:84.960000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:5.120000pt;}
.x4f{left:8.026667pt;}
.x9{left:49.279981pt;}
.x59{left:63.455981pt;}
.x13{left:72.991981pt;}
.x2{left:84.383981pt;}
.x1{left:86.879981pt;}
.x40{left:89.599981pt;}
.x26{left:93.759981pt;}
.x1b{left:97.791981pt;}
.x25{left:102.399981pt;}
.x17{left:105.375981pt;}
.x21{left:108.767981pt;}
.x27{left:117.759981pt;}
.x3e{left:119.583981pt;}
.x16{left:126.111981pt;}
.x1c{left:127.871981pt;}
.x1f{left:133.786648pt;}
.x6{left:136.479981pt;}
.xf{left:138.173314pt;}
.x15{left:139.706648pt;}
.x31{left:141.759981pt;}
.x1d{left:145.786648pt;}
.x41{left:150.426648pt;}
.x18{left:153.373314pt;}
.x22{left:156.799981pt;}
.x10{left:160.773314pt;}
.x32{left:165.759981pt;}
.x50{left:169.626648pt;}
.x42{left:174.426648pt;}
.x1e{left:175.866648pt;}
.x19{left:177.373314pt;}
.x20{left:181.786648pt;}
.x48{left:183.039981pt;}
.x11{left:184.773314pt;}
.x4d{left:186.399981pt;}
.x51{left:193.626648pt;}
.xa{left:203.586648pt;}
.x23{left:204.799981pt;}
.x5{left:209.466648pt;}
.x54{left:232.773314pt;}
.xb{left:251.586648pt;}
.x55{left:256.773314pt;}
.x2b{left:260.253314pt;}
.x37{left:262.399981pt;}
.x2a{left:268.893314pt;}
.x38{left:274.399981pt;}
.x36{left:275.999981pt;}
.x57{left:288.933314pt;}
.xc{left:299.613314pt;}
.x29{left:486.306648pt;}
.x28{left:493.666648pt;}
.x7{left:511.013314pt;}
.x33{left:516.479981pt;}
.x47{left:517.533314pt;}
.x35{left:519.519981pt;}
.x49{left:520.799981pt;}
.x34{left:529.439981pt;}
.x8{left:559.013314pt;}
.x1a{left:650.266648pt;}
.x56{left:661.253314pt;}
.x52{left:684.666648pt;}
.x12{left:686.053314pt;}
.x3{left:697.786648pt;}
.x53{left:732.706648pt;}
.x4{left:733.786648pt;}
.x24{left:739.519981pt;}
.x2f{left:760.773314pt;}
.x2e{left:772.546648pt;}
.x30{left:789.573314pt;}
.x39{left:798.013314pt;}
.xd{left:800.893314pt;}
.x3a{left:805.693314pt;}
.x3b{left:810.626648pt;}
.xe{left:824.893314pt;}
.x3d{left:842.626648pt;}
.x3c{left:858.626648pt;}
.x14{left:890.493314pt;}
.x5a{left:910.746648pt;}
.x4a{left:915.840000pt;}
.x46{left:945.346648pt;}
.x44{left:960.933314pt;}
.x43{left:968.293314pt;}
.x45{left:969.506648pt;}
.x4e{left:1000.640000pt;}
.x4c{left:1012.506648pt;}
.x58{left:1015.773314pt;}
.x2c{left:1034.213314pt;}
.x3f{left:1049.893314pt;}
.x2d{left:1078.533314pt;}
}




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