
    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_06562142d8f1180c47d67c76.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f1c7653b38758151f151ba3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d45353856766cd5cb2798a9f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0278ce4e30797f1356debf53.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_35adbd1068e5a87c80af662a.woff2')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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a2f41cfacdc114a601a645f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064453;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_71aed5b56a0e527549671286.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.783203;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_7853e7565b3ca886aa4ffd22.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918457;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_70f401e3156c75bc39aa735e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918457;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_f1aca764f205004822866d16.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f21be6f8e82b422129183cda.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_76f26605c682fd1d1101f396.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-75.600000px;}
.v4{vertical-align:-65.520000px;}
.v2{vertical-align:-59.760000px;}
.v5{vertical-align:-58.500000px;}
.v1{vertical-align:-53.280000px;}
.v0{vertical-align:0.000000px;}
.ls36{letter-spacing:-3.600000px;}
.ls4e{letter-spacing:-2.466000px;}
.ls35{letter-spacing:-2.424000px;}
.ls44{letter-spacing:-2.316000px;}
.ls4f{letter-spacing:-2.160000px;}
.ls59{letter-spacing:-1.800000px;}
.ls46{letter-spacing:-1.704000px;}
.ls45{letter-spacing:-1.590000px;}
.ls2a{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.176000px;}
.ls3b{letter-spacing:-1.080000px;}
.ls14{letter-spacing:-1.026000px;}
.ls39{letter-spacing:-0.966000px;}
.ls37{letter-spacing:-0.864000px;}
.ls13{letter-spacing:-0.720000px;}
.ls42{letter-spacing:-0.636000px;}
.ls25{letter-spacing:-0.305400px;}
.ls50{letter-spacing:-0.259800px;}
.ls38{letter-spacing:-0.244800px;}
.ls15{letter-spacing:-0.169800px;}
.ls17{letter-spacing:-0.158400px;}
.ls18{letter-spacing:-0.147000px;}
.ls3a{letter-spacing:-0.130800px;}
.ls58{letter-spacing:-0.106800px;}
.ls12{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.115200px;}
.ls2b{letter-spacing:0.123600px;}
.ls57{letter-spacing:0.153600px;}
.ls29{letter-spacing:0.166800px;}
.ls1{letter-spacing:0.180000px;}
.ls56{letter-spacing:0.206400px;}
.ls52{letter-spacing:0.259800px;}
.ls4c{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.262200px;}
.ls33{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.439920px;}
.ls43{letter-spacing:0.475200px;}
.ls9{letter-spacing:0.696000px;}
.ls8{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.900000px;}
.ls4a{letter-spacing:1.386720px;}
.ls47{letter-spacing:1.440000px;}
.ls32{letter-spacing:1.620000px;}
.ls48{letter-spacing:2.160000px;}
.ls4d{letter-spacing:2.340000px;}
.ls24{letter-spacing:2.880000px;}
.ls20{letter-spacing:4.320000px;}
.lse{letter-spacing:5.040000px;}
.ls31{letter-spacing:6.480000px;}
.ls26{letter-spacing:10.080000px;}
.ls1c{letter-spacing:10.800000px;}
.ls11{letter-spacing:11.520000px;}
.ls40{letter-spacing:12.240000px;}
.ls3f{letter-spacing:12.936000px;}
.ls1f{letter-spacing:12.960000px;}
.ls28{letter-spacing:13.680000px;}
.lsf{letter-spacing:14.400000px;}
.ls10{letter-spacing:15.120000px;}
.ls7{letter-spacing:15.840000px;}
.ls4b{letter-spacing:16.020000px;}
.ls41{letter-spacing:16.560000px;}
.ls6{letter-spacing:17.280000px;}
.ls5{letter-spacing:18.000000px;}
.ls3{letter-spacing:18.900000px;}
.ls1a{letter-spacing:20.160000px;}
.ls19{letter-spacing:20.880000px;}
.ls4{letter-spacing:21.600000px;}
.ls1e{letter-spacing:23.040000px;}
.ls34{letter-spacing:23.760000px;}
.lsd{letter-spacing:24.480000px;}
.ls22{letter-spacing:25.200000px;}
.ls1b{letter-spacing:25.920000px;}
.ls23{letter-spacing:26.640000px;}
.lsc{letter-spacing:35.280000px;}
.lsb{letter-spacing:36.000000px;}
.lsa{letter-spacing:36.720000px;}
.ls21{letter-spacing:37.440000px;}
.ls3d{letter-spacing:49.104000px;}
.ls2e{letter-spacing:59.760000px;}
.ls30{letter-spacing:59.880000px;}
.ls2f{letter-spacing:60.480000px;}
.ls27{letter-spacing:63.360000px;}
.ls1d{letter-spacing:86.705280px;}
.ls49{letter-spacing:158.520000px;}
.ls55{letter-spacing:721.776000px;}
.ls2{letter-spacing:1058.760000px;}
.ls3c{letter-spacing:2198.640000px;}
.ls3e{letter-spacing:2356.296000px;}
.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;}
}
.wsd{word-spacing:-66.240000px;}
.ws1a{word-spacing:-17.035200px;}
.ws12{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.726800px;}
.ws11{word-spacing:-16.683600px;}
.ws6{word-spacing:-16.675200px;}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.413000px;}
.ws7{word-spacing:-16.401600px;}
.ws5{word-spacing:-16.390200px;}
.ws16{word-spacing:-16.315200px;}
.wsc{word-spacing:-16.254600px;}
.ws19{word-spacing:-15.924000px;}
.ws2{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.696000px;}
.ws4{word-spacing:-15.534000px;}
.ws13{word-spacing:-15.384000px;}
.ws0{word-spacing:-15.300000px;}
.ws22{word-spacing:-15.199800px;}
.ws23{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.120000px;}
.ws24{word-spacing:-15.093600px;}
.ws21{word-spacing:-14.993280px;}
.wse{word-spacing:-14.970240px;}
.ws1c{word-spacing:-14.970000px;}
.ws1{word-spacing:-14.940000px;}
.ws1d{word-spacing:-14.856000px;}
.ws25{word-spacing:-14.833200px;}
.ws18{word-spacing:-14.809200px;}
.ws20{word-spacing:-14.680200px;}
.ws1f{word-spacing:-14.400000px;}
.ws1b{word-spacing:-14.244000px;}
.ws14{word-spacing:-14.136000px;}
.ws1e{word-spacing:-14.094000px;}
.ws17{word-spacing:-13.974000px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws26{word-spacing:-13.140000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-5.608320px;}
._5{margin-left:-4.573440px;}
._4{margin-left:-3.483360px;}
._6{margin-left:-2.462400px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._1c{width:3.961920px;}
._12{width:5.038560px;}
._b{width:6.368400px;}
._a{width:8.042400px;}
._1d{width:9.088320px;}
._7{width:10.937520px;}
._8{width:11.993760px;}
._9{width:13.319280px;}
._e{width:15.102720px;}
._25{width:16.693920px;}
._d{width:18.318720px;}
._c{width:19.362240px;}
._f{width:20.931840px;}
._16{width:22.322880px;}
._10{width:24.177600px;}
._13{width:25.974720px;}
._18{width:27.320640px;}
._15{width:28.968480px;}
._14{width:29.998080px;}
._24{width:31.148640px;}
._23{width:32.300640px;}
._1b{width:33.763200px;}
._19{width:35.060160px;}
._17{width:36.322320px;}
._1a{width:37.627440px;}
._11{width:39.677760px;}
._1e{width:47.759040px;}
._1f{width:51.007680px;}
._22{width:58.016160px;}
._21{width:59.486400px;}
._20{width:63.245760px;}
._26{width:2615.906400px;}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.ybf{bottom:3.780000px;}
.ya0{bottom:3.960000px;}
.y8b{bottom:4.140000px;}
.ya2{bottom:5.040000px;}
.yba{bottom:5.580000px;}
.ybb{bottom:6.120000px;}
.ybd{bottom:6.300000px;}
.y9f{bottom:6.660000px;}
.y89{bottom:7.020000px;}
.yd1{bottom:8.145000px;}
.y85{bottom:9.720000px;}
.y84{bottom:10.080000px;}
.y87{bottom:11.700000px;}
.yea{bottom:14.040000px;}
.yf0{bottom:18.000000px;}
.yeb{bottom:22.545000px;}
.yed{bottom:23.040000px;}
.yb8{bottom:26.640000px;}
.y9d{bottom:27.000000px;}
.ycf{bottom:28.665000px;}
.y82{bottom:36.360000px;}
.ye8{bottom:52.965000px;}
.y40{bottom:56.700000px;}
.yc4{bottom:88.956000px;}
.y3f{bottom:93.456000px;}
.y119{bottom:93.816000px;}
.yc3{bottom:106.236000px;}
.y78{bottom:108.396000px;}
.y3e{bottom:108.936000px;}
.y118{bottom:111.096000px;}
.yc2{bottom:119.736000px;}
.y3d{bottom:124.236000px;}
.y77{bottom:127.296000px;}
.y117{bottom:128.196000px;}
.y3c{bottom:138.996000px;}
.y116{bottom:145.476000px;}
.y76{bottom:146.196000px;}
.ya4{bottom:150.690000px;}
.y3b{bottom:157.890000px;}
.y115{bottom:162.750000px;}
.y75{bottom:165.270000px;}
.ya3{bottom:171.210000px;}
.y3a{bottom:176.970000px;}
.y114{bottom:180.030000px;}
.y74{bottom:184.170000px;}
.ya1{bottom:191.550000px;}
.yef{bottom:194.430000px;}
.y39{bottom:195.870000px;}
.y113{bottom:197.310000px;}
.y73{bottom:203.250000px;}
.y9c{bottom:213.150000px;}
.y112{bottom:214.590000px;}
.y38{bottom:214.950000px;}
.y72{bottom:222.150000px;}
.yee{bottom:228.810000px;}
.y111{bottom:231.690000px;}
.y9e{bottom:233.490000px;}
.y37{bottom:233.850000px;}
.y71{bottom:241.050000px;}
.y110{bottom:248.610000px;}
.y36{bottom:252.930000px;}
.y70{bottom:260.130000px;}
.y9b{bottom:260.490000px;}
.y14c{bottom:266.430000px;}
.yec{bottom:268.230000px;}
.y35{bottom:271.830000px;}
.y6f{bottom:279.030000px;}
.y9a{bottom:279.570000px;}
.y10f{bottom:280.290000px;}
.y14b{bottom:283.530000px;}
.y34{bottom:290.730000px;}
.y6e{bottom:298.110000px;}
.y99{bottom:299.190000px;}
.y10e{bottom:299.370000px;}
.y14a{bottom:300.810000px;}
.ye7{bottom:307.830000px;}
.y33{bottom:309.810000px;}
.y6d{bottom:317.010000px;}
.y10d{bottom:318.270000px;}
.y98{bottom:318.630000px;}
.y32{bottom:328.755000px;}
.y149{bottom:331.995000px;}
.y6c{bottom:335.955000px;}
.y10c{bottom:337.215000px;}
.y97{bottom:337.575000px;}
.ye9{bottom:346.755000px;}
.y31{bottom:347.835000px;}
.y148{bottom:349.275000px;}
.y6b{bottom:355.035000px;}
.y10b{bottom:356.295000px;}
.y96{bottom:356.655000px;}
.y147{bottom:366.375000px;}
.y30{bottom:366.735000px;}
.y6a{bottom:373.935000px;}
.y10a{bottom:375.195000px;}
.y95{bottom:375.555000px;}
.y146{bottom:383.655000px;}
.y2f{bottom:385.635000px;}
.y69{bottom:393.015000px;}
.y109{bottom:394.275000px;}
.y94{bottom:394.635000px;}
.ye6{bottom:400.215000px;}
.y145{bottom:400.935000px;}
.y2e{bottom:404.715000px;}
.y68{bottom:411.915000px;}
.y108{bottom:413.175000px;}
.y93{bottom:413.535000px;}
.yc1{bottom:416.235000px;}
.y144{bottom:418.215000px;}
.ye5{bottom:419.115000px;}
.yc0{bottom:423.255000px;}
.y2d{bottom:423.615000px;}
.y67{bottom:430.815000px;}
.y107{bottom:432.255000px;}
.y92{bottom:432.435000px;}
.y143{bottom:435.495000px;}
.ye4{bottom:438.195000px;}
.ybe{bottom:441.975000px;}
.y2c{bottom:442.695000px;}
.y66{bottom:449.895000px;}
.y106{bottom:451.155000px;}
.y91{bottom:451.515000px;}
.y142{bottom:452.775000px;}
.ybc{bottom:460.695000px;}
.y2b{bottom:461.595000px;}
.y65{bottom:468.795000px;}
.y141{bottom:469.875000px;}
.y105{bottom:470.055000px;}
.y90{bottom:470.415000px;}
.ye3{bottom:475.995000px;}
.y2a{bottom:480.495000px;}
.yb7{bottom:481.935000px;}
.y140{bottom:487.155000px;}
.y64{bottom:487.875000px;}
.y8f{bottom:488.415000px;}
.y104{bottom:489.135000px;}
.ye2{bottom:495.075000px;}
.y29{bottom:499.575000px;}
.yb9{bottom:502.995000px;}
.y8e{bottom:503.175000px;}
.y13f{bottom:504.435000px;}
.y63{bottom:506.775000px;}
.y103{bottom:508.035000px;}
.ye1{bottom:513.975000px;}
.y28{bottom:518.475000px;}
.y13e{bottom:521.715000px;}
.y8d{bottom:522.255000px;}
.y62{bottom:525.675000px;}
.y102{bottom:527.115000px;}
.yb6{bottom:527.655000px;}
.ye0{bottom:533.055000px;}
.y27{bottom:537.555000px;}
.y13d{bottom:538.995000px;}
.y61{bottom:544.755000px;}
.y101{bottom:546.015000px;}
.yb5{bottom:546.555000px;}
.y13c{bottom:556.095000px;}
.y26{bottom:556.455000px;}
.y60{bottom:563.655000px;}
.y100{bottom:564.915000px;}
.yb4{bottom:565.635000px;}
.ydf{bottom:570.855000px;}
.y13b{bottom:572.655000px;}
.y25{bottom:575.355000px;}
.y5f{bottom:582.735000px;}
.yff{bottom:583.995000px;}
.yb3{bottom:584.535000px;}
.y13a{bottom:587.235000px;}
.yde{bottom:589.935000px;}
.y24{bottom:594.435000px;}
.y5e{bottom:601.665000px;}
.yfe{bottom:602.925000px;}
.yb2{bottom:603.645000px;}
.ydd{bottom:608.865000px;}
.y23{bottom:613.365000px;}
.y5d{bottom:620.745000px;}
.y139{bottom:620.925000px;}
.yfd{bottom:622.005000px;}
.yb1{bottom:622.545000px;}
.ydc{bottom:627.945000px;}
.y22{bottom:632.445000px;}
.y138{bottom:635.145000px;}
.y5c{bottom:639.645000px;}
.yfc{bottom:640.905000px;}
.yb0{bottom:641.445000px;}
.ydb{bottom:646.845000px;}
.y21{bottom:651.345000px;}
.y137{bottom:652.425000px;}
.y5b{bottom:658.545000px;}
.yfb{bottom:659.805000px;}
.yaf{bottom:660.525000px;}
.yda{bottom:665.745000px;}
.y136{bottom:669.705000px;}
.y20{bottom:670.245000px;}
.y5a{bottom:677.625000px;}
.yfa{bottom:678.885000px;}
.yae{bottom:679.425000px;}
.yd9{bottom:684.825000px;}
.y135{bottom:686.985000px;}
.y1f{bottom:689.325000px;}
.y59{bottom:696.525000px;}
.yf9{bottom:697.785000px;}
.yad{bottom:698.505000px;}
.y134{bottom:703.545000px;}
.yd8{bottom:703.725000px;}
.y1e{bottom:708.225000px;}
.y58{bottom:715.605000px;}
.yf8{bottom:716.865000px;}
.yac{bottom:717.405000px;}
.y133{bottom:718.305000px;}
.yd7{bottom:722.805000px;}
.y1d{bottom:727.305000px;}
.y57{bottom:734.505000px;}
.y132{bottom:735.585000px;}
.yf7{bottom:735.765000px;}
.yab{bottom:736.305000px;}
.yd6{bottom:741.705000px;}
.y1c{bottom:746.205000px;}
.y131{bottom:752.865000px;}
.y56{bottom:753.405000px;}
.yf6{bottom:754.665000px;}
.yaa{bottom:755.385000px;}
.yd5{bottom:760.785000px;}
.y1b{bottom:765.285000px;}
.y130{bottom:770.145000px;}
.y55{bottom:772.485000px;}
.yf5{bottom:773.745000px;}
.ya9{bottom:774.285000px;}
.yd4{bottom:777.165000px;}
.y1a{bottom:784.185000px;}
.y12f{bottom:787.425000px;}
.y54{bottom:791.385000px;}
.yf4{bottom:791.745000px;}
.ya8{bottom:793.365000px;}
.yd3{bottom:797.685000px;}
.y19{bottom:803.085000px;}
.y12e{bottom:804.525000px;}
.yf3{bottom:806.505000px;}
.y53{bottom:810.465000px;}
.yd2{bottom:818.025000px;}
.y18{bottom:820.545000px;}
.y12d{bottom:821.805000px;}
.ya7{bottom:822.705000px;}
.yf2{bottom:825.405000px;}
.y52{bottom:829.365000px;}
.y17{bottom:833.865000px;}
.yce{bottom:838.545000px;}
.y12c{bottom:839.085000px;}
.ya6{bottom:841.605000px;}
.yf1{bottom:844.485000px;}
.y8c{bottom:846.825000px;}
.y51{bottom:848.265000px;}
.y16{bottom:851.145000px;}
.y12b{bottom:856.365000px;}
.yd0{bottom:859.065000px;}
.y8a{bottom:863.250000px;}
.y50{bottom:867.390000px;}
.y15{bottom:868.470000px;}
.y12a{bottom:873.690000px;}
.y88{bottom:883.770000px;}
.y14{bottom:885.750000px;}
.y4f{bottom:886.290000px;}
.ycd{bottom:887.010000px;}
.y129{bottom:890.790000px;}
.y13{bottom:903.030000px;}
.ycc{bottom:905.010000px;}
.y4e{bottom:905.370000px;}
.y86{bottom:907.170000px;}
.y128{bottom:908.070000px;}
.y12{bottom:920.130000px;}
.ycb{bottom:923.910000px;}
.y4d{bottom:924.270000px;}
.y127{bottom:925.350000px;}
.y81{bottom:935.250000px;}
.y11{bottom:937.410000px;}
.y126{bottom:942.630000px;}
.yca{bottom:942.990000px;}
.y4c{bottom:943.170000px;}
.y10{bottom:953.970000px;}
.y125{bottom:959.910000px;}
.y83{bottom:961.530000px;}
.y4b{bottom:962.250000px;}
.yf{bottom:968.550000px;}
.yc9{bottom:975.750000px;}
.y124{bottom:977.190000px;}
.y4a{bottom:981.150000px;}
.ye{bottom:985.830000px;}
.y80{bottom:992.670000px;}
.y123{bottom:993.930000px;}
.yc8{bottom:994.650000px;}
.y49{bottom:1000.230000px;}
.yd{bottom:1002.930000px;}
.y122{bottom:1010.670000px;}
.y7f{bottom:1012.830000px;}
.yc7{bottom:1013.550000px;}
.y48{bottom:1019.130000px;}
.yc{bottom:1020.570000px;}
.y121{bottom:1025.610000px;}
.yc6{bottom:1032.630000px;}
.y47{bottom:1038.030000px;}
.yb{bottom:1039.470000px;}
.y120{bottom:1044.330000px;}
.y7e{bottom:1050.810000px;}
.yc5{bottom:1051.530000px;}
.y46{bottom:1057.110000px;}
.ya{bottom:1058.550000px;}
.y11f{bottom:1061.610000px;}
.y7d{bottom:1070.610000px;}
.y45{bottom:1078.710000px;}
.y11e{bottom:1078.890000px;}
.y9{bottom:1089.150000px;}
.y7c{bottom:1089.510000px;}
.y11d{bottom:1096.170000px;}
.y44{bottom:1100.490000px;}
.y8{bottom:1108.050000px;}
.y7b{bottom:1108.410000px;}
.y11c{bottom:1113.450000px;}
.y43{bottom:1122.090000px;}
.y7{bottom:1127.130000px;}
.y7a{bottom:1127.490000px;}
.y11b{bottom:1130.580000px;}
.y42{bottom:1143.720000px;}
.y6{bottom:1146.060000px;}
.y79{bottom:1146.420000px;}
.y11a{bottom:1147.860000px;}
.ya5{bottom:1150.560000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y41{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.h1c{height:18.900000px;}
.h17{height:19.080000px;}
.h20{height:19.620000px;}
.h21{height:19.800000px;}
.h1d{height:19.980000px;}
.h1b{height:21.600000px;}
.h16{height:21.960000px;}
.h25{height:23.076000px;}
.h22{height:23.632383px;}
.h14{height:24.660000px;}
.h13{height:25.020000px;}
.h15{height:26.640000px;}
.h27{height:28.980000px;}
.h2a{height:32.940000px;}
.h1e{height:35.314453px;}
.h28{height:37.476000px;}
.h29{height:37.980000px;}
.h1f{height:40.140000px;}
.hb{height:40.985156px;}
.h1a{height:41.940000px;}
.h24{height:43.596000px;}
.h19{height:47.321367px;}
.h9{height:47.344922px;}
.h2d{height:48.616875px;}
.h4{height:49.583118px;}
.h10{height:50.229844px;}
.he{height:51.070781px;}
.h12{height:51.300000px;}
.hd{height:52.998047px;}
.ha{height:53.252930px;}
.h23{height:58.621992px;}
.h2{height:58.651172px;}
.hc{height:59.027344px;}
.h2b{height:59.439023px;}
.h7{height:60.226875px;}
.h3{height:61.423863px;}
.h18{height:64.978594px;}
.h8{height:65.010937px;}
.h11{height:65.884219px;}
.h6{height:66.757500px;}
.h26{height:67.896000px;}
.hf{height:68.084282px;}
.h2c{height:82.676953px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:22.500000px;}
.w4{width:24.300000px;}
.w1d{width:47.880000px;}
.w1e{width:49.536000px;}
.w23{width:54.000000px;}
.w22{width:55.440000px;}
.w20{width:63.000000px;}
.w1f{width:64.440000px;}
.w21{width:64.476000px;}
.w25{width:67.500000px;}
.w24{width:67.536000px;}
.w18{width:99.036000px;}
.w1b{width:110.880000px;}
.w1a{width:113.976000px;}
.w17{width:124.416000px;}
.w19{width:129.060000px;}
.w1c{width:136.476000px;}
.w10{width:210.090000px;}
.w14{width:211.530000px;}
.wc{width:214.410000px;}
.wb{width:218.910000px;}
.w5{width:235.515000px;}
.w13{width:241.410000px;}
.w16{width:241.770000px;}
.w8{width:244.650000px;}
.w7{width:246.090000px;}
.wf{width:247.530000px;}
.wd{width:257.970000px;}
.w11{width:272.955000px;}
.w15{width:273.855000px;}
.w9{width:290.955000px;}
.wa{width:434.955000px;}
.w12{width:454.575000px;}
.we{width:459.075000px;}
.w6{width:492.195000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:9.360000px;}
.x17{left:42.516000px;}
.x4{left:63.900000px;}
.x16{left:68.580000px;}
.x23{left:76.860000px;}
.x21{left:79.560000px;}
.x49{left:88.919987px;}
.x45{left:90.719987px;}
.x6{left:92.699987px;}
.x2b{left:98.460000px;}
.x1d{left:101.915987px;}
.xe{left:106.415987px;}
.x29{left:111.096000px;}
.x25{left:113.985000px;}
.x24{left:116.130000px;}
.x1e{left:118.475987px;}
.x43{left:120.815987px;}
.x1b{left:128.925000px;}
.x14{left:131.255987px;}
.x1a{left:133.560000px;}
.x48{left:137.915987px;}
.x31{left:139.175987px;}
.x5{left:143.855987px;}
.x37{left:144.935987px;}
.x1c{left:146.735987px;}
.x10{left:148.895987px;}
.x2e{left:150.869987px;}
.x26{left:151.949987px;}
.x1f{left:155.909987px;}
.x11{left:158.249987px;}
.x12{left:173.909987px;}
.x27{left:183.089987px;}
.x15{left:188.669987px;}
.x39{left:194.610000px;}
.x36{left:211.710000px;}
.x38{left:220.889987px;}
.x8{left:222.689987px;}
.x3e{left:244.110000px;}
.x32{left:248.249987px;}
.x1{left:262.109987px;}
.x3a{left:295.095000px;}
.x47{left:301.934987px;}
.x18{left:305.535000px;}
.x2f{left:314.174987px;}
.x7{left:332.174987px;}
.x34{left:343.155000px;}
.x20{left:361.155000px;}
.x28{left:369.434987px;}
.x2a{left:370.695000px;}
.x4a{left:371.954987px;}
.x44{left:374.294987px;}
.x46{left:409.034987px;}
.x3b{left:425.595000px;}
.x2{left:441.254987px;}
.x33{left:446.474987px;}
.x40{left:491.685000px;}
.x4b{left:495.464987px;}
.x9{left:496.544987px;}
.x3c{left:541.185000px;}
.xa{left:543.884987px;}
.xb{left:551.444987px;}
.x19{left:553.065000px;}
.x22{left:581.685000px;}
.x35{left:586.185000px;}
.x41{left:598.065000px;}
.x4c{left:604.364987px;}
.x2c{left:619.665000px;}
.x4d{left:622.904987px;}
.xd{left:639.104987px;}
.x3d{left:653.685000px;}
.x30{left:703.769987px;}
.x13{left:706.109987px;}
.x42{left:722.670000px;}
.xc{left:764.249987px;}
.x3{left:786.749987px;}
.x2d{left:814.829987px;}
.xf{left:819.150000px;}
@media print{
.v3{vertical-align:-67.200000pt;}
.v4{vertical-align:-58.240000pt;}
.v2{vertical-align:-53.120000pt;}
.v5{vertical-align:-52.000000pt;}
.v1{vertical-align:-47.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls36{letter-spacing:-3.200000pt;}
.ls4e{letter-spacing:-2.192000pt;}
.ls35{letter-spacing:-2.154667pt;}
.ls44{letter-spacing:-2.058667pt;}
.ls4f{letter-spacing:-1.920000pt;}
.ls59{letter-spacing:-1.600000pt;}
.ls46{letter-spacing:-1.514667pt;}
.ls45{letter-spacing:-1.413333pt;}
.ls2a{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-1.045333pt;}
.ls3b{letter-spacing:-0.960000pt;}
.ls14{letter-spacing:-0.912000pt;}
.ls39{letter-spacing:-0.858667pt;}
.ls37{letter-spacing:-0.768000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls42{letter-spacing:-0.565333pt;}
.ls25{letter-spacing:-0.271467pt;}
.ls50{letter-spacing:-0.230933pt;}
.ls38{letter-spacing:-0.217600pt;}
.ls15{letter-spacing:-0.150933pt;}
.ls17{letter-spacing:-0.140800pt;}
.ls18{letter-spacing:-0.130667pt;}
.ls3a{letter-spacing:-0.116267pt;}
.ls58{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.102400pt;}
.ls2b{letter-spacing:0.109867pt;}
.ls57{letter-spacing:0.136533pt;}
.ls29{letter-spacing:0.148267pt;}
.ls1{letter-spacing:0.160000pt;}
.ls56{letter-spacing:0.183467pt;}
.ls52{letter-spacing:0.230933pt;}
.ls4c{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.233067pt;}
.ls33{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.391040pt;}
.ls43{letter-spacing:0.422400pt;}
.ls9{letter-spacing:0.618667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.800000pt;}
.ls4a{letter-spacing:1.232640pt;}
.ls47{letter-spacing:1.280000pt;}
.ls32{letter-spacing:1.440000pt;}
.ls48{letter-spacing:1.920000pt;}
.ls4d{letter-spacing:2.080000pt;}
.ls24{letter-spacing:2.560000pt;}
.ls20{letter-spacing:3.840000pt;}
.lse{letter-spacing:4.480000pt;}
.ls31{letter-spacing:5.760000pt;}
.ls26{letter-spacing:8.960000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls11{letter-spacing:10.240000pt;}
.ls40{letter-spacing:10.880000pt;}
.ls3f{letter-spacing:11.498667pt;}
.ls1f{letter-spacing:11.520000pt;}
.ls28{letter-spacing:12.160000pt;}
.lsf{letter-spacing:12.800000pt;}
.ls10{letter-spacing:13.440000pt;}
.ls7{letter-spacing:14.080000pt;}
.ls4b{letter-spacing:14.240000pt;}
.ls41{letter-spacing:14.720000pt;}
.ls6{letter-spacing:15.360000pt;}
.ls5{letter-spacing:16.000000pt;}
.ls3{letter-spacing:16.800000pt;}
.ls1a{letter-spacing:17.920000pt;}
.ls19{letter-spacing:18.560000pt;}
.ls4{letter-spacing:19.200000pt;}
.ls1e{letter-spacing:20.480000pt;}
.ls34{letter-spacing:21.120000pt;}
.lsd{letter-spacing:21.760000pt;}
.ls22{letter-spacing:22.400000pt;}
.ls1b{letter-spacing:23.040000pt;}
.ls23{letter-spacing:23.680000pt;}
.lsc{letter-spacing:31.360000pt;}
.lsb{letter-spacing:32.000000pt;}
.lsa{letter-spacing:32.640000pt;}
.ls21{letter-spacing:33.280000pt;}
.ls3d{letter-spacing:43.648000pt;}
.ls2e{letter-spacing:53.120000pt;}
.ls30{letter-spacing:53.226667pt;}
.ls2f{letter-spacing:53.760000pt;}
.ls27{letter-spacing:56.320000pt;}
.ls1d{letter-spacing:77.071360pt;}
.ls49{letter-spacing:140.906667pt;}
.ls55{letter-spacing:641.578667pt;}
.ls2{letter-spacing:941.120000pt;}
.ls3c{letter-spacing:1954.346667pt;}
.ls3e{letter-spacing:2094.485333pt;}
.wsd{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-15.142400pt;}
.ws12{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.868267pt;}
.ws11{word-spacing:-14.829867pt;}
.ws6{word-spacing:-14.822400pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.589333pt;}
.ws7{word-spacing:-14.579200pt;}
.ws5{word-spacing:-14.569067pt;}
.ws16{word-spacing:-14.502400pt;}
.wsc{word-spacing:-14.448533pt;}
.ws19{word-spacing:-14.154667pt;}
.ws2{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.808000pt;}
.ws13{word-spacing:-13.674667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws22{word-spacing:-13.510933pt;}
.ws23{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.440000pt;}
.ws24{word-spacing:-13.416533pt;}
.ws21{word-spacing:-13.327360pt;}
.wse{word-spacing:-13.306880pt;}
.ws1c{word-spacing:-13.306667pt;}
.ws1{word-spacing:-13.280000pt;}
.ws1d{word-spacing:-13.205333pt;}
.ws25{word-spacing:-13.185067pt;}
.ws18{word-spacing:-13.163733pt;}
.ws20{word-spacing:-13.049067pt;}
.ws1f{word-spacing:-12.800000pt;}
.ws1b{word-spacing:-12.661333pt;}
.ws14{word-spacing:-12.565333pt;}
.ws1e{word-spacing:-12.528000pt;}
.ws17{word-spacing:-12.421333pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws26{word-spacing:-11.680000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-4.985173pt;}
._5{margin-left:-4.065280pt;}
._4{margin-left:-3.096320pt;}
._6{margin-left:-2.188800pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._1c{width:3.521707pt;}
._12{width:4.478720pt;}
._b{width:5.660800pt;}
._a{width:7.148800pt;}
._1d{width:8.078507pt;}
._7{width:9.722240pt;}
._8{width:10.661120pt;}
._9{width:11.839360pt;}
._e{width:13.424640pt;}
._25{width:14.839040pt;}
._d{width:16.283307pt;}
._c{width:17.210880pt;}
._f{width:18.606080pt;}
._16{width:19.842560pt;}
._10{width:21.491200pt;}
._13{width:23.088640pt;}
._18{width:24.285013pt;}
._15{width:25.749760pt;}
._14{width:26.664960pt;}
._24{width:27.687680pt;}
._23{width:28.711680pt;}
._1b{width:30.011733pt;}
._19{width:31.164587pt;}
._17{width:32.286507pt;}
._1a{width:33.446613pt;}
._11{width:35.269120pt;}
._1e{width:42.452480pt;}
._1f{width:45.340160pt;}
._22{width:51.569920pt;}
._21{width:52.876800pt;}
._20{width:56.218453pt;}
._26{width:2325.250133pt;}
.fs6{font-size:21.120000pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.ybf{bottom:3.360000pt;}
.ya0{bottom:3.520000pt;}
.y8b{bottom:3.680000pt;}
.ya2{bottom:4.480000pt;}
.yba{bottom:4.960000pt;}
.ybb{bottom:5.440000pt;}
.ybd{bottom:5.600000pt;}
.y9f{bottom:5.920000pt;}
.y89{bottom:6.240000pt;}
.yd1{bottom:7.240000pt;}
.y85{bottom:8.640000pt;}
.y84{bottom:8.960000pt;}
.y87{bottom:10.400000pt;}
.yea{bottom:12.480000pt;}
.yf0{bottom:16.000000pt;}
.yeb{bottom:20.040000pt;}
.yed{bottom:20.480000pt;}
.yb8{bottom:23.680000pt;}
.y9d{bottom:24.000000pt;}
.ycf{bottom:25.480000pt;}
.y82{bottom:32.320000pt;}
.ye8{bottom:47.080000pt;}
.y40{bottom:50.400000pt;}
.yc4{bottom:79.072000pt;}
.y3f{bottom:83.072000pt;}
.y119{bottom:83.392000pt;}
.yc3{bottom:94.432000pt;}
.y78{bottom:96.352000pt;}
.y3e{bottom:96.832000pt;}
.y118{bottom:98.752000pt;}
.yc2{bottom:106.432000pt;}
.y3d{bottom:110.432000pt;}
.y77{bottom:113.152000pt;}
.y117{bottom:113.952000pt;}
.y3c{bottom:123.552000pt;}
.y116{bottom:129.312000pt;}
.y76{bottom:129.952000pt;}
.ya4{bottom:133.946667pt;}
.y3b{bottom:140.346667pt;}
.y115{bottom:144.666667pt;}
.y75{bottom:146.906667pt;}
.ya3{bottom:152.186667pt;}
.y3a{bottom:157.306667pt;}
.y114{bottom:160.026667pt;}
.y74{bottom:163.706667pt;}
.ya1{bottom:170.266667pt;}
.yef{bottom:172.826667pt;}
.y39{bottom:174.106667pt;}
.y113{bottom:175.386667pt;}
.y73{bottom:180.666667pt;}
.y9c{bottom:189.466667pt;}
.y112{bottom:190.746667pt;}
.y38{bottom:191.066667pt;}
.y72{bottom:197.466667pt;}
.yee{bottom:203.386667pt;}
.y111{bottom:205.946667pt;}
.y9e{bottom:207.546667pt;}
.y37{bottom:207.866667pt;}
.y71{bottom:214.266667pt;}
.y110{bottom:220.986667pt;}
.y36{bottom:224.826667pt;}
.y70{bottom:231.226667pt;}
.y9b{bottom:231.546667pt;}
.y14c{bottom:236.826667pt;}
.yec{bottom:238.426667pt;}
.y35{bottom:241.626667pt;}
.y6f{bottom:248.026667pt;}
.y9a{bottom:248.506667pt;}
.y10f{bottom:249.146667pt;}
.y14b{bottom:252.026667pt;}
.y34{bottom:258.426667pt;}
.y6e{bottom:264.986667pt;}
.y99{bottom:265.946667pt;}
.y10e{bottom:266.106667pt;}
.y14a{bottom:267.386667pt;}
.ye7{bottom:273.626667pt;}
.y33{bottom:275.386667pt;}
.y6d{bottom:281.786667pt;}
.y10d{bottom:282.906667pt;}
.y98{bottom:283.226667pt;}
.y32{bottom:292.226667pt;}
.y149{bottom:295.106667pt;}
.y6c{bottom:298.626667pt;}
.y10c{bottom:299.746667pt;}
.y97{bottom:300.066667pt;}
.ye9{bottom:308.226667pt;}
.y31{bottom:309.186667pt;}
.y148{bottom:310.466667pt;}
.y6b{bottom:315.586667pt;}
.y10b{bottom:316.706667pt;}
.y96{bottom:317.026667pt;}
.y147{bottom:325.666667pt;}
.y30{bottom:325.986667pt;}
.y6a{bottom:332.386667pt;}
.y10a{bottom:333.506667pt;}
.y95{bottom:333.826667pt;}
.y146{bottom:341.026667pt;}
.y2f{bottom:342.786667pt;}
.y69{bottom:349.346667pt;}
.y109{bottom:350.466667pt;}
.y94{bottom:350.786667pt;}
.ye6{bottom:355.746667pt;}
.y145{bottom:356.386667pt;}
.y2e{bottom:359.746667pt;}
.y68{bottom:366.146667pt;}
.y108{bottom:367.266667pt;}
.y93{bottom:367.586667pt;}
.yc1{bottom:369.986667pt;}
.y144{bottom:371.746667pt;}
.ye5{bottom:372.546667pt;}
.yc0{bottom:376.226667pt;}
.y2d{bottom:376.546667pt;}
.y67{bottom:382.946667pt;}
.y107{bottom:384.226667pt;}
.y92{bottom:384.386667pt;}
.y143{bottom:387.106667pt;}
.ye4{bottom:389.506667pt;}
.ybe{bottom:392.866667pt;}
.y2c{bottom:393.506667pt;}
.y66{bottom:399.906667pt;}
.y106{bottom:401.026667pt;}
.y91{bottom:401.346667pt;}
.y142{bottom:402.466667pt;}
.ybc{bottom:409.506667pt;}
.y2b{bottom:410.306667pt;}
.y65{bottom:416.706667pt;}
.y141{bottom:417.666667pt;}
.y105{bottom:417.826667pt;}
.y90{bottom:418.146667pt;}
.ye3{bottom:423.106667pt;}
.y2a{bottom:427.106667pt;}
.yb7{bottom:428.386667pt;}
.y140{bottom:433.026667pt;}
.y64{bottom:433.666667pt;}
.y8f{bottom:434.146667pt;}
.y104{bottom:434.786667pt;}
.ye2{bottom:440.066667pt;}
.y29{bottom:444.066667pt;}
.yb9{bottom:447.106667pt;}
.y8e{bottom:447.266667pt;}
.y13f{bottom:448.386667pt;}
.y63{bottom:450.466667pt;}
.y103{bottom:451.586667pt;}
.ye1{bottom:456.866667pt;}
.y28{bottom:460.866667pt;}
.y13e{bottom:463.746667pt;}
.y8d{bottom:464.226667pt;}
.y62{bottom:467.266667pt;}
.y102{bottom:468.546667pt;}
.yb6{bottom:469.026667pt;}
.ye0{bottom:473.826667pt;}
.y27{bottom:477.826667pt;}
.y13d{bottom:479.106667pt;}
.y61{bottom:484.226667pt;}
.y101{bottom:485.346667pt;}
.yb5{bottom:485.826667pt;}
.y13c{bottom:494.306667pt;}
.y26{bottom:494.626667pt;}
.y60{bottom:501.026667pt;}
.y100{bottom:502.146667pt;}
.yb4{bottom:502.786667pt;}
.ydf{bottom:507.426667pt;}
.y13b{bottom:509.026667pt;}
.y25{bottom:511.426667pt;}
.y5f{bottom:517.986667pt;}
.yff{bottom:519.106667pt;}
.yb3{bottom:519.586667pt;}
.y13a{bottom:521.986667pt;}
.yde{bottom:524.386667pt;}
.y24{bottom:528.386667pt;}
.y5e{bottom:534.813333pt;}
.yfe{bottom:535.933333pt;}
.yb2{bottom:536.573333pt;}
.ydd{bottom:541.213333pt;}
.y23{bottom:545.213333pt;}
.y5d{bottom:551.773333pt;}
.y139{bottom:551.933333pt;}
.yfd{bottom:552.893333pt;}
.yb1{bottom:553.373333pt;}
.ydc{bottom:558.173333pt;}
.y22{bottom:562.173333pt;}
.y138{bottom:564.573333pt;}
.y5c{bottom:568.573333pt;}
.yfc{bottom:569.693333pt;}
.yb0{bottom:570.173333pt;}
.ydb{bottom:574.973333pt;}
.y21{bottom:578.973333pt;}
.y137{bottom:579.933333pt;}
.y5b{bottom:585.373333pt;}
.yfb{bottom:586.493333pt;}
.yaf{bottom:587.133333pt;}
.yda{bottom:591.773333pt;}
.y136{bottom:595.293333pt;}
.y20{bottom:595.773333pt;}
.y5a{bottom:602.333333pt;}
.yfa{bottom:603.453333pt;}
.yae{bottom:603.933333pt;}
.yd9{bottom:608.733333pt;}
.y135{bottom:610.653333pt;}
.y1f{bottom:612.733333pt;}
.y59{bottom:619.133333pt;}
.yf9{bottom:620.253333pt;}
.yad{bottom:620.893333pt;}
.y134{bottom:625.373333pt;}
.yd8{bottom:625.533333pt;}
.y1e{bottom:629.533333pt;}
.y58{bottom:636.093333pt;}
.yf8{bottom:637.213333pt;}
.yac{bottom:637.693333pt;}
.y133{bottom:638.493333pt;}
.yd7{bottom:642.493333pt;}
.y1d{bottom:646.493333pt;}
.y57{bottom:652.893333pt;}
.y132{bottom:653.853333pt;}
.yf7{bottom:654.013333pt;}
.yab{bottom:654.493333pt;}
.yd6{bottom:659.293333pt;}
.y1c{bottom:663.293333pt;}
.y131{bottom:669.213333pt;}
.y56{bottom:669.693333pt;}
.yf6{bottom:670.813333pt;}
.yaa{bottom:671.453333pt;}
.yd5{bottom:676.253333pt;}
.y1b{bottom:680.253333pt;}
.y130{bottom:684.573333pt;}
.y55{bottom:686.653333pt;}
.yf5{bottom:687.773333pt;}
.ya9{bottom:688.253333pt;}
.yd4{bottom:690.813333pt;}
.y1a{bottom:697.053333pt;}
.y12f{bottom:699.933333pt;}
.y54{bottom:703.453333pt;}
.yf4{bottom:703.773333pt;}
.ya8{bottom:705.213333pt;}
.yd3{bottom:709.053333pt;}
.y19{bottom:713.853333pt;}
.y12e{bottom:715.133333pt;}
.yf3{bottom:716.893333pt;}
.y53{bottom:720.413333pt;}
.yd2{bottom:727.133333pt;}
.y18{bottom:729.373333pt;}
.y12d{bottom:730.493333pt;}
.ya7{bottom:731.293333pt;}
.yf2{bottom:733.693333pt;}
.y52{bottom:737.213333pt;}
.y17{bottom:741.213333pt;}
.yce{bottom:745.373333pt;}
.y12c{bottom:745.853333pt;}
.ya6{bottom:748.093333pt;}
.yf1{bottom:750.653333pt;}
.y8c{bottom:752.733333pt;}
.y51{bottom:754.013333pt;}
.y16{bottom:756.573333pt;}
.y12b{bottom:761.213333pt;}
.yd0{bottom:763.613333pt;}
.y8a{bottom:767.333333pt;}
.y50{bottom:771.013333pt;}
.y15{bottom:771.973333pt;}
.y12a{bottom:776.613333pt;}
.y88{bottom:785.573333pt;}
.y14{bottom:787.333333pt;}
.y4f{bottom:787.813333pt;}
.ycd{bottom:788.453333pt;}
.y129{bottom:791.813333pt;}
.y13{bottom:802.693333pt;}
.ycc{bottom:804.453333pt;}
.y4e{bottom:804.773333pt;}
.y86{bottom:806.373333pt;}
.y128{bottom:807.173333pt;}
.y12{bottom:817.893333pt;}
.ycb{bottom:821.253333pt;}
.y4d{bottom:821.573333pt;}
.y127{bottom:822.533333pt;}
.y81{bottom:831.333333pt;}
.y11{bottom:833.253333pt;}
.y126{bottom:837.893333pt;}
.yca{bottom:838.213333pt;}
.y4c{bottom:838.373333pt;}
.y10{bottom:847.973333pt;}
.y125{bottom:853.253333pt;}
.y83{bottom:854.693333pt;}
.y4b{bottom:855.333333pt;}
.yf{bottom:860.933333pt;}
.yc9{bottom:867.333333pt;}
.y124{bottom:868.613333pt;}
.y4a{bottom:872.133333pt;}
.ye{bottom:876.293333pt;}
.y80{bottom:882.373333pt;}
.y123{bottom:883.493333pt;}
.yc8{bottom:884.133333pt;}
.y49{bottom:889.093333pt;}
.yd{bottom:891.493333pt;}
.y122{bottom:898.373333pt;}
.y7f{bottom:900.293333pt;}
.yc7{bottom:900.933333pt;}
.y48{bottom:905.893333pt;}
.yc{bottom:907.173333pt;}
.y121{bottom:911.653333pt;}
.yc6{bottom:917.893333pt;}
.y47{bottom:922.693333pt;}
.yb{bottom:923.973333pt;}
.y120{bottom:928.293333pt;}
.y7e{bottom:934.053333pt;}
.yc5{bottom:934.693333pt;}
.y46{bottom:939.653333pt;}
.ya{bottom:940.933333pt;}
.y11f{bottom:943.653333pt;}
.y7d{bottom:951.653333pt;}
.y45{bottom:958.853333pt;}
.y11e{bottom:959.013333pt;}
.y9{bottom:968.133333pt;}
.y7c{bottom:968.453333pt;}
.y11d{bottom:974.373333pt;}
.y44{bottom:978.213333pt;}
.y8{bottom:984.933333pt;}
.y7b{bottom:985.253333pt;}
.y11c{bottom:989.733333pt;}
.y43{bottom:997.413333pt;}
.y7{bottom:1001.893333pt;}
.y7a{bottom:1002.213333pt;}
.y11b{bottom:1004.960000pt;}
.y42{bottom:1016.640000pt;}
.y6{bottom:1018.720000pt;}
.y79{bottom:1019.040000pt;}
.y11a{bottom:1020.320000pt;}
.ya5{bottom:1022.720000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y41{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.h1c{height:16.800000pt;}
.h17{height:16.960000pt;}
.h20{height:17.440000pt;}
.h21{height:17.600000pt;}
.h1d{height:17.760000pt;}
.h1b{height:19.200000pt;}
.h16{height:19.520000pt;}
.h25{height:20.512000pt;}
.h22{height:21.006562pt;}
.h14{height:21.920000pt;}
.h13{height:22.240000pt;}
.h15{height:23.680000pt;}
.h27{height:25.760000pt;}
.h2a{height:29.280000pt;}
.h1e{height:31.390625pt;}
.h28{height:33.312000pt;}
.h29{height:33.760000pt;}
.h1f{height:35.680000pt;}
.hb{height:36.431250pt;}
.h1a{height:37.280000pt;}
.h24{height:38.752000pt;}
.h19{height:42.063437pt;}
.h9{height:42.084375pt;}
.h2d{height:43.215000pt;}
.h4{height:44.073883pt;}
.h10{height:44.648750pt;}
.he{height:45.396250pt;}
.h12{height:45.600000pt;}
.hd{height:47.109375pt;}
.ha{height:47.335938pt;}
.h23{height:52.108438pt;}
.h2{height:52.134375pt;}
.hc{height:52.468750pt;}
.h2b{height:52.834688pt;}
.h7{height:53.535000pt;}
.h3{height:54.598989pt;}
.h18{height:57.758750pt;}
.h8{height:57.787500pt;}
.h11{height:58.563750pt;}
.h6{height:59.340000pt;}
.h26{height:60.352000pt;}
.hf{height:60.519362pt;}
.h2c{height:73.490625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:20.000000pt;}
.w4{width:21.600000pt;}
.w1d{width:42.560000pt;}
.w1e{width:44.032000pt;}
.w23{width:48.000000pt;}
.w22{width:49.280000pt;}
.w20{width:56.000000pt;}
.w1f{width:57.280000pt;}
.w21{width:57.312000pt;}
.w25{width:60.000000pt;}
.w24{width:60.032000pt;}
.w18{width:88.032000pt;}
.w1b{width:98.560000pt;}
.w1a{width:101.312000pt;}
.w17{width:110.592000pt;}
.w19{width:114.720000pt;}
.w1c{width:121.312000pt;}
.w10{width:186.746667pt;}
.w14{width:188.026667pt;}
.wc{width:190.586667pt;}
.wb{width:194.586667pt;}
.w5{width:209.346667pt;}
.w13{width:214.586667pt;}
.w16{width:214.906667pt;}
.w8{width:217.466667pt;}
.w7{width:218.746667pt;}
.wf{width:220.026667pt;}
.wd{width:229.306667pt;}
.w11{width:242.626667pt;}
.w15{width:243.426667pt;}
.w9{width:258.626667pt;}
.wa{width:386.626667pt;}
.w12{width:404.066667pt;}
.we{width:408.066667pt;}
.w6{width:437.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:8.320000pt;}
.x17{left:37.792000pt;}
.x4{left:56.800000pt;}
.x16{left:60.960000pt;}
.x23{left:68.320000pt;}
.x21{left:70.720000pt;}
.x49{left:79.039988pt;}
.x45{left:80.639988pt;}
.x6{left:82.399988pt;}
.x2b{left:87.520000pt;}
.x1d{left:90.591988pt;}
.xe{left:94.591988pt;}
.x29{left:98.752000pt;}
.x25{left:101.320000pt;}
.x24{left:103.226667pt;}
.x1e{left:105.311988pt;}
.x43{left:107.391988pt;}
.x1b{left:114.600000pt;}
.x14{left:116.671988pt;}
.x1a{left:118.720000pt;}
.x48{left:122.591988pt;}
.x31{left:123.711988pt;}
.x5{left:127.871988pt;}
.x37{left:128.831988pt;}
.x1c{left:130.431988pt;}
.x10{left:132.351988pt;}
.x2e{left:134.106655pt;}
.x26{left:135.066655pt;}
.x1f{left:138.586655pt;}
.x11{left:140.666655pt;}
.x12{left:154.586655pt;}
.x27{left:162.746655pt;}
.x15{left:167.706655pt;}
.x39{left:172.986667pt;}
.x36{left:188.186667pt;}
.x38{left:196.346655pt;}
.x8{left:197.946655pt;}
.x3e{left:216.986667pt;}
.x32{left:220.666655pt;}
.x1{left:232.986655pt;}
.x3a{left:262.306667pt;}
.x47{left:268.386655pt;}
.x18{left:271.586667pt;}
.x2f{left:279.266655pt;}
.x7{left:295.266655pt;}
.x34{left:305.026667pt;}
.x20{left:321.026667pt;}
.x28{left:328.386655pt;}
.x2a{left:329.506667pt;}
.x4a{left:330.626655pt;}
.x44{left:332.706655pt;}
.x46{left:363.586655pt;}
.x3b{left:378.306667pt;}
.x2{left:392.226655pt;}
.x33{left:396.866655pt;}
.x40{left:437.053333pt;}
.x4b{left:440.413322pt;}
.x9{left:441.373322pt;}
.x3c{left:481.053333pt;}
.xa{left:483.453322pt;}
.xb{left:490.173322pt;}
.x19{left:491.613333pt;}
.x22{left:517.053333pt;}
.x35{left:521.053333pt;}
.x41{left:531.613333pt;}
.x4c{left:537.213322pt;}
.x2c{left:550.813333pt;}
.x4d{left:553.693322pt;}
.xd{left:568.093322pt;}
.x3d{left:581.053333pt;}
.x30{left:625.573322pt;}
.x13{left:627.653322pt;}
.x42{left:642.373333pt;}
.xc{left:679.333322pt;}
.x3{left:699.333322pt;}
.x2d{left:724.293322pt;}
.xf{left:728.133333pt;}
}




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