
    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_17d48d3a78235310e740b955.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1d0c52dea06d99f55d5270eb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_292d8d16e1330859b07dcc45.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_42f822dd74b341cbad71c1b5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d21d0866fc55f418f6f70f8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7ae69b2c03dbc9159de9318.woff')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_75db79f9d529bade16d4a816.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b29189563edcb46b361ffc37.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_60d818e4dfa5a0e374de56d4.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ac6280e0b61ead9611db6281.woff')format("woff");}.ffa{font-family:ffa;line-height:0.940430;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_6ada48bbfd52eb447ab551b7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;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);}
.vd{vertical-align:-29.400000px;}
.v12{vertical-align:-26.340000px;}
.ve{vertical-align:-19.800000px;}
.vb{vertical-align:-17.400000px;}
.v2{vertical-align:-14.400000px;}
.v5{vertical-align:-3.600000px;}
.v4{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:1.200000px;}
.v1{vertical-align:2.400000px;}
.v9{vertical-align:8.940000px;}
.v8{vertical-align:13.800000px;}
.v3{vertical-align:16.800000px;}
.vf{vertical-align:22.800000px;}
.v7{vertical-align:33.630000px;}
.vc{vertical-align:46.800000px;}
.v6{vertical-align:48.030000px;}
.va{vertical-align:54.600000px;}
.v10{vertical-align:91.800000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls49{letter-spacing:-0.600000px;}
.ls38{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.012000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls39{letter-spacing:0.042000px;}
.ls11{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.174000px;}
.ls14{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.204000px;}
.ls4d{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.336000px;}
.lsb{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.660000px;}
.ls1c{letter-spacing:1.242000px;}
.ls34{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.392000px;}
.ls19{letter-spacing:1.500000px;}
.ls1d{letter-spacing:1.530000px;}
.lsc{letter-spacing:1.560000px;}
.ls1b{letter-spacing:2.376000px;}
.ls12{letter-spacing:2.811000px;}
.ls2e{letter-spacing:2.871000px;}
.ls10{letter-spacing:2.901000px;}
.ls13{letter-spacing:3.441000px;}
.ls30{letter-spacing:4.086000px;}
.ls35{letter-spacing:4.299000px;}
.ls3f{letter-spacing:4.686000px;}
.ls40{letter-spacing:4.746000px;}
.ls1f{letter-spacing:4.899000px;}
.ls18{letter-spacing:4.959000px;}
.ls2f{letter-spacing:8.400000px;}
.ls45{letter-spacing:11.928000px;}
.ls32{letter-spacing:11.988000px;}
.ls21{letter-spacing:15.660000px;}
.ls48{letter-spacing:15.756000px;}
.ls47{letter-spacing:16.416000px;}
.ls2b{letter-spacing:16.572000px;}
.ls29{letter-spacing:19.071000px;}
.lsd{letter-spacing:19.920000px;}
.ls28{letter-spacing:20.016000px;}
.lse{letter-spacing:20.166000px;}
.ls20{letter-spacing:20.499000px;}
.ls46{letter-spacing:20.649000px;}
.ls43{letter-spacing:22.611000px;}
.ls44{letter-spacing:22.671000px;}
.ls41{letter-spacing:22.791000px;}
.ls42{letter-spacing:23.271000px;}
.ls25{letter-spacing:24.000000px;}
.ls3c{letter-spacing:24.546000px;}
.ls27{letter-spacing:24.699000px;}
.ls23{letter-spacing:31.200000px;}
.ls3d{letter-spacing:33.000000px;}
.ls26{letter-spacing:34.200000px;}
.ls1a{letter-spacing:40.800000px;}
.ls2c{letter-spacing:45.600000px;}
.ls2d{letter-spacing:46.200000px;}
.ls17{letter-spacing:48.384000px;}
.ls36{letter-spacing:54.600000px;}
.ls31{letter-spacing:58.200000px;}
.ls3a{letter-spacing:73.140000px;}
.ls3b{letter-spacing:73.200000px;}
.ls4c{letter-spacing:102.384000px;}
.ls4e{letter-spacing:102.534000px;}
.ls2a{letter-spacing:103.071000px;}
.ls15{letter-spacing:118.680000px;}
.ls4b{letter-spacing:138.384000px;}
.ls4a{letter-spacing:138.534000px;}
.ls33{letter-spacing:401.160000px;}
.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;}
}
.ws14{word-spacing:-18.216000px;}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.wsc{word-spacing:-15.840000px;}
.ws10{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.wsf{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
.ws11{word-spacing:5.856000px;}
.wsd{word-spacing:6.120000px;}
.wse{word-spacing:67.440000px;}
.ws12{word-spacing:194.991000px;}
.ws13{word-spacing:209.031000px;}
._2e{margin-left:-11.946000px;}
._3a{margin-left:-9.765000px;}
._33{margin-left:-8.733000px;}
._7{margin-left:-4.752000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._13{width:2.700000px;}
._2a{width:3.852000px;}
._22{width:4.968000px;}
._23{width:6.096000px;}
._25{width:7.254000px;}
._26{width:8.352000px;}
._6{width:10.008000px;}
._8{width:11.520000px;}
._9{width:13.242000px;}
._21{width:14.466000px;}
._18{width:16.416000px;}
._28{width:19.332000px;}
._5{width:20.352000px;}
._4{width:21.606000px;}
._11{width:23.034000px;}
._a{width:24.552000px;}
._b{width:25.632000px;}
._31{width:26.928000px;}
._29{width:28.326000px;}
._3c{width:29.664000px;}
._12{width:31.248000px;}
._16{width:32.760000px;}
._17{width:34.056000px;}
._c{width:35.064000px;}
._d{width:36.288000px;}
._32{width:38.088000px;}
._2c{width:39.408000px;}
._14{width:40.656000px;}
._15{width:41.760000px;}
._19{width:43.056000px;}
._1a{width:44.136000px;}
._e{width:45.546000px;}
._f{width:46.848000px;}
._20{width:48.912000px;}
._3d{width:50.190000px;}
._3e{width:51.576000px;}
._4d{width:52.662000px;}
._2f{width:53.826000px;}
._30{width:54.852000px;}
._37{width:56.088000px;}
._4e{width:57.096000px;}
._35{width:58.200000px;}
._1e{width:59.904000px;}
._1f{width:61.488000px;}
._48{width:62.784000px;}
._49{width:63.828000px;}
._54{width:65.376000px;}
._40{width:68.976000px;}
._41{width:70.200000px;}
._39{width:73.152000px;}
._24{width:75.024000px;}
._44{width:76.032000px;}
._46{width:77.472000px;}
._2b{width:79.176000px;}
._1c{width:81.216000px;}
._1d{width:82.224000px;}
._58{width:83.622000px;}
._52{width:84.888000px;}
._4a{width:85.896000px;}
._4b{width:86.904000px;}
._27{width:88.416000px;}
._1b{width:90.792000px;}
._45{width:92.400000px;}
._4c{width:94.368000px;}
._57{width:100.944000px;}
._38{width:102.456000px;}
._3f{width:119.688000px;}
._42{width:124.200000px;}
._43{width:125.424000px;}
._47{width:130.536000px;}
._10{width:132.048000px;}
._4f{width:139.104000px;}
._50{width:141.552000px;}
._34{width:143.352000px;}
._53{width:144.726000px;}
._56{width:167.112000px;}
._2d{width:178.848000px;}
._55{width:185.112000px;}
._59{width:206.280000px;}
._36{width:280.440000px;}
._51{width:349.176000px;}
._3b{width:447.666000px;}
._5a{width:479.520000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y20{bottom:3.900000px;}
.y22{bottom:3.915000px;}
.yc9{bottom:4.515000px;}
.ycb{bottom:4.815000px;}
.yc7{bottom:5.115000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.yc5{bottom:15.165000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y1f{bottom:24.600000px;}
.y24{bottom:24.645000px;}
.yca{bottom:25.665000px;}
.yc8{bottom:26.250000px;}
.yc6{bottom:26.415000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1e{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1d{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1c{bottom:86.700000px;}
.y1b{bottom:107.400000px;}
.yed{bottom:110.737500px;}
.y12f{bottom:114.337500px;}
.y15f{bottom:115.387500px;}
.y68{bottom:124.387500px;}
.y3d{bottom:125.137500px;}
.y1a{bottom:128.100000px;}
.yec{bottom:134.587500px;}
.y12e{bottom:135.037500px;}
.y15e{bottom:136.087500px;}
.yd1{bottom:138.937500px;}
.y93{bottom:139.837500px;}
.yaf{bottom:142.837500px;}
.y67{bottom:144.637500px;}
.y105{bottom:148.237500px;}
.y19{bottom:148.800000px;}
.y3c{bottom:148.987500px;}
.yeb{bottom:154.545000px;}
.y12d{bottom:155.745000px;}
.y15d{bottom:156.795000px;}
.yd0{bottom:162.630000px;}
.y92{bottom:163.845000px;}
.yae{bottom:166.695000px;}
.y18{bottom:169.500000px;}
.y66{bottom:170.295000px;}
.y104{bottom:172.080000px;}
.y3b{bottom:172.680000px;}
.y12c{bottom:176.445000px;}
.y15c{bottom:177.495000px;}
.ycf{bottom:186.345000px;}
.y91{bottom:187.995000px;}
.yad{bottom:190.545000px;}
.y65{bottom:193.245000px;}
.y103{bottom:195.795000px;}
.y3a{bottom:196.545000px;}
.y12b{bottom:197.145000px;}
.y15b{bottom:198.195000px;}
.yce{bottom:210.045000px;}
.y90{bottom:211.845000px;}
.yac{bottom:214.245000px;}
.y64{bottom:217.095000px;}
.y12a{bottom:217.845000px;}
.y15a{bottom:218.880000px;}
.y102{bottom:219.630000px;}
.y39{bottom:220.395000px;}
.ycd{bottom:233.745000px;}
.y8f{bottom:237.045000px;}
.yab{bottom:238.095000px;}
.y129{bottom:238.545000px;}
.y159{bottom:239.580000px;}
.y63{bottom:240.945000px;}
.y101{bottom:243.495000px;}
.y38{bottom:244.095000px;}
.ycc{bottom:257.445000px;}
.y128{bottom:259.245000px;}
.y158{bottom:260.295000px;}
.yaa{bottom:261.945000px;}
.y8e{bottom:262.245000px;}
.y62{bottom:264.645000px;}
.y100{bottom:267.195000px;}
.y37{bottom:267.945000px;}
.y127{bottom:279.945000px;}
.y157{bottom:280.995000px;}
.yc4{bottom:281.130000px;}
.y8d{bottom:282.195000px;}
.ya9{bottom:285.645000px;}
.y61{bottom:288.495000px;}
.yff{bottom:291.045000px;}
.y36{bottom:291.795000px;}
.y126{bottom:300.630000px;}
.y156{bottom:301.545000px;}
.y8b{bottom:305.145000px;}
.ya8{bottom:309.495000px;}
.y60{bottom:312.345000px;}
.yfe{bottom:314.895000px;}
.y35{bottom:315.495000px;}
.y125{bottom:321.330000px;}
.y155{bottom:322.245000px;}
.y8c{bottom:331.845000px;}
.ya7{bottom:333.345000px;}
.yc3{bottom:334.245000px;}
.y5f{bottom:336.045000px;}
.yfd{bottom:338.745000px;}
.y34{bottom:339.345000px;}
.y124{bottom:342.045000px;}
.y154{bottom:342.945000px;}
.y8a{bottom:348.045000px;}
.ya6{bottom:357.045000px;}
.yc2{bottom:358.545000px;}
.y5e{bottom:359.895000px;}
.yfc{bottom:362.445000px;}
.y123{bottom:362.745000px;}
.y33{bottom:363.195000px;}
.y153{bottom:363.645000px;}
.y89{bottom:371.895000px;}
.ya5{bottom:380.925000px;}
.yc1{bottom:382.425000px;}
.y122{bottom:383.475000px;}
.y5d{bottom:383.775000px;}
.y152{bottom:384.375000px;}
.yfb{bottom:386.325000px;}
.y32{bottom:387.075000px;}
.y88{bottom:395.775000px;}
.ya4{bottom:400.875000px;}
.y121{bottom:404.175000px;}
.y151{bottom:405.075000px;}
.yc0{bottom:406.275000px;}
.y5c{bottom:407.475000px;}
.yfa{bottom:410.175000px;}
.y31{bottom:410.775000px;}
.y87{bottom:419.475000px;}
.y120{bottom:424.875000px;}
.y150{bottom:425.775000px;}
.ybf{bottom:429.975000px;}
.y5b{bottom:431.325000px;}
.yf9{bottom:433.875000px;}
.y30{bottom:434.625000px;}
.y86{bottom:443.325000px;}
.yea{bottom:443.625000px;}
.y11f{bottom:445.575000px;}
.y14f{bottom:446.475000px;}
.ybe{bottom:453.825000px;}
.y5a{bottom:455.175000px;}
.yf8{bottom:457.725000px;}
.y2f{bottom:458.475000px;}
.y11e{bottom:466.125000px;}
.y85{bottom:467.175000px;}
.ye9{bottom:467.475000px;}
.ybd{bottom:477.675000px;}
.y59{bottom:479.025000px;}
.yf7{bottom:481.575000px;}
.y2e{bottom:482.175000px;}
.y11d{bottom:486.825000px;}
.y14e{bottom:487.875000px;}
.y84{bottom:490.875000px;}
.ye8{bottom:491.325000px;}
.ybc{bottom:501.375000px;}
.y58{bottom:502.725000px;}
.yf6{bottom:505.275000px;}
.y2d{bottom:506.025000px;}
.y11c{bottom:507.525000px;}
.y14d{bottom:508.575000px;}
.y83{bottom:514.725000px;}
.ye7{bottom:515.175000px;}
.ybb{bottom:525.225000px;}
.y57{bottom:526.575000px;}
.y11b{bottom:528.225000px;}
.yf5{bottom:529.125000px;}
.y14c{bottom:529.275000px;}
.y2c{bottom:529.875000px;}
.ye6{bottom:538.875000px;}
.y82{bottom:539.025000px;}
.y11a{bottom:548.925000px;}
.yba{bottom:549.075000px;}
.y14b{bottom:549.975000px;}
.y56{bottom:550.425000px;}
.yf4{bottom:552.975000px;}
.y2b{bottom:553.575000px;}
.ye5{bottom:562.725000px;}
.y81{bottom:564.225000px;}
.y119{bottom:569.625000px;}
.y14a{bottom:570.675000px;}
.yb9{bottom:572.775000px;}
.y55{bottom:574.275000px;}
.yf3{bottom:576.675000px;}
.y2a{bottom:577.425000px;}
.ye4{bottom:586.575000px;}
.y80{bottom:588.525000px;}
.y118{bottom:590.325000px;}
.y149{bottom:591.375000px;}
.yb8{bottom:592.725000px;}
.y54{bottom:599.475000px;}
.yf2{bottom:600.525000px;}
.y29{bottom:601.275000px;}
.ye3{bottom:610.275000px;}
.y117{bottom:611.025000px;}
.y148{bottom:612.075000px;}
.y7f{bottom:613.725000px;}
.yf1{bottom:624.375000px;}
.y53{bottom:624.675000px;}
.y28{bottom:624.975000px;}
.y116{bottom:631.725000px;}
.y147{bottom:632.775000px;}
.ye2{bottom:634.125000px;}
.y7e{bottom:637.575000px;}
.yf0{bottom:648.075000px;}
.y52{bottom:648.525000px;}
.y27{bottom:648.825000px;}
.y115{bottom:652.425000px;}
.y146{bottom:653.475000px;}
.ye1{bottom:657.975000px;}
.y7d{bottom:662.775000px;}
.yef{bottom:671.925000px;}
.y51{bottom:672.375000px;}
.y26{bottom:672.675000px;}
.y114{bottom:673.125000px;}
.y145{bottom:674.175000px;}
.ye0{bottom:681.675000px;}
.y7c{bottom:687.825000px;}
.yee{bottom:691.875000px;}
.y113{bottom:693.825000px;}
.y144{bottom:694.875000px;}
.y50{bottom:697.575000px;}
.y7b{bottom:700.425000px;}
.y25{bottom:705.375000px;}
.ydf{bottom:705.525000px;}
.y112{bottom:714.525000px;}
.y143{bottom:715.575000px;}
.y4f{bottom:721.875000px;}
.y23{bottom:722.175000px;}
.yb7{bottom:724.275000px;}
.yde{bottom:729.375000px;}
.y111{bottom:735.225000px;}
.y142{bottom:736.275000px;}
.y7a{bottom:739.020000px;}
.ya3{bottom:741.570000px;}
.y4e{bottom:745.620000px;}
.yb6{bottom:748.020000px;}
.ydd{bottom:753.120000px;}
.y110{bottom:755.970000px;}
.y141{bottom:757.020000px;}
.y79{bottom:762.870000px;}
.y21{bottom:763.605000px;}
.ya2{bottom:765.420000px;}
.y4d{bottom:769.470000px;}
.yb5{bottom:771.870000px;}
.y10f{bottom:776.670000px;}
.ydc{bottom:776.970000px;}
.y140{bottom:777.720000px;}
.y17{bottom:784.320000px;}
.y78{bottom:786.570000px;}
.ya1{bottom:789.270000px;}
.y4c{bottom:793.320000px;}
.yb4{bottom:795.705000px;}
.y10e{bottom:797.370000px;}
.y13f{bottom:798.420000px;}
.ydb{bottom:800.820000px;}
.y77{bottom:810.420000px;}
.ya0{bottom:812.955000px;}
.y4b{bottom:817.020000px;}
.y10d{bottom:818.070000px;}
.y13e{bottom:819.120000px;}
.yb3{bottom:819.570000px;}
.yda{bottom:824.520000px;}
.y76{bottom:834.270000px;}
.y9f{bottom:836.820000px;}
.y10c{bottom:838.770000px;}
.y13d{bottom:839.820000px;}
.y4a{bottom:840.870000px;}
.yb2{bottom:843.270000px;}
.yd9{bottom:848.370000px;}
.y75{bottom:857.970000px;}
.y10b{bottom:859.455000px;}
.y13c{bottom:860.520000px;}
.y9e{bottom:860.670000px;}
.y49{bottom:864.720000px;}
.yb1{bottom:867.120000px;}
.yd8{bottom:872.370000px;}
.y10a{bottom:880.170000px;}
.y13b{bottom:881.220000px;}
.y74{bottom:881.820000px;}
.y9d{bottom:884.520000px;}
.yb0{bottom:887.070000px;}
.y48{bottom:888.420000px;}
.yd7{bottom:892.620000px;}
.y109{bottom:900.870000px;}
.y13a{bottom:901.920000px;}
.y73{bottom:905.670000px;}
.y9c{bottom:908.220000px;}
.y47{bottom:912.270000px;}
.yd5{bottom:915.720000px;}
.y108{bottom:921.570000px;}
.y139{bottom:922.620000px;}
.y72{bottom:929.370000px;}
.y9b{bottom:932.070000px;}
.y46{bottom:936.120000px;}
.y107{bottom:942.270000px;}
.yd6{bottom:942.420000px;}
.y138{bottom:943.320000px;}
.y71{bottom:953.220000px;}
.y162{bottom:954.720000px;}
.y9a{bottom:955.920000px;}
.yd4{bottom:958.620000px;}
.y45{bottom:959.970000px;}
.y106{bottom:962.970000px;}
.y137{bottom:964.020000px;}
.y16{bottom:974.220000px;}
.y70{bottom:977.070000px;}
.y161{bottom:978.570000px;}
.y99{bottom:979.620000px;}
.yd3{bottom:982.920000px;}
.y44{bottom:983.670000px;}
.y136{bottom:984.720000px;}
.y15{bottom:993.420000px;}
.y6f{bottom:1000.770000px;}
.y160{bottom:1002.270000px;}
.y98{bottom:1003.470000px;}
.y135{bottom:1005.420000px;}
.yd2{bottom:1007.220000px;}
.y43{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y6e{bottom:1024.620000px;}
.y134{bottom:1026.120000px;}
.y97{bottom:1027.920000px;}
.y42{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y133{bottom:1046.820000px;}
.y6d{bottom:1050.270000px;}
.y96{bottom:1052.520000px;}
.y41{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y132{bottom:1067.520000px;}
.y6c{bottom:1075.920000px;}
.y11{bottom:1076.220000px;}
.y95{bottom:1077.420000px;}
.y40{bottom:1078.920000px;}
.y131{bottom:1088.220000px;}
.y10{bottom:1096.950000px;}
.y6b{bottom:1099.950000px;}
.y94{bottom:1101.300000px;}
.y3f{bottom:1102.800000px;}
.y130{bottom:1108.950000px;}
.y6a{bottom:1125.150000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y69{bottom:1149.000000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h11{height:41.437500px;}
.h1e{height:43.200000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h1a{height:63.251953px;}
.hf{height:63.457031px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h1c{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h21{height:74.004654px;}
.h2{height:82.441406px;}
.h14{height:89.296875px;}
.h1d{height:89.591953px;}
.h1f{height:90.251953px;}
.h13{height:91.696875px;}
.h19{height:92.051953px;}
.h12{height:92.296875px;}
.h18{height:92.651953px;}
.h15{height:139.726875px;}
.h17{height:142.096875px;}
.h16{height:147.251953px;}
.h20{height:181.696875px;}
.h1b{height:183.496875px;}
.he{height:186.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:75.450000px;}
.wb{width:101.850000px;}
.wa{width:102.637500px;}
.wc{width:109.650000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1b{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x32{left:44.849987px;}
.x22{left:55.949987px;}
.x23{left:71.249987px;}
.x1f{left:72.299987px;}
.x34{left:76.649987px;}
.x33{left:83.249987px;}
.x1c{left:95.699987px;}
.x10{left:97.499987px;}
.x1a{left:100.200000px;}
.x19{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.x20{left:122.737487px;}
.xa{left:128.130000px;}
.x21{left:149.737487px;}
.x35{left:152.879987px;}
.x2b{left:179.429987px;}
.x11{left:192.494987px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x36{left:384.674987px;}
.x2c{left:432.374987px;}
.x1d{left:457.274987px;}
.x14{left:464.924987px;}
.x1e{left:510.374987px;}
.x26{left:517.874987px;}
.x2f{left:534.225000px;}
.x24{left:537.374987px;}
.x15{left:558.674987px;}
.x25{left:564.374987px;}
.x27{left:577.574987px;}
.x28{left:581.024987px;}
.x12{left:585.074987px;}
.x13{left:596.624987px;}
.x16{left:607.274987px;}
.x17{left:623.024987px;}
.xc{left:625.425000px;}
.x30{left:637.620000px;}
.x2a{left:648.254987px;}
.x29{left:654.869987px;}
.xf{left:713.655000px;}
.x31{left:740.220000px;}
.x2{left:819.119987px;}
.x18{left:850.619987px;}
.x2e{left:853.919987px;}
.x37{left:858.704987px;}
.x2d{left:874.169987px;}
@media print{
.vd{vertical-align:-26.133333pt;}
.v12{vertical-align:-23.413333pt;}
.ve{vertical-align:-17.600000pt;}
.vb{vertical-align:-15.466667pt;}
.v2{vertical-align:-12.800000pt;}
.v5{vertical-align:-3.200000pt;}
.v4{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:1.066667pt;}
.v1{vertical-align:2.133333pt;}
.v9{vertical-align:7.946667pt;}
.v8{vertical-align:12.266667pt;}
.v3{vertical-align:14.933333pt;}
.vf{vertical-align:20.266667pt;}
.v7{vertical-align:29.893333pt;}
.vc{vertical-align:41.600000pt;}
.v6{vertical-align:42.693333pt;}
.va{vertical-align:48.533333pt;}
.v10{vertical-align:81.600000pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls49{letter-spacing:-0.533333pt;}
.ls38{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls39{letter-spacing:0.037333pt;}
.ls11{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.154667pt;}
.ls14{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.181333pt;}
.ls4d{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.298667pt;}
.lsb{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:1.104000pt;}
.ls34{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.237333pt;}
.ls19{letter-spacing:1.333333pt;}
.ls1d{letter-spacing:1.360000pt;}
.lsc{letter-spacing:1.386667pt;}
.ls1b{letter-spacing:2.112000pt;}
.ls12{letter-spacing:2.498667pt;}
.ls2e{letter-spacing:2.552000pt;}
.ls10{letter-spacing:2.578667pt;}
.ls13{letter-spacing:3.058667pt;}
.ls30{letter-spacing:3.632000pt;}
.ls35{letter-spacing:3.821333pt;}
.ls3f{letter-spacing:4.165333pt;}
.ls40{letter-spacing:4.218667pt;}
.ls1f{letter-spacing:4.354667pt;}
.ls18{letter-spacing:4.408000pt;}
.ls2f{letter-spacing:7.466667pt;}
.ls45{letter-spacing:10.602667pt;}
.ls32{letter-spacing:10.656000pt;}
.ls21{letter-spacing:13.920000pt;}
.ls48{letter-spacing:14.005333pt;}
.ls47{letter-spacing:14.592000pt;}
.ls2b{letter-spacing:14.730667pt;}
.ls29{letter-spacing:16.952000pt;}
.lsd{letter-spacing:17.706667pt;}
.ls28{letter-spacing:17.792000pt;}
.lse{letter-spacing:17.925333pt;}
.ls20{letter-spacing:18.221333pt;}
.ls46{letter-spacing:18.354667pt;}
.ls43{letter-spacing:20.098667pt;}
.ls44{letter-spacing:20.152000pt;}
.ls41{letter-spacing:20.258667pt;}
.ls42{letter-spacing:20.685333pt;}
.ls25{letter-spacing:21.333333pt;}
.ls3c{letter-spacing:21.818667pt;}
.ls27{letter-spacing:21.954667pt;}
.ls23{letter-spacing:27.733333pt;}
.ls3d{letter-spacing:29.333333pt;}
.ls26{letter-spacing:30.400000pt;}
.ls1a{letter-spacing:36.266667pt;}
.ls2c{letter-spacing:40.533333pt;}
.ls2d{letter-spacing:41.066667pt;}
.ls17{letter-spacing:43.008000pt;}
.ls36{letter-spacing:48.533333pt;}
.ls31{letter-spacing:51.733333pt;}
.ls3a{letter-spacing:65.013333pt;}
.ls3b{letter-spacing:65.066667pt;}
.ls4c{letter-spacing:91.008000pt;}
.ls4e{letter-spacing:91.141333pt;}
.ls2a{letter-spacing:91.618667pt;}
.ls15{letter-spacing:105.493333pt;}
.ls4b{letter-spacing:123.008000pt;}
.ls4a{letter-spacing:123.141333pt;}
.ls33{letter-spacing:356.586667pt;}
.ws14{word-spacing:-16.192000pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.080000pt;}
.ws10{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.wsf{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
.ws11{word-spacing:5.205333pt;}
.wsd{word-spacing:5.440000pt;}
.wse{word-spacing:59.946667pt;}
.ws12{word-spacing:173.325333pt;}
.ws13{word-spacing:185.805333pt;}
._2e{margin-left:-10.618667pt;}
._3a{margin-left:-8.680000pt;}
._33{margin-left:-7.762667pt;}
._7{margin-left:-4.224000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._13{width:2.400000pt;}
._2a{width:3.424000pt;}
._22{width:4.416000pt;}
._23{width:5.418667pt;}
._25{width:6.448000pt;}
._26{width:7.424000pt;}
._6{width:8.896000pt;}
._8{width:10.240000pt;}
._9{width:11.770667pt;}
._21{width:12.858667pt;}
._18{width:14.592000pt;}
._28{width:17.184000pt;}
._5{width:18.090667pt;}
._4{width:19.205333pt;}
._11{width:20.474667pt;}
._a{width:21.824000pt;}
._b{width:22.784000pt;}
._31{width:23.936000pt;}
._29{width:25.178667pt;}
._3c{width:26.368000pt;}
._12{width:27.776000pt;}
._16{width:29.120000pt;}
._17{width:30.272000pt;}
._c{width:31.168000pt;}
._d{width:32.256000pt;}
._32{width:33.856000pt;}
._2c{width:35.029333pt;}
._14{width:36.138667pt;}
._15{width:37.120000pt;}
._19{width:38.272000pt;}
._1a{width:39.232000pt;}
._e{width:40.485333pt;}
._f{width:41.642667pt;}
._20{width:43.477333pt;}
._3d{width:44.613333pt;}
._3e{width:45.845333pt;}
._4d{width:46.810667pt;}
._2f{width:47.845333pt;}
._30{width:48.757333pt;}
._37{width:49.856000pt;}
._4e{width:50.752000pt;}
._35{width:51.733333pt;}
._1e{width:53.248000pt;}
._1f{width:54.656000pt;}
._48{width:55.808000pt;}
._49{width:56.736000pt;}
._54{width:58.112000pt;}
._40{width:61.312000pt;}
._41{width:62.400000pt;}
._39{width:65.024000pt;}
._24{width:66.688000pt;}
._44{width:67.584000pt;}
._46{width:68.864000pt;}
._2b{width:70.378667pt;}
._1c{width:72.192000pt;}
._1d{width:73.088000pt;}
._58{width:74.330667pt;}
._52{width:75.456000pt;}
._4a{width:76.352000pt;}
._4b{width:77.248000pt;}
._27{width:78.592000pt;}
._1b{width:80.704000pt;}
._45{width:82.133333pt;}
._4c{width:83.882667pt;}
._57{width:89.728000pt;}
._38{width:91.072000pt;}
._3f{width:106.389333pt;}
._42{width:110.400000pt;}
._43{width:111.488000pt;}
._47{width:116.032000pt;}
._10{width:117.376000pt;}
._4f{width:123.648000pt;}
._50{width:125.824000pt;}
._34{width:127.424000pt;}
._53{width:128.645333pt;}
._56{width:148.544000pt;}
._2d{width:158.976000pt;}
._55{width:164.544000pt;}
._59{width:183.360000pt;}
._36{width:249.280000pt;}
._51{width:310.378667pt;}
._3b{width:397.925333pt;}
._5a{width:426.240000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y20{bottom:3.466667pt;}
.y22{bottom:3.480000pt;}
.yc9{bottom:4.013333pt;}
.ycb{bottom:4.280000pt;}
.yc7{bottom:4.546667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.yc5{bottom:13.480000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y1f{bottom:21.866667pt;}
.y24{bottom:21.906667pt;}
.yca{bottom:22.813333pt;}
.yc8{bottom:23.333333pt;}
.yc6{bottom:23.480000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1e{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1d{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1c{bottom:77.066667pt;}
.y1b{bottom:95.466667pt;}
.yed{bottom:98.433333pt;}
.y12f{bottom:101.633333pt;}
.y15f{bottom:102.566667pt;}
.y68{bottom:110.566667pt;}
.y3d{bottom:111.233333pt;}
.y1a{bottom:113.866667pt;}
.yec{bottom:119.633333pt;}
.y12e{bottom:120.033333pt;}
.y15e{bottom:120.966667pt;}
.yd1{bottom:123.500000pt;}
.y93{bottom:124.300000pt;}
.yaf{bottom:126.966667pt;}
.y67{bottom:128.566667pt;}
.y105{bottom:131.766667pt;}
.y19{bottom:132.266667pt;}
.y3c{bottom:132.433333pt;}
.yeb{bottom:137.373333pt;}
.y12d{bottom:138.440000pt;}
.y15d{bottom:139.373333pt;}
.yd0{bottom:144.560000pt;}
.y92{bottom:145.640000pt;}
.yae{bottom:148.173333pt;}
.y18{bottom:150.666667pt;}
.y66{bottom:151.373333pt;}
.y104{bottom:152.960000pt;}
.y3b{bottom:153.493333pt;}
.y12c{bottom:156.840000pt;}
.y15c{bottom:157.773333pt;}
.ycf{bottom:165.640000pt;}
.y91{bottom:167.106667pt;}
.yad{bottom:169.373333pt;}
.y65{bottom:171.773333pt;}
.y103{bottom:174.040000pt;}
.y3a{bottom:174.706667pt;}
.y12b{bottom:175.240000pt;}
.y15b{bottom:176.173333pt;}
.yce{bottom:186.706667pt;}
.y90{bottom:188.306667pt;}
.yac{bottom:190.440000pt;}
.y64{bottom:192.973333pt;}
.y12a{bottom:193.640000pt;}
.y15a{bottom:194.560000pt;}
.y102{bottom:195.226667pt;}
.y39{bottom:195.906667pt;}
.ycd{bottom:207.773333pt;}
.y8f{bottom:210.706667pt;}
.yab{bottom:211.640000pt;}
.y129{bottom:212.040000pt;}
.y159{bottom:212.960000pt;}
.y63{bottom:214.173333pt;}
.y101{bottom:216.440000pt;}
.y38{bottom:216.973333pt;}
.ycc{bottom:228.840000pt;}
.y128{bottom:230.440000pt;}
.y158{bottom:231.373333pt;}
.yaa{bottom:232.840000pt;}
.y8e{bottom:233.106667pt;}
.y62{bottom:235.240000pt;}
.y100{bottom:237.506667pt;}
.y37{bottom:238.173333pt;}
.y127{bottom:248.840000pt;}
.y157{bottom:249.773333pt;}
.yc4{bottom:249.893333pt;}
.y8d{bottom:250.840000pt;}
.ya9{bottom:253.906667pt;}
.y61{bottom:256.440000pt;}
.yff{bottom:258.706667pt;}
.y36{bottom:259.373333pt;}
.y126{bottom:267.226667pt;}
.y156{bottom:268.040000pt;}
.y8b{bottom:271.240000pt;}
.ya8{bottom:275.106667pt;}
.y60{bottom:277.640000pt;}
.yfe{bottom:279.906667pt;}
.y35{bottom:280.440000pt;}
.y125{bottom:285.626667pt;}
.y155{bottom:286.440000pt;}
.y8c{bottom:294.973333pt;}
.ya7{bottom:296.306667pt;}
.yc3{bottom:297.106667pt;}
.y5f{bottom:298.706667pt;}
.yfd{bottom:301.106667pt;}
.y34{bottom:301.640000pt;}
.y124{bottom:304.040000pt;}
.y154{bottom:304.840000pt;}
.y8a{bottom:309.373333pt;}
.ya6{bottom:317.373333pt;}
.yc2{bottom:318.706667pt;}
.y5e{bottom:319.906667pt;}
.yfc{bottom:322.173333pt;}
.y123{bottom:322.440000pt;}
.y33{bottom:322.840000pt;}
.y153{bottom:323.240000pt;}
.y89{bottom:330.573333pt;}
.ya5{bottom:338.600000pt;}
.yc1{bottom:339.933333pt;}
.y122{bottom:340.866667pt;}
.y5d{bottom:341.133333pt;}
.y152{bottom:341.666667pt;}
.yfb{bottom:343.400000pt;}
.y32{bottom:344.066667pt;}
.y88{bottom:351.800000pt;}
.ya4{bottom:356.333333pt;}
.y121{bottom:359.266667pt;}
.y151{bottom:360.066667pt;}
.yc0{bottom:361.133333pt;}
.y5c{bottom:362.200000pt;}
.yfa{bottom:364.600000pt;}
.y31{bottom:365.133333pt;}
.y87{bottom:372.866667pt;}
.y120{bottom:377.666667pt;}
.y150{bottom:378.466667pt;}
.ybf{bottom:382.200000pt;}
.y5b{bottom:383.400000pt;}
.yf9{bottom:385.666667pt;}
.y30{bottom:386.333333pt;}
.y86{bottom:394.066667pt;}
.yea{bottom:394.333333pt;}
.y11f{bottom:396.066667pt;}
.y14f{bottom:396.866667pt;}
.ybe{bottom:403.400000pt;}
.y5a{bottom:404.600000pt;}
.yf8{bottom:406.866667pt;}
.y2f{bottom:407.533333pt;}
.y11e{bottom:414.333333pt;}
.y85{bottom:415.266667pt;}
.ye9{bottom:415.533333pt;}
.ybd{bottom:424.600000pt;}
.y59{bottom:425.800000pt;}
.yf7{bottom:428.066667pt;}
.y2e{bottom:428.600000pt;}
.y11d{bottom:432.733333pt;}
.y14e{bottom:433.666667pt;}
.y84{bottom:436.333333pt;}
.ye8{bottom:436.733333pt;}
.ybc{bottom:445.666667pt;}
.y58{bottom:446.866667pt;}
.yf6{bottom:449.133333pt;}
.y2d{bottom:449.800000pt;}
.y11c{bottom:451.133333pt;}
.y14d{bottom:452.066667pt;}
.y83{bottom:457.533333pt;}
.ye7{bottom:457.933333pt;}
.ybb{bottom:466.866667pt;}
.y57{bottom:468.066667pt;}
.y11b{bottom:469.533333pt;}
.yf5{bottom:470.333333pt;}
.y14c{bottom:470.466667pt;}
.y2c{bottom:471.000000pt;}
.ye6{bottom:479.000000pt;}
.y82{bottom:479.133333pt;}
.y11a{bottom:487.933333pt;}
.yba{bottom:488.066667pt;}
.y14b{bottom:488.866667pt;}
.y56{bottom:489.266667pt;}
.yf4{bottom:491.533333pt;}
.y2b{bottom:492.066667pt;}
.ye5{bottom:500.200000pt;}
.y81{bottom:501.533333pt;}
.y119{bottom:506.333333pt;}
.y14a{bottom:507.266667pt;}
.yb9{bottom:509.133333pt;}
.y55{bottom:510.466667pt;}
.yf3{bottom:512.600000pt;}
.y2a{bottom:513.266667pt;}
.ye4{bottom:521.400000pt;}
.y80{bottom:523.133333pt;}
.y118{bottom:524.733333pt;}
.y149{bottom:525.666667pt;}
.yb8{bottom:526.866667pt;}
.y54{bottom:532.866667pt;}
.yf2{bottom:533.800000pt;}
.y29{bottom:534.466667pt;}
.ye3{bottom:542.466667pt;}
.y117{bottom:543.133333pt;}
.y148{bottom:544.066667pt;}
.y7f{bottom:545.533333pt;}
.yf1{bottom:555.000000pt;}
.y53{bottom:555.266667pt;}
.y28{bottom:555.533333pt;}
.y116{bottom:561.533333pt;}
.y147{bottom:562.466667pt;}
.ye2{bottom:563.666667pt;}
.y7e{bottom:566.733333pt;}
.yf0{bottom:576.066667pt;}
.y52{bottom:576.466667pt;}
.y27{bottom:576.733333pt;}
.y115{bottom:579.933333pt;}
.y146{bottom:580.866667pt;}
.ye1{bottom:584.866667pt;}
.y7d{bottom:589.133333pt;}
.yef{bottom:597.266667pt;}
.y51{bottom:597.666667pt;}
.y26{bottom:597.933333pt;}
.y114{bottom:598.333333pt;}
.y145{bottom:599.266667pt;}
.ye0{bottom:605.933333pt;}
.y7c{bottom:611.400000pt;}
.yee{bottom:615.000000pt;}
.y113{bottom:616.733333pt;}
.y144{bottom:617.666667pt;}
.y50{bottom:620.066667pt;}
.y7b{bottom:622.600000pt;}
.y25{bottom:627.000000pt;}
.ydf{bottom:627.133333pt;}
.y112{bottom:635.133333pt;}
.y143{bottom:636.066667pt;}
.y4f{bottom:641.666667pt;}
.y23{bottom:641.933333pt;}
.yb7{bottom:643.800000pt;}
.yde{bottom:648.333333pt;}
.y111{bottom:653.533333pt;}
.y142{bottom:654.466667pt;}
.y7a{bottom:656.906667pt;}
.ya3{bottom:659.173333pt;}
.y4e{bottom:662.773333pt;}
.yb6{bottom:664.906667pt;}
.ydd{bottom:669.440000pt;}
.y110{bottom:671.973333pt;}
.y141{bottom:672.906667pt;}
.y79{bottom:678.106667pt;}
.y21{bottom:678.760000pt;}
.ya2{bottom:680.373333pt;}
.y4d{bottom:683.973333pt;}
.yb5{bottom:686.106667pt;}
.y10f{bottom:690.373333pt;}
.ydc{bottom:690.640000pt;}
.y140{bottom:691.306667pt;}
.y17{bottom:697.173333pt;}
.y78{bottom:699.173333pt;}
.ya1{bottom:701.573333pt;}
.y4c{bottom:705.173333pt;}
.yb4{bottom:707.293333pt;}
.y10e{bottom:708.773333pt;}
.y13f{bottom:709.706667pt;}
.ydb{bottom:711.840000pt;}
.y77{bottom:720.373333pt;}
.ya0{bottom:722.626667pt;}
.y4b{bottom:726.240000pt;}
.y10d{bottom:727.173333pt;}
.y13e{bottom:728.106667pt;}
.yb3{bottom:728.506667pt;}
.yda{bottom:732.906667pt;}
.y76{bottom:741.573333pt;}
.y9f{bottom:743.840000pt;}
.y10c{bottom:745.573333pt;}
.y13d{bottom:746.506667pt;}
.y4a{bottom:747.440000pt;}
.yb2{bottom:749.573333pt;}
.yd9{bottom:754.106667pt;}
.y75{bottom:762.640000pt;}
.y10b{bottom:763.960000pt;}
.y13c{bottom:764.906667pt;}
.y9e{bottom:765.040000pt;}
.y49{bottom:768.640000pt;}
.yb1{bottom:770.773333pt;}
.yd8{bottom:775.440000pt;}
.y10a{bottom:782.373333pt;}
.y13b{bottom:783.306667pt;}
.y74{bottom:783.840000pt;}
.y9d{bottom:786.240000pt;}
.yb0{bottom:788.506667pt;}
.y48{bottom:789.706667pt;}
.yd7{bottom:793.440000pt;}
.y109{bottom:800.773333pt;}
.y13a{bottom:801.706667pt;}
.y73{bottom:805.040000pt;}
.y9c{bottom:807.306667pt;}
.y47{bottom:810.906667pt;}
.yd5{bottom:813.973333pt;}
.y108{bottom:819.173333pt;}
.y139{bottom:820.106667pt;}
.y72{bottom:826.106667pt;}
.y9b{bottom:828.506667pt;}
.y46{bottom:832.106667pt;}
.y107{bottom:837.573333pt;}
.yd6{bottom:837.706667pt;}
.y138{bottom:838.506667pt;}
.y71{bottom:847.306667pt;}
.y162{bottom:848.640000pt;}
.y9a{bottom:849.706667pt;}
.yd4{bottom:852.106667pt;}
.y45{bottom:853.306667pt;}
.y106{bottom:855.973333pt;}
.y137{bottom:856.906667pt;}
.y16{bottom:865.973333pt;}
.y70{bottom:868.506667pt;}
.y161{bottom:869.840000pt;}
.y99{bottom:870.773333pt;}
.yd3{bottom:873.706667pt;}
.y44{bottom:874.373333pt;}
.y136{bottom:875.306667pt;}
.y15{bottom:883.040000pt;}
.y6f{bottom:889.573333pt;}
.y160{bottom:890.906667pt;}
.y98{bottom:891.973333pt;}
.y135{bottom:893.706667pt;}
.yd2{bottom:895.306667pt;}
.y43{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y6e{bottom:910.773333pt;}
.y134{bottom:912.106667pt;}
.y97{bottom:913.706667pt;}
.y42{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y133{bottom:930.506667pt;}
.y6d{bottom:933.573333pt;}
.y96{bottom:935.573333pt;}
.y41{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y132{bottom:948.906667pt;}
.y6c{bottom:956.373333pt;}
.y11{bottom:956.640000pt;}
.y95{bottom:957.706667pt;}
.y40{bottom:959.040000pt;}
.y131{bottom:967.306667pt;}
.y10{bottom:975.066667pt;}
.y6b{bottom:977.733333pt;}
.y94{bottom:978.933333pt;}
.y3f{bottom:980.266667pt;}
.y130{bottom:985.733333pt;}
.y6a{bottom:1000.133333pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y69{bottom:1021.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h11{height:36.833333pt;}
.h1e{height:38.400000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h1a{height:56.223958pt;}
.hf{height:56.406250pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1c{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h21{height:65.781915pt;}
.h2{height:73.281250pt;}
.h14{height:79.375000pt;}
.h1d{height:79.637292pt;}
.h1f{height:80.223958pt;}
.h13{height:81.508333pt;}
.h19{height:81.823958pt;}
.h12{height:82.041667pt;}
.h18{height:82.357292pt;}
.h15{height:124.201667pt;}
.h17{height:126.308333pt;}
.h16{height:130.890625pt;}
.h20{height:161.508333pt;}
.h1b{height:163.108333pt;}
.he{height:165.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:67.066667pt;}
.wb{width:90.533333pt;}
.wa{width:91.233333pt;}
.wc{width:97.466667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1b{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x32{left:39.866655pt;}
.x22{left:49.733322pt;}
.x23{left:63.333322pt;}
.x1f{left:64.266655pt;}
.x34{left:68.133322pt;}
.x33{left:73.999988pt;}
.x1c{left:85.066655pt;}
.x10{left:86.666655pt;}
.x1a{left:89.066667pt;}
.x19{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.x20{left:109.099988pt;}
.xa{left:113.893333pt;}
.x21{left:133.099988pt;}
.x35{left:135.893322pt;}
.x2b{left:159.493322pt;}
.x11{left:171.106655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x36{left:341.933322pt;}
.x2c{left:384.333322pt;}
.x1d{left:406.466655pt;}
.x14{left:413.266655pt;}
.x1e{left:453.666655pt;}
.x26{left:460.333322pt;}
.x2f{left:474.866667pt;}
.x24{left:477.666655pt;}
.x15{left:496.599988pt;}
.x25{left:501.666655pt;}
.x27{left:513.399988pt;}
.x28{left:516.466655pt;}
.x12{left:520.066655pt;}
.x13{left:530.333322pt;}
.x16{left:539.799988pt;}
.x17{left:553.799988pt;}
.xc{left:555.933333pt;}
.x30{left:566.773333pt;}
.x2a{left:576.226655pt;}
.x29{left:582.106655pt;}
.xf{left:634.360000pt;}
.x31{left:657.973333pt;}
.x2{left:728.106655pt;}
.x18{left:756.106655pt;}
.x2e{left:759.039988pt;}
.x37{left:763.293322pt;}
.x2d{left:777.039988pt;}
}




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