
    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_b5ceeea43021b6a8c45144a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_b119b5fcf5b0ed9399562375.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77e8831d7714dd92bfc0931f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_ff77605cbde870d44f414f43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6efd23ab40724891f2d191c8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.060059;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_4a8baa0b946cfca04f08fe16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_73cf0d9f73ed7d5707eadc70.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_2598865e949b1cb2f115edbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936035;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_46f35e8b2ed95b4ad7f1452a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_92cc4abe043b5076000d538d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.766602;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_760f16985aac8b33a617dbd4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ea63af9b3975dc104a5ed994.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_211d03e96d9119ee34e9f5cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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:fff;src:url('chunks/assets/font_96dc4b32738c75f10c876dcd.woff2')format("woff");}.fff{font-family:fff;line-height:0.800293;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:ff10;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.688477;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:ff11;src:url('chunks/assets/font_7d8d747672b8ea6c467679f7.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ea20ad972e405a2fc4652239.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_409273594b5499076ac137bc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;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:ff14;src:url('chunks/assets/font_5a2bbda65023b2fd59d8e85f.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a05ccaecc8ff1279e5ae3e6f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.708008;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:ff16;src:url('chunks/assets/font_f81751f8eaf9635e448f09a3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_02c6b92372f9e325c4def0bf.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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(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);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.ls1a{letter-spacing:-0.882000px;}
.ls13{letter-spacing:-0.450600px;}
.ls14{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.106800px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.lsb{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.209400px;}
.ls5{letter-spacing:0.247800px;}
.lsa{letter-spacing:0.252600px;}
.ls18{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.269400px;}
.lsd{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.336000px;}
.lsf{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.460080px;}
.ls3{letter-spacing:0.582000px;}
.ls4{letter-spacing:0.630000px;}
.ls0{letter-spacing:7.012800px;}
.lsc{letter-spacing:20.880000px;}
.ls1b{letter-spacing:54.840000px;}
.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;}
}
.ws15{word-spacing:-72.000000px;}
.wsa{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.712000px;}
.ws12{word-spacing:-15.238800px;}
.ws11{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws3{word-spacing:-13.356600px;}
.ws1{word-spacing:-12.342960px;}
.wsc{word-spacing:-12.329400px;}
.ws0{word-spacing:-12.294960px;}
.ws6{word-spacing:-12.078000px;}
.wsf{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.880000px;}
.wse{word-spacing:-11.609400px;}
.ws9{word-spacing:-10.865400px;}
.ws4{word-spacing:-9.937440px;}
.ws14{word-spacing:-9.702000px;}
.ws2{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-750.792000px;}
._32{margin-left:-577.650000px;}
._33{margin-left:-538.560000px;}
._25{margin-left:-505.386000px;}
._21{margin-left:-490.680000px;}
._23{margin-left:-460.704000px;}
._20{margin-left:-454.680000px;}
._2e{margin-left:-428.616000px;}
._2f{margin-left:-399.594000px;}
._2c{margin-left:-368.712000px;}
._29{margin-left:-304.632000px;}
._28{margin-left:-296.640000px;}
._24{margin-left:-268.632000px;}
._2b{margin-left:-264.864000px;}
._30{margin-left:-212.688000px;}
._27{margin-left:-204.816000px;}
._2a{margin-left:-196.776000px;}
._26{margin-left:-188.712000px;}
._2d{margin-left:-184.752000px;}
._37{margin-left:-180.720000px;}
._22{margin-left:-176.688000px;}
._36{margin-left:-172.800000px;}
._31{margin-left:-165.672000px;}
._3a{margin-left:-162.720000px;}
._38{margin-left:-126.720000px;}
._39{margin-left:-72.720000px;}
._35{margin-left:-54.720000px;}
._1e{margin-left:-2.526480px;}
._0{margin-left:-1.134000px;}
._1{width:1.374480px;}
._5{width:2.691840px;}
._9{width:3.832320px;}
._8{width:5.094000px;}
._6{width:6.768000px;}
._7{width:8.255520px;}
._a{width:9.361440px;}
._f{width:10.440000px;}
._10{width:11.577600px;}
._b{width:13.536000px;}
._c{width:15.257520px;}
._15{width:16.488000px;}
._1a{width:19.008000px;}
._12{width:20.232000px;}
._13{width:21.672000px;}
._e{width:22.896000px;}
._d{width:24.318000px;}
._18{width:25.896000px;}
._19{width:27.305040px;}
._1b{width:28.368000px;}
._11{width:29.808000px;}
._3{width:30.870000px;}
._16{width:32.544000px;}
._17{width:33.552000px;}
._1c{width:38.448000px;}
._1d{width:39.857520px;}
._3c{width:41.436000px;}
._3b{width:42.624000px;}
._1f{width:48.870000px;}
._14{width:1083.210240px;}
._4{width:1091.557200px;}
._2{width:2098.266000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc6{color:rgb(128,128,128);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y37{bottom:1.590000px;}
.y35{bottom:2.670000px;}
.y39{bottom:2.850000px;}
.y3{bottom:4.500000px;}
.y93{bottom:4.680000px;}
.y6b{bottom:4.860000px;}
.y4{bottom:5.040000px;}
.y3d{bottom:6.660000px;}
.yd9{bottom:7.365000px;}
.ye5{bottom:7.560000px;}
.yed{bottom:7.740000px;}
.ye7{bottom:7.920000px;}
.yd0{bottom:8.280000px;}
.ye9{bottom:8.460000px;}
.yd5{bottom:9.525000px;}
.yc8{bottom:11.340000px;}
.y127{bottom:16.560000px;}
.y92{bottom:16.740000px;}
.yb5{bottom:17.280000px;}
.y106{bottom:17.460000px;}
.y6a{bottom:17.640000px;}
.yda{bottom:19.245000px;}
.yc5{bottom:19.260000px;}
.ydf{bottom:19.650000px;}
.yd2{bottom:20.160000px;}
.y129{bottom:21.060000px;}
.y12b{bottom:21.240000px;}
.y130{bottom:21.285000px;}
.yd6{bottom:21.405000px;}
.y115{bottom:22.320000px;}
.y11a{bottom:22.500000px;}
.y11c{bottom:22.530000px;}
.y41{bottom:22.680000px;}
.yc9{bottom:23.220000px;}
.y2{bottom:24.660000px;}
.y3c{bottom:26.460000px;}
.y113{bottom:29.370000px;}
.yd8{bottom:31.125000px;}
.ye0{bottom:31.530000px;}
.ycf{bottom:32.040000px;}
.yd4{bottom:33.285000px;}
.y5{bottom:33.840000px;}
.yc7{bottom:35.100000px;}
.y3b{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.ydd{bottom:43.185000px;}
.yde{bottom:43.410000px;}
.yd1{bottom:43.920000px;}
.ydc{bottom:55.065000px;}
.yce{bottom:55.980000px;}
.y6{bottom:62.640000px;}
.y33{bottom:111.780000px;}
.y126{bottom:118.260000px;}
.y32{bottom:119.340000px;}
.y149{bottom:120.960000px;}
.y69{bottom:127.800000px;}
.y105{bottom:128.160000px;}
.y31{bottom:130.680000px;}
.ye3{bottom:131.580000px;}
.yb4{bottom:134.100000px;}
.y148{bottom:144.720000px;}
.ycc{bottom:144.750000px;}
.y68{bottom:151.560000px;}
.y104{bottom:151.920000px;}
.ye2{bottom:155.340000px;}
.y125{bottom:156.960000px;}
.yb3{bottom:157.860000px;}
.y30{bottom:165.420000px;}
.y147{bottom:168.480000px;}
.ycb{bottom:168.510000px;}
.y91{bottom:170.460000px;}
.y103{bottom:175.680000px;}
.ye1{bottom:179.100000px;}
.y15f{bottom:179.460000px;}
.yb2{bottom:181.620000px;}
.y2f{bottom:185.580000px;}
.y67{bottom:190.440000px;}
.y146{bottom:192.240000px;}
.y90{bottom:194.220000px;}
.y124{bottom:195.840000px;}
.yca{bottom:197.100000px;}
.y102{bottom:199.440000px;}
.y15e{bottom:203.220000px;}
.y2e{bottom:205.740000px;}
.y66{bottom:214.230000px;}
.y8f{bottom:218.010000px;}
.yb1{bottom:220.530000px;}
.y101{bottom:223.410000px;}
.y2d{bottom:227.550000px;}
.y145{bottom:231.150000px;}
.y123{bottom:234.750000px;}
.y65{bottom:237.990000px;}
.y15d{bottom:242.130000px;}
.yb0{bottom:244.290000px;}
.y100{bottom:247.170000px;}
.y2c{bottom:251.310000px;}
.y144{bottom:254.910000px;}
.y8e{bottom:256.890000px;}
.y64{bottom:261.750000px;}
.y15c{bottom:265.890000px;}
.ydb{bottom:270.585000px;}
.yff{bottom:270.930000px;}
.y122{bottom:273.810000px;}
.y2b{bottom:275.070000px;}
.y143{bottom:278.850000px;}
.y8d{bottom:280.650000px;}
.yaf{bottom:282.990000px;}
.y63{bottom:285.690000px;}
.y15b{bottom:289.650000px;}
.y121{bottom:297.570000px;}
.y8c{bottom:304.410000px;}
.yae{bottom:306.930000px;}
.y2a{bottom:307.470000px;}
.yfe{bottom:309.810000px;}
.y142{bottom:317.550000px;}
.y15a{bottom:320.250000px;}
.y120{bottom:321.510000px;}
.y62{bottom:324.390000px;}
.y8b{bottom:327.990000px;}
.y29{bottom:333.210000px;}
.y141{bottom:341.310000px;}
.yd7{bottom:343.485000px;}
.y11f{bottom:345.270000px;}
.yad{bottom:345.630000px;}
.y61{bottom:348.150000px;}
.yfd{bottom:348.510000px;}
.y28{bottom:356.970000px;}
.y170{bottom:361.650000px;}
.y159{bottom:365.610000px;}
.y8a{bottom:366.690000px;}
.y11e{bottom:369.030000px;}
.yac{bottom:369.390000px;}
.y60{bottom:372.090000px;}
.y140{bottom:380.190000px;}
.y27{bottom:380.730000px;}
.yfc{bottom:387.390000px;}
.y158{bottom:389.370000px;}
.yd3{bottom:392.625000px;}
.y5f{bottom:395.850000px;}
.y16f{bottom:399.450000px;}
.y13f{bottom:403.950000px;}
.y26{bottom:404.670000px;}
.y11d{bottom:407.910000px;}
.yab{bottom:408.270000px;}
.y157{bottom:413.130000px;}
.y5e{bottom:419.610000px;}
.y16e{bottom:423.210000px;}
.y11b{bottom:425.745000px;}
.yfb{bottom:426.090000px;}
.y89{bottom:426.810000px;}
.y13e{bottom:427.710000px;}
.y25{bottom:428.430000px;}
.yaa{bottom:432.030000px;}
.y156{bottom:438.330000px;}
.y5d{bottom:443.415000px;}
.ycd{bottom:446.115000px;}
.y16d{bottom:447.195000px;}
.y88{bottom:450.795000px;}
.y13d{bottom:451.695000px;}
.y24{bottom:452.235000px;}
.ya9{bottom:456.015000px;}
.y155{bottom:462.135000px;}
.yfa{bottom:465.015000px;}
.y119{bottom:466.095000px;}
.y5c{bottom:467.355000px;}
.y87{bottom:474.555000px;}
.y13c{bottom:475.455000px;}
.y23{bottom:475.995000px;}
.y16c{bottom:485.895000px;}
.y154{bottom:487.155000px;}
.y5b{bottom:491.115000px;}
.ya8{bottom:494.715000px;}
.y86{bottom:498.315000px;}
.y13b{bottom:499.215000px;}
.y22{bottom:499.935000px;}
.yf9{bottom:503.895000px;}
.y118{bottom:506.415000px;}
.y16b{bottom:509.655000px;}
.y153{bottom:511.095000px;}
.y5a{bottom:514.875000px;}
.ya7{bottom:518.475000px;}
.yc6{bottom:520.815000px;}
.y85{bottom:522.075000px;}
.y13a{bottom:522.975000px;}
.y21{bottom:523.695000px;}
.y16a{bottom:533.595000px;}
.y152{bottom:536.115000px;}
.y59{bottom:538.635000px;}
.ya6{bottom:542.055000px;}
.yf8{bottom:542.595000px;}
.y84{bottom:546.015000px;}
.y117{bottom:546.735000px;}
.y20{bottom:547.455000px;}
.y151{bottom:559.875000px;}
.y139{bottom:561.495000px;}
.y58{bottom:562.575000px;}
.y83{bottom:569.775000px;}
.y1f{bottom:571.215000px;}
.y169{bottom:572.295000px;}
.yc4{bottom:577.695000px;}
.ya5{bottom:581.115000px;}
.yf7{bottom:581.475000px;}
.y150{bottom:583.815000px;}
.y116{bottom:587.055000px;}
.y82{bottom:593.535000px;}
.y1e{bottom:594.975000px;}
.y168{bottom:596.055000px;}
.y138{bottom:600.555000px;}
.y57{bottom:601.275000px;}
.ya4{bottom:604.875000px;}
.y14f{bottom:608.835000px;}
.y137{bottom:617.835000px;}
.y1d{bottom:618.915000px;}
.y167{bottom:619.995000px;}
.yf6{bottom:620.175000px;}
.y56{bottom:625.035000px;}
.y114{bottom:627.375000px;}
.ya3{bottom:628.815000px;}
.y81{bottom:632.415000px;}
.y1c{bottom:642.675000px;}
.y55{bottom:648.975000px;}
.yc3{bottom:649.515000px;}
.y136{bottom:653.295000px;}
.y80{bottom:656.175000px;}
.y166{bottom:658.695000px;}
.yf5{bottom:659.055000px;}
.y1b{bottom:666.435000px;}
.ya2{bottom:667.515000px;}
.y112{bottom:667.695000px;}
.y54{bottom:672.735000px;}
.y7f{bottom:679.965000px;}
.y165{bottom:682.665000px;}
.yc2{bottom:688.785000px;}
.y135{bottom:688.965000px;}
.ya1{bottom:691.305000px;}
.y53{bottom:696.525000px;}
.yf4{bottom:697.785000px;}
.y1a{bottom:698.865000px;}
.y7e{bottom:703.725000px;}
.y164{bottom:706.425000px;}
.yc1{bottom:712.545000px;}
.ya0{bottom:715.245000px;}
.y52{bottom:720.285000px;}
.yf3{bottom:721.725000px;}
.y134{bottom:724.605000px;}
.y19{bottom:726.945000px;}
.y7d{bottom:727.665000px;}
.yc0{bottom:736.305000px;}
.y51{bottom:744.225000px;}
.y163{bottom:745.125000px;}
.y18{bottom:746.025000px;}
.y7c{bottom:751.425000px;}
.y9f{bottom:753.945000px;}
.y111{bottom:759.885000px;}
.yf2{bottom:760.065000px;}
.ybf{bottom:760.245000px;}
.y50{bottom:767.985000px;}
.y17{bottom:769.065000px;}
.y7b{bottom:775.185000px;}
.y9e{bottom:777.705000px;}
.y14e{bottom:782.925000px;}
.ybe{bottom:784.005000px;}
.y16{bottom:792.285000px;}
.y162{bottom:792.825000px;}
.y133{bottom:795.705000px;}
.y110{bottom:798.945000px;}
.yf1{bottom:799.305000px;}
.y4f{bottom:806.685000px;}
.ybd{bottom:807.765000px;}
.y7a{bottom:814.065000px;}
.y9d{bottom:816.585000px;}
.yf0{bottom:817.125000px;}
.y14{bottom:822.525000px;}
.y10f{bottom:822.705000px;}
.y15{bottom:830.085000px;}
.y4e{bottom:830.625000px;}
.y132{bottom:831.345000px;}
.ybc{bottom:831.525000px;}
.y79{bottom:837.825000px;}
.y9c{bottom:840.345000px;}
.yef{bottom:843.405000px;}
.y10e{bottom:846.645000px;}
.y13{bottom:853.845000px;}
.y4d{bottom:854.385000px;}
.ybb{bottom:855.465000px;}
.y78{bottom:861.585000px;}
.y9b{bottom:864.285000px;}
.y131{bottom:866.985000px;}
.yee{bottom:869.685000px;}
.y10d{bottom:870.405000px;}
.y12{bottom:873.825000px;}
.y4c{bottom:878.145000px;}
.yba{bottom:879.225000px;}
.y77{bottom:885.345000px;}
.y9a{bottom:887.685000px;}
.y11{bottom:888.225000px;}
.y10c{bottom:894.165000px;}
.yec{bottom:895.965000px;}
.y4b{bottom:901.905000px;}
.y12f{bottom:902.445000px;}
.yb9{bottom:902.985000px;}
.y10{bottom:904.965000px;}
.y76{bottom:909.285000px;}
.y14d{bottom:917.070000px;}
.y161{bottom:917.970000px;}
.yeb{bottom:922.110000px;}
.y4a{bottom:925.890000px;}
.y99{bottom:926.790000px;}
.y10b{bottom:933.090000px;}
.yf{bottom:937.410000px;}
.y12e{bottom:938.130000px;}
.y14c{bottom:940.830000px;}
.y160{bottom:941.910000px;}
.y75{bottom:948.030000px;}
.yea{bottom:948.390000px;}
.y49{bottom:949.650000px;}
.y98{bottom:950.730000px;}
.y10a{bottom:956.850000px;}
.ye{bottom:962.070000px;}
.y14b{bottom:964.590000px;}
.yb8{bottom:965.670000px;}
.y74{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.y12d{bottom:973.770000px;}
.ye8{bottom:974.670000px;}
.y109{bottom:980.610000px;}
.y34{bottom:986.760000px;}
.y38{bottom:987.120000px;}
.y48{bottom:988.350000px;}
.y36{bottom:988.380000px;}
.y97{bottom:989.430000px;}
.yc{bottom:993.390000px;}
.y73{bottom:995.730000px;}
.ye6{bottom:1000.950000px;}
.y108{bottom:1004.370000px;}
.y12c{bottom:1009.230000px;}
.y47{bottom:1012.290000px;}
.y96{bottom:1013.190000px;}
.y72{bottom:1019.490000px;}
.ye4{bottom:1027.230000px;}
.yb{bottom:1027.590000px;}
.y107{bottom:1028.310000px;}
.y46{bottom:1036.050000px;}
.yb7{bottom:1037.130000px;}
.y14a{bottom:1042.890000px;}
.y71{bottom:1043.250000px;}
.y12a{bottom:1044.870000px;}
.y95{bottom:1052.070000px;}
.y45{bottom:1059.810000px;}
.ya{bottom:1062.870000px;}
.y70{bottom:1067.010000px;}
.yb6{bottom:1075.470000px;}
.y94{bottom:1075.830000px;}
.y128{bottom:1080.510000px;}
.y44{bottom:1083.570000px;}
.y6f{bottom:1090.950000px;}
.y9{bottom:1101.030000px;}
.y43{bottom:1107.510000px;}
.y6e{bottom:1114.710000px;}
.y42{bottom:1138.110000px;}
.y6d{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y40{bottom:1164.600000px;}
.y3f{bottom:1180.440000px;}
.y3e{bottom:1196.280000px;}
.y6c{bottom:1197.540000px;}
.y3a{bottom:1207.980000px;}
.h1c{height:13.500000px;}
.h1a{height:14.580000px;}
.h1e{height:14.760000px;}
.h27{height:18.000000px;}
.h23{height:18.180000px;}
.h1f{height:24.380859px;}
.h30{height:24.645000px;}
.h33{height:24.660000px;}
.h32{height:24.682500px;}
.h31{height:24.825000px;}
.h6{height:24.840000px;}
.hc{height:25.603594px;}
.h38{height:34.725000px;}
.h3d{height:34.740000px;}
.h3a{height:34.905000px;}
.h3e{height:34.920000px;}
.h3c{height:34.942500px;}
.h3f{height:34.950000px;}
.ha{height:36.281250px;}
.h2{height:38.405391px;}
.h1b{height:38.464805px;}
.h8{height:38.469727px;}
.h18{height:38.671172px;}
.h35{height:38.685000px;}
.h36{height:38.865000px;}
.h37{height:38.901000px;}
.h12{height:40.843828px;}
.h9{height:42.573164px;}
.h11{height:42.759141px;}
.h20{height:43.057617px;}
.h21{height:45.720703px;}
.h2d{height:47.505000px;}
.h1d{height:47.650430px;}
.h28{height:48.225000px;}
.h4{height:49.680000px;}
.h26{height:50.273438px;}
.h17{height:50.597578px;}
.h2c{height:52.041000px;}
.h5{height:52.817344px;}
.h7{height:53.709961px;}
.hd{height:54.421875px;}
.he{height:54.597656px;}
.h29{height:55.245000px;}
.h39{height:58.651172px;}
.h19{height:59.439023px;}
.h3b{height:60.226875px;}
.h16{height:65.575595px;}
.h13{height:65.837812px;}
.h3{height:65.884219px;}
.hf{height:67.824844px;}
.h34{height:68.610000px;}
.h15{height:70.628906px;}
.h14{height:70.664062px;}
.h2e{height:71.445000px;}
.h2f{height:72.036000px;}
.h22{height:72.562500px;}
.h2b{height:73.245000px;}
.h24{height:74.004654px;}
.h25{height:74.953125px;}
.hb{height:81.078047px;}
.h2a{height:322.275000px;}
.h10{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:55.620000px;}
.w9{width:77.400000px;}
.w12{width:80.265000px;}
.w13{width:80.301000px;}
.w14{width:81.345000px;}
.w10{width:86.940000px;}
.w2{width:90.000000px;}
.w11{width:92.376000px;}
.w18{width:93.765000px;}
.w1e{width:99.201000px;}
.wf{width:101.181000px;}
.w8{width:107.100000px;}
.w5{width:109.800000px;}
.w15{width:133.549500px;}
.w17{width:134.316000px;}
.w6{width:143.280000px;}
.w1b{width:143.481000px;}
.w1c{width:143.625000px;}
.we{width:143.629500px;}
.w1d{width:143.676000px;}
.wa{width:144.709500px;}
.wb{width:148.341000px;}
.w16{width:148.521000px;}
.w1f{width:151.549500px;}
.w19{width:160.935000px;}
.w7{width:221.400000px;}
.w20{width:287.850000px;}
.wd{width:318.315000px;}
.w3{width:626.400000px;}
.w1a{width:684.450000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.549500px;}
.x16{left:10.836000px;}
.x19{left:13.860000px;}
.x3{left:15.270000px;}
.x18{left:51.015000px;}
.x4{left:93.960000px;}
.x2b{left:99.936000px;}
.x1{left:108.036000px;}
.x10{left:109.116000px;}
.x25{left:111.466500px;}
.x13{left:112.896000px;}
.x15{left:122.400000px;}
.x33{left:128.376000px;}
.x6{left:134.676000px;}
.x1a{left:142.776000px;}
.x34{left:155.370000px;}
.x35{left:162.030000px;}
.x7{left:198.390000px;}
.x1d{left:222.870000px;}
.x2c{left:243.045000px;}
.xe{left:253.110000px;}
.x26{left:255.825000px;}
.x22{left:257.625000px;}
.x11{left:260.130000px;}
.xd{left:291.315000px;}
.x12{left:324.075000px;}
.x1b{left:338.835000px;}
.xf{left:346.035000px;}
.x17{left:347.220000px;}
.x27{left:357.915000px;}
.x32{left:360.615000px;}
.xa{left:369.975000px;}
.x2d{left:392.295000px;}
.x23{left:406.695000px;}
.x9{left:435.135000px;}
.x8{left:446.475000px;}
.x5{left:454.965000px;}
.x24{left:463.035000px;}
.x31{left:505.020000px;}
.xb{left:517.783125px;}
.xc{left:523.005000px;}
.x2e{left:527.340000px;}
.x1c{left:532.365000px;}
.x28{left:538.680000px;}
.x29{left:619.680000px;}
.x2f{left:621.840000px;}
.x1f{left:640.080000px;}
.x30{left:649.380000px;}
.x20{left:670.140000px;}
.x1e{left:671.940000px;}
.x36{left:674.460000px;}
.x14{left:683.460000px;}
.x2a{left:700.710000px;}
.x2{left:802.980000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.ls1a{letter-spacing:-0.784000pt;}
.ls13{letter-spacing:-0.400533pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.lsb{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.186133pt;}
.ls5{letter-spacing:0.220267pt;}
.lsa{letter-spacing:0.224533pt;}
.ls18{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.239467pt;}
.lsd{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.298667pt;}
.lsf{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.408960pt;}
.ls3{letter-spacing:0.517333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls0{letter-spacing:6.233600pt;}
.lsc{letter-spacing:18.560000pt;}
.ls1b{letter-spacing:48.746667pt;}
.ws15{word-spacing:-64.000000pt;}
.wsa{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.744000pt;}
.ws12{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws3{word-spacing:-11.872533pt;}
.ws1{word-spacing:-10.971520pt;}
.wsc{word-spacing:-10.959467pt;}
.ws0{word-spacing:-10.928853pt;}
.ws6{word-spacing:-10.736000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.560000pt;}
.wse{word-spacing:-10.319467pt;}
.ws9{word-spacing:-9.658133pt;}
.ws4{word-spacing:-8.833280pt;}
.ws14{word-spacing:-8.624000pt;}
.ws2{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-667.370667pt;}
._32{margin-left:-513.466667pt;}
._33{margin-left:-478.720000pt;}
._25{margin-left:-449.232000pt;}
._21{margin-left:-436.160000pt;}
._23{margin-left:-409.514667pt;}
._20{margin-left:-404.160000pt;}
._2e{margin-left:-380.992000pt;}
._2f{margin-left:-355.194667pt;}
._2c{margin-left:-327.744000pt;}
._29{margin-left:-270.784000pt;}
._28{margin-left:-263.680000pt;}
._24{margin-left:-238.784000pt;}
._2b{margin-left:-235.434667pt;}
._30{margin-left:-189.056000pt;}
._27{margin-left:-182.058667pt;}
._2a{margin-left:-174.912000pt;}
._26{margin-left:-167.744000pt;}
._2d{margin-left:-164.224000pt;}
._37{margin-left:-160.640000pt;}
._22{margin-left:-157.056000pt;}
._36{margin-left:-153.600000pt;}
._31{margin-left:-147.264000pt;}
._3a{margin-left:-144.640000pt;}
._38{margin-left:-112.640000pt;}
._39{margin-left:-64.640000pt;}
._35{margin-left:-48.640000pt;}
._1e{margin-left:-2.245760pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.221760pt;}
._5{width:2.392747pt;}
._9{width:3.406507pt;}
._8{width:4.528000pt;}
._6{width:6.016000pt;}
._7{width:7.338240pt;}
._a{width:8.321280pt;}
._f{width:9.280000pt;}
._10{width:10.291200pt;}
._b{width:12.032000pt;}
._c{width:13.562240pt;}
._15{width:14.656000pt;}
._1a{width:16.896000pt;}
._12{width:17.984000pt;}
._13{width:19.264000pt;}
._e{width:20.352000pt;}
._d{width:21.616000pt;}
._18{width:23.018667pt;}
._19{width:24.271147pt;}
._1b{width:25.216000pt;}
._11{width:26.496000pt;}
._3{width:27.440000pt;}
._16{width:28.928000pt;}
._17{width:29.824000pt;}
._1c{width:34.176000pt;}
._1d{width:35.428907pt;}
._3c{width:36.832000pt;}
._3b{width:37.888000pt;}
._1f{width:43.440000pt;}
._14{width:962.853547pt;}
._4{width:970.273067pt;}
._2{width:1865.125333pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y37{bottom:1.413333pt;}
.y35{bottom:2.373333pt;}
.y39{bottom:2.533333pt;}
.y3{bottom:4.000000pt;}
.y93{bottom:4.160000pt;}
.y6b{bottom:4.320000pt;}
.y4{bottom:4.480000pt;}
.y3d{bottom:5.920000pt;}
.yd9{bottom:6.546667pt;}
.ye5{bottom:6.720000pt;}
.yed{bottom:6.880000pt;}
.ye7{bottom:7.040000pt;}
.yd0{bottom:7.360000pt;}
.ye9{bottom:7.520000pt;}
.yd5{bottom:8.466667pt;}
.yc8{bottom:10.080000pt;}
.y127{bottom:14.720000pt;}
.y92{bottom:14.880000pt;}
.yb5{bottom:15.360000pt;}
.y106{bottom:15.520000pt;}
.y6a{bottom:15.680000pt;}
.yda{bottom:17.106667pt;}
.yc5{bottom:17.120000pt;}
.ydf{bottom:17.466667pt;}
.yd2{bottom:17.920000pt;}
.y129{bottom:18.720000pt;}
.y12b{bottom:18.880000pt;}
.y130{bottom:18.920000pt;}
.yd6{bottom:19.026667pt;}
.y115{bottom:19.840000pt;}
.y11a{bottom:20.000000pt;}
.y11c{bottom:20.026667pt;}
.y41{bottom:20.160000pt;}
.yc9{bottom:20.640000pt;}
.y2{bottom:21.920000pt;}
.y3c{bottom:23.520000pt;}
.y113{bottom:26.106667pt;}
.yd8{bottom:27.666667pt;}
.ye0{bottom:28.026667pt;}
.ycf{bottom:28.480000pt;}
.yd4{bottom:29.586667pt;}
.y5{bottom:30.080000pt;}
.yc7{bottom:31.200000pt;}
.y3b{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.ydd{bottom:38.386667pt;}
.yde{bottom:38.586667pt;}
.yd1{bottom:39.040000pt;}
.ydc{bottom:48.946667pt;}
.yce{bottom:49.760000pt;}
.y6{bottom:55.680000pt;}
.y33{bottom:99.360000pt;}
.y126{bottom:105.120000pt;}
.y32{bottom:106.080000pt;}
.y149{bottom:107.520000pt;}
.y69{bottom:113.600000pt;}
.y105{bottom:113.920000pt;}
.y31{bottom:116.160000pt;}
.ye3{bottom:116.960000pt;}
.yb4{bottom:119.200000pt;}
.y148{bottom:128.640000pt;}
.ycc{bottom:128.666667pt;}
.y68{bottom:134.720000pt;}
.y104{bottom:135.040000pt;}
.ye2{bottom:138.080000pt;}
.y125{bottom:139.520000pt;}
.yb3{bottom:140.320000pt;}
.y30{bottom:147.040000pt;}
.y147{bottom:149.760000pt;}
.ycb{bottom:149.786667pt;}
.y91{bottom:151.520000pt;}
.y103{bottom:156.160000pt;}
.ye1{bottom:159.200000pt;}
.y15f{bottom:159.520000pt;}
.yb2{bottom:161.440000pt;}
.y2f{bottom:164.960000pt;}
.y67{bottom:169.280000pt;}
.y146{bottom:170.880000pt;}
.y90{bottom:172.640000pt;}
.y124{bottom:174.080000pt;}
.yca{bottom:175.200000pt;}
.y102{bottom:177.280000pt;}
.y15e{bottom:180.640000pt;}
.y2e{bottom:182.880000pt;}
.y66{bottom:190.426667pt;}
.y8f{bottom:193.786667pt;}
.yb1{bottom:196.026667pt;}
.y101{bottom:198.586667pt;}
.y2d{bottom:202.266667pt;}
.y145{bottom:205.466667pt;}
.y123{bottom:208.666667pt;}
.y65{bottom:211.546667pt;}
.y15d{bottom:215.226667pt;}
.yb0{bottom:217.146667pt;}
.y100{bottom:219.706667pt;}
.y2c{bottom:223.386667pt;}
.y144{bottom:226.586667pt;}
.y8e{bottom:228.346667pt;}
.y64{bottom:232.666667pt;}
.y15c{bottom:236.346667pt;}
.ydb{bottom:240.520000pt;}
.yff{bottom:240.826667pt;}
.y122{bottom:243.386667pt;}
.y2b{bottom:244.506667pt;}
.y143{bottom:247.866667pt;}
.y8d{bottom:249.466667pt;}
.yaf{bottom:251.546667pt;}
.y63{bottom:253.946667pt;}
.y15b{bottom:257.466667pt;}
.y121{bottom:264.506667pt;}
.y8c{bottom:270.586667pt;}
.yae{bottom:272.826667pt;}
.y2a{bottom:273.306667pt;}
.yfe{bottom:275.386667pt;}
.y142{bottom:282.266667pt;}
.y15a{bottom:284.666667pt;}
.y120{bottom:285.786667pt;}
.y62{bottom:288.346667pt;}
.y8b{bottom:291.546667pt;}
.y29{bottom:296.186667pt;}
.y141{bottom:303.386667pt;}
.yd7{bottom:305.320000pt;}
.y11f{bottom:306.906667pt;}
.yad{bottom:307.226667pt;}
.y61{bottom:309.466667pt;}
.yfd{bottom:309.786667pt;}
.y28{bottom:317.306667pt;}
.y170{bottom:321.466667pt;}
.y159{bottom:324.986667pt;}
.y8a{bottom:325.946667pt;}
.y11e{bottom:328.026667pt;}
.yac{bottom:328.346667pt;}
.y60{bottom:330.746667pt;}
.y140{bottom:337.946667pt;}
.y27{bottom:338.426667pt;}
.yfc{bottom:344.346667pt;}
.y158{bottom:346.106667pt;}
.yd3{bottom:349.000000pt;}
.y5f{bottom:351.866667pt;}
.y16f{bottom:355.066667pt;}
.y13f{bottom:359.066667pt;}
.y26{bottom:359.706667pt;}
.y11d{bottom:362.586667pt;}
.yab{bottom:362.906667pt;}
.y157{bottom:367.226667pt;}
.y5e{bottom:372.986667pt;}
.y16e{bottom:376.186667pt;}
.y11b{bottom:378.440000pt;}
.yfb{bottom:378.746667pt;}
.y89{bottom:379.386667pt;}
.y13e{bottom:380.186667pt;}
.y25{bottom:380.826667pt;}
.yaa{bottom:384.026667pt;}
.y156{bottom:389.626667pt;}
.y5d{bottom:394.146667pt;}
.ycd{bottom:396.546667pt;}
.y16d{bottom:397.506667pt;}
.y88{bottom:400.706667pt;}
.y13d{bottom:401.506667pt;}
.y24{bottom:401.986667pt;}
.ya9{bottom:405.346667pt;}
.y155{bottom:410.786667pt;}
.yfa{bottom:413.346667pt;}
.y119{bottom:414.306667pt;}
.y5c{bottom:415.426667pt;}
.y87{bottom:421.826667pt;}
.y13c{bottom:422.626667pt;}
.y23{bottom:423.106667pt;}
.y16c{bottom:431.906667pt;}
.y154{bottom:433.026667pt;}
.y5b{bottom:436.546667pt;}
.ya8{bottom:439.746667pt;}
.y86{bottom:442.946667pt;}
.y13b{bottom:443.746667pt;}
.y22{bottom:444.386667pt;}
.yf9{bottom:447.906667pt;}
.y118{bottom:450.146667pt;}
.y16b{bottom:453.026667pt;}
.y153{bottom:454.306667pt;}
.y5a{bottom:457.666667pt;}
.ya7{bottom:460.866667pt;}
.yc6{bottom:462.946667pt;}
.y85{bottom:464.066667pt;}
.y13a{bottom:464.866667pt;}
.y21{bottom:465.506667pt;}
.y16a{bottom:474.306667pt;}
.y152{bottom:476.546667pt;}
.y59{bottom:478.786667pt;}
.ya6{bottom:481.826667pt;}
.yf8{bottom:482.306667pt;}
.y84{bottom:485.346667pt;}
.y117{bottom:485.986667pt;}
.y20{bottom:486.626667pt;}
.y151{bottom:497.666667pt;}
.y139{bottom:499.106667pt;}
.y58{bottom:500.066667pt;}
.y83{bottom:506.466667pt;}
.y1f{bottom:507.746667pt;}
.y169{bottom:508.706667pt;}
.yc4{bottom:513.506667pt;}
.ya5{bottom:516.546667pt;}
.yf7{bottom:516.866667pt;}
.y150{bottom:518.946667pt;}
.y116{bottom:521.826667pt;}
.y82{bottom:527.586667pt;}
.y1e{bottom:528.866667pt;}
.y168{bottom:529.826667pt;}
.y138{bottom:533.826667pt;}
.y57{bottom:534.466667pt;}
.ya4{bottom:537.666667pt;}
.y14f{bottom:541.186667pt;}
.y137{bottom:549.186667pt;}
.y1d{bottom:550.146667pt;}
.y167{bottom:551.106667pt;}
.yf6{bottom:551.266667pt;}
.y56{bottom:555.586667pt;}
.y114{bottom:557.666667pt;}
.ya3{bottom:558.946667pt;}
.y81{bottom:562.146667pt;}
.y1c{bottom:571.266667pt;}
.y55{bottom:576.866667pt;}
.yc3{bottom:577.346667pt;}
.y136{bottom:580.706667pt;}
.y80{bottom:583.266667pt;}
.y166{bottom:585.506667pt;}
.yf5{bottom:585.826667pt;}
.y1b{bottom:592.386667pt;}
.ya2{bottom:593.346667pt;}
.y112{bottom:593.506667pt;}
.y54{bottom:597.986667pt;}
.y7f{bottom:604.413333pt;}
.y165{bottom:606.813333pt;}
.yc2{bottom:612.253333pt;}
.y135{bottom:612.413333pt;}
.ya1{bottom:614.493333pt;}
.y53{bottom:619.133333pt;}
.yf4{bottom:620.253333pt;}
.y1a{bottom:621.213333pt;}
.y7e{bottom:625.533333pt;}
.y164{bottom:627.933333pt;}
.yc1{bottom:633.373333pt;}
.ya0{bottom:635.773333pt;}
.y52{bottom:640.253333pt;}
.yf3{bottom:641.533333pt;}
.y134{bottom:644.093333pt;}
.y19{bottom:646.173333pt;}
.y7d{bottom:646.813333pt;}
.yc0{bottom:654.493333pt;}
.y51{bottom:661.533333pt;}
.y163{bottom:662.333333pt;}
.y18{bottom:663.133333pt;}
.y7c{bottom:667.933333pt;}
.y9f{bottom:670.173333pt;}
.y111{bottom:675.453333pt;}
.yf2{bottom:675.613333pt;}
.ybf{bottom:675.773333pt;}
.y50{bottom:682.653333pt;}
.y17{bottom:683.613333pt;}
.y7b{bottom:689.053333pt;}
.y9e{bottom:691.293333pt;}
.y14e{bottom:695.933333pt;}
.ybe{bottom:696.893333pt;}
.y16{bottom:704.253333pt;}
.y162{bottom:704.733333pt;}
.y133{bottom:707.293333pt;}
.y110{bottom:710.173333pt;}
.yf1{bottom:710.493333pt;}
.y4f{bottom:717.053333pt;}
.ybd{bottom:718.013333pt;}
.y7a{bottom:723.613333pt;}
.y9d{bottom:725.853333pt;}
.yf0{bottom:726.333333pt;}
.y14{bottom:731.133333pt;}
.y10f{bottom:731.293333pt;}
.y15{bottom:737.853333pt;}
.y4e{bottom:738.333333pt;}
.y132{bottom:738.973333pt;}
.ybc{bottom:739.133333pt;}
.y79{bottom:744.733333pt;}
.y9c{bottom:746.973333pt;}
.yef{bottom:749.693333pt;}
.y10e{bottom:752.573333pt;}
.y13{bottom:758.973333pt;}
.y4d{bottom:759.453333pt;}
.ybb{bottom:760.413333pt;}
.y78{bottom:765.853333pt;}
.y9b{bottom:768.253333pt;}
.y131{bottom:770.653333pt;}
.yee{bottom:773.053333pt;}
.y10d{bottom:773.693333pt;}
.y12{bottom:776.733333pt;}
.y4c{bottom:780.573333pt;}
.yba{bottom:781.533333pt;}
.y77{bottom:786.973333pt;}
.y9a{bottom:789.053333pt;}
.y11{bottom:789.533333pt;}
.y10c{bottom:794.813333pt;}
.yec{bottom:796.413333pt;}
.y4b{bottom:801.693333pt;}
.y12f{bottom:802.173333pt;}
.yb9{bottom:802.653333pt;}
.y10{bottom:804.413333pt;}
.y76{bottom:808.253333pt;}
.y14d{bottom:815.173333pt;}
.y161{bottom:815.973333pt;}
.yeb{bottom:819.653333pt;}
.y4a{bottom:823.013333pt;}
.y99{bottom:823.813333pt;}
.y10b{bottom:829.413333pt;}
.yf{bottom:833.253333pt;}
.y12e{bottom:833.893333pt;}
.y14c{bottom:836.293333pt;}
.y160{bottom:837.253333pt;}
.y75{bottom:842.693333pt;}
.yea{bottom:843.013333pt;}
.y49{bottom:844.133333pt;}
.y98{bottom:845.093333pt;}
.y10a{bottom:850.533333pt;}
.ye{bottom:855.173333pt;}
.y14b{bottom:857.413333pt;}
.yb8{bottom:858.373333pt;}
.y74{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.y12d{bottom:865.573333pt;}
.ye8{bottom:866.373333pt;}
.y109{bottom:871.653333pt;}
.y34{bottom:877.120000pt;}
.y38{bottom:877.440000pt;}
.y48{bottom:878.533333pt;}
.y36{bottom:878.560000pt;}
.y97{bottom:879.493333pt;}
.yc{bottom:883.013333pt;}
.y73{bottom:885.093333pt;}
.ye6{bottom:889.733333pt;}
.y108{bottom:892.773333pt;}
.y12c{bottom:897.093333pt;}
.y47{bottom:899.813333pt;}
.y96{bottom:900.613333pt;}
.y72{bottom:906.213333pt;}
.ye4{bottom:913.093333pt;}
.yb{bottom:913.413333pt;}
.y107{bottom:914.053333pt;}
.y46{bottom:920.933333pt;}
.yb7{bottom:921.893333pt;}
.y14a{bottom:927.013333pt;}
.y71{bottom:927.333333pt;}
.y12a{bottom:928.773333pt;}
.y95{bottom:935.173333pt;}
.y45{bottom:942.053333pt;}
.ya{bottom:944.773333pt;}
.y70{bottom:948.453333pt;}
.yb6{bottom:955.973333pt;}
.y94{bottom:956.293333pt;}
.y128{bottom:960.453333pt;}
.y44{bottom:963.173333pt;}
.y6f{bottom:969.733333pt;}
.y9{bottom:978.693333pt;}
.y43{bottom:984.453333pt;}
.y6e{bottom:990.853333pt;}
.y42{bottom:1011.653333pt;}
.y6d{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y40{bottom:1035.200000pt;}
.y3f{bottom:1049.280000pt;}
.y3e{bottom:1063.360000pt;}
.y6c{bottom:1064.480000pt;}
.y3a{bottom:1073.760000pt;}
.h1c{height:12.000000pt;}
.h1a{height:12.960000pt;}
.h1e{height:13.120000pt;}
.h27{height:16.000000pt;}
.h23{height:16.160000pt;}
.h1f{height:21.671875pt;}
.h30{height:21.906667pt;}
.h33{height:21.920000pt;}
.h32{height:21.940000pt;}
.h31{height:22.066667pt;}
.h6{height:22.080000pt;}
.hc{height:22.758750pt;}
.h38{height:30.866667pt;}
.h3d{height:30.880000pt;}
.h3a{height:31.026667pt;}
.h3e{height:31.040000pt;}
.h3c{height:31.060000pt;}
.h3f{height:31.066667pt;}
.ha{height:32.250000pt;}
.h2{height:34.138125pt;}
.h1b{height:34.190937pt;}
.h8{height:34.195312pt;}
.h18{height:34.374375pt;}
.h35{height:34.386667pt;}
.h36{height:34.546667pt;}
.h37{height:34.578667pt;}
.h12{height:36.305625pt;}
.h9{height:37.842813pt;}
.h11{height:38.008125pt;}
.h20{height:38.273438pt;}
.h21{height:40.640625pt;}
.h2d{height:42.226667pt;}
.h1d{height:42.355937pt;}
.h28{height:42.866667pt;}
.h4{height:44.160000pt;}
.h26{height:44.687500pt;}
.h17{height:44.975625pt;}
.h2c{height:46.258667pt;}
.h5{height:46.948750pt;}
.h7{height:47.742188pt;}
.hd{height:48.375000pt;}
.he{height:48.531250pt;}
.h29{height:49.106667pt;}
.h39{height:52.134375pt;}
.h19{height:52.834688pt;}
.h3b{height:53.535000pt;}
.h16{height:58.289418pt;}
.h13{height:58.522500pt;}
.h3{height:58.563750pt;}
.hf{height:60.288750pt;}
.h34{height:60.986667pt;}
.h15{height:62.781250pt;}
.h14{height:62.812500pt;}
.h2e{height:63.506667pt;}
.h2f{height:64.032000pt;}
.h22{height:64.500000pt;}
.h2b{height:65.106667pt;}
.h24{height:65.781915pt;}
.h25{height:66.625000pt;}
.hb{height:72.069375pt;}
.h2a{height:286.466667pt;}
.h10{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:49.440000pt;}
.w9{width:68.800000pt;}
.w12{width:71.346667pt;}
.w13{width:71.378667pt;}
.w14{width:72.306667pt;}
.w10{width:77.280000pt;}
.w2{width:80.000000pt;}
.w11{width:82.112000pt;}
.w18{width:83.346667pt;}
.w1e{width:88.178667pt;}
.wf{width:89.938667pt;}
.w8{width:95.200000pt;}
.w5{width:97.600000pt;}
.w15{width:118.710667pt;}
.w17{width:119.392000pt;}
.w6{width:127.360000pt;}
.w1b{width:127.538667pt;}
.w1c{width:127.666667pt;}
.we{width:127.670667pt;}
.w1d{width:127.712000pt;}
.wa{width:128.630667pt;}
.wb{width:131.858667pt;}
.w16{width:132.018667pt;}
.w1f{width:134.710667pt;}
.w19{width:143.053333pt;}
.w7{width:196.800000pt;}
.w20{width:255.866667pt;}
.wd{width:282.946667pt;}
.w3{width:556.800000pt;}
.w1a{width:608.400000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.710667pt;}
.x16{left:9.632000pt;}
.x19{left:12.320000pt;}
.x3{left:13.573333pt;}
.x18{left:45.346667pt;}
.x4{left:83.520000pt;}
.x2b{left:88.832000pt;}
.x1{left:96.032000pt;}
.x10{left:96.992000pt;}
.x25{left:99.081333pt;}
.x13{left:100.352000pt;}
.x15{left:108.800000pt;}
.x33{left:114.112000pt;}
.x6{left:119.712000pt;}
.x1a{left:126.912000pt;}
.x34{left:138.106667pt;}
.x35{left:144.026667pt;}
.x7{left:176.346667pt;}
.x1d{left:198.106667pt;}
.x2c{left:216.040000pt;}
.xe{left:224.986667pt;}
.x26{left:227.400000pt;}
.x22{left:229.000000pt;}
.x11{left:231.226667pt;}
.xd{left:258.946667pt;}
.x12{left:288.066667pt;}
.x1b{left:301.186667pt;}
.xf{left:307.586667pt;}
.x17{left:308.640000pt;}
.x27{left:318.146667pt;}
.x32{left:320.546667pt;}
.xa{left:328.866667pt;}
.x2d{left:348.706667pt;}
.x23{left:361.506667pt;}
.x9{left:386.786667pt;}
.x8{left:396.866667pt;}
.x5{left:404.413333pt;}
.x24{left:411.586667pt;}
.x31{left:448.906667pt;}
.xb{left:460.251667pt;}
.xc{left:464.893333pt;}
.x2e{left:468.746667pt;}
.x1c{left:473.213333pt;}
.x28{left:478.826667pt;}
.x29{left:550.826667pt;}
.x2f{left:552.746667pt;}
.x1f{left:568.960000pt;}
.x30{left:577.226667pt;}
.x20{left:595.680000pt;}
.x1e{left:597.280000pt;}
.x36{left:599.520000pt;}
.x14{left:607.520000pt;}
.x2a{left:622.853333pt;}
.x2{left:713.760000pt;}
}




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