
    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_53437ec22d5a199ae09d096b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_9f76269252ff29465f5e648c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_50835b75114a6dd786c45d45.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_330d0ebf3273d360ff38babf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_8450fc383b2493d8d013f2af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700195;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_3d40035833359dc307c0caad.woff')format("woff");}.ff6{font-family:ff6;line-height:0.869141;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_52fb0155a2f0531e4766d88b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_ecb02f2e51ed13c6ffcaa8ba.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_d29b1dbe9549641a312b6961.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982910;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_8e1a2279f1fa682e80e76ec7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_950e6aeecf24d82424b88458.woff')format("woff");}.ffb{font-family:ffb;line-height:0.764160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-63.666600px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws3b{word-spacing:-18.216000px;}
.ws2{word-spacing:-14.904000px;}
.wsb1{word-spacing:-9.180000px;}
.ws1e{word-spacing:-7.788000px;}
.wsb5{word-spacing:-7.740000px;}
.ws70{word-spacing:-7.722000px;}
.ws8c{word-spacing:-7.656000px;}
.ws85{word-spacing:-6.996000px;}
.ws53{word-spacing:-6.204000px;}
.ws83{word-spacing:-5.940000px;}
.ws5d{word-spacing:-5.742000px;}
.wsbc{word-spacing:-5.580000px;}
.ws9b{word-spacing:-5.520000px;}
.wsa1{word-spacing:-4.980000px;}
.ws96{word-spacing:-4.884000px;}
.ws78{word-spacing:-4.620000px;}
.ws79{word-spacing:-4.422000px;}
.ws95{word-spacing:-3.366000px;}
.ws4{word-spacing:-3.348000px;}
.ws7a{word-spacing:-3.234000px;}
.ws61{word-spacing:-3.102000px;}
.ws26{word-spacing:-3.036000px;}
.wscc{word-spacing:-2.820000px;}
.ws42{word-spacing:-2.706000px;}
.ws5{word-spacing:-2.646000px;}
.ws4e{word-spacing:-2.640000px;}
.ws91{word-spacing:-2.508000px;}
.ws29{word-spacing:-1.848000px;}
.ws64{word-spacing:-1.782000px;}
.ws9d{word-spacing:-1.680000px;}
.ws4c{word-spacing:-1.650000px;}
.ws86{word-spacing:-1.452000px;}
.ws57{word-spacing:-1.254000px;}
.ws89{word-spacing:-1.188000px;}
.ws67{word-spacing:-1.122000px;}
.ws8f{word-spacing:-0.858000px;}
.ws4f{word-spacing:-0.660000px;}
.ws6d{word-spacing:-0.528000px;}
.ws7f{word-spacing:-0.264000px;}
.ws1{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws43{word-spacing:0.330000px;}
.ws6f{word-spacing:0.726000px;}
.ws18{word-spacing:0.858000px;}
.ws7b{word-spacing:1.122000px;}
.ws41{word-spacing:1.188000px;}
.wsb{word-spacing:1.782000px;}
.ws80{word-spacing:2.244000px;}
.ws71{word-spacing:2.442000px;}
.wscd{word-spacing:3.060000px;}
.ws37{word-spacing:3.168000px;}
.wsc3{word-spacing:3.180000px;}
.ws45{word-spacing:3.366000px;}
.wscf{word-spacing:3.420000px;}
.ws81{word-spacing:3.564000px;}
.wsa9{word-spacing:3.660000px;}
.ws48{word-spacing:3.762000px;}
.ws65{word-spacing:3.828000px;}
.ws54{word-spacing:3.894000px;}
.ws77{word-spacing:3.960000px;}
.ws1f{word-spacing:4.158000px;}
.ws99{word-spacing:4.380000px;}
.ws51{word-spacing:4.488000px;}
.ws8d{word-spacing:4.686000px;}
.ws66{word-spacing:4.950000px;}
.wsa8{word-spacing:5.100000px;}
.ws87{word-spacing:5.346000px;}
.ws35{word-spacing:5.544000px;}
.ws31{word-spacing:5.676000px;}
.ws7c{word-spacing:5.808000px;}
.wsb9{word-spacing:5.820000px;}
.ws39{word-spacing:5.874000px;}
.ws8a{word-spacing:6.006000px;}
.ws16{word-spacing:6.336000px;}
.wsa0{word-spacing:6.420000px;}
.ws58{word-spacing:6.666000px;}
.wsa6{word-spacing:6.720000px;}
.ws28{word-spacing:6.930000px;}
.ws8e{word-spacing:7.062000px;}
.ws8{word-spacing:7.128000px;}
.ws25{word-spacing:7.194000px;}
.wsb6{word-spacing:7.260000px;}
.ws6c{word-spacing:7.326000px;}
.ws15{word-spacing:7.524000px;}
.ws3c{word-spacing:7.590000px;}
.wsa5{word-spacing:7.920000px;}
.ws5a{word-spacing:8.184000px;}
.ws40{word-spacing:8.316000px;}
.ws30{word-spacing:8.448000px;}
.wsa4{word-spacing:8.460000px;}
.ws5e{word-spacing:8.514000px;}
.ws55{word-spacing:8.646000px;}
.ws50{word-spacing:8.712000px;}
.ws84{word-spacing:8.778000px;}
.ws13{word-spacing:9.570000px;}
.wsbe{word-spacing:9.660000px;}
.ws5c{word-spacing:10.164000px;}
.ws20{word-spacing:10.230000px;}
.ws68{word-spacing:10.362000px;}
.ws1c{word-spacing:10.560000px;}
.wsa7{word-spacing:10.740000px;}
.ws1d{word-spacing:11.022000px;}
.wsa2{word-spacing:11.040000px;}
.wsc4{word-spacing:11.160000px;}
.ws9c{word-spacing:11.220000px;}
.ws97{word-spacing:11.280000px;}
.wsa3{word-spacing:11.340000px;}
.ws6a{word-spacing:11.418000px;}
.wsc7{word-spacing:11.700000px;}
.ws7e{word-spacing:11.748000px;}
.ws27{word-spacing:11.946000px;}
.ws6b{word-spacing:12.144000px;}
.ws2d{word-spacing:12.276000px;}
.ws1b{word-spacing:12.540000px;}
.ws21{word-spacing:12.672000px;}
.wsbd{word-spacing:12.780000px;}
.ws4a{word-spacing:13.002000px;}
.ws3a{word-spacing:13.266000px;}
.ws90{word-spacing:13.332000px;}
.wsc1{word-spacing:13.680000px;}
.ws2e{word-spacing:14.190000px;}
.ws52{word-spacing:14.256000px;}
.wsb4{word-spacing:14.460000px;}
.wsab{word-spacing:14.760000px;}
.wsad{word-spacing:14.820000px;}
.wsc0{word-spacing:15.300000px;}
.ws82{word-spacing:15.312000px;}
.ws56{word-spacing:15.378000px;}
.ws11{word-spacing:15.444000px;}
.ws17{word-spacing:15.510000px;}
.wsb0{word-spacing:15.660000px;}
.ws92{word-spacing:16.038000px;}
.ws88{word-spacing:16.170000px;}
.ws4b{word-spacing:16.236000px;}
.wsce{word-spacing:16.380000px;}
.ws73{word-spacing:17.160000px;}
.ws12{word-spacing:17.292000px;}
.ws72{word-spacing:17.358000px;}
.wsb7{word-spacing:17.400000px;}
.ws60{word-spacing:17.424000px;}
.ws74{word-spacing:17.556000px;}
.ws94{word-spacing:17.688000px;}
.ws93{word-spacing:17.820000px;}
.wsbb{word-spacing:17.940000px;}
.ws19{word-spacing:18.018000px;}
.ws49{word-spacing:18.546000px;}
.wsb2{word-spacing:18.600000px;}
.ws9{word-spacing:18.678000px;}
.ws46{word-spacing:18.744000px;}
.ws1a{word-spacing:18.876000px;}
.ws9e{word-spacing:18.960000px;}
.ws47{word-spacing:19.404000px;}
.ws3f{word-spacing:19.800000px;}
.wsae{word-spacing:19.980000px;}
.wsaa{word-spacing:20.580000px;}
.ws22{word-spacing:20.922000px;}
.ws44{word-spacing:21.252000px;}
.ws2a{word-spacing:21.450000px;}
.ws7d{word-spacing:21.516000px;}
.ws9f{word-spacing:21.720000px;}
.wsc{word-spacing:22.110000px;}
.ws6e{word-spacing:22.374000px;}
.ws59{word-spacing:22.572000px;}
.ws38{word-spacing:22.704000px;}
.ws32{word-spacing:22.770000px;}
.wscb{word-spacing:23.160000px;}
.ws4d{word-spacing:23.562000px;}
.wsf{word-spacing:23.694000px;}
.ws98{word-spacing:23.880000px;}
.ws2f{word-spacing:24.024000px;}
.ws14{word-spacing:24.222000px;}
.ws63{word-spacing:25.014000px;}
.wsb3{word-spacing:25.020000px;}
.ws34{word-spacing:25.146000px;}
.ws10{word-spacing:25.212000px;}
.wsd{word-spacing:25.806000px;}
.wsbf{word-spacing:26.220000px;}
.ws3d{word-spacing:26.598000px;}
.ws75{word-spacing:26.796000px;}
.ws36{word-spacing:27.126000px;}
.ws3e{word-spacing:27.258000px;}
.ws2c{word-spacing:27.522000px;}
.ws5b{word-spacing:27.786000px;}
.wsac{word-spacing:28.440000px;}
.wsa{word-spacing:28.842000px;}
.wsba{word-spacing:28.860000px;}
.ws2b{word-spacing:28.974000px;}
.wsb8{word-spacing:28.980000px;}
.wsc6{word-spacing:29.040000px;}
.wsc8{word-spacing:30.840000px;}
.ws76{word-spacing:30.888000px;}
.ws33{word-spacing:32.802000px;}
.wsc2{word-spacing:32.820000px;}
.wsc5{word-spacing:34.140000px;}
.wsaf{word-spacing:34.500000px;}
.ws23{word-spacing:37.422000px;}
.ws9a{word-spacing:37.620000px;}
.ws62{word-spacing:37.884000px;}
.ws69{word-spacing:38.016000px;}
.ws6{word-spacing:38.346000px;}
.wsca{word-spacing:38.580000px;}
.wse{word-spacing:38.874000px;}
.wsc9{word-spacing:41.940000px;}
.ws5f{word-spacing:43.164000px;}
.ws24{word-spacing:48.972000px;}
.ws8b{word-spacing:49.368000px;}
.ws7{word-spacing:55.374000px;}
.ws0{word-spacing:280.911600px;}
._9{margin-left:-65.664000px;}
._1c{margin-left:-14.538000px;}
._16{margin-left:-8.263200px;}
._8{margin-left:-7.074000px;}
._7{margin-left:-5.049000px;}
._0{margin-left:-3.486000px;}
._12{margin-left:-2.382600px;}
._5{margin-left:-1.320000px;}
._1{width:1.587241px;}
._6{width:3.088800px;}
._c{width:4.118400px;}
._15{width:5.676000px;}
._11{width:6.798000px;}
._f{width:8.454600px;}
._14{width:9.490800px;}
._10{width:11.543400px;}
._17{width:13.503600px;}
._13{width:15.549600px;}
._1a{width:16.560600px;}
._1e{width:18.234000px;}
._4{width:24.576000px;}
._19{width:26.287800px;}
._b{width:27.667200px;}
._18{width:29.805600px;}
._1d{width:38.388000px;}
._1b{width:40.680000px;}
._a{width:47.104200px;}
._e{width:63.360000px;}
._d{width:64.376400px;}
._2{width:153.107843px;}
._3{width:183.490826px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:56.881050px;}
.y20{bottom:73.081050px;}
.y3{bottom:81.772500px;}
.yc6{bottom:110.393400px;}
.yd{bottom:126.730050px;}
.yc5{bottom:129.896400px;}
.yf1{bottom:133.476900px;}
.y11c{bottom:135.545100px;}
.y150{bottom:137.124900px;}
.yc{bottom:142.930050px;}
.y95{bottom:147.072900px;}
.yc4{bottom:149.399400px;}
.yf0{bottom:152.979900px;}
.y11b{bottom:154.295100px;}
.y14f{bottom:155.874900px;}
.y94{bottom:166.575900px;}
.yc3{bottom:168.902400px;}
.y64{bottom:170.422950px;}
.yef{bottom:172.482900px;}
.y11a{bottom:173.045100px;}
.y14e{bottom:180.999900px;}
.y43{bottom:185.041950px;}
.y93{bottom:186.078900px;}
.yc2{bottom:188.405400px;}
.y63{bottom:189.925950px;}
.y119{bottom:191.795100px;}
.y14d{bottom:199.749900px;}
.y42{bottom:204.544950px;}
.y92{bottom:205.581900px;}
.yc1{bottom:207.908400px;}
.yee{bottom:208.997400px;}
.y62{bottom:209.428950px;}
.y118{bottom:216.920100px;}
.y14c{bottom:218.499900px;}
.y41{bottom:224.047950px;}
.y91{bottom:225.084900px;}
.yc0{bottom:227.411400px;}
.yed{bottom:228.500400px;}
.y61{bottom:228.931950px;}
.y117{bottom:235.670100px;}
.y14b{bottom:237.249900px;}
.y40{bottom:243.550950px;}
.y90{bottom:244.587900px;}
.ybf{bottom:246.914400px;}
.yec{bottom:248.003400px;}
.y60{bottom:248.434950px;}
.y116{bottom:254.420100px;}
.y14a{bottom:255.999900px;}
.y3f{bottom:263.053950px;}
.y8f{bottom:264.090900px;}
.ybe{bottom:266.417400px;}
.y115{bottom:273.170100px;}
.y149{bottom:274.749900px;}
.y3e{bottom:282.556950px;}
.y8e{bottom:283.593900px;}
.yeb{bottom:284.517900px;}
.y5f{bottom:284.949450px;}
.ybd{bottom:285.920400px;}
.y114{bottom:298.295100px;}
.y148{bottom:299.874900px;}
.y3d{bottom:302.059950px;}
.y113{bottom:317.045100px;}
.y147{bottom:318.624900px;}
.y8d{bottom:320.108400px;}
.yea{bottom:321.032400px;}
.y5e{bottom:321.463950px;}
.y3c{bottom:321.562950px;}
.ybc{bottom:322.434900px;}
.y112{bottom:335.795100px;}
.y146{bottom:337.374900px;}
.y5d{bottom:340.966950px;}
.y3b{bottom:341.065950px;}
.y111{bottom:354.545100px;}
.y145{bottom:356.124900px;}
.y8c{bottom:356.622900px;}
.ye9{bottom:357.546900px;}
.ybb{bottom:358.949400px;}
.y5c{bottom:360.469950px;}
.y3a{bottom:360.568950px;}
.y8b{bottom:376.125900px;}
.ye8{bottom:377.049900px;}
.yba{bottom:378.452400px;}
.y110{bottom:379.670100px;}
.y5b{bottom:379.972950px;}
.y39{bottom:380.071950px;}
.y144{bottom:381.249900px;}
.y8a{bottom:395.628900px;}
.ye7{bottom:396.552900px;}
.yb9{bottom:397.955400px;}
.y10f{bottom:398.420100px;}
.y5a{bottom:399.475950px;}
.y38{bottom:399.574950px;}
.y143{bottom:399.999900px;}
.y89{bottom:415.131900px;}
.y10e{bottom:417.170100px;}
.yb8{bottom:417.458400px;}
.y142{bottom:418.749900px;}
.y59{bottom:418.978950px;}
.y37{bottom:419.077950px;}
.ye6{bottom:433.067400px;}
.y88{bottom:434.634900px;}
.yb7{bottom:436.961400px;}
.y141{bottom:437.499900px;}
.y58{bottom:438.481950px;}
.y10d{bottom:442.295100px;}
.y87{bottom:454.137900px;}
.y36{bottom:455.592450px;}
.yb6{bottom:456.464400px;}
.y57{bottom:457.984950px;}
.y10c{bottom:461.045100px;}
.y140{bottom:462.624900px;}
.ye5{bottom:469.581900px;}
.y86{bottom:473.640900px;}
.y35{bottom:475.095450px;}
.yb5{bottom:475.967400px;}
.y56{bottom:477.487950px;}
.y10b{bottom:479.795100px;}
.y13f{bottom:481.374900px;}
.ye4{bottom:489.084900px;}
.y85{bottom:493.143900px;}
.y34{bottom:494.598450px;}
.y55{bottom:496.990950px;}
.y10a{bottom:498.545100px;}
.y1f{bottom:503.150550px;}
.y13e{bottom:506.499900px;}
.yb4{bottom:512.481900px;}
.y84{bottom:512.646900px;}
.y33{bottom:514.101450px;}
.y54{bottom:516.493950px;}
.y1e{bottom:523.603050px;}
.y109{bottom:523.670100px;}
.y13d{bottom:525.249900px;}
.y83{bottom:532.149900px;}
.y32{bottom:533.604450px;}
.y53{bottom:535.996950px;}
.y108{bottom:542.420100px;}
.y13c{bottom:543.999900px;}
.yb3{bottom:548.996400px;}
.y82{bottom:551.652900px;}
.y31{bottom:553.107450px;}
.y52{bottom:555.499950px;}
.y107{bottom:561.170100px;}
.ye3{bottom:562.097400px;}
.y13b{bottom:562.749900px;}
.y1d{bottom:564.508050px;}
.yb2{bottom:568.499400px;}
.y30{bottom:572.610450px;}
.y51{bottom:575.002950px;}
.y106{bottom:579.920100px;}
.y13a{bottom:581.499900px;}
.ye2{bottom:581.600400px;}
.y1c{bottom:584.960550px;}
.yb1{bottom:588.002400px;}
.y81{bottom:588.167400px;}
.y2f{bottom:592.113450px;}
.y50{bottom:594.505950px;}
.ye1{bottom:601.103400px;}
.y1b{bottom:601.160550px;}
.y105{bottom:605.045100px;}
.y139{bottom:606.624900px;}
.yb0{bottom:607.505400px;}
.y2e{bottom:611.616450px;}
.y4f{bottom:614.008950px;}
.ye0{bottom:620.606400px;}
.y1a{bottom:621.613050px;}
.y104{bottom:623.795100px;}
.y80{bottom:624.681900px;}
.y138{bottom:625.374900px;}
.yaf{bottom:627.008400px;}
.y2d{bottom:631.119450px;}
.y4e{bottom:633.511950px;}
.ydf{bottom:640.109400px;}
.y19{bottom:642.065550px;}
.y103{bottom:642.545100px;}
.y137{bottom:644.124900px;}
.y7f{bottom:644.184900px;}
.yae{bottom:646.511400px;}
.y2c{bottom:650.622450px;}
.y4d{bottom:653.014950px;}
.yde{bottom:659.612400px;}
.y136{bottom:662.874900px;}
.y7e{bottom:663.687900px;}
.y102{bottom:667.670100px;}
.y2b{bottom:670.125450px;}
.y4c{bottom:672.517950px;}
.ydd{bottom:679.115400px;}
.y18{bottom:682.970550px;}
.yad{bottom:683.025900px;}
.y7d{bottom:683.190900px;}
.y101{bottom:686.420100px;}
.y135{bottom:687.999900px;}
.y2a{bottom:689.628450px;}
.y4b{bottom:692.020950px;}
.ydc{bottom:698.618400px;}
.y7c{bottom:702.693900px;}
.y17{bottom:703.423050px;}
.y100{bottom:705.170100px;}
.y134{bottom:706.749900px;}
.y29{bottom:709.131450px;}
.y4a{bottom:711.523950px;}
.ydb{bottom:718.121400px;}
.yac{bottom:719.540400px;}
.y7b{bottom:722.196900px;}
.y16{bottom:723.875550px;}
.y133{bottom:725.499900px;}
.y28{bottom:728.634450px;}
.yff{bottom:730.295100px;}
.y49{bottom:731.026950px;}
.yda{bottom:737.624400px;}
.yab{bottom:739.043400px;}
.y7a{bottom:741.699900px;}
.y132{bottom:744.249900px;}
.y15{bottom:744.328050px;}
.y27{bottom:748.137450px;}
.yfe{bottom:749.045100px;}
.y48{bottom:750.529950px;}
.yd9{bottom:757.127400px;}
.yaa{bottom:758.546400px;}
.y79{bottom:761.202900px;}
.y131{bottom:762.999900px;}
.y26{bottom:767.640450px;}
.yfd{bottom:767.795100px;}
.y47{bottom:770.032950px;}
.yd8{bottom:776.630400px;}
.ya9{bottom:778.049400px;}
.y78{bottom:780.705900px;}
.y14{bottom:785.233050px;}
.yfc{bottom:786.545100px;}
.y25{bottom:787.143450px;}
.y130{bottom:788.124900px;}
.yd7{bottom:796.133400px;}
.ya8{bottom:797.552400px;}
.y77{bottom:800.208900px;}
.y13{bottom:805.685550px;}
.y46{bottom:806.547450px;}
.y24{bottom:806.646450px;}
.y12f{bottom:806.874900px;}
.yfb{bottom:813.606900px;}
.yd6{bottom:815.636400px;}
.ya7{bottom:817.055400px;}
.y76{bottom:819.711900px;}
.y12e{bottom:825.624900px;}
.y23{bottom:826.149450px;}
.yd5{bottom:835.139400px;}
.ya6{bottom:836.558400px;}
.y75{bottom:839.214900px;}
.y45{bottom:843.061950px;}
.y12d{bottom:844.374900px;}
.y12{bottom:846.590550px;}
.yd4{bottom:854.642400px;}
.ya5{bottom:856.061400px;}
.y74{bottom:858.717900px;}
.y44{bottom:862.564950px;}
.y22{bottom:862.663950px;}
.y11{bottom:862.790550px;}
.y12c{bottom:863.124900px;}
.ya4{bottom:875.564400px;}
.yfa{bottom:878.715900px;}
.y10{bottom:878.990550px;}
.y12b{bottom:888.249900px;}
.yd3{bottom:891.156900px;}
.ya3{bottom:895.067400px;}
.yf{bottom:895.190550px;}
.y73{bottom:895.232400px;}
.yf9{bottom:903.465900px;}
.y12a{bottom:906.999900px;}
.yb{bottom:909.476250px;}
.ya2{bottom:914.570400px;}
.ye{bottom:915.643050px;}
.y129{bottom:925.749900px;}
.yd2{bottom:927.671400px;}
.y72{bottom:931.746900px;}
.ya{bottom:932.804100px;}
.ya1{bottom:934.073400px;}
.yf8{bottom:939.980400px;}
.yd1{bottom:947.174400px;}
.y128{bottom:950.874900px;}
.y71{bottom:951.249900px;}
.ya0{bottom:953.576400px;}
.y15a{bottom:964.368900px;}
.yd0{bottom:966.677400px;}
.y127{bottom:969.624900px;}
.y70{bottom:970.752900px;}
.y8{bottom:972.829800px;}
.y9f{bottom:973.079400px;}
.yf7{bottom:976.494900px;}
.y159{bottom:984.168900px;}
.ycf{bottom:986.180400px;}
.y126{bottom:988.374900px;}
.y6f{bottom:990.255900px;}
.y9e{bottom:992.582400px;}
.y158{bottom:1003.968900px;}
.y7{bottom:1005.229800px;}
.yce{bottom:1005.683400px;}
.y125{bottom:1007.124900px;}
.y6e{bottom:1009.758900px;}
.y9d{bottom:1012.085400px;}
.yf6{bottom:1013.009400px;}
.ycd{bottom:1025.186400px;}
.y124{bottom:1025.874900px;}
.y6d{bottom:1029.261900px;}
.y9c{bottom:1031.588400px;}
.y123{bottom:1044.624900px;}
.ycc{bottom:1044.689400px;}
.y6c{bottom:1048.764900px;}
.yf5{bottom:1049.523900px;}
.y157{bottom:1049.979900px;}
.y9b{bottom:1051.091400px;}
.y6{bottom:1053.546450px;}
.ycb{bottom:1064.192400px;}
.y6b{bottom:1068.267900px;}
.y5{bottom:1069.746450px;}
.y122{bottom:1069.749900px;}
.y156{bottom:1069.779900px;}
.y9a{bottom:1070.594400px;}
.yca{bottom:1083.695400px;}
.yf4{bottom:1086.038400px;}
.y6a{bottom:1087.770900px;}
.y121{bottom:1088.499900px;}
.y155{bottom:1088.529900px;}
.y99{bottom:1090.097400px;}
.yc9{bottom:1103.198400px;}
.y120{bottom:1107.249900px;}
.y69{bottom:1107.273900px;}
.y154{bottom:1107.279900px;}
.y98{bottom:1109.600400px;}
.yf3{bottom:1122.552900px;}
.yc8{bottom:1122.701400px;}
.y9{bottom:1123.179750px;}
.y68{bottom:1126.776900px;}
.y97{bottom:1129.103400px;}
.y11f{bottom:1132.374900px;}
.y153{bottom:1132.404900px;}
.y67{bottom:1146.279900px;}
.y11e{bottom:1151.124900px;}
.y152{bottom:1151.154900px;}
.yf2{bottom:1159.067400px;}
.yc7{bottom:1159.215900px;}
.y96{bottom:1165.617900px;}
.y66{bottom:1165.782900px;}
.y11d{bottom:1169.874900px;}
.y151{bottom:1169.904900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y65{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.hc{height:40.394531px;}
.hb{height:40.605469px;}
.h3{height:44.414062px;}
.h10{height:44.882812px;}
.h4{height:45.117188px;}
.h5{height:47.277398px;}
.hd{height:49.371094px;}
.he{height:49.628906px;}
.h8{height:50.414062px;}
.h9{height:51.445312px;}
.hf{height:54.140625px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.098550px;}
.xc{left:15.670050px;}
.xd{left:18.856050px;}
.x15{left:23.122050px;}
.xe{left:24.391050px;}
.x11{left:30.344550px;}
.x13{left:35.866050px;}
.x6{left:37.732200px;}
.x14{left:48.583050px;}
.xb{left:57.182550px;}
.x5{left:63.044700px;}
.xf{left:64.094550px;}
.x16{left:66.619050px;}
.x18{left:72.283350px;}
.x10{left:88.651050px;}
.x1b{left:91.523550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.xa{left:216.712050px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x19{left:461.545050px;}
.x1a{left:488.338650px;}
.x17{left:536.042700px;}
.x8{left:764.209050px;}
.x3{left:793.314300px;}
@media print{
.v1{vertical-align:-56.592533pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws3b{word-spacing:-16.192000pt;}
.ws2{word-spacing:-13.248000pt;}
.wsb1{word-spacing:-8.160000pt;}
.ws1e{word-spacing:-6.922667pt;}
.wsb5{word-spacing:-6.880000pt;}
.ws70{word-spacing:-6.864000pt;}
.ws8c{word-spacing:-6.805333pt;}
.ws85{word-spacing:-6.218667pt;}
.ws53{word-spacing:-5.514667pt;}
.ws83{word-spacing:-5.280000pt;}
.ws5d{word-spacing:-5.104000pt;}
.wsbc{word-spacing:-4.960000pt;}
.ws9b{word-spacing:-4.906667pt;}
.wsa1{word-spacing:-4.426667pt;}
.ws96{word-spacing:-4.341333pt;}
.ws78{word-spacing:-4.106667pt;}
.ws79{word-spacing:-3.930667pt;}
.ws95{word-spacing:-2.992000pt;}
.ws4{word-spacing:-2.976000pt;}
.ws7a{word-spacing:-2.874667pt;}
.ws61{word-spacing:-2.757333pt;}
.ws26{word-spacing:-2.698667pt;}
.wscc{word-spacing:-2.506667pt;}
.ws42{word-spacing:-2.405333pt;}
.ws5{word-spacing:-2.352000pt;}
.ws4e{word-spacing:-2.346667pt;}
.ws91{word-spacing:-2.229333pt;}
.ws29{word-spacing:-1.642667pt;}
.ws64{word-spacing:-1.584000pt;}
.ws9d{word-spacing:-1.493333pt;}
.ws4c{word-spacing:-1.466667pt;}
.ws86{word-spacing:-1.290667pt;}
.ws57{word-spacing:-1.114667pt;}
.ws89{word-spacing:-1.056000pt;}
.ws67{word-spacing:-0.997333pt;}
.ws8f{word-spacing:-0.762667pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws6d{word-spacing:-0.469333pt;}
.ws7f{word-spacing:-0.234667pt;}
.ws1{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws43{word-spacing:0.293333pt;}
.ws6f{word-spacing:0.645333pt;}
.ws18{word-spacing:0.762667pt;}
.ws7b{word-spacing:0.997333pt;}
.ws41{word-spacing:1.056000pt;}
.wsb{word-spacing:1.584000pt;}
.ws80{word-spacing:1.994667pt;}
.ws71{word-spacing:2.170667pt;}
.wscd{word-spacing:2.720000pt;}
.ws37{word-spacing:2.816000pt;}
.wsc3{word-spacing:2.826667pt;}
.ws45{word-spacing:2.992000pt;}
.wscf{word-spacing:3.040000pt;}
.ws81{word-spacing:3.168000pt;}
.wsa9{word-spacing:3.253333pt;}
.ws48{word-spacing:3.344000pt;}
.ws65{word-spacing:3.402667pt;}
.ws54{word-spacing:3.461333pt;}
.ws77{word-spacing:3.520000pt;}
.ws1f{word-spacing:3.696000pt;}
.ws99{word-spacing:3.893333pt;}
.ws51{word-spacing:3.989333pt;}
.ws8d{word-spacing:4.165333pt;}
.ws66{word-spacing:4.400000pt;}
.wsa8{word-spacing:4.533333pt;}
.ws87{word-spacing:4.752000pt;}
.ws35{word-spacing:4.928000pt;}
.ws31{word-spacing:5.045333pt;}
.ws7c{word-spacing:5.162667pt;}
.wsb9{word-spacing:5.173333pt;}
.ws39{word-spacing:5.221333pt;}
.ws8a{word-spacing:5.338667pt;}
.ws16{word-spacing:5.632000pt;}
.wsa0{word-spacing:5.706667pt;}
.ws58{word-spacing:5.925333pt;}
.wsa6{word-spacing:5.973333pt;}
.ws28{word-spacing:6.160000pt;}
.ws8e{word-spacing:6.277333pt;}
.ws8{word-spacing:6.336000pt;}
.ws25{word-spacing:6.394667pt;}
.wsb6{word-spacing:6.453333pt;}
.ws6c{word-spacing:6.512000pt;}
.ws15{word-spacing:6.688000pt;}
.ws3c{word-spacing:6.746667pt;}
.wsa5{word-spacing:7.040000pt;}
.ws5a{word-spacing:7.274667pt;}
.ws40{word-spacing:7.392000pt;}
.ws30{word-spacing:7.509333pt;}
.wsa4{word-spacing:7.520000pt;}
.ws5e{word-spacing:7.568000pt;}
.ws55{word-spacing:7.685333pt;}
.ws50{word-spacing:7.744000pt;}
.ws84{word-spacing:7.802667pt;}
.ws13{word-spacing:8.506667pt;}
.wsbe{word-spacing:8.586667pt;}
.ws5c{word-spacing:9.034667pt;}
.ws20{word-spacing:9.093333pt;}
.ws68{word-spacing:9.210667pt;}
.ws1c{word-spacing:9.386667pt;}
.wsa7{word-spacing:9.546667pt;}
.ws1d{word-spacing:9.797333pt;}
.wsa2{word-spacing:9.813333pt;}
.wsc4{word-spacing:9.920000pt;}
.ws9c{word-spacing:9.973333pt;}
.ws97{word-spacing:10.026667pt;}
.wsa3{word-spacing:10.080000pt;}
.ws6a{word-spacing:10.149333pt;}
.wsc7{word-spacing:10.400000pt;}
.ws7e{word-spacing:10.442667pt;}
.ws27{word-spacing:10.618667pt;}
.ws6b{word-spacing:10.794667pt;}
.ws2d{word-spacing:10.912000pt;}
.ws1b{word-spacing:11.146667pt;}
.ws21{word-spacing:11.264000pt;}
.wsbd{word-spacing:11.360000pt;}
.ws4a{word-spacing:11.557333pt;}
.ws3a{word-spacing:11.792000pt;}
.ws90{word-spacing:11.850667pt;}
.wsc1{word-spacing:12.160000pt;}
.ws2e{word-spacing:12.613333pt;}
.ws52{word-spacing:12.672000pt;}
.wsb4{word-spacing:12.853333pt;}
.wsab{word-spacing:13.120000pt;}
.wsad{word-spacing:13.173333pt;}
.wsc0{word-spacing:13.600000pt;}
.ws82{word-spacing:13.610667pt;}
.ws56{word-spacing:13.669333pt;}
.ws11{word-spacing:13.728000pt;}
.ws17{word-spacing:13.786667pt;}
.wsb0{word-spacing:13.920000pt;}
.ws92{word-spacing:14.256000pt;}
.ws88{word-spacing:14.373333pt;}
.ws4b{word-spacing:14.432000pt;}
.wsce{word-spacing:14.560000pt;}
.ws73{word-spacing:15.253333pt;}
.ws12{word-spacing:15.370667pt;}
.ws72{word-spacing:15.429333pt;}
.wsb7{word-spacing:15.466667pt;}
.ws60{word-spacing:15.488000pt;}
.ws74{word-spacing:15.605333pt;}
.ws94{word-spacing:15.722667pt;}
.ws93{word-spacing:15.840000pt;}
.wsbb{word-spacing:15.946667pt;}
.ws19{word-spacing:16.016000pt;}
.ws49{word-spacing:16.485333pt;}
.wsb2{word-spacing:16.533333pt;}
.ws9{word-spacing:16.602667pt;}
.ws46{word-spacing:16.661333pt;}
.ws1a{word-spacing:16.778667pt;}
.ws9e{word-spacing:16.853333pt;}
.ws47{word-spacing:17.248000pt;}
.ws3f{word-spacing:17.600000pt;}
.wsae{word-spacing:17.760000pt;}
.wsaa{word-spacing:18.293333pt;}
.ws22{word-spacing:18.597333pt;}
.ws44{word-spacing:18.890667pt;}
.ws2a{word-spacing:19.066667pt;}
.ws7d{word-spacing:19.125333pt;}
.ws9f{word-spacing:19.306667pt;}
.wsc{word-spacing:19.653333pt;}
.ws6e{word-spacing:19.888000pt;}
.ws59{word-spacing:20.064000pt;}
.ws38{word-spacing:20.181333pt;}
.ws32{word-spacing:20.240000pt;}
.wscb{word-spacing:20.586667pt;}
.ws4d{word-spacing:20.944000pt;}
.wsf{word-spacing:21.061333pt;}
.ws98{word-spacing:21.226667pt;}
.ws2f{word-spacing:21.354667pt;}
.ws14{word-spacing:21.530667pt;}
.ws63{word-spacing:22.234667pt;}
.wsb3{word-spacing:22.240000pt;}
.ws34{word-spacing:22.352000pt;}
.ws10{word-spacing:22.410667pt;}
.wsd{word-spacing:22.938667pt;}
.wsbf{word-spacing:23.306667pt;}
.ws3d{word-spacing:23.642667pt;}
.ws75{word-spacing:23.818667pt;}
.ws36{word-spacing:24.112000pt;}
.ws3e{word-spacing:24.229333pt;}
.ws2c{word-spacing:24.464000pt;}
.ws5b{word-spacing:24.698667pt;}
.wsac{word-spacing:25.280000pt;}
.wsa{word-spacing:25.637333pt;}
.wsba{word-spacing:25.653333pt;}
.ws2b{word-spacing:25.754667pt;}
.wsb8{word-spacing:25.760000pt;}
.wsc6{word-spacing:25.813333pt;}
.wsc8{word-spacing:27.413333pt;}
.ws76{word-spacing:27.456000pt;}
.ws33{word-spacing:29.157333pt;}
.wsc2{word-spacing:29.173333pt;}
.wsc5{word-spacing:30.346667pt;}
.wsaf{word-spacing:30.666667pt;}
.ws23{word-spacing:33.264000pt;}
.ws9a{word-spacing:33.440000pt;}
.ws62{word-spacing:33.674667pt;}
.ws69{word-spacing:33.792000pt;}
.ws6{word-spacing:34.085333pt;}
.wsca{word-spacing:34.293333pt;}
.wse{word-spacing:34.554667pt;}
.wsc9{word-spacing:37.280000pt;}
.ws5f{word-spacing:38.368000pt;}
.ws24{word-spacing:43.530667pt;}
.ws8b{word-spacing:43.882667pt;}
.ws7{word-spacing:49.221333pt;}
.ws0{word-spacing:249.699200pt;}
._9{margin-left:-58.368000pt;}
._1c{margin-left:-12.922667pt;}
._16{margin-left:-7.345067pt;}
._8{margin-left:-6.288000pt;}
._7{margin-left:-4.488000pt;}
._0{margin-left:-3.098667pt;}
._12{margin-left:-2.117867pt;}
._5{margin-left:-1.173333pt;}
._1{width:1.410881pt;}
._6{width:2.745600pt;}
._c{width:3.660800pt;}
._15{width:5.045333pt;}
._11{width:6.042667pt;}
._f{width:7.515200pt;}
._14{width:8.436267pt;}
._10{width:10.260800pt;}
._17{width:12.003200pt;}
._13{width:13.821867pt;}
._1a{width:14.720533pt;}
._1e{width:16.208000pt;}
._4{width:21.845333pt;}
._19{width:23.366933pt;}
._b{width:24.593067pt;}
._18{width:26.493867pt;}
._1d{width:34.122667pt;}
._1b{width:36.160000pt;}
._a{width:41.870400pt;}
._e{width:56.320000pt;}
._d{width:57.223467pt;}
._2{width:136.095860pt;}
._3{width:163.102957pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:50.560933pt;}
.y20{bottom:64.960933pt;}
.y3{bottom:72.686667pt;}
.yc6{bottom:98.127467pt;}
.yd{bottom:112.648933pt;}
.yc5{bottom:115.463467pt;}
.yf1{bottom:118.646133pt;}
.y11c{bottom:120.484533pt;}
.y150{bottom:121.888800pt;}
.yc{bottom:127.048933pt;}
.y95{bottom:130.731467pt;}
.yc4{bottom:132.799467pt;}
.yf0{bottom:135.982133pt;}
.y11b{bottom:137.151200pt;}
.y14f{bottom:138.555467pt;}
.y94{bottom:148.067467pt;}
.yc3{bottom:150.135467pt;}
.y64{bottom:151.487067pt;}
.yef{bottom:153.318133pt;}
.y11a{bottom:153.817867pt;}
.y14e{bottom:160.888800pt;}
.y43{bottom:164.481733pt;}
.y93{bottom:165.403467pt;}
.yc2{bottom:167.471467pt;}
.y63{bottom:168.823067pt;}
.y119{bottom:170.484533pt;}
.y14d{bottom:177.555467pt;}
.y42{bottom:181.817733pt;}
.y92{bottom:182.739467pt;}
.yc1{bottom:184.807467pt;}
.yee{bottom:185.775467pt;}
.y62{bottom:186.159067pt;}
.y118{bottom:192.817867pt;}
.y14c{bottom:194.222133pt;}
.y41{bottom:199.153733pt;}
.y91{bottom:200.075467pt;}
.yc0{bottom:202.143467pt;}
.yed{bottom:203.111467pt;}
.y61{bottom:203.495067pt;}
.y117{bottom:209.484533pt;}
.y14b{bottom:210.888800pt;}
.y40{bottom:216.489733pt;}
.y90{bottom:217.411467pt;}
.ybf{bottom:219.479467pt;}
.yec{bottom:220.447467pt;}
.y60{bottom:220.831067pt;}
.y116{bottom:226.151200pt;}
.y14a{bottom:227.555467pt;}
.y3f{bottom:233.825733pt;}
.y8f{bottom:234.747467pt;}
.ybe{bottom:236.815467pt;}
.y115{bottom:242.817867pt;}
.y149{bottom:244.222133pt;}
.y3e{bottom:251.161733pt;}
.y8e{bottom:252.083467pt;}
.yeb{bottom:252.904800pt;}
.y5f{bottom:253.288400pt;}
.ybd{bottom:254.151467pt;}
.y114{bottom:265.151200pt;}
.y148{bottom:266.555467pt;}
.y3d{bottom:268.497733pt;}
.y113{bottom:281.817867pt;}
.y147{bottom:283.222133pt;}
.y8d{bottom:284.540800pt;}
.yea{bottom:285.362133pt;}
.y5e{bottom:285.745733pt;}
.y3c{bottom:285.833733pt;}
.ybc{bottom:286.608800pt;}
.y112{bottom:298.484533pt;}
.y146{bottom:299.888800pt;}
.y5d{bottom:303.081733pt;}
.y3b{bottom:303.169733pt;}
.y111{bottom:315.151200pt;}
.y145{bottom:316.555467pt;}
.y8c{bottom:316.998133pt;}
.ye9{bottom:317.819467pt;}
.ybb{bottom:319.066133pt;}
.y5c{bottom:320.417733pt;}
.y3a{bottom:320.505733pt;}
.y8b{bottom:334.334133pt;}
.ye8{bottom:335.155467pt;}
.yba{bottom:336.402133pt;}
.y110{bottom:337.484533pt;}
.y5b{bottom:337.753733pt;}
.y39{bottom:337.841733pt;}
.y144{bottom:338.888800pt;}
.y8a{bottom:351.670133pt;}
.ye7{bottom:352.491467pt;}
.yb9{bottom:353.738133pt;}
.y10f{bottom:354.151200pt;}
.y5a{bottom:355.089733pt;}
.y38{bottom:355.177733pt;}
.y143{bottom:355.555467pt;}
.y89{bottom:369.006133pt;}
.y10e{bottom:370.817867pt;}
.yb8{bottom:371.074133pt;}
.y142{bottom:372.222133pt;}
.y59{bottom:372.425733pt;}
.y37{bottom:372.513733pt;}
.ye6{bottom:384.948800pt;}
.y88{bottom:386.342133pt;}
.yb7{bottom:388.410133pt;}
.y141{bottom:388.888800pt;}
.y58{bottom:389.761733pt;}
.y10d{bottom:393.151200pt;}
.y87{bottom:403.678133pt;}
.y36{bottom:404.971067pt;}
.yb6{bottom:405.746133pt;}
.y57{bottom:407.097733pt;}
.y10c{bottom:409.817867pt;}
.y140{bottom:411.222133pt;}
.ye5{bottom:417.406133pt;}
.y86{bottom:421.014133pt;}
.y35{bottom:422.307067pt;}
.yb5{bottom:423.082133pt;}
.y56{bottom:424.433733pt;}
.y10b{bottom:426.484533pt;}
.y13f{bottom:427.888800pt;}
.ye4{bottom:434.742133pt;}
.y85{bottom:438.350133pt;}
.y34{bottom:439.643067pt;}
.y55{bottom:441.769733pt;}
.y10a{bottom:443.151200pt;}
.y1f{bottom:447.244933pt;}
.y13e{bottom:450.222133pt;}
.yb4{bottom:455.539467pt;}
.y84{bottom:455.686133pt;}
.y33{bottom:456.979067pt;}
.y54{bottom:459.105733pt;}
.y1e{bottom:465.424933pt;}
.y109{bottom:465.484533pt;}
.y13d{bottom:466.888800pt;}
.y83{bottom:473.022133pt;}
.y32{bottom:474.315067pt;}
.y53{bottom:476.441733pt;}
.y108{bottom:482.151200pt;}
.y13c{bottom:483.555467pt;}
.yb3{bottom:487.996800pt;}
.y82{bottom:490.358133pt;}
.y31{bottom:491.651067pt;}
.y52{bottom:493.777733pt;}
.y107{bottom:498.817867pt;}
.ye3{bottom:499.642133pt;}
.y13b{bottom:500.222133pt;}
.y1d{bottom:501.784933pt;}
.yb2{bottom:505.332800pt;}
.y30{bottom:508.987067pt;}
.y51{bottom:511.113733pt;}
.y106{bottom:515.484533pt;}
.y13a{bottom:516.888800pt;}
.ye2{bottom:516.978133pt;}
.y1c{bottom:519.964933pt;}
.yb1{bottom:522.668800pt;}
.y81{bottom:522.815467pt;}
.y2f{bottom:526.323067pt;}
.y50{bottom:528.449733pt;}
.ye1{bottom:534.314133pt;}
.y1b{bottom:534.364933pt;}
.y105{bottom:537.817867pt;}
.y139{bottom:539.222133pt;}
.yb0{bottom:540.004800pt;}
.y2e{bottom:543.659067pt;}
.y4f{bottom:545.785733pt;}
.ye0{bottom:551.650133pt;}
.y1a{bottom:552.544933pt;}
.y104{bottom:554.484533pt;}
.y80{bottom:555.272800pt;}
.y138{bottom:555.888800pt;}
.yaf{bottom:557.340800pt;}
.y2d{bottom:560.995067pt;}
.y4e{bottom:563.121733pt;}
.ydf{bottom:568.986133pt;}
.y19{bottom:570.724933pt;}
.y103{bottom:571.151200pt;}
.y137{bottom:572.555467pt;}
.y7f{bottom:572.608800pt;}
.yae{bottom:574.676800pt;}
.y2c{bottom:578.331067pt;}
.y4d{bottom:580.457733pt;}
.yde{bottom:586.322133pt;}
.y136{bottom:589.222133pt;}
.y7e{bottom:589.944800pt;}
.y102{bottom:593.484533pt;}
.y2b{bottom:595.667067pt;}
.y4c{bottom:597.793733pt;}
.ydd{bottom:603.658133pt;}
.y18{bottom:607.084933pt;}
.yad{bottom:607.134133pt;}
.y7d{bottom:607.280800pt;}
.y101{bottom:610.151200pt;}
.y135{bottom:611.555467pt;}
.y2a{bottom:613.003067pt;}
.y4b{bottom:615.129733pt;}
.ydc{bottom:620.994133pt;}
.y7c{bottom:624.616800pt;}
.y17{bottom:625.264933pt;}
.y100{bottom:626.817867pt;}
.y134{bottom:628.222133pt;}
.y29{bottom:630.339067pt;}
.y4a{bottom:632.465733pt;}
.ydb{bottom:638.330133pt;}
.yac{bottom:639.591467pt;}
.y7b{bottom:641.952800pt;}
.y16{bottom:643.444933pt;}
.y133{bottom:644.888800pt;}
.y28{bottom:647.675067pt;}
.yff{bottom:649.151200pt;}
.y49{bottom:649.801733pt;}
.yda{bottom:655.666133pt;}
.yab{bottom:656.927467pt;}
.y7a{bottom:659.288800pt;}
.y132{bottom:661.555467pt;}
.y15{bottom:661.624933pt;}
.y27{bottom:665.011067pt;}
.yfe{bottom:665.817867pt;}
.y48{bottom:667.137733pt;}
.yd9{bottom:673.002133pt;}
.yaa{bottom:674.263467pt;}
.y79{bottom:676.624800pt;}
.y131{bottom:678.222133pt;}
.y26{bottom:682.347067pt;}
.yfd{bottom:682.484533pt;}
.y47{bottom:684.473733pt;}
.yd8{bottom:690.338133pt;}
.ya9{bottom:691.599467pt;}
.y78{bottom:693.960800pt;}
.y14{bottom:697.984933pt;}
.yfc{bottom:699.151200pt;}
.y25{bottom:699.683067pt;}
.y130{bottom:700.555467pt;}
.yd7{bottom:707.674133pt;}
.ya8{bottom:708.935467pt;}
.y77{bottom:711.296800pt;}
.y13{bottom:716.164933pt;}
.y46{bottom:716.931067pt;}
.y24{bottom:717.019067pt;}
.y12f{bottom:717.222133pt;}
.yfb{bottom:723.206133pt;}
.yd6{bottom:725.010133pt;}
.ya7{bottom:726.271467pt;}
.y76{bottom:728.632800pt;}
.y12e{bottom:733.888800pt;}
.y23{bottom:734.355067pt;}
.yd5{bottom:742.346133pt;}
.ya6{bottom:743.607467pt;}
.y75{bottom:745.968800pt;}
.y45{bottom:749.388400pt;}
.y12d{bottom:750.555467pt;}
.y12{bottom:752.524933pt;}
.yd4{bottom:759.682133pt;}
.ya5{bottom:760.943467pt;}
.y74{bottom:763.304800pt;}
.y44{bottom:766.724400pt;}
.y22{bottom:766.812400pt;}
.y11{bottom:766.924933pt;}
.y12c{bottom:767.222133pt;}
.ya4{bottom:778.279467pt;}
.yfa{bottom:781.080800pt;}
.y10{bottom:781.324933pt;}
.y12b{bottom:789.555467pt;}
.yd3{bottom:792.139467pt;}
.ya3{bottom:795.615467pt;}
.yf{bottom:795.724933pt;}
.y73{bottom:795.762133pt;}
.yf9{bottom:803.080800pt;}
.y12a{bottom:806.222133pt;}
.yb{bottom:808.423333pt;}
.ya2{bottom:812.951467pt;}
.ye{bottom:813.904933pt;}
.y129{bottom:822.888800pt;}
.yd2{bottom:824.596800pt;}
.y72{bottom:828.219467pt;}
.ya{bottom:829.159200pt;}
.ya1{bottom:830.287467pt;}
.yf8{bottom:835.538133pt;}
.yd1{bottom:841.932800pt;}
.y128{bottom:845.222133pt;}
.y71{bottom:845.555467pt;}
.ya0{bottom:847.623467pt;}
.y15a{bottom:857.216800pt;}
.yd0{bottom:859.268800pt;}
.y127{bottom:861.888800pt;}
.y70{bottom:862.891467pt;}
.y8{bottom:864.737600pt;}
.y9f{bottom:864.959467pt;}
.yf7{bottom:867.995467pt;}
.y159{bottom:874.816800pt;}
.ycf{bottom:876.604800pt;}
.y126{bottom:878.555467pt;}
.y6f{bottom:880.227467pt;}
.y9e{bottom:882.295467pt;}
.y158{bottom:892.416800pt;}
.y7{bottom:893.537600pt;}
.yce{bottom:893.940800pt;}
.y125{bottom:895.222133pt;}
.y6e{bottom:897.563467pt;}
.y9d{bottom:899.631467pt;}
.yf6{bottom:900.452800pt;}
.ycd{bottom:911.276800pt;}
.y124{bottom:911.888800pt;}
.y6d{bottom:914.899467pt;}
.y9c{bottom:916.967467pt;}
.y123{bottom:928.555467pt;}
.ycc{bottom:928.612800pt;}
.y6c{bottom:932.235467pt;}
.yf5{bottom:932.910133pt;}
.y157{bottom:933.315467pt;}
.y9b{bottom:934.303467pt;}
.y6{bottom:936.485733pt;}
.ycb{bottom:945.948800pt;}
.y6b{bottom:949.571467pt;}
.y5{bottom:950.885733pt;}
.y122{bottom:950.888800pt;}
.y156{bottom:950.915467pt;}
.y9a{bottom:951.639467pt;}
.yca{bottom:963.284800pt;}
.yf4{bottom:965.367467pt;}
.y6a{bottom:966.907467pt;}
.y121{bottom:967.555467pt;}
.y155{bottom:967.582133pt;}
.y99{bottom:968.975467pt;}
.yc9{bottom:980.620800pt;}
.y120{bottom:984.222133pt;}
.y69{bottom:984.243467pt;}
.y154{bottom:984.248800pt;}
.y98{bottom:986.311467pt;}
.yf3{bottom:997.824800pt;}
.yc8{bottom:997.956800pt;}
.y9{bottom:998.382000pt;}
.y68{bottom:1001.579467pt;}
.y97{bottom:1003.647467pt;}
.y11f{bottom:1006.555467pt;}
.y153{bottom:1006.582133pt;}
.y67{bottom:1018.915467pt;}
.y11e{bottom:1023.222133pt;}
.y152{bottom:1023.248800pt;}
.yf2{bottom:1030.282133pt;}
.yc7{bottom:1030.414133pt;}
.y96{bottom:1036.104800pt;}
.y66{bottom:1036.251467pt;}
.y11d{bottom:1039.888800pt;}
.y151{bottom:1039.915467pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y65{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.hc{height:35.906250pt;}
.hb{height:36.093750pt;}
.h3{height:39.479167pt;}
.h10{height:39.895833pt;}
.h4{height:40.104167pt;}
.h5{height:42.024354pt;}
.hd{height:43.885417pt;}
.he{height:44.114583pt;}
.h8{height:44.812500pt;}
.h9{height:45.729167pt;}
.hf{height:48.125000pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.420933pt;}
.xc{left:13.928933pt;}
.xd{left:16.760933pt;}
.x15{left:20.552933pt;}
.xe{left:21.680933pt;}
.x11{left:26.972933pt;}
.x13{left:31.880933pt;}
.x6{left:33.539733pt;}
.x14{left:43.184933pt;}
.xb{left:50.828933pt;}
.x5{left:56.039733pt;}
.xf{left:56.972933pt;}
.x16{left:59.216933pt;}
.x18{left:64.251867pt;}
.x10{left:78.800933pt;}
.x1b{left:81.354267pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.xa{left:192.632933pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x19{left:410.262267pt;}
.x1a{left:434.078800pt;}
.x17{left:476.482400pt;}
.x8{left:679.296933pt;}
.x3{left:705.168267pt;}
}




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