
    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_1ede8ba2b364003e0eb9d4ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_f82d2c41402442882580348d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.734000;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_d6245734b499990cddb00201.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_9fb6225a19f2c2f49cf6b3a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_e98e12116754f5c85bc7da35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_dfdb07e3da1704e8e09bc907.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_2e61c8b5c25c34453f897b24.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.753000;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_097f6284cc819e2fc7331bdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984000;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_e8c76f296d06211f26e16428.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011000;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_9d61a2bd152962773647be83.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.145067;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_8321d4b4945f284257a6b035.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.744000;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_02fabe642781f228777150b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:19.800000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.330000px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.066000px;}
.ls5{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.165000px;}
.ls24{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.192600px;}
.ls8{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.264000px;}
.ls14{letter-spacing:0.290400px;}
.lsb{letter-spacing:0.297000px;}
.ls17{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.330000px;}
.ls12{letter-spacing:0.462000px;}
.lsa{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.486000px;}
.ls22{letter-spacing:0.495000px;}
.ls18{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.624000px;}
.ls23{letter-spacing:0.660000px;}
.lse{letter-spacing:0.726000px;}
.ls10{letter-spacing:0.792000px;}
.ls1b{letter-spacing:0.840000px;}
.ls1f{letter-spacing:1.056000px;}
.ls4{letter-spacing:1.242000px;}
.ls13{letter-spacing:1.320000px;}
.lsf{letter-spacing:2115.471000px;}
.ls7{letter-spacing:2152.899000px;}
.ls0{letter-spacing:2844.088800px;}
.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;}
}
.ws0{word-spacing:-22.680000px;}
.ws1{word-spacing:-17.010000px;}
.ws19{word-spacing:-16.500000px;}
.ws83{word-spacing:-13.860000px;}
.ws39{word-spacing:-12.750000px;}
.ws1a{word-spacing:-9.009000px;}
.ws1b{word-spacing:-7.371000px;}
.ws72{word-spacing:-1.056000px;}
.ws12{word-spacing:-0.486000px;}
.ws84{word-spacing:-0.330000px;}
.ws5d{word-spacing:-0.264000px;}
.ws55{word-spacing:-0.198000px;}
.ws89{word-spacing:-0.066000px;}
.ws7{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws29{word-spacing:0.066000px;}
.ws23{word-spacing:0.132000px;}
.ws7e{word-spacing:0.198000px;}
.ws2a{word-spacing:0.264000px;}
.ws87{word-spacing:0.330000px;}
.ws8f{word-spacing:0.396000px;}
.ws3{word-spacing:0.432000px;}
.ws20{word-spacing:0.462000px;}
.ws58{word-spacing:0.528000px;}
.ws85{word-spacing:0.540000px;}
.ws4b{word-spacing:0.594000px;}
.ws30{word-spacing:0.660000px;}
.ws81{word-spacing:0.720000px;}
.ws88{word-spacing:0.726000px;}
.ws53{word-spacing:0.756000px;}
.wsd{word-spacing:0.810000px;}
.ws5e{word-spacing:0.924000px;}
.ws10{word-spacing:0.972000px;}
.ws91{word-spacing:0.990000px;}
.ws14{word-spacing:1.026000px;}
.ws28{word-spacing:1.056000px;}
.ws4f{word-spacing:1.122000px;}
.ws38{word-spacing:1.134000px;}
.ws18{word-spacing:1.188000px;}
.ws76{word-spacing:1.320000px;}
.wsb{word-spacing:1.350000px;}
.ws70{word-spacing:1.380000px;}
.ws1f{word-spacing:1.386000px;}
.ws50{word-spacing:1.452000px;}
.ws21{word-spacing:1.584000px;}
.ws11{word-spacing:1.620000px;}
.ws61{word-spacing:1.650000px;}
.ws6b{word-spacing:1.680000px;}
.ws43{word-spacing:1.716000px;}
.ws82{word-spacing:1.740000px;}
.ws64{word-spacing:1.782000px;}
.ws6f{word-spacing:1.848000px;}
.ws16{word-spacing:1.890000px;}
.ws49{word-spacing:1.914000px;}
.ws3d{word-spacing:1.980000px;}
.ws65{word-spacing:2.100000px;}
.ws63{word-spacing:2.112000px;}
.ws25{word-spacing:2.244000px;}
.ws86{word-spacing:2.340000px;}
.ws92{word-spacing:2.376000px;}
.ws2d{word-spacing:2.400000px;}
.ws62{word-spacing:2.442000px;}
.ws5f{word-spacing:2.508000px;}
.ws33{word-spacing:2.574000px;}
.ws74{word-spacing:2.580000px;}
.ws42{word-spacing:2.640000px;}
.ws78{word-spacing:2.706000px;}
.ws8a{word-spacing:2.820000px;}
.ws41{word-spacing:2.838000px;}
.ws66{word-spacing:2.940000px;}
.ws51{word-spacing:2.970000px;}
.ws57{word-spacing:3.036000px;}
.ws75{word-spacing:3.060000px;}
.ws69{word-spacing:3.102000px;}
.ws52{word-spacing:3.132000px;}
.ws3e{word-spacing:3.300000px;}
.ws24{word-spacing:3.366000px;}
.ws4c{word-spacing:3.432000px;}
.ws46{word-spacing:3.480000px;}
.ws7a{word-spacing:3.540000px;}
.ws5b{word-spacing:3.564000px;}
.ws71{word-spacing:3.600000px;}
.ws8d{word-spacing:3.630000px;}
.ws36{word-spacing:3.672000px;}
.ws60{word-spacing:3.696000px;}
.ws2c{word-spacing:3.720000px;}
.ws37{word-spacing:3.726000px;}
.ws13{word-spacing:3.834000px;}
.ws8c{word-spacing:3.840000px;}
.ws48{word-spacing:3.894000px;}
.ws4a{word-spacing:3.960000px;}
.ws45{word-spacing:4.020000px;}
.ws73{word-spacing:4.026000px;}
.wsc{word-spacing:4.050000px;}
.ws2b{word-spacing:4.080000px;}
.ws59{word-spacing:4.092000px;}
.ws67{word-spacing:4.158000px;}
.ws44{word-spacing:4.200000px;}
.ws27{word-spacing:4.224000px;}
.ws1e{word-spacing:4.290000px;}
.ws17{word-spacing:4.320000px;}
.ws40{word-spacing:4.356000px;}
.ws54{word-spacing:4.428000px;}
.ws6c{word-spacing:4.440000px;}
.ws22{word-spacing:4.488000px;}
.ws8b{word-spacing:4.560000px;}
.ws9{word-spacing:4.590000px;}
.ws77{word-spacing:4.686000px;}
.wse{word-spacing:4.752000px;}
.ws56{word-spacing:4.818000px;}
.ws34{word-spacing:4.884000px;}
.ws5c{word-spacing:4.950000px;}
.ws31{word-spacing:4.980000px;}
.ws3c{word-spacing:5.016000px;}
.ws15{word-spacing:5.022000px;}
.ws5a{word-spacing:5.082000px;}
.wsf{word-spacing:5.130000px;}
.ws3b{word-spacing:5.214000px;}
.ws80{word-spacing:5.220000px;}
.ws47{word-spacing:5.280000px;}
.ws4{word-spacing:5.328000px;}
.ws4e{word-spacing:5.346000px;}
.ws3a{word-spacing:5.412000px;}
.ws6d{word-spacing:5.460000px;}
.ws79{word-spacing:5.520000px;}
.ws68{word-spacing:5.610000px;}
.wsa{word-spacing:5.616000px;}
.ws8{word-spacing:5.670000px;}
.ws7c{word-spacing:5.742000px;}
.ws8e{word-spacing:5.808000px;}
.ws7b{word-spacing:5.874000px;}
.ws32{word-spacing:5.880000px;}
.ws2e{word-spacing:5.940000px;}
.ws26{word-spacing:6.006000px;}
.ws7d{word-spacing:6.204000px;}
.ws6a{word-spacing:6.240000px;}
.ws2f{word-spacing:6.300000px;}
.ws3f{word-spacing:6.336000px;}
.ws7f{word-spacing:6.402000px;}
.ws4d{word-spacing:6.468000px;}
.ws1c{word-spacing:6.534000px;}
.ws6e{word-spacing:6.864000px;}
.ws1d{word-spacing:6.930000px;}
.ws5{word-spacing:10.656000px;}
.ws6{word-spacing:13.344000px;}
.ws35{word-spacing:53.784000px;}
.ws90{word-spacing:84.708000px;}
._6{margin-left:-50.112000px;}
._2{margin-left:-24.000000px;}
._b{margin-left:-21.120000px;}
._8{margin-left:-15.576000px;}
._4{margin-left:-1.242000px;}
._9{width:2.970000px;}
._a{width:6.270000px;}
._1{width:7.536000px;}
._3{width:9.990000px;}
._0{width:13.344000px;}
._7{width:50.112000px;}
._5{width:84.708000px;}
.fc2{color:rgb(96,139,155);}
.fc1{color:rgb(156,193,232);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.100000px;}
.fsb{font-size:39.000000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y60{bottom:138.194850px;}
.y8a{bottom:138.200550px;}
.y12a{bottom:138.535050px;}
.y108{bottom:138.893850px;}
.ydb{bottom:138.968100px;}
.yb3{bottom:139.254900px;}
.y9{bottom:140.316450px;}
.y8{bottom:153.108450px;}
.y5f{bottom:154.178850px;}
.y89{bottom:154.184550px;}
.y107{bottom:156.488850px;}
.yda{bottom:156.563100px;}
.y129{bottom:159.325050px;}
.yb2{bottom:160.044900px;}
.y88{bottom:170.168550px;}
.y7{bottom:172.269300px;}
.y106{bottom:174.083850px;}
.y5e{bottom:174.212850px;}
.yb1{bottom:180.834900px;}
.y87{bottom:186.152550px;}
.y5d{bottom:186.152850px;}
.y128{bottom:190.510050px;}
.y6{bottom:191.445300px;}
.y105{bottom:191.678850px;}
.yd9{bottom:194.937600px;}
.yb0{bottom:201.624900px;}
.y86{bottom:206.186550px;}
.y5c{bottom:206.186850px;}
.y104{bottom:209.273850px;}
.y5{bottom:210.621300px;}
.yd8{bottom:215.727600px;}
.y127{bottom:221.695050px;}
.yaf{bottom:222.414900px;}
.y4{bottom:223.413300px;}
.y103{bottom:226.868850px;}
.yd7{bottom:236.517600px;}
.y3{bottom:242.589300px;}
.yae{bottom:243.204900px;}
.y126{bottom:252.880050px;}
.y102{bottom:253.268850px;}
.y2{bottom:255.381300px;}
.y85{bottom:255.543150px;}
.yd6{bottom:257.307600px;}
.yad{bottom:263.994900px;}
.y5b{bottom:272.779200px;}
.y84{bottom:276.333150px;}
.y125{bottom:284.065050px;}
.y101{bottom:288.671550px;}
.y5a{bottom:293.569200px;}
.y83{bottom:297.123150px;}
.yd5{bottom:301.244250px;}
.yac{bottom:307.936200px;}
.y100{bottom:309.461550px;}
.y59{bottom:314.359200px;}
.y82{bottom:317.913150px;}
.yd4{bottom:318.839250px;}
.yab{bottom:325.531200px;}
.y124{bottom:330.127950px;}
.yff{bottom:330.251550px;}
.y58{bottom:335.149200px;}
.yd3{bottom:336.434250px;}
.y81{bottom:338.703150px;}
.yaa{bottom:343.126200px;}
.yfe{bottom:351.041550px;}
.yd2{bottom:354.029250px;}
.y57{bottom:355.939200px;}
.y80{bottom:359.493150px;}
.ya9{bottom:360.721200px;}
.yfd{bottom:371.831550px;}
.y56{bottom:376.729200px;}
.yd1{bottom:380.429250px;}
.y7f{bottom:390.678150px;}
.yfc{bottom:392.621550px;}
.yd0{bottom:398.024250px;}
.ya8{bottom:399.050700px;}
.y7e{bottom:411.468150px;}
.y55{bottom:418.313100px;}
.y123{bottom:419.473500px;}
.ya7{bottom:419.840700px;}
.yfb{bottom:423.806550px;}
.y7d{bottom:432.258150px;}
.y54{bottom:435.908100px;}
.ycf{bottom:436.389750px;}
.y122{bottom:440.263500px;}
.ya6{bottom:440.630700px;}
.yfa{bottom:444.596550px;}
.y7c{bottom:453.048150px;}
.y53{bottom:453.503100px;}
.yce{bottom:457.179750px;}
.y121{bottom:461.053500px;}
.ya5{bottom:461.420700px;}
.yf9{bottom:465.386550px;}
.y52{bottom:471.098100px;}
.y7b{bottom:473.838150px;}
.ycd{bottom:477.969750px;}
.y120{bottom:481.843500px;}
.ya4{bottom:482.210700px;}
.yf8{bottom:486.176550px;}
.y51{bottom:488.693100px;}
.y7a{bottom:494.628150px;}
.ycc{bottom:498.759750px;}
.y11f{bottom:502.633500px;}
.ya3{bottom:503.000700px;}
.y50{bottom:506.288100px;}
.yf7{bottom:506.966550px;}
.y27{bottom:515.349750px;}
.y33{bottom:515.376750px;}
.y79{bottom:515.418150px;}
.ycb{bottom:519.549750px;}
.y11e{bottom:523.423500px;}
.ya2{bottom:523.790700px;}
.y4f{bottom:523.883100px;}
.yf6{bottom:527.756550px;}
.y26{bottom:531.333750px;}
.y32{bottom:531.360750px;}
.y78{bottom:536.208150px;}
.yca{bottom:540.339750px;}
.y11d{bottom:544.213500px;}
.ya1{bottom:544.580700px;}
.y25{bottom:547.317750px;}
.y31{bottom:547.344750px;}
.yf5{bottom:548.546550px;}
.y4e{bottom:550.281450px;}
.y77{bottom:556.998150px;}
.yc9{bottom:561.129750px;}
.y24{bottom:563.301750px;}
.y30{bottom:563.328750px;}
.y11c{bottom:565.003500px;}
.ya0{bottom:565.370700px;}
.y4d{bottom:567.876450px;}
.yf4{bottom:569.336550px;}
.y76{bottom:577.782150px;}
.y23{bottom:579.285750px;}
.y2f{bottom:579.312750px;}
.y4c{bottom:585.471450px;}
.y9f{bottom:586.160700px;}
.yf3{bottom:590.126550px;}
.y2e{bottom:595.296750px;}
.y75{bottom:598.572150px;}
.y4b{bottom:603.066450px;}
.y22{bottom:603.261750px;}
.yc8{bottom:605.064900px;}
.y11b{bottom:606.584250px;}
.y139{bottom:606.602850px;}
.y9e{bottom:606.950700px;}
.yf2{bottom:610.916550px;}
.y2d{bottom:611.280750px;}
.y74{bottom:619.362150px;}
.yc7{bottom:622.659900px;}
.y11a{bottom:624.179250px;}
.y2c{bottom:627.264750px;}
.y138{bottom:627.392850px;}
.y9d{bottom:627.740700px;}
.yf1{bottom:631.706550px;}
.yc6{bottom:640.254900px;}
.y4a{bottom:641.390100px;}
.y119{bottom:641.774250px;}
.y2b{bottom:643.248750px;}
.y9c{bottom:648.530700px;}
.yf0{bottom:652.496550px;}
.y137{bottom:658.577850px;}
.y2a{bottom:659.232750px;}
.y118{bottom:659.369250px;}
.y49{bottom:662.180100px;}
.y73{bottom:665.424900px;}
.yc5{bottom:666.654900px;}
.y9b{bottom:669.320700px;}
.y29{bottom:675.216750px;}
.y117{bottom:676.964250px;}
.y48{bottom:682.970100px;}
.yc4{bottom:684.249900px;}
.y136{bottom:689.762850px;}
.y9a{bottom:690.110700px;}
.y28{bottom:691.200750px;}
.yef{bottom:694.072800px;}
.y47{bottom:703.760100px;}
.y135{bottom:710.552850px;}
.y99{bottom:710.900700px;}
.yee{bottom:711.667800px;}
.y116{bottom:715.329900px;}
.yc3{bottom:722.609550px;}
.y46{bottom:724.550100px;}
.yed{bottom:729.262800px;}
.y98{bottom:731.690700px;}
.y16{bottom:731.957250px;}
.y21{bottom:731.984250px;}
.y115{bottom:736.119900px;}
.y134{bottom:741.737850px;}
.yc2{bottom:743.399550px;}
.y45{bottom:745.340100px;}
.y15{bottom:747.941250px;}
.y20{bottom:747.968250px;}
.y72{bottom:750.546900px;}
.y97{bottom:752.480700px;}
.yec{bottom:755.662800px;}
.y114{bottom:756.909900px;}
.y133{bottom:762.527850px;}
.y14{bottom:763.925250px;}
.y1f{bottom:763.952250px;}
.yc1{bottom:764.189550px;}
.y44{bottom:766.130100px;}
.y71{bottom:768.141900px;}
.yeb{bottom:773.257800px;}
.y96{bottom:773.270700px;}
.y113{bottom:777.699900px;}
.y13{bottom:779.909250px;}
.y1e{bottom:779.936250px;}
.y132{bottom:783.317850px;}
.yc0{bottom:784.979550px;}
.y70{bottom:785.736900px;}
.y43{bottom:786.920100px;}
.yea{bottom:790.852800px;}
.y12{bottom:795.893250px;}
.y1d{bottom:795.920250px;}
.y112{bottom:798.489900px;}
.y6f{bottom:803.331900px;}
.ybf{bottom:805.769550px;}
.y42{bottom:807.710100px;}
.ye9{bottom:808.447800px;}
.y1c{bottom:811.904250px;}
.y131{bottom:814.502850px;}
.y111{bottom:819.279900px;}
.y11{bottom:819.869250px;}
.y6e{bottom:820.926900px;}
.y95{bottom:823.585500px;}
.ybe{bottom:826.559550px;}
.y1b{bottom:827.888250px;}
.y41{bottom:828.500100px;}
.y130{bottom:835.292850px;}
.y6d{bottom:838.521900px;}
.y110{bottom:840.069900px;}
.y1a{bottom:843.872250px;}
.ye8{bottom:846.816600px;}
.ybd{bottom:847.349550px;}
.y40{bottom:849.290100px;}
.y12f{bottom:856.082850px;}
.y19{bottom:859.856250px;}
.ye7{bottom:867.606600px;}
.ybc{bottom:868.139550px;}
.y3f{bottom:870.080100px;}
.y18{bottom:875.840250px;}
.y6c{bottom:876.874350px;}
.y10f{bottom:881.638350px;}
.y12e{bottom:887.267850px;}
.ye6{bottom:888.396600px;}
.ybb{bottom:888.929550px;}
.y3e{bottom:890.870100px;}
.y17{bottom:891.824250px;}
.y6b{bottom:897.664350px;}
.y10e{bottom:899.233350px;}
.ye5{bottom:909.186600px;}
.y3d{bottom:911.660100px;}
.y10d{bottom:916.828350px;}
.y94{bottom:918.452850px;}
.y6a{bottom:918.454350px;}
.ye4{bottom:929.976600px;}
.yba{bottom:932.017500px;}
.y3c{bottom:932.450100px;}
.y93{bottom:939.242850px;}
.y69{bottom:939.244350px;}
.y10c{bottom:943.228350px;}
.yb9{bottom:949.612500px;}
.ye3{bottom:950.766600px;}
.y3b{bottom:953.240100px;}
.y92{bottom:960.032850px;}
.y68{bottom:960.034350px;}
.y10b{bottom:960.823350px;}
.yb8{bottom:967.207500px;}
.y12d{bottom:970.427850px;}
.y3a{bottom:974.030100px;}
.y91{bottom:980.822850px;}
.y67{bottom:980.824350px;}
.y10a{bottom:987.223350px;}
.y10{bottom:987.921150px;}
.ye2{bottom:992.342850px;}
.yb7{bottom:993.607500px;}
.y39{bottom:994.820100px;}
.y90{bottom:1001.612850px;}
.y66{bottom:1001.614350px;}
.y109{bottom:1004.818350px;}
.yf{bottom:1008.699000px;}
.ye1{bottom:1009.937850px;}
.yb6{bottom:1011.202500px;}
.y38{bottom:1015.610100px;}
.y8f{bottom:1022.402850px;}
.y65{bottom:1022.404350px;}
.ye0{bottom:1027.532850px;}
.yb5{bottom:1028.797500px;}
.y37{bottom:1036.400100px;}
.y8e{bottom:1043.192850px;}
.y64{bottom:1043.194350px;}
.ydf{bottom:1045.127850px;}
.yb4{bottom:1046.392500px;}
.ye{bottom:1053.093000px;}
.y12c{bottom:1053.587850px;}
.y36{bottom:1057.190100px;}
.y8d{bottom:1063.982850px;}
.y63{bottom:1063.984350px;}
.yde{bottom:1071.527850px;}
.y12b{bottom:1074.377850px;}
.y8c{bottom:1084.772850px;}
.y62{bottom:1084.774350px;}
.ydd{bottom:1089.122850px;}
.yd{bottom:1097.478000px;}
.y35{bottom:1103.253000px;}
.y8b{bottom:1105.562850px;}
.y61{bottom:1105.564350px;}
.ydc{bottom:1106.717850px;}
.yc{bottom:1156.356450px;}
.y34{bottom:1172.229900px;}
.yb{bottom:1193.880450px;}
.ya{bottom:1207.380450px;}
.h10{height:27.904500px;}
.h4{height:35.328000px;}
.h3{height:35.664000px;}
.hb{height:40.545000px;}
.ha{height:42.930000px;}
.h2{height:45.342773px;}
.h8{height:47.700000px;}
.hf{height:48.987000px;}
.h9{height:50.976000px;}
.he{height:52.470000px;}
.hd{height:53.905500px;}
.h11{height:53.929500px;}
.h6{height:64.512000px;}
.h7{height:66.780000px;}
.hc{height:73.632000px;}
.h5{height:78.624000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.xf{left:86.972550px;}
.xa{left:93.730800px;}
.xe{left:106.304550px;}
.x11{left:108.241650px;}
.x2{left:110.551350px;}
.x13{left:136.057350px;}
.x12{left:137.998500px;}
.x3{left:145.195650px;}
.x4{left:151.195650px;}
.xd{left:153.070800px;}
.x10{left:155.011950px;}
.xb{left:221.292300px;}
.x9{left:324.550650px;}
.x6{left:338.290950px;}
.x7{left:444.684600px;}
.x8{left:641.622600px;}
.xc{left:706.933800px;}
.x5{left:733.915650px;}
@media print{
.v3{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:17.600000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.058667pt;}
.ls5{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.146667pt;}
.ls24{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.171200pt;}
.ls8{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.234667pt;}
.ls14{letter-spacing:0.258133pt;}
.lsb{letter-spacing:0.264000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.293333pt;}
.ls12{letter-spacing:0.410667pt;}
.lsa{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.432000pt;}
.ls22{letter-spacing:0.440000pt;}
.ls18{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.554667pt;}
.ls23{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.645333pt;}
.ls10{letter-spacing:0.704000pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls1f{letter-spacing:0.938667pt;}
.ls4{letter-spacing:1.104000pt;}
.ls13{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1880.418667pt;}
.ls7{letter-spacing:1913.688000pt;}
.ls0{letter-spacing:2528.078933pt;}
.ws0{word-spacing:-20.160000pt;}
.ws1{word-spacing:-15.120000pt;}
.ws19{word-spacing:-14.666667pt;}
.ws83{word-spacing:-12.320000pt;}
.ws39{word-spacing:-11.333333pt;}
.ws1a{word-spacing:-8.008000pt;}
.ws1b{word-spacing:-6.552000pt;}
.ws72{word-spacing:-0.938667pt;}
.ws12{word-spacing:-0.432000pt;}
.ws84{word-spacing:-0.293333pt;}
.ws5d{word-spacing:-0.234667pt;}
.ws55{word-spacing:-0.176000pt;}
.ws89{word-spacing:-0.058667pt;}
.ws7{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws29{word-spacing:0.058667pt;}
.ws23{word-spacing:0.117333pt;}
.ws7e{word-spacing:0.176000pt;}
.ws2a{word-spacing:0.234667pt;}
.ws87{word-spacing:0.293333pt;}
.ws8f{word-spacing:0.352000pt;}
.ws3{word-spacing:0.384000pt;}
.ws20{word-spacing:0.410667pt;}
.ws58{word-spacing:0.469333pt;}
.ws85{word-spacing:0.480000pt;}
.ws4b{word-spacing:0.528000pt;}
.ws30{word-spacing:0.586667pt;}
.ws81{word-spacing:0.640000pt;}
.ws88{word-spacing:0.645333pt;}
.ws53{word-spacing:0.672000pt;}
.wsd{word-spacing:0.720000pt;}
.ws5e{word-spacing:0.821333pt;}
.ws10{word-spacing:0.864000pt;}
.ws91{word-spacing:0.880000pt;}
.ws14{word-spacing:0.912000pt;}
.ws28{word-spacing:0.938667pt;}
.ws4f{word-spacing:0.997333pt;}
.ws38{word-spacing:1.008000pt;}
.ws18{word-spacing:1.056000pt;}
.ws76{word-spacing:1.173333pt;}
.wsb{word-spacing:1.200000pt;}
.ws70{word-spacing:1.226667pt;}
.ws1f{word-spacing:1.232000pt;}
.ws50{word-spacing:1.290667pt;}
.ws21{word-spacing:1.408000pt;}
.ws11{word-spacing:1.440000pt;}
.ws61{word-spacing:1.466667pt;}
.ws6b{word-spacing:1.493333pt;}
.ws43{word-spacing:1.525333pt;}
.ws82{word-spacing:1.546667pt;}
.ws64{word-spacing:1.584000pt;}
.ws6f{word-spacing:1.642667pt;}
.ws16{word-spacing:1.680000pt;}
.ws49{word-spacing:1.701333pt;}
.ws3d{word-spacing:1.760000pt;}
.ws65{word-spacing:1.866667pt;}
.ws63{word-spacing:1.877333pt;}
.ws25{word-spacing:1.994667pt;}
.ws86{word-spacing:2.080000pt;}
.ws92{word-spacing:2.112000pt;}
.ws2d{word-spacing:2.133333pt;}
.ws62{word-spacing:2.170667pt;}
.ws5f{word-spacing:2.229333pt;}
.ws33{word-spacing:2.288000pt;}
.ws74{word-spacing:2.293333pt;}
.ws42{word-spacing:2.346667pt;}
.ws78{word-spacing:2.405333pt;}
.ws8a{word-spacing:2.506667pt;}
.ws41{word-spacing:2.522667pt;}
.ws66{word-spacing:2.613333pt;}
.ws51{word-spacing:2.640000pt;}
.ws57{word-spacing:2.698667pt;}
.ws75{word-spacing:2.720000pt;}
.ws69{word-spacing:2.757333pt;}
.ws52{word-spacing:2.784000pt;}
.ws3e{word-spacing:2.933333pt;}
.ws24{word-spacing:2.992000pt;}
.ws4c{word-spacing:3.050667pt;}
.ws46{word-spacing:3.093333pt;}
.ws7a{word-spacing:3.146667pt;}
.ws5b{word-spacing:3.168000pt;}
.ws71{word-spacing:3.200000pt;}
.ws8d{word-spacing:3.226667pt;}
.ws36{word-spacing:3.264000pt;}
.ws60{word-spacing:3.285333pt;}
.ws2c{word-spacing:3.306667pt;}
.ws37{word-spacing:3.312000pt;}
.ws13{word-spacing:3.408000pt;}
.ws8c{word-spacing:3.413333pt;}
.ws48{word-spacing:3.461333pt;}
.ws4a{word-spacing:3.520000pt;}
.ws45{word-spacing:3.573333pt;}
.ws73{word-spacing:3.578667pt;}
.wsc{word-spacing:3.600000pt;}
.ws2b{word-spacing:3.626667pt;}
.ws59{word-spacing:3.637333pt;}
.ws67{word-spacing:3.696000pt;}
.ws44{word-spacing:3.733333pt;}
.ws27{word-spacing:3.754667pt;}
.ws1e{word-spacing:3.813333pt;}
.ws17{word-spacing:3.840000pt;}
.ws40{word-spacing:3.872000pt;}
.ws54{word-spacing:3.936000pt;}
.ws6c{word-spacing:3.946667pt;}
.ws22{word-spacing:3.989333pt;}
.ws8b{word-spacing:4.053333pt;}
.ws9{word-spacing:4.080000pt;}
.ws77{word-spacing:4.165333pt;}
.wse{word-spacing:4.224000pt;}
.ws56{word-spacing:4.282667pt;}
.ws34{word-spacing:4.341333pt;}
.ws5c{word-spacing:4.400000pt;}
.ws31{word-spacing:4.426667pt;}
.ws3c{word-spacing:4.458667pt;}
.ws15{word-spacing:4.464000pt;}
.ws5a{word-spacing:4.517333pt;}
.wsf{word-spacing:4.560000pt;}
.ws3b{word-spacing:4.634667pt;}
.ws80{word-spacing:4.640000pt;}
.ws47{word-spacing:4.693333pt;}
.ws4{word-spacing:4.736000pt;}
.ws4e{word-spacing:4.752000pt;}
.ws3a{word-spacing:4.810667pt;}
.ws6d{word-spacing:4.853333pt;}
.ws79{word-spacing:4.906667pt;}
.ws68{word-spacing:4.986667pt;}
.wsa{word-spacing:4.992000pt;}
.ws8{word-spacing:5.040000pt;}
.ws7c{word-spacing:5.104000pt;}
.ws8e{word-spacing:5.162667pt;}
.ws7b{word-spacing:5.221333pt;}
.ws32{word-spacing:5.226667pt;}
.ws2e{word-spacing:5.280000pt;}
.ws26{word-spacing:5.338667pt;}
.ws7d{word-spacing:5.514667pt;}
.ws6a{word-spacing:5.546667pt;}
.ws2f{word-spacing:5.600000pt;}
.ws3f{word-spacing:5.632000pt;}
.ws7f{word-spacing:5.690667pt;}
.ws4d{word-spacing:5.749333pt;}
.ws1c{word-spacing:5.808000pt;}
.ws6e{word-spacing:6.101333pt;}
.ws1d{word-spacing:6.160000pt;}
.ws5{word-spacing:9.472000pt;}
.ws6{word-spacing:11.861333pt;}
.ws35{word-spacing:47.808000pt;}
.ws90{word-spacing:75.296000pt;}
._6{margin-left:-44.544000pt;}
._2{margin-left:-21.333333pt;}
._b{margin-left:-18.773333pt;}
._8{margin-left:-13.845333pt;}
._4{margin-left:-1.104000pt;}
._9{width:2.640000pt;}
._a{width:5.573333pt;}
._1{width:6.698667pt;}
._3{width:8.880000pt;}
._0{width:11.861333pt;}
._7{width:44.544000pt;}
._5{width:75.296000pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:34.666667pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y60{bottom:122.839867pt;}
.y8a{bottom:122.844933pt;}
.y12a{bottom:123.142267pt;}
.y108{bottom:123.461200pt;}
.ydb{bottom:123.527200pt;}
.yb3{bottom:123.782133pt;}
.y9{bottom:124.725733pt;}
.y8{bottom:136.096400pt;}
.y5f{bottom:137.047867pt;}
.y89{bottom:137.052933pt;}
.y107{bottom:139.101200pt;}
.yda{bottom:139.167200pt;}
.y129{bottom:141.622267pt;}
.yb2{bottom:142.262133pt;}
.y88{bottom:151.260933pt;}
.y7{bottom:153.128267pt;}
.y106{bottom:154.741200pt;}
.y5e{bottom:154.855867pt;}
.yb1{bottom:160.742133pt;}
.y87{bottom:165.468933pt;}
.y5d{bottom:165.469200pt;}
.y128{bottom:169.342267pt;}
.y6{bottom:170.173600pt;}
.y105{bottom:170.381200pt;}
.yd9{bottom:173.277867pt;}
.yb0{bottom:179.222133pt;}
.y86{bottom:183.276933pt;}
.y5c{bottom:183.277200pt;}
.y104{bottom:186.021200pt;}
.y5{bottom:187.218933pt;}
.yd8{bottom:191.757867pt;}
.y127{bottom:197.062267pt;}
.yaf{bottom:197.702133pt;}
.y4{bottom:198.589600pt;}
.y103{bottom:201.661200pt;}
.yd7{bottom:210.237867pt;}
.y3{bottom:215.634933pt;}
.yae{bottom:216.182133pt;}
.y126{bottom:224.782267pt;}
.y102{bottom:225.127867pt;}
.y2{bottom:227.005600pt;}
.y85{bottom:227.149467pt;}
.yd6{bottom:228.717867pt;}
.yad{bottom:234.662133pt;}
.y5b{bottom:242.470400pt;}
.y84{bottom:245.629467pt;}
.y125{bottom:252.502267pt;}
.y101{bottom:256.596933pt;}
.y5a{bottom:260.950400pt;}
.y83{bottom:264.109467pt;}
.yd5{bottom:267.772667pt;}
.yac{bottom:273.721067pt;}
.y100{bottom:275.076933pt;}
.y59{bottom:279.430400pt;}
.y82{bottom:282.589467pt;}
.yd4{bottom:283.412667pt;}
.yab{bottom:289.361067pt;}
.y124{bottom:293.447067pt;}
.yff{bottom:293.556933pt;}
.y58{bottom:297.910400pt;}
.yd3{bottom:299.052667pt;}
.y81{bottom:301.069467pt;}
.yaa{bottom:305.001067pt;}
.yfe{bottom:312.036933pt;}
.yd2{bottom:314.692667pt;}
.y57{bottom:316.390400pt;}
.y80{bottom:319.549467pt;}
.ya9{bottom:320.641067pt;}
.yfd{bottom:330.516933pt;}
.y56{bottom:334.870400pt;}
.yd1{bottom:338.159333pt;}
.y7f{bottom:347.269467pt;}
.yfc{bottom:348.996933pt;}
.yd0{bottom:353.799333pt;}
.ya8{bottom:354.711733pt;}
.y7e{bottom:365.749467pt;}
.y55{bottom:371.833867pt;}
.y123{bottom:372.865333pt;}
.ya7{bottom:373.191733pt;}
.yfb{bottom:376.716933pt;}
.y7d{bottom:384.229467pt;}
.y54{bottom:387.473867pt;}
.ycf{bottom:387.902000pt;}
.y122{bottom:391.345333pt;}
.ya6{bottom:391.671733pt;}
.yfa{bottom:395.196933pt;}
.y7c{bottom:402.709467pt;}
.y53{bottom:403.113867pt;}
.yce{bottom:406.382000pt;}
.y121{bottom:409.825333pt;}
.ya5{bottom:410.151733pt;}
.yf9{bottom:413.676933pt;}
.y52{bottom:418.753867pt;}
.y7b{bottom:421.189467pt;}
.ycd{bottom:424.862000pt;}
.y120{bottom:428.305333pt;}
.ya4{bottom:428.631733pt;}
.yf8{bottom:432.156933pt;}
.y51{bottom:434.393867pt;}
.y7a{bottom:439.669467pt;}
.ycc{bottom:443.342000pt;}
.y11f{bottom:446.785333pt;}
.ya3{bottom:447.111733pt;}
.y50{bottom:450.033867pt;}
.yf7{bottom:450.636933pt;}
.y27{bottom:458.088667pt;}
.y33{bottom:458.112667pt;}
.y79{bottom:458.149467pt;}
.ycb{bottom:461.822000pt;}
.y11e{bottom:465.265333pt;}
.ya2{bottom:465.591733pt;}
.y4f{bottom:465.673867pt;}
.yf6{bottom:469.116933pt;}
.y26{bottom:472.296667pt;}
.y32{bottom:472.320667pt;}
.y78{bottom:476.629467pt;}
.yca{bottom:480.302000pt;}
.y11d{bottom:483.745333pt;}
.ya1{bottom:484.071733pt;}
.y25{bottom:486.504667pt;}
.y31{bottom:486.528667pt;}
.yf5{bottom:487.596933pt;}
.y4e{bottom:489.139067pt;}
.y77{bottom:495.109467pt;}
.yc9{bottom:498.782000pt;}
.y24{bottom:500.712667pt;}
.y30{bottom:500.736667pt;}
.y11c{bottom:502.225333pt;}
.ya0{bottom:502.551733pt;}
.y4d{bottom:504.779067pt;}
.yf4{bottom:506.076933pt;}
.y76{bottom:513.584133pt;}
.y23{bottom:514.920667pt;}
.y2f{bottom:514.944667pt;}
.y4c{bottom:520.419067pt;}
.y9f{bottom:521.031733pt;}
.yf3{bottom:524.556933pt;}
.y2e{bottom:529.152667pt;}
.y75{bottom:532.064133pt;}
.y4b{bottom:536.059067pt;}
.y22{bottom:536.232667pt;}
.yc8{bottom:537.835467pt;}
.y11b{bottom:539.186000pt;}
.y139{bottom:539.202533pt;}
.y9e{bottom:539.511733pt;}
.yf2{bottom:543.036933pt;}
.y2d{bottom:543.360667pt;}
.y74{bottom:550.544133pt;}
.yc7{bottom:553.475467pt;}
.y11a{bottom:554.826000pt;}
.y2c{bottom:557.568667pt;}
.y138{bottom:557.682533pt;}
.y9d{bottom:557.991733pt;}
.yf1{bottom:561.516933pt;}
.yc6{bottom:569.115467pt;}
.y4a{bottom:570.124533pt;}
.y119{bottom:570.466000pt;}
.y2b{bottom:571.776667pt;}
.y9c{bottom:576.471733pt;}
.yf0{bottom:579.996933pt;}
.y137{bottom:585.402533pt;}
.y2a{bottom:585.984667pt;}
.y118{bottom:586.106000pt;}
.y49{bottom:588.604533pt;}
.y73{bottom:591.488800pt;}
.yc5{bottom:592.582133pt;}
.y9b{bottom:594.951733pt;}
.y29{bottom:600.192667pt;}
.y117{bottom:601.746000pt;}
.y48{bottom:607.084533pt;}
.yc4{bottom:608.222133pt;}
.y136{bottom:613.122533pt;}
.y9a{bottom:613.431733pt;}
.y28{bottom:614.400667pt;}
.yef{bottom:616.953600pt;}
.y47{bottom:625.564533pt;}
.y135{bottom:631.602533pt;}
.y99{bottom:631.911733pt;}
.yee{bottom:632.593600pt;}
.y116{bottom:635.848800pt;}
.yc3{bottom:642.319600pt;}
.y46{bottom:644.044533pt;}
.yed{bottom:648.233600pt;}
.y98{bottom:650.391733pt;}
.y16{bottom:650.628667pt;}
.y21{bottom:650.652667pt;}
.y115{bottom:654.328800pt;}
.y134{bottom:659.322533pt;}
.yc2{bottom:660.799600pt;}
.y45{bottom:662.524533pt;}
.y15{bottom:664.836667pt;}
.y20{bottom:664.860667pt;}
.y72{bottom:667.152800pt;}
.y97{bottom:668.871733pt;}
.yec{bottom:671.700267pt;}
.y114{bottom:672.808800pt;}
.y133{bottom:677.802533pt;}
.y14{bottom:679.044667pt;}
.y1f{bottom:679.068667pt;}
.yc1{bottom:679.279600pt;}
.y44{bottom:681.004533pt;}
.y71{bottom:682.792800pt;}
.yeb{bottom:687.340267pt;}
.y96{bottom:687.351733pt;}
.y113{bottom:691.288800pt;}
.y13{bottom:693.252667pt;}
.y1e{bottom:693.276667pt;}
.y132{bottom:696.282533pt;}
.yc0{bottom:697.759600pt;}
.y70{bottom:698.432800pt;}
.y43{bottom:699.484533pt;}
.yea{bottom:702.980267pt;}
.y12{bottom:707.460667pt;}
.y1d{bottom:707.484667pt;}
.y112{bottom:709.768800pt;}
.y6f{bottom:714.072800pt;}
.ybf{bottom:716.239600pt;}
.y42{bottom:717.964533pt;}
.ye9{bottom:718.620267pt;}
.y1c{bottom:721.692667pt;}
.y131{bottom:724.002533pt;}
.y111{bottom:728.248800pt;}
.y11{bottom:728.772667pt;}
.y6e{bottom:729.712800pt;}
.y95{bottom:732.076000pt;}
.ybe{bottom:734.719600pt;}
.y1b{bottom:735.900667pt;}
.y41{bottom:736.444533pt;}
.y130{bottom:742.482533pt;}
.y6d{bottom:745.352800pt;}
.y110{bottom:746.728800pt;}
.y1a{bottom:750.108667pt;}
.ye8{bottom:752.725867pt;}
.ybd{bottom:753.199600pt;}
.y40{bottom:754.924533pt;}
.y12f{bottom:760.962533pt;}
.y19{bottom:764.316667pt;}
.ye7{bottom:771.205867pt;}
.ybc{bottom:771.679600pt;}
.y3f{bottom:773.404533pt;}
.y18{bottom:778.524667pt;}
.y6c{bottom:779.443867pt;}
.y10f{bottom:783.678533pt;}
.y12e{bottom:788.682533pt;}
.ye6{bottom:789.685867pt;}
.ybb{bottom:790.159600pt;}
.y3e{bottom:791.884533pt;}
.y17{bottom:792.732667pt;}
.y6b{bottom:797.923867pt;}
.y10e{bottom:799.318533pt;}
.ye5{bottom:808.165867pt;}
.y3d{bottom:810.364533pt;}
.y10d{bottom:814.958533pt;}
.y94{bottom:816.402533pt;}
.y6a{bottom:816.403867pt;}
.ye4{bottom:826.645867pt;}
.yba{bottom:828.460000pt;}
.y3c{bottom:828.844533pt;}
.y93{bottom:834.882533pt;}
.y69{bottom:834.883867pt;}
.y10c{bottom:838.425200pt;}
.yb9{bottom:844.100000pt;}
.ye3{bottom:845.125867pt;}
.y3b{bottom:847.324533pt;}
.y92{bottom:853.362533pt;}
.y68{bottom:853.363867pt;}
.y10b{bottom:854.065200pt;}
.yb8{bottom:859.740000pt;}
.y12d{bottom:862.602533pt;}
.y3a{bottom:865.804533pt;}
.y91{bottom:871.842533pt;}
.y67{bottom:871.843867pt;}
.y10a{bottom:877.531867pt;}
.y10{bottom:878.152133pt;}
.ye2{bottom:882.082533pt;}
.yb7{bottom:883.206667pt;}
.y39{bottom:884.284533pt;}
.y90{bottom:890.322533pt;}
.y66{bottom:890.323867pt;}
.y109{bottom:893.171867pt;}
.yf{bottom:896.621333pt;}
.ye1{bottom:897.722533pt;}
.yb6{bottom:898.846667pt;}
.y38{bottom:902.764533pt;}
.y8f{bottom:908.802533pt;}
.y65{bottom:908.803867pt;}
.ye0{bottom:913.362533pt;}
.yb5{bottom:914.486667pt;}
.y37{bottom:921.244533pt;}
.y8e{bottom:927.282533pt;}
.y64{bottom:927.283867pt;}
.ydf{bottom:929.002533pt;}
.yb4{bottom:930.126667pt;}
.ye{bottom:936.082667pt;}
.y12c{bottom:936.522533pt;}
.y36{bottom:939.724533pt;}
.y8d{bottom:945.762533pt;}
.y63{bottom:945.763867pt;}
.yde{bottom:952.469200pt;}
.y12b{bottom:955.002533pt;}
.y8c{bottom:964.242533pt;}
.y62{bottom:964.243867pt;}
.ydd{bottom:968.109200pt;}
.yd{bottom:975.536000pt;}
.y35{bottom:980.669333pt;}
.y8b{bottom:982.722533pt;}
.y61{bottom:982.723867pt;}
.ydc{bottom:983.749200pt;}
.yc{bottom:1027.872400pt;}
.y34{bottom:1041.982133pt;}
.yb{bottom:1061.227067pt;}
.ya{bottom:1073.227067pt;}
.h10{height:24.804000pt;}
.h4{height:31.402667pt;}
.h3{height:31.701333pt;}
.hb{height:36.040000pt;}
.ha{height:38.160000pt;}
.h2{height:40.304688pt;}
.h8{height:42.400000pt;}
.hf{height:43.544000pt;}
.h9{height:45.312000pt;}
.he{height:46.640000pt;}
.hd{height:47.916000pt;}
.h11{height:47.937333pt;}
.h6{height:57.344000pt;}
.h7{height:59.360000pt;}
.hc{height:65.450667pt;}
.h5{height:69.888000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.xf{left:77.308933pt;}
.xa{left:83.316267pt;}
.xe{left:94.492933pt;}
.x11{left:96.214800pt;}
.x2{left:98.267867pt;}
.x13{left:120.939867pt;}
.x12{left:122.665333pt;}
.x3{left:129.062800pt;}
.x4{left:134.396133pt;}
.xd{left:136.062933pt;}
.x10{left:137.788400pt;}
.xb{left:196.704267pt;}
.x9{left:288.489467pt;}
.x6{left:300.703067pt;}
.x7{left:395.275200pt;}
.x8{left:570.331200pt;}
.xc{left:628.385600pt;}
.x5{left:652.369467pt;}
}




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