
    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_83fd55ab8090258799651915.woff')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_75799daacd31ed8718b44efb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.208008;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_272a907d7d0952adc7bf6ef9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_67ecf5cfaac41a938a77cd4b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_561b571fbd70b6e87e1512d1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_2aa6561817f9e1c46e8638cc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.096680;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_ec795464cea17bac8f46ad24.woff')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_baf0cd90cc353d7b895242a8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_53f1696ddde2c16c17245b5b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.119629;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_f8bae56b1d7fbc13419628cb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b0fc783b652e721fdd276940.woff')format("woff");}.ffb{font-family:ffb;line-height:1.102051;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_42997992dc41f0a42deceed3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_724c43a1da43167d36868fdc.woff')format("woff");}.ffd{font-family:ffd;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3380cd8559cfd6178c0ad5ed.woff')format("woff");}.ffe{font-family:ffe;line-height:0.945312;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.372800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls6b{letter-spacing:-7.680000px;}
.ls58{letter-spacing:-2.304000px;}
.ls69{letter-spacing:-1.584000px;}
.ls31{letter-spacing:-1.536000px;}
.ls19{letter-spacing:-1.392000px;}
.ls6a{letter-spacing:-0.936000px;}
.ls57{letter-spacing:-0.864000px;}
.ls2e{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.762000px;}
.ls41{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls22{letter-spacing:-0.576000px;}
.ls27{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.241800px;}
.ls44{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.174000px;}
.ls23{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.079200px;}
.ls21{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.054720px;}
.ls37{letter-spacing:-0.043200px;}
.ls11{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.000001px;}
.ls1{letter-spacing:0.012960px;}
.ls34{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.048960px;}
.ls1b{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.075000px;}
.ls36{letter-spacing:0.097920px;}
.ls55{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.152400px;}
.ls1a{letter-spacing:0.193200px;}
.ls2d{letter-spacing:0.216000px;}
.ls3c{letter-spacing:0.265200px;}
.ls68{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.319680px;}
.ls6c{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls3b{letter-spacing:0.371400px;}
.ls35{letter-spacing:0.371520px;}
.ls28{letter-spacing:0.720000px;}
.ls53{letter-spacing:0.840000px;}
.ls3{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.440000px;}
.ls2b{letter-spacing:2.160000px;}
.ls51{letter-spacing:2.880000px;}
.lsd{letter-spacing:3.427200px;}
.ls3e{letter-spacing:3.600000px;}
.ls52{letter-spacing:3.780000px;}
.ls26{letter-spacing:4.320000px;}
.lsf{letter-spacing:4.867200px;}
.ls30{letter-spacing:5.040000px;}
.ls67{letter-spacing:5.160000px;}
.ls2c{letter-spacing:5.220000px;}
.lse{letter-spacing:5.587200px;}
.ls3d{letter-spacing:5.760000px;}
.ls1e{letter-spacing:6.480000px;}
.ls25{letter-spacing:7.200000px;}
.ls42{letter-spacing:7.920000px;}
.ls32{letter-spacing:8.040000px;}
.ls43{letter-spacing:8.640000px;}
.ls4c{letter-spacing:8.760000px;}
.ls1d{letter-spacing:9.360000px;}
.ls33{letter-spacing:10.080000px;}
.ls24{letter-spacing:10.800000px;}
.ls54{letter-spacing:11.520000px;}
.ls45{letter-spacing:12.240000px;}
.ls3a{letter-spacing:12.780000px;}
.ls47{letter-spacing:12.960000px;}
.ls39{letter-spacing:13.500000px;}
.ls46{letter-spacing:13.680000px;}
.ls38{letter-spacing:14.220000px;}
.ls8{letter-spacing:14.227200px;}
.ls6{letter-spacing:14.947200px;}
.ls3f{letter-spacing:15.660000px;}
.ls5{letter-spacing:15.667200px;}
.ls2f{letter-spacing:15.840000px;}
.ls40{letter-spacing:16.380000px;}
.ls7{letter-spacing:16.387200px;}
.ls63{letter-spacing:16.560000px;}
.ls4{letter-spacing:17.107200px;}
.ls64{letter-spacing:17.280000px;}
.ls59{letter-spacing:18.720000px;}
.ls5a{letter-spacing:19.440000px;}
.ls5b{letter-spacing:19.620000px;}
.ls62{letter-spacing:25.920000px;}
.ls65{letter-spacing:26.640000px;}
.ls66{letter-spacing:26.820000px;}
.ls60{letter-spacing:27.360000px;}
.ls61{letter-spacing:28.080000px;}
.ls9{letter-spacing:33.667200px;}
.lsa{letter-spacing:34.387200px;}
.lsc{letter-spacing:37.267200px;}
.lsb{letter-spacing:38.707200px;}
.ls49{letter-spacing:45.360000px;}
.ls48{letter-spacing:46.080000px;}
.ls4a{letter-spacing:47.520000px;}
.ls4b{letter-spacing:47.700000px;}
.ls5d{letter-spacing:131.040000px;}
.ls5e{letter-spacing:131.160000px;}
.ls5c{letter-spacing:132.480000px;}
.ls5f{letter-spacing:132.660000px;}
.ls4e{letter-spacing:133.200000px;}
.ls4f{letter-spacing:133.320000px;}
.ls4d{letter-spacing:133.920000px;}
.ls50{letter-spacing:134.100000px;}
.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;}
}
.ws1{word-spacing:-22.492800px;}
.ws3{word-spacing:-22.438080px;}
.ws2{word-spacing:-22.413600px;}
.ws0{word-spacing:-22.318800px;}
.ws5{word-spacing:-18.414720px;}
.ws19{word-spacing:-16.712400px;}
.ws14{word-spacing:-16.200000px;}
.ws1a{word-spacing:-16.056000px;}
.ws10{word-spacing:-15.984000px;}
.ws2f{word-spacing:-15.840001px;}
.ws18{word-spacing:-15.840000px;}
.ws12{word-spacing:-15.768000px;}
.ws15{word-spacing:-15.696000px;}
.wsf{word-spacing:-15.552000px;}
.ws11{word-spacing:-15.480000px;}
.ws17{word-spacing:-15.336000px;}
.ws13{word-spacing:-15.264000px;}
.ws25{word-spacing:-15.120000px;}
.ws1b{word-spacing:-15.048000px;}
.ws23{word-spacing:-14.838000px;}
.ws20{word-spacing:-14.647800px;}
.ws24{word-spacing:-14.644800px;}
.ws22{word-spacing:-14.621760px;}
.ws1e{word-spacing:-14.595840px;}
.ws1d{word-spacing:-14.572800px;}
.ws21{word-spacing:-14.529600px;}
.ws1f{word-spacing:-14.331000px;}
.wsb{word-spacing:-13.180800px;}
.ws1c{word-spacing:-11.611200px;}
.ws33{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.144000px;}
.ws8{word-spacing:-0.141240px;}
.wsd{word-spacing:-0.138240px;}
.wsc{word-spacing:-0.115200px;}
.ws16{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.066240px;}
.ws4{word-spacing:-0.054000px;}
.wse{word-spacing:0.000000px;}
.ws28{word-spacing:0.144000px;}
.ws7{word-spacing:0.175560px;}
.ws2d{word-spacing:0.216000px;}
.ws2b{word-spacing:0.288000px;}
.ws31{word-spacing:0.432000px;}
.ws2a{word-spacing:0.504000px;}
.ws9{word-spacing:0.581760px;}
.wsa{word-spacing:0.695760px;}
.ws27{word-spacing:0.720000px;}
.ws2c{word-spacing:0.792000px;}
.ws35{word-spacing:0.864000px;}
.ws34{word-spacing:1.512000px;}
.ws2e{word-spacing:2.232000px;}
.ws36{word-spacing:7.608000px;}
._5{margin-left:-12.984480px;}
._4{margin-left:-11.748000px;}
._3{margin-left:-9.993600px;}
._8{margin-left:-8.767680px;}
._6{margin-left:-6.954000px;}
._d{margin-left:-5.823120px;}
._2{margin-left:-3.885120px;}
._1{margin-left:-2.663040px;}
._0{margin-left:-1.248000px;}
._a{width:1.386240px;}
._f{width:2.906880px;}
._10{width:4.176480px;}
._c{width:5.295840px;}
._7{width:6.426000px;}
._e{width:7.429440px;}
._9{width:8.544960px;}
._13{width:9.869760px;}
._18{width:11.062080px;}
._15{width:12.121920px;}
._14{width:13.237440px;}
._1d{width:14.624160px;}
._2d{width:15.958560px;}
._b{width:17.619840px;}
._19{width:18.884640px;}
._11{width:20.457600px;}
._12{width:21.628800px;}
._1e{width:23.342400px;}
._24{width:24.540960px;}
._26{width:25.560000px;}
._1f{width:26.640000px;}
._2f{width:27.792000px;}
._1c{width:29.345760px;}
._1b{width:31.176000px;}
._1a{width:32.328000px;}
._16{width:33.716160px;}
._17{width:34.845120px;}
._2e{width:35.891040px;}
._21{width:37.296000px;}
._20{width:38.520000px;}
._27{width:40.080000px;}
._29{width:42.144000px;}
._28{width:43.200000px;}
._32{width:44.496000px;}
._2b{width:45.720000px;}
._2a{width:46.800000px;}
._30{width:48.028800px;}
._2c{width:49.176000px;}
._22{width:52.272000px;}
._23{width:53.280000px;}
._25{width:60.264000px;}
._31{width:61.704000px;}
._3b{width:62.724000px;}
._34{width:80.760000px;}
._33{width:81.960000px;}
._38{width:117.288000px;}
._3a{width:128.208000px;}
._39{width:129.485760px;}
._37{width:198.186000px;}
._36{width:221.784000px;}
._3c{width:380.184000px;}
._35{width:449.742000px;}
._3d{width:848.316000px;}
.fc2{color:rgb(70,120,134);}
.fc3{color:rgb(88,88,88);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs3{font-size:102.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.140000px;}
.y1{bottom:78.480000px;}
.y116{bottom:115.560000px;}
.ybd{bottom:117.360000px;}
.yd2{bottom:129.240000px;}
.y30{bottom:130.140000px;}
.y102{bottom:131.940000px;}
.ya4{bottom:136.080000px;}
.ye2{bottom:136.260000px;}
.y6e{bottom:139.860000px;}
.y50{bottom:142.200000px;}
.y159{bottom:144.540000px;}
.y115{bottom:147.240000px;}
.y2f{bottom:149.040000px;}
.y87{bottom:158.760000px;}
.yd1{bottom:160.920000px;}
.y101{bottom:163.620000px;}
.ye1{bottom:165.420000px;}
.ybc{bottom:167.040000px;}
.y132{bottom:167.400000px;}
.ya3{bottom:167.790000px;}
.y2e{bottom:168.150000px;}
.y14b{bottom:168.690000px;}
.y4f{bottom:173.910000px;}
.y158{bottom:176.430000px;}
.y6d{bottom:180.570000px;}
.y2d{bottom:187.050000px;}
.y114{bottom:190.830000px;}
.yd0{bottom:192.630000px;}
.y100{bottom:195.330000px;}
.ybb{bottom:198.750000px;}
.ye0{bottom:198.930000px;}
.y131{bottom:199.290000px;}
.ya2{bottom:199.470000px;}
.y14a{bottom:200.370000px;}
.y4e{bottom:205.410000px;}
.y86{bottom:208.290000px;}
.y6c{bottom:212.250000px;}
.y2c{bottom:218.190000px;}
.y157{bottom:219.990000px;}
.y113{bottom:222.510000px;}
.ycf{bottom:224.310000px;}
.yff{bottom:227.010000px;}
.ydf{bottom:227.910000px;}
.yba{bottom:230.430000px;}
.y130{bottom:230.970000px;}
.ya1{bottom:231.150000px;}
.y149{bottom:232.050000px;}
.y163{bottom:232.230000px;}
.y4d{bottom:237.090000px;}
.y2b{bottom:237.630000px;}
.y6b{bottom:243.930000px;}
.y112{bottom:254.190000px;}
.yce{bottom:255.990000px;}
.y2a{bottom:256.890000px;}
.yde{bottom:257.610000px;}
.y85{bottom:257.970000px;}
.yfe{bottom:258.690000px;}
.yb9{bottom:262.110000px;}
.y12f{bottom:262.650000px;}
.y156{bottom:263.550000px;}
.y162{bottom:263.910000px;}
.y4c{bottom:268.770000px;}
.y148{bottom:275.430000px;}
.y6a{bottom:275.610000px;}
.y29{bottom:276.150000px;}
.ycd{bottom:276.510000px;}
.ya0{bottom:280.830000px;}
.ydd{bottom:287.490000px;}
.y84{bottom:289.650000px;}
.yfd{bottom:290.190000px;}
.y111{bottom:291.270000px;}
.ycc{bottom:294.150000px;}
.y28{bottom:295.590000px;}
.y4b{bottom:300.450000px;}
.y12e{bottom:306.030000px;}
.y69{bottom:307.290000px;}
.ycb{bottom:311.610000px;}
.yb8{bottom:311.790000px;}
.y9f{bottom:312.510000px;}
.y110{bottom:313.230000px;}
.y27{bottom:314.850000px;}
.ydc{bottom:316.470000px;}
.y83{bottom:321.330000px;}
.yfc{bottom:321.870000px;}
.yca{bottom:329.250000px;}
.y4a{bottom:332.130000px;}
.y26{bottom:334.290000px;}
.y12d{bottom:337.890000px;}
.y68{bottom:338.790000px;}
.y147{bottom:338.970000px;}
.yb7{bottom:343.470000px;}
.y9e{bottom:344.190000px;}
.ydb{bottom:346.170000px;}
.y10f{bottom:347.970000px;}
.yc9{bottom:349.770000px;}
.y25{bottom:353.550000px;}
.y49{bottom:363.810000px;}
.y12c{bottom:369.570000px;}
.y67{bottom:370.470000px;}
.y146{bottom:370.650000px;}
.y155{bottom:370.830000px;}
.y82{bottom:371.010000px;}
.y24{bottom:372.990000px;}
.yb6{bottom:375.150000px;}
.y10e{bottom:379.650000px;}
.yfb{bottom:385.230000px;}
.y23{bottom:392.250000px;}
.y9d{bottom:393.870000px;}
.y48{bottom:395.490000px;}
.y12b{bottom:401.250000px;}
.y66{bottom:402.150000px;}
.y154{bottom:402.510000px;}
.y81{bottom:402.690000px;}
.yb5{bottom:406.830000px;}
.yda{bottom:408.810000px;}
.y10d{bottom:411.330000px;}
.y22{bottom:411.690000px;}
.y145{bottom:414.075000px;}
.yfa{bottom:416.955000px;}
.y9c{bottom:425.415000px;}
.y47{bottom:427.035000px;}
.y21{bottom:430.995000px;}
.y65{bottom:433.875000px;}
.y153{bottom:434.235000px;}
.y80{bottom:434.415000px;}
.yd9{bottom:437.835000px;}
.yb4{bottom:438.375000px;}
.y10c{bottom:442.875000px;}
.y12a{bottom:444.675000px;}
.y144{bottom:445.935000px;}
.yf9{bottom:448.635000px;}
.y20{bottom:450.435000px;}
.y9b{bottom:457.095000px;}
.y46{bottom:458.715000px;}
.y64{bottom:465.555000px;}
.y7f{bottom:465.915000px;}
.y1f{bottom:469.695000px;}
.yb3{bottom:470.055000px;}
.yd8{bottom:471.315000px;}
.y10b{bottom:474.555000px;}
.y129{bottom:476.535000px;}
.y143{bottom:477.615000px;}
.yf8{bottom:480.315000px;}
.y9a{bottom:488.775000px;}
.y1e{bottom:489.135000px;}
.y45{bottom:490.395000px;}
.y63{bottom:497.235000px;}
.y7e{bottom:497.775000px;}
.yb2{bottom:501.735000px;}
.yd7{bottom:504.795000px;}
.y10a{bottom:506.235000px;}
.y128{bottom:508.215000px;}
.y1d{bottom:508.395000px;}
.y142{bottom:509.295000px;}
.y161{bottom:509.475000px;}
.yf7{bottom:511.815000px;}
.y99{bottom:525.315000px;}
.y62{bottom:528.915000px;}
.y44{bottom:531.075000px;}
.yb1{bottom:533.415000px;}
.yd6{bottom:533.775000px;}
.y109{bottom:537.915000px;}
.y7d{bottom:538.455000px;}
.y127{bottom:539.895000px;}
.y152{bottom:541.155000px;}
.yf6{bottom:543.495000px;}
.y1c{bottom:547.095000px;}
.y141{bottom:552.675000px;}
.y98{bottom:555.735000px;}
.y61{bottom:560.415000px;}
.y43{bottom:562.755000px;}
.yd5{bottom:562.935000px;}
.yb0{bottom:565.095000px;}
.y1b{bottom:565.455000px;}
.y108{bottom:569.595000px;}
.y7c{bottom:569.955000px;}
.y126{bottom:571.395000px;}
.y166{bottom:572.655000px;}
.y160{bottom:572.835000px;}
.yf5{bottom:575.175000px;}
.y140{bottom:584.535000px;}
.y1a{bottom:590.115000px;}
.y97{bottom:591.195000px;}
.y60{bottom:592.095000px;}
.y42{bottom:594.435000px;}
.yd4{bottom:598.395000px;}
.y107{bottom:601.275000px;}
.y7b{bottom:601.635000px;}
.y19{bottom:605.595000px;}
.yf4{bottom:606.855000px;}
.yaf{bottom:614.775000px;}
.y125{bottom:616.215000px;}
.y151{bottom:616.395000px;}
.y96{bottom:622.875000px;}
.y18{bottom:623.775000px;}
.y41{bottom:626.115000px;}
.yd3{bottom:629.895000px;}
.y106{bottom:632.775000px;}
.y7a{bottom:633.315000px;}
.yf3{bottom:638.535000px;}
.yc8{bottom:640.875000px;}
.y17{bottom:642.135000px;}
.yae{bottom:646.455000px;}
.y13f{bottom:647.895000px;}
.y124{bottom:648.075000px;}
.y15f{bottom:648.255000px;}
.y95{bottom:654.555000px;}
.y5f{bottom:655.455000px;}
.y40{bottom:657.615000px;}
.y16{bottom:660.525000px;}
.y105{bottom:664.485000px;}
.y79{bottom:665.025000px;}
.yc7{bottom:667.005000px;}
.yf2{bottom:670.245000px;}
.yad{bottom:678.165000px;}
.y123{bottom:679.785000px;}
.y15{bottom:680.685000px;}
.yc6{bottom:684.465000px;}
.y94{bottom:686.085000px;}
.y5e{bottom:687.165000px;}
.y3f{bottom:689.325000px;}
.y13e{bottom:691.485000px;}
.y150{bottom:691.665000px;}
.y104{bottom:696.165000px;}
.y78{bottom:696.705000px;}
.yf1{bottom:701.925000px;}
.y14{bottom:705.165000px;}
.yac{bottom:709.845000px;}
.y122{bottom:711.285000px;}
.yc5{bottom:711.465000px;}
.y93{bottom:717.765000px;}
.y5d{bottom:718.845000px;}
.y3e{bottom:721.005000px;}
.y165{bottom:723.165000px;}
.y13d{bottom:723.345000px;}
.y15e{bottom:723.525000px;}
.y13{bottom:727.665000px;}
.y103{bottom:727.845000px;}
.yf0{bottom:733.425000px;}
.y77{bottom:738.645000px;}
.yab{bottom:741.345000px;}
.y121{bottom:743.145000px;}
.y12{bottom:746.025000px;}
.y92{bottom:749.445000px;}
.y5c{bottom:750.345000px;}
.y3d{bottom:752.685000px;}
.y14f{bottom:755.025000px;}
.y15d{bottom:755.205000px;}
.yc4{bottom:759.525000px;}
.y11{bottom:764.385000px;}
.yef{bottom:765.105000px;}
.y13c{bottom:766.905000px;}
.yaa{bottom:773.025000px;}
.y76{bottom:780.945000px;}
.y91{bottom:781.125000px;}
.y5b{bottom:782.025000px;}
.y10{bottom:784.005000px;}
.y3c{bottom:784.365000px;}
.y120{bottom:786.525000px;}
.y14e{bottom:786.705000px;}
.yc3{bottom:791.205000px;}
.yee{bottom:796.785000px;}
.y13b{bottom:798.585000px;}
.ya9{bottom:804.705000px;}
.yf{bottom:806.865000px;}
.y90{bottom:812.805000px;}
.y5a{bottom:813.705000px;}
.y3b{bottom:816.045000px;}
.y11f{bottom:818.385000px;}
.yc2{bottom:822.885000px;}
.yed{bottom:828.465000px;}
.ye{bottom:829.545000px;}
.y13a{bottom:830.265000px;}
.y15c{bottom:830.445000px;}
.y75{bottom:836.205000px;}
.ya8{bottom:836.385000px;}
.y8f{bottom:844.485000px;}
.y59{bottom:845.385000px;}
.y3a{bottom:847.725000px;}
.yd{bottom:847.905000px;}
.y11e{bottom:850.065000px;}
.yc1{bottom:854.385000px;}
.yec{bottom:860.145000px;}
.y139{bottom:862.125000px;}
.yc{bottom:866.265000px;}
.ya7{bottom:868.065000px;}
.y8e{bottom:876.165000px;}
.y74{bottom:876.885000px;}
.y58{bottom:877.065000px;}
.y39{bottom:879.225000px;}
.y11d{bottom:881.745000px;}
.yb{bottom:885.705000px;}
.yc0{bottom:886.065000px;}
.yeb{bottom:891.825000px;}
.y14d{bottom:893.625000px;}
.y15b{bottom:893.805000px;}
.ya6{bottom:899.745000px;}
.y138{bottom:905.550000px;}
.ya{bottom:907.170000px;}
.y8d{bottom:907.890000px;}
.y73{bottom:908.610000px;}
.y57{bottom:908.790000px;}
.y38{bottom:910.950000px;}
.ybf{bottom:917.790000px;}
.y11c{bottom:925.350000px;}
.yea{bottom:928.770000px;}
.ya5{bottom:931.470000px;}
.y15a{bottom:937.230000px;}
.y137{bottom:937.410000px;}
.y72{bottom:940.290000px;}
.y56{bottom:940.470000px;}
.y37{bottom:942.630000px;}
.y8c{bottom:944.610000px;}
.ybe{bottom:949.470000px;}
.y9{bottom:955.050000px;}
.y11b{bottom:957.210000px;}
.ye9{bottom:960.810000px;}
.y14c{bottom:968.910000px;}
.y136{bottom:969.090000px;}
.y71{bottom:971.970000px;}
.y36{bottom:974.310000px;}
.y8b{bottom:976.290000px;}
.y55{bottom:981.150000px;}
.y8{bottom:984.930000px;}
.ye8{bottom:989.790000px;}
.y11a{bottom:1000.590000px;}
.y135{bottom:1000.770000px;}
.y70{bottom:1003.650000px;}
.y35{bottom:1005.990000px;}
.y8a{bottom:1007.970000px;}
.y54{bottom:1012.830000px;}
.y7{bottom:1014.810000px;}
.ye7{bottom:1023.270000px;}
.y119{bottom:1032.450000px;}
.y6f{bottom:1035.330000px;}
.y34{bottom:1037.670000px;}
.y89{bottom:1039.650000px;}
.y134{bottom:1044.330000px;}
.y53{bottom:1044.510000px;}
.y6{bottom:1044.690000px;}
.ye6{bottom:1052.250000px;}
.y118{bottom:1064.130000px;}
.y33{bottom:1069.350000px;}
.y88{bottom:1071.330000px;}
.y164{bottom:1075.830000px;}
.y52{bottom:1076.010000px;}
.ye5{bottom:1081.230000px;}
.y5{bottom:1099.590000px;}
.y32{bottom:1100.850000px;}
.y117{bottom:1107.510000px;}
.y51{bottom:1107.690000px;}
.ye4{bottom:1111.110000px;}
.y4{bottom:1119.930000px;}
.y31{bottom:1137.930000px;}
.y3{bottom:1139.370000px;}
.y133{bottom:1139.550000px;}
.ye3{bottom:1140.090000px;}
.h12{height:44.090508px;}
.hb{height:48.410156px;}
.h11{height:52.465078px;}
.h9{height:53.446289px;}
.h13{height:53.573906px;}
.h8{height:58.154062px;}
.h2{height:59.147227px;}
.h5{height:59.383125px;}
.hc{height:59.932969px;}
.h3{height:62.402344px;}
.h17{height:62.648438px;}
.ha{height:63.210938px;}
.h10{height:63.949219px;}
.hd{height:65.560781px;}
.he{height:68.267813px;}
.h15{height:68.440781px;}
.h4{height:71.261719px;}
.hf{height:74.820586px;}
.h14{height:83.560781px;}
.h16{height:83.680781px;}
.h6{height:89.759531px;}
.h7{height:113.519531px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.655987px;}
.x6{left:129.275987px;}
.x13{left:138.275987px;}
.x4{left:139.715987px;}
.x5{left:173.189987px;}
.x19{left:174.269987px;}
.x14{left:180.749987px;}
.x7{left:261.569987px;}
.x15{left:337.034987px;}
.x16{left:347.114987px;}
.x3{left:386.714987px;}
.x17{left:401.114987px;}
.x12{left:405.794987px;}
.x18{left:411.374987px;}
.x1{left:429.014987px;}
.xa{left:524.084987px;}
.xf{left:527.144987px;}
.xd{left:576.464987px;}
.xb{left:583.124987px;}
.x8{left:644.144987px;}
.x10{left:648.464987px;}
.x9{left:669.209987px;}
.x11{left:673.349987px;}
.xe{left:690.809987px;}
.xc{left:765.509987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6b{letter-spacing:-6.826667pt;}
.ls58{letter-spacing:-2.048000pt;}
.ls69{letter-spacing:-1.408000pt;}
.ls31{letter-spacing:-1.365333pt;}
.ls19{letter-spacing:-1.237333pt;}
.ls6a{letter-spacing:-0.832000pt;}
.ls57{letter-spacing:-0.768000pt;}
.ls2e{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.677333pt;}
.ls41{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.214933pt;}
.ls44{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.154667pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.070400pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.048640pt;}
.ls37{letter-spacing:-0.038400pt;}
.ls11{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.000001pt;}
.ls1{letter-spacing:0.011520pt;}
.ls34{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.043520pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.066667pt;}
.ls36{letter-spacing:0.087040pt;}
.ls55{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.135467pt;}
.ls1a{letter-spacing:0.171733pt;}
.ls2d{letter-spacing:0.192000pt;}
.ls3c{letter-spacing:0.235733pt;}
.ls68{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.284160pt;}
.ls6c{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3b{letter-spacing:0.330133pt;}
.ls35{letter-spacing:0.330240pt;}
.ls28{letter-spacing:0.640000pt;}
.ls53{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.920000pt;}
.ls51{letter-spacing:2.560000pt;}
.lsd{letter-spacing:3.046400pt;}
.ls3e{letter-spacing:3.200000pt;}
.ls52{letter-spacing:3.360000pt;}
.ls26{letter-spacing:3.840000pt;}
.lsf{letter-spacing:4.326400pt;}
.ls30{letter-spacing:4.480000pt;}
.ls67{letter-spacing:4.586667pt;}
.ls2c{letter-spacing:4.640000pt;}
.lse{letter-spacing:4.966400pt;}
.ls3d{letter-spacing:5.120000pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls25{letter-spacing:6.400000pt;}
.ls42{letter-spacing:7.040000pt;}
.ls32{letter-spacing:7.146667pt;}
.ls43{letter-spacing:7.680000pt;}
.ls4c{letter-spacing:7.786667pt;}
.ls1d{letter-spacing:8.320000pt;}
.ls33{letter-spacing:8.960000pt;}
.ls24{letter-spacing:9.600000pt;}
.ls54{letter-spacing:10.240000pt;}
.ls45{letter-spacing:10.880000pt;}
.ls3a{letter-spacing:11.360000pt;}
.ls47{letter-spacing:11.520000pt;}
.ls39{letter-spacing:12.000000pt;}
.ls46{letter-spacing:12.160000pt;}
.ls38{letter-spacing:12.640000pt;}
.ls8{letter-spacing:12.646400pt;}
.ls6{letter-spacing:13.286400pt;}
.ls3f{letter-spacing:13.920000pt;}
.ls5{letter-spacing:13.926400pt;}
.ls2f{letter-spacing:14.080000pt;}
.ls40{letter-spacing:14.560000pt;}
.ls7{letter-spacing:14.566400pt;}
.ls63{letter-spacing:14.720000pt;}
.ls4{letter-spacing:15.206400pt;}
.ls64{letter-spacing:15.360000pt;}
.ls59{letter-spacing:16.640000pt;}
.ls5a{letter-spacing:17.280000pt;}
.ls5b{letter-spacing:17.440000pt;}
.ls62{letter-spacing:23.040000pt;}
.ls65{letter-spacing:23.680000pt;}
.ls66{letter-spacing:23.840000pt;}
.ls60{letter-spacing:24.320000pt;}
.ls61{letter-spacing:24.960000pt;}
.ls9{letter-spacing:29.926400pt;}
.lsa{letter-spacing:30.566400pt;}
.lsc{letter-spacing:33.126400pt;}
.lsb{letter-spacing:34.406400pt;}
.ls49{letter-spacing:40.320000pt;}
.ls48{letter-spacing:40.960000pt;}
.ls4a{letter-spacing:42.240000pt;}
.ls4b{letter-spacing:42.400000pt;}
.ls5d{letter-spacing:116.480000pt;}
.ls5e{letter-spacing:116.586667pt;}
.ls5c{letter-spacing:117.760000pt;}
.ls5f{letter-spacing:117.920000pt;}
.ls4e{letter-spacing:118.400000pt;}
.ls4f{letter-spacing:118.506667pt;}
.ls4d{letter-spacing:119.040000pt;}
.ls50{letter-spacing:119.200000pt;}
.ws1{word-spacing:-19.993600pt;}
.ws3{word-spacing:-19.944960pt;}
.ws2{word-spacing:-19.923200pt;}
.ws0{word-spacing:-19.838933pt;}
.ws5{word-spacing:-16.368640pt;}
.ws19{word-spacing:-14.855467pt;}
.ws14{word-spacing:-14.400000pt;}
.ws1a{word-spacing:-14.272000pt;}
.ws10{word-spacing:-14.208000pt;}
.ws2f{word-spacing:-14.080001pt;}
.ws18{word-spacing:-14.080000pt;}
.ws12{word-spacing:-14.016000pt;}
.ws15{word-spacing:-13.952000pt;}
.wsf{word-spacing:-13.824000pt;}
.ws11{word-spacing:-13.760000pt;}
.ws17{word-spacing:-13.632000pt;}
.ws13{word-spacing:-13.568000pt;}
.ws25{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.376000pt;}
.ws23{word-spacing:-13.189333pt;}
.ws20{word-spacing:-13.020267pt;}
.ws24{word-spacing:-13.017600pt;}
.ws22{word-spacing:-12.997120pt;}
.ws1e{word-spacing:-12.974080pt;}
.ws1d{word-spacing:-12.953600pt;}
.ws21{word-spacing:-12.915200pt;}
.ws1f{word-spacing:-12.738667pt;}
.wsb{word-spacing:-11.716267pt;}
.ws1c{word-spacing:-10.321067pt;}
.ws33{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.128000pt;}
.ws8{word-spacing:-0.125547pt;}
.wsd{word-spacing:-0.122880pt;}
.wsc{word-spacing:-0.102400pt;}
.ws16{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws4{word-spacing:-0.048000pt;}
.wse{word-spacing:0.000000pt;}
.ws28{word-spacing:0.128000pt;}
.ws7{word-spacing:0.156053pt;}
.ws2d{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws31{word-spacing:0.384000pt;}
.ws2a{word-spacing:0.448000pt;}
.ws9{word-spacing:0.517120pt;}
.wsa{word-spacing:0.618453pt;}
.ws27{word-spacing:0.640000pt;}
.ws2c{word-spacing:0.704000pt;}
.ws35{word-spacing:0.768000pt;}
.ws34{word-spacing:1.344000pt;}
.ws2e{word-spacing:1.984000pt;}
.ws36{word-spacing:6.762667pt;}
._5{margin-left:-11.541760pt;}
._4{margin-left:-10.442667pt;}
._3{margin-left:-8.883200pt;}
._8{margin-left:-7.793493pt;}
._6{margin-left:-6.181333pt;}
._d{margin-left:-5.176107pt;}
._2{margin-left:-3.453440pt;}
._1{margin-left:-2.367147pt;}
._0{margin-left:-1.109333pt;}
._a{width:1.232213pt;}
._f{width:2.583893pt;}
._10{width:3.712427pt;}
._c{width:4.707413pt;}
._7{width:5.712000pt;}
._e{width:6.603947pt;}
._9{width:7.595520pt;}
._13{width:8.773120pt;}
._18{width:9.832960pt;}
._15{width:10.775040pt;}
._14{width:11.766613pt;}
._1d{width:12.999253pt;}
._2d{width:14.185387pt;}
._b{width:15.662080pt;}
._19{width:16.786347pt;}
._11{width:18.184533pt;}
._12{width:19.225600pt;}
._1e{width:20.748800pt;}
._24{width:21.814187pt;}
._26{width:22.720000pt;}
._1f{width:23.680000pt;}
._2f{width:24.704000pt;}
._1c{width:26.085120pt;}
._1b{width:27.712000pt;}
._1a{width:28.736000pt;}
._16{width:29.969920pt;}
._17{width:30.973440pt;}
._2e{width:31.903147pt;}
._21{width:33.152000pt;}
._20{width:34.240000pt;}
._27{width:35.626667pt;}
._29{width:37.461333pt;}
._28{width:38.400000pt;}
._32{width:39.552000pt;}
._2b{width:40.640000pt;}
._2a{width:41.600000pt;}
._30{width:42.692267pt;}
._2c{width:43.712000pt;}
._22{width:46.464000pt;}
._23{width:47.360000pt;}
._25{width:53.568000pt;}
._31{width:54.848000pt;}
._3b{width:55.754667pt;}
._34{width:71.786667pt;}
._33{width:72.853333pt;}
._38{width:104.256000pt;}
._3a{width:113.962667pt;}
._39{width:115.098453pt;}
._37{width:176.165333pt;}
._36{width:197.141333pt;}
._3c{width:337.941333pt;}
._35{width:399.770667pt;}
._3d{width:754.058667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs3{font-size:90.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.680000pt;}
.y1{bottom:69.760000pt;}
.y116{bottom:102.720000pt;}
.ybd{bottom:104.320000pt;}
.yd2{bottom:114.880000pt;}
.y30{bottom:115.680000pt;}
.y102{bottom:117.280000pt;}
.ya4{bottom:120.960000pt;}
.ye2{bottom:121.120000pt;}
.y6e{bottom:124.320000pt;}
.y50{bottom:126.400000pt;}
.y159{bottom:128.480000pt;}
.y115{bottom:130.880000pt;}
.y2f{bottom:132.480000pt;}
.y87{bottom:141.120000pt;}
.yd1{bottom:143.040000pt;}
.y101{bottom:145.440000pt;}
.ye1{bottom:147.040000pt;}
.ybc{bottom:148.480000pt;}
.y132{bottom:148.800000pt;}
.ya3{bottom:149.146667pt;}
.y2e{bottom:149.466667pt;}
.y14b{bottom:149.946667pt;}
.y4f{bottom:154.586667pt;}
.y158{bottom:156.826667pt;}
.y6d{bottom:160.506667pt;}
.y2d{bottom:166.266667pt;}
.y114{bottom:169.626667pt;}
.yd0{bottom:171.226667pt;}
.y100{bottom:173.626667pt;}
.ybb{bottom:176.666667pt;}
.ye0{bottom:176.826667pt;}
.y131{bottom:177.146667pt;}
.ya2{bottom:177.306667pt;}
.y14a{bottom:178.106667pt;}
.y4e{bottom:182.586667pt;}
.y86{bottom:185.146667pt;}
.y6c{bottom:188.666667pt;}
.y2c{bottom:193.946667pt;}
.y157{bottom:195.546667pt;}
.y113{bottom:197.786667pt;}
.ycf{bottom:199.386667pt;}
.yff{bottom:201.786667pt;}
.ydf{bottom:202.586667pt;}
.yba{bottom:204.826667pt;}
.y130{bottom:205.306667pt;}
.ya1{bottom:205.466667pt;}
.y149{bottom:206.266667pt;}
.y163{bottom:206.426667pt;}
.y4d{bottom:210.746667pt;}
.y2b{bottom:211.226667pt;}
.y6b{bottom:216.826667pt;}
.y112{bottom:225.946667pt;}
.yce{bottom:227.546667pt;}
.y2a{bottom:228.346667pt;}
.yde{bottom:228.986667pt;}
.y85{bottom:229.306667pt;}
.yfe{bottom:229.946667pt;}
.yb9{bottom:232.986667pt;}
.y12f{bottom:233.466667pt;}
.y156{bottom:234.266667pt;}
.y162{bottom:234.586667pt;}
.y4c{bottom:238.906667pt;}
.y148{bottom:244.826667pt;}
.y6a{bottom:244.986667pt;}
.y29{bottom:245.466667pt;}
.ycd{bottom:245.786667pt;}
.ya0{bottom:249.626667pt;}
.ydd{bottom:255.546667pt;}
.y84{bottom:257.466667pt;}
.yfd{bottom:257.946667pt;}
.y111{bottom:258.906667pt;}
.ycc{bottom:261.466667pt;}
.y28{bottom:262.746667pt;}
.y4b{bottom:267.066667pt;}
.y12e{bottom:272.026667pt;}
.y69{bottom:273.146667pt;}
.ycb{bottom:276.986667pt;}
.yb8{bottom:277.146667pt;}
.y9f{bottom:277.786667pt;}
.y110{bottom:278.426667pt;}
.y27{bottom:279.866667pt;}
.ydc{bottom:281.306667pt;}
.y83{bottom:285.626667pt;}
.yfc{bottom:286.106667pt;}
.yca{bottom:292.666667pt;}
.y4a{bottom:295.226667pt;}
.y26{bottom:297.146667pt;}
.y12d{bottom:300.346667pt;}
.y68{bottom:301.146667pt;}
.y147{bottom:301.306667pt;}
.yb7{bottom:305.306667pt;}
.y9e{bottom:305.946667pt;}
.ydb{bottom:307.706667pt;}
.y10f{bottom:309.306667pt;}
.yc9{bottom:310.906667pt;}
.y25{bottom:314.266667pt;}
.y49{bottom:323.386667pt;}
.y12c{bottom:328.506667pt;}
.y67{bottom:329.306667pt;}
.y146{bottom:329.466667pt;}
.y155{bottom:329.626667pt;}
.y82{bottom:329.786667pt;}
.y24{bottom:331.546667pt;}
.yb6{bottom:333.466667pt;}
.y10e{bottom:337.466667pt;}
.yfb{bottom:342.426667pt;}
.y23{bottom:348.666667pt;}
.y9d{bottom:350.106667pt;}
.y48{bottom:351.546667pt;}
.y12b{bottom:356.666667pt;}
.y66{bottom:357.466667pt;}
.y154{bottom:357.786667pt;}
.y81{bottom:357.946667pt;}
.yb5{bottom:361.626667pt;}
.yda{bottom:363.386667pt;}
.y10d{bottom:365.626667pt;}
.y22{bottom:365.946667pt;}
.y145{bottom:368.066667pt;}
.yfa{bottom:370.626667pt;}
.y9c{bottom:378.146667pt;}
.y47{bottom:379.586667pt;}
.y21{bottom:383.106667pt;}
.y65{bottom:385.666667pt;}
.y153{bottom:385.986667pt;}
.y80{bottom:386.146667pt;}
.yd9{bottom:389.186667pt;}
.yb4{bottom:389.666667pt;}
.y10c{bottom:393.666667pt;}
.y12a{bottom:395.266667pt;}
.y144{bottom:396.386667pt;}
.yf9{bottom:398.786667pt;}
.y20{bottom:400.386667pt;}
.y9b{bottom:406.306667pt;}
.y46{bottom:407.746667pt;}
.y64{bottom:413.826667pt;}
.y7f{bottom:414.146667pt;}
.y1f{bottom:417.506667pt;}
.yb3{bottom:417.826667pt;}
.yd8{bottom:418.946667pt;}
.y10b{bottom:421.826667pt;}
.y129{bottom:423.586667pt;}
.y143{bottom:424.546667pt;}
.yf8{bottom:426.946667pt;}
.y9a{bottom:434.466667pt;}
.y1e{bottom:434.786667pt;}
.y45{bottom:435.906667pt;}
.y63{bottom:441.986667pt;}
.y7e{bottom:442.466667pt;}
.yb2{bottom:445.986667pt;}
.yd7{bottom:448.706667pt;}
.y10a{bottom:449.986667pt;}
.y128{bottom:451.746667pt;}
.y1d{bottom:451.906667pt;}
.y142{bottom:452.706667pt;}
.y161{bottom:452.866667pt;}
.yf7{bottom:454.946667pt;}
.y99{bottom:466.946667pt;}
.y62{bottom:470.146667pt;}
.y44{bottom:472.066667pt;}
.yb1{bottom:474.146667pt;}
.yd6{bottom:474.466667pt;}
.y109{bottom:478.146667pt;}
.y7d{bottom:478.626667pt;}
.y127{bottom:479.906667pt;}
.y152{bottom:481.026667pt;}
.yf6{bottom:483.106667pt;}
.y1c{bottom:486.306667pt;}
.y141{bottom:491.266667pt;}
.y98{bottom:493.986667pt;}
.y61{bottom:498.146667pt;}
.y43{bottom:500.226667pt;}
.yd5{bottom:500.386667pt;}
.yb0{bottom:502.306667pt;}
.y1b{bottom:502.626667pt;}
.y108{bottom:506.306667pt;}
.y7c{bottom:506.626667pt;}
.y126{bottom:507.906667pt;}
.y166{bottom:509.026667pt;}
.y160{bottom:509.186667pt;}
.yf5{bottom:511.266667pt;}
.y140{bottom:519.586667pt;}
.y1a{bottom:524.546667pt;}
.y97{bottom:525.506667pt;}
.y60{bottom:526.306667pt;}
.y42{bottom:528.386667pt;}
.yd4{bottom:531.906667pt;}
.y107{bottom:534.466667pt;}
.y7b{bottom:534.786667pt;}
.y19{bottom:538.306667pt;}
.yf4{bottom:539.426667pt;}
.yaf{bottom:546.466667pt;}
.y125{bottom:547.746667pt;}
.y151{bottom:547.906667pt;}
.y96{bottom:553.666667pt;}
.y18{bottom:554.466667pt;}
.y41{bottom:556.546667pt;}
.yd3{bottom:559.906667pt;}
.y106{bottom:562.466667pt;}
.y7a{bottom:562.946667pt;}
.yf3{bottom:567.586667pt;}
.yc8{bottom:569.666667pt;}
.y17{bottom:570.786667pt;}
.yae{bottom:574.626667pt;}
.y13f{bottom:575.906667pt;}
.y124{bottom:576.066667pt;}
.y15f{bottom:576.226667pt;}
.y95{bottom:581.826667pt;}
.y5f{bottom:582.626667pt;}
.y40{bottom:584.546667pt;}
.y16{bottom:587.133333pt;}
.y105{bottom:590.653333pt;}
.y79{bottom:591.133333pt;}
.yc7{bottom:592.893333pt;}
.yf2{bottom:595.773333pt;}
.yad{bottom:602.813333pt;}
.y123{bottom:604.253333pt;}
.y15{bottom:605.053333pt;}
.yc6{bottom:608.413333pt;}
.y94{bottom:609.853333pt;}
.y5e{bottom:610.813333pt;}
.y3f{bottom:612.733333pt;}
.y13e{bottom:614.653333pt;}
.y150{bottom:614.813333pt;}
.y104{bottom:618.813333pt;}
.y78{bottom:619.293333pt;}
.yf1{bottom:623.933333pt;}
.y14{bottom:626.813333pt;}
.yac{bottom:630.973333pt;}
.y122{bottom:632.253333pt;}
.yc5{bottom:632.413333pt;}
.y93{bottom:638.013333pt;}
.y5d{bottom:638.973333pt;}
.y3e{bottom:640.893333pt;}
.y165{bottom:642.813333pt;}
.y13d{bottom:642.973333pt;}
.y15e{bottom:643.133333pt;}
.y13{bottom:646.813333pt;}
.y103{bottom:646.973333pt;}
.yf0{bottom:651.933333pt;}
.y77{bottom:656.573333pt;}
.yab{bottom:658.973333pt;}
.y121{bottom:660.573333pt;}
.y12{bottom:663.133333pt;}
.y92{bottom:666.173333pt;}
.y5c{bottom:666.973333pt;}
.y3d{bottom:669.053333pt;}
.y14f{bottom:671.133333pt;}
.y15d{bottom:671.293333pt;}
.yc4{bottom:675.133333pt;}
.y11{bottom:679.453333pt;}
.yef{bottom:680.093333pt;}
.y13c{bottom:681.693333pt;}
.yaa{bottom:687.133333pt;}
.y76{bottom:694.173333pt;}
.y91{bottom:694.333333pt;}
.y5b{bottom:695.133333pt;}
.y10{bottom:696.893333pt;}
.y3c{bottom:697.213333pt;}
.y120{bottom:699.133333pt;}
.y14e{bottom:699.293333pt;}
.yc3{bottom:703.293333pt;}
.yee{bottom:708.253333pt;}
.y13b{bottom:709.853333pt;}
.ya9{bottom:715.293333pt;}
.yf{bottom:717.213333pt;}
.y90{bottom:722.493333pt;}
.y5a{bottom:723.293333pt;}
.y3b{bottom:725.373333pt;}
.y11f{bottom:727.453333pt;}
.yc2{bottom:731.453333pt;}
.yed{bottom:736.413333pt;}
.ye{bottom:737.373333pt;}
.y13a{bottom:738.013333pt;}
.y15c{bottom:738.173333pt;}
.y75{bottom:743.293333pt;}
.ya8{bottom:743.453333pt;}
.y8f{bottom:750.653333pt;}
.y59{bottom:751.453333pt;}
.y3a{bottom:753.533333pt;}
.yd{bottom:753.693333pt;}
.y11e{bottom:755.613333pt;}
.yc1{bottom:759.453333pt;}
.yec{bottom:764.573333pt;}
.y139{bottom:766.333333pt;}
.yc{bottom:770.013333pt;}
.ya7{bottom:771.613333pt;}
.y8e{bottom:778.813333pt;}
.y74{bottom:779.453333pt;}
.y58{bottom:779.613333pt;}
.y39{bottom:781.533333pt;}
.y11d{bottom:783.773333pt;}
.yb{bottom:787.293333pt;}
.yc0{bottom:787.613333pt;}
.yeb{bottom:792.733333pt;}
.y14d{bottom:794.333333pt;}
.y15b{bottom:794.493333pt;}
.ya6{bottom:799.773333pt;}
.y138{bottom:804.933333pt;}
.ya{bottom:806.373333pt;}
.y8d{bottom:807.013333pt;}
.y73{bottom:807.653333pt;}
.y57{bottom:807.813333pt;}
.y38{bottom:809.733333pt;}
.ybf{bottom:815.813333pt;}
.y11c{bottom:822.533333pt;}
.yea{bottom:825.573333pt;}
.ya5{bottom:827.973333pt;}
.y15a{bottom:833.093333pt;}
.y137{bottom:833.253333pt;}
.y72{bottom:835.813333pt;}
.y56{bottom:835.973333pt;}
.y37{bottom:837.893333pt;}
.y8c{bottom:839.653333pt;}
.ybe{bottom:843.973333pt;}
.y9{bottom:848.933333pt;}
.y11b{bottom:850.853333pt;}
.ye9{bottom:854.053333pt;}
.y14c{bottom:861.253333pt;}
.y136{bottom:861.413333pt;}
.y71{bottom:863.973333pt;}
.y36{bottom:866.053333pt;}
.y8b{bottom:867.813333pt;}
.y55{bottom:872.133333pt;}
.y8{bottom:875.493333pt;}
.ye8{bottom:879.813333pt;}
.y11a{bottom:889.413333pt;}
.y135{bottom:889.573333pt;}
.y70{bottom:892.133333pt;}
.y35{bottom:894.213333pt;}
.y8a{bottom:895.973333pt;}
.y54{bottom:900.293333pt;}
.y7{bottom:902.053333pt;}
.ye7{bottom:909.573333pt;}
.y119{bottom:917.733333pt;}
.y6f{bottom:920.293333pt;}
.y34{bottom:922.373333pt;}
.y89{bottom:924.133333pt;}
.y134{bottom:928.293333pt;}
.y53{bottom:928.453333pt;}
.y6{bottom:928.613333pt;}
.ye6{bottom:935.333333pt;}
.y118{bottom:945.893333pt;}
.y33{bottom:950.533333pt;}
.y88{bottom:952.293333pt;}
.y164{bottom:956.293333pt;}
.y52{bottom:956.453333pt;}
.ye5{bottom:961.093333pt;}
.y5{bottom:977.413333pt;}
.y32{bottom:978.533333pt;}
.y117{bottom:984.453333pt;}
.y51{bottom:984.613333pt;}
.ye4{bottom:987.653333pt;}
.y4{bottom:995.493333pt;}
.y31{bottom:1011.493333pt;}
.y3{bottom:1012.773333pt;}
.y133{bottom:1012.933333pt;}
.ye3{bottom:1013.413333pt;}
.h12{height:39.191562pt;}
.hb{height:43.031250pt;}
.h11{height:46.635625pt;}
.h9{height:47.507812pt;}
.h13{height:47.621250pt;}
.h8{height:51.692500pt;}
.h2{height:52.575312pt;}
.h5{height:52.785000pt;}
.hc{height:53.273750pt;}
.h3{height:55.468750pt;}
.h17{height:55.687500pt;}
.ha{height:56.187500pt;}
.h10{height:56.843750pt;}
.hd{height:58.276250pt;}
.he{height:60.682500pt;}
.h15{height:60.836250pt;}
.h4{height:63.343750pt;}
.hf{height:66.507188pt;}
.h14{height:74.276250pt;}
.h16{height:74.382917pt;}
.h6{height:79.786250pt;}
.h7{height:100.906250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.471988pt;}
.x6{left:114.911988pt;}
.x13{left:122.911988pt;}
.x4{left:124.191988pt;}
.x5{left:153.946655pt;}
.x19{left:154.906655pt;}
.x14{left:160.666655pt;}
.x7{left:232.506655pt;}
.x15{left:299.586655pt;}
.x16{left:308.546655pt;}
.x3{left:343.746655pt;}
.x17{left:356.546655pt;}
.x12{left:360.706655pt;}
.x18{left:365.666655pt;}
.x1{left:381.346655pt;}
.xa{left:465.853322pt;}
.xf{left:468.573322pt;}
.xd{left:512.413322pt;}
.xb{left:518.333322pt;}
.x8{left:572.573322pt;}
.x10{left:576.413322pt;}
.x9{left:594.853322pt;}
.x11{left:598.533322pt;}
.xe{left:614.053322pt;}
.xc{left:680.453322pt;}
}




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