
    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_d3ff7edfe27e1bd145cc093b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c681dba728da6d26e44f5089.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d8d57656a5724bc5af07f6c2.woff2')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_498453af2e1da628a9708fdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_e743ec8d017de872f83ee918.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_e34fa530b8957a1d24a64037.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_ed1f9a741383658f67a33add.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_b56d65808f55dbdf781fb149.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-41.340000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.480000px;}
.v8{vertical-align:13.980000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:35.820000px;}
.ls7{letter-spacing:-3.186000px;}
.ls8{letter-spacing:-2.898000px;}
.ls9{letter-spacing:-2.670000px;}
.ls35{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.544800px;}
.ls37{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.533400px;}
.ls5{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.303000px;}
.ls34{letter-spacing:-0.286800px;}
.ls2b{letter-spacing:-0.248400px;}
.ls1d{letter-spacing:-0.240600px;}
.ls1b{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.lsc{letter-spacing:-0.115800px;}
.ls33{letter-spacing:-0.107400px;}
.lsb{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls26{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.060600px;}
.ls30{letter-spacing:0.121680px;}
.ls12{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls18{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.174240px;}
.ls21{letter-spacing:0.175200px;}
.lsa{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.186600px;}
.ls25{letter-spacing:0.197400px;}
.ls1c{letter-spacing:0.209400px;}
.ls22{letter-spacing:0.218400px;}
.ls1a{letter-spacing:0.274800px;}
.ls29{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.306000px;}
.ls1e{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.433440px;}
.ls2f{letter-spacing:0.479520px;}
.ls2c{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.858000px;}
.ls36{letter-spacing:0.906000px;}
.ls28{letter-spacing:0.960480px;}
.ls2a{letter-spacing:1.614000px;}
.ls1f{letter-spacing:5.214240px;}
.ls19{letter-spacing:6.654240px;}
.ls20{letter-spacing:6.774240px;}
.lsd{letter-spacing:7.380000px;}
.ls31{letter-spacing:12.186720px;}
.ls2e{letter-spacing:42.426720px;}
.ls16{letter-spacing:117.678240px;}
.ls10{letter-spacing:202.638240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws20{word-spacing:-18.000000px;}
.ws15{word-spacing:-15.238800px;}
.ws14{word-spacing:-14.993280px;}
.ws1b{word-spacing:-14.976000px;}
.ws3{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws25{word-spacing:-14.411760px;}
.ws11{word-spacing:-13.811760px;}
.wse{word-spacing:-13.780560px;}
.ws10{word-spacing:-13.724160px;}
.wsf{word-spacing:-13.715160px;}
.wsd{word-spacing:-13.692360px;}
.ws17{word-spacing:-13.646160px;}
.ws23{word-spacing:-13.566360px;}
.ws7{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.440960px;}
.ws22{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws16{word-spacing:-13.257360px;}
.ws24{word-spacing:-13.218960px;}
.wsc{word-spacing:-13.202760px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
.ws1c{word-spacing:86.724000px;}
.ws1d{word-spacing:86.976000px;}
.ws1e{word-spacing:87.096000px;}
.ws1f{word-spacing:87.156000px;}
.ws21{word-spacing:173.861760px;}
.ws19{word-spacing:231.456000px;}
.ws18{word-spacing:234.540000px;}
.ws1a{word-spacing:234.660000px;}
.ws13{word-spacing:598.563600px;}
._1b{margin-left:-533.278560px;}
._1c{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._11{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._15{margin-left:-222.774000px;}
._1f{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._16{margin-left:-200.514720px;}
._1e{margin-left:-190.074240px;}
._23{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._22{margin-left:-145.392000px;}
._c{margin-left:-134.192160px;}
._1d{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._21{margin-left:-109.266240px;}
._1a{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._19{margin-left:-86.399760px;}
._18{margin-left:-83.520000px;}
._12{margin-left:-81.351360px;}
._14{margin-left:-66.703680px;}
._20{margin-left:-53.422560px;}
._13{margin-left:-49.123920px;}
._17{margin-left:-32.468640px;}
._28{margin-left:-10.678080px;}
._3b{margin-left:-7.920000px;}
._25{margin-left:-5.127120px;}
._27{margin-left:-4.007520px;}
._24{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.509600px;}
._2b{width:2.717040px;}
._2a{width:4.214400px;}
._2f{width:5.505600px;}
._30{width:7.113600px;}
._2e{width:8.246880px;}
._2d{width:9.501840px;}
._2c{width:11.473920px;}
._31{width:12.495360px;}
._32{width:14.641200px;}
._33{width:16.368000px;}
._26{width:24.257280px;}
._3c{width:37.708560px;}
._34{width:54.082800px;}
._36{width:104.112720px;}
._38{width:132.762360px;}
._3a{width:189.020880px;}
._39{width:199.060560px;}
._35{width:202.638240px;}
._37{width:282.605040px;}
.fc8{color:rgb(5,99,193);}
.fc5{color:rgb(255,0,0);}
.fc2{color:rgb(14,16,26);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y121{bottom:5.550000px;}
.y11f{bottom:5.610000px;}
.y87{bottom:6.480000px;}
.y68{bottom:6.660000px;}
.y81{bottom:6.705000px;}
.yb0{bottom:6.840000px;}
.y75{bottom:7.740000px;}
.y70{bottom:7.920000px;}
.y6e{bottom:8.280000px;}
.y69{bottom:8.310000px;}
.yb8{bottom:8.460000px;}
.yb7{bottom:8.640000px;}
.y6f{bottom:9.000000px;}
.yb3{bottom:9.720000px;}
.y6d{bottom:9.900000px;}
.ye9{bottom:14.580000px;}
.y11d{bottom:15.045000px;}
.y163{bottom:17.100000px;}
.ye6{bottom:17.280000px;}
.ya9{bottom:17.460000px;}
.yb5{bottom:21.240000px;}
.y10d{bottom:22.140000px;}
.ye7{bottom:27.720000px;}
.y116{bottom:32.325000px;}
.y10e{bottom:32.580000px;}
.y6b{bottom:34.020000px;}
.y84{bottom:36.180000px;}
.y10c{bottom:43.200000px;}
.y10a{bottom:45.180000px;}
.y117{bottom:54.180000px;}
.y7a{bottom:57.240000px;}
.y161{bottom:58.530000px;}
.y6{bottom:61.560000px;}
.y118{bottom:76.035000px;}
.y15f{bottom:83.010000px;}
.y66{bottom:91.260000px;}
.y6a{bottom:93.060000px;}
.y7e{bottom:94.005000px;}
.y119{bottom:97.890000px;}
.y147{bottom:99.540000px;}
.y31{bottom:99.720000px;}
.y158{bottom:101.340000px;}
.ya7{bottom:104.580000px;}
.y73{bottom:105.660000px;}
.ye4{bottom:105.840000px;}
.y114{bottom:109.800000px;}
.y65{bottom:112.320000px;}
.y6c{bottom:117.180000px;}
.y11a{bottom:119.730000px;}
.y146{bottom:120.600000px;}
.y30{bottom:120.780000px;}
.ya6{bottom:125.640000px;}
.ye3{bottom:126.900000px;}
.y64{bottom:133.380000px;}
.y113{bottom:134.820000px;}
.y159{bottom:136.695000px;}
.y165{bottom:138.240000px;}
.y14d{bottom:139.290000px;}
.y11b{bottom:141.630000px;}
.y145{bottom:141.660000px;}
.y2f{bottom:141.840000px;}
.y67{bottom:143.820000px;}
.ya5{bottom:146.700000px;}
.ye2{bottom:147.960000px;}
.y157{bottom:153.645000px;}
.y63{bottom:154.470000px;}
.y154{bottom:155.700000px;}
.y156{bottom:157.785000px;}
.y14c{bottom:158.865000px;}
.y112{bottom:159.870000px;}
.y144{bottom:162.750000px;}
.y2e{bottom:162.930000px;}
.y11c{bottom:163.470000px;}
.ya4{bottom:167.790000px;}
.ye1{bottom:169.050000px;}
.y14f{bottom:169.455000px;}
.y153{bottom:170.385000px;}
.y160{bottom:170.790000px;}
.y15a{bottom:172.050000px;}
.y14b{bottom:174.270000px;}
.y62{bottom:175.530000px;}
.y155{bottom:180.690000px;}
.y151{bottom:180.975000px;}
.y143{bottom:183.810000px;}
.y2d{bottom:183.990000px;}
.y111{bottom:185.070000px;}
.ya3{bottom:188.850000px;}
.y61{bottom:196.590000px;}
.y150{bottom:197.025000px;}
.y152{bottom:198.210000px;}
.ye0{bottom:199.110000px;}
.y14a{bottom:199.515000px;}
.y142{bottom:204.870000px;}
.y2c{bottom:205.050000px;}
.y15b{bottom:207.390000px;}
.ya2{bottom:209.910000px;}
.y110{bottom:210.090000px;}
.y60{bottom:217.650000px;}
.ydf{bottom:220.170000px;}
.y141{bottom:225.930000px;}
.y2b{bottom:226.110000px;}
.y10f{bottom:235.110000px;}
.y164{bottom:237.450000px;}
.y122{bottom:237.810000px;}
.y5f{bottom:238.710000px;}
.ya1{bottom:239.970000px;}
.yde{bottom:241.230000px;}
.y15c{bottom:242.745000px;}
.y14e{bottom:244.470000px;}
.y140{bottom:246.990000px;}
.y2a{bottom:247.170000px;}
.y5e{bottom:259.770000px;}
.y109{bottom:260.130000px;}
.ya0{bottom:261.030000px;}
.ydd{bottom:262.110000px;}
.y13f{bottom:268.050000px;}
.y29{bottom:268.230000px;}
.y149{bottom:270.330000px;}
.y15d{bottom:278.130000px;}
.y5d{bottom:280.830000px;}
.y9f{bottom:282.090000px;}
.ydc{bottom:283.170000px;}
.y13e{bottom:289.110000px;}
.y28{bottom:289.290000px;}
.y5c{bottom:301.890000px;}
.y9e{bottom:303.150000px;}
.ydb{bottom:304.230000px;}
.y13d{bottom:310.170000px;}
.y27{bottom:310.350000px;}
.y15e{bottom:313.485000px;}
.y5b{bottom:322.950000px;}
.y9d{bottom:324.210000px;}
.yda{bottom:325.290000px;}
.y13c{bottom:331.230000px;}
.y26{bottom:331.410000px;}
.y10b{bottom:333.750000px;}
.y162{bottom:340.815000px;}
.y5a{bottom:344.010000px;}
.y9c{bottom:345.270000px;}
.yd9{bottom:346.350000px;}
.y13b{bottom:352.290000px;}
.y25{bottom:352.470000px;}
.y148{bottom:358.020000px;}
.y59{bottom:365.070000px;}
.y108{bottom:365.430000px;}
.y9b{bottom:366.330000px;}
.yd8{bottom:367.410000px;}
.y13a{bottom:373.350000px;}
.y24{bottom:373.530000px;}
.y58{bottom:386.130000px;}
.y107{bottom:386.490000px;}
.y9a{bottom:387.390000px;}
.yd7{bottom:388.470000px;}
.y23{bottom:394.410000px;}
.yd6{bottom:403.815000px;}
.y57{bottom:407.235000px;}
.y106{bottom:407.595000px;}
.y99{bottom:408.495000px;}
.y22{bottom:415.515000px;}
.yd5{bottom:425.595000px;}
.yb2{bottom:426.675000px;}
.y56{bottom:428.295000px;}
.y105{bottom:428.655000px;}
.y98{bottom:429.555000px;}
.y21{bottom:436.575000px;}
.yd4{bottom:447.375000px;}
.y55{bottom:449.355000px;}
.y104{bottom:449.715000px;}
.y97{bottom:450.615000px;}
.yb1{bottom:454.575000px;}
.y20{bottom:457.635000px;}
.yd3{bottom:469.155000px;}
.y54{bottom:470.415000px;}
.y103{bottom:470.775000px;}
.y96{bottom:471.675000px;}
.yaf{bottom:476.355000px;}
.y1f{bottom:478.695000px;}
.yd2{bottom:490.935000px;}
.y53{bottom:491.475000px;}
.y102{bottom:491.835000px;}
.y95{bottom:492.735000px;}
.yae{bottom:498.495000px;}
.y1e{bottom:499.755000px;}
.y52{bottom:512.535000px;}
.yd1{bottom:512.715000px;}
.y94{bottom:513.795000px;}
.yad{bottom:520.275000px;}
.y1d{bottom:520.815000px;}
.y101{bottom:521.895000px;}
.y51{bottom:533.595000px;}
.yd0{bottom:534.495000px;}
.y93{bottom:534.855000px;}
.y1c{bottom:541.875000px;}
.yac{bottom:542.055000px;}
.y100{bottom:542.955000px;}
.y50{bottom:554.655000px;}
.y92{bottom:555.735000px;}
.ycf{bottom:558.435000px;}
.y1b{bottom:562.935000px;}
.yab{bottom:563.835000px;}
.yff{bottom:564.015000px;}
.y4f{bottom:575.715000px;}
.y91{bottom:576.795000px;}
.yce{bottom:580.215000px;}
.y1a{bottom:583.995000px;}
.yfe{bottom:585.075000px;}
.ya8{bottom:585.795000px;}
.y4e{bottom:596.775000px;}
.y90{bottom:597.855000px;}
.ycc{bottom:601.995000px;}
.y19{bottom:605.055000px;}
.yfd{bottom:606.135000px;}
.yaa{bottom:607.575000px;}
.y4d{bottom:617.835000px;}
.y8f{bottom:618.915000px;}
.ycd{bottom:623.775000px;}
.y18{bottom:626.115000px;}
.yfc{bottom:627.195000px;}
.y4c{bottom:638.895000px;}
.y8e{bottom:639.975000px;}
.y17{bottom:647.175000px;}
.y115{bottom:647.280000px;}
.yfb{bottom:648.255000px;}
.ycb{bottom:652.245000px;}
.y4b{bottom:659.805000px;}
.y8d{bottom:661.065000px;}
.y139{bottom:668.265000px;}
.yfa{bottom:669.345000px;}
.y16{bottom:670.785000px;}
.yca{bottom:673.305000px;}
.y4a{bottom:680.865000px;}
.y8c{bottom:682.125000px;}
.y138{bottom:689.325000px;}
.yf9{bottom:690.405000px;}
.yc9{bottom:694.365000px;}
.y15{bottom:700.665000px;}
.y49{bottom:701.925000px;}
.y8b{bottom:703.185000px;}
.y137{bottom:710.385000px;}
.yf8{bottom:711.465000px;}
.yc8{bottom:715.425000px;}
.y14{bottom:721.725000px;}
.y48{bottom:722.985000px;}
.y8a{bottom:724.245000px;}
.y136{bottom:731.445000px;}
.yf7{bottom:732.525000px;}
.y120{bottom:736.020000px;}
.yc7{bottom:736.485000px;}
.y13{bottom:742.785000px;}
.y47{bottom:744.045000px;}
.y89{bottom:745.305000px;}
.y11e{bottom:747.540000px;}
.y135{bottom:752.505000px;}
.yf6{bottom:753.585000px;}
.y12{bottom:763.845000px;}
.y46{bottom:765.105000px;}
.y88{bottom:766.365000px;}
.yc6{bottom:766.545000px;}
.y134{bottom:773.565000px;}
.yf5{bottom:774.645000px;}
.y83{bottom:781.665000px;}
.y11{bottom:784.905000px;}
.y45{bottom:786.165000px;}
.yc5{bottom:787.605000px;}
.y133{bottom:794.625000px;}
.yf4{bottom:795.705000px;}
.y86{bottom:805.785000px;}
.y10{bottom:805.965000px;}
.y44{bottom:807.225000px;}
.yc4{bottom:808.665000px;}
.y132{bottom:815.685000px;}
.yf3{bottom:816.765000px;}
.yf{bottom:827.025000px;}
.y43{bottom:828.285000px;}
.yc3{bottom:829.725000px;}
.y85{bottom:829.905000px;}
.y131{bottom:836.745000px;}
.yf2{bottom:837.825000px;}
.ye{bottom:848.085000px;}
.y42{bottom:849.345000px;}
.yc2{bottom:850.785000px;}
.y7d{bottom:854.025000px;}
.y130{bottom:857.805000px;}
.yf1{bottom:858.885000px;}
.y41{bottom:870.405000px;}
.yd{bottom:871.305000px;}
.yc1{bottom:871.845000px;}
.y82{bottom:875.805000px;}
.y12f{bottom:878.865000px;}
.yf0{bottom:879.945000px;}
.y40{bottom:891.465000px;}
.yc0{bottom:892.905000px;}
.yc{bottom:897.585000px;}
.y12e{bottom:899.970000px;}
.yef{bottom:901.050000px;}
.y3f{bottom:912.570000px;}
.ybf{bottom:914.010000px;}
.yb{bottom:918.690000px;}
.y80{bottom:919.410000px;}
.y12d{bottom:921.030000px;}
.yee{bottom:922.110000px;}
.ybe{bottom:929.130000px;}
.y3e{bottom:933.630000px;}
.ya{bottom:935.430000px;}
.y7f{bottom:941.370000px;}
.y12c{bottom:942.090000px;}
.yed{bottom:943.170000px;}
.y3d{bottom:954.690000px;}
.y9{bottom:957.750000px;}
.y79{bottom:963.150000px;}
.yec{bottom:964.230000px;}
.y3c{bottom:975.750000px;}
.yeb{bottom:979.350000px;}
.ybd{bottom:980.070000px;}
.y8{bottom:982.950000px;}
.y12b{bottom:984.210000px;}
.y7c{bottom:987.270000px;}
.y3b{bottom:996.810000px;}
.yea{bottom:1001.130000px;}
.y12a{bottom:1005.270000px;}
.ybc{bottom:1005.630000px;}
.y7b{bottom:1011.390000px;}
.y7{bottom:1016.610000px;}
.y3a{bottom:1017.870000px;}
.ye8{bottom:1022.910000px;}
.y129{bottom:1026.150000px;}
.ybb{bottom:1031.190000px;}
.y72{bottom:1035.510000px;}
.y39{bottom:1038.930000px;}
.y128{bottom:1047.210000px;}
.ye5{bottom:1052.610000px;}
.y5{bottom:1055.310000px;}
.yba{bottom:1056.570000px;}
.y78{bottom:1059.630000px;}
.y38{bottom:1059.990000px;}
.y127{bottom:1068.270000px;}
.y37{bottom:1081.050000px;}
.yb9{bottom:1082.130000px;}
.y77{bottom:1083.930000px;}
.y4{bottom:1086.090000px;}
.y126{bottom:1089.330000px;}
.y36{bottom:1102.110000px;}
.y125{bottom:1104.630000px;}
.yb4{bottom:1107.690000px;}
.y76{bottom:1108.050000px;}
.y3{bottom:1116.870000px;}
.y35{bottom:1123.170000px;}
.y124{bottom:1129.650000px;}
.y74{bottom:1132.170000px;}
.yb6{bottom:1133.070000px;}
.y34{bottom:1144.230000px;}
.y2{bottom:1147.500000px;}
.y123{bottom:1154.700000px;}
.y71{bottom:1156.320000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h12{height:21.060000px;}
.h13{height:21.096000px;}
.h15{height:21.420000px;}
.h22{height:22.140000px;}
.h1b{height:23.040000px;}
.hd{height:23.400000px;}
.hf{height:23.436000px;}
.hc{height:24.300000px;}
.ha{height:24.336000px;}
.h19{height:24.660000px;}
.h1a{height:24.840000px;}
.h18{height:24.876000px;}
.h16{height:27.180000px;}
.h1d{height:28.980000px;}
.h25{height:38.100586px;}
.h28{height:38.202187px;}
.h8{height:38.671172px;}
.h21{height:41.726953px;}
.h2a{height:41.827500px;}
.h1c{height:42.120000px;}
.h14{height:42.840000px;}
.h2d{height:46.251562px;}
.hb{height:48.420000px;}
.h17{height:50.256000px;}
.h24{height:50.580586px;}
.h2c{height:50.800781px;}
.h2b{height:50.902383px;}
.h27{height:52.080586px;}
.h9{height:59.439023px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h10{height:71.640000px;}
.h1f{height:72.900000px;}
.h29{height:72.960586px;}
.h26{height:73.920586px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h1e{height:97.920000px;}
.h5{height:98.051133px;}
.h11{height:108.396000px;}
.he{height:120.096000px;}
.h20{height:265.500000px;}
.h23{height:369.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:65.556000px;}
.w29{width:69.480000px;}
.w28{width:74.520000px;}
.w25{width:75.060000px;}
.w1f{width:86.940000px;}
.w5{width:87.300000px;}
.w4{width:87.516000px;}
.w23{width:94.860000px;}
.w26{width:95.580000px;}
.w24{width:101.196000px;}
.wa{width:103.356000px;}
.wc{width:103.716000px;}
.w10{width:112.716000px;}
.w11{width:112.860000px;}
.w12{width:112.896000px;}
.w13{width:113.076000px;}
.w17{width:116.496000px;}
.w1a{width:117.036000px;}
.w18{width:118.296000px;}
.w19{width:124.380000px;}
.w1d{width:124.776000px;}
.wb{width:140.220000px;}
.we{width:159.690000px;}
.w21{width:176.610000px;}
.w8{width:180.930000px;}
.w15{width:181.290000px;}
.w1c{width:185.070000px;}
.w6{width:190.110000px;}
.w22{width:197.130000px;}
.w20{width:199.110000px;}
.wf{width:226.110000px;}
.w7{width:241.410000px;}
.w16{width:243.030000px;}
.w9{width:244.110000px;}
.w3{width:431.535000px;}
.w14{width:499.605000px;}
.wd{width:529.485000px;}
.w1b{width:542.085000px;}
.w27{width:556.200000px;}
.w2a{width:702.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:4.860000px;}
.xa{left:7.734000px;}
.x39{left:35.565000px;}
.x37{left:44.025000px;}
.x25{left:46.650000px;}
.x36{left:51.555000px;}
.x6{left:53.999987px;}
.x35{left:59.040000px;}
.x8{left:75.239987px;}
.x3c{left:80.999987px;}
.x2a{left:83.415000px;}
.x38{left:92.085000px;}
.x7{left:108.035987px;}
.x2e{left:110.370000px;}
.x1d{left:116.136000px;}
.x9{left:142.956000px;}
.x3b{left:144.285000px;}
.x24{left:156.060000px;}
.xe{left:162.029987px;}
.x5{left:164.729987px;}
.x26{left:168.690000px;}
.x16{left:175.530000px;}
.xf{left:181.830000px;}
.x1e{left:203.430000px;}
.x1a{left:258.510000px;}
.x2f{left:261.975000px;}
.x2c{left:264.089987px;}
.x3{left:286.814987px;}
.x13{left:302.835000px;}
.x21{left:307.695000px;}
.x2b{left:308.954987px;}
.x27{left:316.980000px;}
.xd{left:333.075000px;}
.x30{left:337.785000px;}
.x2{left:350.714987px;}
.x17{left:357.195000px;}
.x2d{left:358.634987px;}
.x10{left:363.135000px;}
.x3a{left:364.500000px;}
.x1f{left:402.915000px;}
.x31{left:413.565000px;}
.x15{left:416.055000px;}
.x4{left:419.294987px;}
.x1b{left:443.955000px;}
.x12{left:467.025000px;}
.x19{left:475.845000px;}
.x1{left:479.444987px;}
.x32{left:490.170000px;}
.x29{left:493.740000px;}
.x22{left:504.465000px;}
.x14{left:529.665000px;}
.x33{left:565.995000px;}
.x1c{left:569.085000px;}
.xb{left:574.845000px;}
.x20{left:579.885000px;}
.x18{left:601.125000px;}
.x11{left:607.965000px;}
.x34{left:641.775000px;}
.xc{left:662.730000px;}
.x23{left:681.450000px;}
.x3d{left:839.339987px;}
@media print{
.v7{vertical-align:-36.746667pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.093333pt;}
.v8{vertical-align:12.426667pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:31.840000pt;}
.ls7{letter-spacing:-2.832000pt;}
.ls8{letter-spacing:-2.576000pt;}
.ls9{letter-spacing:-2.373333pt;}
.ls35{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.484267pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.474133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.269333pt;}
.ls34{letter-spacing:-0.254933pt;}
.ls2b{letter-spacing:-0.220800pt;}
.ls1d{letter-spacing:-0.213867pt;}
.ls1b{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls33{letter-spacing:-0.095467pt;}
.lsb{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls26{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.053867pt;}
.ls30{letter-spacing:0.108160pt;}
.ls12{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls18{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.154880pt;}
.ls21{letter-spacing:0.155733pt;}
.lsa{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.165867pt;}
.ls25{letter-spacing:0.175467pt;}
.ls1c{letter-spacing:0.186133pt;}
.ls22{letter-spacing:0.194133pt;}
.ls1a{letter-spacing:0.244267pt;}
.ls29{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.272000pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.385280pt;}
.ls2f{letter-spacing:0.426240pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.762667pt;}
.ls36{letter-spacing:0.805333pt;}
.ls28{letter-spacing:0.853760pt;}
.ls2a{letter-spacing:1.434667pt;}
.ls1f{letter-spacing:4.634880pt;}
.ls19{letter-spacing:5.914880pt;}
.ls20{letter-spacing:6.021547pt;}
.lsd{letter-spacing:6.560000pt;}
.ls31{letter-spacing:10.832640pt;}
.ls2e{letter-spacing:37.712640pt;}
.ls16{letter-spacing:104.602880pt;}
.ls10{letter-spacing:180.122880pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws20{word-spacing:-16.000000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws14{word-spacing:-13.327360pt;}
.ws1b{word-spacing:-13.312000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.280000pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws25{word-spacing:-12.810453pt;}
.ws11{word-spacing:-12.277120pt;}
.wse{word-spacing:-12.249387pt;}
.ws10{word-spacing:-12.199253pt;}
.wsf{word-spacing:-12.191253pt;}
.wsd{word-spacing:-12.170987pt;}
.ws17{word-spacing:-12.129920pt;}
.ws23{word-spacing:-12.058987pt;}
.ws7{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.947520pt;}
.ws22{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws16{word-spacing:-11.784320pt;}
.ws24{word-spacing:-11.750187pt;}
.wsc{word-spacing:-11.735787pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
.ws1c{word-spacing:77.088000pt;}
.ws1d{word-spacing:77.312000pt;}
.ws1e{word-spacing:77.418667pt;}
.ws1f{word-spacing:77.472000pt;}
.ws21{word-spacing:154.543787pt;}
.ws19{word-spacing:205.738667pt;}
.ws18{word-spacing:208.480000pt;}
.ws1a{word-spacing:208.586667pt;}
.ws13{word-spacing:532.056533pt;}
._1b{margin-left:-474.025387pt;}
._1c{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._11{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._15{margin-left:-198.021333pt;}
._1f{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._16{margin-left:-178.235307pt;}
._1e{margin-left:-168.954880pt;}
._23{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._22{margin-left:-129.237333pt;}
._c{margin-left:-119.281920pt;}
._1d{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._21{margin-left:-97.125547pt;}
._1a{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._19{margin-left:-76.799787pt;}
._18{margin-left:-74.240000pt;}
._12{margin-left:-72.312320pt;}
._14{margin-left:-59.292160pt;}
._20{margin-left:-47.486720pt;}
._13{margin-left:-43.665707pt;}
._17{margin-left:-28.861013pt;}
._28{margin-left:-9.491627pt;}
._3b{margin-left:-7.040000pt;}
._25{margin-left:-4.557440pt;}
._27{margin-left:-3.562240pt;}
._24{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.341867pt;}
._2b{width:2.415147pt;}
._2a{width:3.746133pt;}
._2f{width:4.893867pt;}
._30{width:6.323200pt;}
._2e{width:7.330560pt;}
._2d{width:8.446080pt;}
._2c{width:10.199040pt;}
._31{width:11.106987pt;}
._32{width:13.014400pt;}
._33{width:14.549333pt;}
._26{width:21.562027pt;}
._3c{width:33.518720pt;}
._34{width:48.073600pt;}
._36{width:92.544640pt;}
._38{width:118.010987pt;}
._3a{width:168.018560pt;}
._39{width:176.942720pt;}
._35{width:180.122880pt;}
._37{width:251.204480pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:4.933333pt;}
.y11f{bottom:4.986667pt;}
.y87{bottom:5.760000pt;}
.y68{bottom:5.920000pt;}
.y81{bottom:5.960000pt;}
.yb0{bottom:6.080000pt;}
.y75{bottom:6.880000pt;}
.y70{bottom:7.040000pt;}
.y6e{bottom:7.360000pt;}
.y69{bottom:7.386667pt;}
.yb8{bottom:7.520000pt;}
.yb7{bottom:7.680000pt;}
.y6f{bottom:8.000000pt;}
.yb3{bottom:8.640000pt;}
.y6d{bottom:8.800000pt;}
.ye9{bottom:12.960000pt;}
.y11d{bottom:13.373333pt;}
.y163{bottom:15.200000pt;}
.ye6{bottom:15.360000pt;}
.ya9{bottom:15.520000pt;}
.yb5{bottom:18.880000pt;}
.y10d{bottom:19.680000pt;}
.ye7{bottom:24.640000pt;}
.y116{bottom:28.733333pt;}
.y10e{bottom:28.960000pt;}
.y6b{bottom:30.240000pt;}
.y84{bottom:32.160000pt;}
.y10c{bottom:38.400000pt;}
.y10a{bottom:40.160000pt;}
.y117{bottom:48.160000pt;}
.y7a{bottom:50.880000pt;}
.y161{bottom:52.026667pt;}
.y6{bottom:54.720000pt;}
.y118{bottom:67.586667pt;}
.y15f{bottom:73.786667pt;}
.y66{bottom:81.120000pt;}
.y6a{bottom:82.720000pt;}
.y7e{bottom:83.560000pt;}
.y119{bottom:87.013333pt;}
.y147{bottom:88.480000pt;}
.y31{bottom:88.640000pt;}
.y158{bottom:90.080000pt;}
.ya7{bottom:92.960000pt;}
.y73{bottom:93.920000pt;}
.ye4{bottom:94.080000pt;}
.y114{bottom:97.600000pt;}
.y65{bottom:99.840000pt;}
.y6c{bottom:104.160000pt;}
.y11a{bottom:106.426667pt;}
.y146{bottom:107.200000pt;}
.y30{bottom:107.360000pt;}
.ya6{bottom:111.680000pt;}
.ye3{bottom:112.800000pt;}
.y64{bottom:118.560000pt;}
.y113{bottom:119.840000pt;}
.y159{bottom:121.506667pt;}
.y165{bottom:122.880000pt;}
.y14d{bottom:123.813333pt;}
.y11b{bottom:125.893333pt;}
.y145{bottom:125.920000pt;}
.y2f{bottom:126.080000pt;}
.y67{bottom:127.840000pt;}
.ya5{bottom:130.400000pt;}
.ye2{bottom:131.520000pt;}
.y157{bottom:136.573333pt;}
.y63{bottom:137.306667pt;}
.y154{bottom:138.400000pt;}
.y156{bottom:140.253333pt;}
.y14c{bottom:141.213333pt;}
.y112{bottom:142.106667pt;}
.y144{bottom:144.666667pt;}
.y2e{bottom:144.826667pt;}
.y11c{bottom:145.306667pt;}
.ya4{bottom:149.146667pt;}
.ye1{bottom:150.266667pt;}
.y14f{bottom:150.626667pt;}
.y153{bottom:151.453333pt;}
.y160{bottom:151.813333pt;}
.y15a{bottom:152.933333pt;}
.y14b{bottom:154.906667pt;}
.y62{bottom:156.026667pt;}
.y155{bottom:160.613333pt;}
.y151{bottom:160.866667pt;}
.y143{bottom:163.386667pt;}
.y2d{bottom:163.546667pt;}
.y111{bottom:164.506667pt;}
.ya3{bottom:167.866667pt;}
.y61{bottom:174.746667pt;}
.y150{bottom:175.133333pt;}
.y152{bottom:176.186667pt;}
.ye0{bottom:176.986667pt;}
.y14a{bottom:177.346667pt;}
.y142{bottom:182.106667pt;}
.y2c{bottom:182.266667pt;}
.y15b{bottom:184.346667pt;}
.ya2{bottom:186.586667pt;}
.y110{bottom:186.746667pt;}
.y60{bottom:193.466667pt;}
.ydf{bottom:195.706667pt;}
.y141{bottom:200.826667pt;}
.y2b{bottom:200.986667pt;}
.y10f{bottom:208.986667pt;}
.y164{bottom:211.066667pt;}
.y122{bottom:211.386667pt;}
.y5f{bottom:212.186667pt;}
.ya1{bottom:213.306667pt;}
.yde{bottom:214.426667pt;}
.y15c{bottom:215.773333pt;}
.y14e{bottom:217.306667pt;}
.y140{bottom:219.546667pt;}
.y2a{bottom:219.706667pt;}
.y5e{bottom:230.906667pt;}
.y109{bottom:231.226667pt;}
.ya0{bottom:232.026667pt;}
.ydd{bottom:232.986667pt;}
.y13f{bottom:238.266667pt;}
.y29{bottom:238.426667pt;}
.y149{bottom:240.293333pt;}
.y15d{bottom:247.226667pt;}
.y5d{bottom:249.626667pt;}
.y9f{bottom:250.746667pt;}
.ydc{bottom:251.706667pt;}
.y13e{bottom:256.986667pt;}
.y28{bottom:257.146667pt;}
.y5c{bottom:268.346667pt;}
.y9e{bottom:269.466667pt;}
.ydb{bottom:270.426667pt;}
.y13d{bottom:275.706667pt;}
.y27{bottom:275.866667pt;}
.y15e{bottom:278.653333pt;}
.y5b{bottom:287.066667pt;}
.y9d{bottom:288.186667pt;}
.yda{bottom:289.146667pt;}
.y13c{bottom:294.426667pt;}
.y26{bottom:294.586667pt;}
.y10b{bottom:296.666667pt;}
.y162{bottom:302.946667pt;}
.y5a{bottom:305.786667pt;}
.y9c{bottom:306.906667pt;}
.yd9{bottom:307.866667pt;}
.y13b{bottom:313.146667pt;}
.y25{bottom:313.306667pt;}
.y148{bottom:318.240000pt;}
.y59{bottom:324.506667pt;}
.y108{bottom:324.826667pt;}
.y9b{bottom:325.626667pt;}
.yd8{bottom:326.586667pt;}
.y13a{bottom:331.866667pt;}
.y24{bottom:332.026667pt;}
.y58{bottom:343.226667pt;}
.y107{bottom:343.546667pt;}
.y9a{bottom:344.346667pt;}
.yd7{bottom:345.306667pt;}
.y23{bottom:350.586667pt;}
.yd6{bottom:358.946667pt;}
.y57{bottom:361.986667pt;}
.y106{bottom:362.306667pt;}
.y99{bottom:363.106667pt;}
.y22{bottom:369.346667pt;}
.yd5{bottom:378.306667pt;}
.yb2{bottom:379.266667pt;}
.y56{bottom:380.706667pt;}
.y105{bottom:381.026667pt;}
.y98{bottom:381.826667pt;}
.y21{bottom:388.066667pt;}
.yd4{bottom:397.666667pt;}
.y55{bottom:399.426667pt;}
.y104{bottom:399.746667pt;}
.y97{bottom:400.546667pt;}
.yb1{bottom:404.066667pt;}
.y20{bottom:406.786667pt;}
.yd3{bottom:417.026667pt;}
.y54{bottom:418.146667pt;}
.y103{bottom:418.466667pt;}
.y96{bottom:419.266667pt;}
.yaf{bottom:423.426667pt;}
.y1f{bottom:425.506667pt;}
.yd2{bottom:436.386667pt;}
.y53{bottom:436.866667pt;}
.y102{bottom:437.186667pt;}
.y95{bottom:437.986667pt;}
.yae{bottom:443.106667pt;}
.y1e{bottom:444.226667pt;}
.y52{bottom:455.586667pt;}
.yd1{bottom:455.746667pt;}
.y94{bottom:456.706667pt;}
.yad{bottom:462.466667pt;}
.y1d{bottom:462.946667pt;}
.y101{bottom:463.906667pt;}
.y51{bottom:474.306667pt;}
.yd0{bottom:475.106667pt;}
.y93{bottom:475.426667pt;}
.y1c{bottom:481.666667pt;}
.yac{bottom:481.826667pt;}
.y100{bottom:482.626667pt;}
.y50{bottom:493.026667pt;}
.y92{bottom:493.986667pt;}
.ycf{bottom:496.386667pt;}
.y1b{bottom:500.386667pt;}
.yab{bottom:501.186667pt;}
.yff{bottom:501.346667pt;}
.y4f{bottom:511.746667pt;}
.y91{bottom:512.706667pt;}
.yce{bottom:515.746667pt;}
.y1a{bottom:519.106667pt;}
.yfe{bottom:520.066667pt;}
.ya8{bottom:520.706667pt;}
.y4e{bottom:530.466667pt;}
.y90{bottom:531.426667pt;}
.ycc{bottom:535.106667pt;}
.y19{bottom:537.826667pt;}
.yfd{bottom:538.786667pt;}
.yaa{bottom:540.066667pt;}
.y4d{bottom:549.186667pt;}
.y8f{bottom:550.146667pt;}
.ycd{bottom:554.466667pt;}
.y18{bottom:556.546667pt;}
.yfc{bottom:557.506667pt;}
.y4c{bottom:567.906667pt;}
.y8e{bottom:568.866667pt;}
.y17{bottom:575.266667pt;}
.y115{bottom:575.360000pt;}
.yfb{bottom:576.226667pt;}
.ycb{bottom:579.773333pt;}
.y4b{bottom:586.493333pt;}
.y8d{bottom:587.613333pt;}
.y139{bottom:594.013333pt;}
.yfa{bottom:594.973333pt;}
.y16{bottom:596.253333pt;}
.yca{bottom:598.493333pt;}
.y4a{bottom:605.213333pt;}
.y8c{bottom:606.333333pt;}
.y138{bottom:612.733333pt;}
.yf9{bottom:613.693333pt;}
.yc9{bottom:617.213333pt;}
.y15{bottom:622.813333pt;}
.y49{bottom:623.933333pt;}
.y8b{bottom:625.053333pt;}
.y137{bottom:631.453333pt;}
.yf8{bottom:632.413333pt;}
.yc8{bottom:635.933333pt;}
.y14{bottom:641.533333pt;}
.y48{bottom:642.653333pt;}
.y8a{bottom:643.773333pt;}
.y136{bottom:650.173333pt;}
.yf7{bottom:651.133333pt;}
.y120{bottom:654.240000pt;}
.yc7{bottom:654.653333pt;}
.y13{bottom:660.253333pt;}
.y47{bottom:661.373333pt;}
.y89{bottom:662.493333pt;}
.y11e{bottom:664.480000pt;}
.y135{bottom:668.893333pt;}
.yf6{bottom:669.853333pt;}
.y12{bottom:678.973333pt;}
.y46{bottom:680.093333pt;}
.y88{bottom:681.213333pt;}
.yc6{bottom:681.373333pt;}
.y134{bottom:687.613333pt;}
.yf5{bottom:688.573333pt;}
.y83{bottom:694.813333pt;}
.y11{bottom:697.693333pt;}
.y45{bottom:698.813333pt;}
.yc5{bottom:700.093333pt;}
.y133{bottom:706.333333pt;}
.yf4{bottom:707.293333pt;}
.y86{bottom:716.253333pt;}
.y10{bottom:716.413333pt;}
.y44{bottom:717.533333pt;}
.yc4{bottom:718.813333pt;}
.y132{bottom:725.053333pt;}
.yf3{bottom:726.013333pt;}
.yf{bottom:735.133333pt;}
.y43{bottom:736.253333pt;}
.yc3{bottom:737.533333pt;}
.y85{bottom:737.693333pt;}
.y131{bottom:743.773333pt;}
.yf2{bottom:744.733333pt;}
.ye{bottom:753.853333pt;}
.y42{bottom:754.973333pt;}
.yc2{bottom:756.253333pt;}
.y7d{bottom:759.133333pt;}
.y130{bottom:762.493333pt;}
.yf1{bottom:763.453333pt;}
.y41{bottom:773.693333pt;}
.yd{bottom:774.493333pt;}
.yc1{bottom:774.973333pt;}
.y82{bottom:778.493333pt;}
.y12f{bottom:781.213333pt;}
.yf0{bottom:782.173333pt;}
.y40{bottom:792.413333pt;}
.yc0{bottom:793.693333pt;}
.yc{bottom:797.853333pt;}
.y12e{bottom:799.973333pt;}
.yef{bottom:800.933333pt;}
.y3f{bottom:811.173333pt;}
.ybf{bottom:812.453333pt;}
.yb{bottom:816.613333pt;}
.y80{bottom:817.253333pt;}
.y12d{bottom:818.693333pt;}
.yee{bottom:819.653333pt;}
.ybe{bottom:825.893333pt;}
.y3e{bottom:829.893333pt;}
.ya{bottom:831.493333pt;}
.y7f{bottom:836.773333pt;}
.y12c{bottom:837.413333pt;}
.yed{bottom:838.373333pt;}
.y3d{bottom:848.613333pt;}
.y9{bottom:851.333333pt;}
.y79{bottom:856.133333pt;}
.yec{bottom:857.093333pt;}
.y3c{bottom:867.333333pt;}
.yeb{bottom:870.533333pt;}
.ybd{bottom:871.173333pt;}
.y8{bottom:873.733333pt;}
.y12b{bottom:874.853333pt;}
.y7c{bottom:877.573333pt;}
.y3b{bottom:886.053333pt;}
.yea{bottom:889.893333pt;}
.y12a{bottom:893.573333pt;}
.ybc{bottom:893.893333pt;}
.y7b{bottom:899.013333pt;}
.y7{bottom:903.653333pt;}
.y3a{bottom:904.773333pt;}
.ye8{bottom:909.253333pt;}
.y129{bottom:912.133333pt;}
.ybb{bottom:916.613333pt;}
.y72{bottom:920.453333pt;}
.y39{bottom:923.493333pt;}
.y128{bottom:930.853333pt;}
.ye5{bottom:935.653333pt;}
.y5{bottom:938.053333pt;}
.yba{bottom:939.173333pt;}
.y78{bottom:941.893333pt;}
.y38{bottom:942.213333pt;}
.y127{bottom:949.573333pt;}
.y37{bottom:960.933333pt;}
.yb9{bottom:961.893333pt;}
.y77{bottom:963.493333pt;}
.y4{bottom:965.413333pt;}
.y126{bottom:968.293333pt;}
.y36{bottom:979.653333pt;}
.y125{bottom:981.893333pt;}
.yb4{bottom:984.613333pt;}
.y76{bottom:984.933333pt;}
.y3{bottom:992.773333pt;}
.y35{bottom:998.373333pt;}
.y124{bottom:1004.133333pt;}
.y74{bottom:1006.373333pt;}
.yb6{bottom:1007.173333pt;}
.y34{bottom:1017.093333pt;}
.y2{bottom:1020.000000pt;}
.y123{bottom:1026.400000pt;}
.y71{bottom:1027.840000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h12{height:18.720000pt;}
.h13{height:18.752000pt;}
.h15{height:19.040000pt;}
.h22{height:19.680000pt;}
.h1b{height:20.480000pt;}
.hd{height:20.800000pt;}
.hf{height:20.832000pt;}
.hc{height:21.600000pt;}
.ha{height:21.632000pt;}
.h19{height:21.920000pt;}
.h1a{height:22.080000pt;}
.h18{height:22.112000pt;}
.h16{height:24.160000pt;}
.h1d{height:25.760000pt;}
.h25{height:33.867188pt;}
.h28{height:33.957500pt;}
.h8{height:34.374375pt;}
.h21{height:37.090625pt;}
.h2a{height:37.180000pt;}
.h1c{height:37.440000pt;}
.h14{height:38.080000pt;}
.h2d{height:41.112500pt;}
.hb{height:43.040000pt;}
.h17{height:44.672000pt;}
.h24{height:44.960521pt;}
.h2c{height:45.156250pt;}
.h2b{height:45.246563pt;}
.h27{height:46.293854pt;}
.h9{height:52.834688pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h10{height:63.680000pt;}
.h1f{height:64.800000pt;}
.h29{height:64.853854pt;}
.h26{height:65.707187pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h1e{height:87.040000pt;}
.h5{height:87.156562pt;}
.h11{height:96.352000pt;}
.he{height:106.752000pt;}
.h20{height:236.000000pt;}
.h23{height:328.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:58.272000pt;}
.w29{width:61.760000pt;}
.w28{width:66.240000pt;}
.w25{width:66.720000pt;}
.w1f{width:77.280000pt;}
.w5{width:77.600000pt;}
.w4{width:77.792000pt;}
.w23{width:84.320000pt;}
.w26{width:84.960000pt;}
.w24{width:89.952000pt;}
.wa{width:91.872000pt;}
.wc{width:92.192000pt;}
.w10{width:100.192000pt;}
.w11{width:100.320000pt;}
.w12{width:100.352000pt;}
.w13{width:100.512000pt;}
.w17{width:103.552000pt;}
.w1a{width:104.032000pt;}
.w18{width:105.152000pt;}
.w19{width:110.560000pt;}
.w1d{width:110.912000pt;}
.wb{width:124.640000pt;}
.we{width:141.946667pt;}
.w21{width:156.986667pt;}
.w8{width:160.826667pt;}
.w15{width:161.146667pt;}
.w1c{width:164.506667pt;}
.w6{width:168.986667pt;}
.w22{width:175.226667pt;}
.w20{width:176.986667pt;}
.wf{width:200.986667pt;}
.w7{width:214.586667pt;}
.w16{width:216.026667pt;}
.w9{width:216.986667pt;}
.w3{width:383.586667pt;}
.w14{width:444.093333pt;}
.wd{width:470.653333pt;}
.w1b{width:481.853333pt;}
.w27{width:494.400000pt;}
.w2a{width:624.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:4.320000pt;}
.xa{left:6.874667pt;}
.x39{left:31.613333pt;}
.x37{left:39.133333pt;}
.x25{left:41.466667pt;}
.x36{left:45.826667pt;}
.x6{left:47.999988pt;}
.x35{left:52.480000pt;}
.x8{left:66.879988pt;}
.x3c{left:71.999988pt;}
.x2a{left:74.146667pt;}
.x38{left:81.853333pt;}
.x7{left:96.031988pt;}
.x2e{left:98.106667pt;}
.x1d{left:103.232000pt;}
.x9{left:127.072000pt;}
.x3b{left:128.253333pt;}
.x24{left:138.720000pt;}
.xe{left:144.026655pt;}
.x5{left:146.426655pt;}
.x26{left:149.946667pt;}
.x16{left:156.026667pt;}
.xf{left:161.626667pt;}
.x1e{left:180.826667pt;}
.x1a{left:229.786667pt;}
.x2f{left:232.866667pt;}
.x2c{left:234.746655pt;}
.x3{left:254.946655pt;}
.x13{left:269.186667pt;}
.x21{left:273.506667pt;}
.x2b{left:274.626655pt;}
.x27{left:281.760000pt;}
.xd{left:296.066667pt;}
.x30{left:300.253333pt;}
.x2{left:311.746655pt;}
.x17{left:317.506667pt;}
.x2d{left:318.786655pt;}
.x10{left:322.786667pt;}
.x3a{left:324.000000pt;}
.x1f{left:358.146667pt;}
.x31{left:367.613333pt;}
.x15{left:369.826667pt;}
.x4{left:372.706655pt;}
.x1b{left:394.626667pt;}
.x12{left:415.133333pt;}
.x19{left:422.973333pt;}
.x1{left:426.173322pt;}
.x32{left:435.706667pt;}
.x29{left:438.880000pt;}
.x22{left:448.413333pt;}
.x14{left:470.813333pt;}
.x33{left:503.106667pt;}
.x1c{left:505.853333pt;}
.xb{left:510.973333pt;}
.x20{left:515.453333pt;}
.x18{left:534.333333pt;}
.x11{left:540.413333pt;}
.x34{left:570.466667pt;}
.xc{left:589.093333pt;}
.x23{left:605.733333pt;}
.x3d{left:746.079988pt;}
}




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