
    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_6a4568477d844c89a5be6816.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_987614c8a8c242821d4f9791.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_802becac34e19957bba65bbf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_2e29de3cfd7ca48364bfebcb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_5fd5dd85f4852e83ddc4d845.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_70a23bcecda7a5dd515ea22d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_7d9e83a305dc651c861dd66f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_17f61ec8eb2d3ef5436bbc35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_9633916233e658797e1b676e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3a437f467a3a6045bbf8b648.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_3a437f467a3a6045bbf8b648.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_15315738b74da012a252b616.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v2{vertical-align:-21.600000px;}
.v6{vertical-align:-18.000000px;}
.v4{vertical-align:-16.200000px;}
.v8{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.200000px;}
.v5{vertical-align:18.000000px;}
.v7{vertical-align:19.800000px;}
.v1{vertical-align:21.600000px;}
.ls4{letter-spacing:-18.021312px;}
.ls1e{letter-spacing:-8.514000px;}
.ls19{letter-spacing:-7.326000px;}
.ls3{letter-spacing:-6.757992px;}
.ls1a{letter-spacing:-2.220000px;}
.ls18{letter-spacing:-1.998000px;}
.ls8{letter-spacing:-1.080000px;}
.ls12{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.726000px;}
.ls13{letter-spacing:-0.660000px;}
.ls1b{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.528000px;}
.ls9{letter-spacing:-0.462000px;}
.ls7{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.264000px;}
.ls14{letter-spacing:-0.198000px;}
.lsc{letter-spacing:-0.184800px;}
.lse{letter-spacing:-0.132000px;}
.ls11{letter-spacing:-0.066000px;}
.ls5{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.007800px;}
.ls1{letter-spacing:1.386000px;}
.ls1d{letter-spacing:2.988000px;}
.ls17{letter-spacing:262.107600px;}
.ls16{letter-spacing:390.510000px;}
.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:-66.000000px;}
.ws9a{word-spacing:-65.934000px;}
.ws8f{word-spacing:-65.868000px;}
.ws4b{word-spacing:-65.802000px;}
.ws98{word-spacing:-65.340000px;}
.ws1b{word-spacing:-65.142000px;}
.ws60{word-spacing:-54.000000px;}
.ws67{word-spacing:-48.000000px;}
.ws0{word-spacing:-44.892402px;}
.ws1{word-spacing:-28.158300px;}
.ws8d{word-spacing:-21.000000px;}
.ws2{word-spacing:-16.894980px;}
.ws1c{word-spacing:-16.500000px;}
.ws99{word-spacing:-16.434000px;}
.ws4{word-spacing:-15.012000px;}
.ws5{word-spacing:-15.000000px;}
.ws19{word-spacing:-13.932000px;}
.ws65{word-spacing:-13.500000px;}
.ws3b{word-spacing:-11.550000px;}
.ws1a{word-spacing:-11.365200px;}
.ws5f{word-spacing:-9.450000px;}
.ws8e{word-spacing:-9.174000px;}
.ws66{word-spacing:-8.400000px;}
.wsa3{word-spacing:-7.986000px;}
.ws97{word-spacing:-3.366000px;}
.ws23{word-spacing:-3.300000px;}
.ws28{word-spacing:-3.234000px;}
.ws4d{word-spacing:-3.102000px;}
.ws51{word-spacing:-3.036000px;}
.wsc{word-spacing:-3.000000px;}
.ws1f{word-spacing:-2.970000px;}
.ws36{word-spacing:-2.838000px;}
.ws43{word-spacing:-2.772000px;}
.ws4a{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.310000px;}
.ws2d{word-spacing:-2.244000px;}
.ws47{word-spacing:-2.178000px;}
.ws18{word-spacing:-2.160000px;}
.ws6f{word-spacing:-2.112000px;}
.ws1e{word-spacing:-1.980000px;}
.ws8c{word-spacing:-1.848000px;}
.ws88{word-spacing:-1.716000px;}
.ws2a{word-spacing:-1.584000px;}
.ws6a{word-spacing:-1.566000px;}
.ws86{word-spacing:-1.518000px;}
.ws53{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.296000px;}
.ws24{word-spacing:-1.254000px;}
.wse{word-spacing:-1.200000px;}
.ws75{word-spacing:-1.188000px;}
.ws59{word-spacing:-1.122000px;}
.ws52{word-spacing:-1.056000px;}
.ws85{word-spacing:-0.990000px;}
.ws30{word-spacing:-0.924000px;}
.ws6c{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.858000px;}
.ws27{word-spacing:-0.792000px;}
.ws2c{word-spacing:-0.726000px;}
.ws56{word-spacing:-0.660000px;}
.ws15{word-spacing:-0.600000px;}
.ws71{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.528000px;}
.ws55{word-spacing:-0.462000px;}
.ws77{word-spacing:-0.396000px;}
.ws2f{word-spacing:-0.330000px;}
.ws48{word-spacing:-0.264000px;}
.ws95{word-spacing:-0.198000px;}
.ws29{word-spacing:-0.132000px;}
.ws68{word-spacing:-0.066000px;}
.ws7{word-spacing:0.000000px;}
.ws49{word-spacing:0.066000px;}
.ws31{word-spacing:0.132000px;}
.ws7e{word-spacing:0.162000px;}
.wsb{word-spacing:0.180000px;}
.ws9d{word-spacing:0.198000px;}
.ws39{word-spacing:0.264000px;}
.ws5d{word-spacing:0.330000px;}
.ws6e{word-spacing:0.396000px;}
.ws73{word-spacing:0.462000px;}
.ws69{word-spacing:0.528000px;}
.ws32{word-spacing:0.594000px;}
.ws35{word-spacing:0.660000px;}
.ws7b{word-spacing:0.792000px;}
.ws16{word-spacing:0.840000px;}
.ws40{word-spacing:0.858000px;}
.ws82{word-spacing:0.924000px;}
.ws79{word-spacing:0.990000px;}
.ws37{word-spacing:1.056000px;}
.ws5c{word-spacing:1.122000px;}
.ws7c{word-spacing:1.188000px;}
.ws26{word-spacing:1.254000px;}
.ws44{word-spacing:1.320000px;}
.ws6d{word-spacing:1.350000px;}
.ws17{word-spacing:1.380000px;}
.ws7f{word-spacing:1.386000px;}
.ws4c{word-spacing:1.584000px;}
.ws20{word-spacing:1.650000px;}
.ws80{word-spacing:1.716000px;}
.ws57{word-spacing:1.782000px;}
.wsd{word-spacing:1.800000px;}
.ws7a{word-spacing:1.848000px;}
.ws38{word-spacing:1.914000px;}
.wsf{word-spacing:1.980000px;}
.ws7d{word-spacing:2.046000px;}
.ws50{word-spacing:2.112000px;}
.ws9b{word-spacing:2.220000px;}
.wsa5{word-spacing:2.244000px;}
.ws6b{word-spacing:2.268000px;}
.ws9c{word-spacing:2.310000px;}
.ws45{word-spacing:2.376000px;}
.ws22{word-spacing:2.442000px;}
.ws84{word-spacing:2.508000px;}
.ws83{word-spacing:2.574000px;}
.ws74{word-spacing:2.592000px;}
.wsa2{word-spacing:2.640000px;}
.ws3d{word-spacing:2.706000px;}
.ws4f{word-spacing:2.772000px;}
.ws87{word-spacing:2.838000px;}
.ws94{word-spacing:2.970000px;}
.ws12{word-spacing:3.000000px;}
.ws72{word-spacing:3.036000px;}
.ws46{word-spacing:3.102000px;}
.ws21{word-spacing:3.168000px;}
.ws9f{word-spacing:3.234000px;}
.ws93{word-spacing:3.300000px;}
.ws2e{word-spacing:3.366000px;}
.ws81{word-spacing:3.696000px;}
.ws3c{word-spacing:3.762000px;}
.ws9e{word-spacing:3.828000px;}
.ws42{word-spacing:3.894000px;}
.ws10{word-spacing:3.900000px;}
.ws91{word-spacing:3.960000px;}
.ws33{word-spacing:4.026000px;}
.ws78{word-spacing:4.092000px;}
.wsa1{word-spacing:4.158000px;}
.ws41{word-spacing:4.224000px;}
.ws34{word-spacing:4.290000px;}
.ws5e{word-spacing:4.356000px;}
.ws13{word-spacing:4.440000px;}
.ws90{word-spacing:4.488000px;}
.ws25{word-spacing:4.752000px;}
.ws89{word-spacing:4.950000px;}
.ws14{word-spacing:4.980000px;}
.ws92{word-spacing:5.016000px;}
.ws70{word-spacing:5.280000px;}
.ws58{word-spacing:5.412000px;}
.ws2b{word-spacing:5.874000px;}
.ws6{word-spacing:6.047400px;}
.ws5b{word-spacing:6.138000px;}
.ws96{word-spacing:6.468000px;}
.ws4e{word-spacing:6.732000px;}
.ws8{word-spacing:6.757992px;}
.ws11{word-spacing:7.080000px;}
.ws5a{word-spacing:7.458000px;}
.ws8b{word-spacing:7.656000px;}
.wsa4{word-spacing:7.986000px;}
.ws8a{word-spacing:9.174000px;}
.ws3f{word-spacing:11.088000px;}
.wsa6{word-spacing:12.012000px;}
.wsa0{word-spacing:12.276000px;}
.ws1d{word-spacing:56.028000px;}
.ws63{word-spacing:110.534400px;}
.ws64{word-spacing:127.070400px;}
.ws76{word-spacing:280.204800px;}
.ws61{word-spacing:638.591400px;}
.ws62{word-spacing:668.561400px;}
._5{margin-left:-10.332000px;}
._0{margin-left:-8.688725px;}
._3{margin-left:-6.746812px;}
._1{margin-left:-4.505328px;}
._7{margin-left:-3.300000px;}
._4{margin-left:-1.998000px;}
._6{width:1.116000px;}
._9{width:2.454000px;}
._a{width:3.564000px;}
._37{width:5.412000px;}
._4d{width:6.468000px;}
._4c{width:7.743600px;}
._4e{width:8.823600px;}
._2{width:11.263320px;}
._8{width:56.028000px;}
._2b{width:79.367400px;}
._e{width:94.800600px;}
._f{width:106.185000px;}
._c{width:117.366600px;}
._d{width:119.556600px;}
._12{width:122.340600px;}
._11{width:124.034400px;}
._1c{width:125.036400px;}
._13{width:127.866600px;}
._20{width:129.472800px;}
._14{width:134.582400px;}
._17{width:135.840600px;}
._22{width:137.534400px;}
._2d{width:138.536400px;}
._35{width:139.801800px;}
._18{width:141.366600px;}
._23{width:149.340600px;}
._32{width:153.301800px;}
._2a{width:154.866600px;}
._1d{width:156.559800px;}
._30{width:166.801800px;}
._27{width:176.891400px;}
._38{width:272.935603px;}
._42{width:280.204800px;}
._39{width:290.920800px;}
._3f{width:293.704800px;}
._3a{width:303.576600px;}
._44{width:307.204800px;}
._43{width:308.206800px;}
._4b{width:309.644328px;}
._47{width:314.339928px;}
._3d{width:318.977400px;}
._3c{width:320.704800px;}
._49{width:322.972200px;}
._40{width:334.204200px;}
._46{width:411.863928px;}
._21{width:495.761400px;}
._48{width:497.214600px;}
._2e{width:518.819400px;}
._25{width:524.986200px;}
._28{width:533.453400px;}
._24{width:539.771400px;}
._36{width:611.290728px;}
._2f{width:612.833400px;}
._2c{width:633.731400px;}
._4a{width:657.246600px;}
._1b{width:714.677400px;}
._3b{width:737.298600px;}
._19{width:739.406212px;}
._26{width:741.329400px;}
._16{width:753.665400px;}
._1a{width:759.330125px;}
._41{width:767.214600px;}
._15{width:771.647400px;}
._3e{width:780.714600px;}
._45{width:782.712600px;}
._1e{width:790.436212px;}
._31{width:804.641400px;}
._1f{width:810.360125px;}
._34{width:827.159400px;}
._33{width:933.701400px;}
._29{width:968.153400px;}
._10{width:1031.225400px;}
._b{width:1066.156128px;}
.fc5{color:rgb(183,82,47);}
.fc4{color:rgb(0,112,192);}
.fc2{color:rgb(198,45,45);}
.fc1{color:rgb(145,143,143);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:33.600000px;}
.fs8{font-size:37.800000px;}
.fs9{font-size:42.000000px;}
.fsb{font-size:46.200000px;}
.fsc{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:112.633200px;}
.fs1{font-size:144.814200px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y89{bottom:122.371350px;}
.y5c{bottom:128.314950px;}
.y88{bottom:139.621350px;}
.y5b{bottom:149.314950px;}
.y87{bottom:156.871350px;}
.y5a{bottom:170.314950px;}
.y86{bottom:171.606300px;}
.y59{bottom:191.314950px;}
.y2c{bottom:196.045200px;}
.y58{bottom:212.314950px;}
.y2b{bottom:214.045200px;}
.y2a{bottom:232.045200px;}
.y57{bottom:233.314950px;}
.y29{bottom:250.045050px;}
.y56{bottom:254.314950px;}
.y28{bottom:268.045050px;}
.y55{bottom:275.314950px;}
.y27{bottom:286.045050px;}
.y54{bottom:296.314950px;}
.y85{bottom:297.945000px;}
.y26{bottom:304.045050px;}
.y84{bottom:311.445000px;}
.y53{bottom:317.314950px;}
.y83{bottom:324.945000px;}
.y52{bottom:338.314950px;}
.y82{bottom:338.445000px;}
.y25{bottom:340.045050px;}
.y81{bottom:351.945000px;}
.y24{bottom:358.045050px;}
.y51{bottom:359.314950px;}
.y80{bottom:361.845000px;}
.y23{bottom:376.045050px;}
.y7f{bottom:378.945000px;}
.y50{bottom:380.314950px;}
.y22{bottom:394.045050px;}
.y4f{bottom:401.314950px;}
.y7e{bottom:405.484950px;}
.y21{bottom:412.045050px;}
.y4e{bottom:422.314950px;}
.y7d{bottom:427.756200px;}
.y20{bottom:430.045050px;}
.y4d{bottom:443.314950px;}
.y1f{bottom:448.045050px;}
.y7c{bottom:450.027600px;}
.y4c{bottom:464.314950px;}
.y1e{bottom:466.045050px;}
.y7b{bottom:472.298850px;}
.y1d{bottom:484.045050px;}
.y4b{bottom:485.314950px;}
.y7a{bottom:494.570250px;}
.y1c{bottom:502.045050px;}
.y4a{bottom:506.314950px;}
.y79{bottom:516.841500px;}
.y1b{bottom:520.045050px;}
.y49{bottom:527.314950px;}
.y1a{bottom:538.045050px;}
.y78{bottom:539.112900px;}
.y48{bottom:548.314950px;}
.y19{bottom:556.045050px;}
.y77{bottom:561.384150px;}
.ya3{bottom:565.043400px;}
.y47{bottom:569.314950px;}
.y18{bottom:574.045050px;}
.y76{bottom:583.655550px;}
.ya2{bottom:590.167200px;}
.y46{bottom:590.314950px;}
.y17{bottom:592.045050px;}
.y75{bottom:605.926800px;}
.y16{bottom:610.045050px;}
.y45{bottom:611.314950px;}
.ya1{bottom:611.427000px;}
.y15{bottom:628.045050px;}
.y74{bottom:628.198200px;}
.y44{bottom:632.314950px;}
.ya0{bottom:632.686950px;}
.y73{bottom:650.469450px;}
.y43{bottom:653.314950px;}
.y9f{bottom:653.946750px;}
.y14{bottom:667.305000px;}
.y72{bottom:672.740850px;}
.y42{bottom:674.314950px;}
.y9e{bottom:675.206550px;}
.y13{bottom:685.305000px;}
.y71{bottom:695.012100px;}
.y41{bottom:695.314950px;}
.y12{bottom:703.305000px;}
.y9d{bottom:704.970300px;}
.y40{bottom:716.314950px;}
.y70{bottom:717.283500px;}
.y11{bottom:721.305000px;}
.y9c{bottom:726.230250px;}
.y3f{bottom:737.314950px;}
.y10{bottom:739.305000px;}
.y6f{bottom:739.554750px;}
.y9b{bottom:747.490050px;}
.y3e{bottom:758.314950px;}
.y6e{bottom:761.826000px;}
.y9a{bottom:768.749850px;}
.yf{bottom:778.564800px;}
.y3d{bottom:779.314950px;}
.y6d{bottom:784.097400px;}
.y99{bottom:790.009800px;}
.ye{bottom:796.564800px;}
.y3c{bottom:800.314950px;}
.y6c{bottom:806.368800px;}
.y98{bottom:811.269600px;}
.yd{bottom:814.564800px;}
.y3b{bottom:821.314950px;}
.y6b{bottom:828.640050px;}
.y97{bottom:832.529400px;}
.y3a{bottom:842.314950px;}
.y6a{bottom:850.911300px;}
.y96{bottom:853.789350px;}
.y39{bottom:863.314950px;}
.y69{bottom:873.182700px;}
.y95{bottom:875.049150px;}
.y38{bottom:884.314950px;}
.yc{bottom:892.092450px;}
.y68{bottom:895.454100px;}
.y94{bottom:896.308950px;}
.y37{bottom:905.314950px;}
.y93{bottom:917.568750px;}
.y67{bottom:917.725350px;}
.yb{bottom:922.092450px;}
.y36{bottom:926.314950px;}
.y92{bottom:938.828550px;}
.y66{bottom:939.996600px;}
.y35{bottom:947.314950px;}
.y91{bottom:960.088500px;}
.y65{bottom:962.268000px;}
.y34{bottom:968.314950px;}
.y90{bottom:981.348300px;}
.y64{bottom:984.539400px;}
.y33{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.ya{bottom:1000.012050px;}
.y8f{bottom:1002.608250px;}
.y63{bottom:1006.810650px;}
.y32{bottom:1010.314950px;}
.y8e{bottom:1023.868050px;}
.y62{bottom:1029.081900px;}
.y31{bottom:1031.314950px;}
.y8d{bottom:1045.127850px;}
.y30{bottom:1052.314950px;}
.y61{bottom:1056.847650px;}
.y8c{bottom:1071.679650px;}
.y2f{bottom:1073.314950px;}
.y8{bottom:1080.719100px;}
.y60{bottom:1086.171150px;}
.y5d{bottom:1094.314950px;}
.y8b{bottom:1098.413250px;}
.y7{bottom:1098.719100px;}
.y5f{bottom:1103.421150px;}
.y2e{bottom:1115.314950px;}
.y8a{bottom:1115.663250px;}
.y6{bottom:1116.719100px;}
.y5e{bottom:1120.671150px;}
.y5{bottom:1134.719100px;}
.y2{bottom:1143.169950px;}
.y4{bottom:1164.223050px;}
.y3{bottom:1182.223050px;}
.y2d{bottom:1189.226850px;}
.h15{height:23.346094px;}
.h17{height:25.631250px;}
.h14{height:33.351562px;}
.h7{height:36.717188px;}
.h12{height:37.520508px;}
.ha{height:39.313477px;}
.h4{height:39.339844px;}
.h16{height:40.031250px;}
.h2{height:41.689453px;}
.h11{height:42.464355px;}
.h9{height:43.719434px;}
.h13{height:45.035156px;}
.h18{height:45.826172px;}
.he{height:45.858398px;}
.hc{height:47.182617px;}
.h10{height:48.796875px;}
.hb{height:50.039062px;}
.hf{height:51.900879px;}
.h5{height:55.042969px;}
.h19{height:56.888672px;}
.hd{height:56.929688px;}
.h6{height:58.317188px;}
.h8{height:73.195312px;}
.h3{height:112.810262px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:128.209500px;}
.x13{left:157.322850px;}
.xf{left:170.078700px;}
.xc{left:191.338650px;}
.xd{left:199.842450px;}
.xe{left:216.850350px;}
.x9{left:360.146550px;}
.x12{left:438.956700px;}
.x1{left:442.706700px;}
.xa{left:471.471450px;}
.x6{left:486.549000px;}
.x3{left:514.320300px;}
.x7{left:533.113500px;}
.x8{left:549.612750px;}
.x4{left:615.636150px;}
.x5{left:628.649850px;}
.xb{left:688.871550px;}
.x10{left:695.344500px;}
.x11{left:712.594500px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v6{vertical-align:-16.000000pt;}
.v4{vertical-align:-14.400000pt;}
.v8{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.400000pt;}
.v5{vertical-align:16.000000pt;}
.v7{vertical-align:17.600000pt;}
.v1{vertical-align:19.200000pt;}
.ls4{letter-spacing:-16.018944pt;}
.ls1e{letter-spacing:-7.568000pt;}
.ls19{letter-spacing:-6.512000pt;}
.ls3{letter-spacing:-6.007104pt;}
.ls1a{letter-spacing:-1.973333pt;}
.ls18{letter-spacing:-1.776000pt;}
.ls8{letter-spacing:-0.960000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.645333pt;}
.ls13{letter-spacing:-0.586667pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.469333pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls7{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls14{letter-spacing:-0.176000pt;}
.lsc{letter-spacing:-0.164267pt;}
.lse{letter-spacing:-0.117333pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.006933pt;}
.ls1{letter-spacing:1.232000pt;}
.ls1d{letter-spacing:2.656000pt;}
.ls17{letter-spacing:232.984533pt;}
.ls16{letter-spacing:347.120000pt;}
.ws3{word-spacing:-58.666667pt;}
.ws9a{word-spacing:-58.608000pt;}
.ws8f{word-spacing:-58.549333pt;}
.ws4b{word-spacing:-58.490667pt;}
.ws98{word-spacing:-58.080000pt;}
.ws1b{word-spacing:-57.904000pt;}
.ws60{word-spacing:-48.000000pt;}
.ws67{word-spacing:-42.666667pt;}
.ws0{word-spacing:-39.904357pt;}
.ws1{word-spacing:-25.029600pt;}
.ws8d{word-spacing:-18.666667pt;}
.ws2{word-spacing:-15.017760pt;}
.ws1c{word-spacing:-14.666667pt;}
.ws99{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws5{word-spacing:-13.333333pt;}
.ws19{word-spacing:-12.384000pt;}
.ws65{word-spacing:-12.000000pt;}
.ws3b{word-spacing:-10.266667pt;}
.ws1a{word-spacing:-10.102400pt;}
.ws5f{word-spacing:-8.400000pt;}
.ws8e{word-spacing:-8.154667pt;}
.ws66{word-spacing:-7.466667pt;}
.wsa3{word-spacing:-7.098667pt;}
.ws97{word-spacing:-2.992000pt;}
.ws23{word-spacing:-2.933333pt;}
.ws28{word-spacing:-2.874667pt;}
.ws4d{word-spacing:-2.757333pt;}
.ws51{word-spacing:-2.698667pt;}
.wsc{word-spacing:-2.666667pt;}
.ws1f{word-spacing:-2.640000pt;}
.ws36{word-spacing:-2.522667pt;}
.ws43{word-spacing:-2.464000pt;}
.ws4a{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.053333pt;}
.ws2d{word-spacing:-1.994667pt;}
.ws47{word-spacing:-1.936000pt;}
.ws18{word-spacing:-1.920000pt;}
.ws6f{word-spacing:-1.877333pt;}
.ws1e{word-spacing:-1.760000pt;}
.ws8c{word-spacing:-1.642667pt;}
.ws88{word-spacing:-1.525333pt;}
.ws2a{word-spacing:-1.408000pt;}
.ws6a{word-spacing:-1.392000pt;}
.ws86{word-spacing:-1.349333pt;}
.ws53{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.152000pt;}
.ws24{word-spacing:-1.114667pt;}
.wse{word-spacing:-1.066667pt;}
.ws75{word-spacing:-1.056000pt;}
.ws59{word-spacing:-0.997333pt;}
.ws52{word-spacing:-0.938667pt;}
.ws85{word-spacing:-0.880000pt;}
.ws30{word-spacing:-0.821333pt;}
.ws6c{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.762667pt;}
.ws27{word-spacing:-0.704000pt;}
.ws2c{word-spacing:-0.645333pt;}
.ws56{word-spacing:-0.586667pt;}
.ws15{word-spacing:-0.533333pt;}
.ws71{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.469333pt;}
.ws55{word-spacing:-0.410667pt;}
.ws77{word-spacing:-0.352000pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws48{word-spacing:-0.234667pt;}
.ws95{word-spacing:-0.176000pt;}
.ws29{word-spacing:-0.117333pt;}
.ws68{word-spacing:-0.058667pt;}
.ws7{word-spacing:0.000000pt;}
.ws49{word-spacing:0.058667pt;}
.ws31{word-spacing:0.117333pt;}
.ws7e{word-spacing:0.144000pt;}
.wsb{word-spacing:0.160000pt;}
.ws9d{word-spacing:0.176000pt;}
.ws39{word-spacing:0.234667pt;}
.ws5d{word-spacing:0.293333pt;}
.ws6e{word-spacing:0.352000pt;}
.ws73{word-spacing:0.410667pt;}
.ws69{word-spacing:0.469333pt;}
.ws32{word-spacing:0.528000pt;}
.ws35{word-spacing:0.586667pt;}
.ws7b{word-spacing:0.704000pt;}
.ws16{word-spacing:0.746667pt;}
.ws40{word-spacing:0.762667pt;}
.ws82{word-spacing:0.821333pt;}
.ws79{word-spacing:0.880000pt;}
.ws37{word-spacing:0.938667pt;}
.ws5c{word-spacing:0.997333pt;}
.ws7c{word-spacing:1.056000pt;}
.ws26{word-spacing:1.114667pt;}
.ws44{word-spacing:1.173333pt;}
.ws6d{word-spacing:1.200000pt;}
.ws17{word-spacing:1.226667pt;}
.ws7f{word-spacing:1.232000pt;}
.ws4c{word-spacing:1.408000pt;}
.ws20{word-spacing:1.466667pt;}
.ws80{word-spacing:1.525333pt;}
.ws57{word-spacing:1.584000pt;}
.wsd{word-spacing:1.600000pt;}
.ws7a{word-spacing:1.642667pt;}
.ws38{word-spacing:1.701333pt;}
.wsf{word-spacing:1.760000pt;}
.ws7d{word-spacing:1.818667pt;}
.ws50{word-spacing:1.877333pt;}
.ws9b{word-spacing:1.973333pt;}
.wsa5{word-spacing:1.994667pt;}
.ws6b{word-spacing:2.016000pt;}
.ws9c{word-spacing:2.053333pt;}
.ws45{word-spacing:2.112000pt;}
.ws22{word-spacing:2.170667pt;}
.ws84{word-spacing:2.229333pt;}
.ws83{word-spacing:2.288000pt;}
.ws74{word-spacing:2.304000pt;}
.wsa2{word-spacing:2.346667pt;}
.ws3d{word-spacing:2.405333pt;}
.ws4f{word-spacing:2.464000pt;}
.ws87{word-spacing:2.522667pt;}
.ws94{word-spacing:2.640000pt;}
.ws12{word-spacing:2.666667pt;}
.ws72{word-spacing:2.698667pt;}
.ws46{word-spacing:2.757333pt;}
.ws21{word-spacing:2.816000pt;}
.ws9f{word-spacing:2.874667pt;}
.ws93{word-spacing:2.933333pt;}
.ws2e{word-spacing:2.992000pt;}
.ws81{word-spacing:3.285333pt;}
.ws3c{word-spacing:3.344000pt;}
.ws9e{word-spacing:3.402667pt;}
.ws42{word-spacing:3.461333pt;}
.ws10{word-spacing:3.466667pt;}
.ws91{word-spacing:3.520000pt;}
.ws33{word-spacing:3.578667pt;}
.ws78{word-spacing:3.637333pt;}
.wsa1{word-spacing:3.696000pt;}
.ws41{word-spacing:3.754667pt;}
.ws34{word-spacing:3.813333pt;}
.ws5e{word-spacing:3.872000pt;}
.ws13{word-spacing:3.946667pt;}
.ws90{word-spacing:3.989333pt;}
.ws25{word-spacing:4.224000pt;}
.ws89{word-spacing:4.400000pt;}
.ws14{word-spacing:4.426667pt;}
.ws92{word-spacing:4.458667pt;}
.ws70{word-spacing:4.693333pt;}
.ws58{word-spacing:4.810667pt;}
.ws2b{word-spacing:5.221333pt;}
.ws6{word-spacing:5.375467pt;}
.ws5b{word-spacing:5.456000pt;}
.ws96{word-spacing:5.749333pt;}
.ws4e{word-spacing:5.984000pt;}
.ws8{word-spacing:6.007104pt;}
.ws11{word-spacing:6.293333pt;}
.ws5a{word-spacing:6.629333pt;}
.ws8b{word-spacing:6.805333pt;}
.wsa4{word-spacing:7.098667pt;}
.ws8a{word-spacing:8.154667pt;}
.ws3f{word-spacing:9.856000pt;}
.wsa6{word-spacing:10.677333pt;}
.wsa0{word-spacing:10.912000pt;}
.ws1d{word-spacing:49.802667pt;}
.ws63{word-spacing:98.252800pt;}
.ws64{word-spacing:112.951467pt;}
.ws76{word-spacing:249.070933pt;}
.ws61{word-spacing:567.636800pt;}
.ws62{word-spacing:594.276800pt;}
._5{margin-left:-9.184000pt;}
._0{margin-left:-7.723311pt;}
._3{margin-left:-5.997166pt;}
._1{margin-left:-4.004736pt;}
._7{margin-left:-2.933333pt;}
._4{margin-left:-1.776000pt;}
._6{width:0.992000pt;}
._9{width:2.181333pt;}
._a{width:3.168000pt;}
._37{width:4.810667pt;}
._4d{width:5.749333pt;}
._4c{width:6.883200pt;}
._4e{width:7.843200pt;}
._2{width:10.011840pt;}
._8{width:49.802667pt;}
._2b{width:70.548800pt;}
._e{width:84.267200pt;}
._f{width:94.386667pt;}
._c{width:104.325867pt;}
._d{width:106.272533pt;}
._12{width:108.747200pt;}
._11{width:110.252800pt;}
._1c{width:111.143467pt;}
._13{width:113.659200pt;}
._20{width:115.086933pt;}
._14{width:119.628800pt;}
._17{width:120.747200pt;}
._22{width:122.252800pt;}
._2d{width:123.143467pt;}
._35{width:124.268267pt;}
._18{width:125.659200pt;}
._23{width:132.747200pt;}
._32{width:136.268267pt;}
._2a{width:137.659200pt;}
._1d{width:139.164267pt;}
._30{width:148.268267pt;}
._27{width:157.236800pt;}
._38{width:242.609425pt;}
._42{width:249.070933pt;}
._39{width:258.596267pt;}
._3f{width:261.070933pt;}
._3a{width:269.845867pt;}
._44{width:273.070933pt;}
._43{width:273.961600pt;}
._4b{width:275.239403pt;}
._47{width:279.413269pt;}
._3d{width:283.535467pt;}
._3c{width:285.070933pt;}
._49{width:287.086400pt;}
._40{width:297.070400pt;}
._46{width:366.101269pt;}
._21{width:440.676800pt;}
._48{width:441.968533pt;}
._2e{width:461.172800pt;}
._25{width:466.654400pt;}
._28{width:474.180800pt;}
._24{width:479.796800pt;}
._36{width:543.369536pt;}
._2f{width:544.740800pt;}
._2c{width:563.316800pt;}
._4a{width:584.219200pt;}
._1b{width:635.268800pt;}
._3b{width:655.376533pt;}
._19{width:657.249966pt;}
._26{width:658.959467pt;}
._16{width:669.924800pt;}
._1a{width:674.960111pt;}
._41{width:681.968533pt;}
._15{width:685.908800pt;}
._3e{width:693.968533pt;}
._45{width:695.744533pt;}
._1e{width:702.609966pt;}
._31{width:715.236800pt;}
._1f{width:720.320111pt;}
._34{width:735.252800pt;}
._33{width:829.956800pt;}
._29{width:860.580800pt;}
._10{width:916.644800pt;}
._b{width:947.694336pt;}
.fsd{font-size:29.866667pt;}
.fs8{font-size:33.600000pt;}
.fs9{font-size:37.333333pt;}
.fsb{font-size:41.066667pt;}
.fsc{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:100.118400pt;}
.fs1{font-size:128.723733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y89{bottom:108.774533pt;}
.y5c{bottom:114.057733pt;}
.y88{bottom:124.107867pt;}
.y5b{bottom:132.724400pt;}
.y87{bottom:139.441200pt;}
.y5a{bottom:151.391067pt;}
.y86{bottom:152.538933pt;}
.y59{bottom:170.057733pt;}
.y2c{bottom:174.262400pt;}
.y58{bottom:188.724400pt;}
.y2b{bottom:190.262400pt;}
.y2a{bottom:206.262400pt;}
.y57{bottom:207.391067pt;}
.y29{bottom:222.262267pt;}
.y56{bottom:226.057733pt;}
.y28{bottom:238.262267pt;}
.y55{bottom:244.724400pt;}
.y27{bottom:254.262267pt;}
.y54{bottom:263.391067pt;}
.y85{bottom:264.840000pt;}
.y26{bottom:270.262267pt;}
.y84{bottom:276.840000pt;}
.y53{bottom:282.057733pt;}
.y83{bottom:288.840000pt;}
.y52{bottom:300.724400pt;}
.y82{bottom:300.840000pt;}
.y25{bottom:302.262267pt;}
.y81{bottom:312.840000pt;}
.y24{bottom:318.262267pt;}
.y51{bottom:319.391067pt;}
.y80{bottom:321.640000pt;}
.y23{bottom:334.262267pt;}
.y7f{bottom:336.840000pt;}
.y50{bottom:338.057733pt;}
.y22{bottom:350.262267pt;}
.y4f{bottom:356.724400pt;}
.y7e{bottom:360.431067pt;}
.y21{bottom:366.262267pt;}
.y4e{bottom:375.391067pt;}
.y7d{bottom:380.227733pt;}
.y20{bottom:382.262267pt;}
.y4d{bottom:394.057733pt;}
.y1f{bottom:398.262267pt;}
.y7c{bottom:400.024533pt;}
.y4c{bottom:412.724400pt;}
.y1e{bottom:414.262267pt;}
.y7b{bottom:419.821200pt;}
.y1d{bottom:430.262267pt;}
.y4b{bottom:431.391067pt;}
.y7a{bottom:439.618000pt;}
.y1c{bottom:446.262267pt;}
.y4a{bottom:450.057733pt;}
.y79{bottom:459.414667pt;}
.y1b{bottom:462.262267pt;}
.y49{bottom:468.724400pt;}
.y1a{bottom:478.262267pt;}
.y78{bottom:479.211467pt;}
.y48{bottom:487.391067pt;}
.y19{bottom:494.262267pt;}
.y77{bottom:499.008133pt;}
.ya3{bottom:502.260800pt;}
.y47{bottom:506.057733pt;}
.y18{bottom:510.262267pt;}
.y76{bottom:518.804933pt;}
.ya2{bottom:524.593067pt;}
.y46{bottom:524.724400pt;}
.y17{bottom:526.262267pt;}
.y75{bottom:538.601600pt;}
.y16{bottom:542.262267pt;}
.y45{bottom:543.391067pt;}
.ya1{bottom:543.490667pt;}
.y15{bottom:558.262267pt;}
.y74{bottom:558.398400pt;}
.y44{bottom:562.057733pt;}
.ya0{bottom:562.388400pt;}
.y73{bottom:578.195067pt;}
.y43{bottom:580.724400pt;}
.y9f{bottom:581.286000pt;}
.y14{bottom:593.160000pt;}
.y72{bottom:597.991867pt;}
.y42{bottom:599.391067pt;}
.y9e{bottom:600.183600pt;}
.y13{bottom:609.160000pt;}
.y71{bottom:617.788533pt;}
.y41{bottom:618.057733pt;}
.y12{bottom:625.160000pt;}
.y9d{bottom:626.640267pt;}
.y40{bottom:636.724400pt;}
.y70{bottom:637.585333pt;}
.y11{bottom:641.160000pt;}
.y9c{bottom:645.538000pt;}
.y3f{bottom:655.391067pt;}
.y10{bottom:657.160000pt;}
.y6f{bottom:657.382000pt;}
.y9b{bottom:664.435600pt;}
.y3e{bottom:674.057733pt;}
.y6e{bottom:677.178667pt;}
.y9a{bottom:683.333200pt;}
.yf{bottom:692.057600pt;}
.y3d{bottom:692.724400pt;}
.y6d{bottom:696.975467pt;}
.y99{bottom:702.230933pt;}
.ye{bottom:708.057600pt;}
.y3c{bottom:711.391067pt;}
.y6c{bottom:716.772267pt;}
.y98{bottom:721.128533pt;}
.yd{bottom:724.057600pt;}
.y3b{bottom:730.057733pt;}
.y6b{bottom:736.568933pt;}
.y97{bottom:740.026133pt;}
.y3a{bottom:748.724400pt;}
.y6a{bottom:756.365600pt;}
.y96{bottom:758.923867pt;}
.y39{bottom:767.391067pt;}
.y69{bottom:776.162400pt;}
.y95{bottom:777.821467pt;}
.y38{bottom:786.057733pt;}
.yc{bottom:792.971067pt;}
.y68{bottom:795.959200pt;}
.y94{bottom:796.719067pt;}
.y37{bottom:804.724400pt;}
.y93{bottom:815.616667pt;}
.y67{bottom:815.755867pt;}
.yb{bottom:819.637733pt;}
.y36{bottom:823.391067pt;}
.y92{bottom:834.514267pt;}
.y66{bottom:835.552533pt;}
.y35{bottom:842.057733pt;}
.y91{bottom:853.412000pt;}
.y65{bottom:855.349333pt;}
.y34{bottom:860.724400pt;}
.y90{bottom:872.309600pt;}
.y64{bottom:875.146133pt;}
.y33{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.ya{bottom:888.899600pt;}
.y8f{bottom:891.207333pt;}
.y63{bottom:894.942800pt;}
.y32{bottom:898.057733pt;}
.y8e{bottom:910.104933pt;}
.y62{bottom:914.739467pt;}
.y31{bottom:916.724400pt;}
.y8d{bottom:929.002533pt;}
.y30{bottom:935.391067pt;}
.y61{bottom:939.420133pt;}
.y8c{bottom:952.604133pt;}
.y2f{bottom:954.057733pt;}
.y8{bottom:960.639200pt;}
.y60{bottom:965.485467pt;}
.y5d{bottom:972.724400pt;}
.y8b{bottom:976.367333pt;}
.y7{bottom:976.639200pt;}
.y5f{bottom:980.818800pt;}
.y2e{bottom:991.391067pt;}
.y8a{bottom:991.700667pt;}
.y6{bottom:992.639200pt;}
.y5e{bottom:996.152133pt;}
.y5{bottom:1008.639200pt;}
.y2{bottom:1016.151067pt;}
.y4{bottom:1034.864933pt;}
.y3{bottom:1050.864933pt;}
.y2d{bottom:1057.090533pt;}
.h15{height:20.752083pt;}
.h17{height:22.783333pt;}
.h14{height:29.645833pt;}
.h7{height:32.637500pt;}
.h12{height:33.351562pt;}
.ha{height:34.945312pt;}
.h4{height:34.968750pt;}
.h16{height:35.583333pt;}
.h2{height:37.057292pt;}
.h11{height:37.746094pt;}
.h9{height:38.861719pt;}
.h13{height:40.031250pt;}
.h18{height:40.734375pt;}
.he{height:40.763021pt;}
.hc{height:41.940104pt;}
.h10{height:43.375000pt;}
.hb{height:44.479167pt;}
.hf{height:46.134115pt;}
.h5{height:48.927083pt;}
.h19{height:50.567708pt;}
.hd{height:50.604167pt;}
.h6{height:51.837500pt;}
.h8{height:65.062500pt;}
.h3{height:100.275788pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.964000pt;}
.x13{left:139.842533pt;}
.xf{left:151.181067pt;}
.xc{left:170.078800pt;}
.xd{left:177.637733pt;}
.xe{left:192.755867pt;}
.x9{left:320.130267pt;}
.x12{left:390.183733pt;}
.x1{left:393.517067pt;}
.xa{left:419.085733pt;}
.x6{left:432.488000pt;}
.x3{left:457.173600pt;}
.x7{left:473.878667pt;}
.x8{left:488.544667pt;}
.x4{left:547.232133pt;}
.x5{left:558.799867pt;}
.xb{left:612.330267pt;}
.x10{left:618.084000pt;}
.x11{left:633.417333pt;}
}




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