
    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_698aed5233879c311fcdfec0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_b5df382e99b0578b7c55370a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f4294a279955bf112ba053ae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.057617;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_f86eb02cc429e74e9e73e243.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_a549878ee60d711d6517ba69.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_ffc0ffcc52f0e0fde1b2a659.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_79715978be45d6256caa96a2.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_c2774285a7a8c526aa3ac232.woff')format("woff");}.ff8{font-family:ff8;line-height:0.844727;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_2985997e9810633ec2f4f375.woff')format("woff");}.ff9{font-family:ff9;line-height:0.966797;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_839d92c15b2b5f5430d6f16c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_834ea4985d80d392f179a8f9.woff')format("woff");}.ffb{font-family:ffb;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v7{vertical-align:-65.520000px;}
.vb{vertical-align:-59.040000px;}
.vc{vertical-align:-51.840000px;}
.v3{vertical-align:-48.960000px;}
.v9{vertical-align:-47.520000px;}
.v8{vertical-align:-36.720014px;}
.v5{vertical-align:-26.640000px;}
.v6{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:36.719999px;}
.v1{vertical-align:68.400000px;}
.v4{vertical-align:118.080000px;}
.ls27{letter-spacing:-13.860000px;}
.ls15{letter-spacing:-3.852000px;}
.ls19{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.738000px;}
.ls28{letter-spacing:-0.618000px;}
.ls25{letter-spacing:-0.468600px;}
.ls14{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.334800px;}
.ls1d{letter-spacing:-0.283800px;}
.ls24{letter-spacing:-0.190200px;}
.ls11{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.169800px;}
.ls13{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.054000px;}
.lsd{letter-spacing:-0.030240px;}
.ls12{letter-spacing:-0.018000px;}
.ls22{letter-spacing:-0.000720px;}
.lsc{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.026460px;}
.ls16{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.099600px;}
.ls5{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.157200px;}
.ls2c{letter-spacing:0.172200px;}
.ls2d{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.197400px;}
.lsf{letter-spacing:0.218400px;}
.ls2b{letter-spacing:0.229200px;}
.ls10{letter-spacing:0.251400px;}
.ls17{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.504000px;}
.ls23{letter-spacing:0.690000px;}
.ls1b{letter-spacing:0.876000px;}
.lsb{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.020000px;}
.ls2{letter-spacing:47.314080px;}
.lsa{letter-spacing:52.560000px;}
.ls1{letter-spacing:56.520000px;}
.ls9{letter-spacing:61.920000px;}
.ls3{letter-spacing:65.520000px;}
.ls6{letter-spacing:77.760000px;}
.ls4{letter-spacing:443.446560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-192.240000px;}
.ws74{word-spacing:-149.760000px;}
.ws70{word-spacing:-66.060000px;}
.wsaf{word-spacing:-59.940000px;}
.wse{word-spacing:-57.060000px;}
.wsae{word-spacing:-52.560000px;}
.wsa2{word-spacing:-50.040000px;}
.ws23{word-spacing:-49.500000px;}
.ws83{word-spacing:-48.311400px;}
.ws82{word-spacing:-48.278400px;}
.ws9d{word-spacing:-48.257400px;}
.wsb3{word-spacing:-48.232200px;}
.ws5a{word-spacing:-48.060000px;}
.wsa1{word-spacing:-45.144000px;}
.ws9e{word-spacing:-45.000000px;}
.ws72{word-spacing:-41.633280px;}
.wsd{word-spacing:-37.980000px;}
.ws75{word-spacing:-37.440000px;}
.wsa3{word-spacing:-33.466752px;}
.ws76{word-spacing:-33.426720px;}
.ws6f{word-spacing:-30.024000px;}
.ws73{word-spacing:-27.822240px;}
.ws18{word-spacing:-2.016000px;}
.ws77{word-spacing:-1.359720px;}
.ws62{word-spacing:-1.054080px;}
.ws42{word-spacing:-1.020000px;}
.wsc{word-spacing:-0.843120px;}
.ws81{word-spacing:-0.710880px;}
.ws56{word-spacing:-0.653760px;}
.ws57{word-spacing:-0.542160px;}
.ws59{word-spacing:-0.540720px;}
.wsb2{word-spacing:-0.331920px;}
.wsad{word-spacing:-0.023040px;}
.wsb4{word-spacing:0.000000px;}
.ws58{word-spacing:0.015120px;}
.wsa0{word-spacing:0.360000px;}
.ws5f{word-spacing:0.616320px;}
.ws28{word-spacing:1.032000px;}
.ws5e{word-spacing:1.148400px;}
.ws2a{word-spacing:1.440000px;}
.ws4{word-spacing:1.717680px;}
.ws60{word-spacing:1.860480px;}
.ws29{word-spacing:2.142000px;}
.ws0{word-spacing:2.475840px;}
.ws1{word-spacing:2.557440px;}
.ws2{word-spacing:2.590560px;}
.ws3{word-spacing:3.841920px;}
.ws24{word-spacing:4.374000px;}
.ws25{word-spacing:5.508000px;}
.ws26{word-spacing:5.634000px;}
.ws49{word-spacing:8.670240px;}
.ws4a{word-spacing:9.298800px;}
.ws48{word-spacing:9.357120px;}
.ws32{word-spacing:12.150000px;}
.ws2e{word-spacing:12.168000px;}
.ws2f{word-spacing:12.690000px;}
.ws30{word-spacing:12.888000px;}
.ws31{word-spacing:13.140000px;}
.ws52{word-spacing:14.088240px;}
.ws51{word-spacing:14.118240px;}
.ws27{word-spacing:15.048000px;}
.ws50{word-spacing:15.081840px;}
.wsaa{word-spacing:17.681040px;}
.wsa9{word-spacing:19.383120px;}
.ws7{word-spacing:22.477680px;}
.ws6{word-spacing:22.499280px;}
.wsa{word-spacing:22.680000px;}
.ws8{word-spacing:22.860000px;}
.wsa6{word-spacing:23.126400px;}
.ws5{word-spacing:23.428080px;}
.wsf{word-spacing:23.526000px;}
.wsb{word-spacing:24.157440px;}
.ws89{word-spacing:25.503120px;}
.ws85{word-spacing:26.536320px;}
.ws6a{word-spacing:27.007200px;}
.ws68{word-spacing:27.260640px;}
.ws69{word-spacing:27.289440px;}
.ws95{word-spacing:27.571440px;}
.ws9f{word-spacing:27.720000px;}
.ws91{word-spacing:27.899280px;}
.ws44{word-spacing:27.957888px;}
.ws94{word-spacing:28.009440px;}
.ws93{word-spacing:28.023120px;}
.ws84{word-spacing:28.087920px;}
.ws92{word-spacing:28.597440px;}
.ws86{word-spacing:28.632960px;}
.ws38{word-spacing:28.782000px;}
.ws3c{word-spacing:28.854000px;}
.ws3a{word-spacing:29.088000px;}
.ws88{word-spacing:29.197440px;}
.wsa8{word-spacing:29.326320px;}
.ws39{word-spacing:29.394000px;}
.ws8e{word-spacing:29.449440px;}
.ws90{word-spacing:29.591640px;}
.ws8a{word-spacing:29.697840px;}
.ws37{word-spacing:29.736000px;}
.ws21{word-spacing:29.754000px;}
.ws8f{word-spacing:29.770560px;}
.ws8c{word-spacing:29.917440px;}
.ws8d{word-spacing:30.041280px;}
.ws8b{word-spacing:30.077040px;}
.ws87{word-spacing:30.535200px;}
.ws3b{word-spacing:30.726000px;}
.ws3d{word-spacing:31.140000px;}
.ws20{word-spacing:33.408000px;}
.ws1f{word-spacing:34.764000px;}
.ws22{word-spacing:34.920000px;}
.ws4d{word-spacing:35.437680px;}
.ws4c{word-spacing:35.459280px;}
.ws4f{word-spacing:36.077760px;}
.ws4b{word-spacing:36.159120px;}
.ws4e{word-spacing:36.904680px;}
.ws3e{word-spacing:42.630000px;}
.ws41{word-spacing:43.380000px;}
.ws40{word-spacing:43.830000px;}
.ws3f{word-spacing:43.902000px;}
.ws7d{word-spacing:49.525200px;}
.ws7c{word-spacing:49.964400px;}
.ws55{word-spacing:54.014400px;}
.ws53{word-spacing:54.066240px;}
.ws54{word-spacing:54.179280px;}
.ws12{word-spacing:54.594000px;}
.ws10{word-spacing:54.618000px;}
.ws65{word-spacing:54.995040px;}
.ws66{word-spacing:55.369440px;}
.ws67{word-spacing:55.383120px;}
.ws11{word-spacing:55.422000px;}
.ws61{word-spacing:57.674880px;}
.wsa7{word-spacing:60.238800px;}
.wsa4{word-spacing:60.633360px;}
.ws19{word-spacing:61.062000px;}
.wsa5{word-spacing:61.370640px;}
.ws1c{word-spacing:61.650000px;}
.ws1b{word-spacing:61.668000px;}
.ws1d{word-spacing:61.758000px;}
.ws1e{word-spacing:67.662720px;}
.ws64{word-spacing:68.207760px;}
.ws1a{word-spacing:70.002000px;}
.ws9a{word-spacing:71.789760px;}
.ws97{word-spacing:72.071640px;}
.ws9b{word-spacing:72.149760px;}
.ws9c{word-spacing:72.451200px;}
.ws99{word-spacing:72.649440px;}
.ws98{word-spacing:72.857520px;}
.ws96{word-spacing:73.058400px;}
.ws5b{word-spacing:75.437280px;}
.ws33{word-spacing:79.236000px;}
.ws5d{word-spacing:85.623120px;}
.ws5c{word-spacing:85.859280px;}
.ws63{word-spacing:86.957280px;}
.ws46{word-spacing:93.533040px;}
.ws47{word-spacing:94.601520px;}
.ws45{word-spacing:95.751840px;}
.ws17{word-spacing:96.372000px;}
.ws16{word-spacing:96.984000px;}
.ws13{word-spacing:97.002000px;}
.ws14{word-spacing:97.902000px;}
.ws15{word-spacing:98.064000px;}
.wsb0{word-spacing:113.774160px;}
.wsb1{word-spacing:114.178176px;}
.ws6c{word-spacing:124.019280px;}
.ws6d{word-spacing:125.018640px;}
.ws6b{word-spacing:125.253360px;}
.ws2d{word-spacing:136.008000px;}
.ws2b{word-spacing:136.314000px;}
.ws2c{word-spacing:136.980000px;}
.ws34{word-spacing:139.590000px;}
.ws36{word-spacing:140.526000px;}
.ws35{word-spacing:141.480000px;}
.ws7e{word-spacing:152.580000px;}
.ws7f{word-spacing:153.424080px;}
.ws7b{word-spacing:234.873360px;}
.ws7a{word-spacing:237.906000px;}
.wsac{word-spacing:258.119280px;}
.wsab{word-spacing:258.799680px;}
.ws79{word-spacing:271.779840px;}
.ws43{word-spacing:310.746960px;}
.ws78{word-spacing:376.446000px;}
.ws71{word-spacing:405.126720px;}
.ws6e{word-spacing:517.453920px;}
.ws80{word-spacing:731.225280px;}
._8{margin-left:-28.543680px;}
._c{margin-left:-26.249760px;}
._b{margin-left:-24.992448px;}
._36{margin-left:-19.863840px;}
._9{margin-left:-16.889760px;}
._38{margin-left:-14.040000px;}
._13{margin-left:-11.718288px;}
._a{margin-left:-8.907168px;}
._25{margin-left:-7.666560px;}
._f{margin-left:-6.222384px;}
._0{margin-left:-4.839600px;}
._2{margin-left:-3.018000px;}
._7{margin-left:-1.259712px;}
._6{width:1.103280px;}
._37{width:2.136432px;}
._2a{width:3.207600px;}
._34{width:24.732000px;}
._35{width:26.069520px;}
._26{width:32.352480px;}
._2f{width:34.529040px;}
._30{width:37.156080px;}
._5{width:48.376080px;}
._4{width:50.376480px;}
._1{width:52.211040px;}
._12{width:55.644000px;}
._1b{width:58.678320px;}
._2d{width:60.102720px;}
._2e{width:61.361232px;}
._15{width:62.952000px;}
._1d{width:64.158384px;}
._14{width:65.967600px;}
._3{width:72.218880px;}
._19{width:77.466192px;}
._31{width:79.165440px;}
._18{width:81.024000px;}
._11{width:83.916000px;}
._1c{width:85.627440px;}
._1e{width:103.947120px;}
._20{width:106.746960px;}
._e{width:112.950000px;}
._10{width:118.721952px;}
._33{width:121.296912px;}
._16{width:129.912000px;}
._1f{width:132.843600px;}
._d{width:147.672720px;}
._32{width:152.173440px;}
._1a{width:154.719600px;}
._17{width:190.410000px;}
._2b{width:196.447680px;}
._2c{width:197.559600px;}
._22{width:241.067712px;}
._39{width:266.272512px;}
._28{width:338.506560px;}
._27{width:376.559520px;}
._24{width:471.806400px;}
._23{width:505.346400px;}
._21{width:549.798720px;}
._29{width:785.753040px;}
.fc6{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(118,51,10);}
.fc3{color:rgb(0,0,153);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:72.000000px;}
.fs11{font-size:100.080000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs12{font-size:128.160000px;}
.fs8{font-size:131.760000px;}
.fs19{font-size:139.680000px;}
.fsb{font-size:149.760000px;}
.fs4{font-size:151.920000px;}
.fs18{font-size:159.840000px;}
.fsf{font-size:175.680000px;}
.fs14{font-size:180.000000px;}
.fs13{font-size:180.144000px;}
.fs0{font-size:192.240000px;}
.fs9{font-size:192.384000px;}
.fs6{font-size:198.000000px;}
.fs7{font-size:198.144000px;}
.fs16{font-size:210.240000px;}
.fs3{font-size:228.240000px;}
.fs17{font-size:239.760000px;}
.fse{font-size:264.240000px;}
.fs5{font-size:300.240000px;}
.fs15{font-size:300.384000px;}
.fs2{font-size:419.760000px;}
.fs1{font-size:419.904000px;}
.y0{bottom:0.000000px;}
.y79{bottom:9.975000px;}
.y89{bottom:10.080000px;}
.y41{bottom:10.470000px;}
.y57{bottom:13.245000px;}
.ya4{bottom:21.312000px;}
.ybc{bottom:25.704000px;}
.y3f{bottom:26.610000px;}
.yb0{bottom:28.110000px;}
.y6b{bottom:29.670000px;}
.y87{bottom:37.980000px;}
.y55{bottom:47.595000px;}
.y77{bottom:48.930000px;}
.y88{bottom:63.795000px;}
.y3d{bottom:68.655000px;}
.y80{bottom:73.725000px;}
.ya3{bottom:75.312000px;}
.yd0{bottom:78.264000px;}
.ybb{bottom:79.704000px;}
.y69{bottom:79.920000px;}
.y4a{bottom:83.340000px;}
.y6d{bottom:84.675000px;}
.yae{bottom:97.950000px;}
.y32{bottom:104.400000px;}
.y62{bottom:115.665000px;}
.y4b{bottom:128.520000px;}
.y6e{bottom:129.165000px;}
.ya2{bottom:129.312000px;}
.yad{bottom:132.450000px;}
.yba{bottom:133.704000px;}
.y81{bottom:147.630000px;}
.y33{bottom:154.080000px;}
.ya6{bottom:168.195000px;}
.y4c{bottom:173.670000px;}
.y63{bottom:191.550000px;}
.y56{bottom:194.475000px;}
.y78{bottom:194.910000px;}
.y34{bottom:203.730000px;}
.y6f{bottom:218.130000px;}
.y4d{bottom:218.850000px;}
.y6a{bottom:219.960000px;}
.y82{bottom:221.550000px;}
.y26{bottom:241.890000px;}
.y3e{bottom:247.425000px;}
.ya7{bottom:249.090000px;}
.y35{bottom:253.365000px;}
.y70{bottom:262.620000px;}
.y4e{bottom:263.985000px;}
.y64{bottom:267.450000px;}
.y61{bottom:274.350000px;}
.yaf{bottom:281.010000px;}
.ya1{bottom:283.680000px;}
.y83{bottom:295.455000px;}
.y25{bottom:299.490000px;}
.y36{bottom:303.015000px;}
.y71{bottom:307.110000px;}
.y60{bottom:308.955000px;}
.y4f{bottom:309.165000px;}
.y8d{bottom:322.020000px;}
.ya8{bottom:329.970000px;}
.ya0{bottom:337.680000px;}
.y65{bottom:343.365000px;}
.y5c{bottom:343.620000px;}
.y72{bottom:351.570000px;}
.y37{bottom:352.695000px;}
.y50{bottom:354.315000px;}
.y24{bottom:357.090000px;}
.y8c{bottom:365.145000px;}
.y84{bottom:369.360000px;}
.y5b{bottom:382.500000px;}
.y73{bottom:396.075000px;}
.y51{bottom:399.495000px;}
.y38{bottom:402.330000px;}
.ya9{bottom:410.865000px;}
.y9f{bottom:413.025000px;}
.y23{bottom:414.690000px;}
.y66{bottom:419.250000px;}
.y5a{bottom:421.380000px;}
.y8b{bottom:426.630000px;}
.y74{bottom:440.565000px;}
.y85{bottom:443.265000px;}
.y52{bottom:444.630000px;}
.y39{bottom:451.980000px;}
.y59{bottom:460.260000px;}
.y9e{bottom:467.565000px;}
.y8a{bottom:469.770000px;}
.y22{bottom:472.290000px;}
.y75{bottom:485.025000px;}
.y53{bottom:489.810000px;}
.yaa{bottom:491.730000px;}
.y67{bottom:495.150000px;}
.y58{bottom:499.140000px;}
.y3a{bottom:501.630000px;}
.y47{bottom:502.560000px;}
.y5f{bottom:503.535000px;}
.y86{bottom:517.170000px;}
.y76{bottom:529.530000px;}
.y21{bottom:529.890000px;}
.y54{bottom:534.990000px;}
.y46{bottom:535.965000px;}
.y5e{bottom:538.095000px;}
.y44{bottom:542.625000px;}
.y3b{bottom:551.310000px;}
.y20{bottom:558.000000px;}
.y9d{bottom:564.405000px;}
.y45{bottom:568.365000px;}
.y68{bottom:571.035000px;}
.yab{bottom:572.610000px;}
.y43{bottom:575.025000px;}
.y3c{bottom:600.945000px;}
.y7f{bottom:653.220000px;}
.yac{bottom:653.505000px;}
.y6c{bottom:657.000000px;}
.y92{bottom:789.990000px;}
.y7e{bottom:818.715000px;}
.y91{bottom:847.590000px;}
.y7d{bottom:876.675000px;}
.y90{bottom:905.190000px;}
.y7c{bottom:934.275000px;}
.y8f{bottom:962.790000px;}
.y7b{bottom:991.875000px;}
.y8e{bottom:1020.390000px;}
.y7a{bottom:1049.475000px;}
.ybd{bottom:1214.790000px;}
.yca{bottom:1227.315000px;}
.yc7{bottom:1247.505000px;}
.ycf{bottom:1261.590000px;}
.yc9{bottom:1284.945000px;}
.y3{bottom:1296.930000px;}
.yce{bottom:1319.190000px;}
.yc0{bottom:1349.565000px;}
.y2{bottom:1354.350000px;}
.ycd{bottom:1376.790000px;}
.y1{bottom:1412.490000px;}
.y5d{bottom:1419.300000px;}
.yc1{bottom:1427.550000px;}
.y49{bottom:1441.800000px;}
.yc2{bottom:1747.905000px;}
.yc6{bottom:1813.065000px;}
.yc4{bottom:1858.470000px;}
.yc5{bottom:1867.065000px;}
.yc3{bottom:1912.470000px;}
.ybf{bottom:1972.230000px;}
.yb8{bottom:2025.150000px;}
.ybe{bottom:2051.430000px;}
.ya5{bottom:2090.700000px;}
.y42{bottom:2129.940000px;}
.y31{bottom:2130.120000px;}
.y30{bottom:2192.115000px;}
.y2f{bottom:2249.715000px;}
.yb7{bottom:2287.770000px;}
.y2e{bottom:2307.315000px;}
.yb6{bottom:2345.370000px;}
.y2d{bottom:2364.915000px;}
.yb5{bottom:2402.970000px;}
.y2c{bottom:2422.515000px;}
.yb4{bottom:2460.570000px;}
.y2b{bottom:2480.115000px;}
.yb3{bottom:2518.170000px;}
.y2a{bottom:2537.715000px;}
.yb2{bottom:2575.770000px;}
.y29{bottom:2595.315000px;}
.yb1{bottom:2633.370000px;}
.y28{bottom:2652.915000px;}
.y40{bottom:2688.660000px;}
.y27{bottom:2710.515000px;}
.y48{bottom:2809.695000px;}
.y1f{bottom:2823.450000px;}
.y9c{bottom:2943.255000px;}
.y9b{bottom:2997.255000px;}
.y1e{bottom:3022.410000px;}
.y9a{bottom:3051.285000px;}
.y1d{bottom:3081.810000px;}
.y1c{bottom:3141.210000px;}
.y1b{bottom:3200.610000px;}
.y1a{bottom:3260.010000px;}
.y19{bottom:3319.410000px;}
.y18{bottom:3378.810000px;}
.y17{bottom:3438.210000px;}
.y16{bottom:3497.610000px;}
.y15{bottom:3557.010000px;}
.y14{bottom:3616.410000px;}
.y13{bottom:3675.810000px;}
.ycc{bottom:3700.770000px;}
.y12{bottom:3735.255000px;}
.yc8{bottom:3745.080000px;}
.ycb{bottom:3764.310000px;}
.y11{bottom:3794.655000px;}
.y99{bottom:3831.840000px;}
.y10{bottom:3854.055000px;}
.y98{bottom:3889.440000px;}
.yf{bottom:3913.455000px;}
.y97{bottom:3947.040000px;}
.ye{bottom:3972.855000px;}
.y96{bottom:4004.640000px;}
.yd{bottom:4032.255000px;}
.y95{bottom:4062.240000px;}
.yc{bottom:4091.655000px;}
.y94{bottom:4119.840000px;}
.y93{bottom:4197.390000px;}
.yb{bottom:4201.920000px;}
.ya{bottom:4351.290000px;}
.y9{bottom:4436.610000px;}
.y8{bottom:4521.750000px;}
.y7{bottom:4589.790000px;}
.yb9{bottom:4597.275000px;}
.y6{bottom:4712.070000px;}
.y5{bottom:4846.890000px;}
.y4{bottom:4981.755000px;}
.he{height:42.300000px;}
.hf{height:78.943359px;}
.hc{height:87.890273px;}
.h13{height:87.995531px;}
.h14{height:109.321875px;}
.hd{height:109.468125px;}
.h5{height:110.898633px;}
.h22{height:112.539375px;}
.h23{height:112.612500px;}
.h1a{height:131.396484px;}
.h18{height:131.501602px;}
.h1d{height:131.572266px;}
.h1c{height:131.923828px;}
.h19{height:132.539062px;}
.h1e{height:135.351562px;}
.h21{height:135.459844px;}
.h1{height:140.331445px;}
.h25{height:140.436563px;}
.ha{height:142.396523px;}
.h7{height:144.536133px;}
.h8{height:144.641250px;}
.h20{height:153.471094px;}
.h26{height:154.805625px;}
.h24{height:176.542031px;}
.h4{height:180.262969px;}
.h11{height:194.567344px;}
.h6{height:221.075156px;}
.h1b{height:221.181188px;}
.h9{height:258.516562px;}
.h3{height:325.682930px;}
.h2{height:325.794656px;}
.h17{height:554.580000px;}
.h16{height:576.360000px;}
.h12{height:592.560000px;}
.h15{height:604.980000px;}
.h1f{height:714.240000px;}
.hb{height:721.440000px;}
.h10{height:721.620000px;}
.h0{height:5103.000000px;}
.w3{width:752.580000px;}
.w8{width:832.500000px;}
.w6{width:846.720000px;}
.w5{width:854.280000px;}
.w7{width:893.160000px;}
.w2{width:950.220000px;}
.w4{width:950.400000px;}
.w9{width:1095.840000px;}
.w1{width:3401.999949px;}
.w0{width:3402.000000px;}
.x0{left:0.000000px;}
.xd{left:4.140000px;}
.x7{left:36.611949px;}
.x4e{left:39.635949px;}
.x3f{left:43.590000px;}
.x5{left:44.855949px;}
.x4d{left:46.835949px;}
.x24{left:53.925000px;}
.x27{left:55.335000px;}
.x51{left:56.519949px;}
.x11{left:61.416000px;}
.x23{left:66.450000px;}
.x4{left:70.811949px;}
.x4a{left:73.619949px;}
.x2e{left:76.140000px;}
.x9{left:81.179949px;}
.x22{left:83.160000px;}
.x26{left:97.230000px;}
.x19{left:99.930000px;}
.xf{left:104.616000px;}
.x2c{left:107.100000px;}
.x8{left:108.179949px;}
.x18{left:116.610000px;}
.xe{left:121.320000px;}
.x2b{left:123.765000px;}
.x2{left:135.791949px;}
.x10{left:138.780000px;}
.x3a{left:155.370000px;}
.x3{left:189.614949px;}
.x1c{left:198.510000px;}
.x47{left:212.549949px;}
.x6{left:213.869949px;}
.x15{left:219.315000px;}
.x1a{left:222.300000px;}
.x2d{left:271.260000px;}
.x1e{left:292.680000px;}
.x25{left:325.335000px;}
.x1b{left:332.490000px;}
.x40{left:339.555000px;}
.x1f{left:363.060000px;}
.x12{left:366.810000px;}
.x48{left:371.849949px;}
.x2f{left:395.130000px;}
.x28{left:415.515000px;}
.x3c{left:420.405000px;}
.x13{left:433.770000px;}
.x49{left:437.609949px;}
.x3b{left:442.950000px;}
.x20{left:468.360000px;}
.x21{left:530.460000px;}
.x30{left:559.110000px;}
.xa{left:569.519949px;}
.x38{left:600.149949px;}
.x3d{left:615.420000px;}
.x14{left:673.665000px;}
.x4c{left:836.429949px;}
.x4b{left:846.149949px;}
.x3e{left:879.630000px;}
.x4f{left:941.114949px;}
.x41{left:951.764949px;}
.x42{left:985.604949px;}
.x29{left:1062.869949px;}
.x16{left:1283.684949px;}
.x33{left:1421.384949px;}
.x34{left:1431.209949px;}
.x46{left:1438.844949px;}
.x52{left:1463.114949px;}
.x39{left:1472.580000px;}
.x32{left:1513.979949px;}
.x1d{left:1598.940000px;}
.x1{left:1625.759949px;}
.x2a{left:1643.220000px;}
.x53{left:1652.969949px;}
.x54{left:1659.989949px;}
.x36{left:1954.829949px;}
.x37{left:1956.524949px;}
.x35{left:2104.049949px;}
.x45{left:2128.649949px;}
.x43{left:2179.829949px;}
.x50{left:2224.364949px;}
.x55{left:2386.694949px;}
.x17{left:2430.540000px;}
.x31{left:2520.689949px;}
.x44{left:2570.939949px;}
.xb{left:2576.264949px;}
.x56{left:2587.934949px;}
.xc{left:2610.104949px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v7{vertical-align:-58.240000pt;}
.vb{vertical-align:-52.480000pt;}
.vc{vertical-align:-46.080000pt;}
.v3{vertical-align:-43.520000pt;}
.v9{vertical-align:-42.240000pt;}
.v8{vertical-align:-32.640012pt;}
.v5{vertical-align:-23.680000pt;}
.v6{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:32.639999pt;}
.v1{vertical-align:60.800000pt;}
.v4{vertical-align:104.960000pt;}
.ls27{letter-spacing:-12.320000pt;}
.ls15{letter-spacing:-3.424000pt;}
.ls19{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.656000pt;}
.ls28{letter-spacing:-0.549333pt;}
.ls25{letter-spacing:-0.416533pt;}
.ls14{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.297600pt;}
.ls1d{letter-spacing:-0.252267pt;}
.ls24{letter-spacing:-0.169067pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.150933pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:-0.026880pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls22{letter-spacing:-0.000640pt;}
.lsc{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.023520pt;}
.ls16{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.088533pt;}
.ls5{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.139733pt;}
.ls2c{letter-spacing:0.153067pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.175467pt;}
.lsf{letter-spacing:0.194133pt;}
.ls2b{letter-spacing:0.203733pt;}
.ls10{letter-spacing:0.223467pt;}
.ls17{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls23{letter-spacing:0.613333pt;}
.ls1b{letter-spacing:0.778667pt;}
.lsb{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.906667pt;}
.ls2{letter-spacing:42.056960pt;}
.lsa{letter-spacing:46.720000pt;}
.ls1{letter-spacing:50.240000pt;}
.ls9{letter-spacing:55.040000pt;}
.ls3{letter-spacing:58.240000pt;}
.ls6{letter-spacing:69.120000pt;}
.ls4{letter-spacing:394.174720pt;}
.ws9{word-spacing:-170.880000pt;}
.ws74{word-spacing:-133.120000pt;}
.ws70{word-spacing:-58.720000pt;}
.wsaf{word-spacing:-53.280000pt;}
.wse{word-spacing:-50.720000pt;}
.wsae{word-spacing:-46.720000pt;}
.wsa2{word-spacing:-44.480000pt;}
.ws23{word-spacing:-44.000000pt;}
.ws83{word-spacing:-42.943467pt;}
.ws82{word-spacing:-42.914133pt;}
.ws9d{word-spacing:-42.895467pt;}
.wsb3{word-spacing:-42.873067pt;}
.ws5a{word-spacing:-42.720000pt;}
.wsa1{word-spacing:-40.128000pt;}
.ws9e{word-spacing:-40.000000pt;}
.ws72{word-spacing:-37.007360pt;}
.wsd{word-spacing:-33.760000pt;}
.ws75{word-spacing:-33.280000pt;}
.wsa3{word-spacing:-29.748224pt;}
.ws76{word-spacing:-29.712640pt;}
.ws6f{word-spacing:-26.688000pt;}
.ws73{word-spacing:-24.730880pt;}
.ws18{word-spacing:-1.792000pt;}
.ws77{word-spacing:-1.208640pt;}
.ws62{word-spacing:-0.936960pt;}
.ws42{word-spacing:-0.906667pt;}
.wsc{word-spacing:-0.749440pt;}
.ws81{word-spacing:-0.631893pt;}
.ws56{word-spacing:-0.581120pt;}
.ws57{word-spacing:-0.481920pt;}
.ws59{word-spacing:-0.480640pt;}
.wsb2{word-spacing:-0.295040pt;}
.wsad{word-spacing:-0.020480pt;}
.wsb4{word-spacing:0.000000pt;}
.ws58{word-spacing:0.013440pt;}
.wsa0{word-spacing:0.320000pt;}
.ws5f{word-spacing:0.547840pt;}
.ws28{word-spacing:0.917333pt;}
.ws5e{word-spacing:1.020800pt;}
.ws2a{word-spacing:1.280000pt;}
.ws4{word-spacing:1.526827pt;}
.ws60{word-spacing:1.653760pt;}
.ws29{word-spacing:1.904000pt;}
.ws0{word-spacing:2.200747pt;}
.ws1{word-spacing:2.273280pt;}
.ws2{word-spacing:2.302720pt;}
.ws3{word-spacing:3.415040pt;}
.ws24{word-spacing:3.888000pt;}
.ws25{word-spacing:4.896000pt;}
.ws26{word-spacing:5.008000pt;}
.ws49{word-spacing:7.706880pt;}
.ws4a{word-spacing:8.265600pt;}
.ws48{word-spacing:8.317440pt;}
.ws32{word-spacing:10.800000pt;}
.ws2e{word-spacing:10.816000pt;}
.ws2f{word-spacing:11.280000pt;}
.ws30{word-spacing:11.456000pt;}
.ws31{word-spacing:11.680000pt;}
.ws52{word-spacing:12.522880pt;}
.ws51{word-spacing:12.549547pt;}
.ws27{word-spacing:13.376000pt;}
.ws50{word-spacing:13.406080pt;}
.wsaa{word-spacing:15.716480pt;}
.wsa9{word-spacing:17.229440pt;}
.ws7{word-spacing:19.980160pt;}
.ws6{word-spacing:19.999360pt;}
.wsa{word-spacing:20.160000pt;}
.ws8{word-spacing:20.320000pt;}
.wsa6{word-spacing:20.556800pt;}
.ws5{word-spacing:20.824960pt;}
.wsf{word-spacing:20.912000pt;}
.wsb{word-spacing:21.473280pt;}
.ws89{word-spacing:22.669440pt;}
.ws85{word-spacing:23.587840pt;}
.ws6a{word-spacing:24.006400pt;}
.ws68{word-spacing:24.231680pt;}
.ws69{word-spacing:24.257280pt;}
.ws95{word-spacing:24.507947pt;}
.ws9f{word-spacing:24.640000pt;}
.ws91{word-spacing:24.799360pt;}
.ws44{word-spacing:24.851456pt;}
.ws94{word-spacing:24.897280pt;}
.ws93{word-spacing:24.909440pt;}
.ws84{word-spacing:24.967040pt;}
.ws92{word-spacing:25.419947pt;}
.ws86{word-spacing:25.451520pt;}
.ws38{word-spacing:25.584000pt;}
.ws3c{word-spacing:25.648000pt;}
.ws3a{word-spacing:25.856000pt;}
.ws88{word-spacing:25.953280pt;}
.wsa8{word-spacing:26.067840pt;}
.ws39{word-spacing:26.128000pt;}
.ws8e{word-spacing:26.177280pt;}
.ws90{word-spacing:26.303680pt;}
.ws8a{word-spacing:26.398080pt;}
.ws37{word-spacing:26.432000pt;}
.ws21{word-spacing:26.448000pt;}
.ws8f{word-spacing:26.462720pt;}
.ws8c{word-spacing:26.593280pt;}
.ws8d{word-spacing:26.703360pt;}
.ws8b{word-spacing:26.735147pt;}
.ws87{word-spacing:27.142400pt;}
.ws3b{word-spacing:27.312000pt;}
.ws3d{word-spacing:27.680000pt;}
.ws20{word-spacing:29.696000pt;}
.ws1f{word-spacing:30.901333pt;}
.ws22{word-spacing:31.040000pt;}
.ws4d{word-spacing:31.500160pt;}
.ws4c{word-spacing:31.519360pt;}
.ws4f{word-spacing:32.069120pt;}
.ws4b{word-spacing:32.141440pt;}
.ws4e{word-spacing:32.804160pt;}
.ws3e{word-spacing:37.893333pt;}
.ws41{word-spacing:38.560000pt;}
.ws40{word-spacing:38.960000pt;}
.ws3f{word-spacing:39.024000pt;}
.ws7d{word-spacing:44.022400pt;}
.ws7c{word-spacing:44.412800pt;}
.ws55{word-spacing:48.012800pt;}
.ws53{word-spacing:48.058880pt;}
.ws54{word-spacing:48.159360pt;}
.ws12{word-spacing:48.528000pt;}
.ws10{word-spacing:48.549333pt;}
.ws65{word-spacing:48.884480pt;}
.ws66{word-spacing:49.217280pt;}
.ws67{word-spacing:49.229440pt;}
.ws11{word-spacing:49.264000pt;}
.ws61{word-spacing:51.266560pt;}
.wsa7{word-spacing:53.545600pt;}
.wsa4{word-spacing:53.896320pt;}
.ws19{word-spacing:54.277333pt;}
.wsa5{word-spacing:54.551680pt;}
.ws1c{word-spacing:54.800000pt;}
.ws1b{word-spacing:54.816000pt;}
.ws1d{word-spacing:54.896000pt;}
.ws1e{word-spacing:60.144640pt;}
.ws64{word-spacing:60.629120pt;}
.ws1a{word-spacing:62.224000pt;}
.ws9a{word-spacing:63.813120pt;}
.ws97{word-spacing:64.063680pt;}
.ws9b{word-spacing:64.133120pt;}
.ws9c{word-spacing:64.401067pt;}
.ws99{word-spacing:64.577280pt;}
.ws98{word-spacing:64.762240pt;}
.ws96{word-spacing:64.940800pt;}
.ws5b{word-spacing:67.055360pt;}
.ws33{word-spacing:70.432000pt;}
.ws5d{word-spacing:76.109440pt;}
.ws5c{word-spacing:76.319360pt;}
.ws63{word-spacing:77.295360pt;}
.ws46{word-spacing:83.140480pt;}
.ws47{word-spacing:84.090240pt;}
.ws45{word-spacing:85.112747pt;}
.ws17{word-spacing:85.664000pt;}
.ws16{word-spacing:86.208000pt;}
.ws13{word-spacing:86.224000pt;}
.ws14{word-spacing:87.024000pt;}
.ws15{word-spacing:87.168000pt;}
.wsb0{word-spacing:101.132587pt;}
.wsb1{word-spacing:101.491712pt;}
.ws6c{word-spacing:110.239360pt;}
.ws6d{word-spacing:111.127680pt;}
.ws6b{word-spacing:111.336320pt;}
.ws2d{word-spacing:120.896000pt;}
.ws2b{word-spacing:121.168000pt;}
.ws2c{word-spacing:121.760000pt;}
.ws34{word-spacing:124.080000pt;}
.ws36{word-spacing:124.912000pt;}
.ws35{word-spacing:125.760000pt;}
.ws7e{word-spacing:135.626667pt;}
.ws7f{word-spacing:136.376960pt;}
.ws7b{word-spacing:208.776320pt;}
.ws7a{word-spacing:211.472000pt;}
.wsac{word-spacing:229.439360pt;}
.wsab{word-spacing:230.044160pt;}
.ws79{word-spacing:241.582080pt;}
.ws43{word-spacing:276.219520pt;}
.ws78{word-spacing:334.618667pt;}
.ws71{word-spacing:360.112640pt;}
.ws6e{word-spacing:459.959040pt;}
.ws80{word-spacing:649.978027pt;}
._8{margin-left:-25.372160pt;}
._c{margin-left:-23.333120pt;}
._b{margin-left:-22.215509pt;}
._36{margin-left:-17.656747pt;}
._9{margin-left:-15.013120pt;}
._38{margin-left:-12.480000pt;}
._13{margin-left:-10.416256pt;}
._a{margin-left:-7.917483pt;}
._25{margin-left:-6.814720pt;}
._f{margin-left:-5.531008pt;}
._0{margin-left:-4.301867pt;}
._2{margin-left:-2.682667pt;}
._7{margin-left:-1.119744pt;}
._6{width:0.980693pt;}
._37{width:1.899051pt;}
._2a{width:2.851200pt;}
._34{width:21.984000pt;}
._35{width:23.172907pt;}
._26{width:28.757760pt;}
._2f{width:30.692480pt;}
._30{width:33.027627pt;}
._5{width:43.000960pt;}
._4{width:44.779093pt;}
._1{width:46.409813pt;}
._12{width:49.461333pt;}
._1b{width:52.158507pt;}
._2d{width:53.424640pt;}
._2e{width:54.543317pt;}
._15{width:55.957333pt;}
._1d{width:57.029675pt;}
._14{width:58.637867pt;}
._3{width:64.194560pt;}
._19{width:68.858837pt;}
._31{width:70.369280pt;}
._18{width:72.021333pt;}
._11{width:74.592000pt;}
._1c{width:76.113280pt;}
._1e{width:92.397440pt;}
._20{width:94.886187pt;}
._e{width:100.400000pt;}
._10{width:105.530624pt;}
._33{width:107.819477pt;}
._16{width:115.477333pt;}
._1f{width:118.083200pt;}
._d{width:131.264640pt;}
._32{width:135.265280pt;}
._1a{width:137.528533pt;}
._17{width:169.253333pt;}
._2b{width:174.620160pt;}
._2c{width:175.608533pt;}
._22{width:214.282411pt;}
._39{width:236.686677pt;}
._28{width:300.894720pt;}
._27{width:334.719573pt;}
._24{width:419.383467pt;}
._23{width:449.196800pt;}
._21{width:488.709973pt;}
._29{width:698.447147pt;}
.fsd{font-size:64.000000pt;}
.fs11{font-size:88.960000pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs12{font-size:113.920000pt;}
.fs8{font-size:117.120000pt;}
.fs19{font-size:124.160000pt;}
.fsb{font-size:133.120000pt;}
.fs4{font-size:135.040000pt;}
.fs18{font-size:142.080000pt;}
.fsf{font-size:156.160000pt;}
.fs14{font-size:160.000000pt;}
.fs13{font-size:160.128000pt;}
.fs0{font-size:170.880000pt;}
.fs9{font-size:171.008000pt;}
.fs6{font-size:176.000000pt;}
.fs7{font-size:176.128000pt;}
.fs16{font-size:186.880000pt;}
.fs3{font-size:202.880000pt;}
.fs17{font-size:213.120000pt;}
.fse{font-size:234.880000pt;}
.fs5{font-size:266.880000pt;}
.fs15{font-size:267.008000pt;}
.fs2{font-size:373.120000pt;}
.fs1{font-size:373.248000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:8.866667pt;}
.y89{bottom:8.960000pt;}
.y41{bottom:9.306667pt;}
.y57{bottom:11.773333pt;}
.ya4{bottom:18.944000pt;}
.ybc{bottom:22.848000pt;}
.y3f{bottom:23.653333pt;}
.yb0{bottom:24.986667pt;}
.y6b{bottom:26.373333pt;}
.y87{bottom:33.760000pt;}
.y55{bottom:42.306667pt;}
.y77{bottom:43.493333pt;}
.y88{bottom:56.706667pt;}
.y3d{bottom:61.026667pt;}
.y80{bottom:65.533333pt;}
.ya3{bottom:66.944000pt;}
.yd0{bottom:69.568000pt;}
.ybb{bottom:70.848000pt;}
.y69{bottom:71.040000pt;}
.y4a{bottom:74.080000pt;}
.y6d{bottom:75.266667pt;}
.yae{bottom:87.066667pt;}
.y32{bottom:92.800000pt;}
.y62{bottom:102.813333pt;}
.y4b{bottom:114.240000pt;}
.y6e{bottom:114.813333pt;}
.ya2{bottom:114.944000pt;}
.yad{bottom:117.733333pt;}
.yba{bottom:118.848000pt;}
.y81{bottom:131.226667pt;}
.y33{bottom:136.960000pt;}
.ya6{bottom:149.506667pt;}
.y4c{bottom:154.373333pt;}
.y63{bottom:170.266667pt;}
.y56{bottom:172.866667pt;}
.y78{bottom:173.253333pt;}
.y34{bottom:181.093333pt;}
.y6f{bottom:193.893333pt;}
.y4d{bottom:194.533333pt;}
.y6a{bottom:195.520000pt;}
.y82{bottom:196.933333pt;}
.y26{bottom:215.013333pt;}
.y3e{bottom:219.933333pt;}
.ya7{bottom:221.413333pt;}
.y35{bottom:225.213333pt;}
.y70{bottom:233.440000pt;}
.y4e{bottom:234.653333pt;}
.y64{bottom:237.733333pt;}
.y61{bottom:243.866667pt;}
.yaf{bottom:249.786667pt;}
.ya1{bottom:252.160000pt;}
.y83{bottom:262.626667pt;}
.y25{bottom:266.213333pt;}
.y36{bottom:269.346667pt;}
.y71{bottom:272.986667pt;}
.y60{bottom:274.626667pt;}
.y4f{bottom:274.813333pt;}
.y8d{bottom:286.240000pt;}
.ya8{bottom:293.306667pt;}
.ya0{bottom:300.160000pt;}
.y65{bottom:305.213333pt;}
.y5c{bottom:305.440000pt;}
.y72{bottom:312.506667pt;}
.y37{bottom:313.506667pt;}
.y50{bottom:314.946667pt;}
.y24{bottom:317.413333pt;}
.y8c{bottom:324.573333pt;}
.y84{bottom:328.320000pt;}
.y5b{bottom:340.000000pt;}
.y73{bottom:352.066667pt;}
.y51{bottom:355.106667pt;}
.y38{bottom:357.626667pt;}
.ya9{bottom:365.213333pt;}
.y9f{bottom:367.133333pt;}
.y23{bottom:368.613333pt;}
.y66{bottom:372.666667pt;}
.y5a{bottom:374.560000pt;}
.y8b{bottom:379.226667pt;}
.y74{bottom:391.613333pt;}
.y85{bottom:394.013333pt;}
.y52{bottom:395.226667pt;}
.y39{bottom:401.760000pt;}
.y59{bottom:409.120000pt;}
.y9e{bottom:415.613333pt;}
.y8a{bottom:417.573333pt;}
.y22{bottom:419.813333pt;}
.y75{bottom:431.133333pt;}
.y53{bottom:435.386667pt;}
.yaa{bottom:437.093333pt;}
.y67{bottom:440.133333pt;}
.y58{bottom:443.680000pt;}
.y3a{bottom:445.893333pt;}
.y47{bottom:446.720000pt;}
.y5f{bottom:447.586667pt;}
.y86{bottom:459.706667pt;}
.y76{bottom:470.693333pt;}
.y21{bottom:471.013333pt;}
.y54{bottom:475.546667pt;}
.y46{bottom:476.413333pt;}
.y5e{bottom:478.306667pt;}
.y44{bottom:482.333333pt;}
.y3b{bottom:490.053333pt;}
.y20{bottom:496.000000pt;}
.y9d{bottom:501.693333pt;}
.y45{bottom:505.213333pt;}
.y68{bottom:507.586667pt;}
.yab{bottom:508.986667pt;}
.y43{bottom:511.133333pt;}
.y3c{bottom:534.173333pt;}
.y7f{bottom:580.640000pt;}
.yac{bottom:580.893333pt;}
.y6c{bottom:584.000000pt;}
.y92{bottom:702.213333pt;}
.y7e{bottom:727.746667pt;}
.y91{bottom:753.413333pt;}
.y7d{bottom:779.266667pt;}
.y90{bottom:804.613333pt;}
.y7c{bottom:830.466667pt;}
.y8f{bottom:855.813333pt;}
.y7b{bottom:881.666667pt;}
.y8e{bottom:907.013333pt;}
.y7a{bottom:932.866667pt;}
.ybd{bottom:1079.813333pt;}
.yca{bottom:1090.946667pt;}
.yc7{bottom:1108.893333pt;}
.ycf{bottom:1121.413333pt;}
.yc9{bottom:1142.173333pt;}
.y3{bottom:1152.826667pt;}
.yce{bottom:1172.613333pt;}
.yc0{bottom:1199.613333pt;}
.y2{bottom:1203.866667pt;}
.ycd{bottom:1223.813333pt;}
.y1{bottom:1255.546667pt;}
.y5d{bottom:1261.600000pt;}
.yc1{bottom:1268.933333pt;}
.y49{bottom:1281.600000pt;}
.yc2{bottom:1553.693333pt;}
.yc6{bottom:1611.613333pt;}
.yc4{bottom:1651.973333pt;}
.yc5{bottom:1659.613333pt;}
.yc3{bottom:1699.973333pt;}
.ybf{bottom:1753.093333pt;}
.yb8{bottom:1800.133333pt;}
.ybe{bottom:1823.493333pt;}
.ya5{bottom:1858.400000pt;}
.y42{bottom:1893.280000pt;}
.y31{bottom:1893.440000pt;}
.y30{bottom:1948.546667pt;}
.y2f{bottom:1999.746667pt;}
.yb7{bottom:2033.573333pt;}
.y2e{bottom:2050.946667pt;}
.yb6{bottom:2084.773333pt;}
.y2d{bottom:2102.146667pt;}
.yb5{bottom:2135.973333pt;}
.y2c{bottom:2153.346667pt;}
.yb4{bottom:2187.173333pt;}
.y2b{bottom:2204.546667pt;}
.yb3{bottom:2238.373333pt;}
.y2a{bottom:2255.746667pt;}
.yb2{bottom:2289.573333pt;}
.y29{bottom:2306.946667pt;}
.yb1{bottom:2340.773333pt;}
.y28{bottom:2358.146667pt;}
.y40{bottom:2389.920000pt;}
.y27{bottom:2409.346667pt;}
.y48{bottom:2497.506667pt;}
.y1f{bottom:2509.733333pt;}
.y9c{bottom:2616.226667pt;}
.y9b{bottom:2664.226667pt;}
.y1e{bottom:2686.586667pt;}
.y9a{bottom:2712.253333pt;}
.y1d{bottom:2739.386667pt;}
.y1c{bottom:2792.186667pt;}
.y1b{bottom:2844.986667pt;}
.y1a{bottom:2897.786667pt;}
.y19{bottom:2950.586667pt;}
.y18{bottom:3003.386667pt;}
.y17{bottom:3056.186667pt;}
.y16{bottom:3108.986667pt;}
.y15{bottom:3161.786667pt;}
.y14{bottom:3214.586667pt;}
.y13{bottom:3267.386667pt;}
.ycc{bottom:3289.573333pt;}
.y12{bottom:3320.226667pt;}
.yc8{bottom:3328.960000pt;}
.ycb{bottom:3346.053333pt;}
.y11{bottom:3373.026667pt;}
.y99{bottom:3406.080000pt;}
.y10{bottom:3425.826667pt;}
.y98{bottom:3457.280000pt;}
.yf{bottom:3478.626667pt;}
.y97{bottom:3508.480000pt;}
.ye{bottom:3531.426667pt;}
.y96{bottom:3559.680000pt;}
.yd{bottom:3584.226667pt;}
.y95{bottom:3610.880000pt;}
.yc{bottom:3637.026667pt;}
.y94{bottom:3662.080000pt;}
.y93{bottom:3731.013333pt;}
.yb{bottom:3735.040000pt;}
.ya{bottom:3867.813333pt;}
.y9{bottom:3943.653333pt;}
.y8{bottom:4019.333333pt;}
.y7{bottom:4079.813333pt;}
.yb9{bottom:4086.466667pt;}
.y6{bottom:4188.506667pt;}
.y5{bottom:4308.346667pt;}
.y4{bottom:4428.226667pt;}
.he{height:37.600000pt;}
.hf{height:70.171875pt;}
.hc{height:78.124687pt;}
.h13{height:78.218250pt;}
.h14{height:97.175000pt;}
.hd{height:97.305000pt;}
.h5{height:98.576563pt;}
.h22{height:100.035000pt;}
.h23{height:100.100000pt;}
.h1a{height:116.796875pt;}
.h18{height:116.890313pt;}
.h1d{height:116.953125pt;}
.h1c{height:117.265625pt;}
.h19{height:117.812500pt;}
.h1e{height:120.312500pt;}
.h21{height:120.408750pt;}
.h1{height:124.739062pt;}
.h25{height:124.832500pt;}
.ha{height:126.574687pt;}
.h7{height:128.476562pt;}
.h8{height:128.570000pt;}
.h20{height:136.418750pt;}
.h26{height:137.605000pt;}
.h24{height:156.926250pt;}
.h4{height:160.233750pt;}
.h11{height:172.948750pt;}
.h6{height:196.511250pt;}
.h1b{height:196.605500pt;}
.h9{height:229.792500pt;}
.h3{height:289.495938pt;}
.h2{height:289.595250pt;}
.h17{height:492.960000pt;}
.h16{height:512.320000pt;}
.h12{height:526.720000pt;}
.h15{height:537.760000pt;}
.h1f{height:634.880000pt;}
.hb{height:641.280000pt;}
.h10{height:641.440000pt;}
.h0{height:4536.000000pt;}
.w3{width:668.960000pt;}
.w8{width:740.000000pt;}
.w6{width:752.640000pt;}
.w5{width:759.360000pt;}
.w7{width:793.920000pt;}
.w2{width:844.640000pt;}
.w4{width:844.800000pt;}
.w9{width:974.080000pt;}
.w1{width:3023.999955pt;}
.w0{width:3024.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.680000pt;}
.x7{left:32.543955pt;}
.x4e{left:35.231955pt;}
.x3f{left:38.746667pt;}
.x5{left:39.871955pt;}
.x4d{left:41.631955pt;}
.x24{left:47.933333pt;}
.x27{left:49.186667pt;}
.x51{left:50.239955pt;}
.x11{left:54.592000pt;}
.x23{left:59.066667pt;}
.x4{left:62.943955pt;}
.x4a{left:65.439955pt;}
.x2e{left:67.680000pt;}
.x9{left:72.159955pt;}
.x22{left:73.920000pt;}
.x26{left:86.426667pt;}
.x19{left:88.826667pt;}
.xf{left:92.992000pt;}
.x2c{left:95.200000pt;}
.x8{left:96.159955pt;}
.x18{left:103.653333pt;}
.xe{left:107.840000pt;}
.x2b{left:110.013333pt;}
.x2{left:120.703955pt;}
.x10{left:123.360000pt;}
.x3a{left:138.106667pt;}
.x3{left:168.546622pt;}
.x1c{left:176.453333pt;}
.x47{left:188.933288pt;}
.x6{left:190.106622pt;}
.x15{left:194.946667pt;}
.x1a{left:197.600000pt;}
.x2d{left:241.120000pt;}
.x1e{left:260.160000pt;}
.x25{left:289.186667pt;}
.x1b{left:295.546667pt;}
.x40{left:301.826667pt;}
.x1f{left:322.720000pt;}
.x12{left:326.053333pt;}
.x48{left:330.533288pt;}
.x2f{left:351.226667pt;}
.x28{left:369.346667pt;}
.x3c{left:373.693333pt;}
.x13{left:385.573333pt;}
.x49{left:388.986622pt;}
.x3b{left:393.733333pt;}
.x20{left:416.320000pt;}
.x21{left:471.520000pt;}
.x30{left:496.986667pt;}
.xa{left:506.239955pt;}
.x38{left:533.466622pt;}
.x3d{left:547.040000pt;}
.x14{left:598.813333pt;}
.x4c{left:743.493288pt;}
.x4b{left:752.133288pt;}
.x3e{left:781.893333pt;}
.x4f{left:836.546622pt;}
.x41{left:846.013288pt;}
.x42{left:876.093288pt;}
.x29{left:944.773288pt;}
.x16{left:1141.053288pt;}
.x33{left:1263.453288pt;}
.x34{left:1272.186622pt;}
.x46{left:1278.973288pt;}
.x52{left:1300.546622pt;}
.x39{left:1308.960000pt;}
.x32{left:1345.759955pt;}
.x1d{left:1421.280000pt;}
.x1{left:1445.119955pt;}
.x2a{left:1460.640000pt;}
.x53{left:1469.306622pt;}
.x54{left:1475.546622pt;}
.x36{left:1737.626622pt;}
.x37{left:1739.133288pt;}
.x35{left:1870.266622pt;}
.x45{left:1892.133288pt;}
.x43{left:1937.626622pt;}
.x50{left:1977.213288pt;}
.x55{left:2121.506622pt;}
.x17{left:2160.480000pt;}
.x31{left:2240.613288pt;}
.x44{left:2285.279955pt;}
.xb{left:2290.013288pt;}
.x56{left:2300.386622pt;}
.xc{left:2320.093288pt;}
}




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