
    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_fb3fa34d57f1334159e1d134.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075195;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_ef7bdf9533b2a1fbf011800b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6b5e0301da27506683be8b3b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d55f63df3d8ba0f7666396c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9ddfddcbe20301541176f975.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_821c5ab981a147c83a265e70.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075195;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_10a8d990eaef611c0fafc0f6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89cfabbba0a7ab0cacb91ee6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fb3fa34d57f1334159e1d134.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075195;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_fb3fa34d57f1334159e1d134.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.075195;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;}
.v2{vertical-align:21.978000px;}
.v1{vertical-align:27.972000px;}
.v3{vertical-align:47.250000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.330000px;}
.ls2{letter-spacing:0.660000px;}
.ls3{letter-spacing:520.685400px;}
.ls5{letter-spacing:591.271800px;}
.ls4{letter-spacing:599.832600px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws47{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.000000px;}
.ws8e{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.243000px;}
.ws2{word-spacing:-9.619500px;}
.ws5{word-spacing:-4.620000px;}
.ws8c{word-spacing:-4.092000px;}
.ws68{word-spacing:-4.026000px;}
.ws1f{word-spacing:-3.300000px;}
.ws95{word-spacing:-3.168000px;}
.ws9b{word-spacing:-3.024000px;}
.ws8{word-spacing:-3.000000px;}
.ws3c{word-spacing:-2.904000px;}
.ws64{word-spacing:-2.574000px;}
.ws3e{word-spacing:-2.442000px;}
.wsd8{word-spacing:-2.322000px;}
.ws91{word-spacing:-2.112000px;}
.ws44{word-spacing:-2.046000px;}
.wsc3{word-spacing:-1.890000px;}
.ws18{word-spacing:-1.848000px;}
.wsaf{word-spacing:-1.674000px;}
.ws39{word-spacing:-1.584000px;}
.ws62{word-spacing:-1.518000px;}
.ws4{word-spacing:-1.512000px;}
.ws4e{word-spacing:-1.386000px;}
.wscf{word-spacing:-1.350000px;}
.ws8f{word-spacing:-1.320000px;}
.wse2{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.260000px;}
.wsb{word-spacing:-1.188000px;}
.ws99{word-spacing:-1.122000px;}
.ws9e{word-spacing:-1.026000px;}
.ws78{word-spacing:-0.924000px;}
.ws26{word-spacing:-0.726000px;}
.wsa1{word-spacing:-0.702000px;}
.ws2c{word-spacing:-0.660000px;}
.wsa0{word-spacing:-0.540000px;}
.ws4c{word-spacing:-0.462000px;}
.ws1a{word-spacing:-0.330000px;}
.ws97{word-spacing:-0.264000px;}
.ws6{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.ws9d{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsb8{word-spacing:0.162000px;}
.wsf{word-spacing:0.264000px;}
.ws15{word-spacing:0.330000px;}
.ws31{word-spacing:0.396000px;}
.ws8b{word-spacing:0.462000px;}
.ws57{word-spacing:0.528000px;}
.ws45{word-spacing:0.594000px;}
.ws67{word-spacing:0.660000px;}
.ws81{word-spacing:0.792000px;}
.ws16{word-spacing:0.924000px;}
.ws11{word-spacing:0.990000px;}
.ws36{word-spacing:1.056000px;}
.wscd{word-spacing:1.080000px;}
.ws3d{word-spacing:1.188000px;}
.ws75{word-spacing:1.320000px;}
.ws89{word-spacing:1.386000px;}
.ws69{word-spacing:1.452000px;}
.wsb5{word-spacing:1.512000px;}
.ws82{word-spacing:1.518000px;}
.ws88{word-spacing:1.584000px;}
.ws79{word-spacing:1.782000px;}
.ws7a{word-spacing:1.848000px;}
.wsc7{word-spacing:1.998000px;}
.ws65{word-spacing:2.112000px;}
.wsc5{word-spacing:2.214000px;}
.ws73{word-spacing:2.244000px;}
.ws9c{word-spacing:2.430000px;}
.ws53{word-spacing:2.442000px;}
.wsc4{word-spacing:2.538000px;}
.ws27{word-spacing:2.574000px;}
.wsd9{word-spacing:2.592000px;}
.wsde{word-spacing:2.700000px;}
.ws59{word-spacing:2.706000px;}
.ws2a{word-spacing:2.772000px;}
.ws7e{word-spacing:3.036000px;}
.ws61{word-spacing:3.102000px;}
.wsd5{word-spacing:3.186000px;}
.ws86{word-spacing:3.234000px;}
.wsa{word-spacing:3.240000px;}
.wsaa{word-spacing:3.348000px;}
.ws54{word-spacing:3.366000px;}
.ws87{word-spacing:3.432000px;}
.wsae{word-spacing:3.510000px;}
.ws33{word-spacing:3.630000px;}
.ws3f{word-spacing:3.696000px;}
.ws4f{word-spacing:3.894000px;}
.ws8a{word-spacing:4.026000px;}
.ws2b{word-spacing:4.158000px;}
.wsb3{word-spacing:4.212000px;}
.ws5a{word-spacing:4.224000px;}
.wse1{word-spacing:4.320000px;}
.ws6f{word-spacing:4.422000px;}
.wsd2{word-spacing:4.428000px;}
.ws28{word-spacing:4.488000px;}
.ws90{word-spacing:4.554000px;}
.ws23{word-spacing:4.620000px;}
.wsbe{word-spacing:4.644000px;}
.ws17{word-spacing:4.686000px;}
.wsdd{word-spacing:4.806000px;}
.ws58{word-spacing:4.884000px;}
.ws37{word-spacing:4.950000px;}
.wsa4{word-spacing:4.968000px;}
.ws5b{word-spacing:5.082000px;}
.ws83{word-spacing:5.214000px;}
.wsce{word-spacing:5.346000px;}
.wsd3{word-spacing:5.400000px;}
.ws92{word-spacing:5.478000px;}
.wsdc{word-spacing:5.508000px;}
.ws51{word-spacing:5.544000px;}
.ws63{word-spacing:5.742000px;}
.ws5d{word-spacing:5.808000px;}
.ws29{word-spacing:5.940000px;}
.ws55{word-spacing:6.006000px;}
.ws1b{word-spacing:6.138000px;}
.ws66{word-spacing:6.204000px;}
.wsdb{word-spacing:6.210000px;}
.ws7c{word-spacing:6.270000px;}
.wsc2{word-spacing:6.318000px;}
.ws38{word-spacing:6.468000px;}
.ws19{word-spacing:6.666000px;}
.wsc6{word-spacing:6.750000px;}
.ws52{word-spacing:6.798000px;}
.ws84{word-spacing:6.930000px;}
.ws9a{word-spacing:7.062000px;}
.ws77{word-spacing:7.194000px;}
.ws35{word-spacing:7.392000px;}
.wsd4{word-spacing:7.398000px;}
.ws96{word-spacing:7.590000px;}
.ws93{word-spacing:7.656000px;}
.wsb7{word-spacing:7.668000px;}
.ws40{word-spacing:8.052000px;}
.ws12{word-spacing:8.118000px;}
.ws13{word-spacing:8.382000px;}
.ws3a{word-spacing:8.448000px;}
.ws56{word-spacing:8.514000px;}
.ws49{word-spacing:8.580000px;}
.ws7d{word-spacing:8.712000px;}
.ws80{word-spacing:8.778000px;}
.ws21{word-spacing:8.844000px;}
.ws70{word-spacing:8.910000px;}
.wsa9{word-spacing:9.018000px;}
.ws2e{word-spacing:9.174000px;}
.ws4d{word-spacing:9.504000px;}
.ws43{word-spacing:9.636000px;}
.wsd6{word-spacing:9.828000px;}
.ws14{word-spacing:9.834000px;}
.ws24{word-spacing:9.900000px;}
.wsc8{word-spacing:9.990000px;}
.ws1e{word-spacing:10.032000px;}
.ws10{word-spacing:10.296000px;}
.ws60{word-spacing:10.362000px;}
.wsda{word-spacing:10.638000px;}
.ws32{word-spacing:10.692000px;}
.ws48{word-spacing:10.758000px;}
.ws5f{word-spacing:10.956000px;}
.wsb4{word-spacing:11.124000px;}
.ws7b{word-spacing:11.418000px;}
.ws6a{word-spacing:11.484000px;}
.wsc0{word-spacing:11.718000px;}
.ws50{word-spacing:11.748000px;}
.ws34{word-spacing:11.880000px;}
.ws3b{word-spacing:11.946000px;}
.wsbf{word-spacing:12.096000px;}
.ws94{word-spacing:12.210000px;}
.ws2f{word-spacing:12.276000px;}
.wsb6{word-spacing:12.366000px;}
.wsd1{word-spacing:12.420000px;}
.ws46{word-spacing:12.804000px;}
.wsa7{word-spacing:12.906000px;}
.ws30{word-spacing:13.200000px;}
.wsb0{word-spacing:13.716000px;}
.ws6e{word-spacing:13.794000px;}
.wsd0{word-spacing:13.932000px;}
.wsab{word-spacing:13.986000px;}
.ws76{word-spacing:14.124000px;}
.wscb{word-spacing:14.310000px;}
.ws22{word-spacing:14.322000px;}
.ws5e{word-spacing:14.388000px;}
.ws85{word-spacing:14.454000px;}
.wscc{word-spacing:14.526000px;}
.ws74{word-spacing:14.916000px;}
.ws5c{word-spacing:15.048000px;}
.wsbd{word-spacing:15.444000px;}
.wsa5{word-spacing:15.498000px;}
.ws9f{word-spacing:15.660000px;}
.wsad{word-spacing:15.822000px;}
.wsd{word-spacing:16.038000px;}
.wsd7{word-spacing:16.146000px;}
.ws2d{word-spacing:16.368000px;}
.ws6d{word-spacing:16.632000px;}
.wsa6{word-spacing:17.010000px;}
.ws8d{word-spacing:17.226000px;}
.ws4a{word-spacing:17.292000px;}
.ws42{word-spacing:17.358000px;}
.wsb2{word-spacing:17.604000px;}
.ws72{word-spacing:17.688000px;}
.ws98{word-spacing:18.018000px;}
.wsb9{word-spacing:18.036000px;}
.ws7f{word-spacing:18.282000px;}
.ws1c{word-spacing:19.008000px;}
.wsb1{word-spacing:19.710000px;}
.wsca{word-spacing:20.574000px;}
.wsc9{word-spacing:20.682000px;}
.ws25{word-spacing:20.790000px;}
.ws41{word-spacing:21.252000px;}
.wsc1{word-spacing:21.546000px;}
.ws1d{word-spacing:21.846000px;}
.ws71{word-spacing:21.978000px;}
.ws4b{word-spacing:23.100000px;}
.wsdf{word-spacing:23.490000px;}
.wsa8{word-spacing:23.544000px;}
.wsac{word-spacing:26.676000px;}
.wsba{word-spacing:28.944000px;}
.wse{word-spacing:29.700000px;}
.wse0{word-spacing:36.288000px;}
.ws20{word-spacing:37.422000px;}
.wsbb{word-spacing:43.794000px;}
.wsbc{word-spacing:55.890000px;}
.wsa2{word-spacing:66.366000px;}
.wsa3{word-spacing:85.536000px;}
.ws6c{word-spacing:364.003800px;}
.ws6b{word-spacing:424.351200px;}
._38{margin-left:-24.894000px;}
._34{margin-left:-16.605600px;}
._2f{margin-left:-15.186600px;}
._3b{margin-left:-12.096000px;}
._3{margin-left:-9.340800px;}
._3c{margin-left:-7.921800px;}
._0{margin-left:-6.738000px;}
._39{margin-left:-5.653800px;}
._f{margin-left:-4.521000px;}
._6{margin-left:-3.498600px;}
._2{margin-left:-2.019600px;}
._3a{margin-left:-1.016400px;}
._4{width:1.470000px;}
._7{width:2.904000px;}
._5{width:4.542600px;}
._8{width:5.621400px;}
._d{width:7.578600px;}
._b{width:8.639400px;}
._a{width:10.731600px;}
._11{width:11.919600px;}
._12{width:13.424400px;}
._e{width:14.876400px;}
._c{width:17.714400px;}
._2e{width:19.542600px;}
._10{width:23.760000px;}
._36{width:27.372600px;}
._37{width:29.343600px;}
._35{width:31.050000px;}
._9{width:39.960000px;}
._15{width:139.393200px;}
._14{width:160.056600px;}
._1d{width:172.094400px;}
._20{width:196.646400px;}
._2c{width:198.234600px;}
._19{width:201.888000px;}
._1e{width:204.972000px;}
._1a{width:219.065400px;}
._2d{width:220.583400px;}
._16{width:226.731600px;}
._1c{width:248.094000px;}
._21{width:260.168400px;}
._1f{width:271.122600px;}
._18{width:279.207000px;}
._25{width:282.502200px;}
._24{width:288.234600px;}
._28{width:289.348200px;}
._29{width:298.408200px;}
._2b{width:329.160000px;}
._1b{width:343.518600px;}
._22{width:347.033400px;}
._2a{width:354.854400px;}
._26{width:378.713400px;}
._23{width:404.160000px;}
._27{width:419.160000px;}
._1{width:432.621600px;}
._13{width:455.850000px;}
._33{width:477.831600px;}
._31{width:486.674400px;}
._32{width:509.940600px;}
._30{width:585.185400px;}
._17{width:666.660000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.972000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:22.500000px;}
.y90{bottom:152.934900px;}
.y102{bottom:155.552250px;}
.yb6{bottom:155.955600px;}
.ycb{bottom:156.812400px;}
.y4d{bottom:164.592150px;}
.yb5{bottom:167.205600px;}
.y20{bottom:170.690400px;}
.y101{bottom:171.002250px;}
.yca{bottom:172.112250px;}
.y8f{bottom:176.559900px;}
.y4c{bottom:184.392300px;}
.y100{bottom:186.452250px;}
.yc9{bottom:187.412250px;}
.y1f{bottom:188.690400px;}
.y8e{bottom:200.184900px;}
.yff{bottom:201.902250px;}
.yb4{bottom:202.080600px;}
.yc8{bottom:202.712250px;}
.y4b{bottom:204.192300px;}
.yb3{bottom:213.330600px;}
.yfe{bottom:217.352250px;}
.yc7{bottom:218.012400px;}
.y8d{bottom:223.247400px;}
.y4a{bottom:223.992300px;}
.yfd{bottom:232.802250px;}
.yc6{bottom:233.312250px;}
.y49{bottom:243.792300px;}
.y8c{bottom:246.447600px;}
.yb2{bottom:248.205600px;}
.yfc{bottom:248.252250px;}
.yc5{bottom:248.612250px;}
.yb1{bottom:259.455600px;}
.y48{bottom:263.592150px;}
.yfb{bottom:263.702250px;}
.yc4{bottom:263.912250px;}
.y1e{bottom:271.229700px;}
.yfa{bottom:279.152250px;}
.yc3{bottom:279.212250px;}
.y47{bottom:283.392300px;}
.y8b{bottom:291.743550px;}
.yb0{bottom:294.330600px;}
.yc2{bottom:294.512400px;}
.yf9{bottom:294.602250px;}
.y1d{bottom:299.533650px;}
.y46{bottom:303.192150px;}
.yc1{bottom:309.812250px;}
.yf8{bottom:310.052250px;}
.y8a{bottom:314.143950px;}
.yaf{bottom:318.093300px;}
.y45{bottom:322.992300px;}
.yf7{bottom:325.502250px;}
.y1c{bottom:326.037600px;}
.yc0{bottom:335.742300px;}
.y89{bottom:336.551700px;}
.yf6{bottom:340.952250px;}
.y44{bottom:342.792300px;}
.y1b{bottom:345.087450px;}
.yac{bottom:353.142300px;}
.yae{bottom:354.172200px;}
.yf5{bottom:356.402250px;}
.y88{bottom:359.709450px;}
.y43{bottom:362.592150px;}
.y1a{bottom:364.137600px;}
.yf4{bottom:371.852250px;}
.yab{bottom:373.242300px;}
.yad{bottom:373.972200px;}
.ybf{bottom:381.342150px;}
.y42{bottom:382.392300px;}
.y19{bottom:383.187600px;}
.yf3{bottom:387.302250px;}
.yaa{bottom:393.342150px;}
.y87{bottom:393.772200px;}
.y69{bottom:395.142300px;}
.ybe{bottom:401.142300px;}
.y41{bottom:402.192150px;}
.y18{bottom:402.237600px;}
.yf2{bottom:402.752250px;}
.ya9{bottom:413.442150px;}
.y86{bottom:413.572200px;}
.y68{bottom:414.942150px;}
.yf1{bottom:418.202250px;}
.ybd{bottom:420.942150px;}
.y17{bottom:421.287600px;}
.y40{bottom:421.992300px;}
.y85{bottom:433.372200px;}
.ya8{bottom:433.542300px;}
.yf0{bottom:433.652250px;}
.y67{bottom:434.742300px;}
.y16{bottom:440.337450px;}
.ybc{bottom:440.742300px;}
.y3f{bottom:441.792300px;}
.yef{bottom:449.102250px;}
.y84{bottom:453.172200px;}
.ya7{bottom:453.642300px;}
.y66{bottom:454.542300px;}
.y15{bottom:459.387600px;}
.ybb{bottom:460.542300px;}
.y3e{bottom:461.592150px;}
.yee{bottom:464.552250px;}
.y83{bottom:472.972200px;}
.ya6{bottom:473.742300px;}
.y65{bottom:474.342150px;}
.y14{bottom:478.437600px;}
.yed{bottom:480.002250px;}
.yba{bottom:480.342150px;}
.y3d{bottom:481.392300px;}
.y82{bottom:492.772200px;}
.ya5{bottom:493.842150px;}
.y64{bottom:494.142300px;}
.yec{bottom:495.452250px;}
.y13{bottom:497.487600px;}
.yb9{bottom:500.142300px;}
.y3c{bottom:501.192150px;}
.yeb{bottom:510.902250px;}
.y81{bottom:512.572200px;}
.y63{bottom:513.942150px;}
.y12{bottom:516.537600px;}
.yb8{bottom:519.942150px;}
.y3b{bottom:520.992300px;}
.yea{bottom:526.352250px;}
.y13d{bottom:528.752250px;}
.y120{bottom:530.852250px;}
.y80{bottom:532.372200px;}
.ya4{bottom:534.042300px;}
.y11{bottom:535.587450px;}
.y3a{bottom:540.792300px;}
.ye9{bottom:541.802250px;}
.y62{bottom:544.372200px;}
.y13c{bottom:544.652250px;}
.y11f{bottom:546.152250px;}
.yb7{bottom:550.372200px;}
.y7f{bottom:552.172200px;}
.ya3{bottom:554.142300px;}
.y10{bottom:554.637600px;}
.ye8{bottom:557.252250px;}
.y13b{bottom:560.552250px;}
.y39{bottom:560.592150px;}
.y11e{bottom:561.452250px;}
.y7e{bottom:571.972200px;}
.ye7{bottom:572.702250px;}
.yf{bottom:573.687600px;}
.ya2{bottom:574.242300px;}
.y13a{bottom:576.452250px;}
.y11d{bottom:576.752250px;}
.y38{bottom:580.392300px;}
.y61{bottom:585.772200px;}
.ye6{bottom:588.152250px;}
.y7d{bottom:591.772200px;}
.y11c{bottom:592.052250px;}
.y139{bottom:592.352250px;}
.ya1{bottom:594.342150px;}
.y37{bottom:600.192150px;}
.ye5{bottom:603.602250px;}
.y60{bottom:605.872200px;}
.y11b{bottom:607.352250px;}
.y138{bottom:608.252250px;}
.y7c{bottom:611.572200px;}
.ya0{bottom:614.442150px;}
.ye{bottom:615.087450px;}
.ye4{bottom:619.052250px;}
.y36{bottom:619.992300px;}
.y11a{bottom:622.652250px;}
.y137{bottom:624.152250px;}
.y5f{bottom:625.972200px;}
.y7b{bottom:631.372200px;}
.ye3{bottom:634.502250px;}
.y9f{bottom:634.542150px;}
.yd{bottom:634.887600px;}
.y119{bottom:637.952250px;}
.y35{bottom:639.792150px;}
.y136{bottom:640.052250px;}
.y5e{bottom:646.072200px;}
.ye2{bottom:649.952250px;}
.y7a{bottom:651.172200px;}
.y118{bottom:653.252250px;}
.y9e{bottom:654.642300px;}
.yc{bottom:654.687600px;}
.y135{bottom:655.952250px;}
.y34{bottom:659.592150px;}
.ye1{bottom:665.402250px;}
.y5d{bottom:666.172200px;}
.y117{bottom:668.552250px;}
.y79{bottom:670.972200px;}
.y134{bottom:671.852250px;}
.yb{bottom:674.487600px;}
.y9d{bottom:674.742300px;}
.y33{bottom:679.392300px;}
.ye0{bottom:680.852250px;}
.y116{bottom:683.852250px;}
.y5c{bottom:686.272200px;}
.y133{bottom:687.752250px;}
.y78{bottom:690.772200px;}
.ya{bottom:694.287600px;}
.y9c{bottom:694.842150px;}
.ydf{bottom:696.302250px;}
.y115{bottom:699.152250px;}
.y32{bottom:699.192300px;}
.y132{bottom:703.652250px;}
.y5b{bottom:706.372200px;}
.y77{bottom:710.572200px;}
.yde{bottom:711.752250px;}
.y9{bottom:714.087450px;}
.y114{bottom:714.452250px;}
.y9b{bottom:714.942300px;}
.y31{bottom:718.992300px;}
.y131{bottom:719.552250px;}
.y5a{bottom:726.472200px;}
.ydd{bottom:727.202250px;}
.y113{bottom:729.752250px;}
.y76{bottom:730.372200px;}
.y8{bottom:733.887600px;}
.y9a{bottom:735.042150px;}
.y130{bottom:735.452250px;}
.y30{bottom:738.792150px;}
.ydc{bottom:742.652250px;}
.y112{bottom:745.052250px;}
.y59{bottom:746.572200px;}
.y75{bottom:750.172200px;}
.y12f{bottom:751.352250px;}
.y7{bottom:753.687600px;}
.y99{bottom:755.142300px;}
.ydb{bottom:758.102250px;}
.y2f{bottom:758.592150px;}
.y111{bottom:760.352250px;}
.y58{bottom:766.672200px;}
.y12e{bottom:767.252250px;}
.y74{bottom:769.972200px;}
.yda{bottom:773.552250px;}
.y98{bottom:775.242150px;}
.y110{bottom:775.652250px;}
.y2e{bottom:778.392300px;}
.y12d{bottom:783.152250px;}
.y57{bottom:786.772200px;}
.yd9{bottom:789.002250px;}
.y73{bottom:789.772200px;}
.y10f{bottom:790.952250px;}
.y6{bottom:793.287450px;}
.y97{bottom:795.342150px;}
.y2d{bottom:798.192300px;}
.y12c{bottom:799.052250px;}
.yd8{bottom:804.452250px;}
.y10e{bottom:806.252250px;}
.y56{bottom:806.872200px;}
.y72{bottom:809.572200px;}
.y12b{bottom:814.952250px;}
.y96{bottom:815.442300px;}
.y2c{bottom:817.992150px;}
.y5{bottom:818.487600px;}
.yd7{bottom:819.902250px;}
.y10d{bottom:821.552250px;}
.y55{bottom:826.972200px;}
.y71{bottom:829.372200px;}
.y12a{bottom:830.852250px;}
.yd6{bottom:835.352250px;}
.y95{bottom:835.542150px;}
.y10c{bottom:836.852250px;}
.y2b{bottom:837.792150px;}
.y129{bottom:846.752250px;}
.y54{bottom:847.072200px;}
.y70{bottom:849.172050px;}
.yd5{bottom:850.802250px;}
.y10b{bottom:852.152250px;}
.y94{bottom:855.642300px;}
.y2a{bottom:857.592150px;}
.y128{bottom:862.652250px;}
.y4{bottom:863.487600px;}
.yd4{bottom:866.252250px;}
.y53{bottom:867.172050px;}
.y10a{bottom:867.452250px;}
.y6f{bottom:868.972200px;}
.y93{bottom:875.742150px;}
.y29{bottom:877.392300px;}
.y127{bottom:878.552250px;}
.yd3{bottom:881.702250px;}
.y109{bottom:882.752250px;}
.y52{bottom:887.272200px;}
.y6e{bottom:888.772200px;}
.y126{bottom:894.452250px;}
.y92{bottom:895.842150px;}
.y3{bottom:895.887600px;}
.yd2{bottom:897.152250px;}
.y28{bottom:897.192300px;}
.y108{bottom:898.052250px;}
.y51{bottom:907.372200px;}
.y6d{bottom:908.572200px;}
.y125{bottom:910.352250px;}
.yd1{bottom:912.602250px;}
.y107{bottom:913.352250px;}
.y27{bottom:916.992150px;}
.y124{bottom:926.252250px;}
.y91{bottom:926.572200px;}
.yd0{bottom:928.052250px;}
.y6c{bottom:928.372200px;}
.y106{bottom:928.652250px;}
.y26{bottom:936.792150px;}
.y2{bottom:938.001150px;}
.y123{bottom:942.152250px;}
.ycf{bottom:943.502250px;}
.y105{bottom:943.952250px;}
.y50{bottom:947.572200px;}
.y6b{bottom:948.172050px;}
.y25{bottom:956.592150px;}
.y122{bottom:958.052250px;}
.yce{bottom:958.952250px;}
.y104{bottom:959.252250px;}
.y4f{bottom:967.672050px;}
.y6a{bottom:967.972200px;}
.y121{bottom:973.952250px;}
.ycd{bottom:974.402250px;}
.y103{bottom:974.552250px;}
.y21{bottom:982.758150px;}
.y24{bottom:987.022200px;}
.y4e{bottom:987.772200px;}
.ycc{bottom:989.852250px;}
.y23{bottom:1054.576050px;}
.y1{bottom:1054.703100px;}
.hb{height:30.577148px;}
.h11{height:37.520508px;}
.hf{height:40.664062px;}
.h8{height:41.660156px;}
.h3{height:41.689453px;}
.hd{height:44.730469px;}
.h6{height:45.826172px;}
.hc{height:45.858398px;}
.h9{height:48.694658px;}
.he{height:48.713446px;}
.h7{height:48.796875px;}
.h2{height:51.562500px;}
.ha{height:56.929688px;}
.h5{height:61.998932px;}
.h4{height:73.195312px;}
.h10{height:88.939453px;}
.h1{height:1126.500000px;}
.h0{height:1126.771500px;}
.w0{width:837.637500px;}
.w1{width:837.750000px;}
.x0{left:0.000000px;}
.xf{left:72.283500px;}
.x19{left:78.602400px;}
.x2{left:80.787450px;}
.x16{left:86.681100px;}
.xa{left:92.253150px;}
.x1e{left:93.543300px;}
.x10{left:97.476300px;}
.x1c{left:102.047250px;}
.xb{left:106.299150px;}
.x9{left:108.140850px;}
.x7{left:116.471400px;}
.x5{left:134.618400px;}
.x3{left:139.827900px;}
.x8{left:163.381200px;}
.x4{left:172.121100px;}
.xe{left:195.418950px;}
.x1{left:203.922900px;}
.x18{left:218.040150px;}
.x15{left:221.610900px;}
.x17{left:248.157450px;}
.x1a{left:290.208450px;}
.xd{left:356.595000px;}
.x6{left:360.240000px;}
.x11{left:437.952750px;}
.x13{left:446.456700px;}
.x1f{left:459.212550px;}
.x12{left:463.464450px;}
.x1d{left:466.759800px;}
.x14{left:471.968550px;}
.x1b{left:574.612050px;}
.xc{left:606.090600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.536000pt;}
.v1{vertical-align:24.864000pt;}
.v3{vertical-align:42.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.293333pt;}
.ls2{letter-spacing:0.586667pt;}
.ls3{letter-spacing:462.831467pt;}
.ls5{letter-spacing:525.574933pt;}
.ls4{letter-spacing:533.184533pt;}
.wsc{word-spacing:-16.000000pt;}
.ws47{word-spacing:-14.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws8e{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.882667pt;}
.ws2{word-spacing:-8.550667pt;}
.ws5{word-spacing:-4.106667pt;}
.ws8c{word-spacing:-3.637333pt;}
.ws68{word-spacing:-3.578667pt;}
.ws1f{word-spacing:-2.933333pt;}
.ws95{word-spacing:-2.816000pt;}
.ws9b{word-spacing:-2.688000pt;}
.ws8{word-spacing:-2.666667pt;}
.ws3c{word-spacing:-2.581333pt;}
.ws64{word-spacing:-2.288000pt;}
.ws3e{word-spacing:-2.170667pt;}
.wsd8{word-spacing:-2.064000pt;}
.ws91{word-spacing:-1.877333pt;}
.ws44{word-spacing:-1.818667pt;}
.wsc3{word-spacing:-1.680000pt;}
.ws18{word-spacing:-1.642667pt;}
.wsaf{word-spacing:-1.488000pt;}
.ws39{word-spacing:-1.408000pt;}
.ws62{word-spacing:-1.349333pt;}
.ws4{word-spacing:-1.344000pt;}
.ws4e{word-spacing:-1.232000pt;}
.wscf{word-spacing:-1.200000pt;}
.ws8f{word-spacing:-1.173333pt;}
.wse2{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.120000pt;}
.wsb{word-spacing:-1.056000pt;}
.ws99{word-spacing:-0.997333pt;}
.ws9e{word-spacing:-0.912000pt;}
.ws78{word-spacing:-0.821333pt;}
.ws26{word-spacing:-0.645333pt;}
.wsa1{word-spacing:-0.624000pt;}
.ws2c{word-spacing:-0.586667pt;}
.wsa0{word-spacing:-0.480000pt;}
.ws4c{word-spacing:-0.410667pt;}
.ws1a{word-spacing:-0.293333pt;}
.ws97{word-spacing:-0.234667pt;}
.ws6{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws9d{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb8{word-spacing:0.144000pt;}
.wsf{word-spacing:0.234667pt;}
.ws15{word-spacing:0.293333pt;}
.ws31{word-spacing:0.352000pt;}
.ws8b{word-spacing:0.410667pt;}
.ws57{word-spacing:0.469333pt;}
.ws45{word-spacing:0.528000pt;}
.ws67{word-spacing:0.586667pt;}
.ws81{word-spacing:0.704000pt;}
.ws16{word-spacing:0.821333pt;}
.ws11{word-spacing:0.880000pt;}
.ws36{word-spacing:0.938667pt;}
.wscd{word-spacing:0.960000pt;}
.ws3d{word-spacing:1.056000pt;}
.ws75{word-spacing:1.173333pt;}
.ws89{word-spacing:1.232000pt;}
.ws69{word-spacing:1.290667pt;}
.wsb5{word-spacing:1.344000pt;}
.ws82{word-spacing:1.349333pt;}
.ws88{word-spacing:1.408000pt;}
.ws79{word-spacing:1.584000pt;}
.ws7a{word-spacing:1.642667pt;}
.wsc7{word-spacing:1.776000pt;}
.ws65{word-spacing:1.877333pt;}
.wsc5{word-spacing:1.968000pt;}
.ws73{word-spacing:1.994667pt;}
.ws9c{word-spacing:2.160000pt;}
.ws53{word-spacing:2.170667pt;}
.wsc4{word-spacing:2.256000pt;}
.ws27{word-spacing:2.288000pt;}
.wsd9{word-spacing:2.304000pt;}
.wsde{word-spacing:2.400000pt;}
.ws59{word-spacing:2.405333pt;}
.ws2a{word-spacing:2.464000pt;}
.ws7e{word-spacing:2.698667pt;}
.ws61{word-spacing:2.757333pt;}
.wsd5{word-spacing:2.832000pt;}
.ws86{word-spacing:2.874667pt;}
.wsa{word-spacing:2.880000pt;}
.wsaa{word-spacing:2.976000pt;}
.ws54{word-spacing:2.992000pt;}
.ws87{word-spacing:3.050667pt;}
.wsae{word-spacing:3.120000pt;}
.ws33{word-spacing:3.226667pt;}
.ws3f{word-spacing:3.285333pt;}
.ws4f{word-spacing:3.461333pt;}
.ws8a{word-spacing:3.578667pt;}
.ws2b{word-spacing:3.696000pt;}
.wsb3{word-spacing:3.744000pt;}
.ws5a{word-spacing:3.754667pt;}
.wse1{word-spacing:3.840000pt;}
.ws6f{word-spacing:3.930667pt;}
.wsd2{word-spacing:3.936000pt;}
.ws28{word-spacing:3.989333pt;}
.ws90{word-spacing:4.048000pt;}
.ws23{word-spacing:4.106667pt;}
.wsbe{word-spacing:4.128000pt;}
.ws17{word-spacing:4.165333pt;}
.wsdd{word-spacing:4.272000pt;}
.ws58{word-spacing:4.341333pt;}
.ws37{word-spacing:4.400000pt;}
.wsa4{word-spacing:4.416000pt;}
.ws5b{word-spacing:4.517333pt;}
.ws83{word-spacing:4.634667pt;}
.wsce{word-spacing:4.752000pt;}
.wsd3{word-spacing:4.800000pt;}
.ws92{word-spacing:4.869333pt;}
.wsdc{word-spacing:4.896000pt;}
.ws51{word-spacing:4.928000pt;}
.ws63{word-spacing:5.104000pt;}
.ws5d{word-spacing:5.162667pt;}
.ws29{word-spacing:5.280000pt;}
.ws55{word-spacing:5.338667pt;}
.ws1b{word-spacing:5.456000pt;}
.ws66{word-spacing:5.514667pt;}
.wsdb{word-spacing:5.520000pt;}
.ws7c{word-spacing:5.573333pt;}
.wsc2{word-spacing:5.616000pt;}
.ws38{word-spacing:5.749333pt;}
.ws19{word-spacing:5.925333pt;}
.wsc6{word-spacing:6.000000pt;}
.ws52{word-spacing:6.042667pt;}
.ws84{word-spacing:6.160000pt;}
.ws9a{word-spacing:6.277333pt;}
.ws77{word-spacing:6.394667pt;}
.ws35{word-spacing:6.570667pt;}
.wsd4{word-spacing:6.576000pt;}
.ws96{word-spacing:6.746667pt;}
.ws93{word-spacing:6.805333pt;}
.wsb7{word-spacing:6.816000pt;}
.ws40{word-spacing:7.157333pt;}
.ws12{word-spacing:7.216000pt;}
.ws13{word-spacing:7.450667pt;}
.ws3a{word-spacing:7.509333pt;}
.ws56{word-spacing:7.568000pt;}
.ws49{word-spacing:7.626667pt;}
.ws7d{word-spacing:7.744000pt;}
.ws80{word-spacing:7.802667pt;}
.ws21{word-spacing:7.861333pt;}
.ws70{word-spacing:7.920000pt;}
.wsa9{word-spacing:8.016000pt;}
.ws2e{word-spacing:8.154667pt;}
.ws4d{word-spacing:8.448000pt;}
.ws43{word-spacing:8.565333pt;}
.wsd6{word-spacing:8.736000pt;}
.ws14{word-spacing:8.741333pt;}
.ws24{word-spacing:8.800000pt;}
.wsc8{word-spacing:8.880000pt;}
.ws1e{word-spacing:8.917333pt;}
.ws10{word-spacing:9.152000pt;}
.ws60{word-spacing:9.210667pt;}
.wsda{word-spacing:9.456000pt;}
.ws32{word-spacing:9.504000pt;}
.ws48{word-spacing:9.562667pt;}
.ws5f{word-spacing:9.738667pt;}
.wsb4{word-spacing:9.888000pt;}
.ws7b{word-spacing:10.149333pt;}
.ws6a{word-spacing:10.208000pt;}
.wsc0{word-spacing:10.416000pt;}
.ws50{word-spacing:10.442667pt;}
.ws34{word-spacing:10.560000pt;}
.ws3b{word-spacing:10.618667pt;}
.wsbf{word-spacing:10.752000pt;}
.ws94{word-spacing:10.853333pt;}
.ws2f{word-spacing:10.912000pt;}
.wsb6{word-spacing:10.992000pt;}
.wsd1{word-spacing:11.040000pt;}
.ws46{word-spacing:11.381333pt;}
.wsa7{word-spacing:11.472000pt;}
.ws30{word-spacing:11.733333pt;}
.wsb0{word-spacing:12.192000pt;}
.ws6e{word-spacing:12.261333pt;}
.wsd0{word-spacing:12.384000pt;}
.wsab{word-spacing:12.432000pt;}
.ws76{word-spacing:12.554667pt;}
.wscb{word-spacing:12.720000pt;}
.ws22{word-spacing:12.730667pt;}
.ws5e{word-spacing:12.789333pt;}
.ws85{word-spacing:12.848000pt;}
.wscc{word-spacing:12.912000pt;}
.ws74{word-spacing:13.258667pt;}
.ws5c{word-spacing:13.376000pt;}
.wsbd{word-spacing:13.728000pt;}
.wsa5{word-spacing:13.776000pt;}
.ws9f{word-spacing:13.920000pt;}
.wsad{word-spacing:14.064000pt;}
.wsd{word-spacing:14.256000pt;}
.wsd7{word-spacing:14.352000pt;}
.ws2d{word-spacing:14.549333pt;}
.ws6d{word-spacing:14.784000pt;}
.wsa6{word-spacing:15.120000pt;}
.ws8d{word-spacing:15.312000pt;}
.ws4a{word-spacing:15.370667pt;}
.ws42{word-spacing:15.429333pt;}
.wsb2{word-spacing:15.648000pt;}
.ws72{word-spacing:15.722667pt;}
.ws98{word-spacing:16.016000pt;}
.wsb9{word-spacing:16.032000pt;}
.ws7f{word-spacing:16.250667pt;}
.ws1c{word-spacing:16.896000pt;}
.wsb1{word-spacing:17.520000pt;}
.wsca{word-spacing:18.288000pt;}
.wsc9{word-spacing:18.384000pt;}
.ws25{word-spacing:18.480000pt;}
.ws41{word-spacing:18.890667pt;}
.wsc1{word-spacing:19.152000pt;}
.ws1d{word-spacing:19.418667pt;}
.ws71{word-spacing:19.536000pt;}
.ws4b{word-spacing:20.533333pt;}
.wsdf{word-spacing:20.880000pt;}
.wsa8{word-spacing:20.928000pt;}
.wsac{word-spacing:23.712000pt;}
.wsba{word-spacing:25.728000pt;}
.wse{word-spacing:26.400000pt;}
.wse0{word-spacing:32.256000pt;}
.ws20{word-spacing:33.264000pt;}
.wsbb{word-spacing:38.928000pt;}
.wsbc{word-spacing:49.680000pt;}
.wsa2{word-spacing:58.992000pt;}
.wsa3{word-spacing:76.032000pt;}
.ws6c{word-spacing:323.558933pt;}
.ws6b{word-spacing:377.201067pt;}
._38{margin-left:-22.128000pt;}
._34{margin-left:-14.760533pt;}
._2f{margin-left:-13.499200pt;}
._3b{margin-left:-10.752000pt;}
._3{margin-left:-8.302933pt;}
._3c{margin-left:-7.041600pt;}
._0{margin-left:-5.989333pt;}
._39{margin-left:-5.025600pt;}
._f{margin-left:-4.018667pt;}
._6{margin-left:-3.109867pt;}
._2{margin-left:-1.795200pt;}
._3a{margin-left:-0.903467pt;}
._4{width:1.306667pt;}
._7{width:2.581333pt;}
._5{width:4.037867pt;}
._8{width:4.996800pt;}
._d{width:6.736533pt;}
._b{width:7.679467pt;}
._a{width:9.539200pt;}
._11{width:10.595200pt;}
._12{width:11.932800pt;}
._e{width:13.223467pt;}
._c{width:15.746133pt;}
._2e{width:17.371200pt;}
._10{width:21.120000pt;}
._36{width:24.331200pt;}
._37{width:26.083200pt;}
._35{width:27.600000pt;}
._9{width:35.520000pt;}
._15{width:123.905067pt;}
._14{width:142.272533pt;}
._1d{width:152.972800pt;}
._20{width:174.796800pt;}
._2c{width:176.208533pt;}
._19{width:179.456000pt;}
._1e{width:182.197333pt;}
._1a{width:194.724800pt;}
._2d{width:196.074133pt;}
._16{width:201.539200pt;}
._1c{width:220.528000pt;}
._21{width:231.260800pt;}
._1f{width:240.997867pt;}
._18{width:248.184000pt;}
._25{width:251.113067pt;}
._24{width:256.208533pt;}
._28{width:257.198400pt;}
._29{width:265.251733pt;}
._2b{width:292.586667pt;}
._1b{width:305.349867pt;}
._22{width:308.474133pt;}
._2a{width:315.426133pt;}
._26{width:336.634133pt;}
._23{width:359.253333pt;}
._27{width:372.586667pt;}
._1{width:384.552533pt;}
._13{width:405.200000pt;}
._33{width:424.739200pt;}
._31{width:432.599467pt;}
._32{width:453.280533pt;}
._30{width:520.164800pt;}
._17{width:592.586667pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:43.530667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:20.000000pt;}
.y90{bottom:135.942133pt;}
.y102{bottom:138.268667pt;}
.yb6{bottom:138.627200pt;}
.ycb{bottom:139.388800pt;}
.y4d{bottom:146.304133pt;}
.yb5{bottom:148.627200pt;}
.y20{bottom:151.724800pt;}
.y101{bottom:152.002000pt;}
.yca{bottom:152.988667pt;}
.y8f{bottom:156.942133pt;}
.y4c{bottom:163.904267pt;}
.y100{bottom:165.735333pt;}
.yc9{bottom:166.588667pt;}
.y1f{bottom:167.724800pt;}
.y8e{bottom:177.942133pt;}
.yff{bottom:179.468667pt;}
.yb4{bottom:179.627200pt;}
.yc8{bottom:180.188667pt;}
.y4b{bottom:181.504267pt;}
.yb3{bottom:189.627200pt;}
.yfe{bottom:193.202000pt;}
.yc7{bottom:193.788800pt;}
.y8d{bottom:198.442133pt;}
.y4a{bottom:199.104267pt;}
.yfd{bottom:206.935333pt;}
.yc6{bottom:207.388667pt;}
.y49{bottom:216.704267pt;}
.y8c{bottom:219.064533pt;}
.yb2{bottom:220.627200pt;}
.yfc{bottom:220.668667pt;}
.yc5{bottom:220.988667pt;}
.yb1{bottom:230.627200pt;}
.y48{bottom:234.304133pt;}
.yfb{bottom:234.402000pt;}
.yc4{bottom:234.588667pt;}
.y1e{bottom:241.093067pt;}
.yfa{bottom:248.135333pt;}
.yc3{bottom:248.188667pt;}
.y47{bottom:251.904267pt;}
.y8b{bottom:259.327600pt;}
.yb0{bottom:261.627200pt;}
.yc2{bottom:261.788800pt;}
.yf9{bottom:261.868667pt;}
.y1d{bottom:266.252133pt;}
.y46{bottom:269.504133pt;}
.yc1{bottom:275.388667pt;}
.yf8{bottom:275.602000pt;}
.y8a{bottom:279.239067pt;}
.yaf{bottom:282.749600pt;}
.y45{bottom:287.104267pt;}
.yf7{bottom:289.335333pt;}
.y1c{bottom:289.811200pt;}
.yc0{bottom:298.437600pt;}
.y89{bottom:299.157067pt;}
.yf6{bottom:303.068667pt;}
.y44{bottom:304.704267pt;}
.y1b{bottom:306.744400pt;}
.yac{bottom:313.904267pt;}
.yae{bottom:314.819733pt;}
.yf5{bottom:316.802000pt;}
.y88{bottom:319.741733pt;}
.y43{bottom:322.304133pt;}
.y1a{bottom:323.677867pt;}
.yf4{bottom:330.535333pt;}
.yab{bottom:331.770933pt;}
.yad{bottom:332.419733pt;}
.ybf{bottom:338.970800pt;}
.y42{bottom:339.904267pt;}
.y19{bottom:340.611200pt;}
.yf3{bottom:344.268667pt;}
.yaa{bottom:349.637467pt;}
.y87{bottom:350.019733pt;}
.y69{bottom:351.237600pt;}
.ybe{bottom:356.570933pt;}
.y41{bottom:357.504133pt;}
.y18{bottom:357.544533pt;}
.yf2{bottom:358.002000pt;}
.ya9{bottom:367.504133pt;}
.y86{bottom:367.619733pt;}
.y68{bottom:368.837467pt;}
.yf1{bottom:371.735333pt;}
.ybd{bottom:374.170800pt;}
.y17{bottom:374.477867pt;}
.y40{bottom:375.104267pt;}
.y85{bottom:385.219733pt;}
.ya8{bottom:385.370933pt;}
.yf0{bottom:385.468667pt;}
.y67{bottom:386.437600pt;}
.y16{bottom:391.411067pt;}
.ybc{bottom:391.770933pt;}
.y3f{bottom:392.704267pt;}
.yef{bottom:399.202000pt;}
.y84{bottom:402.819733pt;}
.ya7{bottom:403.237600pt;}
.y66{bottom:404.037600pt;}
.y15{bottom:408.344533pt;}
.ybb{bottom:409.370933pt;}
.y3e{bottom:410.304133pt;}
.yee{bottom:412.935333pt;}
.y83{bottom:420.419733pt;}
.ya6{bottom:421.104267pt;}
.y65{bottom:421.637467pt;}
.y14{bottom:425.277867pt;}
.yed{bottom:426.668667pt;}
.yba{bottom:426.970800pt;}
.y3d{bottom:427.904267pt;}
.y82{bottom:438.019733pt;}
.ya5{bottom:438.970800pt;}
.y64{bottom:439.237600pt;}
.yec{bottom:440.402000pt;}
.y13{bottom:442.211200pt;}
.yb9{bottom:444.570933pt;}
.y3c{bottom:445.504133pt;}
.yeb{bottom:454.135333pt;}
.y81{bottom:455.619733pt;}
.y63{bottom:456.837467pt;}
.y12{bottom:459.144533pt;}
.yb8{bottom:462.170800pt;}
.y3b{bottom:463.104267pt;}
.yea{bottom:467.868667pt;}
.y13d{bottom:470.002000pt;}
.y120{bottom:471.868667pt;}
.y80{bottom:473.219733pt;}
.ya4{bottom:474.704267pt;}
.y11{bottom:476.077733pt;}
.y3a{bottom:480.704267pt;}
.ye9{bottom:481.602000pt;}
.y62{bottom:483.886400pt;}
.y13c{bottom:484.135333pt;}
.y11f{bottom:485.468667pt;}
.yb7{bottom:489.219733pt;}
.y7f{bottom:490.819733pt;}
.ya3{bottom:492.570933pt;}
.y10{bottom:493.011200pt;}
.ye8{bottom:495.335333pt;}
.y13b{bottom:498.268667pt;}
.y39{bottom:498.304133pt;}
.y11e{bottom:499.068667pt;}
.y7e{bottom:508.419733pt;}
.ye7{bottom:509.068667pt;}
.yf{bottom:509.944533pt;}
.ya2{bottom:510.437600pt;}
.y13a{bottom:512.402000pt;}
.y11d{bottom:512.668667pt;}
.y38{bottom:515.904267pt;}
.y61{bottom:520.686400pt;}
.ye6{bottom:522.802000pt;}
.y7d{bottom:526.019733pt;}
.y11c{bottom:526.268667pt;}
.y139{bottom:526.535333pt;}
.ya1{bottom:528.304133pt;}
.y37{bottom:533.504133pt;}
.ye5{bottom:536.535333pt;}
.y60{bottom:538.553067pt;}
.y11b{bottom:539.868667pt;}
.y138{bottom:540.668667pt;}
.y7c{bottom:543.619733pt;}
.ya0{bottom:546.170800pt;}
.ye{bottom:546.744400pt;}
.ye4{bottom:550.268667pt;}
.y36{bottom:551.104267pt;}
.y11a{bottom:553.468667pt;}
.y137{bottom:554.802000pt;}
.y5f{bottom:556.419733pt;}
.y7b{bottom:561.219733pt;}
.ye3{bottom:564.002000pt;}
.y9f{bottom:564.037467pt;}
.yd{bottom:564.344533pt;}
.y119{bottom:567.068667pt;}
.y35{bottom:568.704133pt;}
.y136{bottom:568.935333pt;}
.y5e{bottom:574.286400pt;}
.ye2{bottom:577.735333pt;}
.y7a{bottom:578.819733pt;}
.y118{bottom:580.668667pt;}
.y9e{bottom:581.904267pt;}
.yc{bottom:581.944533pt;}
.y135{bottom:583.068667pt;}
.y34{bottom:586.304133pt;}
.ye1{bottom:591.468667pt;}
.y5d{bottom:592.153067pt;}
.y117{bottom:594.268667pt;}
.y79{bottom:596.419733pt;}
.y134{bottom:597.202000pt;}
.yb{bottom:599.544533pt;}
.y9d{bottom:599.770933pt;}
.y33{bottom:603.904267pt;}
.ye0{bottom:605.202000pt;}
.y116{bottom:607.868667pt;}
.y5c{bottom:610.019733pt;}
.y133{bottom:611.335333pt;}
.y78{bottom:614.019733pt;}
.ya{bottom:617.144533pt;}
.y9c{bottom:617.637467pt;}
.ydf{bottom:618.935333pt;}
.y115{bottom:621.468667pt;}
.y32{bottom:621.504267pt;}
.y132{bottom:625.468667pt;}
.y5b{bottom:627.886400pt;}
.y77{bottom:631.619733pt;}
.yde{bottom:632.668667pt;}
.y9{bottom:634.744400pt;}
.y114{bottom:635.068667pt;}
.y9b{bottom:635.504267pt;}
.y31{bottom:639.104267pt;}
.y131{bottom:639.602000pt;}
.y5a{bottom:645.753067pt;}
.ydd{bottom:646.402000pt;}
.y113{bottom:648.668667pt;}
.y76{bottom:649.219733pt;}
.y8{bottom:652.344533pt;}
.y9a{bottom:653.370800pt;}
.y130{bottom:653.735333pt;}
.y30{bottom:656.704133pt;}
.ydc{bottom:660.135333pt;}
.y112{bottom:662.268667pt;}
.y59{bottom:663.619733pt;}
.y75{bottom:666.819733pt;}
.y12f{bottom:667.868667pt;}
.y7{bottom:669.944533pt;}
.y99{bottom:671.237600pt;}
.ydb{bottom:673.868667pt;}
.y2f{bottom:674.304133pt;}
.y111{bottom:675.868667pt;}
.y58{bottom:681.486400pt;}
.y12e{bottom:682.002000pt;}
.y74{bottom:684.419733pt;}
.yda{bottom:687.602000pt;}
.y98{bottom:689.104133pt;}
.y110{bottom:689.468667pt;}
.y2e{bottom:691.904267pt;}
.y12d{bottom:696.135333pt;}
.y57{bottom:699.353067pt;}
.yd9{bottom:701.335333pt;}
.y73{bottom:702.019733pt;}
.y10f{bottom:703.068667pt;}
.y6{bottom:705.144400pt;}
.y97{bottom:706.970800pt;}
.y2d{bottom:709.504267pt;}
.y12c{bottom:710.268667pt;}
.yd8{bottom:715.068667pt;}
.y10e{bottom:716.668667pt;}
.y56{bottom:717.219733pt;}
.y72{bottom:719.619733pt;}
.y12b{bottom:724.402000pt;}
.y96{bottom:724.837600pt;}
.y2c{bottom:727.104133pt;}
.y5{bottom:727.544533pt;}
.yd7{bottom:728.802000pt;}
.y10d{bottom:730.268667pt;}
.y55{bottom:735.086400pt;}
.y71{bottom:737.219733pt;}
.y12a{bottom:738.535333pt;}
.yd6{bottom:742.535333pt;}
.y95{bottom:742.704133pt;}
.y10c{bottom:743.868667pt;}
.y2b{bottom:744.704133pt;}
.y129{bottom:752.668667pt;}
.y54{bottom:752.953067pt;}
.y70{bottom:754.819600pt;}
.yd5{bottom:756.268667pt;}
.y10b{bottom:757.468667pt;}
.y94{bottom:760.570933pt;}
.y2a{bottom:762.304133pt;}
.y128{bottom:766.802000pt;}
.y4{bottom:767.544533pt;}
.yd4{bottom:770.002000pt;}
.y53{bottom:770.819600pt;}
.y10a{bottom:771.068667pt;}
.y6f{bottom:772.419733pt;}
.y93{bottom:778.437467pt;}
.y29{bottom:779.904267pt;}
.y127{bottom:780.935333pt;}
.yd3{bottom:783.735333pt;}
.y109{bottom:784.668667pt;}
.y52{bottom:788.686400pt;}
.y6e{bottom:790.019733pt;}
.y126{bottom:795.068667pt;}
.y92{bottom:796.304133pt;}
.y3{bottom:796.344533pt;}
.yd2{bottom:797.468667pt;}
.y28{bottom:797.504267pt;}
.y108{bottom:798.268667pt;}
.y51{bottom:806.553067pt;}
.y6d{bottom:807.619733pt;}
.y125{bottom:809.202000pt;}
.yd1{bottom:811.202000pt;}
.y107{bottom:811.868667pt;}
.y27{bottom:815.104133pt;}
.y124{bottom:823.335333pt;}
.y91{bottom:823.619733pt;}
.yd0{bottom:824.935333pt;}
.y6c{bottom:825.219733pt;}
.y106{bottom:825.468667pt;}
.y26{bottom:832.704133pt;}
.y2{bottom:833.778800pt;}
.y123{bottom:837.468667pt;}
.ycf{bottom:838.668667pt;}
.y105{bottom:839.068667pt;}
.y50{bottom:842.286400pt;}
.y6b{bottom:842.819600pt;}
.y25{bottom:850.304133pt;}
.y122{bottom:851.602000pt;}
.yce{bottom:852.402000pt;}
.y104{bottom:852.668667pt;}
.y4f{bottom:860.152933pt;}
.y6a{bottom:860.419733pt;}
.y121{bottom:865.735333pt;}
.ycd{bottom:866.135333pt;}
.y103{bottom:866.268667pt;}
.y21{bottom:873.562800pt;}
.y24{bottom:877.353067pt;}
.y4e{bottom:878.019733pt;}
.ycc{bottom:879.868667pt;}
.y23{bottom:937.400933pt;}
.y1{bottom:937.513867pt;}
.hb{height:27.179688pt;}
.h11{height:33.351562pt;}
.hf{height:36.145833pt;}
.h8{height:37.031250pt;}
.h3{height:37.057292pt;}
.hd{height:39.760417pt;}
.h6{height:40.734375pt;}
.hc{height:40.763021pt;}
.h9{height:43.284141pt;}
.he{height:43.300841pt;}
.h7{height:43.375000pt;}
.h2{height:45.833333pt;}
.ha{height:50.604167pt;}
.h5{height:55.110161pt;}
.h4{height:65.062500pt;}
.h10{height:79.057292pt;}
.h1{height:1001.333333pt;}
.h0{height:1001.574667pt;}
.w0{width:744.566667pt;}
.w1{width:744.666667pt;}
.x0{left:0.000000pt;}
.xf{left:64.252000pt;}
.x19{left:69.868800pt;}
.x2{left:71.811067pt;}
.x16{left:77.049867pt;}
.xa{left:82.002800pt;}
.x1e{left:83.149600pt;}
.x10{left:86.645600pt;}
.x1c{left:90.708667pt;}
.xb{left:94.488133pt;}
.x9{left:96.125200pt;}
.x7{left:103.530133pt;}
.x5{left:119.660800pt;}
.x3{left:124.291467pt;}
.x8{left:145.227733pt;}
.x4{left:152.996533pt;}
.xe{left:173.705733pt;}
.x1{left:181.264800pt;}
.x18{left:193.813467pt;}
.x15{left:196.987467pt;}
.x17{left:220.584400pt;}
.x1a{left:257.963067pt;}
.xd{left:316.973333pt;}
.x6{left:320.213333pt;}
.x11{left:389.291333pt;}
.x13{left:396.850400pt;}
.x1f{left:408.188933pt;}
.x12{left:411.968400pt;}
.x1d{left:414.897600pt;}
.x14{left:419.527600pt;}
.x1b{left:510.766267pt;}
.xc{left:538.747200pt;}
}




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