
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_aba5cd7208bc389796e14701.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_aa30d2d2b140a9957bf23361.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3197f93061f9f3bce952064b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_062c35f085003d3ab1cb5baf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_b436a1bf2c87a9950549eaf7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_a24d3b09109138bdbbbf5572.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_a5e61a05e23fd0fe8d6718d1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ebaf0ee1ced3fdb1247ef691.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c589292d7276dfaedadd5f3c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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;}
.ma{transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184210,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212120,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223685,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258325,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-3.000000px;}
.ls33{letter-spacing:-2.826000px;}
.ls3e{letter-spacing:-2.106000px;}
.ls2a{letter-spacing:-1.854000px;}
.ls3f{letter-spacing:-1.800000px;}
.lsa{letter-spacing:-1.494000px;}
.ls38{letter-spacing:-1.248000px;}
.ls3a{letter-spacing:-1.230000px;}
.ls2b{letter-spacing:-1.182000px;}
.ls9{letter-spacing:-1.098000px;}
.ls8{letter-spacing:-1.080000px;}
.ls35{letter-spacing:-0.906000px;}
.ls36{letter-spacing:-0.840000px;}
.ls2f{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.774000px;}
.ls46{letter-spacing:-0.762000px;}
.ls34{letter-spacing:-0.636000px;}
.ls2d{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.600000px;}
.ls2c{letter-spacing:-0.460200px;}
.ls4c{letter-spacing:-0.381600px;}
.ls29{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.340800px;}
.ls39{letter-spacing:-0.312000px;}
.lsc{letter-spacing:-0.226200px;}
.ls21{letter-spacing:-0.213600px;}
.ls12{letter-spacing:-0.180000px;}
.ls49{letter-spacing:-0.163800px;}
.ls22{letter-spacing:-0.133200px;}
.ls3b{letter-spacing:-0.121800px;}
.ls26{letter-spacing:-0.113400px;}
.ls16{letter-spacing:-0.108000px;}
.ls4e{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.053280px;}
.ls3d{letter-spacing:-0.027720px;}
.ls4b{letter-spacing:-0.027000px;}
.ls7{letter-spacing:0.000000px;}
.lse{letter-spacing:0.021840px;}
.ls30{letter-spacing:0.053280px;}
.ls3c{letter-spacing:0.082800px;}
.ls1a{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.158400px;}
.lsd{letter-spacing:0.169200px;}
.ls42{letter-spacing:0.169500px;}
.ls1{letter-spacing:0.180000px;}
.ls4d{letter-spacing:0.180600px;}
.ls2e{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.220200px;}
.ls13{letter-spacing:0.259800px;}
.ls32{letter-spacing:0.301800px;}
.ls41{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.366000px;}
.ls40{letter-spacing:0.434163px;}
.ls27{letter-spacing:0.480000px;}
.ls47{letter-spacing:0.535200px;}
.ls28{letter-spacing:0.546600px;}
.ls18{letter-spacing:0.559800px;}
.ls48{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.858000px;}
.ls45{letter-spacing:0.868326px;}
.ls4{letter-spacing:0.870000px;}
.ls1e{letter-spacing:0.882000px;}
.lsf{letter-spacing:1.062000px;}
.ls5{letter-spacing:1.132988px;}
.ls2{letter-spacing:1.831814px;}
.ls17{letter-spacing:3.229465px;}
.ls1f{letter-spacing:3.780000px;}
.ls20{letter-spacing:4.200160px;}
.ls1b{letter-spacing:6.024768px;}
.ls6{letter-spacing:6.840000px;}
.ls1c{letter-spacing:7.422419px;}
.ls1d{letter-spacing:8.121244px;}
.ls44{letter-spacing:9.518895px;}
.ls19{letter-spacing:9.540000px;}
.ls31{letter-spacing:15.808326px;}
.ls43{letter-spacing:18.603628px;}
.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;}
}
.ws36{word-spacing:-59.760000px;}
.ws2{word-spacing:-19.980000px;}
.ws3{word-spacing:-19.962000px;}
.ws0{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.272000px;}
.wsb{word-spacing:-16.002000px;}
.ws20{word-spacing:-15.822000px;}
.wsc{word-spacing:-15.810000px;}
.ws8{word-spacing:-15.798000px;}
.ws32{word-spacing:-15.660000px;}
.ws1c{word-spacing:-15.499800px;}
.ws1b{word-spacing:-15.486600px;}
.ws31{word-spacing:-15.475200px;}
.ws1a{word-spacing:-15.420000px;}
.ws18{word-spacing:-15.306000px;}
.ws1{word-spacing:-15.300000px;}
.ws34{word-spacing:-15.246600px;}
.ws2d{word-spacing:-15.241800px;}
.ws10{word-spacing:-15.199800px;}
.ws17{word-spacing:-15.160200px;}
.ws25{word-spacing:-15.146400px;}
.ws39{word-spacing:-15.120600px;}
.ws9{word-spacing:-15.109200px;}
.wsd{word-spacing:-15.098400px;}
.ws1f{word-spacing:-15.046800px;}
.ws2c{word-spacing:-15.022800px;}
.ws27{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.961840px;}
.ws1d{word-spacing:-14.940000px;}
.ws37{word-spacing:-14.913000px;}
.ws11{word-spacing:-14.886720px;}
.ws3a{word-spacing:-14.833200px;}
.ws19{word-spacing:-14.826600px;}
.ws2b{word-spacing:-14.818200px;}
.ws16{word-spacing:-14.806800px;}
.ws33{word-spacing:-14.776200px;}
.wsf{word-spacing:-14.760000px;}
.ws15{word-spacing:-14.726400px;}
.ws30{word-spacing:-14.599200px;}
.ws1e{word-spacing:-14.580000px;}
.ws38{word-spacing:-14.558400px;}
.ws23{word-spacing:-14.479800px;}
.wse{word-spacing:-14.166000px;}
.ws26{word-spacing:-14.148000px;}
.ws2a{word-spacing:-14.100000px;}
.ws7{word-spacing:-13.860000px;}
.ws22{word-spacing:-13.758000px;}
.ws4{word-spacing:-13.446000px;}
.ws13{word-spacing:-13.392000px;}
.ws2f{word-spacing:-13.140000px;}
.ws21{word-spacing:-13.086000px;}
.ws2e{word-spacing:-12.834000px;}
.ws29{word-spacing:-12.114000px;}
.ws35{word-spacing:-10.500000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws12{word-spacing:-8.928000px;}
.ws28{word-spacing:-0.054000px;}
.ws14{word-spacing:0.000000px;}
._19{margin-left:-7.020000px;}
._1{margin-left:-5.417280px;}
._3{margin-left:-4.120800px;}
._2{margin-left:-2.277360px;}
._0{margin-left:-1.093680px;}
._4{width:1.371360px;}
._a{width:2.733165px;}
._12{width:3.861798px;}
._9{width:4.946640px;}
._b{width:6.938242px;}
._c{width:8.192319px;}
._f{width:9.690480px;}
._10{width:10.766160px;}
._7{width:12.107280px;}
._11{width:13.120430px;}
._8{width:15.102240px;}
._e{width:16.207440px;}
._6{width:17.237280px;}
._5{width:18.306000px;}
._d{width:19.829520px;}
._16{width:21.030960px;}
._15{width:23.177040px;}
._14{width:24.268320px;}
._17{width:26.300640px;}
._18{width:27.370225px;}
._13{width:30.175605px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:0.540000px;}
.y4a{bottom:2.340000px;}
.y5{bottom:3.780000px;}
.y57{bottom:5.010000px;}
.y8c{bottom:5.760000px;}
.y9a{bottom:5.790000px;}
.y92{bottom:5.940000px;}
.y3d{bottom:7.965000px;}
.y2{bottom:9.930000px;}
.y49{bottom:10.260000px;}
.yab{bottom:15.660000px;}
.yb5{bottom:15.840000px;}
.y4{bottom:22.710000px;}
.yac{bottom:25.560000px;}
.yb4{bottom:25.740000px;}
.y3c{bottom:27.765000px;}
.y55{bottom:28.440000px;}
.y48{bottom:39.960000px;}
.y54{bottom:47.160000px;}
.y3b{bottom:47.565000px;}
.y3{bottom:47.910000px;}
.y47{bottom:51.294000px;}
.y7{bottom:57.060000px;}
.y46{bottom:62.454000px;}
.y53{bottom:66.414000px;}
.y3a{bottom:67.365000px;}
.y45{bottom:74.154000px;}
.y52{bottom:82.254000px;}
.y44{bottom:87.114000px;}
.y39{bottom:87.165000px;}
.yb1{bottom:91.476000px;}
.y8a{bottom:97.776000px;}
.y51{bottom:99.354000px;}
.y3f{bottom:100.116000px;}
.y43{bottom:100.254000px;}
.y38{bottom:106.965000px;}
.yb0{bottom:112.356000px;}
.y50{bottom:114.114000px;}
.y89{bottom:117.756000px;}
.y4f{bottom:122.034000px;}
.y42{bottom:122.214000px;}
.y37{bottom:126.945000px;}
.y4e{bottom:137.514000px;}
.y88{bottom:137.556000px;}
.y36{bottom:146.745000px;}
.y4d{bottom:153.174000px;}
.yaf{bottom:153.210000px;}
.y87{bottom:157.350000px;}
.y35{bottom:166.545000px;}
.y4c{bottom:168.654000px;}
.yae{bottom:174.090000px;}
.y86{bottom:177.150000px;}
.y41{bottom:184.134000px;}
.y34{bottom:186.345000px;}
.y40{bottom:194.754000px;}
.yad{bottom:195.150000px;}
.y85{bottom:196.950000px;}
.y4b{bottom:199.614000px;}
.y33{bottom:206.145000px;}
.yaa{bottom:216.030000px;}
.y84{bottom:216.930000px;}
.y32{bottom:226.125000px;}
.y83{bottom:236.730000px;}
.y31{bottom:245.925000px;}
.y82{bottom:256.530000px;}
.ya9{bottom:256.890000px;}
.y30{bottom:265.725000px;}
.y1e{bottom:275.475000px;}
.y81{bottom:276.330000px;}
.ya8{bottom:277.770000px;}
.y2f{bottom:285.555000px;}
.y80{bottom:296.130000px;}
.y1d{bottom:299.595000px;}
.y2e{bottom:305.355000px;}
.ya7{bottom:306.570000px;}
.y7f{bottom:316.110000px;}
.y1c{bottom:323.895000px;}
.y10{bottom:324.930000px;}
.y2d{bottom:325.335000px;}
.ya6{bottom:326.550000px;}
.yd8{bottom:332.535000px;}
.y7e{bottom:335.955000px;}
.ya5{bottom:341.715000px;}
.y2c{bottom:345.135000px;}
.y1b{bottom:348.015000px;}
.yd7{bottom:352.335000px;}
.y7d{bottom:355.755000px;}
.ya4{bottom:362.595000px;}
.y2b{bottom:364.935000px;}
.y1a{bottom:372.135000px;}
.y7c{bottom:375.555000px;}
.ya3{bottom:383.655000px;}
.y2a{bottom:384.735000px;}
.yd6{bottom:392.115000px;}
.y7b{bottom:395.355000px;}
.y19{bottom:396.255000px;}
.y29{bottom:404.535000px;}
.yd5{bottom:411.915000px;}
.y7a{bottom:415.335000px;}
.y18{bottom:420.375000px;}
.y28{bottom:424.515000px;}
.ya2{bottom:425.595000px;}
.yd4{bottom:431.715000px;}
.y79{bottom:435.135000px;}
.y27{bottom:443.775000px;}
.y17{bottom:444.495000px;}
.ya1{bottom:446.475000px;}
.yd3{bottom:451.515000px;}
.y78{bottom:454.935000px;}
.y26{bottom:461.595000px;}
.ya0{bottom:467.355000px;}
.y16{bottom:468.795000px;}
.yd2{bottom:471.315000px;}
.y77{bottom:474.735000px;}
.y25{bottom:479.415000px;}
.y9f{bottom:488.415000px;}
.yd1{bottom:491.295000px;}
.y15{bottom:492.915000px;}
.y76{bottom:494.535000px;}
.y24{bottom:497.235000px;}
.y9e{bottom:509.295000px;}
.yd0{bottom:511.095000px;}
.y75{bottom:514.515000px;}
.y23{bottom:515.235000px;}
.y14{bottom:517.035000px;}
.y9d{bottom:530.355000px;}
.ycf{bottom:530.895000px;}
.y22{bottom:533.055000px;}
.y74{bottom:534.315000px;}
.y13{bottom:541.200000px;}
.yce{bottom:550.695000px;}
.y21{bottom:550.920000px;}
.y9c{bottom:551.235000px;}
.y73{bottom:554.115000px;}
.y12{bottom:565.320000px;}
.y20{bottom:568.740000px;}
.ycd{bottom:570.495000px;}
.y9b{bottom:572.295000px;}
.y72{bottom:573.915000px;}
.y1f{bottom:586.560000px;}
.y11{bottom:589.440000px;}
.ycc{bottom:590.475000px;}
.y99{bottom:593.175000px;}
.y71{bottom:593.715000px;}
.ycb{bottom:610.305000px;}
.y70{bottom:613.725000px;}
.y98{bottom:614.265000px;}
.yca{bottom:630.105000px;}
.y6f{bottom:633.525000px;}
.y97{bottom:635.145000px;}
.yc9{bottom:649.905000px;}
.y6e{bottom:653.325000px;}
.y96{bottom:656.205000px;}
.yc8{bottom:669.705000px;}
.y6d{bottom:673.125000px;}
.y95{bottom:677.085000px;}
.yc7{bottom:689.685000px;}
.y6c{bottom:692.925000px;}
.y94{bottom:697.965000px;}
.yc6{bottom:709.485000px;}
.y6b{bottom:712.905000px;}
.y93{bottom:719.025000px;}
.yc5{bottom:729.285000px;}
.y6a{bottom:732.705000px;}
.y91{bottom:739.905000px;}
.yc4{bottom:749.085000px;}
.y69{bottom:752.505000px;}
.y90{bottom:760.965000px;}
.yc3{bottom:768.885000px;}
.y68{bottom:772.305000px;}
.y8f{bottom:781.845000px;}
.yc2{bottom:788.865000px;}
.y67{bottom:792.105000px;}
.y8e{bottom:802.905000px;}
.yc1{bottom:808.665000px;}
.y66{bottom:812.085000px;}
.y8d{bottom:823.785000px;}
.yc0{bottom:828.465000px;}
.y65{bottom:831.885000px;}
.y8b{bottom:844.845000px;}
.ybf{bottom:848.265000px;}
.y64{bottom:851.685000px;}
.ybe{bottom:868.110000px;}
.y63{bottom:871.530000px;}
.ybd{bottom:888.090000px;}
.y62{bottom:891.330000px;}
.ybc{bottom:907.890000px;}
.y61{bottom:911.310000px;}
.yf{bottom:926.790000px;}
.ybb{bottom:927.690000px;}
.y60{bottom:931.110000px;}
.ye{bottom:934.170000px;}
.yba{bottom:947.490000px;}
.y5f{bottom:950.910000px;}
.yd{bottom:953.970000px;}
.yb9{bottom:967.290000px;}
.y5e{bottom:970.710000px;}
.yc{bottom:973.950000px;}
.yb8{bottom:987.270000px;}
.y5d{bottom:990.510000px;}
.yb{bottom:993.750000px;}
.yb7{bottom:1007.070000px;}
.y5c{bottom:1010.490000px;}
.ya{bottom:1015.890000px;}
.yb6{bottom:1021.110000px;}
.y5b{bottom:1030.290000px;}
.yb3{bottom:1041.990000px;}
.y9{bottom:1043.610000px;}
.y5a{bottom:1050.090000px;}
.y59{bottom:1069.890000px;}
.y8{bottom:1072.230000px;}
.y56{bottom:1075.500000px;}
.yb2{bottom:1082.850000px;}
.y58{bottom:1089.690000px;}
.y6{bottom:1108.230000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h14{height:9.329414px;}
.h1b{height:19.800000px;}
.h1a{height:19.836000px;}
.h1c{height:19.980000px;}
.h12{height:21.114844px;}
.h11{height:25.136719px;}
.h16{height:27.720000px;}
.hd{height:29.158594px;}
.hc{height:29.464453px;}
.h13{height:38.100586px;}
.he{height:38.997070px;}
.h19{height:39.313477px;}
.h1d{height:39.600000px;}
.h1e{height:39.780000px;}
.h7{height:40.132617px;}
.h18{height:41.027344px;}
.hf{height:41.159180px;}
.h6{height:41.726953px;}
.h9{height:42.164648px;}
.h15{height:45.549492px;}
.h5{height:46.251562px;}
.h8{height:59.436914px;}
.h17{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h10{height:224.100000px;}
.hb{height:599.145000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:76.680000px;}
.wb{width:79.236000px;}
.w2{width:104.076000px;}
.wf{width:124.776000px;}
.wd{width:124.920000px;}
.wc{width:124.956000px;}
.w9{width:125.676000px;}
.we{width:126.036000px;}
.w5{width:132.696000px;}
.w7{width:162.900000px;}
.w8{width:176.430000px;}
.w6{width:596.445000px;}
.w3{width:622.365000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x49{left:3.060000px;}
.x68{left:4.860000px;}
.x25{left:7.056000px;}
.x17{left:8.136000px;}
.x4{left:12.780000px;}
.x16{left:16.056000px;}
.x1f{left:18.216000px;}
.x14{left:19.656000px;}
.x5f{left:24.480000px;}
.x15{left:26.136000px;}
.x57{left:27.540000px;}
.x21{left:29.196000px;}
.x4e{left:30.960000px;}
.x46{left:32.220000px;}
.x6{left:33.840000px;}
.x58{left:35.460000px;}
.x4f{left:37.800000px;}
.x55{left:41.400000px;}
.x5b{left:42.480000px;}
.x43{left:43.560000px;}
.x4d{left:45.540000px;}
.x53{left:46.620000px;}
.x20{left:47.736000px;}
.x54{left:49.680000px;}
.xf{left:50.796000px;}
.x6c{left:52.200000px;}
.x5d{left:53.640000px;}
.xe{left:54.936000px;}
.x23{left:57.096000px;}
.x19{left:62.100000px;}
.x4c{left:63.180000px;}
.x52{left:64.980000px;}
.x22{left:66.270000px;}
.x41{left:68.399987px;}
.x6b{left:69.840000px;}
.x67{left:71.310000px;}
.x12{left:73.290000px;}
.x51{left:74.385000px;}
.x4b{left:76.005000px;}
.x1{left:78.300000px;}
.x13{left:79.590000px;}
.x11{left:82.470000px;}
.x7{left:86.399987px;}
.x50{left:87.690000px;}
.x59{left:90.030000px;}
.x47{left:93.090000px;}
.x5a{left:94.170000px;}
.x2{left:95.790000px;}
.x38{left:97.055987px;}
.x64{left:98.130000px;}
.x29{left:99.395987px;}
.x60{left:100.830000px;}
.x24{left:102.810000px;}
.x1e{left:106.770000px;}
.x5c{left:108.570000px;}
.x2a{left:110.195987px;}
.x6a{left:112.140000px;}
.x37{left:113.435987px;}
.x66{left:115.920000px;}
.x69{left:120.285000px;}
.x5e{left:122.250000px;}
.x10{left:124.590000px;}
.x35{left:127.475987px;}
.x44{left:132.885000px;}
.x56{left:134.865000px;}
.x3e{left:136.115987px;}
.x5{left:141.345000px;}
.x6d{left:144.935987px;}
.x1b{left:155.925000px;}
.x2b{left:173.189987px;}
.x2d{left:181.289987px;}
.x3{left:182.370000px;}
.x61{left:194.430000px;}
.x31{left:211.709987px;}
.x42{left:215.850000px;}
.x18{left:219.090000px;}
.x27{left:221.429987px;}
.x33{left:228.089987px;}
.x40{left:233.489987px;}
.x3c{left:242.309987px;}
.x1c{left:252.405000px;}
.x2e{left:259.949987px;}
.x30{left:279.569987px;}
.x6e{left:283.349987px;}
.x3b{left:297.254987px;}
.x72{left:299.774987px;}
.x62{left:320.475000px;}
.x6f{left:359.354987px;}
.x1a{left:367.095000px;}
.x45{left:393.375000px;}
.x70{left:403.274987px;}
.xc{left:419.834987px;}
.x2f{left:429.914987px;}
.x39{left:440.354987px;}
.x63{left:446.475000px;}
.x34{left:475.484987px;}
.x1d{left:487.560000px;}
.x71{left:493.844987px;}
.x3a{left:514.544987px;}
.x28{left:516.884987px;}
.x48{left:520.125000px;}
.x32{left:525.524987px;}
.x36{left:548.024987px;}
.x2c{left:554.324987px;}
.xb{left:572.684987px;}
.x65{left:573.765000px;}
.x4a{left:597.885000px;}
.xa{left:605.984987px;}
.x73{left:626.864987px;}
.x74{left:650.984987px;}
.x26{left:683.969987px;}
.x3f{left:707.549987px;}
.x9{left:766.049987px;}
.x8{left:784.229987px;}
.x3d{left:800.249987px;}
.xd{left:806.729987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-2.666667pt;}
.ls33{letter-spacing:-2.512000pt;}
.ls3e{letter-spacing:-1.872000pt;}
.ls2a{letter-spacing:-1.648000pt;}
.ls3f{letter-spacing:-1.600000pt;}
.lsa{letter-spacing:-1.328000pt;}
.ls38{letter-spacing:-1.109333pt;}
.ls3a{letter-spacing:-1.093333pt;}
.ls2b{letter-spacing:-1.050667pt;}
.ls9{letter-spacing:-0.976000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls35{letter-spacing:-0.805333pt;}
.ls36{letter-spacing:-0.746667pt;}
.ls2f{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.688000pt;}
.ls46{letter-spacing:-0.677333pt;}
.ls34{letter-spacing:-0.565333pt;}
.ls2d{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.533333pt;}
.ls2c{letter-spacing:-0.409067pt;}
.ls4c{letter-spacing:-0.339200pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.302933pt;}
.ls39{letter-spacing:-0.277333pt;}
.lsc{letter-spacing:-0.201067pt;}
.ls21{letter-spacing:-0.189867pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls49{letter-spacing:-0.145600pt;}
.ls22{letter-spacing:-0.118400pt;}
.ls3b{letter-spacing:-0.108267pt;}
.ls26{letter-spacing:-0.100800pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls4e{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls3d{letter-spacing:-0.024640pt;}
.ls4b{letter-spacing:-0.024000pt;}
.ls7{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.019413pt;}
.ls30{letter-spacing:0.047360pt;}
.ls3c{letter-spacing:0.073600pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.140800pt;}
.lsd{letter-spacing:0.150400pt;}
.ls42{letter-spacing:0.150667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4d{letter-spacing:0.160533pt;}
.ls2e{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.195733pt;}
.ls13{letter-spacing:0.230933pt;}
.ls32{letter-spacing:0.268267pt;}
.ls41{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.325333pt;}
.ls40{letter-spacing:0.385923pt;}
.ls27{letter-spacing:0.426667pt;}
.ls47{letter-spacing:0.475733pt;}
.ls28{letter-spacing:0.485867pt;}
.ls18{letter-spacing:0.497600pt;}
.ls48{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.762667pt;}
.ls45{letter-spacing:0.771845pt;}
.ls4{letter-spacing:0.773333pt;}
.ls1e{letter-spacing:0.784000pt;}
.lsf{letter-spacing:0.944000pt;}
.ls5{letter-spacing:1.007101pt;}
.ls2{letter-spacing:1.628279pt;}
.ls17{letter-spacing:2.870636pt;}
.ls1f{letter-spacing:3.360000pt;}
.ls20{letter-spacing:3.733475pt;}
.ls1b{letter-spacing:5.355349pt;}
.ls6{letter-spacing:6.080000pt;}
.ls1c{letter-spacing:6.597706pt;}
.ls1d{letter-spacing:7.218884pt;}
.ls44{letter-spacing:8.461240pt;}
.ls19{letter-spacing:8.480000pt;}
.ls31{letter-spacing:14.051845pt;}
.ls43{letter-spacing:16.536558pt;}
.ws36{word-spacing:-53.120000pt;}
.ws2{word-spacing:-17.760000pt;}
.ws3{word-spacing:-17.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.224000pt;}
.ws20{word-spacing:-14.064000pt;}
.wsc{word-spacing:-14.053333pt;}
.ws8{word-spacing:-14.042667pt;}
.ws32{word-spacing:-13.920000pt;}
.ws1c{word-spacing:-13.777600pt;}
.ws1b{word-spacing:-13.765867pt;}
.ws31{word-spacing:-13.755733pt;}
.ws1a{word-spacing:-13.706667pt;}
.ws18{word-spacing:-13.605333pt;}
.ws1{word-spacing:-13.600000pt;}
.ws34{word-spacing:-13.552533pt;}
.ws2d{word-spacing:-13.548267pt;}
.ws10{word-spacing:-13.510933pt;}
.ws17{word-spacing:-13.475733pt;}
.ws25{word-spacing:-13.463467pt;}
.ws39{word-spacing:-13.440533pt;}
.ws9{word-spacing:-13.430400pt;}
.wsd{word-spacing:-13.420800pt;}
.ws1f{word-spacing:-13.374933pt;}
.ws2c{word-spacing:-13.353600pt;}
.ws27{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.299413pt;}
.ws1d{word-spacing:-13.280000pt;}
.ws37{word-spacing:-13.256000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws3a{word-spacing:-13.185067pt;}
.ws19{word-spacing:-13.179200pt;}
.ws2b{word-spacing:-13.171733pt;}
.ws16{word-spacing:-13.161600pt;}
.ws33{word-spacing:-13.134400pt;}
.wsf{word-spacing:-13.120000pt;}
.ws15{word-spacing:-13.090133pt;}
.ws30{word-spacing:-12.977067pt;}
.ws1e{word-spacing:-12.960000pt;}
.ws38{word-spacing:-12.940800pt;}
.ws23{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.592000pt;}
.ws26{word-spacing:-12.576000pt;}
.ws2a{word-spacing:-12.533333pt;}
.ws7{word-spacing:-12.320000pt;}
.ws22{word-spacing:-12.229333pt;}
.ws4{word-spacing:-11.952000pt;}
.ws13{word-spacing:-11.904000pt;}
.ws2f{word-spacing:-11.680000pt;}
.ws21{word-spacing:-11.632000pt;}
.ws2e{word-spacing:-11.408000pt;}
.ws29{word-spacing:-10.768000pt;}
.ws35{word-spacing:-9.333333pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws12{word-spacing:-7.936000pt;}
.ws28{word-spacing:-0.048000pt;}
.ws14{word-spacing:0.000000pt;}
._19{margin-left:-6.240000pt;}
._1{margin-left:-4.815360pt;}
._3{margin-left:-3.662933pt;}
._2{margin-left:-2.024320pt;}
._0{margin-left:-0.972160pt;}
._4{width:1.218987pt;}
._a{width:2.429480pt;}
._12{width:3.432709pt;}
._9{width:4.397013pt;}
._b{width:6.167326pt;}
._c{width:7.282062pt;}
._f{width:8.613760pt;}
._10{width:9.569920pt;}
._7{width:10.762027pt;}
._11{width:11.662604pt;}
._8{width:13.424213pt;}
._e{width:14.406613pt;}
._6{width:15.322027pt;}
._5{width:16.272000pt;}
._d{width:17.626240pt;}
._16{width:18.694187pt;}
._15{width:20.601813pt;}
._14{width:21.571840pt;}
._17{width:23.378347pt;}
._18{width:24.329089pt;}
._13{width:26.822760pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:0.480000pt;}
.y4a{bottom:2.080000pt;}
.y5{bottom:3.360000pt;}
.y57{bottom:4.453333pt;}
.y8c{bottom:5.120000pt;}
.y9a{bottom:5.146667pt;}
.y92{bottom:5.280000pt;}
.y3d{bottom:7.080000pt;}
.y2{bottom:8.826667pt;}
.y49{bottom:9.120000pt;}
.yab{bottom:13.920000pt;}
.yb5{bottom:14.080000pt;}
.y4{bottom:20.186667pt;}
.yac{bottom:22.720000pt;}
.yb4{bottom:22.880000pt;}
.y3c{bottom:24.680000pt;}
.y55{bottom:25.280000pt;}
.y48{bottom:35.520000pt;}
.y54{bottom:41.920000pt;}
.y3b{bottom:42.280000pt;}
.y3{bottom:42.586667pt;}
.y47{bottom:45.594667pt;}
.y7{bottom:50.720000pt;}
.y46{bottom:55.514667pt;}
.y53{bottom:59.034667pt;}
.y3a{bottom:59.880000pt;}
.y45{bottom:65.914667pt;}
.y52{bottom:73.114667pt;}
.y44{bottom:77.434667pt;}
.y39{bottom:77.480000pt;}
.yb1{bottom:81.312000pt;}
.y8a{bottom:86.912000pt;}
.y51{bottom:88.314667pt;}
.y3f{bottom:88.992000pt;}
.y43{bottom:89.114667pt;}
.y38{bottom:95.080000pt;}
.yb0{bottom:99.872000pt;}
.y50{bottom:101.434667pt;}
.y89{bottom:104.672000pt;}
.y4f{bottom:108.474667pt;}
.y42{bottom:108.634667pt;}
.y37{bottom:112.840000pt;}
.y4e{bottom:122.234667pt;}
.y88{bottom:122.272000pt;}
.y36{bottom:130.440000pt;}
.y4d{bottom:136.154667pt;}
.yaf{bottom:136.186667pt;}
.y87{bottom:139.866667pt;}
.y35{bottom:148.040000pt;}
.y4c{bottom:149.914667pt;}
.yae{bottom:154.746667pt;}
.y86{bottom:157.466667pt;}
.y41{bottom:163.674667pt;}
.y34{bottom:165.640000pt;}
.y40{bottom:173.114667pt;}
.yad{bottom:173.466667pt;}
.y85{bottom:175.066667pt;}
.y4b{bottom:177.434667pt;}
.y33{bottom:183.240000pt;}
.yaa{bottom:192.026667pt;}
.y84{bottom:192.826667pt;}
.y32{bottom:201.000000pt;}
.y83{bottom:210.426667pt;}
.y31{bottom:218.600000pt;}
.y82{bottom:228.026667pt;}
.ya9{bottom:228.346667pt;}
.y30{bottom:236.200000pt;}
.y1e{bottom:244.866667pt;}
.y81{bottom:245.626667pt;}
.ya8{bottom:246.906667pt;}
.y2f{bottom:253.826667pt;}
.y80{bottom:263.226667pt;}
.y1d{bottom:266.306667pt;}
.y2e{bottom:271.426667pt;}
.ya7{bottom:272.506667pt;}
.y7f{bottom:280.986667pt;}
.y1c{bottom:287.906667pt;}
.y10{bottom:288.826667pt;}
.y2d{bottom:289.186667pt;}
.ya6{bottom:290.266667pt;}
.yd8{bottom:295.586667pt;}
.y7e{bottom:298.626667pt;}
.ya5{bottom:303.746667pt;}
.y2c{bottom:306.786667pt;}
.y1b{bottom:309.346667pt;}
.yd7{bottom:313.186667pt;}
.y7d{bottom:316.226667pt;}
.ya4{bottom:322.306667pt;}
.y2b{bottom:324.386667pt;}
.y1a{bottom:330.786667pt;}
.y7c{bottom:333.826667pt;}
.ya3{bottom:341.026667pt;}
.y2a{bottom:341.986667pt;}
.yd6{bottom:348.546667pt;}
.y7b{bottom:351.426667pt;}
.y19{bottom:352.226667pt;}
.y29{bottom:359.586667pt;}
.yd5{bottom:366.146667pt;}
.y7a{bottom:369.186667pt;}
.y18{bottom:373.666667pt;}
.y28{bottom:377.346667pt;}
.ya2{bottom:378.306667pt;}
.yd4{bottom:383.746667pt;}
.y79{bottom:386.786667pt;}
.y27{bottom:394.466667pt;}
.y17{bottom:395.106667pt;}
.ya1{bottom:396.866667pt;}
.yd3{bottom:401.346667pt;}
.y78{bottom:404.386667pt;}
.y26{bottom:410.306667pt;}
.ya0{bottom:415.426667pt;}
.y16{bottom:416.706667pt;}
.yd2{bottom:418.946667pt;}
.y77{bottom:421.986667pt;}
.y25{bottom:426.146667pt;}
.y9f{bottom:434.146667pt;}
.yd1{bottom:436.706667pt;}
.y15{bottom:438.146667pt;}
.y76{bottom:439.586667pt;}
.y24{bottom:441.986667pt;}
.y9e{bottom:452.706667pt;}
.yd0{bottom:454.306667pt;}
.y75{bottom:457.346667pt;}
.y23{bottom:457.986667pt;}
.y14{bottom:459.586667pt;}
.y9d{bottom:471.426667pt;}
.ycf{bottom:471.906667pt;}
.y22{bottom:473.826667pt;}
.y74{bottom:474.946667pt;}
.y13{bottom:481.066667pt;}
.yce{bottom:489.506667pt;}
.y21{bottom:489.706667pt;}
.y9c{bottom:489.986667pt;}
.y73{bottom:492.546667pt;}
.y12{bottom:502.506667pt;}
.y20{bottom:505.546667pt;}
.ycd{bottom:507.106667pt;}
.y9b{bottom:508.706667pt;}
.y72{bottom:510.146667pt;}
.y1f{bottom:521.386667pt;}
.y11{bottom:523.946667pt;}
.ycc{bottom:524.866667pt;}
.y99{bottom:527.266667pt;}
.y71{bottom:527.746667pt;}
.ycb{bottom:542.493333pt;}
.y70{bottom:545.533333pt;}
.y98{bottom:546.013333pt;}
.yca{bottom:560.093333pt;}
.y6f{bottom:563.133333pt;}
.y97{bottom:564.573333pt;}
.yc9{bottom:577.693333pt;}
.y6e{bottom:580.733333pt;}
.y96{bottom:583.293333pt;}
.yc8{bottom:595.293333pt;}
.y6d{bottom:598.333333pt;}
.y95{bottom:601.853333pt;}
.yc7{bottom:613.053333pt;}
.y6c{bottom:615.933333pt;}
.y94{bottom:620.413333pt;}
.yc6{bottom:630.653333pt;}
.y6b{bottom:633.693333pt;}
.y93{bottom:639.133333pt;}
.yc5{bottom:648.253333pt;}
.y6a{bottom:651.293333pt;}
.y91{bottom:657.693333pt;}
.yc4{bottom:665.853333pt;}
.y69{bottom:668.893333pt;}
.y90{bottom:676.413333pt;}
.yc3{bottom:683.453333pt;}
.y68{bottom:686.493333pt;}
.y8f{bottom:694.973333pt;}
.yc2{bottom:701.213333pt;}
.y67{bottom:704.093333pt;}
.y8e{bottom:713.693333pt;}
.yc1{bottom:718.813333pt;}
.y66{bottom:721.853333pt;}
.y8d{bottom:732.253333pt;}
.yc0{bottom:736.413333pt;}
.y65{bottom:739.453333pt;}
.y8b{bottom:750.973333pt;}
.ybf{bottom:754.013333pt;}
.y64{bottom:757.053333pt;}
.ybe{bottom:771.653333pt;}
.y63{bottom:774.693333pt;}
.ybd{bottom:789.413333pt;}
.y62{bottom:792.293333pt;}
.ybc{bottom:807.013333pt;}
.y61{bottom:810.053333pt;}
.yf{bottom:823.813333pt;}
.ybb{bottom:824.613333pt;}
.y60{bottom:827.653333pt;}
.ye{bottom:830.373333pt;}
.yba{bottom:842.213333pt;}
.y5f{bottom:845.253333pt;}
.yd{bottom:847.973333pt;}
.yb9{bottom:859.813333pt;}
.y5e{bottom:862.853333pt;}
.yc{bottom:865.733333pt;}
.yb8{bottom:877.573333pt;}
.y5d{bottom:880.453333pt;}
.yb{bottom:883.333333pt;}
.yb7{bottom:895.173333pt;}
.y5c{bottom:898.213333pt;}
.ya{bottom:903.013333pt;}
.yb6{bottom:907.653333pt;}
.y5b{bottom:915.813333pt;}
.yb3{bottom:926.213333pt;}
.y9{bottom:927.653333pt;}
.y5a{bottom:933.413333pt;}
.y59{bottom:951.013333pt;}
.y8{bottom:953.093333pt;}
.y56{bottom:956.000000pt;}
.yb2{bottom:962.533333pt;}
.y58{bottom:968.613333pt;}
.y6{bottom:985.093333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h14{height:8.292813pt;}
.h1b{height:17.600000pt;}
.h1a{height:17.632000pt;}
.h1c{height:17.760000pt;}
.h12{height:18.768750pt;}
.h11{height:22.343750pt;}
.h16{height:24.640000pt;}
.hd{height:25.918750pt;}
.hc{height:26.190625pt;}
.h13{height:33.867188pt;}
.he{height:34.664062pt;}
.h19{height:34.945312pt;}
.h1d{height:35.200000pt;}
.h1e{height:35.360000pt;}
.h7{height:35.673437pt;}
.h18{height:36.468750pt;}
.hf{height:36.585938pt;}
.h6{height:37.090625pt;}
.h9{height:37.479688pt;}
.h15{height:40.488438pt;}
.h5{height:41.112500pt;}
.h8{height:52.832812pt;}
.h17{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h10{height:199.200000pt;}
.hb{height:532.573333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:68.160000pt;}
.wb{width:70.432000pt;}
.w2{width:92.512000pt;}
.wf{width:110.912000pt;}
.wd{width:111.040000pt;}
.wc{width:111.072000pt;}
.w9{width:111.712000pt;}
.we{width:112.032000pt;}
.w5{width:117.952000pt;}
.w7{width:144.800000pt;}
.w8{width:156.826667pt;}
.w6{width:530.173333pt;}
.w3{width:553.213333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x49{left:2.720000pt;}
.x68{left:4.320000pt;}
.x25{left:6.272000pt;}
.x17{left:7.232000pt;}
.x4{left:11.360000pt;}
.x16{left:14.272000pt;}
.x1f{left:16.192000pt;}
.x14{left:17.472000pt;}
.x5f{left:21.760000pt;}
.x15{left:23.232000pt;}
.x57{left:24.480000pt;}
.x21{left:25.952000pt;}
.x4e{left:27.520000pt;}
.x46{left:28.640000pt;}
.x6{left:30.080000pt;}
.x58{left:31.520000pt;}
.x4f{left:33.600000pt;}
.x55{left:36.800000pt;}
.x5b{left:37.760000pt;}
.x43{left:38.720000pt;}
.x4d{left:40.480000pt;}
.x53{left:41.440000pt;}
.x20{left:42.432000pt;}
.x54{left:44.160000pt;}
.xf{left:45.152000pt;}
.x6c{left:46.400000pt;}
.x5d{left:47.680000pt;}
.xe{left:48.832000pt;}
.x23{left:50.752000pt;}
.x19{left:55.200000pt;}
.x4c{left:56.160000pt;}
.x52{left:57.760000pt;}
.x22{left:58.906667pt;}
.x41{left:60.799988pt;}
.x6b{left:62.080000pt;}
.x67{left:63.386667pt;}
.x12{left:65.146667pt;}
.x51{left:66.120000pt;}
.x4b{left:67.560000pt;}
.x1{left:69.600000pt;}
.x13{left:70.746667pt;}
.x11{left:73.306667pt;}
.x7{left:76.799988pt;}
.x50{left:77.946667pt;}
.x59{left:80.026667pt;}
.x47{left:82.746667pt;}
.x5a{left:83.706667pt;}
.x2{left:85.146667pt;}
.x38{left:86.271988pt;}
.x64{left:87.226667pt;}
.x29{left:88.351988pt;}
.x60{left:89.626667pt;}
.x24{left:91.386667pt;}
.x1e{left:94.906667pt;}
.x5c{left:96.506667pt;}
.x2a{left:97.951988pt;}
.x6a{left:99.680000pt;}
.x37{left:100.831988pt;}
.x66{left:103.040000pt;}
.x69{left:106.920000pt;}
.x5e{left:108.666667pt;}
.x10{left:110.746667pt;}
.x35{left:113.311988pt;}
.x44{left:118.120000pt;}
.x56{left:119.880000pt;}
.x3e{left:120.991988pt;}
.x5{left:125.640000pt;}
.x6d{left:128.831988pt;}
.x1b{left:138.600000pt;}
.x2b{left:153.946655pt;}
.x2d{left:161.146655pt;}
.x3{left:162.106667pt;}
.x61{left:172.826667pt;}
.x31{left:188.186655pt;}
.x42{left:191.866667pt;}
.x18{left:194.746667pt;}
.x27{left:196.826655pt;}
.x33{left:202.746655pt;}
.x40{left:207.546655pt;}
.x3c{left:215.386655pt;}
.x1c{left:224.360000pt;}
.x2e{left:231.066655pt;}
.x30{left:248.506655pt;}
.x6e{left:251.866655pt;}
.x3b{left:264.226655pt;}
.x72{left:266.466655pt;}
.x62{left:284.866667pt;}
.x6f{left:319.426655pt;}
.x1a{left:326.306667pt;}
.x45{left:349.666667pt;}
.x70{left:358.466655pt;}
.xc{left:373.186655pt;}
.x2f{left:382.146655pt;}
.x39{left:391.426655pt;}
.x63{left:396.866667pt;}
.x34{left:422.653322pt;}
.x1d{left:433.386667pt;}
.x71{left:438.973322pt;}
.x3a{left:457.373322pt;}
.x28{left:459.453322pt;}
.x48{left:462.333333pt;}
.x32{left:467.133322pt;}
.x36{left:487.133322pt;}
.x2c{left:492.733322pt;}
.xb{left:509.053322pt;}
.x65{left:510.013333pt;}
.x4a{left:531.453333pt;}
.xa{left:538.653322pt;}
.x73{left:557.213322pt;}
.x74{left:578.653322pt;}
.x26{left:607.973322pt;}
.x3f{left:628.933322pt;}
.x9{left:680.933322pt;}
.x8{left:697.093322pt;}
.x3d{left:711.333322pt;}
.xd{left:717.093322pt;}
}




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