
    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_cd70bd8d8600c173d95fac91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3a57dfec3c7c3a0397d56a38.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9a9dc728c219a9d71d1887e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_d12b81d315b337575d64de64.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_a0e8dc7a4cfb0a32a752841f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52949f9b3f25e74d604cf40f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_797b77fbf99b670f5228e13d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e8e4445e2069c2a9992c3a3a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_4cb3879f3a21915c8480674d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fa4cec0c5a143c1f4da655b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.929688;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_b81fee8ba755d29a85df40f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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:ffd;src:url('chunks/assets/font_b5635612b84ababeef9994d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929688;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-96.456000px;}
.v3{vertical-align:-82.776000px;}
.v2{vertical-align:-69.840000px;}
.v5{vertical-align:-29.520000px;}
.v6{vertical-align:-23.880000px;}
.v8{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.600000px;}
.v4{vertical-align:23.760000px;}
.v9{vertical-align:33.120000px;}
.ls1c{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.017280px;}
.ls17{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.702000px;}
.ls18{letter-spacing:0.711360px;}
.ls12{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.864000px;}
.ls1e{letter-spacing:2.880000px;}
.lsa{letter-spacing:4.500000px;}
.ls22{letter-spacing:6.480000px;}
.ls20{letter-spacing:8.640000px;}
.lsb{letter-spacing:8.820000px;}
.ls21{letter-spacing:10.080000px;}
.ls24{letter-spacing:10.800000px;}
.lsc{letter-spacing:11.520000px;}
.ls19{letter-spacing:12.240000px;}
.ls1f{letter-spacing:13.680000px;}
.ls1d{letter-spacing:14.400000px;}
.ls23{letter-spacing:20.880000px;}
.ls8{letter-spacing:33.984000px;}
.lsf{letter-spacing:62.640000px;}
.ls6{letter-spacing:63.187200px;}
.ls4{letter-spacing:90.000000px;}
.ls3{letter-spacing:104.940000px;}
.ls10{letter-spacing:1070.820000px;}
.ls0{letter-spacing:1146.041280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-59.813280px;}
.wse{word-spacing:-59.760000px;}
.ws1{word-spacing:-23.418720px;}
.ws18{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.216000px;}
.ws16{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.ws17{word-spacing:-17.712000px;}
.wsf{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.416000px;}
.ws0{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.wsd{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.673600px;}
.ws9{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.836200px;}
.ws12{word-spacing:-11.520000px;}
.ws14{word-spacing:-11.510640px;}
.ws13{word-spacing:-10.808640px;}
.ws11{word-spacing:-10.800000px;}
.ws15{word-spacing:-10.791360px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-15.588000px;}
._1d{margin-left:-13.560000px;}
._1e{margin-left:-12.518880px;}
._20{margin-left:-7.524000px;}
._1b{margin-left:-5.076000px;}
._e{margin-left:-3.852000px;}
._c{margin-left:-2.304000px;}
._1{margin-left:-1.063680px;}
._0{width:1.075680px;}
._5{width:2.304000px;}
._6{width:3.536640px;}
._13{width:4.671360px;}
._3{width:5.688000px;}
._4{width:7.344000px;}
._7{width:9.000000px;}
._8{width:10.012320px;}
._15{width:11.304000px;}
._17{width:12.307680px;}
._16{width:13.540320px;}
._14{width:15.100320px;}
._2{width:16.291680px;}
._12{width:19.368000px;}
._11{width:20.520000px;}
._b{width:22.104000px;}
._9{width:23.472000px;}
._a{width:24.784320px;}
._d{width:26.139360px;}
._10{width:27.228960px;}
._f{width:28.243680px;}
._1c{width:29.844000px;}
._21{width:30.960000px;}
._18{width:32.760000px;}
._25{width:33.823680px;}
._19{width:35.280000px;}
._1a{width:36.364320px;}
._28{width:39.456000px;}
._29{width:40.692000px;}
._24{width:42.336000px;}
._30{width:57.528000px;}
._22{width:66.312000px;}
._23{width:67.608000px;}
._26{width:72.288000px;}
._27{width:73.512000px;}
._2d{width:126.000000px;}
._2c{width:127.008000px;}
._2e{width:128.520000px;}
._2f{width:129.924000px;}
._2a{width:186.768000px;}
._2b{width:187.868640px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(132,0,16);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:12.240000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf1{bottom:4.110000px;}
.yef{bottom:4.290000px;}
.y100{bottom:9.360000px;}
.y102{bottom:10.800000px;}
.y106{bottom:11.340000px;}
.y104{bottom:11.385000px;}
.yff{bottom:15.660000px;}
.y3{bottom:57.060000px;}
.y2{bottom:74.376000px;}
.y136{bottom:110.736000px;}
.y1e{bottom:110.916000px;}
.y151{bottom:113.076000px;}
.y40{bottom:114.336000px;}
.y10c{bottom:115.776000px;}
.y11a{bottom:117.936000px;}
.yc8{bottom:122.256000px;}
.yb6{bottom:132.696000px;}
.y1ab{bottom:134.856000px;}
.y61{bottom:135.036000px;}
.y68{bottom:139.176000px;}
.y135{bottom:141.696000px;}
.y150{bottom:144.036000px;}
.y10b{bottom:147.816000px;}
.y94{bottom:148.176000px;}
.y119{bottom:149.976000px;}
.y3f{bottom:155.730000px;}
.ye1{bottom:156.450000px;}
.y1d{bottom:156.810000px;}
.y1aa{bottom:157.170000px;}
.y1c8{bottom:158.790000px;}
.y60{bottom:160.050000px;}
.yb5{bottom:163.650000px;}
.y67{bottom:164.010000px;}
.y177{bottom:165.090000px;}
.y168{bottom:166.170000px;}
.y93{bottom:171.210000px;}
.y18a{bottom:172.470000px;}
.y134{bottom:172.830000px;}
.yc7{bottom:174.090000px;}
.y14f{bottom:175.170000px;}
.y3e{bottom:176.430000px;}
.y10a{bottom:178.950000px;}
.y5f{bottom:179.490000px;}
.y1c{bottom:181.110000px;}
.ye0{bottom:187.590000px;}
.y66{bottom:188.850000px;}
.y92{bottom:190.110000px;}
.yb4{bottom:194.790000px;}
.y3d{bottom:197.130000px;}
.y167{bottom:197.310000px;}
.y1c7{bottom:203.430000px;}
.y133{bottom:203.790000px;}
.y5e{bottom:204.330000px;}
.y1b{bottom:205.230000px;}
.y91{bottom:209.190000px;}
.y109{bottom:209.910000px;}
.y118{bottom:212.070000px;}
.y65{bottom:213.690000px;}
.y1a9{bottom:213.870000px;}
.y176{bottom:217.110000px;}
.y3c{bottom:217.830000px;}
.ydf{bottom:218.550000px;}
.yb3{bottom:225.750000px;}
.y1c6{bottom:225.930000px;}
.y14e{bottom:227.370000px;}
.y90{bottom:228.090000px;}
.y166{bottom:228.270000px;}
.y189{bottom:228.990000px;}
.y5d{bottom:229.170000px;}
.y1a{bottom:229.350000px;}
.y132{bottom:234.750000px;}
.y1a8{bottom:236.190000px;}
.y3b{bottom:238.530000px;}
.y108{bottom:241.050000px;}
.y117{bottom:243.210000px;}
.y8f{bottom:246.990000px;}
.yde{bottom:249.690000px;}
.y188{bottom:251.490000px;}
.y19{bottom:253.470000px;}
.y5c{bottom:254.010000px;}
.yb2{bottom:256.890000px;}
.y14d{bottom:258.510000px;}
.y165{bottom:259.410000px;}
.y1c5{bottom:260.130000px;}
.y3a{bottom:263.370000px;}
.y131{bottom:265.890000px;}
.y8e{bottom:266.070000px;}
.y107{bottom:268.950000px;}
.y175{bottom:269.130000px;}
.y187{bottom:273.810000px;}
.y18{bottom:277.590000px;}
.y5b{bottom:278.850000px;}
.ydd{bottom:280.650000px;}
.y1a7{bottom:280.830000px;}
.y116{bottom:281.730000px;}
.y1c4{bottom:282.450000px;}
.y8d{bottom:284.970000px;}
.yc6{bottom:287.850000px;}
.y39{bottom:288.210000px;}
.y14c{bottom:289.470000px;}
.y164{bottom:290.370000px;}
.yb1{bottom:293.790000px;}
.y105{bottom:294.150000px;}
.y130{bottom:297.210000px;}
.y174{bottom:300.270000px;}
.y1a6{bottom:303.150000px;}
.y5a{bottom:303.690000px;}
.y8c{bottom:304.050000px;}
.y17{bottom:304.410000px;}
.y1c3{bottom:304.770000px;}
.y186{bottom:308.010000px;}
.ydc{bottom:311.790000px;}
.y38{bottom:313.050000px;}
.yb0{bottom:318.990000px;}
.y115{bottom:320.250000px;}
.y14b{bottom:320.790000px;}
.y163{bottom:321.510000px;}
.y8b{bottom:322.950000px;}
.y12f{bottom:328.170000px;}
.y103{bottom:328.350000px;}
.y59{bottom:328.530000px;}
.y185{bottom:330.330000px;}
.y173{bottom:331.230000px;}
.y16{bottom:337.395000px;}
.y1a5{bottom:337.575000px;}
.y37{bottom:337.935000px;}
.y1c2{bottom:339.195000px;}
.y8a{bottom:342.075000px;}
.ydb{bottom:342.795000px;}
.yaf{bottom:349.995000px;}
.y114{bottom:351.435000px;}
.y14a{bottom:351.795000px;}
.y162{bottom:352.515000px;}
.y58{bottom:353.415000px;}
.y12e{bottom:359.355000px;}
.y1a4{bottom:359.895000px;}
.y89{bottom:360.975000px;}
.y1c1{bottom:361.515000px;}
.y101{bottom:362.415000px;}
.y36{bottom:362.775000px;}
.y184{bottom:364.755000px;}
.y15{bottom:370.515000px;}
.yda{bottom:373.935000px;}
.y57{bottom:378.255000px;}
.y88{bottom:379.875000px;}
.yae{bottom:381.135000px;}
.y1a3{bottom:382.215000px;}
.y149{bottom:382.935000px;}
.y161{bottom:383.655000px;}
.y1c0{bottom:383.835000px;}
.y183{bottom:387.075000px;}
.y35{bottom:387.615000px;}
.y172{bottom:393.375000px;}
.yfe{bottom:395.535000px;}
.y87{bottom:398.955000px;}
.y12d{bottom:402.375000px;}
.y56{bottom:403.095000px;}
.y14{bottom:403.455000px;}
.y1a2{bottom:404.535000px;}
.yd9{bottom:404.895000px;}
.y1bf{bottom:406.335000px;}
.y182{bottom:411.015000px;}
.yad{bottom:412.095000px;}
.y34{bottom:412.455000px;}
.y148{bottom:413.895000px;}
.y160{bottom:414.615000px;}
.y86{bottom:417.855000px;}
.y171{bottom:424.515000px;}
.y55{bottom:427.935000px;}
.y181{bottom:431.715000px;}
.y12c{bottom:433.335000px;}
.yd8{bottom:435.855000px;}
.y13{bottom:436.395000px;}
.y85{bottom:436.935000px;}
.y33{bottom:437.295000px;}
.y1a1{bottom:438.915000px;}
.yfd{bottom:440.175000px;}
.y1be{bottom:440.535000px;}
.yc5{bottom:443.235000px;}
.y147{bottom:445.035000px;}
.y15f{bottom:445.755000px;}
.yac{bottom:450.075000px;}
.y54{bottom:452.775000px;}
.y170{bottom:455.475000px;}
.y84{bottom:455.835000px;}
.y1a0{bottom:461.235000px;}
.y32{bottom:462.135000px;}
.y1bd{bottom:462.855000px;}
.y12b{bottom:464.475000px;}
.yd7{bottom:466.995000px;}
.yab{bottom:474.195000px;}
.y83{bottom:474.735000px;}
.y146{bottom:475.995000px;}
.y15e{bottom:476.715000px;}
.y53{bottom:477.615000px;}
.yfc{bottom:478.695000px;}
.y12{bottom:483.555000px;}
.y1bc{bottom:485.175000px;}
.y31{bottom:486.975000px;}
.y82{bottom:493.815000px;}
.yc4{bottom:494.895000px;}
.y12a{bottom:495.435000px;}
.yd6{bottom:497.955000px;}
.y52{bottom:502.455000px;}
.yaa{bottom:505.335000px;}
.y16f{bottom:507.495000px;}
.y1bb{bottom:507.675000px;}
.yfb{bottom:509.835000px;}
.y30{bottom:511.815000px;}
.y81{bottom:512.715000px;}
.y19f{bottom:517.935000px;}
.y11{bottom:520.995000px;}
.y51{bottom:527.295000px;}
.y145{bottom:528.015000px;}
.y15d{bottom:528.735000px;}
.yd5{bottom:529.095000px;}
.y129{bottom:529.815000px;}
.y80{bottom:531.795000px;}
.ya9{bottom:536.295000px;}
.y2f{bottom:536.655000px;}
.y180{bottom:538.455000px;}
.y16e{bottom:538.635000px;}
.y19e{bottom:540.255000px;}
.yfa{bottom:540.795000px;}
.y1ba{bottom:541.875000px;}
.yed{bottom:549.795000px;}
.y128{bottom:550.515000px;}
.y7f{bottom:550.695000px;}
.y50{bottom:552.135000px;}
.y144{bottom:559.155000px;}
.y15c{bottom:559.875000px;}
.yd4{bottom:560.055000px;}
.y2e{bottom:561.495000px;}
.y1b9{bottom:564.195000px;}
.ya8{bottom:567.435000px;}
.y10{bottom:568.155000px;}
.y7e{bottom:569.595000px;}
.y19d{bottom:574.635000px;}
.y4f{bottom:576.975000px;}
.yf9{bottom:579.495000px;}
.yec{bottom:580.755000px;}
.y127{bottom:582.915000px;}
.y2d{bottom:586.335000px;}
.y1b8{bottom:586.695000px;}
.y7d{bottom:588.675000px;}
.y143{bottom:590.115000px;}
.y15b{bottom:590.835000px;}
.y19c{bottom:596.955000px;}
.ya7{bottom:598.395000px;}
.y17f{bottom:600.555000px;}
.y4e{bottom:601.815000px;}
.y7c{bottom:607.605000px;}
.y2c{bottom:611.205000px;}
.yd3{bottom:611.925000px;}
.yf{bottom:615.525000px;}
.yf8{bottom:618.045000px;}
.y1b7{bottom:620.925000px;}
.y142{bottom:621.285000px;}
.y16d{bottom:621.645000px;}
.y15a{bottom:622.005000px;}
.y126{bottom:622.545000px;}
.y4d{bottom:626.685000px;}
.ya6{bottom:629.565000px;}
.y19b{bottom:631.365000px;}
.yd2{bottom:632.625000px;}
.y2b{bottom:636.045000px;}
.yeb{bottom:642.885000px;}
.y1b6{bottom:643.245000px;}
.y7b{bottom:645.585000px;}
.yf7{bottom:649.005000px;}
.y4c{bottom:651.525000px;}
.y141{bottom:652.245000px;}
.y16c{bottom:652.785000px;}
.y159{bottom:652.965000px;}
.yd1{bottom:653.325000px;}
.y125{bottom:653.685000px;}
.ya5{bottom:660.525000px;}
.y2a{bottom:660.885000px;}
.ye{bottom:662.685000px;}
.yea{bottom:663.585000px;}
.y7a{bottom:664.485000px;}
.y1b5{bottom:665.565000px;}
.yd0{bottom:674.025000px;}
.y4b{bottom:676.365000px;}
.yf6{bottom:680.145000px;}
.y140{bottom:683.385000px;}
.y79{bottom:683.565000px;}
.y16b{bottom:683.745000px;}
.y158{bottom:684.105000px;}
.ye9{bottom:684.285000px;}
.y124{bottom:684.645000px;}
.y29{bottom:685.725000px;}
.y19a{bottom:688.065000px;}
.ya4{bottom:691.665000px;}
.y1b4{bottom:699.945000px;}
.y4a{bottom:701.205000px;}
.y78{bottom:702.465000px;}
.ye8{bottom:704.985000px;}
.yd{bottom:709.665000px;}
.y199{bottom:710.385000px;}
.y28{bottom:710.565000px;}
.yf5{bottom:711.105000px;}
.y13f{bottom:714.345000px;}
.y16a{bottom:714.885000px;}
.y157{bottom:715.065000px;}
.ycf{bottom:715.425000px;}
.y113{bottom:721.185000px;}
.y77{bottom:721.905000px;}
.y1b3{bottom:722.265000px;}
.ya3{bottom:722.625000px;}
.ye7{bottom:725.685000px;}
.y49{bottom:726.045000px;}
.yce{bottom:736.125000px;}
.yf4{bottom:739.365000px;}
.y76{bottom:742.605000px;}
.yc3{bottom:743.325000px;}
.y198{bottom:744.585000px;}
.y13e{bottom:745.485000px;}
.y169{bottom:745.845000px;}
.y156{bottom:746.205000px;}
.ye6{bottom:746.385000px;}
.y48{bottom:750.885000px;}
.yc{bottom:751.965000px;}
.y27{bottom:752.865000px;}
.y123{bottom:754.305000px;}
.y64{bottom:756.105000px;}
.ycd{bottom:756.825000px;}
.y112{bottom:759.705000px;}
.ya2{bottom:760.605000px;}
.yc2{bottom:764.025000px;}
.ye5{bottom:767.085000px;}
.yf3{bottom:767.625000px;}
.y26{bottom:771.405000px;}
.y13d{bottom:776.445000px;}
.y17e{bottom:776.805000px;}
.y155{bottom:777.165000px;}
.y1b2{bottom:778.965000px;}
.y1cd{bottom:779.325000px;}
.y75{bottom:781.125000px;}
.y122{bottom:782.385000px;}
.y47{bottom:783.465000px;}
.ya1{bottom:784.725000px;}
.yc1{bottom:787.785000px;}
.y63{bottom:788.685000px;}
.y197{bottom:789.405000px;}
.y111{bottom:790.665000px;}
.y25{bottom:793.725000px;}
.yb{bottom:794.445000px;}
.ycc{bottom:798.225000px;}
.yf2{bottom:798.585000px;}
.y1b1{bottom:801.285000px;}
.y13c{bottom:807.585000px;}
.y17d{bottom:807.945000px;}
.y154{bottom:808.305000px;}
.ye4{bottom:808.485000px;}
.y74{bottom:809.385000px;}
.y121{bottom:810.645000px;}
.y1cc{bottom:813.345000px;}
.ya0{bottom:815.865000px;}
.y62{bottom:817.485000px;}
.y24{bottom:818.205000px;}
.ycb{bottom:818.925000px;}
.y110{bottom:821.805000px;}
.y46{bottom:821.985000px;}
.y196{bottom:823.605000px;}
.yc0{bottom:829.185000px;}
.ya{bottom:830.805000px;}
.y1b0{bottom:835.665000px;}
.y73{bottom:837.645000px;}
.y13b{bottom:838.725000px;}
.y120{bottom:838.905000px;}
.y153{bottom:839.265000px;}
.yca{bottom:839.625000px;}
.y195{bottom:845.925000px;}
.y9f{bottom:846.825000px;}
.ye3{bottom:849.885000px;}
.y10f{bottom:852.765000px;}
.y1af{bottom:857.985000px;}
.ybf{bottom:860.325000px;}
.y23{bottom:860.865000px;}
.y45{bottom:864.645000px;}
.y72{bottom:865.725000px;}
.y11f{bottom:866.985000px;}
.y9{bottom:867.345000px;}
.y13a{bottom:869.865000px;}
.y152{bottom:870.405000px;}
.ye2{bottom:870.630000px;}
.y9e{bottom:878.010000px;}
.y194{bottom:880.350000px;}
.y10e{bottom:883.950000px;}
.y17c{bottom:891.150000px;}
.ybe{bottom:891.330000px;}
.y1ae{bottom:892.410000px;}
.y71{bottom:894.030000px;}
.y11e{bottom:895.290000px;}
.y8{bottom:900.510000px;}
.y193{bottom:902.670000px;}
.y22{bottom:903.570000px;}
.y44{bottom:907.530000px;}
.y9d{bottom:908.970000px;}
.y1ad{bottom:914.730000px;}
.y10d{bottom:914.910000px;}
.yf0{bottom:920.160000px;}
.y139{bottom:922.110000px;}
.ybd{bottom:922.470000px;}
.yee{bottom:922.680000px;}
.y70{bottom:923.370000px;}
.y11d{bottom:923.550000px;}
.y192{bottom:924.990000px;}
.y7{bottom:933.450000px;}
.y1ac{bottom:937.050000px;}
.y9c{bottom:940.110000px;}
.y21{bottom:945.150000px;}
.y43{bottom:949.110000px;}
.y6f{bottom:951.630000px;}
.y138{bottom:953.250000px;}
.ybc{bottom:953.430000px;}
.y191{bottom:959.370000px;}
.y6{bottom:966.390000px;}
.y9b{bottom:971.070000px;}
.y1cb{bottom:971.430000px;}
.y20{bottom:978.090000px;}
.y11c{bottom:979.890000px;}
.y6e{bottom:980.070000px;}
.y190{bottom:981.690000px;}
.y42{bottom:982.050000px;}
.y17b{bottom:984.210000px;}
.y137{bottom:984.390000px;}
.ybb{bottom:984.570000px;}
.y5{bottom:991.410000px;}
.y1ca{bottom:993.750000px;}
.y9a{bottom:1002.030000px;}
.y11b{bottom:1008.150000px;}
.y6d{bottom:1008.510000px;}
.y1f{bottom:1011.210000px;}
.y41{bottom:1012.650000px;}
.yba{bottom:1014.090000px;}
.y17a{bottom:1015.350000px;}
.yc9{bottom:1015.530000px;}
.y18f{bottom:1016.070000px;}
.y99{bottom:1033.170000px;}
.y6c{bottom:1035.690000px;}
.y18e{bottom:1038.390000px;}
.y179{bottom:1046.310000px;}
.yb9{bottom:1046.670000px;}
.y18d{bottom:1060.710000px;}
.y6b{bottom:1063.950000px;}
.y98{bottom:1064.130000px;}
.y1c9{bottom:1072.770000px;}
.y178{bottom:1077.270000px;}
.yb8{bottom:1077.630000px;}
.y18c{bottom:1095.090000px;}
.y97{bottom:1095.270000px;}
.y6a{bottom:1102.470000px;}
.yb7{bottom:1108.770000px;}
.y18b{bottom:1117.410000px;}
.y96{bottom:1119.030000px;}
.y4{bottom:1131.810000px;}
.y69{bottom:1134.150000px;}
.y95{bottom:1139.760000px;}
.y1{bottom:1247.400000px;}
.hb{height:12.012891px;}
.ha{height:12.532852px;}
.h17{height:20.700000px;}
.h1a{height:29.700000px;}
.h1b{height:32.400000px;}
.h1c{height:33.336000px;}
.h1d{height:33.480000px;}
.he{height:47.344922px;}
.h14{height:48.616875px;}
.h18{height:48.806719px;}
.h19{height:51.446284px;}
.h1e{height:53.050781px;}
.h10{height:57.636562px;}
.h3{height:58.651172px;}
.h8{height:61.189805px;}
.h4{height:62.327813px;}
.h15{height:64.546875px;}
.h2{height:69.086250px;}
.h16{height:70.628906px;}
.hc{height:70.664062px;}
.h9{height:71.613281px;}
.h12{height:72.376875px;}
.hd{height:72.562500px;}
.h5{height:73.722656px;}
.h13{height:74.704922px;}
.h11{height:75.093750px;}
.h7{height:87.859687px;}
.hf{height:96.508125px;}
.h6{height:110.583984px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.240000px;}
.w4{width:49.716000px;}
.w5{width:92.700000px;}
.w8{width:92.736000px;}
.w9{width:93.240000px;}
.wa{width:97.920000px;}
.wb{width:98.316000px;}
.wc{width:125.280000px;}
.w6{width:278.715000px;}
.w7{width:321.510000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:8.460000px;}
.x2c{left:9.720000px;}
.x2f{left:11.340000px;}
.x1b{left:13.140000px;}
.x2e{left:14.436000px;}
.x2d{left:15.480000px;}
.x24{left:17.820000px;}
.x26{left:20.700000px;}
.x1e{left:24.876000px;}
.x25{left:29.520000px;}
.x27{left:32.040000px;}
.x2a{left:36.900000px;}
.x20{left:46.614000px;}
.x1a{left:68.040000px;}
.x1{left:74.519987px;}
.x22{left:103.545000px;}
.x1f{left:124.236000px;}
.x23{left:138.420000px;}
.x4{left:159.509987px;}
.x15{left:165.269987px;}
.x8{left:166.349987px;}
.x10{left:170.309987px;}
.x17{left:176.069987px;}
.x18{left:179.669987px;}
.x13{left:186.509987px;}
.x11{left:192.629987px;}
.x5{left:199.829987px;}
.x14{left:214.049987px;}
.x9{left:216.389987px;}
.x21{left:217.830000px;}
.xd{left:219.629987px;}
.x16{left:236.009987px;}
.xe{left:242.309987px;}
.x19{left:262.289987px;}
.xc{left:294.374987px;}
.xb{left:305.354987px;}
.x3{left:310.574987px;}
.xa{left:395.894987px;}
.x12{left:397.874987px;}
.xf{left:403.634987px;}
.x6{left:451.874987px;}
.x1c{left:497.340000px;}
.x28{left:595.185000px;}
.x29{left:693.510000px;}
.x1d{left:729.329987px;}
.x2{left:736.709987px;}
.x7{left:744.269987px;}
@media print{
.v1{vertical-align:-85.738667pt;}
.v3{vertical-align:-73.578667pt;}
.v2{vertical-align:-62.080000pt;}
.v5{vertical-align:-26.240000pt;}
.v6{vertical-align:-21.226667pt;}
.v8{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.200000pt;}
.v4{vertical-align:21.120000pt;}
.v9{vertical-align:29.440000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.015360pt;}
.ls17{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.624000pt;}
.ls18{letter-spacing:0.632320pt;}
.ls12{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:2.560000pt;}
.lsa{letter-spacing:4.000000pt;}
.ls22{letter-spacing:5.760000pt;}
.ls20{letter-spacing:7.680000pt;}
.lsb{letter-spacing:7.840000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls24{letter-spacing:9.600000pt;}
.lsc{letter-spacing:10.240000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls1f{letter-spacing:12.160000pt;}
.ls1d{letter-spacing:12.800000pt;}
.ls23{letter-spacing:18.560000pt;}
.ls8{letter-spacing:30.208000pt;}
.lsf{letter-spacing:55.680000pt;}
.ls6{letter-spacing:56.166400pt;}
.ls4{letter-spacing:80.000000pt;}
.ls3{letter-spacing:93.280000pt;}
.ls10{letter-spacing:951.840000pt;}
.ls0{letter-spacing:1018.703360pt;}
.ws10{word-spacing:-53.167360pt;}
.wse{word-spacing:-53.120000pt;}
.ws1{word-spacing:-20.816640pt;}
.ws18{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws16{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws17{word-spacing:-15.744000pt;}
.wsf{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.592000pt;}
.ws0{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.043200pt;}
.ws9{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.521067pt;}
.ws12{word-spacing:-10.240000pt;}
.ws14{word-spacing:-10.231680pt;}
.ws13{word-spacing:-9.607680pt;}
.ws11{word-spacing:-9.600000pt;}
.ws15{word-spacing:-9.592320pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-13.856000pt;}
._1d{margin-left:-12.053333pt;}
._1e{margin-left:-11.127893pt;}
._20{margin-left:-6.688000pt;}
._1b{margin-left:-4.512000pt;}
._e{margin-left:-3.424000pt;}
._c{margin-left:-2.048000pt;}
._1{margin-left:-0.945493pt;}
._0{width:0.956160pt;}
._5{width:2.048000pt;}
._6{width:3.143680pt;}
._13{width:4.152320pt;}
._3{width:5.056000pt;}
._4{width:6.528000pt;}
._7{width:8.000000pt;}
._8{width:8.899840pt;}
._15{width:10.048000pt;}
._17{width:10.940160pt;}
._16{width:12.035840pt;}
._14{width:13.422507pt;}
._2{width:14.481493pt;}
._12{width:17.216000pt;}
._11{width:18.240000pt;}
._b{width:19.648000pt;}
._9{width:20.864000pt;}
._a{width:22.030507pt;}
._d{width:23.234987pt;}
._10{width:24.203520pt;}
._f{width:25.105493pt;}
._1c{width:26.528000pt;}
._21{width:27.520000pt;}
._18{width:29.120000pt;}
._25{width:30.065493pt;}
._19{width:31.360000pt;}
._1a{width:32.323840pt;}
._28{width:35.072000pt;}
._29{width:36.170667pt;}
._24{width:37.632000pt;}
._30{width:51.136000pt;}
._22{width:58.944000pt;}
._23{width:60.096000pt;}
._26{width:64.256000pt;}
._27{width:65.344000pt;}
._2d{width:112.000000pt;}
._2c{width:112.896000pt;}
._2e{width:114.240000pt;}
._2f{width:115.488000pt;}
._2a{width:166.016000pt;}
._2b{width:166.994347pt;}
.fs5{font-size:10.880000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf1{bottom:3.653333pt;}
.yef{bottom:3.813333pt;}
.y100{bottom:8.320000pt;}
.y102{bottom:9.600000pt;}
.y106{bottom:10.080000pt;}
.y104{bottom:10.120000pt;}
.yff{bottom:13.920000pt;}
.y3{bottom:50.720000pt;}
.y2{bottom:66.112000pt;}
.y136{bottom:98.432000pt;}
.y1e{bottom:98.592000pt;}
.y151{bottom:100.512000pt;}
.y40{bottom:101.632000pt;}
.y10c{bottom:102.912000pt;}
.y11a{bottom:104.832000pt;}
.yc8{bottom:108.672000pt;}
.yb6{bottom:117.952000pt;}
.y1ab{bottom:119.872000pt;}
.y61{bottom:120.032000pt;}
.y68{bottom:123.712000pt;}
.y135{bottom:125.952000pt;}
.y150{bottom:128.032000pt;}
.y10b{bottom:131.392000pt;}
.y94{bottom:131.712000pt;}
.y119{bottom:133.312000pt;}
.y3f{bottom:138.426667pt;}
.ye1{bottom:139.066667pt;}
.y1d{bottom:139.386667pt;}
.y1aa{bottom:139.706667pt;}
.y1c8{bottom:141.146667pt;}
.y60{bottom:142.266667pt;}
.yb5{bottom:145.466667pt;}
.y67{bottom:145.786667pt;}
.y177{bottom:146.746667pt;}
.y168{bottom:147.706667pt;}
.y93{bottom:152.186667pt;}
.y18a{bottom:153.306667pt;}
.y134{bottom:153.626667pt;}
.yc7{bottom:154.746667pt;}
.y14f{bottom:155.706667pt;}
.y3e{bottom:156.826667pt;}
.y10a{bottom:159.066667pt;}
.y5f{bottom:159.546667pt;}
.y1c{bottom:160.986667pt;}
.ye0{bottom:166.746667pt;}
.y66{bottom:167.866667pt;}
.y92{bottom:168.986667pt;}
.yb4{bottom:173.146667pt;}
.y3d{bottom:175.226667pt;}
.y167{bottom:175.386667pt;}
.y1c7{bottom:180.826667pt;}
.y133{bottom:181.146667pt;}
.y5e{bottom:181.626667pt;}
.y1b{bottom:182.426667pt;}
.y91{bottom:185.946667pt;}
.y109{bottom:186.586667pt;}
.y118{bottom:188.506667pt;}
.y65{bottom:189.946667pt;}
.y1a9{bottom:190.106667pt;}
.y176{bottom:192.986667pt;}
.y3c{bottom:193.626667pt;}
.ydf{bottom:194.266667pt;}
.yb3{bottom:200.666667pt;}
.y1c6{bottom:200.826667pt;}
.y14e{bottom:202.106667pt;}
.y90{bottom:202.746667pt;}
.y166{bottom:202.906667pt;}
.y189{bottom:203.546667pt;}
.y5d{bottom:203.706667pt;}
.y1a{bottom:203.866667pt;}
.y132{bottom:208.666667pt;}
.y1a8{bottom:209.946667pt;}
.y3b{bottom:212.026667pt;}
.y108{bottom:214.266667pt;}
.y117{bottom:216.186667pt;}
.y8f{bottom:219.546667pt;}
.yde{bottom:221.946667pt;}
.y188{bottom:223.546667pt;}
.y19{bottom:225.306667pt;}
.y5c{bottom:225.786667pt;}
.yb2{bottom:228.346667pt;}
.y14d{bottom:229.786667pt;}
.y165{bottom:230.586667pt;}
.y1c5{bottom:231.226667pt;}
.y3a{bottom:234.106667pt;}
.y131{bottom:236.346667pt;}
.y8e{bottom:236.506667pt;}
.y107{bottom:239.066667pt;}
.y175{bottom:239.226667pt;}
.y187{bottom:243.386667pt;}
.y18{bottom:246.746667pt;}
.y5b{bottom:247.866667pt;}
.ydd{bottom:249.466667pt;}
.y1a7{bottom:249.626667pt;}
.y116{bottom:250.426667pt;}
.y1c4{bottom:251.066667pt;}
.y8d{bottom:253.306667pt;}
.yc6{bottom:255.866667pt;}
.y39{bottom:256.186667pt;}
.y14c{bottom:257.306667pt;}
.y164{bottom:258.106667pt;}
.yb1{bottom:261.146667pt;}
.y105{bottom:261.466667pt;}
.y130{bottom:264.186667pt;}
.y174{bottom:266.906667pt;}
.y1a6{bottom:269.466667pt;}
.y5a{bottom:269.946667pt;}
.y8c{bottom:270.266667pt;}
.y17{bottom:270.586667pt;}
.y1c3{bottom:270.906667pt;}
.y186{bottom:273.786667pt;}
.ydc{bottom:277.146667pt;}
.y38{bottom:278.266667pt;}
.yb0{bottom:283.546667pt;}
.y115{bottom:284.666667pt;}
.y14b{bottom:285.146667pt;}
.y163{bottom:285.786667pt;}
.y8b{bottom:287.066667pt;}
.y12f{bottom:291.706667pt;}
.y103{bottom:291.866667pt;}
.y59{bottom:292.026667pt;}
.y185{bottom:293.626667pt;}
.y173{bottom:294.426667pt;}
.y16{bottom:299.906667pt;}
.y1a5{bottom:300.066667pt;}
.y37{bottom:300.386667pt;}
.y1c2{bottom:301.506667pt;}
.y8a{bottom:304.066667pt;}
.ydb{bottom:304.706667pt;}
.yaf{bottom:311.106667pt;}
.y114{bottom:312.386667pt;}
.y14a{bottom:312.706667pt;}
.y162{bottom:313.346667pt;}
.y58{bottom:314.146667pt;}
.y12e{bottom:319.426667pt;}
.y1a4{bottom:319.906667pt;}
.y89{bottom:320.866667pt;}
.y1c1{bottom:321.346667pt;}
.y101{bottom:322.146667pt;}
.y36{bottom:322.466667pt;}
.y184{bottom:324.226667pt;}
.y15{bottom:329.346667pt;}
.yda{bottom:332.386667pt;}
.y57{bottom:336.226667pt;}
.y88{bottom:337.666667pt;}
.yae{bottom:338.786667pt;}
.y1a3{bottom:339.746667pt;}
.y149{bottom:340.386667pt;}
.y161{bottom:341.026667pt;}
.y1c0{bottom:341.186667pt;}
.y183{bottom:344.066667pt;}
.y35{bottom:344.546667pt;}
.y172{bottom:349.666667pt;}
.yfe{bottom:351.586667pt;}
.y87{bottom:354.626667pt;}
.y12d{bottom:357.666667pt;}
.y56{bottom:358.306667pt;}
.y14{bottom:358.626667pt;}
.y1a2{bottom:359.586667pt;}
.yd9{bottom:359.906667pt;}
.y1bf{bottom:361.186667pt;}
.y182{bottom:365.346667pt;}
.yad{bottom:366.306667pt;}
.y34{bottom:366.626667pt;}
.y148{bottom:367.906667pt;}
.y160{bottom:368.546667pt;}
.y86{bottom:371.426667pt;}
.y171{bottom:377.346667pt;}
.y55{bottom:380.386667pt;}
.y181{bottom:383.746667pt;}
.y12c{bottom:385.186667pt;}
.yd8{bottom:387.426667pt;}
.y13{bottom:387.906667pt;}
.y85{bottom:388.386667pt;}
.y33{bottom:388.706667pt;}
.y1a1{bottom:390.146667pt;}
.yfd{bottom:391.266667pt;}
.y1be{bottom:391.586667pt;}
.yc5{bottom:393.986667pt;}
.y147{bottom:395.586667pt;}
.y15f{bottom:396.226667pt;}
.yac{bottom:400.066667pt;}
.y54{bottom:402.466667pt;}
.y170{bottom:404.866667pt;}
.y84{bottom:405.186667pt;}
.y1a0{bottom:409.986667pt;}
.y32{bottom:410.786667pt;}
.y1bd{bottom:411.426667pt;}
.y12b{bottom:412.866667pt;}
.yd7{bottom:415.106667pt;}
.yab{bottom:421.506667pt;}
.y83{bottom:421.986667pt;}
.y146{bottom:423.106667pt;}
.y15e{bottom:423.746667pt;}
.y53{bottom:424.546667pt;}
.yfc{bottom:425.506667pt;}
.y12{bottom:429.826667pt;}
.y1bc{bottom:431.266667pt;}
.y31{bottom:432.866667pt;}
.y82{bottom:438.946667pt;}
.yc4{bottom:439.906667pt;}
.y12a{bottom:440.386667pt;}
.yd6{bottom:442.626667pt;}
.y52{bottom:446.626667pt;}
.yaa{bottom:449.186667pt;}
.y16f{bottom:451.106667pt;}
.y1bb{bottom:451.266667pt;}
.yfb{bottom:453.186667pt;}
.y30{bottom:454.946667pt;}
.y81{bottom:455.746667pt;}
.y19f{bottom:460.386667pt;}
.y11{bottom:463.106667pt;}
.y51{bottom:468.706667pt;}
.y145{bottom:469.346667pt;}
.y15d{bottom:469.986667pt;}
.yd5{bottom:470.306667pt;}
.y129{bottom:470.946667pt;}
.y80{bottom:472.706667pt;}
.ya9{bottom:476.706667pt;}
.y2f{bottom:477.026667pt;}
.y180{bottom:478.626667pt;}
.y16e{bottom:478.786667pt;}
.y19e{bottom:480.226667pt;}
.yfa{bottom:480.706667pt;}
.y1ba{bottom:481.666667pt;}
.yed{bottom:488.706667pt;}
.y128{bottom:489.346667pt;}
.y7f{bottom:489.506667pt;}
.y50{bottom:490.786667pt;}
.y144{bottom:497.026667pt;}
.y15c{bottom:497.666667pt;}
.yd4{bottom:497.826667pt;}
.y2e{bottom:499.106667pt;}
.y1b9{bottom:501.506667pt;}
.ya8{bottom:504.386667pt;}
.y10{bottom:505.026667pt;}
.y7e{bottom:506.306667pt;}
.y19d{bottom:510.786667pt;}
.y4f{bottom:512.866667pt;}
.yf9{bottom:515.106667pt;}
.yec{bottom:516.226667pt;}
.y127{bottom:518.146667pt;}
.y2d{bottom:521.186667pt;}
.y1b8{bottom:521.506667pt;}
.y7d{bottom:523.266667pt;}
.y143{bottom:524.546667pt;}
.y15b{bottom:525.186667pt;}
.y19c{bottom:530.626667pt;}
.ya7{bottom:531.906667pt;}
.y17f{bottom:533.826667pt;}
.y4e{bottom:534.946667pt;}
.y7c{bottom:540.093333pt;}
.y2c{bottom:543.293333pt;}
.yd3{bottom:543.933333pt;}
.yf{bottom:547.133333pt;}
.yf8{bottom:549.373333pt;}
.y1b7{bottom:551.933333pt;}
.y142{bottom:552.253333pt;}
.y16d{bottom:552.573333pt;}
.y15a{bottom:552.893333pt;}
.y126{bottom:553.373333pt;}
.y4d{bottom:557.053333pt;}
.ya6{bottom:559.613333pt;}
.y19b{bottom:561.213333pt;}
.yd2{bottom:562.333333pt;}
.y2b{bottom:565.373333pt;}
.yeb{bottom:571.453333pt;}
.y1b6{bottom:571.773333pt;}
.y7b{bottom:573.853333pt;}
.yf7{bottom:576.893333pt;}
.y4c{bottom:579.133333pt;}
.y141{bottom:579.773333pt;}
.y16c{bottom:580.253333pt;}
.y159{bottom:580.413333pt;}
.yd1{bottom:580.733333pt;}
.y125{bottom:581.053333pt;}
.ya5{bottom:587.133333pt;}
.y2a{bottom:587.453333pt;}
.ye{bottom:589.053333pt;}
.yea{bottom:589.853333pt;}
.y7a{bottom:590.653333pt;}
.y1b5{bottom:591.613333pt;}
.yd0{bottom:599.133333pt;}
.y4b{bottom:601.213333pt;}
.yf6{bottom:604.573333pt;}
.y140{bottom:607.453333pt;}
.y79{bottom:607.613333pt;}
.y16b{bottom:607.773333pt;}
.y158{bottom:608.093333pt;}
.ye9{bottom:608.253333pt;}
.y124{bottom:608.573333pt;}
.y29{bottom:609.533333pt;}
.y19a{bottom:611.613333pt;}
.ya4{bottom:614.813333pt;}
.y1b4{bottom:622.173333pt;}
.y4a{bottom:623.293333pt;}
.y78{bottom:624.413333pt;}
.ye8{bottom:626.653333pt;}
.yd{bottom:630.813333pt;}
.y199{bottom:631.453333pt;}
.y28{bottom:631.613333pt;}
.yf5{bottom:632.093333pt;}
.y13f{bottom:634.973333pt;}
.y16a{bottom:635.453333pt;}
.y157{bottom:635.613333pt;}
.ycf{bottom:635.933333pt;}
.y113{bottom:641.053333pt;}
.y77{bottom:641.693333pt;}
.y1b3{bottom:642.013333pt;}
.ya3{bottom:642.333333pt;}
.ye7{bottom:645.053333pt;}
.y49{bottom:645.373333pt;}
.yce{bottom:654.333333pt;}
.yf4{bottom:657.213333pt;}
.y76{bottom:660.093333pt;}
.yc3{bottom:660.733333pt;}
.y198{bottom:661.853333pt;}
.y13e{bottom:662.653333pt;}
.y169{bottom:662.973333pt;}
.y156{bottom:663.293333pt;}
.ye6{bottom:663.453333pt;}
.y48{bottom:667.453333pt;}
.yc{bottom:668.413333pt;}
.y27{bottom:669.213333pt;}
.y123{bottom:670.493333pt;}
.y64{bottom:672.093333pt;}
.ycd{bottom:672.733333pt;}
.y112{bottom:675.293333pt;}
.ya2{bottom:676.093333pt;}
.yc2{bottom:679.133333pt;}
.ye5{bottom:681.853333pt;}
.yf3{bottom:682.333333pt;}
.y26{bottom:685.693333pt;}
.y13d{bottom:690.173333pt;}
.y17e{bottom:690.493333pt;}
.y155{bottom:690.813333pt;}
.y1b2{bottom:692.413333pt;}
.y1cd{bottom:692.733333pt;}
.y75{bottom:694.333333pt;}
.y122{bottom:695.453333pt;}
.y47{bottom:696.413333pt;}
.ya1{bottom:697.533333pt;}
.yc1{bottom:700.253333pt;}
.y63{bottom:701.053333pt;}
.y197{bottom:701.693333pt;}
.y111{bottom:702.813333pt;}
.y25{bottom:705.533333pt;}
.yb{bottom:706.173333pt;}
.ycc{bottom:709.533333pt;}
.yf2{bottom:709.853333pt;}
.y1b1{bottom:712.253333pt;}
.y13c{bottom:717.853333pt;}
.y17d{bottom:718.173333pt;}
.y154{bottom:718.493333pt;}
.ye4{bottom:718.653333pt;}
.y74{bottom:719.453333pt;}
.y121{bottom:720.573333pt;}
.y1cc{bottom:722.973333pt;}
.ya0{bottom:725.213333pt;}
.y62{bottom:726.653333pt;}
.y24{bottom:727.293333pt;}
.ycb{bottom:727.933333pt;}
.y110{bottom:730.493333pt;}
.y46{bottom:730.653333pt;}
.y196{bottom:732.093333pt;}
.yc0{bottom:737.053333pt;}
.ya{bottom:738.493333pt;}
.y1b0{bottom:742.813333pt;}
.y73{bottom:744.573333pt;}
.y13b{bottom:745.533333pt;}
.y120{bottom:745.693333pt;}
.y153{bottom:746.013333pt;}
.yca{bottom:746.333333pt;}
.y195{bottom:751.933333pt;}
.y9f{bottom:752.733333pt;}
.ye3{bottom:755.453333pt;}
.y10f{bottom:758.013333pt;}
.y1af{bottom:762.653333pt;}
.ybf{bottom:764.733333pt;}
.y23{bottom:765.213333pt;}
.y45{bottom:768.573333pt;}
.y72{bottom:769.533333pt;}
.y11f{bottom:770.653333pt;}
.y9{bottom:770.973333pt;}
.y13a{bottom:773.213333pt;}
.y152{bottom:773.693333pt;}
.ye2{bottom:773.893333pt;}
.y9e{bottom:780.453333pt;}
.y194{bottom:782.533333pt;}
.y10e{bottom:785.733333pt;}
.y17c{bottom:792.133333pt;}
.ybe{bottom:792.293333pt;}
.y1ae{bottom:793.253333pt;}
.y71{bottom:794.693333pt;}
.y11e{bottom:795.813333pt;}
.y8{bottom:800.453333pt;}
.y193{bottom:802.373333pt;}
.y22{bottom:803.173333pt;}
.y44{bottom:806.693333pt;}
.y9d{bottom:807.973333pt;}
.y1ad{bottom:813.093333pt;}
.y10d{bottom:813.253333pt;}
.yf0{bottom:817.920000pt;}
.y139{bottom:819.653333pt;}
.ybd{bottom:819.973333pt;}
.yee{bottom:820.160000pt;}
.y70{bottom:820.773333pt;}
.y11d{bottom:820.933333pt;}
.y192{bottom:822.213333pt;}
.y7{bottom:829.733333pt;}
.y1ac{bottom:832.933333pt;}
.y9c{bottom:835.653333pt;}
.y21{bottom:840.133333pt;}
.y43{bottom:843.653333pt;}
.y6f{bottom:845.893333pt;}
.y138{bottom:847.333333pt;}
.ybc{bottom:847.493333pt;}
.y191{bottom:852.773333pt;}
.y6{bottom:859.013333pt;}
.y9b{bottom:863.173333pt;}
.y1cb{bottom:863.493333pt;}
.y20{bottom:869.413333pt;}
.y11c{bottom:871.013333pt;}
.y6e{bottom:871.173333pt;}
.y190{bottom:872.613333pt;}
.y42{bottom:872.933333pt;}
.y17b{bottom:874.853333pt;}
.y137{bottom:875.013333pt;}
.ybb{bottom:875.173333pt;}
.y5{bottom:881.253333pt;}
.y1ca{bottom:883.333333pt;}
.y9a{bottom:890.693333pt;}
.y11b{bottom:896.133333pt;}
.y6d{bottom:896.453333pt;}
.y1f{bottom:898.853333pt;}
.y41{bottom:900.133333pt;}
.yba{bottom:901.413333pt;}
.y17a{bottom:902.533333pt;}
.yc9{bottom:902.693333pt;}
.y18f{bottom:903.173333pt;}
.y99{bottom:918.373333pt;}
.y6c{bottom:920.613333pt;}
.y18e{bottom:923.013333pt;}
.y179{bottom:930.053333pt;}
.yb9{bottom:930.373333pt;}
.y18d{bottom:942.853333pt;}
.y6b{bottom:945.733333pt;}
.y98{bottom:945.893333pt;}
.y1c9{bottom:953.573333pt;}
.y178{bottom:957.573333pt;}
.yb8{bottom:957.893333pt;}
.y18c{bottom:973.413333pt;}
.y97{bottom:973.573333pt;}
.y6a{bottom:979.973333pt;}
.yb7{bottom:985.573333pt;}
.y18b{bottom:993.253333pt;}
.y96{bottom:994.693333pt;}
.y4{bottom:1006.053333pt;}
.y69{bottom:1008.133333pt;}
.y95{bottom:1013.120000pt;}
.y1{bottom:1108.800000pt;}
.hb{height:10.678125pt;}
.ha{height:11.140312pt;}
.h17{height:18.400000pt;}
.h1a{height:26.400000pt;}
.h1b{height:28.800000pt;}
.h1c{height:29.632000pt;}
.h1d{height:29.760000pt;}
.he{height:42.084375pt;}
.h14{height:43.215000pt;}
.h18{height:43.383750pt;}
.h19{height:45.730031pt;}
.h1e{height:47.156250pt;}
.h10{height:51.232500pt;}
.h3{height:52.134375pt;}
.h8{height:54.390938pt;}
.h4{height:55.402500pt;}
.h15{height:57.375000pt;}
.h2{height:61.410000pt;}
.h16{height:62.781250pt;}
.hc{height:62.812500pt;}
.h9{height:63.656250pt;}
.h12{height:64.335000pt;}
.hd{height:64.500000pt;}
.h5{height:65.531250pt;}
.h13{height:66.404375pt;}
.h11{height:66.750000pt;}
.h7{height:78.097500pt;}
.hf{height:85.785000pt;}
.h6{height:98.296875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:34.880000pt;}
.w4{width:44.192000pt;}
.w5{width:82.400000pt;}
.w8{width:82.432000pt;}
.w9{width:82.880000pt;}
.wa{width:87.040000pt;}
.wb{width:87.392000pt;}
.wc{width:111.360000pt;}
.w6{width:247.746667pt;}
.w7{width:285.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:7.520000pt;}
.x2c{left:8.640000pt;}
.x2f{left:10.080000pt;}
.x1b{left:11.680000pt;}
.x2e{left:12.832000pt;}
.x2d{left:13.760000pt;}
.x24{left:15.840000pt;}
.x26{left:18.400000pt;}
.x1e{left:22.112000pt;}
.x25{left:26.240000pt;}
.x27{left:28.480000pt;}
.x2a{left:32.800000pt;}
.x20{left:41.434667pt;}
.x1a{left:60.480000pt;}
.x1{left:66.239988pt;}
.x22{left:92.040000pt;}
.x1f{left:110.432000pt;}
.x23{left:123.040000pt;}
.x4{left:141.786655pt;}
.x15{left:146.906655pt;}
.x8{left:147.866655pt;}
.x10{left:151.386655pt;}
.x17{left:156.506655pt;}
.x18{left:159.706655pt;}
.x13{left:165.786655pt;}
.x11{left:171.226655pt;}
.x5{left:177.626655pt;}
.x14{left:190.266655pt;}
.x9{left:192.346655pt;}
.x21{left:193.626667pt;}
.xd{left:195.226655pt;}
.x16{left:209.786655pt;}
.xe{left:215.386655pt;}
.x19{left:233.146655pt;}
.xc{left:261.666655pt;}
.xb{left:271.426655pt;}
.x3{left:276.066655pt;}
.xa{left:351.906655pt;}
.x12{left:353.666655pt;}
.xf{left:358.786655pt;}
.x6{left:401.666655pt;}
.x1c{left:442.080000pt;}
.x28{left:529.053333pt;}
.x29{left:616.453333pt;}
.x1d{left:648.293322pt;}
.x2{left:654.853322pt;}
.x7{left:661.573322pt;}
}




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