
    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_3abdc7007c0869f0f5c89c73.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_abc2da7d740612acd0fdae65.woff')format("woff");}.ff2{font-family:ff2;line-height:1.119629;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0b9679143bc815e2beb179fd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_351b2f163524316c0e4cb0a2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_512948d28e3a3a76450bb4e3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.081543;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_6e063a9bb2660d1cc5fc9625.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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_f647e585d8acca72e6df538b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6eb4aa90bbb58b6fb8391161.woff')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_4fcaa55851b114ac3a74b0ce.woff')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_90ed301f418e5b9b35a27415.woff')format("woff");}.ffe{font-family:ffe;line-height:1.097168;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_05952d5b2628c01477b0b343.woff')format("woff");}.fff{font-family:fff;line-height:1.372070;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_79f5746fb86a41e032364966.woff')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4e{letter-spacing:-2.016000px;}
.ls7{letter-spacing:-1.440000px;}
.ls4f{letter-spacing:-1.200000px;}
.ls3e{letter-spacing:-0.924000px;}
.ls6{letter-spacing:-0.720000px;}
.ls2c{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.552000px;}
.ls7a{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.516000px;}
.ls65{letter-spacing:-0.504000px;}
.ls6e{letter-spacing:-0.456000px;}
.ls44{letter-spacing:-0.432000px;}
.ls79{letter-spacing:-0.384000px;}
.ls6d{letter-spacing:-0.372000px;}
.ls85{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.240000px;}
.ls7b{letter-spacing:-0.096000px;}
.ls33{letter-spacing:-0.048000px;}
.ls29{letter-spacing:-0.036000px;}
.ls16{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.024000px;}
.ls3d{letter-spacing:0.060000px;}
.ls45{letter-spacing:0.096000px;}
.ls5b{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.180000px;}
.ls71{letter-spacing:0.264000px;}
.ls55{letter-spacing:0.300000px;}
.ls2b{letter-spacing:0.360000px;}
.ls43{letter-spacing:0.384000px;}
.ls56{letter-spacing:0.408000px;}
.ls2a{letter-spacing:0.420000px;}
.ls4d{letter-spacing:0.444000px;}
.ls0{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.552000px;}
.lsb{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.660000px;}
.ls48{letter-spacing:0.768000px;}
.ls7d{letter-spacing:0.780000px;}
.ls1{letter-spacing:0.828000px;}
.ls35{letter-spacing:0.888000px;}
.ls28{letter-spacing:1.140000px;}
.ls26{letter-spacing:1.200000px;}
.ls66{letter-spacing:1.320000px;}
.ls4b{letter-spacing:1.800000px;}
.ls27{letter-spacing:2.400000px;}
.ls69{letter-spacing:2.940000px;}
.ls4c{letter-spacing:3.000000px;}
.ls32{letter-spacing:3.060000px;}
.ls14{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.800000px;}
.ls25{letter-spacing:4.860000px;}
.ls67{letter-spacing:5.400000px;}
.ls11{letter-spacing:6.600000px;}
.ls7e{letter-spacing:7.740000px;}
.ls10{letter-spacing:7.800000px;}
.ls12{letter-spacing:7.920000px;}
.ls5c{letter-spacing:8.460000px;}
.ls9{letter-spacing:10.200000px;}
.ls1d{letter-spacing:10.380000px;}
.ls15{letter-spacing:10.800000px;}
.lsd{letter-spacing:11.400000px;}
.ls82{letter-spacing:11.580000px;}
.ls22{letter-spacing:12.000000px;}
.ls37{letter-spacing:12.600000px;}
.ls38{letter-spacing:13.800000px;}
.ls3c{letter-spacing:14.400000px;}
.ls3b{letter-spacing:14.580000px;}
.ls2e{letter-spacing:15.000000px;}
.ls42{letter-spacing:15.600000px;}
.ls40{letter-spacing:15.780000px;}
.ls47{letter-spacing:16.200000px;}
.ls73{letter-spacing:16.260000px;}
.ls7f{letter-spacing:16.320000px;}
.ls78{letter-spacing:16.380000px;}
.ls41{letter-spacing:16.800000px;}
.ls49{letter-spacing:17.580000px;}
.ls39{letter-spacing:18.600000px;}
.ls21{letter-spacing:19.200000px;}
.ls34{letter-spacing:19.800000px;}
.ls70{letter-spacing:19.920000px;}
.ls61{letter-spacing:21.000000px;}
.ls6a{letter-spacing:21.180000px;}
.ls62{letter-spacing:22.200000px;}
.ls3{letter-spacing:22.320000px;}
.ls77{letter-spacing:22.380000px;}
.ls5f{letter-spacing:23.400000px;}
.ls3f{letter-spacing:23.520000px;}
.ls36{letter-spacing:24.600000px;}
.ls64{letter-spacing:25.140000px;}
.ls13{letter-spacing:25.200000px;}
.ls19{letter-spacing:25.800000px;}
.ls53{letter-spacing:25.860000px;}
.ls60{letter-spacing:27.000000px;}
.ls46{letter-spacing:30.600000px;}
.ls4a{letter-spacing:35.400000px;}
.ls6b{letter-spacing:36.780000px;}
.ls76{letter-spacing:37.800000px;}
.ls75{letter-spacing:37.980000px;}
.ls20{letter-spacing:39.000000px;}
.ls80{letter-spacing:40.200000px;}
.ls51{letter-spacing:41.400000px;}
.ls52{letter-spacing:41.520000px;}
.ls1f{letter-spacing:41.580000px;}
.ls68{letter-spacing:42.600000px;}
.ls6c{letter-spacing:43.800000px;}
.ls81{letter-spacing:43.980000px;}
.lsa{letter-spacing:46.200000px;}
.ls1c{letter-spacing:48.720000px;}
.ls1e{letter-spacing:52.200000px;}
.lse{letter-spacing:52.260000px;}
.lsf{letter-spacing:52.380000px;}
.ls6f{letter-spacing:54.780000px;}
.ls31{letter-spacing:57.000000px;}
.ls84{letter-spacing:58.200000px;}
.ls83{letter-spacing:63.000000px;}
.ls74{letter-spacing:65.400000px;}
.ls5e{letter-spacing:67.920000px;}
.ls50{letter-spacing:69.000000px;}
.ls2{letter-spacing:73.980000px;}
.ls63{letter-spacing:79.800000px;}
.ls2f{letter-spacing:79.920000px;}
.ls57{letter-spacing:85.800000px;}
.ls5a{letter-spacing:90.780000px;}
.ls59{letter-spacing:91.800000px;}
.ls1a{letter-spacing:91.920000px;}
.ls72{letter-spacing:95.520000px;}
.ls54{letter-spacing:100.200000px;}
.ls58{letter-spacing:113.400000px;}
.ls1b{letter-spacing:157.980000px;}
.ls5d{letter-spacing:167.448000px;}
.ls7c{letter-spacing:191.550000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.ws14{word-spacing:-21.660000px;}
.wse{word-spacing:-21.444000px;}
.wsa{word-spacing:-21.420000px;}
.ws17{word-spacing:-21.264000px;}
.wsf{word-spacing:-21.096000px;}
.ws7{word-spacing:-21.000000px;}
.ws9{word-spacing:-20.976000px;}
.ws12{word-spacing:-20.964000px;}
.ws1a{word-spacing:-20.904000px;}
.ws1c{word-spacing:-20.640000px;}
.ws15{word-spacing:-20.628000px;}
.ws18{word-spacing:-20.616000px;}
.ws16{word-spacing:-20.544000px;}
.ws13{word-spacing:-20.496000px;}
.ws19{word-spacing:-20.460000px;}
.ws1b{word-spacing:-20.448000px;}
.wsc{word-spacing:-20.076000px;}
.wsb{word-spacing:-18.552000px;}
.ws10{word-spacing:-18.384000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.568000px;}
.ws11{word-spacing:-16.800000px;}
.ws8{word-spacing:0.000000px;}
._58{margin-left:-10.446000px;}
._21{margin-left:-5.676000px;}
._53{margin-left:-4.536000px;}
._20{margin-left:-3.444000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._29{width:4.176000px;}
._36{width:5.760000px;}
._38{width:6.846000px;}
._33{width:7.872000px;}
._1e{width:8.904000px;}
._1f{width:10.824000px;}
._16{width:11.964000px;}
._5{width:13.080000px;}
._1d{width:14.616000px;}
._c{width:15.624000px;}
._b{width:16.788000px;}
._1a{width:17.976000px;}
._1b{width:19.416000px;}
._1c{width:22.008000px;}
._2a{width:23.076000px;}
._11{width:24.612000px;}
._37{width:25.812000px;}
._30{width:27.024000px;}
._e{width:28.560000px;}
._d{width:30.324000px;}
._10{width:32.160000px;}
._f{width:33.264000px;}
._7{width:34.524000px;}
._2b{width:36.048000px;}
._2c{width:37.104000px;}
._3a{width:38.694000px;}
._3d{width:39.768000px;}
._40{width:41.262000px;}
._46{width:42.480000px;}
._2f{width:43.488000px;}
._54{width:44.490000px;}
._22{width:45.612000px;}
._23{width:46.920000px;}
._8{width:48.720000px;}
._34{width:50.640000px;}
._19{width:52.404000px;}
._18{width:53.424000px;}
._6{width:54.804000px;}
._44{width:56.940000px;}
._45{width:58.296000px;}
._49{width:59.400000px;}
._4d{width:61.068000px;}
._47{width:62.268000px;}
._32{width:64.176000px;}
._57{width:65.412000px;}
._25{width:66.732000px;}
._52{width:67.788000px;}
._24{width:68.964000px;}
._35{width:70.524000px;}
._31{width:71.964000px;}
._17{width:73.896000px;}
._14{width:77.928000px;}
._13{width:79.320000px;}
._2d{width:80.520000px;}
._41{width:81.654000px;}
._3e{width:83.388000px;}
._3f{width:85.152000px;}
._4c{width:86.208000px;}
._4b{width:87.336000px;}
._50{width:90.654000px;}
._39{width:91.980000px;}
._56{width:93.240000px;}
._15{width:94.464000px;}
._55{width:95.568000px;}
._4e{width:100.368000px;}
._48{width:103.800000px;}
._27{width:105.840000px;}
._28{width:106.956000px;}
._4f{width:113.724000px;}
._12{width:119.448000px;}
._a{width:122.472000px;}
._9{width:123.480000px;}
._26{width:142.212000px;}
._43{width:145.176000px;}
._42{width:146.568000px;}
._4a{width:151.512000px;}
._51{width:152.604000px;}
._2e{width:157.560000px;}
._3c{width:158.904000px;}
._3b{width:159.912000px;}
._4{width:1466.574000px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc2{color:rgb(36,32,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.600000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:16.500000px;}
.ya2{bottom:16.545000px;}
.y9d{bottom:16.800000px;}
.ya4{bottom:17.145000px;}
.y9f{bottom:17.400000px;}
.ya8{bottom:35.715000px;}
.y98{bottom:52.830000px;}
.ya1{bottom:52.845000px;}
.y9c{bottom:53.100000px;}
.y9a{bottom:53.430000px;}
.ya3{bottom:53.445000px;}
.y9e{bottom:53.700000px;}
.y5{bottom:57.037500px;}
.ya7{bottom:71.715000px;}
.y97{bottom:89.130000px;}
.ya6{bottom:89.400000px;}
.y99{bottom:89.745000px;}
.y4{bottom:92.137500px;}
.y79{bottom:121.537500px;}
.y96{bottom:125.430000px;}
.y92{bottom:127.537500px;}
.y78{bottom:128.437500px;}
.y81{bottom:134.137500px;}
.y37{bottom:134.737500px;}
.y4e{bottom:140.137500px;}
.y21{bottom:140.737500px;}
.y6c{bottom:141.637500px;}
.y77{bottom:142.237500px;}
.y84{bottom:149.137500px;}
.y80{bottom:153.045000px;}
.y6b{bottom:155.430000px;}
.y36{bottom:156.930000px;}
.y6a{bottom:162.345000px;}
.y76{bottom:162.930000px;}
.y45{bottom:163.830000px;}
.y4d{bottom:168.975000px;}
.y75{bottom:169.875000px;}
.yac{bottom:170.475000px;}
.y7f{bottom:173.775000px;}
.y4c{bottom:175.875000px;}
.y20{bottom:176.775000px;}
.y5d{bottom:177.675000px;}
.y83{bottom:177.975000px;}
.y35{bottom:178.875000px;}
.y7e{bottom:180.675000px;}
.y91{bottom:183.675000px;}
.y34{bottom:185.775000px;}
.y69{bottom:189.675000px;}
.y90{bottom:190.575000px;}
.y44{bottom:190.875000px;}
.y7d{bottom:194.475000px;}
.y74{bottom:196.275000px;}
.y68{bottom:196.575000px;}
.y5c{bottom:198.375000px;}
.y4b{bottom:202.875000px;}
.y8f{bottom:204.375000px;}
.y5b{bottom:205.275000px;}
.y4a{bottom:208.275000px;}
.y67{bottom:210.375000px;}
.ybc{bottom:212.475000px;}
.y1f{bottom:213.075000px;}
.y73{bottom:215.175000px;}
.ybe{bottom:216.375000px;}
.y89{bottom:219.075000px;}
.y43{bottom:219.975000px;}
.y7c{bottom:222.075000px;}
.y8e{bottom:225.075000px;}
.y66{bottom:231.075000px;}
.y8d{bottom:231.975000px;}
.y5a{bottom:232.275000px;}
.y33{bottom:235.275000px;}
.y72{bottom:235.875000px;}
.y65{bottom:237.975000px;}
.y49{bottom:238.875000px;}
.y88{bottom:239.775000px;}
.y32{bottom:242.175000px;}
.y71{bottom:242.775000px;}
.y87{bottom:246.675000px;}
.y42{bottom:247.275000px;}
.yb8{bottom:248.775000px;}
.y1e{bottom:249.375000px;}
.y7b{bottom:250.875000px;}
.y64{bottom:251.775000px;}
.yba{bottom:254.175000px;}
.y59{bottom:254.475000px;}
.y8c{bottom:260.775000px;}
.y58{bottom:261.375000px;}
.y41{bottom:269.175000px;}
.y70{bottom:269.775000px;}
.y31{bottom:270.975000px;}
.y63{bottom:272.475000px;}
.y86{bottom:273.675000px;}
.y57{bottom:275.175000px;}
.y40{bottom:276.075000px;}
.y6f{bottom:276.675000px;}
.y62{bottom:279.375000px;}
.yb9{bottom:282.975000px;}
.yb6{bottom:284.775000px;}
.y1d{bottom:285.375000px;}
.yab{bottom:288.075000px;}
.y3f{bottom:289.875000px;}
.yb7{bottom:291.675000px;}
.y48{bottom:292.875000px;}
.y56{bottom:295.875000px;}
.y55{bottom:302.775000px;}
.y6e{bottom:305.475000px;}
.y61{bottom:308.175000px;}
.y3e{bottom:310.575000px;}
.y54{bottom:316.575000px;}
.y3d{bottom:317.475000px;}
.y1c{bottom:321.075000px;}
.y2e{bottom:321.675000px;}
.y53{bottom:323.475000px;}
.yaa{bottom:324.075000px;}
.y82{bottom:329.175000px;}
.y85{bottom:331.575000px;}
.y3c{bottom:346.320000px;}
.y52{bottom:352.320000px;}
.y1b{bottom:357.405000px;}
.y2d{bottom:358.005000px;}
.ya9{bottom:359.820000px;}
.y8b{bottom:365.505000px;}
.ya5{bottom:384.105000px;}
.y1a{bottom:393.705000px;}
.y2c{bottom:394.320000px;}
.y3b{bottom:401.820000px;}
.yb5{bottom:429.705000px;}
.y19{bottom:430.320000px;}
.y30{bottom:437.820000px;}
.yb4{bottom:466.005000px;}
.y18{bottom:466.620000px;}
.y51{bottom:474.120000px;}
.ya0{bottom:499.005000px;}
.yb2{bottom:502.305000px;}
.y17{bottom:502.905000px;}
.yb3{bottom:509.250000px;}
.y60{bottom:510.450000px;}
.yb1{bottom:538.650000px;}
.y16{bottom:539.250000px;}
.y47{bottom:546.750000px;}
.yb0{bottom:574.650000px;}
.y15{bottom:575.250000px;}
.y9b{bottom:577.350000px;}
.yaf{bottom:610.950000px;}
.y14{bottom:611.550000px;}
.y6d{bottom:619.050000px;}
.ybb{bottom:647.250000px;}
.y13{bottom:647.850000px;}
.y50{bottom:655.350000px;}
.y95{bottom:655.950000px;}
.yae{bottom:683.595000px;}
.y12{bottom:684.180000px;}
.y3a{bottom:691.695000px;}
.yad{bottom:719.580000px;}
.y11{bottom:720.195000px;}
.y2b{bottom:755.880000px;}
.y10{bottom:756.480000px;}
.y8a{bottom:763.995000px;}
.y2a{bottom:792.195000px;}
.yf{bottom:792.780000px;}
.y5f{bottom:800.295000px;}
.y93{bottom:806.880000px;}
.y29{bottom:828.495000px;}
.ye{bottom:829.080000px;}
.ybd{bottom:864.525000px;}
.yd{bottom:865.125000px;}
.y2f{bottom:872.625000px;}
.yc{bottom:900.825000px;}
.y28{bottom:901.425000px;}
.y46{bottom:908.925000px;}
.yb{bottom:937.125000px;}
.y27{bottom:937.725000px;}
.y39{bottom:945.225000px;}
.ya{bottom:973.425000px;}
.y26{bottom:974.025000px;}
.y4f{bottom:981.525000px;}
.y9{bottom:1009.425000px;}
.y25{bottom:1010.025000px;}
.y38{bottom:1017.570000px;}
.y8{bottom:1045.755000px;}
.y24{bottom:1046.370000px;}
.y7{bottom:1082.070000px;}
.y23{bottom:1082.655000px;}
.y7a{bottom:1090.155000px;}
.y6{bottom:1118.070000px;}
.y22{bottom:1118.670000px;}
.y5e{bottom:1126.155000px;}
.y3{bottom:1155.870000px;}
.y2{bottom:1191.600000px;}
.y1{bottom:1227.900000px;}
.h18{height:36.000000px;}
.h12{height:39.387305px;}
.h17{height:47.085938px;}
.h10{height:47.109375px;}
.h4{height:47.340820px;}
.h16{height:52.971680px;}
.he{height:52.998047px;}
.h5{height:55.623047px;}
.h14{height:59.677734px;}
.hf{height:65.645508px;}
.h2{height:68.859375px;}
.h11{height:70.664062px;}
.h9{height:71.367188px;}
.h13{height:71.613281px;}
.h1b{height:72.337500px;}
.h8{height:72.351562px;}
.h3{height:72.562500px;}
.h1a{height:72.600000px;}
.h7{height:72.638672px;}
.hc{height:74.033203px;}
.ha{height:82.400391px;}
.hb{height:82.441406px;}
.h15{height:83.794922px;}
.h6{height:84.656250px;}
.h1c{height:108.900000px;}
.h19{height:144.937500px;}
.hd{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:143.437500px;}
.w4{width:547.695000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x51{left:43.507500px;}
.x57{left:48.045000px;}
.x59{left:75.930000px;}
.x54{left:78.030000px;}
.x55{left:82.845000px;}
.x3{left:127.537500px;}
.x50{left:131.137500px;}
.x5a{left:141.075000px;}
.x56{left:144.375000px;}
.x1{left:157.830000px;}
.x58{left:168.075000px;}
.xa{left:170.130000px;}
.x5{left:173.130000px;}
.x11{left:176.175000px;}
.x1a{left:178.875000px;}
.x10{left:180.375000px;}
.x29{left:182.175000px;}
.x2a{left:183.675000px;}
.x3c{left:186.075000px;}
.x47{left:188.175000px;}
.x4{left:214.875000px;}
.x48{left:218.137500px;}
.x34{left:221.437500px;}
.x28{left:223.837500px;}
.x53{left:227.775000px;}
.x49{left:231.975000px;}
.x35{left:235.275000px;}
.x45{left:237.937500px;}
.x16{left:240.037500px;}
.x17{left:246.975000px;}
.x46{left:251.775000px;}
.x4d{left:269.737500px;}
.x52{left:278.475000px;}
.x4e{left:283.575000px;}
.x43{left:285.937500px;}
.x6{left:289.875000px;}
.x5f{left:303.382500px;}
.x60{left:317.220000px;}
.x44{left:325.620000px;}
.x39{left:327.082500px;}
.x1f{left:330.967500px;}
.x20{left:339.120000px;}
.xf{left:343.620000px;}
.x8{left:348.120000px;}
.x38{left:353.520000px;}
.x4c{left:358.005000px;}
.x2f{left:383.782500px;}
.x2d{left:391.867500px;}
.x9{left:395.220000px;}
.x30{left:400.605000px;}
.x2e{left:405.720000px;}
.x26{left:408.682500px;}
.x4f{left:422.250000px;}
.x27{left:423.750000px;}
.x41{left:431.512500px;}
.x2b{left:444.712500px;}
.x42{left:449.250000px;}
.x1d{left:451.912500px;}
.x1e{left:458.850000px;}
.x2c{left:469.950000px;}
.x7{left:499.650000px;}
.x31{left:503.212500px;}
.x3a{left:513.712500px;}
.x32{left:517.050000px;}
.x3b{left:527.550000px;}
.x14{left:549.457500px;}
.x15{left:559.380000px;}
.x3f{left:566.557500px;}
.x4a{left:588.457500px;}
.x40{left:599.280000px;}
.x4b{left:603.195000px;}
.x2{left:614.880000px;}
.x1b{left:638.242500px;}
.x21{left:642.157500px;}
.x1c{left:645.195000px;}
.x3d{left:652.357500px;}
.x22{left:658.425000px;}
.x5d{left:665.587500px;}
.x3e{left:667.425000px;}
.x12{left:676.087500px;}
.xb{left:677.287500px;}
.x5e{left:679.425000px;}
.x13{left:683.025000px;}
.xc{left:684.525000px;}
.x36{left:696.787500px;}
.x37{left:710.625000px;}
.x61{left:724.087500px;}
.x23{left:728.287500px;}
.x5b{left:735.787500px;}
.x62{left:737.925000px;}
.x5c{left:750.825000px;}
.x24{left:753.225000px;}
.x33{left:808.117500px;}
.x25{left:809.917500px;}
.x18{left:814.417500px;}
.xd{left:822.532500px;}
.x19{left:824.370000px;}
.xe{left:829.455000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4e{letter-spacing:-1.792000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls4f{letter-spacing:-1.066667pt;}
.ls3e{letter-spacing:-0.821333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls2c{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.490667pt;}
.ls7a{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.458667pt;}
.ls65{letter-spacing:-0.448000pt;}
.ls6e{letter-spacing:-0.405333pt;}
.ls44{letter-spacing:-0.384000pt;}
.ls79{letter-spacing:-0.341333pt;}
.ls6d{letter-spacing:-0.330667pt;}
.ls85{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls7b{letter-spacing:-0.085333pt;}
.ls33{letter-spacing:-0.042667pt;}
.ls29{letter-spacing:-0.032000pt;}
.ls16{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.021333pt;}
.ls3d{letter-spacing:0.053333pt;}
.ls45{letter-spacing:0.085333pt;}
.ls5b{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls71{letter-spacing:0.234667pt;}
.ls55{letter-spacing:0.266667pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls43{letter-spacing:0.341333pt;}
.ls56{letter-spacing:0.362667pt;}
.ls2a{letter-spacing:0.373333pt;}
.ls4d{letter-spacing:0.394667pt;}
.ls0{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.490667pt;}
.lsb{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.586667pt;}
.ls48{letter-spacing:0.682667pt;}
.ls7d{letter-spacing:0.693333pt;}
.ls1{letter-spacing:0.736000pt;}
.ls35{letter-spacing:0.789333pt;}
.ls28{letter-spacing:1.013333pt;}
.ls26{letter-spacing:1.066667pt;}
.ls66{letter-spacing:1.173333pt;}
.ls4b{letter-spacing:1.600000pt;}
.ls27{letter-spacing:2.133333pt;}
.ls69{letter-spacing:2.613333pt;}
.ls4c{letter-spacing:2.666667pt;}
.ls32{letter-spacing:2.720000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.733333pt;}
.ls23{letter-spacing:4.266667pt;}
.ls25{letter-spacing:4.320000pt;}
.ls67{letter-spacing:4.800000pt;}
.ls11{letter-spacing:5.866667pt;}
.ls7e{letter-spacing:6.880000pt;}
.ls10{letter-spacing:6.933333pt;}
.ls12{letter-spacing:7.040000pt;}
.ls5c{letter-spacing:7.520000pt;}
.ls9{letter-spacing:9.066667pt;}
.ls1d{letter-spacing:9.226667pt;}
.ls15{letter-spacing:9.600000pt;}
.lsd{letter-spacing:10.133333pt;}
.ls82{letter-spacing:10.293333pt;}
.ls22{letter-spacing:10.666667pt;}
.ls37{letter-spacing:11.200000pt;}
.ls38{letter-spacing:12.266667pt;}
.ls3c{letter-spacing:12.800000pt;}
.ls3b{letter-spacing:12.960000pt;}
.ls2e{letter-spacing:13.333333pt;}
.ls42{letter-spacing:13.866667pt;}
.ls40{letter-spacing:14.026667pt;}
.ls47{letter-spacing:14.400000pt;}
.ls73{letter-spacing:14.453333pt;}
.ls7f{letter-spacing:14.506667pt;}
.ls78{letter-spacing:14.560000pt;}
.ls41{letter-spacing:14.933333pt;}
.ls49{letter-spacing:15.626667pt;}
.ls39{letter-spacing:16.533333pt;}
.ls21{letter-spacing:17.066667pt;}
.ls34{letter-spacing:17.600000pt;}
.ls70{letter-spacing:17.706667pt;}
.ls61{letter-spacing:18.666667pt;}
.ls6a{letter-spacing:18.826667pt;}
.ls62{letter-spacing:19.733333pt;}
.ls3{letter-spacing:19.840000pt;}
.ls77{letter-spacing:19.893333pt;}
.ls5f{letter-spacing:20.800000pt;}
.ls3f{letter-spacing:20.906667pt;}
.ls36{letter-spacing:21.866667pt;}
.ls64{letter-spacing:22.346667pt;}
.ls13{letter-spacing:22.400000pt;}
.ls19{letter-spacing:22.933333pt;}
.ls53{letter-spacing:22.986667pt;}
.ls60{letter-spacing:24.000000pt;}
.ls46{letter-spacing:27.200000pt;}
.ls4a{letter-spacing:31.466667pt;}
.ls6b{letter-spacing:32.693333pt;}
.ls76{letter-spacing:33.600000pt;}
.ls75{letter-spacing:33.760000pt;}
.ls20{letter-spacing:34.666667pt;}
.ls80{letter-spacing:35.733333pt;}
.ls51{letter-spacing:36.800000pt;}
.ls52{letter-spacing:36.906667pt;}
.ls1f{letter-spacing:36.960000pt;}
.ls68{letter-spacing:37.866667pt;}
.ls6c{letter-spacing:38.933333pt;}
.ls81{letter-spacing:39.093333pt;}
.lsa{letter-spacing:41.066667pt;}
.ls1c{letter-spacing:43.306667pt;}
.ls1e{letter-spacing:46.400000pt;}
.lse{letter-spacing:46.453333pt;}
.lsf{letter-spacing:46.560000pt;}
.ls6f{letter-spacing:48.693333pt;}
.ls31{letter-spacing:50.666667pt;}
.ls84{letter-spacing:51.733333pt;}
.ls83{letter-spacing:56.000000pt;}
.ls74{letter-spacing:58.133333pt;}
.ls5e{letter-spacing:60.373333pt;}
.ls50{letter-spacing:61.333333pt;}
.ls2{letter-spacing:65.760000pt;}
.ls63{letter-spacing:70.933333pt;}
.ls2f{letter-spacing:71.040000pt;}
.ls57{letter-spacing:76.266667pt;}
.ls5a{letter-spacing:80.693333pt;}
.ls59{letter-spacing:81.600000pt;}
.ls1a{letter-spacing:81.706667pt;}
.ls72{letter-spacing:84.906667pt;}
.ls54{letter-spacing:89.066667pt;}
.ls58{letter-spacing:100.800000pt;}
.ls1b{letter-spacing:140.426667pt;}
.ls5d{letter-spacing:148.842667pt;}
.ls7c{letter-spacing:170.266667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.ws14{word-spacing:-19.253333pt;}
.wse{word-spacing:-19.061333pt;}
.wsa{word-spacing:-19.040000pt;}
.ws17{word-spacing:-18.901333pt;}
.wsf{word-spacing:-18.752000pt;}
.ws7{word-spacing:-18.666667pt;}
.ws9{word-spacing:-18.645333pt;}
.ws12{word-spacing:-18.634667pt;}
.ws1a{word-spacing:-18.581333pt;}
.ws1c{word-spacing:-18.346667pt;}
.ws15{word-spacing:-18.336000pt;}
.ws18{word-spacing:-18.325333pt;}
.ws16{word-spacing:-18.261333pt;}
.ws13{word-spacing:-18.218667pt;}
.ws19{word-spacing:-18.186667pt;}
.ws1b{word-spacing:-18.176000pt;}
.wsc{word-spacing:-17.845333pt;}
.wsb{word-spacing:-16.490667pt;}
.ws10{word-spacing:-16.341333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.616000pt;}
.ws11{word-spacing:-14.933333pt;}
.ws8{word-spacing:0.000000pt;}
._58{margin-left:-9.285333pt;}
._21{margin-left:-5.045333pt;}
._53{margin-left:-4.032000pt;}
._20{margin-left:-3.061333pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._29{width:3.712000pt;}
._36{width:5.120000pt;}
._38{width:6.085333pt;}
._33{width:6.997333pt;}
._1e{width:7.914667pt;}
._1f{width:9.621333pt;}
._16{width:10.634667pt;}
._5{width:11.626667pt;}
._1d{width:12.992000pt;}
._c{width:13.888000pt;}
._b{width:14.922667pt;}
._1a{width:15.978667pt;}
._1b{width:17.258667pt;}
._1c{width:19.562667pt;}
._2a{width:20.512000pt;}
._11{width:21.877333pt;}
._37{width:22.944000pt;}
._30{width:24.021333pt;}
._e{width:25.386667pt;}
._d{width:26.954667pt;}
._10{width:28.586667pt;}
._f{width:29.568000pt;}
._7{width:30.688000pt;}
._2b{width:32.042667pt;}
._2c{width:32.981333pt;}
._3a{width:34.394667pt;}
._3d{width:35.349333pt;}
._40{width:36.677333pt;}
._46{width:37.760000pt;}
._2f{width:38.656000pt;}
._54{width:39.546667pt;}
._22{width:40.544000pt;}
._23{width:41.706667pt;}
._8{width:43.306667pt;}
._34{width:45.013333pt;}
._19{width:46.581333pt;}
._18{width:47.488000pt;}
._6{width:48.714667pt;}
._44{width:50.613333pt;}
._45{width:51.818667pt;}
._49{width:52.800000pt;}
._4d{width:54.282667pt;}
._47{width:55.349333pt;}
._32{width:57.045333pt;}
._57{width:58.144000pt;}
._25{width:59.317333pt;}
._52{width:60.256000pt;}
._24{width:61.301333pt;}
._35{width:62.688000pt;}
._31{width:63.968000pt;}
._17{width:65.685333pt;}
._14{width:69.269333pt;}
._13{width:70.506667pt;}
._2d{width:71.573333pt;}
._41{width:72.581333pt;}
._3e{width:74.122667pt;}
._3f{width:75.690667pt;}
._4c{width:76.629333pt;}
._4b{width:77.632000pt;}
._50{width:80.581333pt;}
._39{width:81.760000pt;}
._56{width:82.880000pt;}
._15{width:83.968000pt;}
._55{width:84.949333pt;}
._4e{width:89.216000pt;}
._48{width:92.266667pt;}
._27{width:94.080000pt;}
._28{width:95.072000pt;}
._4f{width:101.088000pt;}
._12{width:106.176000pt;}
._a{width:108.864000pt;}
._9{width:109.760000pt;}
._26{width:126.410667pt;}
._43{width:129.045333pt;}
._42{width:130.282667pt;}
._4a{width:134.677333pt;}
._51{width:135.648000pt;}
._2e{width:140.053333pt;}
._3c{width:141.248000pt;}
._3b{width:142.144000pt;}
._4{width:1303.621333pt;}
.fs6{font-size:35.200000pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:14.666667pt;}
.ya2{bottom:14.706667pt;}
.y9d{bottom:14.933333pt;}
.ya4{bottom:15.240000pt;}
.y9f{bottom:15.466667pt;}
.ya8{bottom:31.746667pt;}
.y98{bottom:46.960000pt;}
.ya1{bottom:46.973333pt;}
.y9c{bottom:47.200000pt;}
.y9a{bottom:47.493333pt;}
.ya3{bottom:47.506667pt;}
.y9e{bottom:47.733333pt;}
.y5{bottom:50.700000pt;}
.ya7{bottom:63.746667pt;}
.y97{bottom:79.226667pt;}
.ya6{bottom:79.466667pt;}
.y99{bottom:79.773333pt;}
.y4{bottom:81.900000pt;}
.y79{bottom:108.033333pt;}
.y96{bottom:111.493333pt;}
.y92{bottom:113.366667pt;}
.y78{bottom:114.166667pt;}
.y81{bottom:119.233333pt;}
.y37{bottom:119.766667pt;}
.y4e{bottom:124.566667pt;}
.y21{bottom:125.100000pt;}
.y6c{bottom:125.900000pt;}
.y77{bottom:126.433333pt;}
.y84{bottom:132.566667pt;}
.y80{bottom:136.040000pt;}
.y6b{bottom:138.160000pt;}
.y36{bottom:139.493333pt;}
.y6a{bottom:144.306667pt;}
.y76{bottom:144.826667pt;}
.y45{bottom:145.626667pt;}
.y4d{bottom:150.200000pt;}
.y75{bottom:151.000000pt;}
.yac{bottom:151.533333pt;}
.y7f{bottom:154.466667pt;}
.y4c{bottom:156.333333pt;}
.y20{bottom:157.133333pt;}
.y5d{bottom:157.933333pt;}
.y83{bottom:158.200000pt;}
.y35{bottom:159.000000pt;}
.y7e{bottom:160.600000pt;}
.y91{bottom:163.266667pt;}
.y34{bottom:165.133333pt;}
.y69{bottom:168.600000pt;}
.y90{bottom:169.400000pt;}
.y44{bottom:169.666667pt;}
.y7d{bottom:172.866667pt;}
.y74{bottom:174.466667pt;}
.y68{bottom:174.733333pt;}
.y5c{bottom:176.333333pt;}
.y4b{bottom:180.333333pt;}
.y8f{bottom:181.666667pt;}
.y5b{bottom:182.466667pt;}
.y4a{bottom:185.133333pt;}
.y67{bottom:187.000000pt;}
.ybc{bottom:188.866667pt;}
.y1f{bottom:189.400000pt;}
.y73{bottom:191.266667pt;}
.ybe{bottom:192.333333pt;}
.y89{bottom:194.733333pt;}
.y43{bottom:195.533333pt;}
.y7c{bottom:197.400000pt;}
.y8e{bottom:200.066667pt;}
.y66{bottom:205.400000pt;}
.y8d{bottom:206.200000pt;}
.y5a{bottom:206.466667pt;}
.y33{bottom:209.133333pt;}
.y72{bottom:209.666667pt;}
.y65{bottom:211.533333pt;}
.y49{bottom:212.333333pt;}
.y88{bottom:213.133333pt;}
.y32{bottom:215.266667pt;}
.y71{bottom:215.800000pt;}
.y87{bottom:219.266667pt;}
.y42{bottom:219.800000pt;}
.yb8{bottom:221.133333pt;}
.y1e{bottom:221.666667pt;}
.y7b{bottom:223.000000pt;}
.y64{bottom:223.800000pt;}
.yba{bottom:225.933333pt;}
.y59{bottom:226.200000pt;}
.y8c{bottom:231.800000pt;}
.y58{bottom:232.333333pt;}
.y41{bottom:239.266667pt;}
.y70{bottom:239.800000pt;}
.y31{bottom:240.866667pt;}
.y63{bottom:242.200000pt;}
.y86{bottom:243.266667pt;}
.y57{bottom:244.600000pt;}
.y40{bottom:245.400000pt;}
.y6f{bottom:245.933333pt;}
.y62{bottom:248.333333pt;}
.yb9{bottom:251.533333pt;}
.yb6{bottom:253.133333pt;}
.y1d{bottom:253.666667pt;}
.yab{bottom:256.066667pt;}
.y3f{bottom:257.666667pt;}
.yb7{bottom:259.266667pt;}
.y48{bottom:260.333333pt;}
.y56{bottom:263.000000pt;}
.y55{bottom:269.133333pt;}
.y6e{bottom:271.533333pt;}
.y61{bottom:273.933333pt;}
.y3e{bottom:276.066667pt;}
.y54{bottom:281.400000pt;}
.y3d{bottom:282.200000pt;}
.y1c{bottom:285.400000pt;}
.y2e{bottom:285.933333pt;}
.y53{bottom:287.533333pt;}
.yaa{bottom:288.066667pt;}
.y82{bottom:292.600000pt;}
.y85{bottom:294.733333pt;}
.y3c{bottom:307.840000pt;}
.y52{bottom:313.173333pt;}
.y1b{bottom:317.693333pt;}
.y2d{bottom:318.226667pt;}
.ya9{bottom:319.840000pt;}
.y8b{bottom:324.893333pt;}
.ya5{bottom:341.426667pt;}
.y1a{bottom:349.960000pt;}
.y2c{bottom:350.506667pt;}
.y3b{bottom:357.173333pt;}
.yb5{bottom:381.960000pt;}
.y19{bottom:382.506667pt;}
.y30{bottom:389.173333pt;}
.yb4{bottom:414.226667pt;}
.y18{bottom:414.773333pt;}
.y51{bottom:421.440000pt;}
.ya0{bottom:443.560000pt;}
.yb2{bottom:446.493333pt;}
.y17{bottom:447.026667pt;}
.yb3{bottom:452.666667pt;}
.y60{bottom:453.733333pt;}
.yb1{bottom:478.800000pt;}
.y16{bottom:479.333333pt;}
.y47{bottom:486.000000pt;}
.yb0{bottom:510.800000pt;}
.y15{bottom:511.333333pt;}
.y9b{bottom:513.200000pt;}
.yaf{bottom:543.066667pt;}
.y14{bottom:543.600000pt;}
.y6d{bottom:550.266667pt;}
.ybb{bottom:575.333333pt;}
.y13{bottom:575.866667pt;}
.y50{bottom:582.533333pt;}
.y95{bottom:583.066667pt;}
.yae{bottom:607.640000pt;}
.y12{bottom:608.160000pt;}
.y3a{bottom:614.840000pt;}
.yad{bottom:639.626667pt;}
.y11{bottom:640.173333pt;}
.y2b{bottom:671.893333pt;}
.y10{bottom:672.426667pt;}
.y8a{bottom:679.106667pt;}
.y2a{bottom:704.173333pt;}
.yf{bottom:704.693333pt;}
.y5f{bottom:711.373333pt;}
.y93{bottom:717.226667pt;}
.y29{bottom:736.440000pt;}
.ye{bottom:736.960000pt;}
.ybd{bottom:768.466667pt;}
.yd{bottom:769.000000pt;}
.y2f{bottom:775.666667pt;}
.yc{bottom:800.733333pt;}
.y28{bottom:801.266667pt;}
.y46{bottom:807.933333pt;}
.yb{bottom:833.000000pt;}
.y27{bottom:833.533333pt;}
.y39{bottom:840.200000pt;}
.ya{bottom:865.266667pt;}
.y26{bottom:865.800000pt;}
.y4f{bottom:872.466667pt;}
.y9{bottom:897.266667pt;}
.y25{bottom:897.800000pt;}
.y38{bottom:904.506667pt;}
.y8{bottom:929.560000pt;}
.y24{bottom:930.106667pt;}
.y7{bottom:961.840000pt;}
.y23{bottom:962.360000pt;}
.y7a{bottom:969.026667pt;}
.y6{bottom:993.840000pt;}
.y22{bottom:994.373333pt;}
.y5e{bottom:1001.026667pt;}
.y3{bottom:1027.440000pt;}
.y2{bottom:1059.200000pt;}
.y1{bottom:1091.466667pt;}
.h18{height:32.000000pt;}
.h12{height:35.010937pt;}
.h17{height:41.854167pt;}
.h10{height:41.875000pt;}
.h4{height:42.080729pt;}
.h16{height:47.085938pt;}
.he{height:47.109375pt;}
.h5{height:49.442708pt;}
.h14{height:53.046875pt;}
.hf{height:58.351562pt;}
.h2{height:61.208333pt;}
.h11{height:62.812500pt;}
.h9{height:63.437500pt;}
.h13{height:63.656250pt;}
.h1b{height:64.300000pt;}
.h8{height:64.312500pt;}
.h3{height:64.500000pt;}
.h1a{height:64.533333pt;}
.h7{height:64.567708pt;}
.hc{height:65.807292pt;}
.ha{height:73.244792pt;}
.hb{height:73.281250pt;}
.h15{height:74.484375pt;}
.h6{height:75.250000pt;}
.h1c{height:96.800000pt;}
.h19{height:128.833333pt;}
.hd{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:127.500000pt;}
.w4{width:486.840000pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x51{left:38.673333pt;}
.x57{left:42.706667pt;}
.x59{left:67.493333pt;}
.x54{left:69.360000pt;}
.x55{left:73.640000pt;}
.x3{left:113.366667pt;}
.x50{left:116.566667pt;}
.x5a{left:125.400000pt;}
.x56{left:128.333333pt;}
.x1{left:140.293333pt;}
.x58{left:149.400000pt;}
.xa{left:151.226667pt;}
.x5{left:153.893333pt;}
.x11{left:156.600000pt;}
.x1a{left:159.000000pt;}
.x10{left:160.333333pt;}
.x29{left:161.933333pt;}
.x2a{left:163.266667pt;}
.x3c{left:165.400000pt;}
.x47{left:167.266667pt;}
.x4{left:191.000000pt;}
.x48{left:193.900000pt;}
.x34{left:196.833333pt;}
.x28{left:198.966667pt;}
.x53{left:202.466667pt;}
.x49{left:206.200000pt;}
.x35{left:209.133333pt;}
.x45{left:211.500000pt;}
.x16{left:213.366667pt;}
.x17{left:219.533333pt;}
.x46{left:223.800000pt;}
.x4d{left:239.766667pt;}
.x52{left:247.533333pt;}
.x4e{left:252.066667pt;}
.x43{left:254.166667pt;}
.x6{left:257.666667pt;}
.x5f{left:269.673333pt;}
.x60{left:281.973333pt;}
.x44{left:289.440000pt;}
.x39{left:290.740000pt;}
.x1f{left:294.193333pt;}
.x20{left:301.440000pt;}
.xf{left:305.440000pt;}
.x8{left:309.440000pt;}
.x38{left:314.240000pt;}
.x4c{left:318.226667pt;}
.x2f{left:341.140000pt;}
.x2d{left:348.326667pt;}
.x9{left:351.306667pt;}
.x30{left:356.093333pt;}
.x2e{left:360.640000pt;}
.x26{left:363.273333pt;}
.x4f{left:375.333333pt;}
.x27{left:376.666667pt;}
.x41{left:383.566667pt;}
.x2b{left:395.300000pt;}
.x42{left:399.333333pt;}
.x1d{left:401.700000pt;}
.x1e{left:407.866667pt;}
.x2c{left:417.733333pt;}
.x7{left:444.133333pt;}
.x31{left:447.300000pt;}
.x3a{left:456.633333pt;}
.x32{left:459.600000pt;}
.x3b{left:468.933333pt;}
.x14{left:488.406667pt;}
.x15{left:497.226667pt;}
.x3f{left:503.606667pt;}
.x4a{left:523.073333pt;}
.x40{left:532.693333pt;}
.x4b{left:536.173333pt;}
.x2{left:546.560000pt;}
.x1b{left:567.326667pt;}
.x21{left:570.806667pt;}
.x1c{left:573.506667pt;}
.x3d{left:579.873333pt;}
.x22{left:585.266667pt;}
.x5d{left:591.633333pt;}
.x3e{left:593.266667pt;}
.x12{left:600.966667pt;}
.xb{left:602.033333pt;}
.x5e{left:603.933333pt;}
.x13{left:607.133333pt;}
.xc{left:608.466667pt;}
.x36{left:619.366667pt;}
.x37{left:631.666667pt;}
.x61{left:643.633333pt;}
.x23{left:647.366667pt;}
.x5b{left:654.033333pt;}
.x62{left:655.933333pt;}
.x5c{left:667.400000pt;}
.x24{left:669.533333pt;}
.x33{left:718.326667pt;}
.x25{left:719.926667pt;}
.x18{left:723.926667pt;}
.xd{left:731.140000pt;}
.x19{left:732.773333pt;}
.xe{left:737.293333pt;}
}




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