
    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_0d2ab5ac7a956b79b867783a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_f122c015810a4f823405acf4.woff')format("woff");}.ff2{font-family:ff2;line-height:0.978027;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_0a5d7fa3fc13db2a0aa48dec.woff')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_9883deaf2462086abd581465.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_cea2f5a05e40dcff1fb7cc55.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_1997f52b26a99a60cdffe783.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_02000495e9cf99627f39c6ce.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_ea34d1582c27d4e1e4946139.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_b5422a1a13a8e4832817324b.woff')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-82.800000px;}
.v8{vertical-align:-81.720000px;}
.v3{vertical-align:-77.040000px;}
.v2{vertical-align:-33.120000px;}
.v7{vertical-align:-27.000000px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.000000px;}
.v1{vertical-align:33.120000px;}
.lsb{letter-spacing:-3.510000px;}
.ls17{letter-spacing:-3.150000px;}
.ls11{letter-spacing:-2.430000px;}
.ls12{letter-spacing:-2.316000px;}
.ls16{letter-spacing:-2.070000px;}
.ls9{letter-spacing:-1.710000px;}
.ls10{letter-spacing:-1.620000px;}
.ls7{letter-spacing:-1.350000px;}
.ls8{letter-spacing:-1.260000px;}
.ls5{letter-spacing:-1.212000px;}
.lsf{letter-spacing:-1.080000px;}
.lse{letter-spacing:-1.068000px;}
.lsc{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.990000px;}
.ls15{letter-spacing:-0.966000px;}
.ls6{letter-spacing:-0.900000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:42.264000px;}
.ls2{letter-spacing:111.600000px;}
.lsd{letter-spacing:865.920000px;}
.ls3{letter-spacing:913.680000px;}
.ls14{letter-spacing:947.520000px;}
.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;}
}
.ws2{word-spacing:-38.880000px;}
.wsa{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.920000px;}
.ws5{word-spacing:-16.650000px;}
.ws0{word-spacing:-16.470000px;}
.ws1{word-spacing:-15.750000px;}
.wsc{word-spacing:-15.570000px;}
.wsb{word-spacing:-15.480000px;}
.ws4{word-spacing:-15.210000px;}
.ws9{word-spacing:-15.030000px;}
.wsd{word-spacing:-14.760000px;}
.ws6{word-spacing:-13.770000px;}
.ws7{word-spacing:-10.902000px;}
.ws3{word-spacing:0.000000px;}
._10{margin-left:-4.698960px;}
._8{margin-left:-3.241680px;}
._2{margin-left:-2.095920px;}
._1{margin-left:-1.062000px;}
._0{width:1.213200px;}
._3{width:2.281320px;}
._7{width:3.413520px;}
._6{width:4.723560px;}
._d{width:6.025680px;}
._9{width:7.597080px;}
._5{width:9.483480px;}
._4{width:11.327040px;}
._a{width:12.917160px;}
._e{width:14.625600px;}
._11{width:15.676320px;}
._f{width:16.745040px;}
._17{width:18.023400px;}
._c{width:19.043520px;}
._b{width:20.059920px;}
._12{width:21.401040px;}
._15{width:23.905680px;}
._13{width:28.241520px;}
._14{width:29.267040px;}
._16{width:31.087440px;}
._19{width:524.385360px;}
._1a{width:551.752560px;}
._1b{width:583.626720px;}
._1c{width:626.544960px;}
._18{width:860.387760px;}
.fc6{color:transparent;}
.fc4{color:rgb(247,150,70);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(149,79,114);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:56.920429px;}
.fsa{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.600000px;}
.y69{bottom:7.290000px;}
.y4{bottom:109.830000px;}
.y35{bottom:173.280000px;}
.y34{bottom:190.470000px;}
.y96{bottom:191.100000px;}
.y102{bottom:192.450000px;}
.y33{bottom:207.750000px;}
.y101{bottom:211.440000px;}
.y32{bottom:225.030000px;}
.y100{bottom:230.430000px;}
.y153{bottom:233.850000px;}
.y31{bottom:242.220000px;}
.yff{bottom:249.330000px;}
.y95{bottom:250.770000px;}
.y152{bottom:252.840000px;}
.y30{bottom:259.500000px;}
.yfe{bottom:268.320000px;}
.y94{bottom:271.470000px;}
.y151{bottom:271.830000px;}
.y2f{bottom:276.780000px;}
.yfd{bottom:287.310000px;}
.y150{bottom:290.730000px;}
.y93{bottom:292.170000px;}
.y2e{bottom:293.970000px;}
.yc2{bottom:294.600000px;}
.yfc{bottom:306.300000px;}
.y14f{bottom:309.720000px;}
.y67{bottom:311.250000px;}
.y92{bottom:312.870000px;}
.y2d{bottom:316.560000px;}
.yc1{bottom:322.050000px;}
.yfb{bottom:325.290000px;}
.y66{bottom:328.530000px;}
.y14e{bottom:328.710000px;}
.y91{bottom:333.570000px;}
.y2c{bottom:334.920000px;}
.yc0{bottom:342.750000px;}
.yfa{bottom:344.190000px;}
.y129{bottom:344.460000px;}
.y65{bottom:345.720000px;}
.ya0{bottom:346.350000px;}
.y14d{bottom:347.700000px;}
.y2b{bottom:348.600000px;}
.y90{bottom:354.270000px;}
.y64{bottom:363.000000px;}
.yf9{bottom:363.180000px;}
.ybf{bottom:363.450000px;}
.y14c{bottom:366.690000px;}
.y8f{bottom:374.970000px;}
.y9e{bottom:375.780000px;}
.y63{bottom:380.190000px;}
.yf8{bottom:382.170000px;}
.y128{bottom:382.440000px;}
.y9f{bottom:382.530000px;}
.yef{bottom:382.710000px;}
.ybe{bottom:384.150000px;}
.y29{bottom:384.600000px;}
.y14b{bottom:385.590000px;}
.y2a{bottom:391.350000px;}
.y8e{bottom:395.580000px;}
.y9d{bottom:396.480000px;}
.y62{bottom:397.470000px;}
.yf7{bottom:401.160000px;}
.y127{bottom:401.340000px;}
.yee{bottom:403.410000px;}
.y14a{bottom:404.580000px;}
.ybd{bottom:404.850000px;}
.y28{bottom:405.300000px;}
.y61{bottom:414.750000px;}
.y8d{bottom:416.280000px;}
.y9c{bottom:417.180000px;}
.yf6{bottom:420.150000px;}
.y126{bottom:420.330000px;}
.y149{bottom:423.570000px;}
.yed{bottom:424.110000px;}
.ybc{bottom:425.550000px;}
.y26{bottom:425.910000px;}
.y60{bottom:431.940000px;}
.y27{bottom:432.660000px;}
.y8c{bottom:436.980000px;}
.y9a{bottom:437.880000px;}
.yf5{bottom:439.140000px;}
.y125{bottom:439.320000px;}
.y148{bottom:442.560000px;}
.y9b{bottom:444.630000px;}
.yec{bottom:444.810000px;}
.ybb{bottom:446.250000px;}
.y25{bottom:446.610000px;}
.y5f{bottom:449.220000px;}
.y8b{bottom:457.680000px;}
.yf4{bottom:458.040000px;}
.y124{bottom:458.310000px;}
.y99{bottom:458.580000px;}
.y147{bottom:461.550000px;}
.yeb{bottom:465.510000px;}
.yd4{bottom:466.500000px;}
.yba{bottom:466.950000px;}
.y5e{bottom:467.130000px;}
.y24{bottom:467.310000px;}
.yf3{bottom:477.330000px;}
.y8a{bottom:478.410000px;}
.y98{bottom:479.310000px;}
.y146{bottom:480.480000px;}
.yd3{bottom:483.720000px;}
.yea{bottom:486.150000px;}
.yb9{bottom:487.680000px;}
.y23{bottom:488.040000px;}
.y123{bottom:496.230000px;}
.y89{bottom:499.110000px;}
.y145{bottom:499.470000px;}
.y5c{bottom:500.010000px;}
.yd2{bottom:501.000000px;}
.y5d{bottom:506.760000px;}
.ye9{bottom:506.850000px;}
.yb8{bottom:508.380000px;}
.y22{bottom:508.740000px;}
.y122{bottom:515.220000px;}
.yd1{bottom:518.280000px;}
.y144{bottom:518.460000px;}
.yf2{bottom:518.730000px;}
.y88{bottom:519.810000px;}
.y5b{bottom:520.710000px;}
.ye8{bottom:527.550000px;}
.yb7{bottom:529.080000px;}
.y21{bottom:529.440000px;}
.y121{bottom:534.210000px;}
.yd0{bottom:535.470000px;}
.y143{bottom:537.450000px;}
.yf1{bottom:539.430000px;}
.y87{bottom:540.510000px;}
.y5a{bottom:541.410000px;}
.yc4{bottom:548.160000px;}
.ye7{bottom:548.250000px;}
.yb6{bottom:549.780000px;}
.y20{bottom:550.140000px;}
.y120{bottom:553.200000px;}
.ycf{bottom:553.380000px;}
.y142{bottom:556.440000px;}
.yf0{bottom:560.130000px;}
.y86{bottom:561.210000px;}
.y58{bottom:562.110000px;}
.y59{bottom:568.860000px;}
.ye6{bottom:568.950000px;}
.yb5{bottom:570.480000px;}
.y1f{bottom:570.840000px;}
.y11f{bottom:572.190000px;}
.ycd{bottom:580.830000px;}
.y85{bottom:582.450000px;}
.y56{bottom:582.810000px;}
.yce{bottom:587.580000px;}
.y57{bottom:589.560000px;}
.ye5{bottom:589.650000px;}
.yb4{bottom:591.180000px;}
.y1e{bottom:591.540000px;}
.y141{bottom:596.400000px;}
.ycc{bottom:601.530000px;}
.y84{bottom:602.610000px;}
.y55{bottom:603.510000px;}
.y11e{bottom:610.080000px;}
.ye4{bottom:610.350000px;}
.yb3{bottom:611.880000px;}
.y1d{bottom:612.240000px;}
.y140{bottom:617.100000px;}
.y83{bottom:622.230000px;}
.y53{bottom:624.210000px;}
.y11d{bottom:629.070000px;}
.y54{bottom:630.960000px;}
.ye3{bottom:631.050000px;}
.yb2{bottom:632.580000px;}
.y1c{bottom:632.940000px;}
.y13f{bottom:637.440000px;}
.y82{bottom:642.930000px;}
.y52{bottom:644.910000px;}
.y11c{bottom:648.060000px;}
.ye1{bottom:651.750000px;}
.yb1{bottom:653.280000px;}
.y1b{bottom:653.640000px;}
.y13e{bottom:656.430000px;}
.ye2{bottom:658.500000px;}
.y81{bottom:663.630000px;}
.y51{bottom:665.610000px;}
.y11b{bottom:667.050000px;}
.ye0{bottom:672.450000px;}
.yb0{bottom:673.980000px;}
.y1a{bottom:674.340000px;}
.y13d{bottom:675.420000px;}
.y80{bottom:684.330000px;}
.y11a{bottom:686.040000px;}
.y50{bottom:686.310000px;}
.ycb{bottom:691.080000px;}
.ydf{bottom:693.150000px;}
.y13c{bottom:694.410000px;}
.yaf{bottom:694.680000px;}
.y19{bottom:695.040000px;}
.y119{bottom:704.940000px;}
.y7f{bottom:705.030000px;}
.y4f{bottom:707.010000px;}
.y13b{bottom:713.400000px;}
.ydd{bottom:713.850000px;}
.yae{bottom:715.380000px;}
.yde{bottom:720.600000px;}
.y118{bottom:723.930000px;}
.y7e{bottom:725.730000px;}
.y4e{bottom:727.710000px;}
.y13a{bottom:732.390000px;}
.ydc{bottom:734.550000px;}
.yad{bottom:736.080000px;}
.y18{bottom:736.440000px;}
.y117{bottom:742.920000px;}
.y7d{bottom:746.430000px;}
.y4d{bottom:748.410000px;}
.y139{bottom:751.290000px;}
.ydb{bottom:755.250000px;}
.yac{bottom:756.780000px;}
.y17{bottom:757.140000px;}
.y116{bottom:761.910000px;}
.y7c{bottom:767.130000px;}
.y4c{bottom:769.110000px;}
.y138{bottom:770.280000px;}
.yca{bottom:773.880000px;}
.yd9{bottom:775.680000px;}
.y97{bottom:775.860000px;}
.yab{bottom:777.480000px;}
.y15{bottom:777.570000px;}
.y115{bottom:780.900000px;}
.yda{bottom:782.430000px;}
.y16{bottom:784.320000px;}
.y7b{bottom:787.830000px;}
.y137{bottom:789.270000px;}
.y4b{bottom:789.810000px;}
.yc9{bottom:794.580000px;}
.yd8{bottom:794.670000px;}
.y14{bottom:796.560000px;}
.yaa{bottom:798.180000px;}
.y114{bottom:799.890000px;}
.y136{bottom:808.260000px;}
.y7a{bottom:808.530000px;}
.y4a{bottom:810.510000px;}
.yd7{bottom:813.660000px;}
.y13{bottom:815.550000px;}
.y113{bottom:818.790000px;}
.ya9{bottom:818.880000px;}
.y135{bottom:827.250000px;}
.y79{bottom:829.230000px;}
.y49{bottom:831.120000px;}
.yd6{bottom:832.650000px;}
.y12{bottom:834.540000px;}
.y112{bottom:837.780000px;}
.ya7{bottom:839.310000px;}
.ya8{bottom:846.060000px;}
.y134{bottom:846.150000px;}
.y78{bottom:849.930000px;}
.y47{bottom:851.820000px;}
.y11{bottom:853.440000px;}
.y111{bottom:856.770000px;}
.ya6{bottom:858.300000px;}
.y48{bottom:858.570000px;}
.y133{bottom:865.140000px;}
.y77{bottom:870.630000px;}
.y10{bottom:872.430000px;}
.y46{bottom:872.520000px;}
.y110{bottom:875.760000px;}
.ya5{bottom:877.200000px;}
.yd5{bottom:879.270000px;}
.y132{bottom:884.130000px;}
.y76{bottom:891.330000px;}
.yf{bottom:891.420000px;}
.y45{bottom:893.220000px;}
.y10f{bottom:894.750000px;}
.ya4{bottom:896.190000px;}
.ye{bottom:910.410000px;}
.y75{bottom:912.030000px;}
.y10e{bottom:913.650000px;}
.y44{bottom:913.920000px;}
.ya3{bottom:915.180000px;}
.y131{bottom:924.090000px;}
.yd{bottom:929.400000px;}
.y10d{bottom:932.640000px;}
.y74{bottom:932.730000px;}
.ya2{bottom:934.170000px;}
.y43{bottom:934.620000px;}
.yc8{bottom:939.480000px;}
.yc{bottom:948.300000px;}
.y10c{bottom:951.630000px;}
.y73{bottom:953.430000px;}
.y42{bottom:955.320000px;}
.yc7{bottom:960.180000px;}
.y130{bottom:965.220000px;}
.yb{bottom:967.290000px;}
.y10b{bottom:970.620000px;}
.y72{bottom:974.130000px;}
.y41{bottom:976.020000px;}
.y12f{bottom:984.210000px;}
.y10a{bottom:989.610000px;}
.y71{bottom:994.830000px;}
.y3f{bottom:996.720000px;}
.y12e{bottom:1003.110000px;}
.y40{bottom:1003.470000px;}
.ya{bottom:1005.540000px;}
.y109{bottom:1008.510000px;}
.y70{bottom:1015.560000px;}
.y3e{bottom:1017.450000px;}
.y12d{bottom:1022.130000px;}
.y8{bottom:1026.990000px;}
.y108{bottom:1027.530000px;}
.y9{bottom:1034.460000px;}
.y6f{bottom:1036.260000px;}
.y3d{bottom:1038.150000px;}
.y12c{bottom:1041.120000px;}
.y107{bottom:1046.520000px;}
.y7{bottom:1052.010000px;}
.y6e{bottom:1056.960000px;}
.y3c{bottom:1058.850000px;}
.y12b{bottom:1060.110000px;}
.y106{bottom:1065.510000px;}
.y6{bottom:1074.060000px;}
.y6d{bottom:1077.660000px;}
.y12a{bottom:1079.100000px;}
.y3b{bottom:1079.550000px;}
.yc6{bottom:1084.410000px;}
.y105{bottom:1084.500000px;}
.y6c{bottom:1098.360000px;}
.y3a{bottom:1100.250000px;}
.y5{bottom:1101.600000px;}
.y104{bottom:1103.490000px;}
.yc5{bottom:1105.110000px;}
.yc3{bottom:1107.000000px;}
.y6b{bottom:1119.060000px;}
.y39{bottom:1120.950000px;}
.y103{bottom:1122.390000px;}
.ya1{bottom:1125.810000px;}
.y3{bottom:1127.610000px;}
.y6a{bottom:1139.490000px;}
.y38{bottom:1141.650000px;}
.y2{bottom:1145.880000px;}
.y68{bottom:1154.790000px;}
.y36{bottom:1158.480000px;}
.y1{bottom:1162.080000px;}
.h11{height:18.990000px;}
.h12{height:22.680000px;}
.hf{height:38.124492px;}
.h8{height:39.521899px;}
.hc{height:41.317910px;}
.h16{height:41.338477px;}
.he{height:46.991602px;}
.hb{height:48.155449px;}
.h3{height:54.421875px;}
.h10{height:59.004492px;}
.h15{height:59.060391px;}
.hd{height:64.546875px;}
.ha{height:64.625449px;}
.h4{height:64.657617px;}
.h13{height:65.526152px;}
.h2{height:66.394687px;}
.h6{height:70.664062px;}
.h9{height:72.562500px;}
.h14{height:73.991602px;}
.h17{height:74.004654px;}
.h7{height:82.282676px;}
.h5{height:96.870938px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:103.890000px;}
.w7{width:127.530000px;}
.w6{width:454.710000px;}
.w5{width:486.570000px;}
.w3{width:893.159973px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x30{left:28.350000px;}
.x18{left:39.690000px;}
.x16{left:140.760000px;}
.x19{left:148.859987px;}
.x2e{left:162.030000px;}
.x3{left:170.129987px;}
.x4{left:172.829987px;}
.x1b{left:180.749987px;}
.x1{left:182.099987px;}
.x47{left:187.679973px;}
.x2c{left:188.849987px;}
.x2{left:192.539987px;}
.x2d{left:196.409987px;}
.x48{left:199.739987px;}
.xd{left:202.529987px;}
.x15{left:209.639987px;}
.x4b{left:217.649987px;}
.x6d{left:223.319987px;}
.x56{left:231.869973px;}
.xf{left:233.939987px;}
.x5{left:244.289987px;}
.x8{left:249.059987px;}
.x1e{left:263.729973px;}
.x1f{left:269.759987px;}
.x63{left:276.239987px;}
.x57{left:282.629973px;}
.x58{left:294.689987px;}
.x5b{left:300.359987px;}
.x33{left:324.839987px;}
.x59{left:346.799973px;}
.x32{left:351.119987px;}
.x60{left:353.099973px;}
.x5a{left:358.859987px;}
.x26{left:362.189973px;}
.x6{left:364.439987px;}
.x36{left:370.649973px;}
.x27{left:374.249987px;}
.x37{left:382.709987px;}
.x14{left:386.129987px;}
.x2a{left:393.239973px;}
.x12{left:402.419973px;}
.x1c{left:403.859973px;}
.x2b{left:405.299987px;}
.x13{left:408.449987px;}
.x1d{left:409.889987px;}
.x6c{left:412.319987px;}
.x69{left:421.499973px;}
.x35{left:423.569987px;}
.x1a{left:427.709987px;}
.x6a{left:433.559987px;}
.x6b{left:435.989987px;}
.x20{left:442.289973px;}
.x46{left:444.809987px;}
.x4c{left:446.609987px;}
.x21{left:448.319987px;}
.x67{left:450.119973px;}
.x7{left:457.229987px;}
.x9{left:459.749987px;}
.x68{left:462.179987px;}
.xa{left:466.229987px;}
.x31{left:467.849987px;}
.x52{left:494.489973px;}
.x53{left:506.549987px;}
.x38{left:511.439973px;}
.x22{left:513.149973px;}
.x23{left:519.179987px;}
.x39{left:523.499987px;}
.x4d{left:530.879987px;}
.x4e{left:534.929973px;}
.x4f{left:546.989987px;}
.x50{left:551.039973px;}
.x51{left:563.099987px;}
.x49{left:566.339973px;}
.x5c{left:573.629973px;}
.x4a{left:576.959987px;}
.x5d{left:585.689987px;}
.x24{left:589.289973px;}
.x61{left:598.379973px;}
.x62{left:610.439987px;}
.x25{left:613.409987px;}
.x2f{left:616.740000px;}
.x3a{left:618.809973px;}
.x3b{left:630.869987px;}
.x3c{left:636.809973px;}
.x28{left:641.309973px;}
.x3d{left:648.869987px;}
.x29{left:653.369987px;}
.x3e{left:654.719973px;}
.xb{left:658.319987px;}
.xe{left:663.629987px;}
.xc{left:665.429987px;}
.x3f{left:666.779987px;}
.x54{left:669.749987px;}
.x40{left:672.719973px;}
.x41{left:684.779987px;}
.x10{left:692.069973px;}
.x42{left:693.599973px;}
.x11{left:698.099987px;}
.x64{left:703.859987px;}
.x43{left:705.659987px;}
.x65{left:707.549973px;}
.x44{left:711.059973px;}
.x66{left:718.169987px;}
.x45{left:723.119987px;}
.x5e{left:727.439973px;}
.x55{left:732.299973px;}
.x5f{left:739.499987px;}
.x34{left:744.359987px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v8{vertical-align:-72.640000pt;}
.v3{vertical-align:-68.480000pt;}
.v2{vertical-align:-29.440000pt;}
.v7{vertical-align:-24.000000pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsb{letter-spacing:-3.120000pt;}
.ls17{letter-spacing:-2.800000pt;}
.ls11{letter-spacing:-2.160000pt;}
.ls12{letter-spacing:-2.058667pt;}
.ls16{letter-spacing:-1.840000pt;}
.ls9{letter-spacing:-1.520000pt;}
.ls10{letter-spacing:-1.440000pt;}
.ls7{letter-spacing:-1.200000pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls5{letter-spacing:-1.077333pt;}
.lsf{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.949333pt;}
.lsc{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.880000pt;}
.ls15{letter-spacing:-0.858667pt;}
.ls6{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:37.568000pt;}
.ls2{letter-spacing:99.200000pt;}
.lsd{letter-spacing:769.706667pt;}
.ls3{letter-spacing:812.160000pt;}
.ls14{letter-spacing:842.240000pt;}
.ws2{word-spacing:-34.560000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.040000pt;}
.ws5{word-spacing:-14.800000pt;}
.ws0{word-spacing:-14.640000pt;}
.ws1{word-spacing:-14.000000pt;}
.wsc{word-spacing:-13.840000pt;}
.wsb{word-spacing:-13.760000pt;}
.ws4{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.120000pt;}
.ws6{word-spacing:-12.240000pt;}
.ws7{word-spacing:-9.690667pt;}
.ws3{word-spacing:0.000000pt;}
._10{margin-left:-4.176853pt;}
._8{margin-left:-2.881493pt;}
._2{margin-left:-1.863040pt;}
._1{margin-left:-0.944000pt;}
._0{width:1.078400pt;}
._3{width:2.027840pt;}
._7{width:3.034240pt;}
._6{width:4.198720pt;}
._d{width:5.356160pt;}
._9{width:6.752960pt;}
._5{width:8.429760pt;}
._4{width:10.068480pt;}
._a{width:11.481920pt;}
._e{width:13.000533pt;}
._11{width:13.934507pt;}
._f{width:14.884480pt;}
._17{width:16.020800pt;}
._c{width:16.927573pt;}
._b{width:17.831040pt;}
._12{width:19.023147pt;}
._15{width:21.249493pt;}
._13{width:25.103573pt;}
._14{width:26.015147pt;}
._16{width:27.633280pt;}
._19{width:466.120320pt;}
._1a{width:490.446720pt;}
._1b{width:518.779307pt;}
._1c{width:556.928853pt;}
._18{width:764.789120pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.595937pt;}
.fsa{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.200000pt;}
.y69{bottom:6.480000pt;}
.y4{bottom:97.626667pt;}
.y35{bottom:154.026667pt;}
.y34{bottom:169.306667pt;}
.y96{bottom:169.866667pt;}
.y102{bottom:171.066667pt;}
.y33{bottom:184.666667pt;}
.y101{bottom:187.946667pt;}
.y32{bottom:200.026667pt;}
.y100{bottom:204.826667pt;}
.y153{bottom:207.866667pt;}
.y31{bottom:215.306667pt;}
.yff{bottom:221.626667pt;}
.y95{bottom:222.906667pt;}
.y152{bottom:224.746667pt;}
.y30{bottom:230.666667pt;}
.yfe{bottom:238.506667pt;}
.y94{bottom:241.306667pt;}
.y151{bottom:241.626667pt;}
.y2f{bottom:246.026667pt;}
.yfd{bottom:255.386667pt;}
.y150{bottom:258.426667pt;}
.y93{bottom:259.706667pt;}
.y2e{bottom:261.306667pt;}
.yc2{bottom:261.866667pt;}
.yfc{bottom:272.266667pt;}
.y14f{bottom:275.306667pt;}
.y67{bottom:276.666667pt;}
.y92{bottom:278.106667pt;}
.y2d{bottom:281.386667pt;}
.yc1{bottom:286.266667pt;}
.yfb{bottom:289.146667pt;}
.y66{bottom:292.026667pt;}
.y14e{bottom:292.186667pt;}
.y91{bottom:296.506667pt;}
.y2c{bottom:297.706667pt;}
.yc0{bottom:304.666667pt;}
.yfa{bottom:305.946667pt;}
.y129{bottom:306.186667pt;}
.y65{bottom:307.306667pt;}
.ya0{bottom:307.866667pt;}
.y14d{bottom:309.066667pt;}
.y2b{bottom:309.866667pt;}
.y90{bottom:314.906667pt;}
.y64{bottom:322.666667pt;}
.yf9{bottom:322.826667pt;}
.ybf{bottom:323.066667pt;}
.y14c{bottom:325.946667pt;}
.y8f{bottom:333.306667pt;}
.y9e{bottom:334.026667pt;}
.y63{bottom:337.946667pt;}
.yf8{bottom:339.706667pt;}
.y128{bottom:339.946667pt;}
.y9f{bottom:340.026667pt;}
.yef{bottom:340.186667pt;}
.ybe{bottom:341.466667pt;}
.y29{bottom:341.866667pt;}
.y14b{bottom:342.746667pt;}
.y2a{bottom:347.866667pt;}
.y8e{bottom:351.626667pt;}
.y9d{bottom:352.426667pt;}
.y62{bottom:353.306667pt;}
.yf7{bottom:356.586667pt;}
.y127{bottom:356.746667pt;}
.yee{bottom:358.586667pt;}
.y14a{bottom:359.626667pt;}
.ybd{bottom:359.866667pt;}
.y28{bottom:360.266667pt;}
.y61{bottom:368.666667pt;}
.y8d{bottom:370.026667pt;}
.y9c{bottom:370.826667pt;}
.yf6{bottom:373.466667pt;}
.y126{bottom:373.626667pt;}
.y149{bottom:376.506667pt;}
.yed{bottom:376.986667pt;}
.ybc{bottom:378.266667pt;}
.y26{bottom:378.586667pt;}
.y60{bottom:383.946667pt;}
.y27{bottom:384.586667pt;}
.y8c{bottom:388.426667pt;}
.y9a{bottom:389.226667pt;}
.yf5{bottom:390.346667pt;}
.y125{bottom:390.506667pt;}
.y148{bottom:393.386667pt;}
.y9b{bottom:395.226667pt;}
.yec{bottom:395.386667pt;}
.ybb{bottom:396.666667pt;}
.y25{bottom:396.986667pt;}
.y5f{bottom:399.306667pt;}
.y8b{bottom:406.826667pt;}
.yf4{bottom:407.146667pt;}
.y124{bottom:407.386667pt;}
.y99{bottom:407.626667pt;}
.y147{bottom:410.266667pt;}
.yeb{bottom:413.786667pt;}
.yd4{bottom:414.666667pt;}
.yba{bottom:415.066667pt;}
.y5e{bottom:415.226667pt;}
.y24{bottom:415.386667pt;}
.yf3{bottom:424.293333pt;}
.y8a{bottom:425.253333pt;}
.y98{bottom:426.053333pt;}
.y146{bottom:427.093333pt;}
.yd3{bottom:429.973333pt;}
.yea{bottom:432.133333pt;}
.yb9{bottom:433.493333pt;}
.y23{bottom:433.813333pt;}
.y123{bottom:441.093333pt;}
.y89{bottom:443.653333pt;}
.y145{bottom:443.973333pt;}
.y5c{bottom:444.453333pt;}
.yd2{bottom:445.333333pt;}
.y5d{bottom:450.453333pt;}
.ye9{bottom:450.533333pt;}
.yb8{bottom:451.893333pt;}
.y22{bottom:452.213333pt;}
.y122{bottom:457.973333pt;}
.yd1{bottom:460.693333pt;}
.y144{bottom:460.853333pt;}
.yf2{bottom:461.093333pt;}
.y88{bottom:462.053333pt;}
.y5b{bottom:462.853333pt;}
.ye8{bottom:468.933333pt;}
.yb7{bottom:470.293333pt;}
.y21{bottom:470.613333pt;}
.y121{bottom:474.853333pt;}
.yd0{bottom:475.973333pt;}
.y143{bottom:477.733333pt;}
.yf1{bottom:479.493333pt;}
.y87{bottom:480.453333pt;}
.y5a{bottom:481.253333pt;}
.yc4{bottom:487.253333pt;}
.ye7{bottom:487.333333pt;}
.yb6{bottom:488.693333pt;}
.y20{bottom:489.013333pt;}
.y120{bottom:491.733333pt;}
.ycf{bottom:491.893333pt;}
.y142{bottom:494.613333pt;}
.yf0{bottom:497.893333pt;}
.y86{bottom:498.853333pt;}
.y58{bottom:499.653333pt;}
.y59{bottom:505.653333pt;}
.ye6{bottom:505.733333pt;}
.yb5{bottom:507.093333pt;}
.y1f{bottom:507.413333pt;}
.y11f{bottom:508.613333pt;}
.ycd{bottom:516.293333pt;}
.y85{bottom:517.733333pt;}
.y56{bottom:518.053333pt;}
.yce{bottom:522.293333pt;}
.y57{bottom:524.053333pt;}
.ye5{bottom:524.133333pt;}
.yb4{bottom:525.493333pt;}
.y1e{bottom:525.813333pt;}
.y141{bottom:530.133333pt;}
.ycc{bottom:534.693333pt;}
.y84{bottom:535.653333pt;}
.y55{bottom:536.453333pt;}
.y11e{bottom:542.293333pt;}
.ye4{bottom:542.533333pt;}
.yb3{bottom:543.893333pt;}
.y1d{bottom:544.213333pt;}
.y140{bottom:548.533333pt;}
.y83{bottom:553.093333pt;}
.y53{bottom:554.853333pt;}
.y11d{bottom:559.173333pt;}
.y54{bottom:560.853333pt;}
.ye3{bottom:560.933333pt;}
.yb2{bottom:562.293333pt;}
.y1c{bottom:562.613333pt;}
.y13f{bottom:566.613333pt;}
.y82{bottom:571.493333pt;}
.y52{bottom:573.253333pt;}
.y11c{bottom:576.053333pt;}
.ye1{bottom:579.333333pt;}
.yb1{bottom:580.693333pt;}
.y1b{bottom:581.013333pt;}
.y13e{bottom:583.493333pt;}
.ye2{bottom:585.333333pt;}
.y81{bottom:589.893333pt;}
.y51{bottom:591.653333pt;}
.y11b{bottom:592.933333pt;}
.ye0{bottom:597.733333pt;}
.yb0{bottom:599.093333pt;}
.y1a{bottom:599.413333pt;}
.y13d{bottom:600.373333pt;}
.y80{bottom:608.293333pt;}
.y11a{bottom:609.813333pt;}
.y50{bottom:610.053333pt;}
.ycb{bottom:614.293333pt;}
.ydf{bottom:616.133333pt;}
.y13c{bottom:617.253333pt;}
.yaf{bottom:617.493333pt;}
.y19{bottom:617.813333pt;}
.y119{bottom:626.613333pt;}
.y7f{bottom:626.693333pt;}
.y4f{bottom:628.453333pt;}
.y13b{bottom:634.133333pt;}
.ydd{bottom:634.533333pt;}
.yae{bottom:635.893333pt;}
.yde{bottom:640.533333pt;}
.y118{bottom:643.493333pt;}
.y7e{bottom:645.093333pt;}
.y4e{bottom:646.853333pt;}
.y13a{bottom:651.013333pt;}
.ydc{bottom:652.933333pt;}
.yad{bottom:654.293333pt;}
.y18{bottom:654.613333pt;}
.y117{bottom:660.373333pt;}
.y7d{bottom:663.493333pt;}
.y4d{bottom:665.253333pt;}
.y139{bottom:667.813333pt;}
.ydb{bottom:671.333333pt;}
.yac{bottom:672.693333pt;}
.y17{bottom:673.013333pt;}
.y116{bottom:677.253333pt;}
.y7c{bottom:681.893333pt;}
.y4c{bottom:683.653333pt;}
.y138{bottom:684.693333pt;}
.yca{bottom:687.893333pt;}
.yd9{bottom:689.493333pt;}
.y97{bottom:689.653333pt;}
.yab{bottom:691.093333pt;}
.y15{bottom:691.173333pt;}
.y115{bottom:694.133333pt;}
.yda{bottom:695.493333pt;}
.y16{bottom:697.173333pt;}
.y7b{bottom:700.293333pt;}
.y137{bottom:701.573333pt;}
.y4b{bottom:702.053333pt;}
.yc9{bottom:706.293333pt;}
.yd8{bottom:706.373333pt;}
.y14{bottom:708.053333pt;}
.yaa{bottom:709.493333pt;}
.y114{bottom:711.013333pt;}
.y136{bottom:718.453333pt;}
.y7a{bottom:718.693333pt;}
.y4a{bottom:720.453333pt;}
.yd7{bottom:723.253333pt;}
.y13{bottom:724.933333pt;}
.y113{bottom:727.813333pt;}
.ya9{bottom:727.893333pt;}
.y135{bottom:735.333333pt;}
.y79{bottom:737.093333pt;}
.y49{bottom:738.773333pt;}
.yd6{bottom:740.133333pt;}
.y12{bottom:741.813333pt;}
.y112{bottom:744.693333pt;}
.ya7{bottom:746.053333pt;}
.ya8{bottom:752.053333pt;}
.y134{bottom:752.133333pt;}
.y78{bottom:755.493333pt;}
.y47{bottom:757.173333pt;}
.y11{bottom:758.613333pt;}
.y111{bottom:761.573333pt;}
.ya6{bottom:762.933333pt;}
.y48{bottom:763.173333pt;}
.y133{bottom:769.013333pt;}
.y77{bottom:773.893333pt;}
.y10{bottom:775.493333pt;}
.y46{bottom:775.573333pt;}
.y110{bottom:778.453333pt;}
.ya5{bottom:779.733333pt;}
.yd5{bottom:781.573333pt;}
.y132{bottom:785.893333pt;}
.y76{bottom:792.293333pt;}
.yf{bottom:792.373333pt;}
.y45{bottom:793.973333pt;}
.y10f{bottom:795.333333pt;}
.ya4{bottom:796.613333pt;}
.ye{bottom:809.253333pt;}
.y75{bottom:810.693333pt;}
.y10e{bottom:812.133333pt;}
.y44{bottom:812.373333pt;}
.ya3{bottom:813.493333pt;}
.y131{bottom:821.413333pt;}
.yd{bottom:826.133333pt;}
.y10d{bottom:829.013333pt;}
.y74{bottom:829.093333pt;}
.ya2{bottom:830.373333pt;}
.y43{bottom:830.773333pt;}
.yc8{bottom:835.093333pt;}
.yc{bottom:842.933333pt;}
.y10c{bottom:845.893333pt;}
.y73{bottom:847.493333pt;}
.y42{bottom:849.173333pt;}
.yc7{bottom:853.493333pt;}
.y130{bottom:857.973333pt;}
.yb{bottom:859.813333pt;}
.y10b{bottom:862.773333pt;}
.y72{bottom:865.893333pt;}
.y41{bottom:867.573333pt;}
.y12f{bottom:874.853333pt;}
.y10a{bottom:879.653333pt;}
.y71{bottom:884.293333pt;}
.y3f{bottom:885.973333pt;}
.y12e{bottom:891.653333pt;}
.y40{bottom:891.973333pt;}
.ya{bottom:893.813333pt;}
.y109{bottom:896.453333pt;}
.y70{bottom:902.720000pt;}
.y3e{bottom:904.400000pt;}
.y12d{bottom:908.560000pt;}
.y8{bottom:912.880000pt;}
.y108{bottom:913.360000pt;}
.y9{bottom:919.520000pt;}
.y6f{bottom:921.120000pt;}
.y3d{bottom:922.800000pt;}
.y12c{bottom:925.440000pt;}
.y107{bottom:930.240000pt;}
.y7{bottom:935.120000pt;}
.y6e{bottom:939.520000pt;}
.y3c{bottom:941.200000pt;}
.y12b{bottom:942.320000pt;}
.y106{bottom:947.120000pt;}
.y6{bottom:954.720000pt;}
.y6d{bottom:957.920000pt;}
.y12a{bottom:959.200000pt;}
.y3b{bottom:959.600000pt;}
.yc6{bottom:963.920000pt;}
.y105{bottom:964.000000pt;}
.y6c{bottom:976.320000pt;}
.y3a{bottom:978.000000pt;}
.y5{bottom:979.200000pt;}
.y104{bottom:980.880000pt;}
.yc5{bottom:982.320000pt;}
.yc3{bottom:984.000000pt;}
.y6b{bottom:994.720000pt;}
.y39{bottom:996.400000pt;}
.y103{bottom:997.680000pt;}
.ya1{bottom:1000.720000pt;}
.y3{bottom:1002.320000pt;}
.y6a{bottom:1012.880000pt;}
.y38{bottom:1014.800000pt;}
.y2{bottom:1018.560000pt;}
.y68{bottom:1026.480000pt;}
.y36{bottom:1029.760000pt;}
.y1{bottom:1032.960000pt;}
.h11{height:16.880000pt;}
.h12{height:20.160000pt;}
.hf{height:33.888438pt;}
.h8{height:35.130577pt;}
.hc{height:36.727031pt;}
.h16{height:36.745312pt;}
.he{height:41.770312pt;}
.hb{height:42.804844pt;}
.h3{height:48.375000pt;}
.h10{height:52.448437pt;}
.h15{height:52.498125pt;}
.hd{height:57.375000pt;}
.ha{height:57.444844pt;}
.h4{height:57.473437pt;}
.h13{height:58.245469pt;}
.h2{height:59.017500pt;}
.h6{height:62.812500pt;}
.h9{height:64.500000pt;}
.h14{height:65.770312pt;}
.h17{height:65.781915pt;}
.h7{height:73.140156pt;}
.h5{height:86.107500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:92.346667pt;}
.w7{width:113.360000pt;}
.w6{width:404.186667pt;}
.w5{width:432.506667pt;}
.w3{width:793.919976pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x30{left:25.200000pt;}
.x18{left:35.280000pt;}
.x16{left:125.120000pt;}
.x19{left:132.319988pt;}
.x2e{left:144.026667pt;}
.x3{left:151.226655pt;}
.x4{left:153.626655pt;}
.x1b{left:160.666655pt;}
.x1{left:161.866655pt;}
.x47{left:166.826643pt;}
.x2c{left:167.866655pt;}
.x2{left:171.146655pt;}
.x2d{left:174.586655pt;}
.x48{left:177.546655pt;}
.xd{left:180.026655pt;}
.x15{left:186.346655pt;}
.x4b{left:193.466655pt;}
.x6d{left:198.506655pt;}
.x56{left:206.106643pt;}
.xf{left:207.946655pt;}
.x5{left:217.146655pt;}
.x8{left:221.386655pt;}
.x1e{left:234.426643pt;}
.x1f{left:239.786655pt;}
.x63{left:245.546655pt;}
.x57{left:251.226643pt;}
.x58{left:261.946655pt;}
.x5b{left:266.986655pt;}
.x33{left:288.746655pt;}
.x59{left:308.266643pt;}
.x32{left:312.106655pt;}
.x60{left:313.866643pt;}
.x5a{left:318.986655pt;}
.x26{left:321.946643pt;}
.x6{left:323.946655pt;}
.x36{left:329.466643pt;}
.x27{left:332.666655pt;}
.x37{left:340.186655pt;}
.x14{left:343.226655pt;}
.x2a{left:349.546643pt;}
.x12{left:357.706643pt;}
.x1c{left:358.986643pt;}
.x2b{left:360.266655pt;}
.x13{left:363.066655pt;}
.x1d{left:364.346655pt;}
.x6c{left:366.506655pt;}
.x69{left:374.666643pt;}
.x35{left:376.506655pt;}
.x1a{left:380.186655pt;}
.x6a{left:385.386655pt;}
.x6b{left:387.546655pt;}
.x20{left:393.146643pt;}
.x46{left:395.386655pt;}
.x4c{left:396.986655pt;}
.x21{left:398.506655pt;}
.x67{left:400.106643pt;}
.x7{left:406.426655pt;}
.x9{left:408.666655pt;}
.x68{left:410.826655pt;}
.xa{left:414.426655pt;}
.x31{left:415.866655pt;}
.x52{left:439.546643pt;}
.x53{left:450.266655pt;}
.x38{left:454.613310pt;}
.x22{left:456.133310pt;}
.x23{left:461.493322pt;}
.x39{left:465.333322pt;}
.x4d{left:471.893322pt;}
.x4e{left:475.493310pt;}
.x4f{left:486.213322pt;}
.x50{left:489.813310pt;}
.x51{left:500.533322pt;}
.x49{left:503.413310pt;}
.x5c{left:509.893310pt;}
.x4a{left:512.853322pt;}
.x5d{left:520.613322pt;}
.x24{left:523.813310pt;}
.x61{left:531.893310pt;}
.x62{left:542.613322pt;}
.x25{left:545.253322pt;}
.x2f{left:548.213333pt;}
.x3a{left:550.053310pt;}
.x3b{left:560.773322pt;}
.x3c{left:566.053310pt;}
.x28{left:570.053310pt;}
.x3d{left:576.773322pt;}
.x29{left:580.773322pt;}
.x3e{left:581.973310pt;}
.xb{left:585.173322pt;}
.xe{left:589.893322pt;}
.xc{left:591.493322pt;}
.x3f{left:592.693322pt;}
.x54{left:595.333322pt;}
.x40{left:597.973310pt;}
.x41{left:608.693322pt;}
.x10{left:615.173310pt;}
.x42{left:616.533310pt;}
.x11{left:620.533322pt;}
.x64{left:625.653322pt;}
.x43{left:627.253322pt;}
.x65{left:628.933310pt;}
.x44{left:632.053310pt;}
.x66{left:638.373322pt;}
.x45{left:642.773322pt;}
.x5e{left:646.613310pt;}
.x55{left:650.933310pt;}
.x5f{left:657.333322pt;}
.x34{left:661.653322pt;}
}




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