
    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_52b358235fd86c0b5c30ba41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_8fd2e6a48680546dea32edea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_94e7709f1a1421fa02942b9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_587af60f1d737829f80d3445.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_faf48dc1463994232f5bf2b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_446b51c8e03cf0544f9d0bd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f296d2903f7170b4423d4051.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.988281;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_76780d43f3174a2aa1ca46d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_557a2dd8e1f44f7d4264a465.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3d1004fd950282fc0e740793.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944336;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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.044000px;}
.ls3{letter-spacing:-0.948000px;}
.lsd{letter-spacing:-0.858000px;}
.ls1c{letter-spacing:-0.714000px;}
.ls8{letter-spacing:-0.684000px;}
.ls18{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.348600px;}
.lsc{letter-spacing:-0.187200px;}
.lsf{letter-spacing:-0.135600px;}
.ls1a{letter-spacing:-0.123600px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.006480px;}
.ls16{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.118200px;}
.lsb{letter-spacing:0.144000px;}
.lse{letter-spacing:0.216600px;}
.ls22{letter-spacing:0.223800px;}
.ls14{letter-spacing:0.240480px;}
.ls26{letter-spacing:0.283800px;}
.ls1b{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.328320px;}
.ls4{letter-spacing:0.357000px;}
.ls15{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.371520px;}
.ls1e{letter-spacing:0.596160px;}
.ls24{letter-spacing:0.596400px;}
.ls25{letter-spacing:0.732000px;}
.ls19{letter-spacing:0.870000px;}
.ls2{letter-spacing:0.936000px;}
.ls17{letter-spacing:0.960480px;}
.ls23{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.140480px;}
.ls1f{letter-spacing:1.680480px;}
.ls21{letter-spacing:8.586720px;}
.ls13{letter-spacing:41.706720px;}
.ls6{letter-spacing:59.321280px;}
.ls11{letter-spacing:66.412800px;}
.lsa{letter-spacing:845.807520px;}
.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:-66.240000px;}
.ws8{word-spacing:-23.551080px;}
.wse{word-spacing:-19.218480px;}
.ws3{word-spacing:-18.705480px;}
.wsd{word-spacing:-18.547200px;}
.ws6{word-spacing:-18.492480px;}
.wsa{word-spacing:-18.466680px;}
.wsb{word-spacing:-18.371520px;}
.ws2{word-spacing:-18.348480px;}
.ws9{word-spacing:-18.212880px;}
.ws7{word-spacing:-18.161280px;}
.ws5{word-spacing:-17.664480px;}
.ws1{word-spacing:-17.400480px;}
.wsc{word-spacing:-17.304480px;}
.ws15{word-spacing:-17.285520px;}
.ws13{word-spacing:-17.149920px;}
.ws12{word-spacing:-16.841520px;}
.ws16{word-spacing:-16.837320px;}
.ws14{word-spacing:-16.777320px;}
.wsf{word-spacing:-16.566480px;}
.ws10{word-spacing:-16.553520px;}
.ws11{word-spacing:-16.429920px;}
.ws0{word-spacing:0.000000px;}
._1a{margin-left:-2.440320px;}
._1{margin-left:-1.258560px;}
._4{width:1.377120px;}
._10{width:2.914560px;}
._11{width:4.899840px;}
._14{width:6.029760px;}
._c{width:7.617600px;}
._17{width:8.702880px;}
._16{width:10.002240px;}
._b{width:11.724480px;}
._6{width:13.645440px;}
._5{width:14.900160px;}
._f{width:15.905760px;}
._d{width:17.089920px;}
._29{width:18.160560px;}
._1c{width:19.408320px;}
._7{width:21.064320px;}
._e{width:22.190400px;}
._24{width:23.275440px;}
._a{width:24.531360px;}
._9{width:25.879200px;}
._8{width:26.984640px;}
._1f{width:28.137600px;}
._12{width:30.139200px;}
._13{width:31.199040px;}
._1b{width:32.263200px;}
._1e{width:33.419520px;}
._20{width:34.776000px;}
._21{width:36.547680px;}
._28{width:37.659840px;}
._18{width:38.916000px;}
._2{width:40.572000px;}
._3{width:42.084000px;}
._15{width:43.182240px;}
._2a{width:45.374400px;}
._19{width:46.500480px;}
._0{width:66.611520px;}
._2b{width:89.092800px;}
._27{width:120.466560px;}
._22{width:219.355440px;}
._26{width:845.807520px;}
._25{width:1192.623840px;}
._23{width:1369.476960px;}
._1d{width:1380.874560px;}
.fc3{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc2{color:rgb(58,101,152);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.240000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:126.000000px;}
.y2b{bottom:-18.000000px;}
.y28{bottom:-17.820000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:2.160000px;}
.y27{bottom:2.340000px;}
.ydc{bottom:3.420000px;}
.ye3{bottom:3.600000px;}
.ye0{bottom:23.580000px;}
.yea{bottom:23.760000px;}
.ye6{bottom:23.805000px;}
.ydf{bottom:43.920000px;}
.ye9{bottom:44.100000px;}
.ye5{bottom:44.145000px;}
.y25{bottom:57.060000px;}
.ye1{bottom:64.080000px;}
.yde{bottom:64.260000px;}
.ye8{bottom:64.440000px;}
.y5{bottom:66.525004px;}
.y24{bottom:75.600000px;}
.y4{bottom:97.125005px;}
.y8c{bottom:116.820000px;}
.y5c{bottom:124.380000px;}
.y13e{bottom:131.580000px;}
.y8b{bottom:136.980000px;}
.y20{bottom:139.264499px;}
.y10a{bottom:143.280000px;}
.y5b{bottom:144.720000px;}
.y8a{bottom:157.320000px;}
.y13d{bottom:158.940000px;}
.y109{bottom:161.640000px;}
.yb6{bottom:163.800000px;}
.y5a{bottom:164.880000px;}
.y13c{bottom:177.300000px;}
.y89{bottom:177.480000px;}
.y108{bottom:180.000000px;}
.y59{bottom:185.220000px;}
.yb5{bottom:191.700000px;}
.y13b{bottom:195.840000px;}
.y17{bottom:196.933500px;}
.y88{bottom:197.640000px;}
.y107{bottom:198.540000px;}
.y58{bottom:205.380000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yb4{bottom:211.860000px;}
.y13a{bottom:214.200000px;}
.y106{bottom:216.900000px;}
.y87{bottom:218.010000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yda{bottom:223.410000px;}
.y57{bottom:225.570000px;}
.yb3{bottom:232.050000px;}
.y139{bottom:232.590000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y105{bottom:235.290000px;}
.y86{bottom:238.170000px;}
.yd9{bottom:243.750000px;}
.y56{bottom:245.910000px;}
.y138{bottom:250.950000px;}
.yb2{bottom:252.390000px;}
.y104{bottom:255.630000px;}
.y85{bottom:259.410000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.yd8{bottom:263.910000px;}
.y55{bottom:266.070000px;}
.y137{bottom:269.310000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yb1{bottom:272.550000px;}
.y103{bottom:283.530000px;}
.yd7{bottom:284.250000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y54{bottom:286.230000px;}
.y136{bottom:287.670000px;}
.yb0{bottom:292.890000px;}
.y84{bottom:299.190000px;}
.y102{bottom:303.690000px;}
.yd6{bottom:304.410000px;}
.y135{bottom:306.210000px;}
.y53{bottom:306.570000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yaf{bottom:313.050000px;}
.y83{bottom:319.350000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y101{bottom:324.030000px;}
.y134{bottom:324.570000px;}
.yd5{bottom:326.370000px;}
.y52{bottom:326.730000px;}
.yae{bottom:333.210000px;}
.y82{bottom:339.690000px;}
.y133{bottom:342.930000px;}
.y100{bottom:344.190000px;}
.y51{bottom:347.070000px;}
.ye{bottom:348.133500px;}
.yad{bottom:353.550000px;}
.yd4{bottom:354.090000px;}
.y81{bottom:359.850000px;}
.y132{bottom:361.290000px;}
.yff{bottom:364.350000px;}
.y50{bottom:367.230000px;}
.yd3{bottom:374.250000px;}
.yac{bottom:374.610000px;}
.y131{bottom:379.650000px;}
.y80{bottom:380.190000px;}
.yfe{bottom:384.690000px;}
.yd{bottom:386.785499px;}
.y4f{bottom:387.390000px;}
.yd2{bottom:394.590000px;}
.y130{bottom:398.010000px;}
.y7f{bottom:400.350000px;}
.yfd{bottom:404.850000px;}
.y4e{bottom:407.730000px;}
.yc{bottom:408.044999px;}
.yab{bottom:414.390000px;}
.yd1{bottom:414.750000px;}
.y12f{bottom:416.550000px;}
.y7e{bottom:420.510000px;}
.yfc{bottom:425.190000px;}
.y4d{bottom:427.890000px;}
.yaa{bottom:434.730000px;}
.yd0{bottom:434.910000px;}
.y7d{bottom:440.850000px;}
.yfb{bottom:446.970000px;}
.y4c{bottom:448.230000px;}
.y12e{bottom:453.315000px;}
.ya9{bottom:454.935000px;}
.ycf{bottom:455.295000px;}
.y7c{bottom:461.055000px;}
.y4b{bottom:470.055000px;}
.y12d{bottom:471.675000px;}
.yfa{bottom:474.735000px;}
.ya8{bottom:475.275000px;}
.yce{bottom:475.455000px;}
.y7b{bottom:481.215000px;}
.y12c{bottom:490.035000px;}
.yf9{bottom:495.075000px;}
.ya7{bottom:495.435000px;}
.ycd{bottom:495.795000px;}
.y4a{bottom:497.775000px;}
.y7a{bottom:501.555000px;}
.yb{bottom:502.864502px;}
.y12b{bottom:508.575000px;}
.yf8{bottom:515.235000px;}
.ya6{bottom:515.595000px;}
.ycc{bottom:515.955000px;}
.y49{bottom:518.115000px;}
.ya{bottom:520.864502px;}
.y79{bottom:521.715000px;}
.y12a{bottom:526.935000px;}
.yf7{bottom:535.575000px;}
.ya5{bottom:535.935000px;}
.ycb{bottom:536.115000px;}
.y48{bottom:538.275000px;}
.y9{bottom:538.864499px;}
.y78{bottom:542.055000px;}
.y129{bottom:545.295000px;}
.yf6{bottom:555.735000px;}
.ya4{bottom:556.095000px;}
.yca{bottom:556.455000px;}
.y8{bottom:556.864499px;}
.y47{bottom:558.615000px;}
.y77{bottom:562.215000px;}
.y128{bottom:563.655000px;}
.yf5{bottom:575.895000px;}
.ya3{bottom:576.435000px;}
.yc9{bottom:576.615000px;}
.y46{bottom:576.795000px;}
.y127{bottom:582.015000px;}
.y76{bottom:582.375000px;}
.y45{bottom:587.955000px;}
.yf4{bottom:596.235000px;}
.yc8{bottom:596.955000px;}
.ya2{bottom:597.495000px;}
.y126{bottom:600.375000px;}
.y75{bottom:602.715000px;}
.y44{bottom:608.115000px;}
.yf3{bottom:616.395000px;}
.yc7{bottom:617.115000px;}
.y125{bottom:618.915000px;}
.y74{bottom:622.875000px;}
.y43{bottom:628.455000px;}
.yf2{bottom:636.555000px;}
.ya1{bottom:637.275000px;}
.y73{bottom:643.215000px;}
.y7{bottom:645.510000px;}
.y42{bottom:648.615000px;}
.y124{bottom:655.635000px;}
.yf1{bottom:656.895000px;}
.ya0{bottom:657.615000px;}
.y72{bottom:663.375000px;}
.y6{bottom:666.771000px;}
.y41{bottom:668.955000px;}
.y123{bottom:673.995000px;}
.yf0{bottom:677.055000px;}
.y9f{bottom:677.775000px;}
.y143{bottom:678.135000px;}
.y71{bottom:683.565000px;}
.y40{bottom:689.145000px;}
.y122{bottom:692.385000px;}
.yef{bottom:697.425000px;}
.y9e{bottom:698.145000px;}
.y142{bottom:698.325000px;}
.y70{bottom:703.905000px;}
.y3f{bottom:709.305000px;}
.y121{bottom:710.745000px;}
.yee{bottom:717.585000px;}
.y9d{bottom:718.305000px;}
.y141{bottom:718.665000px;}
.y6f{bottom:724.065000px;}
.y120{bottom:729.285000px;}
.y3e{bottom:729.645000px;}
.yed{bottom:737.745000px;}
.y9c{bottom:738.465000px;}
.y140{bottom:738.825000px;}
.yc6{bottom:739.365000px;}
.y6e{bottom:744.405000px;}
.y11f{bottom:747.645000px;}
.y3d{bottom:749.805000px;}
.y3{bottom:752.599495px;}
.yec{bottom:757.725000px;}
.y9b{bottom:758.805000px;}
.y13f{bottom:758.985000px;}
.y6d{bottom:764.565000px;}
.y11e{bottom:766.005000px;}
.y3c{bottom:770.145000px;}
.y9a{bottom:778.965000px;}
.yc5{bottom:779.325000px;}
.yeb{bottom:783.465000px;}
.y11d{bottom:784.365000px;}
.y6c{bottom:785.625000px;}
.y3b{bottom:790.305000px;}
.y99{bottom:799.125000px;}
.yc4{bottom:799.485000px;}
.y11c{bottom:802.725000px;}
.y3a{bottom:810.465000px;}
.y6b{bottom:812.085000px;}
.y98{bottom:819.465000px;}
.yc3{bottom:819.645000px;}
.y11b{bottom:821.085000px;}
.ye7{bottom:827.205000px;}
.y39{bottom:830.805000px;}
.y97{bottom:839.625000px;}
.yc2{bottom:839.985000px;}
.y6a{bottom:841.605000px;}
.y38{bottom:850.965000px;}
.y11a{bottom:857.985000px;}
.y96{bottom:859.965000px;}
.yc1{bottom:860.145000px;}
.y69{bottom:869.325000px;}
.y37{bottom:871.305000px;}
.y119{bottom:876.345000px;}
.y2{bottom:879.369000px;}
.y95{bottom:880.125000px;}
.yc0{bottom:880.485000px;}
.y68{bottom:889.665000px;}
.y36{bottom:891.465000px;}
.y118{bottom:894.705000px;}
.y94{bottom:900.285000px;}
.ybf{bottom:900.645000px;}
.ye4{bottom:909.645000px;}
.y67{bottom:909.825000px;}
.y35{bottom:911.625000px;}
.y117{bottom:913.065000px;}
.y93{bottom:920.670000px;}
.ybe{bottom:920.850000px;}
.y66{bottom:930.210000px;}
.y116{bottom:931.650000px;}
.y34{bottom:932.010000px;}
.y92{bottom:940.830000px;}
.ybd{bottom:941.190000px;}
.y115{bottom:950.010000px;}
.y33{bottom:950.190000px;}
.y65{bottom:950.370000px;}
.ybc{bottom:961.350000px;}
.y91{bottom:962.070000px;}
.y32{bottom:962.970000px;}
.y1{bottom:966.726000px;}
.y114{bottom:968.370000px;}
.y64{bottom:970.530000px;}
.ye2{bottom:971.970000px;}
.ybb{bottom:981.690000px;}
.y113{bottom:986.730000px;}
.y31{bottom:990.870000px;}
.ydd{bottom:993.750000px;}
.y90{bottom:1001.850000px;}
.y112{bottom:1005.090000px;}
.y63{bottom:1011.030000px;}
.y30{bottom:1011.210000px;}
.y8f{bottom:1022.010000px;}
.y111{bottom:1023.450000px;}
.y62{bottom:1031.190000px;}
.y2f{bottom:1033.350000px;}
.y110{bottom:1041.990000px;}
.y8e{bottom:1042.350000px;}
.y61{bottom:1051.530000px;}
.y2e{bottom:1055.130000px;}
.y10f{bottom:1060.350000px;}
.yba{bottom:1062.510000px;}
.y8d{bottom:1064.130000px;}
.y60{bottom:1071.690000px;}
.ydb{bottom:1077.990000px;}
.y10e{bottom:1078.710000px;}
.y2d{bottom:1079.070000px;}
.yb9{bottom:1082.850000px;}
.y5f{bottom:1092.030000px;}
.y10d{bottom:1097.070000px;}
.yb8{bottom:1103.010000px;}
.y5e{bottom:1112.190000px;}
.y10c{bottom:1115.430000px;}
.y2c{bottom:1117.590000px;}
.yb7{bottom:1124.790000px;}
.y5d{bottom:1132.350000px;}
.y10b{bottom:1133.790000px;}
.y23{bottom:1152.720000px;}
.y22{bottom:1172.880000px;}
.y21{bottom:1193.220000px;}
.y29{bottom:1198.620000px;}
.y26{bottom:1200.420000px;}
.hf{height:18.900000px;}
.hd{height:19.080000px;}
.h17{height:20.160000px;}
.h14{height:22.680000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1b{height:40.500000px;}
.h1c{height:44.820000px;}
.h7{height:45.960000px;}
.h1e{height:46.629141px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hb{height:49.680000px;}
.he{height:49.809375px;}
.h15{height:51.685312px;}
.h12{height:54.000000px;}
.h2{height:55.152000px;}
.h11{height:56.179688px;}
.h19{height:60.876000px;}
.h1d{height:61.423863px;}
.h16{height:63.180000px;}
.hc{height:68.084282px;}
.h13{height:72.007031px;}
.h5{height:78.132000px;}
.h18{height:80.820000px;}
.h1a{height:81.000000px;}
.h10{height:94.746094px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.ha{height:1263.060000px;}
.w6{width:234.210000px;}
.w5{width:243.570000px;}
.w7{width:334.335000px;}
.w4{width:359.130000px;}
.w8{width:570.165000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.380000px;}
.x6{left:10.800000px;}
.x8{left:82.440000px;}
.xc{left:99.036000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:111.456000px;}
.xb{left:127.656000px;}
.x9{left:133.416000px;}
.x12{left:138.456000px;}
.x10{left:150.150000px;}
.xa{left:160.410000px;}
.xf{left:166.170000px;}
.x4{left:203.484001px;}
.xe{left:334.875000px;}
.x3{left:454.959000px;}
.x7{left:541.725000px;}
.x5{left:766.770000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.928000pt;}
.ls3{letter-spacing:-0.842667pt;}
.lsd{letter-spacing:-0.762667pt;}
.ls1c{letter-spacing:-0.634667pt;}
.ls8{letter-spacing:-0.608000pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.309867pt;}
.lsc{letter-spacing:-0.166400pt;}
.lsf{letter-spacing:-0.120533pt;}
.ls1a{letter-spacing:-0.109867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.005760pt;}
.ls16{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.105067pt;}
.lsb{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.192533pt;}
.ls22{letter-spacing:0.198933pt;}
.ls14{letter-spacing:0.213760pt;}
.ls26{letter-spacing:0.252267pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.291840pt;}
.ls4{letter-spacing:0.317333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.330240pt;}
.ls1e{letter-spacing:0.529920pt;}
.ls24{letter-spacing:0.530133pt;}
.ls25{letter-spacing:0.650667pt;}
.ls19{letter-spacing:0.773333pt;}
.ls2{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.853760pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.013760pt;}
.ls1f{letter-spacing:1.493760pt;}
.ls21{letter-spacing:7.632640pt;}
.ls13{letter-spacing:37.072640pt;}
.ls6{letter-spacing:52.730027pt;}
.ls11{letter-spacing:59.033600pt;}
.lsa{letter-spacing:751.828907pt;}
.ws4{word-spacing:-58.880000pt;}
.ws8{word-spacing:-20.934293pt;}
.wse{word-spacing:-17.083093pt;}
.ws3{word-spacing:-16.627093pt;}
.wsd{word-spacing:-16.486400pt;}
.ws6{word-spacing:-16.437760pt;}
.wsa{word-spacing:-16.414827pt;}
.wsb{word-spacing:-16.330240pt;}
.ws2{word-spacing:-16.309760pt;}
.ws9{word-spacing:-16.189227pt;}
.ws7{word-spacing:-16.143360pt;}
.ws5{word-spacing:-15.701760pt;}
.ws1{word-spacing:-15.467093pt;}
.wsc{word-spacing:-15.381760pt;}
.ws15{word-spacing:-15.364907pt;}
.ws13{word-spacing:-15.244373pt;}
.ws12{word-spacing:-14.970240pt;}
.ws16{word-spacing:-14.966507pt;}
.ws14{word-spacing:-14.913173pt;}
.wsf{word-spacing:-14.725760pt;}
.ws10{word-spacing:-14.714240pt;}
.ws11{word-spacing:-14.604373pt;}
.ws0{word-spacing:0.000000pt;}
._1a{margin-left:-2.169173pt;}
._1{margin-left:-1.118720pt;}
._4{width:1.224107pt;}
._10{width:2.590720pt;}
._11{width:4.355413pt;}
._14{width:5.359787pt;}
._c{width:6.771200pt;}
._17{width:7.735893pt;}
._16{width:8.890880pt;}
._b{width:10.421760pt;}
._6{width:12.129280pt;}
._5{width:13.244587pt;}
._f{width:14.138453pt;}
._d{width:15.191040pt;}
._29{width:16.142720pt;}
._1c{width:17.251840pt;}
._7{width:18.723840pt;}
._e{width:19.724800pt;}
._24{width:20.689280pt;}
._a{width:21.805653pt;}
._9{width:23.003733pt;}
._8{width:23.986347pt;}
._1f{width:25.011200pt;}
._12{width:26.790400pt;}
._13{width:27.732480pt;}
._1b{width:28.678400pt;}
._1e{width:29.706240pt;}
._20{width:30.912000pt;}
._21{width:32.486827pt;}
._28{width:33.475413pt;}
._18{width:34.592000pt;}
._2{width:36.064000pt;}
._3{width:37.408000pt;}
._15{width:38.384213pt;}
._2a{width:40.332800pt;}
._19{width:41.333760pt;}
._0{width:59.210240pt;}
._2b{width:79.193600pt;}
._27{width:107.081387pt;}
._22{width:194.982613pt;}
._26{width:751.828907pt;}
._25{width:1060.110080pt;}
._23{width:1217.312853pt;}
._1d{width:1227.444053pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:112.000000pt;}
.y2b{bottom:-16.000000pt;}
.y28{bottom:-15.840000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:1.920000pt;}
.y27{bottom:2.080000pt;}
.ydc{bottom:3.040000pt;}
.ye3{bottom:3.200000pt;}
.ye0{bottom:20.960000pt;}
.yea{bottom:21.120000pt;}
.ye6{bottom:21.160000pt;}
.ydf{bottom:39.040000pt;}
.ye9{bottom:39.200000pt;}
.ye5{bottom:39.240000pt;}
.y25{bottom:50.720000pt;}
.ye1{bottom:56.960000pt;}
.yde{bottom:57.120000pt;}
.ye8{bottom:57.280000pt;}
.y5{bottom:59.133337pt;}
.y24{bottom:67.200000pt;}
.y4{bottom:86.333337pt;}
.y8c{bottom:103.840000pt;}
.y5c{bottom:110.560000pt;}
.y13e{bottom:116.960000pt;}
.y8b{bottom:121.760000pt;}
.y20{bottom:123.790666pt;}
.y10a{bottom:127.360000pt;}
.y5b{bottom:128.640000pt;}
.y8a{bottom:139.840000pt;}
.y13d{bottom:141.280000pt;}
.y109{bottom:143.680000pt;}
.yb6{bottom:145.600000pt;}
.y5a{bottom:146.560000pt;}
.y13c{bottom:157.600000pt;}
.y89{bottom:157.760000pt;}
.y108{bottom:160.000000pt;}
.y59{bottom:164.640000pt;}
.yb5{bottom:170.400000pt;}
.y13b{bottom:174.080000pt;}
.y17{bottom:175.052000pt;}
.y88{bottom:175.680000pt;}
.y107{bottom:176.480000pt;}
.y58{bottom:182.560000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yb4{bottom:188.320000pt;}
.y13a{bottom:190.400000pt;}
.y106{bottom:192.800000pt;}
.y87{bottom:193.786667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yda{bottom:198.586667pt;}
.y57{bottom:200.506667pt;}
.yb3{bottom:206.266667pt;}
.y139{bottom:206.746667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y105{bottom:209.146667pt;}
.y86{bottom:211.706667pt;}
.yd9{bottom:216.666667pt;}
.y56{bottom:218.586667pt;}
.y138{bottom:223.066667pt;}
.yb2{bottom:224.346667pt;}
.y104{bottom:227.226667pt;}
.y85{bottom:230.586667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.yd8{bottom:234.586667pt;}
.y55{bottom:236.506667pt;}
.y137{bottom:239.386667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yb1{bottom:242.266667pt;}
.y103{bottom:252.026667pt;}
.yd7{bottom:252.666667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y54{bottom:254.426667pt;}
.y136{bottom:255.706667pt;}
.yb0{bottom:260.346667pt;}
.y84{bottom:265.946667pt;}
.y102{bottom:269.946667pt;}
.yd6{bottom:270.586667pt;}
.y135{bottom:272.186667pt;}
.y53{bottom:272.506667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yaf{bottom:278.266667pt;}
.y83{bottom:283.866667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y101{bottom:288.026667pt;}
.y134{bottom:288.506667pt;}
.yd5{bottom:290.106667pt;}
.y52{bottom:290.426667pt;}
.yae{bottom:296.186667pt;}
.y82{bottom:301.946667pt;}
.y133{bottom:304.826667pt;}
.y100{bottom:305.946667pt;}
.y51{bottom:308.506667pt;}
.ye{bottom:309.452000pt;}
.yad{bottom:314.266667pt;}
.yd4{bottom:314.746667pt;}
.y81{bottom:319.866667pt;}
.y132{bottom:321.146667pt;}
.yff{bottom:323.866667pt;}
.y50{bottom:326.426667pt;}
.yd3{bottom:332.666667pt;}
.yac{bottom:332.986667pt;}
.y131{bottom:337.466667pt;}
.y80{bottom:337.946667pt;}
.yfe{bottom:341.946667pt;}
.yd{bottom:343.809333pt;}
.y4f{bottom:344.346667pt;}
.yd2{bottom:350.746667pt;}
.y130{bottom:353.786667pt;}
.y7f{bottom:355.866667pt;}
.yfd{bottom:359.866667pt;}
.y4e{bottom:362.426667pt;}
.yc{bottom:362.706666pt;}
.yab{bottom:368.346667pt;}
.yd1{bottom:368.666667pt;}
.y12f{bottom:370.266667pt;}
.y7e{bottom:373.786667pt;}
.yfc{bottom:377.946667pt;}
.y4d{bottom:380.346667pt;}
.yaa{bottom:386.426667pt;}
.yd0{bottom:386.586667pt;}
.y7d{bottom:391.866667pt;}
.yfb{bottom:397.306667pt;}
.y4c{bottom:398.426667pt;}
.y12e{bottom:402.946667pt;}
.ya9{bottom:404.386667pt;}
.ycf{bottom:404.706667pt;}
.y7c{bottom:409.826667pt;}
.y4b{bottom:417.826667pt;}
.y12d{bottom:419.266667pt;}
.yfa{bottom:421.986667pt;}
.ya8{bottom:422.466667pt;}
.yce{bottom:422.626667pt;}
.y7b{bottom:427.746667pt;}
.y12c{bottom:435.586667pt;}
.yf9{bottom:440.066667pt;}
.ya7{bottom:440.386667pt;}
.ycd{bottom:440.706667pt;}
.y4a{bottom:442.466667pt;}
.y7a{bottom:445.826667pt;}
.yb{bottom:446.990669pt;}
.y12b{bottom:452.066667pt;}
.yf8{bottom:457.986667pt;}
.ya6{bottom:458.306667pt;}
.ycc{bottom:458.626667pt;}
.y49{bottom:460.546667pt;}
.ya{bottom:462.990669pt;}
.y79{bottom:463.746667pt;}
.y12a{bottom:468.386667pt;}
.yf7{bottom:476.066667pt;}
.ya5{bottom:476.386667pt;}
.ycb{bottom:476.546667pt;}
.y48{bottom:478.466667pt;}
.y9{bottom:478.990666pt;}
.y78{bottom:481.826667pt;}
.y129{bottom:484.706667pt;}
.yf6{bottom:493.986667pt;}
.ya4{bottom:494.306667pt;}
.yca{bottom:494.626667pt;}
.y8{bottom:494.990666pt;}
.y47{bottom:496.546667pt;}
.y77{bottom:499.746667pt;}
.y128{bottom:501.026667pt;}
.yf5{bottom:511.906667pt;}
.ya3{bottom:512.386667pt;}
.yc9{bottom:512.546667pt;}
.y46{bottom:512.706667pt;}
.y127{bottom:517.346667pt;}
.y76{bottom:517.666667pt;}
.y45{bottom:522.626667pt;}
.yf4{bottom:529.986667pt;}
.yc8{bottom:530.626667pt;}
.ya2{bottom:531.106667pt;}
.y126{bottom:533.666667pt;}
.y75{bottom:535.746667pt;}
.y44{bottom:540.546667pt;}
.yf3{bottom:547.906667pt;}
.yc7{bottom:548.546667pt;}
.y125{bottom:550.146667pt;}
.y74{bottom:553.666667pt;}
.y43{bottom:558.626667pt;}
.yf2{bottom:565.826667pt;}
.ya1{bottom:566.466667pt;}
.y73{bottom:571.746667pt;}
.y7{bottom:573.786667pt;}
.y42{bottom:576.546667pt;}
.y124{bottom:582.786667pt;}
.yf1{bottom:583.906667pt;}
.ya0{bottom:584.546667pt;}
.y72{bottom:589.666667pt;}
.y6{bottom:592.685334pt;}
.y41{bottom:594.626667pt;}
.y123{bottom:599.106667pt;}
.yf0{bottom:601.826667pt;}
.y9f{bottom:602.466667pt;}
.y143{bottom:602.786667pt;}
.y71{bottom:607.613333pt;}
.y40{bottom:612.573333pt;}
.y122{bottom:615.453333pt;}
.yef{bottom:619.933333pt;}
.y9e{bottom:620.573333pt;}
.y142{bottom:620.733333pt;}
.y70{bottom:625.693333pt;}
.y3f{bottom:630.493333pt;}
.y121{bottom:631.773333pt;}
.yee{bottom:637.853333pt;}
.y9d{bottom:638.493333pt;}
.y141{bottom:638.813333pt;}
.y6f{bottom:643.613333pt;}
.y120{bottom:648.253333pt;}
.y3e{bottom:648.573333pt;}
.yed{bottom:655.773333pt;}
.y9c{bottom:656.413333pt;}
.y140{bottom:656.733333pt;}
.yc6{bottom:657.213333pt;}
.y6e{bottom:661.693333pt;}
.y11f{bottom:664.573333pt;}
.y3d{bottom:666.493333pt;}
.y3{bottom:668.977329pt;}
.yec{bottom:673.533333pt;}
.y9b{bottom:674.493333pt;}
.y13f{bottom:674.653333pt;}
.y6d{bottom:679.613333pt;}
.y11e{bottom:680.893333pt;}
.y3c{bottom:684.573333pt;}
.y9a{bottom:692.413333pt;}
.yc5{bottom:692.733333pt;}
.yeb{bottom:696.413333pt;}
.y11d{bottom:697.213333pt;}
.y6c{bottom:698.333333pt;}
.y3b{bottom:702.493333pt;}
.y99{bottom:710.333333pt;}
.yc4{bottom:710.653333pt;}
.y11c{bottom:713.533333pt;}
.y3a{bottom:720.413333pt;}
.y6b{bottom:721.853333pt;}
.y98{bottom:728.413333pt;}
.yc3{bottom:728.573333pt;}
.y11b{bottom:729.853333pt;}
.ye7{bottom:735.293333pt;}
.y39{bottom:738.493333pt;}
.y97{bottom:746.333333pt;}
.yc2{bottom:746.653333pt;}
.y6a{bottom:748.093333pt;}
.y38{bottom:756.413333pt;}
.y11a{bottom:762.653333pt;}
.y96{bottom:764.413333pt;}
.yc1{bottom:764.573333pt;}
.y69{bottom:772.733333pt;}
.y37{bottom:774.493333pt;}
.y119{bottom:778.973333pt;}
.y2{bottom:781.661334pt;}
.y95{bottom:782.333333pt;}
.yc0{bottom:782.653333pt;}
.y68{bottom:790.813333pt;}
.y36{bottom:792.413333pt;}
.y118{bottom:795.293333pt;}
.y94{bottom:800.253333pt;}
.ybf{bottom:800.573333pt;}
.ye4{bottom:808.573333pt;}
.y67{bottom:808.733333pt;}
.y35{bottom:810.333333pt;}
.y117{bottom:811.613333pt;}
.y93{bottom:818.373333pt;}
.ybe{bottom:818.533333pt;}
.y66{bottom:826.853333pt;}
.y116{bottom:828.133333pt;}
.y34{bottom:828.453333pt;}
.y92{bottom:836.293333pt;}
.ybd{bottom:836.613333pt;}
.y115{bottom:844.453333pt;}
.y33{bottom:844.613333pt;}
.y65{bottom:844.773333pt;}
.ybc{bottom:854.533333pt;}
.y91{bottom:855.173333pt;}
.y32{bottom:855.973333pt;}
.y1{bottom:859.312000pt;}
.y114{bottom:860.773333pt;}
.y64{bottom:862.693333pt;}
.ye2{bottom:863.973333pt;}
.ybb{bottom:872.613333pt;}
.y113{bottom:877.093333pt;}
.y31{bottom:880.773333pt;}
.ydd{bottom:883.333333pt;}
.y90{bottom:890.533333pt;}
.y112{bottom:893.413333pt;}
.y63{bottom:898.693333pt;}
.y30{bottom:898.853333pt;}
.y8f{bottom:908.453333pt;}
.y111{bottom:909.733333pt;}
.y62{bottom:916.613333pt;}
.y2f{bottom:918.533333pt;}
.y110{bottom:926.213333pt;}
.y8e{bottom:926.533333pt;}
.y61{bottom:934.693333pt;}
.y2e{bottom:937.893333pt;}
.y10f{bottom:942.533333pt;}
.yba{bottom:944.453333pt;}
.y8d{bottom:945.893333pt;}
.y60{bottom:952.613333pt;}
.ydb{bottom:958.213333pt;}
.y10e{bottom:958.853333pt;}
.y2d{bottom:959.173333pt;}
.yb9{bottom:962.533333pt;}
.y5f{bottom:970.693333pt;}
.y10d{bottom:975.173333pt;}
.yb8{bottom:980.453333pt;}
.y5e{bottom:988.613333pt;}
.y10c{bottom:991.493333pt;}
.y2c{bottom:993.413333pt;}
.yb7{bottom:999.813333pt;}
.y5d{bottom:1006.533333pt;}
.y10b{bottom:1007.813333pt;}
.y23{bottom:1024.640000pt;}
.y22{bottom:1042.560000pt;}
.y21{bottom:1060.640000pt;}
.y29{bottom:1065.440000pt;}
.y26{bottom:1067.040000pt;}
.hf{height:16.800000pt;}
.hd{height:16.960000pt;}
.h17{height:17.920000pt;}
.h14{height:20.160000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1b{height:36.000000pt;}
.h1c{height:39.840000pt;}
.h7{height:40.853333pt;}
.h1e{height:41.448125pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hb{height:44.160000pt;}
.he{height:44.275000pt;}
.h15{height:45.942500pt;}
.h12{height:48.000000pt;}
.h2{height:49.024000pt;}
.h11{height:49.937500pt;}
.h19{height:54.112000pt;}
.h1d{height:54.598989pt;}
.h16{height:56.160000pt;}
.hc{height:60.519362pt;}
.h13{height:64.006250pt;}
.h5{height:69.450667pt;}
.h18{height:71.840000pt;}
.h1a{height:72.000000pt;}
.h10{height:84.218750pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.ha{height:1122.720000pt;}
.w6{width:208.186667pt;}
.w5{width:216.506667pt;}
.w7{width:297.186667pt;}
.w4{width:319.226667pt;}
.w8{width:506.813333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.560000pt;}
.x6{left:9.600000pt;}
.x8{left:73.280000pt;}
.xc{left:88.032000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:99.072000pt;}
.xb{left:113.472000pt;}
.x9{left:118.592000pt;}
.x12{left:123.072000pt;}
.x10{left:133.466667pt;}
.xa{left:142.586667pt;}
.xf{left:147.706667pt;}
.x4{left:180.874667pt;}
.xe{left:297.666667pt;}
.x3{left:404.408000pt;}
.x7{left:481.533333pt;}
.x5{left:681.573333pt;}
}




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