
    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_c5e2d1e62ab3afa408af2063.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_d272d06e2b86784d942ed170.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_114e6d87a0ee32d7321b6c2c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_e0239ce5b2be59b9aab82541.woff')format("woff");}.ff4{font-family:ff4;line-height:0.788574;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_8d245f7079711294beca9fc0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_a27aea9e18800a93a034e400.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_1f59c4a00c893906f65e22a9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_e5741f2b17f2221ba6448a0a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.364258;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_360f7980ea3d86e5b0fd956f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.747559;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);}
.v2{vertical-align:-6.000000px;}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.000000px;}
.ls15{letter-spacing:-1.680000px;}
.ls8{letter-spacing:-1.500000px;}
.lsd{letter-spacing:-1.140000px;}
.ls16{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.221400px;}
.lse{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.024000px;}
.ls7{letter-spacing:-0.018000px;}
.ls9{letter-spacing:-0.012000px;}
.lsb{letter-spacing:-0.006000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.150000px;}
.ls11{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.516000px;}
.ls17{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.780000px;}
.ls18{letter-spacing:0.810000px;}
.ls14{letter-spacing:0.840000px;}
.ls10{letter-spacing:1.500000px;}
.ls1a{letter-spacing:15.000000px;}
.ls2{letter-spacing:42.000000px;}
.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;}
}
.ws4{word-spacing:-54.000000px;}
.ws13{word-spacing:-15.840000px;}
.ws16{word-spacing:-15.810000px;}
.ws15{word-spacing:-15.660000px;}
.ws17{word-spacing:-15.480000px;}
.wsc{word-spacing:-15.360000px;}
.ws11{word-spacing:-15.180000px;}
.ws8{word-spacing:-15.000000px;}
.wsf{word-spacing:-14.820000px;}
.ws1a{word-spacing:-14.816100px;}
.ws18{word-spacing:-14.640000px;}
.wse{word-spacing:-14.520000px;}
.ws19{word-spacing:-14.340000px;}
.wsb{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.494000px;}
.ws3{word-spacing:-13.488000px;}
.ws0{word-spacing:-13.482000px;}
.ws14{word-spacing:-13.320000px;}
.wsd{word-spacing:-12.516000px;}
.ws9{word-spacing:-12.000000px;}
.wsa{word-spacing:-9.750000px;}
.ws1{word-spacing:-9.000000px;}
.ws7{word-spacing:-2.040000px;}
.ws12{word-spacing:-1.860000px;}
.ws10{word-spacing:0.000000px;}
._1{margin-left:-9.936000px;}
._5{margin-left:-5.616000px;}
._1d{margin-left:-4.176000px;}
._0{margin-left:-3.024000px;}
._3{margin-left:-1.440000px;}
._2{width:1.152000px;}
._4{width:2.802000px;}
._8{width:4.428000px;}
._6{width:5.982000px;}
._7{width:7.452000px;}
._12{width:9.444000px;}
._11{width:10.590000px;}
._10{width:12.048000px;}
._14{width:13.440000px;}
._25{width:14.976000px;}
._f{width:16.758000px;}
._1e{width:17.868000px;}
._c{width:18.948000px;}
._d{width:20.052000px;}
._1b{width:22.092000px;}
._13{width:23.880000px;}
._15{width:25.794000px;}
._e{width:26.976000px;}
._a{width:28.188000px;}
._b{width:29.376000px;}
._1f{width:30.480000px;}
._16{width:31.488000px;}
._20{width:32.688000px;}
._17{width:33.798000px;}
._19{width:35.568000px;}
._18{width:37.488000px;}
._24{width:38.610000px;}
._23{width:39.900000px;}
._9{width:41.958000px;}
._21{width:45.660000px;}
._22{width:46.998000px;}
._1c{width:69.000000px;}
._1a{width:79.578000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,128);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:60.150000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:291.150000px;}
.y0{bottom:0.000000px;}
.y106{bottom:3.375000px;}
.y104{bottom:3.390000px;}
.y44{bottom:4.125000px;}
.y51{bottom:16.926000px;}
.y8d{bottom:18.037500px;}
.y4c{bottom:18.075000px;}
.yb8{bottom:18.225000px;}
.y88{bottom:18.255000px;}
.y8f{bottom:18.300000px;}
.y8a{bottom:18.412500px;}
.ybb{bottom:18.525000px;}
.y48{bottom:18.600000px;}
.y50{bottom:31.326000px;}
.y8c{bottom:35.287500px;}
.y4b{bottom:35.325000px;}
.y91{bottom:35.370000px;}
.yb7{bottom:35.475000px;}
.y87{bottom:35.505000px;}
.ybd{bottom:35.550000px;}
.yc0{bottom:35.662500px;}
.yba{bottom:35.775000px;}
.y47{bottom:35.850000px;}
.y4f{bottom:45.726000px;}
.y4a{bottom:52.575000px;}
.y10b{bottom:52.725000px;}
.y85{bottom:52.755000px;}
.ybf{bottom:52.912500px;}
.y46{bottom:53.100000px;}
.ybe{bottom:54.750000px;}
.y8b{bottom:57.000000px;}
.y4e{bottom:60.126000px;}
.y10a{bottom:69.975000px;}
.y84{bottom:70.050000px;}
.y89{bottom:75.375000px;}
.yff{bottom:75.412500px;}
.y32{bottom:78.037500px;}
.y31{bottom:91.537500px;}
.y108{bottom:92.662500px;}
.yde{bottom:94.537500px;}
.y30{bottom:105.412500px;}
.ydd{bottom:112.537500px;}
.y107{bottom:115.912500px;}
.y2f{bottom:119.287500px;}
.y102{bottom:123.412500px;}
.ydc{bottom:130.912500px;}
.y2e{bottom:133.162500px;}
.y105{bottom:139.162500px;}
.y101{bottom:140.662500px;}
.y2d{bottom:147.037500px;}
.ydb{bottom:148.912500px;}
.y100{bottom:157.912500px;}
.y2c{bottom:160.545000px;}
.y103{bottom:163.905000px;}
.yda{bottom:166.920000px;}
.y2b{bottom:174.405000px;}
.yd9{bottom:185.325000px;}
.y49{bottom:191.625000px;}
.yd8{bottom:203.325000px;}
.yd7{bottom:221.325000px;}
.yd6{bottom:239.325000px;}
.yfe{bottom:253.200000px;}
.y2a{bottom:254.700000px;}
.yd5{bottom:257.700000px;}
.yfd{bottom:267.075000px;}
.y29{bottom:272.700000px;}
.yd4{bottom:275.700000px;}
.yfc{bottom:280.575000px;}
.y90{bottom:287.625000px;}
.y28{bottom:291.075000px;}
.yd3{bottom:293.700000px;}
.yfb{bottom:294.450000px;}
.y92{bottom:305.745000px;}
.yfa{bottom:308.370000px;}
.y27{bottom:309.120000px;}
.yd2{bottom:312.120000px;}
.yf9{bottom:322.245000px;}
.y26{bottom:327.120000px;}
.yd1{bottom:330.120000px;}
.yf8{bottom:336.120000px;}
.y82{bottom:343.995000px;}
.y25{bottom:345.120000px;}
.yd0{bottom:348.120000px;}
.yf7{bottom:349.620000px;}
.yb5{bottom:360.495000px;}
.y81{bottom:361.995000px;}
.y24{bottom:363.495000px;}
.y97{bottom:363.870000px;}
.ycf{bottom:366.495000px;}
.yf6{bottom:377.370000px;}
.yb4{bottom:378.495000px;}
.y80{bottom:379.995000px;}
.y23{bottom:381.495000px;}
.y96{bottom:381.870000px;}
.yce{bottom:384.495000px;}
.y42{bottom:387.495000px;}
.yf5{bottom:391.245000px;}
.yb3{bottom:396.495000px;}
.y7f{bottom:398.370000px;}
.y22{bottom:399.495000px;}
.y95{bottom:399.870000px;}
.ycd{bottom:402.495000px;}
.y41{bottom:404.745000px;}
.yf4{bottom:405.120000px;}
.yb2{bottom:414.870000px;}
.y7e{bottom:416.370000px;}
.y21{bottom:417.870000px;}
.yf3{bottom:418.620000px;}
.ycc{bottom:420.480000px;}
.y40{bottom:422.025000px;}
.yf2{bottom:432.525000px;}
.yb1{bottom:432.900000px;}
.y7d{bottom:434.400000px;}
.y20{bottom:435.900000px;}
.y94{bottom:436.275000px;}
.ycb{bottom:438.900000px;}
.y3f{bottom:439.275000px;}
.yf1{bottom:446.400000px;}
.yb0{bottom:450.900000px;}
.y7c{bottom:452.400000px;}
.y1f{bottom:453.900000px;}
.y93{bottom:454.275000px;}
.y3e{bottom:456.525000px;}
.yca{bottom:456.900000px;}
.yf0{bottom:460.275000px;}
.yb9{bottom:468.750000px;}
.yaf{bottom:468.900000px;}
.y7b{bottom:470.775000px;}
.y1e{bottom:472.275000px;}
.y3d{bottom:473.775000px;}
.yc9{bottom:474.900000px;}
.yae{bottom:487.275000px;}
.yef{bottom:487.650000px;}
.y7a{bottom:488.775000px;}
.y1d{bottom:490.275000px;}
.y3c{bottom:491.025000px;}
.yc8{bottom:493.275000px;}
.y64{bottom:498.900000px;}
.yee{bottom:501.525000px;}
.yad{bottom:505.275000px;}
.y79{bottom:506.775000px;}
.y1c{bottom:508.275000px;}
.yc7{bottom:511.275000px;}
.yed{bottom:515.400000px;}
.y63{bottom:516.150000px;}
.yac{bottom:523.275000px;}
.y78{bottom:525.150000px;}
.y3b{bottom:525.525000px;}
.y1b{bottom:526.275000px;}
.yc6{bottom:529.275000px;}
.y62{bottom:533.400000px;}
.yab{bottom:541.695000px;}
.y3a{bottom:542.820000px;}
.y77{bottom:543.195000px;}
.y1a{bottom:544.695000px;}
.yc5{bottom:547.695000px;}
.y61{bottom:550.695000px;}
.yec{bottom:557.445000px;}
.yaa{bottom:559.695000px;}
.y39{bottom:560.070000px;}
.y76{bottom:561.195000px;}
.y19{bottom:562.695000px;}
.yc4{bottom:565.695000px;}
.y60{bottom:567.945000px;}
.y38{bottom:577.320000px;}
.ya9{bottom:577.695000px;}
.y75{bottom:579.195000px;}
.y18{bottom:580.695000px;}
.yc3{bottom:583.695000px;}
.y5f{bottom:585.195000px;}
.y37{bottom:594.570000px;}
.ya8{bottom:596.070000px;}
.y74{bottom:597.570000px;}
.y17{bottom:599.070000px;}
.yc2{bottom:601.695000px;}
.y5e{bottom:602.445000px;}
.y36{bottom:611.820000px;}
.ya7{bottom:614.070000px;}
.y73{bottom:615.570000px;}
.y16{bottom:617.070000px;}
.y5d{bottom:619.695000px;}
.yc1{bottom:623.445000px;}
.y35{bottom:629.070000px;}
.ya6{bottom:632.070000px;}
.y72{bottom:633.570000px;}
.y15{bottom:635.070000px;}
.y5c{bottom:636.945000px;}
.y34{bottom:646.320000px;}
.y109{bottom:646.500000px;}
.y43{bottom:648.945000px;}
.ya5{bottom:650.070000px;}
.y71{bottom:651.945000px;}
.y14{bottom:653.070000px;}
.y5b{bottom:654.195000px;}
.yb6{bottom:661.125000px;}
.ya4{bottom:668.475000px;}
.y33{bottom:669.600000px;}
.yeb{bottom:671.100000px;}
.y13{bottom:671.475000px;}
.y70{bottom:673.725000px;}
.ya3{bottom:686.475000px;}
.y5a{bottom:688.725000px;}
.y12{bottom:689.475000px;}
.yea{bottom:694.350000px;}
.y6f{bottom:700.725000px;}
.y45{bottom:702.000000px;}
.ya2{bottom:704.475000px;}
.y59{bottom:705.975000px;}
.y11{bottom:712.725000px;}
.y6e{bottom:718.725000px;}
.ya1{bottom:722.850000px;}
.y58{bottom:723.225000px;}
.ye9{bottom:730.725000px;}
.y6d{bottom:737.100000px;}
.y57{bottom:740.475000px;}
.ya0{bottom:740.850000px;}
.ye8{bottom:748.725000px;}
.y6c{bottom:755.100000px;}
.y56{bottom:757.725000px;}
.y9f{bottom:758.850000px;}
.y10{bottom:763.350000px;}
.ye7{bottom:766.725000px;}
.y6b{bottom:773.100000px;}
.y55{bottom:774.975000px;}
.y9e{bottom:777.270000px;}
.yf{bottom:778.755000px;}
.ye6{bottom:785.130000px;}
.y6a{bottom:791.130000px;}
.y54{bottom:792.255000px;}
.ye{bottom:794.505000px;}
.y9d{bottom:799.005000px;}
.ye5{bottom:803.130000px;}
.y53{bottom:809.505000px;}
.yd{bottom:809.880000px;}
.ye4{bottom:821.130000px;}
.y9c{bottom:826.005000px;}
.y52{bottom:826.755000px;}
.y69{bottom:827.505000px;}
.y83{bottom:840.750000px;}
.yc{bottom:843.255000px;}
.y9b{bottom:844.005000px;}
.y68{bottom:845.505000px;}
.ye3{bottom:845.880000px;}
.yb{bottom:859.380000px;}
.y9a{bottom:862.005000px;}
.y67{bottom:863.880000px;}
.ya{bottom:875.505000px;}
.y99{bottom:880.380000px;}
.ye2{bottom:882.255000px;}
.y66{bottom:885.630000px;}
.y9{bottom:892.005000px;}
.y86{bottom:893.505000px;}
.y98{bottom:898.425000px;}
.ye1{bottom:900.300000px;}
.y8{bottom:908.175000px;}
.y65{bottom:911.925000px;}
.ybc{bottom:912.375000px;}
.ye0{bottom:918.300000px;}
.y7{bottom:924.675000px;}
.y119{bottom:935.550000px;}
.ydf{bottom:936.300000px;}
.y6{bottom:941.175000px;}
.y8e{bottom:943.875000px;}
.y118{bottom:949.425000px;}
.y10c{bottom:951.375000px;}
.y117{bottom:963.300000px;}
.y116{bottom:976.800000px;}
.y115{bottom:990.675000px;}
.y5{bottom:998.175000px;}
.y114{bottom:1004.550000px;}
.y113{bottom:1018.455000px;}
.y112{bottom:1032.330000px;}
.y4{bottom:1037.580000px;}
.y111{bottom:1045.830000px;}
.y110{bottom:1059.705000px;}
.y10f{bottom:1073.580000px;}
.y3{bottom:1078.830000px;}
.y10e{bottom:1087.455000px;}
.y10d{bottom:1101.330000px;}
.y4d{bottom:1112.400366px;}
.y2{bottom:1124.580000px;}
.y1{bottom:1141.875000px;}
.h16{height:22.500000px;}
.h15{height:22.537500px;}
.h10{height:32.625000px;}
.h17{height:33.328125px;}
.h6{height:34.710938px;}
.h7{height:35.085938px;}
.h5{height:38.100586px;}
.h4{height:39.128906px;}
.hf{height:39.471680px;}
.h1{height:43.388672px;}
.h12{height:43.497144px;}
.hd{height:43.857422px;}
.h3{height:47.727539px;}
.h11{height:49.500000px;}
.h13{height:49.875000px;}
.hc{height:49.898438px;}
.h8{height:54.412500px;}
.ha{height:67.125000px;}
.hb{height:75.599634px;}
.he{height:84.000000px;}
.h2{height:104.132812px;}
.h14{height:171.795000px;}
.h9{height:210.543530px;}
.h0{height:1188.000000px;}
.w1{width:51.000000px;}
.wf{width:55.912500px;}
.we{width:56.287500px;}
.wd{width:60.750000px;}
.w10{width:62.625000px;}
.wc{width:135.825000px;}
.w8{width:361.875000px;}
.w6{width:362.250000px;}
.w7{width:373.125000px;}
.w5{width:373.500000px;}
.w2{width:373.875000px;}
.w3{width:374.250000px;}
.wb{width:401.445000px;}
.w4{width:454.195500px;}
.wa{width:768.000000px;}
.w9{width:769.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:2.250000px;}
.x18{left:5.287500px;}
.x1a{left:10.912500px;}
.x28{left:13.875000px;}
.x2d{left:17.655000px;}
.x26{left:20.625000px;}
.x16{left:22.537500px;}
.x24{left:23.625000px;}
.x10{left:29.659500px;}
.x11{left:36.313500px;}
.x2e{left:51.405000px;}
.x25{left:52.905000px;}
.x2c{left:58.530000px;}
.xc{left:67.912500px;}
.x2{left:70.162500px;}
.x1c{left:71.625000px;}
.x1d{left:74.625000px;}
.x17{left:76.125000px;}
.x1b{left:81.412500px;}
.x8{left:85.162500px;}
.x15{left:90.037500px;}
.x2f{left:91.537500px;}
.x3{left:102.787500px;}
.x12{left:109.678500px;}
.x7{left:118.912500px;}
.x23{left:172.200000px;}
.x5{left:194.700000px;}
.x6{left:196.575000px;}
.xf{left:231.902252px;}
.x4{left:295.620000px;}
.x22{left:458.445000px;}
.xb{left:470.070000px;}
.x19{left:472.500000px;}
.xe{left:474.375000px;}
.x14{left:480.945000px;}
.xa{left:485.445000px;}
.x21{left:491.445000px;}
.x13{left:565.350000px;}
.x1f{left:598.005000px;}
.x9{left:603.645000px;}
.x27{left:608.520000px;}
.x1e{left:616.005000px;}
.x20{left:620.520000px;}
.x29{left:670.020000px;}
.x2a{left:727.050000px;}
.x2b{left:783.720000px;}
.x1{left:840.720000px;}
@media print{
.v2{vertical-align:-5.333333pt;}
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.333333pt;}
.ls15{letter-spacing:-1.493333pt;}
.ls8{letter-spacing:-1.333333pt;}
.lsd{letter-spacing:-1.013333pt;}
.ls16{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.196800pt;}
.lse{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:-0.010667pt;}
.lsb{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.133333pt;}
.ls11{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.458667pt;}
.ls17{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.693333pt;}
.ls18{letter-spacing:0.720000pt;}
.ls14{letter-spacing:0.746667pt;}
.ls10{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:13.333333pt;}
.ls2{letter-spacing:37.333333pt;}
.ws4{word-spacing:-48.000000pt;}
.ws13{word-spacing:-14.080000pt;}
.ws16{word-spacing:-14.053333pt;}
.ws15{word-spacing:-13.920000pt;}
.ws17{word-spacing:-13.760000pt;}
.wsc{word-spacing:-13.653333pt;}
.ws11{word-spacing:-13.493333pt;}
.ws8{word-spacing:-13.333333pt;}
.wsf{word-spacing:-13.173333pt;}
.ws1a{word-spacing:-13.169867pt;}
.ws18{word-spacing:-13.013333pt;}
.wse{word-spacing:-12.906667pt;}
.ws19{word-spacing:-12.746667pt;}
.wsb{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.010667pt;}
.ws5{word-spacing:-11.994667pt;}
.ws3{word-spacing:-11.989333pt;}
.ws0{word-spacing:-11.984000pt;}
.ws14{word-spacing:-11.840000pt;}
.wsd{word-spacing:-11.125333pt;}
.ws9{word-spacing:-10.666667pt;}
.wsa{word-spacing:-8.666667pt;}
.ws1{word-spacing:-8.000000pt;}
.ws7{word-spacing:-1.813333pt;}
.ws12{word-spacing:-1.653333pt;}
.ws10{word-spacing:0.000000pt;}
._1{margin-left:-8.832000pt;}
._5{margin-left:-4.992000pt;}
._1d{margin-left:-3.712000pt;}
._0{margin-left:-2.688000pt;}
._3{margin-left:-1.280000pt;}
._2{width:1.024000pt;}
._4{width:2.490667pt;}
._8{width:3.936000pt;}
._6{width:5.317333pt;}
._7{width:6.624000pt;}
._12{width:8.394667pt;}
._11{width:9.413333pt;}
._10{width:10.709333pt;}
._14{width:11.946667pt;}
._25{width:13.312000pt;}
._f{width:14.896000pt;}
._1e{width:15.882667pt;}
._c{width:16.842667pt;}
._d{width:17.824000pt;}
._1b{width:19.637333pt;}
._13{width:21.226667pt;}
._15{width:22.928000pt;}
._e{width:23.978667pt;}
._a{width:25.056000pt;}
._b{width:26.112000pt;}
._1f{width:27.093333pt;}
._16{width:27.989333pt;}
._20{width:29.056000pt;}
._17{width:30.042667pt;}
._19{width:31.616000pt;}
._18{width:33.322667pt;}
._24{width:34.320000pt;}
._23{width:35.466667pt;}
._9{width:37.296000pt;}
._21{width:40.586667pt;}
._22{width:41.776000pt;}
._1c{width:61.333333pt;}
._1a{width:70.736000pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:53.466667pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:258.800000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:3.000000pt;}
.y104{bottom:3.013333pt;}
.y44{bottom:3.666667pt;}
.y51{bottom:15.045333pt;}
.y8d{bottom:16.033333pt;}
.y4c{bottom:16.066667pt;}
.yb8{bottom:16.200000pt;}
.y88{bottom:16.226667pt;}
.y8f{bottom:16.266667pt;}
.y8a{bottom:16.366667pt;}
.ybb{bottom:16.466667pt;}
.y48{bottom:16.533333pt;}
.y50{bottom:27.845333pt;}
.y8c{bottom:31.366667pt;}
.y4b{bottom:31.400000pt;}
.y91{bottom:31.440000pt;}
.yb7{bottom:31.533333pt;}
.y87{bottom:31.560000pt;}
.ybd{bottom:31.600000pt;}
.yc0{bottom:31.700000pt;}
.yba{bottom:31.800000pt;}
.y47{bottom:31.866667pt;}
.y4f{bottom:40.645333pt;}
.y4a{bottom:46.733333pt;}
.y10b{bottom:46.866667pt;}
.y85{bottom:46.893333pt;}
.ybf{bottom:47.033333pt;}
.y46{bottom:47.200000pt;}
.ybe{bottom:48.666667pt;}
.y8b{bottom:50.666667pt;}
.y4e{bottom:53.445333pt;}
.y10a{bottom:62.200000pt;}
.y84{bottom:62.266667pt;}
.y89{bottom:67.000000pt;}
.yff{bottom:67.033333pt;}
.y32{bottom:69.366667pt;}
.y31{bottom:81.366667pt;}
.y108{bottom:82.366667pt;}
.yde{bottom:84.033333pt;}
.y30{bottom:93.700000pt;}
.ydd{bottom:100.033333pt;}
.y107{bottom:103.033333pt;}
.y2f{bottom:106.033333pt;}
.y102{bottom:109.700000pt;}
.ydc{bottom:116.366667pt;}
.y2e{bottom:118.366667pt;}
.y105{bottom:123.700000pt;}
.y101{bottom:125.033333pt;}
.y2d{bottom:130.700000pt;}
.ydb{bottom:132.366667pt;}
.y100{bottom:140.366667pt;}
.y2c{bottom:142.706667pt;}
.y103{bottom:145.693333pt;}
.yda{bottom:148.373333pt;}
.y2b{bottom:155.026667pt;}
.yd9{bottom:164.733333pt;}
.y49{bottom:170.333333pt;}
.yd8{bottom:180.733333pt;}
.yd7{bottom:196.733333pt;}
.yd6{bottom:212.733333pt;}
.yfe{bottom:225.066667pt;}
.y2a{bottom:226.400000pt;}
.yd5{bottom:229.066667pt;}
.yfd{bottom:237.400000pt;}
.y29{bottom:242.400000pt;}
.yd4{bottom:245.066667pt;}
.yfc{bottom:249.400000pt;}
.y90{bottom:255.666667pt;}
.y28{bottom:258.733333pt;}
.yd3{bottom:261.066667pt;}
.yfb{bottom:261.733333pt;}
.y92{bottom:271.773333pt;}
.yfa{bottom:274.106667pt;}
.y27{bottom:274.773333pt;}
.yd2{bottom:277.440000pt;}
.yf9{bottom:286.440000pt;}
.y26{bottom:290.773333pt;}
.yd1{bottom:293.440000pt;}
.yf8{bottom:298.773333pt;}
.y82{bottom:305.773333pt;}
.y25{bottom:306.773333pt;}
.yd0{bottom:309.440000pt;}
.yf7{bottom:310.773333pt;}
.yb5{bottom:320.440000pt;}
.y81{bottom:321.773333pt;}
.y24{bottom:323.106667pt;}
.y97{bottom:323.440000pt;}
.ycf{bottom:325.773333pt;}
.yf6{bottom:335.440000pt;}
.yb4{bottom:336.440000pt;}
.y80{bottom:337.773333pt;}
.y23{bottom:339.106667pt;}
.y96{bottom:339.440000pt;}
.yce{bottom:341.773333pt;}
.y42{bottom:344.440000pt;}
.yf5{bottom:347.773333pt;}
.yb3{bottom:352.440000pt;}
.y7f{bottom:354.106667pt;}
.y22{bottom:355.106667pt;}
.y95{bottom:355.440000pt;}
.ycd{bottom:357.773333pt;}
.y41{bottom:359.773333pt;}
.yf4{bottom:360.106667pt;}
.yb2{bottom:368.773333pt;}
.y7e{bottom:370.106667pt;}
.y21{bottom:371.440000pt;}
.yf3{bottom:372.106667pt;}
.ycc{bottom:373.760000pt;}
.y40{bottom:375.133333pt;}
.yf2{bottom:384.466667pt;}
.yb1{bottom:384.800000pt;}
.y7d{bottom:386.133333pt;}
.y20{bottom:387.466667pt;}
.y94{bottom:387.800000pt;}
.ycb{bottom:390.133333pt;}
.y3f{bottom:390.466667pt;}
.yf1{bottom:396.800000pt;}
.yb0{bottom:400.800000pt;}
.y7c{bottom:402.133333pt;}
.y1f{bottom:403.466667pt;}
.y93{bottom:403.800000pt;}
.y3e{bottom:405.800000pt;}
.yca{bottom:406.133333pt;}
.yf0{bottom:409.133333pt;}
.yb9{bottom:416.666667pt;}
.yaf{bottom:416.800000pt;}
.y7b{bottom:418.466667pt;}
.y1e{bottom:419.800000pt;}
.y3d{bottom:421.133333pt;}
.yc9{bottom:422.133333pt;}
.yae{bottom:433.133333pt;}
.yef{bottom:433.466667pt;}
.y7a{bottom:434.466667pt;}
.y1d{bottom:435.800000pt;}
.y3c{bottom:436.466667pt;}
.yc8{bottom:438.466667pt;}
.y64{bottom:443.466667pt;}
.yee{bottom:445.800000pt;}
.yad{bottom:449.133333pt;}
.y79{bottom:450.466667pt;}
.y1c{bottom:451.800000pt;}
.yc7{bottom:454.466667pt;}
.yed{bottom:458.133333pt;}
.y63{bottom:458.800000pt;}
.yac{bottom:465.133333pt;}
.y78{bottom:466.800000pt;}
.y3b{bottom:467.133333pt;}
.y1b{bottom:467.800000pt;}
.yc6{bottom:470.466667pt;}
.y62{bottom:474.133333pt;}
.yab{bottom:481.506667pt;}
.y3a{bottom:482.506667pt;}
.y77{bottom:482.840000pt;}
.y1a{bottom:484.173333pt;}
.yc5{bottom:486.840000pt;}
.y61{bottom:489.506667pt;}
.yec{bottom:495.506667pt;}
.yaa{bottom:497.506667pt;}
.y39{bottom:497.840000pt;}
.y76{bottom:498.840000pt;}
.y19{bottom:500.173333pt;}
.yc4{bottom:502.840000pt;}
.y60{bottom:504.840000pt;}
.y38{bottom:513.173333pt;}
.ya9{bottom:513.506667pt;}
.y75{bottom:514.840000pt;}
.y18{bottom:516.173333pt;}
.yc3{bottom:518.840000pt;}
.y5f{bottom:520.173333pt;}
.y37{bottom:528.506667pt;}
.ya8{bottom:529.840000pt;}
.y74{bottom:531.173333pt;}
.y17{bottom:532.506667pt;}
.yc2{bottom:534.840000pt;}
.y5e{bottom:535.506667pt;}
.y36{bottom:543.840000pt;}
.ya7{bottom:545.840000pt;}
.y73{bottom:547.173333pt;}
.y16{bottom:548.506667pt;}
.y5d{bottom:550.840000pt;}
.yc1{bottom:554.173333pt;}
.y35{bottom:559.173333pt;}
.ya6{bottom:561.840000pt;}
.y72{bottom:563.173333pt;}
.y15{bottom:564.506667pt;}
.y5c{bottom:566.173333pt;}
.y34{bottom:574.506667pt;}
.y109{bottom:574.666667pt;}
.y43{bottom:576.840000pt;}
.ya5{bottom:577.840000pt;}
.y71{bottom:579.506667pt;}
.y14{bottom:580.506667pt;}
.y5b{bottom:581.506667pt;}
.yb6{bottom:587.666667pt;}
.ya4{bottom:594.200000pt;}
.y33{bottom:595.200000pt;}
.yeb{bottom:596.533333pt;}
.y13{bottom:596.866667pt;}
.y70{bottom:598.866667pt;}
.ya3{bottom:610.200000pt;}
.y5a{bottom:612.200000pt;}
.y12{bottom:612.866667pt;}
.yea{bottom:617.200000pt;}
.y6f{bottom:622.866667pt;}
.y45{bottom:624.000000pt;}
.ya2{bottom:626.200000pt;}
.y59{bottom:627.533333pt;}
.y11{bottom:633.533333pt;}
.y6e{bottom:638.866667pt;}
.ya1{bottom:642.533333pt;}
.y58{bottom:642.866667pt;}
.ye9{bottom:649.533333pt;}
.y6d{bottom:655.200000pt;}
.y57{bottom:658.200000pt;}
.ya0{bottom:658.533333pt;}
.ye8{bottom:665.533333pt;}
.y6c{bottom:671.200000pt;}
.y56{bottom:673.533333pt;}
.y9f{bottom:674.533333pt;}
.y10{bottom:678.533333pt;}
.ye7{bottom:681.533333pt;}
.y6b{bottom:687.200000pt;}
.y55{bottom:688.866667pt;}
.y9e{bottom:690.906667pt;}
.yf{bottom:692.226667pt;}
.ye6{bottom:697.893333pt;}
.y6a{bottom:703.226667pt;}
.y54{bottom:704.226667pt;}
.ye{bottom:706.226667pt;}
.y9d{bottom:710.226667pt;}
.ye5{bottom:713.893333pt;}
.y53{bottom:719.560000pt;}
.yd{bottom:719.893333pt;}
.ye4{bottom:729.893333pt;}
.y9c{bottom:734.226667pt;}
.y52{bottom:734.893333pt;}
.y69{bottom:735.560000pt;}
.y83{bottom:747.333333pt;}
.yc{bottom:749.560000pt;}
.y9b{bottom:750.226667pt;}
.y68{bottom:751.560000pt;}
.ye3{bottom:751.893333pt;}
.yb{bottom:763.893333pt;}
.y9a{bottom:766.226667pt;}
.y67{bottom:767.893333pt;}
.ya{bottom:778.226667pt;}
.y99{bottom:782.560000pt;}
.ye2{bottom:784.226667pt;}
.y66{bottom:787.226667pt;}
.y9{bottom:792.893333pt;}
.y86{bottom:794.226667pt;}
.y98{bottom:798.600000pt;}
.ye1{bottom:800.266667pt;}
.y8{bottom:807.266667pt;}
.y65{bottom:810.600000pt;}
.ybc{bottom:811.000000pt;}
.ye0{bottom:816.266667pt;}
.y7{bottom:821.933333pt;}
.y119{bottom:831.600000pt;}
.ydf{bottom:832.266667pt;}
.y6{bottom:836.600000pt;}
.y8e{bottom:839.000000pt;}
.y118{bottom:843.933333pt;}
.y10c{bottom:845.666667pt;}
.y117{bottom:856.266667pt;}
.y116{bottom:868.266667pt;}
.y115{bottom:880.600000pt;}
.y5{bottom:887.266667pt;}
.y114{bottom:892.933333pt;}
.y113{bottom:905.293333pt;}
.y112{bottom:917.626667pt;}
.y4{bottom:922.293333pt;}
.y111{bottom:929.626667pt;}
.y110{bottom:941.960000pt;}
.y10f{bottom:954.293333pt;}
.y3{bottom:958.960000pt;}
.y10e{bottom:966.626667pt;}
.y10d{bottom:978.960000pt;}
.y4d{bottom:988.800325pt;}
.y2{bottom:999.626667pt;}
.y1{bottom:1015.000000pt;}
.h16{height:20.000000pt;}
.h15{height:20.033333pt;}
.h10{height:29.000000pt;}
.h17{height:29.625000pt;}
.h6{height:30.854167pt;}
.h7{height:31.187500pt;}
.h5{height:33.867188pt;}
.h4{height:34.781250pt;}
.hf{height:35.085938pt;}
.h1{height:38.567708pt;}
.h12{height:38.664128pt;}
.hd{height:38.984375pt;}
.h3{height:42.424479pt;}
.h11{height:44.000000pt;}
.h13{height:44.333333pt;}
.hc{height:44.354167pt;}
.h8{height:48.366667pt;}
.ha{height:59.666667pt;}
.hb{height:67.199675pt;}
.he{height:74.666667pt;}
.h2{height:92.562500pt;}
.h14{height:152.706667pt;}
.h9{height:187.149805pt;}
.h0{height:1056.000000pt;}
.w1{width:45.333333pt;}
.wf{width:49.700000pt;}
.we{width:50.033333pt;}
.wd{width:54.000000pt;}
.w10{width:55.666667pt;}
.wc{width:120.733333pt;}
.w8{width:321.666667pt;}
.w6{width:322.000000pt;}
.w7{width:331.666667pt;}
.w5{width:332.000000pt;}
.w2{width:332.333333pt;}
.w3{width:332.666667pt;}
.wb{width:356.840000pt;}
.w4{width:403.729333pt;}
.wa{width:682.666667pt;}
.w9{width:684.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:2.000000pt;}
.x18{left:4.700000pt;}
.x1a{left:9.700000pt;}
.x28{left:12.333333pt;}
.x2d{left:15.693333pt;}
.x26{left:18.333333pt;}
.x16{left:20.033333pt;}
.x24{left:21.000000pt;}
.x10{left:26.364000pt;}
.x11{left:32.278667pt;}
.x2e{left:45.693333pt;}
.x25{left:47.026667pt;}
.x2c{left:52.026667pt;}
.xc{left:60.366667pt;}
.x2{left:62.366667pt;}
.x1c{left:63.666667pt;}
.x1d{left:66.333333pt;}
.x17{left:67.666667pt;}
.x1b{left:72.366667pt;}
.x8{left:75.700000pt;}
.x15{left:80.033333pt;}
.x2f{left:81.366667pt;}
.x3{left:91.366667pt;}
.x12{left:97.492000pt;}
.x7{left:105.700000pt;}
.x23{left:153.066667pt;}
.x5{left:173.066667pt;}
.x6{left:174.733333pt;}
.xf{left:206.135335pt;}
.x4{left:262.773333pt;}
.x22{left:407.506667pt;}
.xb{left:417.840000pt;}
.x19{left:420.000000pt;}
.xe{left:421.666667pt;}
.x14{left:427.506667pt;}
.xa{left:431.506667pt;}
.x21{left:436.840000pt;}
.x13{left:502.533333pt;}
.x1f{left:531.560000pt;}
.x9{left:536.573333pt;}
.x27{left:540.906667pt;}
.x1e{left:547.560000pt;}
.x20{left:551.573333pt;}
.x29{left:595.573333pt;}
.x2a{left:646.266667pt;}
.x2b{left:696.640000pt;}
.x1{left:747.306667pt;}
}




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