
    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_a7b008ceec8c6d39c4db824b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_32541acdefe61dd62cfc67ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_8cb2ba44b3e741fed8440234.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_fee3163ae354d31c1f466454.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977500;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_8bff087627b08e4ceda6a535.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730000;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_006db041d6924c7fde6b64fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_f5a0b71bd4d51a877165becd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_d6e6045713632e71f87939c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978000px;}
.v5{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.982000px;}
.v6{vertical-align:19.979400px;}
.v1{vertical-align:22.577400px;}
.ls14{letter-spacing:-8.976000px;}
.ls29{letter-spacing:-2.340000px;}
.ls11{letter-spacing:-1.998000px;}
.ls18{letter-spacing:-1.404000px;}
.ls17{letter-spacing:-1.134000px;}
.ls26{letter-spacing:-1.020000px;}
.lsc{letter-spacing:-0.858000px;}
.ls24{letter-spacing:-0.780000px;}
.ls16{letter-spacing:-0.660000px;}
.ls27{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.594000px;}
.ls6{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.528000px;}
.ls25{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.330000px;}
.ls23{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.271200px;}
.ls21{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264000px;}
.ls28{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.228000px;}
.lse{letter-spacing:-0.198000px;}
.ls5{letter-spacing:-0.192000px;}
.ls2{letter-spacing:-0.184800px;}
.ls7{letter-spacing:-0.037800px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000048px;}
.ls22{letter-spacing:0.000600px;}
.ls19{letter-spacing:0.269400px;}
.lsf{letter-spacing:0.270000px;}
.ls10{letter-spacing:0.324000px;}
.ls1c{letter-spacing:0.538800px;}
.lsa{letter-spacing:0.871200px;}
.ls20{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.319400px;}
.ls1a{letter-spacing:919.560042px;}
.ls1e{letter-spacing:922.286832px;}
.ls1d{letter-spacing:925.734390px;}
.ls1b{letter-spacing:926.810106px;}
.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;}
}
.ws7{word-spacing:-17.487600px;}
.ws66{word-spacing:-15.363600px;}
.ws3f{word-spacing:-15.114000px;}
.ws74{word-spacing:-14.982000px;}
.ws8f{word-spacing:-14.916000px;}
.ws75{word-spacing:-14.850000px;}
.ws3d{word-spacing:-14.586000px;}
.wsb7{word-spacing:-13.740000px;}
.ws9d{word-spacing:-13.620000px;}
.ws6{word-spacing:-13.338000px;}
.ws92{word-spacing:-13.140000px;}
.ws91{word-spacing:-13.020000px;}
.wsb6{word-spacing:-12.720000px;}
.ws65{word-spacing:-12.528000px;}
.ws63{word-spacing:-12.258000px;}
.ws64{word-spacing:-11.880000px;}
.ws77{word-spacing:-11.718000px;}
.ws3{word-spacing:-11.263200px;}
.ws62{word-spacing:-11.178000px;}
.ws2{word-spacing:-10.896000px;}
.ws4{word-spacing:-10.320000px;}
.ws5{word-spacing:-10.054800px;}
.wsb{word-spacing:-9.712800px;}
.ws0{word-spacing:-8.972720px;}
.ws3e{word-spacing:-8.811462px;}
.ws7e{word-spacing:-8.734506px;}
.wsc{word-spacing:-8.688000px;}
.ws7d{word-spacing:-7.940460px;}
.ws93{word-spacing:-7.660620px;}
.ws1{word-spacing:-7.209378px;}
.ws2b{word-spacing:-3.828000px;}
.ws6f{word-spacing:-3.762000px;}
.ws9a{word-spacing:-2.970000px;}
.ws4f{word-spacing:-2.904000px;}
.ws6b{word-spacing:-2.838000px;}
.wsa8{word-spacing:-2.580000px;}
.ws4b{word-spacing:-2.574000px;}
.ws83{word-spacing:-2.508000px;}
.ws43{word-spacing:-2.442000px;}
.ws35{word-spacing:-2.376000px;}
.wsa2{word-spacing:-2.340000px;}
.ws25{word-spacing:-2.310000px;}
.wsbf{word-spacing:-2.280000px;}
.ws46{word-spacing:-2.244000px;}
.ws5b{word-spacing:-2.112000px;}
.wsb4{word-spacing:-2.040000px;}
.ws9c{word-spacing:-1.980000px;}
.ws9b{word-spacing:-1.920000px;}
.wsa7{word-spacing:-1.740000px;}
.ws31{word-spacing:-1.716000px;}
.wsc8{word-spacing:-1.680000px;}
.wsba{word-spacing:-1.560000px;}
.ws37{word-spacing:-1.452000px;}
.ws33{word-spacing:-1.386000px;}
.ws73{word-spacing:-1.320000px;}
.ws4e{word-spacing:-1.254000px;}
.wsbb{word-spacing:-1.080000px;}
.ws12{word-spacing:-1.026000px;}
.ws28{word-spacing:-0.990000px;}
.ws99{word-spacing:-0.858000px;}
.wsc6{word-spacing:-0.840000px;}
.ws20{word-spacing:-0.752400px;}
.ws2e{word-spacing:-0.660000px;}
.ws6d{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.396000px;}
.wsbc{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.324000px;}
.ws2c{word-spacing:-0.264000px;}
.ws59{word-spacing:-0.198000px;}
.wsc5{word-spacing:-0.120000px;}
.ws30{word-spacing:-0.066000px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:0.037800px;}
.ws86{word-spacing:0.066000px;}
.ws10{word-spacing:0.108000px;}
.wsbd{word-spacing:0.120000px;}
.ws19{word-spacing:0.132000px;}
.ws9{word-spacing:0.184800px;}
.ws1e{word-spacing:0.189000px;}
.ws55{word-spacing:0.198000px;}
.wsc4{word-spacing:0.240000px;}
.ws56{word-spacing:0.264000px;}
.ws1f{word-spacing:0.264600px;}
.wsa{word-spacing:0.271200px;}
.ws18{word-spacing:0.330000px;}
.wsa4{word-spacing:0.360000px;}
.ws41{word-spacing:0.396000px;}
.wscc{word-spacing:0.420000px;}
.ws16{word-spacing:0.432000px;}
.ws29{word-spacing:0.462000px;}
.ws17{word-spacing:0.528000px;}
.wsca{word-spacing:0.540000px;}
.ws26{word-spacing:0.594000px;}
.wsb3{word-spacing:0.660000px;}
.ws14{word-spacing:0.702000px;}
.ws54{word-spacing:0.726000px;}
.ws1d{word-spacing:0.756000px;}
.ws70{word-spacing:0.792000px;}
.ws3a{word-spacing:0.858000px;}
.ws87{word-spacing:0.960000px;}
.ws1b{word-spacing:0.990000px;}
.wsb1{word-spacing:1.020000px;}
.ws34{word-spacing:1.056000px;}
.ws4a{word-spacing:1.320000px;}
.ws52{word-spacing:1.386000px;}
.ws8a{word-spacing:1.452000px;}
.ws27{word-spacing:1.518000px;}
.wsc1{word-spacing:1.560000px;}
.ws8b{word-spacing:1.584000px;}
.wsb9{word-spacing:1.620000px;}
.ws32{word-spacing:1.650000px;}
.ws11{word-spacing:1.674000px;}
.ws9f{word-spacing:1.680000px;}
.ws81{word-spacing:1.716000px;}
.wsb8{word-spacing:1.920000px;}
.ws96{word-spacing:1.980000px;}
.ws88{word-spacing:2.040000px;}
.ws2a{word-spacing:2.112000px;}
.ws36{word-spacing:2.178000px;}
.wsab{word-spacing:2.220000px;}
.ws8d{word-spacing:2.244000px;}
.wsb2{word-spacing:2.340000px;}
.ws1a{word-spacing:2.376000px;}
.ws49{word-spacing:2.442000px;}
.wsc7{word-spacing:2.520000px;}
.ws5c{word-spacing:2.574000px;}
.wsb0{word-spacing:2.640000px;}
.ws38{word-spacing:2.706000px;}
.ws9e{word-spacing:2.760000px;}
.ws8e{word-spacing:2.772000px;}
.ws5d{word-spacing:2.838000px;}
.ws15{word-spacing:2.862000px;}
.wse{word-spacing:2.880000px;}
.wsbe{word-spacing:2.940000px;}
.ws97{word-spacing:2.970000px;}
.ws42{word-spacing:3.036000px;}
.ws47{word-spacing:3.102000px;}
.wsaf{word-spacing:3.240000px;}
.ws40{word-spacing:3.300000px;}
.ws45{word-spacing:3.498000px;}
.wscb{word-spacing:3.660000px;}
.wsae{word-spacing:3.720000px;}
.ws51{word-spacing:3.828000px;}
.wsa6{word-spacing:3.840000px;}
.ws5a{word-spacing:3.894000px;}
.ws4d{word-spacing:3.960000px;}
.wsd{word-spacing:4.032000px;}
.wsc0{word-spacing:4.200000px;}
.wsc2{word-spacing:4.260000px;}
.ws7f{word-spacing:4.290000px;}
.wsa3{word-spacing:4.320000px;}
.ws94{word-spacing:4.356000px;}
.ws3b{word-spacing:4.422000px;}
.ws3c{word-spacing:4.488000px;}
.ws6e{word-spacing:4.752000px;}
.ws21{word-spacing:4.818000px;}
.ws69{word-spacing:4.860000px;}
.ws82{word-spacing:4.884000px;}
.wsa0{word-spacing:4.920000px;}
.ws71{word-spacing:4.950000px;}
.ws6a{word-spacing:5.100000px;}
.ws39{word-spacing:5.148000px;}
.wsa5{word-spacing:5.280000px;}
.ws50{word-spacing:5.346000px;}
.ws57{word-spacing:5.412000px;}
.wsa9{word-spacing:5.520000px;}
.ws48{word-spacing:5.676000px;}
.wscd{word-spacing:5.880000px;}
.wsa1{word-spacing:5.940000px;}
.ws89{word-spacing:6.072000px;}
.ws95{word-spacing:6.204000px;}
.wsc3{word-spacing:6.660000px;}
.ws4c{word-spacing:6.732000px;}
.ws2f{word-spacing:6.930000px;}
.wsc9{word-spacing:7.020000px;}
.ws2d{word-spacing:7.062000px;}
.ws68{word-spacing:7.260000px;}
.wsb5{word-spacing:7.380000px;}
.ws22{word-spacing:7.590000px;}
.ws44{word-spacing:7.656000px;}
.ws6c{word-spacing:7.722000px;}
.ws80{word-spacing:7.854000px;}
.ws84{word-spacing:7.986000px;}
.ws23{word-spacing:8.184000px;}
.ws58{word-spacing:8.382000px;}
.wsaa{word-spacing:8.400000px;}
.ws8c{word-spacing:8.514000px;}
.wsac{word-spacing:8.640000px;}
.ws53{word-spacing:8.844000px;}
.ws85{word-spacing:8.976000px;}
.ws98{word-spacing:9.042000px;}
.ws67{word-spacing:10.164000px;}
.wsad{word-spacing:10.200000px;}
.ws24{word-spacing:13.200000px;}
.ws5e{word-spacing:177.105600px;}
.ws5f{word-spacing:233.110800px;}
.ws61{word-spacing:318.303000px;}
.ws60{word-spacing:351.946800px;}
.ws7c{word-spacing:402.648000px;}
.ws7b{word-spacing:414.783600px;}
.ws78{word-spacing:415.650000px;}
.ws7a{word-spacing:424.476000px;}
.ws79{word-spacing:425.448600px;}
.ws76{word-spacing:467.328000px;}
.ws90{word-spacing:506.935800px;}
._1a{margin-left:-12.018804px;}
._6{margin-left:-9.241392px;}
._5{margin-left:-8.187408px;}
._9{margin-left:-7.097904px;}
._7{margin-left:-5.685768px;}
._3{margin-left:-4.375836px;}
._4{margin-left:-3.344976px;}
._2{margin-left:-2.251392px;}
._0{margin-left:-1.164240px;}
._1{width:1.173480px;}
._8{width:2.193312px;}
._a{width:3.207264px;}
._11{width:7.722000px;}
._10{width:9.053784px;}
._d{width:155.142000px;}
._c{width:167.400000px;}
._f{width:179.658000px;}
._e{width:191.916000px;}
._b{width:222.907800px;}
._16{width:403.926912px;}
._15{width:405.114912px;}
._13{width:415.944000px;}
._14{width:418.725000px;}
._17{width:428.207040px;}
._12{width:488.124600px;}
._18{width:764.322240px;}
._19{width:923.055600px;}
.fc1{color:rgb(71,106,28);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fse{font-size:34.980000px;}
.fs7{font-size:37.800000px;}
.fsc{font-size:38.478000px;}
.fs2{font-size:39.527400px;}
.fsa{font-size:39.600000px;}
.fsb{font-size:42.000000px;}
.fs5{font-size:45.600000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:67.800000px;}
.fs8{font-size:70.800000px;}
.fs0{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y20{bottom:56.646750px;}
.y1f{bottom:69.246750px;}
.y1e{bottom:81.846750px;}
.y48{bottom:84.033000px;}
.ycd{bottom:92.499150px;}
.y94{bottom:93.155850px;}
.y47{bottom:103.833000px;}
.ycc{bottom:110.499150px;}
.y93{bottom:112.955850px;}
.y1b{bottom:123.633000px;}
.ycb{bottom:128.499150px;}
.y92{bottom:141.259800px;}
.y1a{bottom:143.433000px;}
.yca{bottom:146.499150px;}
.y46{bottom:154.785750px;}
.y19{bottom:163.233000px;}
.yc9{bottom:164.499150px;}
.yc8{bottom:182.499150px;}
.y18{bottom:183.033000px;}
.y91{bottom:195.075450px;}
.yc7{bottom:200.499150px;}
.y17{bottom:202.833000px;}
.y90{bottom:214.875450px;}
.yc6{bottom:218.499150px;}
.y16{bottom:222.633000px;}
.yf4{bottom:232.874700px;}
.y8f{bottom:234.675450px;}
.yc5{bottom:236.499150px;}
.y45{bottom:242.433000px;}
.yf3{bottom:250.874700px;}
.y8e{bottom:254.475450px;}
.yc4{bottom:254.499150px;}
.y44{bottom:262.233000px;}
.yf2{bottom:268.874700px;}
.y15{bottom:270.555900px;}
.yc3{bottom:272.499150px;}
.y8d{bottom:274.275450px;}
.y43{bottom:282.033000px;}
.yf1{bottom:286.874700px;}
.y4a{bottom:290.409450px;}
.yc2{bottom:290.499150px;}
.y8c{bottom:294.075450px;}
.y6e{bottom:301.442250px;}
.y42{bottom:301.833000px;}
.yf0{bottom:304.874700px;}
.yc1{bottom:308.499150px;}
.y8b{bottom:313.875450px;}
.y49{bottom:318.713400px;}
.y41{bottom:321.633000px;}
.yef{bottom:322.874700px;}
.yc0{bottom:326.499150px;}
.y14{bottom:328.623600px;}
.y8a{bottom:333.675450px;}
.yee{bottom:340.874700px;}
.y40{bottom:341.433000px;}
.ybf{bottom:344.499150px;}
.y13{bottom:346.623600px;}
.y89{bottom:353.475450px;}
.y6d{bottom:355.445550px;}
.y6b{bottom:358.252650px;}
.y7c{bottom:358.493700px;}
.yed{bottom:358.874700px;}
.y3f{bottom:361.233000px;}
.ybe{bottom:362.499150px;}
.y7b{bottom:371.498700px;}
.y6a{bottom:374.452650px;}
.yec{bottom:376.874700px;}
.y6c{bottom:377.259900px;}
.ybd{bottom:380.499150px;}
.y3e{bottom:381.033000px;}
.y88{bottom:381.779400px;}
.y12{bottom:384.425100px;}
.y7a{bottom:389.498700px;}
.yeb{bottom:394.874700px;}
.ybc{bottom:398.499150px;}
.y69{bottom:399.074250px;}
.y3d{bottom:400.833000px;}
.y67{bottom:401.881350px;}
.y11{bottom:402.425100px;}
.y79{bottom:407.498700px;}
.yea{bottom:412.874700px;}
.ybb{bottom:416.499150px;}
.y66{bottom:418.081350px;}
.y10{bottom:420.425100px;}
.y3c{bottom:420.633000px;}
.y68{bottom:420.888600px;}
.ye9{bottom:430.874700px;}
.yba{bottom:434.499150px;}
.y87{bottom:435.595200px;}
.yf{bottom:438.425100px;}
.y78{bottom:438.442050px;}
.y3b{bottom:440.433000px;}
.y65{bottom:442.702950px;}
.y63{bottom:445.510050px;}
.ye8{bottom:448.874700px;}
.yb9{bottom:452.499150px;}
.y86{bottom:455.395200px;}
.ye{bottom:456.425100px;}
.y3a{bottom:460.233000px;}
.y77{bottom:460.256400px;}
.y62{bottom:461.710050px;}
.y64{bottom:464.517300px;}
.ye7{bottom:466.874700px;}
.yb8{bottom:470.499150px;}
.yd{bottom:474.425100px;}
.y85{bottom:475.195200px;}
.y39{bottom:480.033000px;}
.y76{bottom:482.070750px;}
.ye6{bottom:484.874700px;}
.y61{bottom:486.331650px;}
.yb7{bottom:488.499150px;}
.y5f{bottom:489.138900px;}
.yc{bottom:492.425100px;}
.y84{bottom:494.995200px;}
.y38{bottom:499.833000px;}
.ye5{bottom:502.874700px;}
.y75{bottom:503.885100px;}
.y5e{bottom:505.338750px;}
.yb6{bottom:506.499150px;}
.y60{bottom:508.146000px;}
.yb{bottom:510.425100px;}
.y83{bottom:514.795200px;}
.y37{bottom:519.633000px;}
.ye4{bottom:520.874700px;}
.yb5{bottom:524.499150px;}
.y74{bottom:525.699450px;}
.y5d{bottom:529.960350px;}
.y5b{bottom:532.767600px;}
.y82{bottom:534.595200px;}
.ye3{bottom:538.874700px;}
.y36{bottom:539.433000px;}
.yb4{bottom:542.499150px;}
.y73{bottom:547.513800px;}
.y5a{bottom:548.967600px;}
.y5c{bottom:551.774700px;}
.y81{bottom:554.395200px;}
.ye2{bottom:556.874700px;}
.y35{bottom:559.233000px;}
.yb3{bottom:560.499150px;}
.y72{bottom:569.328300px;}
.ya{bottom:570.817200px;}
.y59{bottom:573.589050px;}
.y80{bottom:574.195200px;}
.ye1{bottom:574.874700px;}
.y57{bottom:576.396300px;}
.yb2{bottom:578.499150px;}
.y34{bottom:579.033000px;}
.y9{bottom:588.817200px;}
.y71{bottom:591.142650px;}
.y56{bottom:592.596300px;}
.ye0{bottom:592.874700px;}
.y7f{bottom:593.995200px;}
.y58{bottom:595.403400px;}
.yb1{bottom:596.499150px;}
.y33{bottom:598.833000px;}
.y8{bottom:606.817200px;}
.ydf{bottom:610.874700px;}
.y70{bottom:612.957000px;}
.y7e{bottom:613.795200px;}
.yb0{bottom:614.499150px;}
.y55{bottom:617.217750px;}
.y32{bottom:618.633000px;}
.y53{bottom:620.025000px;}
.yde{bottom:628.874700px;}
.yaf{bottom:632.499150px;}
.y7{bottom:633.321150px;}
.y7d{bottom:633.595200px;}
.y6f{bottom:634.771350px;}
.y52{bottom:636.225000px;}
.y31{bottom:638.433000px;}
.y54{bottom:639.032250px;}
.ydd{bottom:646.874700px;}
.yae{bottom:650.499150px;}
.y30{bottom:658.233000px;}
.y51{bottom:660.846600px;}
.y4f{bottom:663.653700px;}
.ydc{bottom:664.874700px;}
.yad{bottom:668.499150px;}
.y6{bottom:671.122500px;}
.y2f{bottom:678.033000px;}
.y4e{bottom:679.853700px;}
.y50{bottom:682.660950px;}
.ydb{bottom:682.874700px;}
.y9f{bottom:683.196750px;}
.yac{bottom:686.499150px;}
.y2e{bottom:697.833000px;}
.yda{bottom:700.874700px;}
.y9e{bottom:701.196750px;}
.y4d{bottom:704.475300px;}
.yab{bottom:704.499150px;}
.y5{bottom:704.915550px;}
.y2d{bottom:717.633000px;}
.yd9{bottom:718.874700px;}
.y9d{bottom:719.196750px;}
.yaa{bottom:722.499150px;}
.y4{bottom:722.915550px;}
.yd8{bottom:736.874700px;}
.y2c{bottom:737.433000px;}
.y4c{bottom:739.233000px;}
.ya9{bottom:740.499150px;}
.y9c{bottom:750.140100px;}
.y3{bottom:753.427950px;}
.yd7{bottom:754.874700px;}
.y2b{bottom:757.233000px;}
.ya8{bottom:758.499150px;}
.y4b{bottom:759.033000px;}
.y9b{bottom:771.954600px;}
.yd6{bottom:772.874700px;}
.ya7{bottom:776.499150px;}
.y2a{bottom:777.033000px;}
.yd5{bottom:790.874700px;}
.y9a{bottom:793.768950px;}
.ya6{bottom:794.499150px;}
.y29{bottom:796.833000px;}
.yd4{bottom:808.874700px;}
.y2{bottom:809.118750px;}
.ya5{bottom:812.499150px;}
.y99{bottom:815.583300px;}
.y28{bottom:816.633000px;}
.yd3{bottom:826.874700px;}
.ya4{bottom:830.499150px;}
.y27{bottom:836.433000px;}
.y98{bottom:837.397650px;}
.y1{bottom:839.118750px;}
.yd2{bottom:844.874700px;}
.ya3{bottom:848.499150px;}
.y26{bottom:856.233000px;}
.y97{bottom:859.212000px;}
.yd1{bottom:862.874700px;}
.ya2{bottom:866.499150px;}
.y25{bottom:876.033000px;}
.yd0{bottom:880.874700px;}
.y96{bottom:881.026350px;}
.ya1{bottom:884.499150px;}
.y24{bottom:895.833000px;}
.ycf{bottom:898.874700px;}
.y21{bottom:906.366300px;}
.ya0{bottom:913.796700px;}
.y23{bottom:915.633000px;}
.y95{bottom:915.784200px;}
.yce{bottom:916.874700px;}
.y1d{bottom:931.272000px;}
.y1c{bottom:946.272000px;}
.y22{bottom:961.153800px;}
.h4{height:22.415184px;}
.h11{height:26.235000px;}
.hb{height:29.007000px;}
.h6{height:29.106000px;}
.hc{height:32.340000px;}
.h5{height:36.000000px;}
.hf{height:38.556000px;}
.h7{height:39.555000px;}
.h8{height:40.500000px;}
.h10{height:41.593500px;}
.he{height:45.000000px;}
.ha{height:49.500000px;}
.hd{height:50.551200px;}
.h9{height:51.861000px;}
.h3{height:52.222950px;}
.h2{height:67.683000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x4{left:78.661350px;}
.x9{left:100.439850px;}
.x1{left:102.752700px;}
.x2{left:104.793300px;}
.xe{left:107.190450px;}
.xa{left:110.558850px;}
.xd{left:115.135050px;}
.xb{left:124.234050px;}
.x12{left:126.653250px;}
.x10{left:129.387000px;}
.x13{left:131.418600px;}
.x11{left:134.597850px;}
.x17{left:142.695450px;}
.x14{left:157.416450px;}
.x15{left:181.510650px;}
.x16{left:183.323100px;}
.x3{left:194.391450px;}
.xc{left:204.420600px;}
.xf{left:274.568100px;}
.x8{left:302.439150px;}
.x7{left:432.403950px;}
.x6{left:445.181550px;}
.x5{left:493.092900px;}
@media print{
.v3{vertical-align:-19.536000pt;}
.v5{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.984000pt;}
.v6{vertical-align:17.759467pt;}
.v1{vertical-align:20.068800pt;}
.ls14{letter-spacing:-7.978667pt;}
.ls29{letter-spacing:-2.080000pt;}
.ls11{letter-spacing:-1.776000pt;}
.ls18{letter-spacing:-1.248000pt;}
.ls17{letter-spacing:-1.008000pt;}
.ls26{letter-spacing:-0.906667pt;}
.lsc{letter-spacing:-0.762667pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls27{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.528000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls25{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.241067pt;}
.ls21{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.234667pt;}
.ls28{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.202667pt;}
.lse{letter-spacing:-0.176000pt;}
.ls5{letter-spacing:-0.170667pt;}
.ls2{letter-spacing:-0.164267pt;}
.ls7{letter-spacing:-0.033600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000043pt;}
.ls22{letter-spacing:0.000533pt;}
.ls19{letter-spacing:0.239467pt;}
.lsf{letter-spacing:0.240000pt;}
.ls10{letter-spacing:0.288000pt;}
.ls1c{letter-spacing:0.478933pt;}
.lsa{letter-spacing:0.774400pt;}
.ls20{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:1.172800pt;}
.ls1a{letter-spacing:817.386704pt;}
.ls1e{letter-spacing:819.810517pt;}
.ls1d{letter-spacing:822.875013pt;}
.ls1b{letter-spacing:823.831205pt;}
.ws7{word-spacing:-15.544533pt;}
.ws66{word-spacing:-13.656533pt;}
.ws3f{word-spacing:-13.434667pt;}
.ws74{word-spacing:-13.317333pt;}
.ws8f{word-spacing:-13.258667pt;}
.ws75{word-spacing:-13.200000pt;}
.ws3d{word-spacing:-12.965333pt;}
.wsb7{word-spacing:-12.213333pt;}
.ws9d{word-spacing:-12.106667pt;}
.ws6{word-spacing:-11.856000pt;}
.ws92{word-spacing:-11.680000pt;}
.ws91{word-spacing:-11.573333pt;}
.wsb6{word-spacing:-11.306667pt;}
.ws65{word-spacing:-11.136000pt;}
.ws63{word-spacing:-10.896000pt;}
.ws64{word-spacing:-10.560000pt;}
.ws77{word-spacing:-10.416000pt;}
.ws3{word-spacing:-10.011733pt;}
.ws62{word-spacing:-9.936000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws4{word-spacing:-9.173333pt;}
.ws5{word-spacing:-8.937600pt;}
.wsb{word-spacing:-8.633600pt;}
.ws0{word-spacing:-7.975751pt;}
.ws3e{word-spacing:-7.832411pt;}
.ws7e{word-spacing:-7.764005pt;}
.wsc{word-spacing:-7.722667pt;}
.ws7d{word-spacing:-7.058187pt;}
.ws93{word-spacing:-6.809440pt;}
.ws1{word-spacing:-6.408336pt;}
.ws2b{word-spacing:-3.402667pt;}
.ws6f{word-spacing:-3.344000pt;}
.ws9a{word-spacing:-2.640000pt;}
.ws4f{word-spacing:-2.581333pt;}
.ws6b{word-spacing:-2.522667pt;}
.wsa8{word-spacing:-2.293333pt;}
.ws4b{word-spacing:-2.288000pt;}
.ws83{word-spacing:-2.229333pt;}
.ws43{word-spacing:-2.170667pt;}
.ws35{word-spacing:-2.112000pt;}
.wsa2{word-spacing:-2.080000pt;}
.ws25{word-spacing:-2.053333pt;}
.wsbf{word-spacing:-2.026667pt;}
.ws46{word-spacing:-1.994667pt;}
.ws5b{word-spacing:-1.877333pt;}
.wsb4{word-spacing:-1.813333pt;}
.ws9c{word-spacing:-1.760000pt;}
.ws9b{word-spacing:-1.706667pt;}
.wsa7{word-spacing:-1.546667pt;}
.ws31{word-spacing:-1.525333pt;}
.wsc8{word-spacing:-1.493333pt;}
.wsba{word-spacing:-1.386667pt;}
.ws37{word-spacing:-1.290667pt;}
.ws33{word-spacing:-1.232000pt;}
.ws73{word-spacing:-1.173333pt;}
.ws4e{word-spacing:-1.114667pt;}
.wsbb{word-spacing:-0.960000pt;}
.ws12{word-spacing:-0.912000pt;}
.ws28{word-spacing:-0.880000pt;}
.ws99{word-spacing:-0.762667pt;}
.wsc6{word-spacing:-0.746667pt;}
.ws20{word-spacing:-0.668800pt;}
.ws2e{word-spacing:-0.586667pt;}
.ws6d{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.352000pt;}
.wsbc{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.288000pt;}
.ws2c{word-spacing:-0.234667pt;}
.ws59{word-spacing:-0.176000pt;}
.wsc5{word-spacing:-0.106667pt;}
.ws30{word-spacing:-0.058667pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:0.033600pt;}
.ws86{word-spacing:0.058667pt;}
.ws10{word-spacing:0.096000pt;}
.wsbd{word-spacing:0.106667pt;}
.ws19{word-spacing:0.117333pt;}
.ws9{word-spacing:0.164267pt;}
.ws1e{word-spacing:0.168000pt;}
.ws55{word-spacing:0.176000pt;}
.wsc4{word-spacing:0.213333pt;}
.ws56{word-spacing:0.234667pt;}
.ws1f{word-spacing:0.235200pt;}
.wsa{word-spacing:0.241067pt;}
.ws18{word-spacing:0.293333pt;}
.wsa4{word-spacing:0.320000pt;}
.ws41{word-spacing:0.352000pt;}
.wscc{word-spacing:0.373333pt;}
.ws16{word-spacing:0.384000pt;}
.ws29{word-spacing:0.410667pt;}
.ws17{word-spacing:0.469333pt;}
.wsca{word-spacing:0.480000pt;}
.ws26{word-spacing:0.528000pt;}
.wsb3{word-spacing:0.586667pt;}
.ws14{word-spacing:0.624000pt;}
.ws54{word-spacing:0.645333pt;}
.ws1d{word-spacing:0.672000pt;}
.ws70{word-spacing:0.704000pt;}
.ws3a{word-spacing:0.762667pt;}
.ws87{word-spacing:0.853333pt;}
.ws1b{word-spacing:0.880000pt;}
.wsb1{word-spacing:0.906667pt;}
.ws34{word-spacing:0.938667pt;}
.ws4a{word-spacing:1.173333pt;}
.ws52{word-spacing:1.232000pt;}
.ws8a{word-spacing:1.290667pt;}
.ws27{word-spacing:1.349333pt;}
.wsc1{word-spacing:1.386667pt;}
.ws8b{word-spacing:1.408000pt;}
.wsb9{word-spacing:1.440000pt;}
.ws32{word-spacing:1.466667pt;}
.ws11{word-spacing:1.488000pt;}
.ws9f{word-spacing:1.493333pt;}
.ws81{word-spacing:1.525333pt;}
.wsb8{word-spacing:1.706667pt;}
.ws96{word-spacing:1.760000pt;}
.ws88{word-spacing:1.813333pt;}
.ws2a{word-spacing:1.877333pt;}
.ws36{word-spacing:1.936000pt;}
.wsab{word-spacing:1.973333pt;}
.ws8d{word-spacing:1.994667pt;}
.wsb2{word-spacing:2.080000pt;}
.ws1a{word-spacing:2.112000pt;}
.ws49{word-spacing:2.170667pt;}
.wsc7{word-spacing:2.240000pt;}
.ws5c{word-spacing:2.288000pt;}
.wsb0{word-spacing:2.346667pt;}
.ws38{word-spacing:2.405333pt;}
.ws9e{word-spacing:2.453333pt;}
.ws8e{word-spacing:2.464000pt;}
.ws5d{word-spacing:2.522667pt;}
.ws15{word-spacing:2.544000pt;}
.wse{word-spacing:2.560000pt;}
.wsbe{word-spacing:2.613333pt;}
.ws97{word-spacing:2.640000pt;}
.ws42{word-spacing:2.698667pt;}
.ws47{word-spacing:2.757333pt;}
.wsaf{word-spacing:2.880000pt;}
.ws40{word-spacing:2.933333pt;}
.ws45{word-spacing:3.109333pt;}
.wscb{word-spacing:3.253333pt;}
.wsae{word-spacing:3.306667pt;}
.ws51{word-spacing:3.402667pt;}
.wsa6{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.461333pt;}
.ws4d{word-spacing:3.520000pt;}
.wsd{word-spacing:3.584000pt;}
.wsc0{word-spacing:3.733333pt;}
.wsc2{word-spacing:3.786667pt;}
.ws7f{word-spacing:3.813333pt;}
.wsa3{word-spacing:3.840000pt;}
.ws94{word-spacing:3.872000pt;}
.ws3b{word-spacing:3.930667pt;}
.ws3c{word-spacing:3.989333pt;}
.ws6e{word-spacing:4.224000pt;}
.ws21{word-spacing:4.282667pt;}
.ws69{word-spacing:4.320000pt;}
.ws82{word-spacing:4.341333pt;}
.wsa0{word-spacing:4.373333pt;}
.ws71{word-spacing:4.400000pt;}
.ws6a{word-spacing:4.533333pt;}
.ws39{word-spacing:4.576000pt;}
.wsa5{word-spacing:4.693333pt;}
.ws50{word-spacing:4.752000pt;}
.ws57{word-spacing:4.810667pt;}
.wsa9{word-spacing:4.906667pt;}
.ws48{word-spacing:5.045333pt;}
.wscd{word-spacing:5.226667pt;}
.wsa1{word-spacing:5.280000pt;}
.ws89{word-spacing:5.397333pt;}
.ws95{word-spacing:5.514667pt;}
.wsc3{word-spacing:5.920000pt;}
.ws4c{word-spacing:5.984000pt;}
.ws2f{word-spacing:6.160000pt;}
.wsc9{word-spacing:6.240000pt;}
.ws2d{word-spacing:6.277333pt;}
.ws68{word-spacing:6.453333pt;}
.wsb5{word-spacing:6.560000pt;}
.ws22{word-spacing:6.746667pt;}
.ws44{word-spacing:6.805333pt;}
.ws6c{word-spacing:6.864000pt;}
.ws80{word-spacing:6.981333pt;}
.ws84{word-spacing:7.098667pt;}
.ws23{word-spacing:7.274667pt;}
.ws58{word-spacing:7.450667pt;}
.wsaa{word-spacing:7.466667pt;}
.ws8c{word-spacing:7.568000pt;}
.wsac{word-spacing:7.680000pt;}
.ws53{word-spacing:7.861333pt;}
.ws85{word-spacing:7.978667pt;}
.ws98{word-spacing:8.037333pt;}
.ws67{word-spacing:9.034667pt;}
.wsad{word-spacing:9.066667pt;}
.ws24{word-spacing:11.733333pt;}
.ws5e{word-spacing:157.427200pt;}
.ws5f{word-spacing:207.209600pt;}
.ws61{word-spacing:282.936000pt;}
.ws60{word-spacing:312.841600pt;}
.ws7c{word-spacing:357.909333pt;}
.ws7b{word-spacing:368.696533pt;}
.ws78{word-spacing:369.466667pt;}
.ws7a{word-spacing:377.312000pt;}
.ws79{word-spacing:378.176533pt;}
.ws76{word-spacing:415.402667pt;}
.ws90{word-spacing:450.609600pt;}
._1a{margin-left:-10.683381pt;}
._6{margin-left:-8.214571pt;}
._5{margin-left:-7.277696pt;}
._9{margin-left:-6.309248pt;}
._7{margin-left:-5.054016pt;}
._3{margin-left:-3.889632pt;}
._4{margin-left:-2.973312pt;}
._2{margin-left:-2.001237pt;}
._0{margin-left:-1.034880pt;}
._1{width:1.043093pt;}
._8{width:1.949611pt;}
._a{width:2.850901pt;}
._11{width:6.864000pt;}
._10{width:8.047808pt;}
._d{width:137.904000pt;}
._c{width:148.800000pt;}
._f{width:159.696000pt;}
._e{width:170.592000pt;}
._b{width:198.140267pt;}
._16{width:359.046144pt;}
._15{width:360.102144pt;}
._13{width:369.728000pt;}
._14{width:372.200000pt;}
._17{width:380.628480pt;}
._12{width:433.888533pt;}
._18{width:679.397547pt;}
._19{width:820.493867pt;}
.fs3{font-size:27.984000pt;}
.fse{font-size:31.093333pt;}
.fs7{font-size:33.600000pt;}
.fsc{font-size:34.202667pt;}
.fs2{font-size:35.135467pt;}
.fsa{font-size:35.200000pt;}
.fsb{font-size:37.333333pt;}
.fs5{font-size:40.533333pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:60.266667pt;}
.fs8{font-size:62.933333pt;}
.fs0{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:50.352667pt;}
.y1f{bottom:61.552667pt;}
.y1e{bottom:72.752667pt;}
.y48{bottom:74.696000pt;}
.ycd{bottom:82.221467pt;}
.y94{bottom:82.805200pt;}
.y47{bottom:92.296000pt;}
.ycc{bottom:98.221467pt;}
.y93{bottom:100.405200pt;}
.y1b{bottom:109.896000pt;}
.ycb{bottom:114.221467pt;}
.y92{bottom:125.564267pt;}
.y1a{bottom:127.496000pt;}
.yca{bottom:130.221467pt;}
.y46{bottom:137.587333pt;}
.y19{bottom:145.096000pt;}
.yc9{bottom:146.221467pt;}
.yc8{bottom:162.221467pt;}
.y18{bottom:162.696000pt;}
.y91{bottom:173.400400pt;}
.yc7{bottom:178.221467pt;}
.y17{bottom:180.296000pt;}
.y90{bottom:191.000400pt;}
.yc6{bottom:194.221467pt;}
.y16{bottom:197.896000pt;}
.yf4{bottom:206.999733pt;}
.y8f{bottom:208.600400pt;}
.yc5{bottom:210.221467pt;}
.y45{bottom:215.496000pt;}
.yf3{bottom:222.999733pt;}
.y8e{bottom:226.200400pt;}
.yc4{bottom:226.221467pt;}
.y44{bottom:233.096000pt;}
.yf2{bottom:238.999733pt;}
.y15{bottom:240.494133pt;}
.yc3{bottom:242.221467pt;}
.y8d{bottom:243.800400pt;}
.y43{bottom:250.696000pt;}
.yf1{bottom:254.999733pt;}
.y4a{bottom:258.141733pt;}
.yc2{bottom:258.221467pt;}
.y8c{bottom:261.400400pt;}
.y6e{bottom:267.948667pt;}
.y42{bottom:268.296000pt;}
.yf0{bottom:270.999733pt;}
.yc1{bottom:274.221467pt;}
.y8b{bottom:279.000400pt;}
.y49{bottom:283.300800pt;}
.y41{bottom:285.896000pt;}
.yef{bottom:286.999733pt;}
.yc0{bottom:290.221467pt;}
.y14{bottom:292.109867pt;}
.y8a{bottom:296.600400pt;}
.yee{bottom:302.999733pt;}
.y40{bottom:303.496000pt;}
.ybf{bottom:306.221467pt;}
.y13{bottom:308.109867pt;}
.y89{bottom:314.200400pt;}
.y6d{bottom:315.951600pt;}
.y6b{bottom:318.446800pt;}
.y7c{bottom:318.661067pt;}
.yed{bottom:318.999733pt;}
.y3f{bottom:321.096000pt;}
.ybe{bottom:322.221467pt;}
.y7b{bottom:330.221067pt;}
.y6a{bottom:332.846800pt;}
.yec{bottom:334.999733pt;}
.y6c{bottom:335.342133pt;}
.ybd{bottom:338.221467pt;}
.y3e{bottom:338.696000pt;}
.y88{bottom:339.359467pt;}
.y12{bottom:341.711200pt;}
.y7a{bottom:346.221067pt;}
.yeb{bottom:350.999733pt;}
.ybc{bottom:354.221467pt;}
.y69{bottom:354.732667pt;}
.y3d{bottom:356.296000pt;}
.y67{bottom:357.227867pt;}
.y11{bottom:357.711200pt;}
.y79{bottom:362.221067pt;}
.yea{bottom:366.999733pt;}
.ybb{bottom:370.221467pt;}
.y66{bottom:371.627867pt;}
.y10{bottom:373.711200pt;}
.y3c{bottom:373.896000pt;}
.y68{bottom:374.123200pt;}
.ye9{bottom:382.999733pt;}
.yba{bottom:386.221467pt;}
.y87{bottom:387.195733pt;}
.yf{bottom:389.711200pt;}
.y78{bottom:389.726267pt;}
.y3b{bottom:391.496000pt;}
.y65{bottom:393.513733pt;}
.y63{bottom:396.008933pt;}
.ye8{bottom:398.999733pt;}
.yb9{bottom:402.221467pt;}
.y86{bottom:404.795733pt;}
.ye{bottom:405.711200pt;}
.y3a{bottom:409.096000pt;}
.y77{bottom:409.116800pt;}
.y62{bottom:410.408933pt;}
.y64{bottom:412.904267pt;}
.ye7{bottom:414.999733pt;}
.yb8{bottom:418.221467pt;}
.yd{bottom:421.711200pt;}
.y85{bottom:422.395733pt;}
.y39{bottom:426.696000pt;}
.y76{bottom:428.507333pt;}
.ye6{bottom:430.999733pt;}
.y61{bottom:432.294800pt;}
.yb7{bottom:434.221467pt;}
.y5f{bottom:434.790133pt;}
.yc{bottom:437.711200pt;}
.y84{bottom:439.995733pt;}
.y38{bottom:444.296000pt;}
.ye5{bottom:446.999733pt;}
.y75{bottom:447.897867pt;}
.y5e{bottom:449.190000pt;}
.yb6{bottom:450.221467pt;}
.y60{bottom:451.685333pt;}
.yb{bottom:453.711200pt;}
.y83{bottom:457.595733pt;}
.y37{bottom:461.896000pt;}
.ye4{bottom:462.999733pt;}
.yb5{bottom:466.221467pt;}
.y74{bottom:467.288400pt;}
.y5d{bottom:471.075867pt;}
.y5b{bottom:473.571200pt;}
.y82{bottom:475.195733pt;}
.ye3{bottom:478.999733pt;}
.y36{bottom:479.496000pt;}
.yb4{bottom:482.221467pt;}
.y73{bottom:486.678933pt;}
.y5a{bottom:487.971200pt;}
.y5c{bottom:490.466400pt;}
.y81{bottom:492.795733pt;}
.ye2{bottom:494.999733pt;}
.y35{bottom:497.096000pt;}
.yb3{bottom:498.221467pt;}
.y72{bottom:506.069600pt;}
.ya{bottom:507.393067pt;}
.y59{bottom:509.856933pt;}
.y80{bottom:510.395733pt;}
.ye1{bottom:510.999733pt;}
.y57{bottom:512.352267pt;}
.yb2{bottom:514.221467pt;}
.y34{bottom:514.696000pt;}
.y9{bottom:523.393067pt;}
.y71{bottom:525.460133pt;}
.y56{bottom:526.752267pt;}
.ye0{bottom:526.999733pt;}
.y7f{bottom:527.995733pt;}
.y58{bottom:529.247467pt;}
.yb1{bottom:530.221467pt;}
.y33{bottom:532.296000pt;}
.y8{bottom:539.393067pt;}
.ydf{bottom:542.999733pt;}
.y70{bottom:544.850667pt;}
.y7e{bottom:545.595733pt;}
.yb0{bottom:546.221467pt;}
.y55{bottom:548.638000pt;}
.y32{bottom:549.896000pt;}
.y53{bottom:551.133333pt;}
.yde{bottom:558.999733pt;}
.yaf{bottom:562.221467pt;}
.y7{bottom:562.952133pt;}
.y7d{bottom:563.195733pt;}
.y6f{bottom:564.241200pt;}
.y52{bottom:565.533333pt;}
.y31{bottom:567.496000pt;}
.y54{bottom:568.028667pt;}
.ydd{bottom:574.999733pt;}
.yae{bottom:578.221467pt;}
.y30{bottom:585.096000pt;}
.y51{bottom:587.419200pt;}
.y4f{bottom:589.914400pt;}
.ydc{bottom:590.999733pt;}
.yad{bottom:594.221467pt;}
.y6{bottom:596.553333pt;}
.y2f{bottom:602.696000pt;}
.y4e{bottom:604.314400pt;}
.y50{bottom:606.809733pt;}
.ydb{bottom:606.999733pt;}
.y9f{bottom:607.286000pt;}
.yac{bottom:610.221467pt;}
.y2e{bottom:620.296000pt;}
.yda{bottom:622.999733pt;}
.y9e{bottom:623.286000pt;}
.y4d{bottom:626.200267pt;}
.yab{bottom:626.221467pt;}
.y5{bottom:626.591600pt;}
.y2d{bottom:637.896000pt;}
.yd9{bottom:638.999733pt;}
.y9d{bottom:639.286000pt;}
.yaa{bottom:642.221467pt;}
.y4{bottom:642.591600pt;}
.yd8{bottom:654.999733pt;}
.y2c{bottom:655.496000pt;}
.y4c{bottom:657.096000pt;}
.ya9{bottom:658.221467pt;}
.y9c{bottom:666.791200pt;}
.y3{bottom:669.713733pt;}
.yd7{bottom:670.999733pt;}
.y2b{bottom:673.096000pt;}
.ya8{bottom:674.221467pt;}
.y4b{bottom:674.696000pt;}
.y9b{bottom:686.181867pt;}
.yd6{bottom:686.999733pt;}
.ya7{bottom:690.221467pt;}
.y2a{bottom:690.696000pt;}
.yd5{bottom:702.999733pt;}
.y9a{bottom:705.572400pt;}
.ya6{bottom:706.221467pt;}
.y29{bottom:708.296000pt;}
.yd4{bottom:718.999733pt;}
.y2{bottom:719.216667pt;}
.ya5{bottom:722.221467pt;}
.y99{bottom:724.962933pt;}
.y28{bottom:725.896000pt;}
.yd3{bottom:734.999733pt;}
.ya4{bottom:738.221467pt;}
.y27{bottom:743.496000pt;}
.y98{bottom:744.353467pt;}
.y1{bottom:745.883333pt;}
.yd2{bottom:750.999733pt;}
.ya3{bottom:754.221467pt;}
.y26{bottom:761.096000pt;}
.y97{bottom:763.744000pt;}
.yd1{bottom:766.999733pt;}
.ya2{bottom:770.221467pt;}
.y25{bottom:778.696000pt;}
.yd0{bottom:782.999733pt;}
.y96{bottom:783.134533pt;}
.ya1{bottom:786.221467pt;}
.y24{bottom:796.296000pt;}
.ycf{bottom:798.999733pt;}
.y21{bottom:805.658933pt;}
.ya0{bottom:812.263733pt;}
.y23{bottom:813.896000pt;}
.y95{bottom:814.030400pt;}
.yce{bottom:814.999733pt;}
.y1d{bottom:827.797333pt;}
.y1c{bottom:841.130667pt;}
.y22{bottom:854.358933pt;}
.h4{height:19.924608pt;}
.h11{height:23.320000pt;}
.hb{height:25.784000pt;}
.h6{height:25.872000pt;}
.hc{height:28.746667pt;}
.h5{height:32.000000pt;}
.hf{height:34.272000pt;}
.h7{height:35.160000pt;}
.h8{height:36.000000pt;}
.h10{height:36.972000pt;}
.he{height:40.000000pt;}
.ha{height:44.000000pt;}
.hd{height:44.934400pt;}
.h9{height:46.098667pt;}
.h3{height:46.420400pt;}
.h2{height:60.162667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x4{left:69.921200pt;}
.x9{left:89.279867pt;}
.x1{left:91.335733pt;}
.x2{left:93.149600pt;}
.xe{left:95.280400pt;}
.xa{left:98.274533pt;}
.xd{left:102.342267pt;}
.xb{left:110.430267pt;}
.x12{left:112.580667pt;}
.x10{left:115.010667pt;}
.x13{left:116.816533pt;}
.x11{left:119.642533pt;}
.x17{left:126.840400pt;}
.x14{left:139.925733pt;}
.x15{left:161.342800pt;}
.x16{left:162.953867pt;}
.x3{left:172.792400pt;}
.xc{left:181.707200pt;}
.xf{left:244.060533pt;}
.x8{left:268.834800pt;}
.x7{left:384.359067pt;}
.x6{left:395.716933pt;}
.x5{left:438.304800pt;}
}




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