
    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_ccc1482e8ce380f624ee0cad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_801d2b4bba91e01cfd63a954.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_c1f9292e7d17086a84b85140.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_b86102d7b85f1fb6ec13dd7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5d9e89edaf825d648243ca9b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_57e6032b80c9d6e7f88c664a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_83d2db1c702e69365abc5202.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_978a63cf6dfa11d9f6593ae2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6aed960f24c314ff49d6ec5b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.707000;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_c888f82c73d2d23e7d059489.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940000;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_ccc1482e8ce380f624ee0cad.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_801d2b4bba91e01cfd63a954.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.720000;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:ffd;src:url('chunks/assets/font_1909af3a5121d62929177f0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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:ffe;src:url('chunks/assets/font_b88646aa90c38a03efc0b320.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_d53f8256da7f3f3dcc028f2c.woff2')format("woff");}.fff{font-family:fff;line-height:0.708000;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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:70.020000px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.wsa8{word-spacing:-6.300000px;}
.ws63{word-spacing:-5.640000px;}
.ws93{word-spacing:-5.220000px;}
.ws83{word-spacing:-4.920000px;}
.ws101{word-spacing:-4.440000px;}
.wsef{word-spacing:-3.540000px;}
.wsba{word-spacing:-3.360000px;}
.ws4{word-spacing:-3.300000px;}
.ws7f{word-spacing:-3.180000px;}
.wsab{word-spacing:-3.120000px;}
.ws48{word-spacing:-3.060000px;}
.wsb4{word-spacing:-2.940000px;}
.ws61{word-spacing:-2.820000px;}
.ws6d{word-spacing:-2.700000px;}
.wsff{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.520000px;}
.ws4b{word-spacing:-2.460000px;}
.ws11{word-spacing:-2.400000px;}
.ws88{word-spacing:-2.280000px;}
.ws32{word-spacing:-2.220000px;}
.wse4{word-spacing:-2.160000px;}
.wse0{word-spacing:-2.100000px;}
.ws49{word-spacing:-1.980000px;}
.ws44{word-spacing:-1.920000px;}
.wsbc{word-spacing:-1.860000px;}
.ws60{word-spacing:-1.800000px;}
.wsb6{word-spacing:-1.740000px;}
.ws75{word-spacing:-1.680000px;}
.wsb8{word-spacing:-1.560000px;}
.ws6{word-spacing:-1.512000px;}
.wsf4{word-spacing:-1.500000px;}
.wsf9{word-spacing:-1.320000px;}
.ws82{word-spacing:-1.260000px;}
.wsdc{word-spacing:-1.200000px;}
.wsa3{word-spacing:-1.080000px;}
.wscd{word-spacing:-1.020000px;}
.ws9b{word-spacing:-0.960000px;}
.ws38{word-spacing:-0.900000px;}
.wsd1{word-spacing:-0.840000px;}
.ws34{word-spacing:-0.780000px;}
.ws26{word-spacing:-0.660000px;}
.ws8{word-spacing:-0.486000px;}
.ws67{word-spacing:-0.480000px;}
.wse1{word-spacing:-0.420000px;}
.ws13{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.240000px;}
.ws95{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsf3{word-spacing:0.060000px;}
.ws25{word-spacing:0.180000px;}
.ws46{word-spacing:0.240000px;}
.wsac{word-spacing:0.420000px;}
.ws3e{word-spacing:0.480000px;}
.ws36{word-spacing:0.540000px;}
.wsa7{word-spacing:0.600000px;}
.ws3f{word-spacing:0.660000px;}
.ws19{word-spacing:0.720000px;}
.wsf7{word-spacing:0.780000px;}
.ws10{word-spacing:0.840000px;}
.ws37{word-spacing:1.020000px;}
.ws3c{word-spacing:1.080000px;}
.wscc{word-spacing:1.140000px;}
.wsc4{word-spacing:1.200000px;}
.ws56{word-spacing:1.260000px;}
.wsa4{word-spacing:1.380000px;}
.ws14{word-spacing:1.440000px;}
.ws5{word-spacing:1.566000px;}
.wsf2{word-spacing:1.620000px;}
.ws8a{word-spacing:1.740000px;}
.ws68{word-spacing:1.800000px;}
.ws2c{word-spacing:1.860000px;}
.wsbe{word-spacing:1.920000px;}
.ws5b{word-spacing:2.040000px;}
.ws92{word-spacing:2.100000px;}
.ws62{word-spacing:2.160000px;}
.ws90{word-spacing:2.280000px;}
.ws103{word-spacing:2.340000px;}
.wsf6{word-spacing:2.400000px;}
.ws69{word-spacing:2.460000px;}
.ws8d{word-spacing:2.580000px;}
.wsf{word-spacing:2.640000px;}
.ws4f{word-spacing:2.700000px;}
.ws2e{word-spacing:2.760000px;}
.ws81{word-spacing:2.820000px;}
.wscb{word-spacing:2.940000px;}
.ws12{word-spacing:3.000000px;}
.ws8e{word-spacing:3.060000px;}
.ws7d{word-spacing:3.180000px;}
.ws17{word-spacing:3.300000px;}
.ws94{word-spacing:3.420000px;}
.wsb7{word-spacing:3.480000px;}
.wsee{word-spacing:3.540000px;}
.wsf0{word-spacing:3.600000px;}
.ws20{word-spacing:3.660000px;}
.wsd{word-spacing:3.720000px;}
.ws31{word-spacing:3.840000px;}
.ws84{word-spacing:3.900000px;}
.ws22{word-spacing:3.960000px;}
.ws1e{word-spacing:4.020000px;}
.ws24{word-spacing:4.080000px;}
.ws59{word-spacing:4.200000px;}
.ws1a{word-spacing:4.320000px;}
.wsbb{word-spacing:4.380000px;}
.ws6c{word-spacing:4.440000px;}
.wsb5{word-spacing:4.500000px;}
.ws98{word-spacing:4.560000px;}
.ws15{word-spacing:4.680000px;}
.ws5a{word-spacing:4.740000px;}
.ws4d{word-spacing:4.920000px;}
.ws33{word-spacing:5.100000px;}
.wse5{word-spacing:5.160000px;}
.wsfd{word-spacing:5.340000px;}
.ws9c{word-spacing:5.580000px;}
.wsb{word-spacing:5.616000px;}
.ws57{word-spacing:5.640000px;}
.ws7{word-spacing:5.724000px;}
.wse9{word-spacing:5.820000px;}
.wsfc{word-spacing:5.880000px;}
.ws65{word-spacing:6.000000px;}
.ws7a{word-spacing:6.120000px;}
.ws96{word-spacing:6.240000px;}
.wsc2{word-spacing:6.300000px;}
.wsf5{word-spacing:6.360000px;}
.wsa{word-spacing:6.588000px;}
.ws54{word-spacing:6.600000px;}
.ws87{word-spacing:6.660000px;}
.ws16{word-spacing:6.720000px;}
.wsc{word-spacing:6.780000px;}
.ws9d{word-spacing:6.840000px;}
.ws23{word-spacing:6.900000px;}
.ws73{word-spacing:7.020000px;}
.ws85{word-spacing:7.200000px;}
.wsec{word-spacing:7.260000px;}
.wsdf{word-spacing:7.320000px;}
.ws78{word-spacing:7.380000px;}
.ws27{word-spacing:7.440000px;}
.ws4c{word-spacing:7.560000px;}
.wsc0{word-spacing:7.740000px;}
.ws1b{word-spacing:7.800000px;}
.ws21{word-spacing:7.860000px;}
.wsbf{word-spacing:7.920000px;}
.wsce{word-spacing:8.040000px;}
.ws79{word-spacing:8.100000px;}
.wseb{word-spacing:8.160000px;}
.ws1d{word-spacing:8.220000px;}
.ws28{word-spacing:8.280000px;}
.wsb9{word-spacing:8.460000px;}
.wse{word-spacing:8.760000px;}
.wsa5{word-spacing:8.820000px;}
.wsd7{word-spacing:8.940000px;}
.ws1c{word-spacing:9.120000px;}
.ws3b{word-spacing:9.180000px;}
.ws8f{word-spacing:9.360000px;}
.ws47{word-spacing:9.420000px;}
.ws76{word-spacing:9.480000px;}
.wsea{word-spacing:9.540000px;}
.wscf{word-spacing:9.600000px;}
.wsfa{word-spacing:9.660000px;}
.ws7b{word-spacing:9.720000px;}
.ws1f{word-spacing:9.840000px;}
.wsde{word-spacing:9.900000px;}
.ws66{word-spacing:10.020000px;}
.ws89{word-spacing:10.080000px;}
.ws9e{word-spacing:10.200000px;}
.ws4e{word-spacing:10.380000px;}
.ws100{word-spacing:10.440000px;}
.ws2b{word-spacing:10.500000px;}
.ws97{word-spacing:10.620000px;}
.ws2f{word-spacing:10.680000px;}
.ws6f{word-spacing:10.800000px;}
.wsbd{word-spacing:10.920000px;}
.wse2{word-spacing:10.980000px;}
.ws7e{word-spacing:11.160000px;}
.ws6e{word-spacing:11.220000px;}
.ws41{word-spacing:11.280000px;}
.wse6{word-spacing:11.580000px;}
.ws6a{word-spacing:11.640000px;}
.wsc1{word-spacing:11.820000px;}
.wsa6{word-spacing:11.880000px;}
.wsc3{word-spacing:12.000000px;}
.wsdb{word-spacing:12.060000px;}
.ws64{word-spacing:12.120000px;}
.ws43{word-spacing:12.180000px;}
.ws7c{word-spacing:12.240000px;}
.wsb2{word-spacing:12.300000px;}
.ws53{word-spacing:12.480000px;}
.wsd2{word-spacing:12.540000px;}
.wsa1{word-spacing:12.600000px;}
.ws8c{word-spacing:12.720000px;}
.wsfb{word-spacing:12.840000px;}
.wsad{word-spacing:13.080000px;}
.ws91{word-spacing:13.140000px;}
.ws42{word-spacing:13.200000px;}
.wsf1{word-spacing:13.500000px;}
.ws72{word-spacing:13.560000px;}
.ws50{word-spacing:13.680000px;}
.ws71{word-spacing:13.740000px;}
.ws2a{word-spacing:13.800000px;}
.wsdd{word-spacing:13.980000px;}
.ws52{word-spacing:14.040000px;}
.wse7{word-spacing:14.160000px;}
.ws99{word-spacing:14.280000px;}
.ws9a{word-spacing:14.520000px;}
.ws40{word-spacing:14.820000px;}
.ws58{word-spacing:14.940000px;}
.wsc5{word-spacing:15.180000px;}
.wsb0{word-spacing:15.420000px;}
.ws77{word-spacing:15.600000px;}
.wsfe{word-spacing:15.780000px;}
.ws5d{word-spacing:16.140000px;}
.ws86{word-spacing:16.320000px;}
.wsd3{word-spacing:16.620000px;}
.ws29{word-spacing:16.860000px;}
.ws39{word-spacing:16.980000px;}
.wsa9{word-spacing:17.040000px;}
.wsae{word-spacing:17.220000px;}
.ws102{word-spacing:17.820000px;}
.ws5c{word-spacing:18.000000px;}
.wsc9{word-spacing:18.180000px;}
.ws2d{word-spacing:18.480000px;}
.ws6b{word-spacing:18.540000px;}
.wse8{word-spacing:18.600000px;}
.wsed{word-spacing:18.720000px;}
.wsd0{word-spacing:19.260000px;}
.ws8b{word-spacing:20.160000px;}
.ws3d{word-spacing:20.340000px;}
.wsa2{word-spacing:20.820000px;}
.ws30{word-spacing:20.940000px;}
.wsd8{word-spacing:21.060000px;}
.ws45{word-spacing:21.180000px;}
.wsd5{word-spacing:21.540000px;}
.wsd9{word-spacing:21.840000px;}
.wsb3{word-spacing:21.900000px;}
.wsd4{word-spacing:22.080000px;}
.wsc8{word-spacing:22.140000px;}
.wsa0{word-spacing:22.260000px;}
.wsc7{word-spacing:22.740000px;}
.ws9f{word-spacing:22.860000px;}
.ws35{word-spacing:23.040000px;}
.ws80{word-spacing:23.280000px;}
.wsca{word-spacing:23.580000px;}
.ws5e{word-spacing:23.640000px;}
.ws70{word-spacing:23.880000px;}
.wse3{word-spacing:25.260000px;}
.ws4a{word-spacing:26.160000px;}
.ws51{word-spacing:26.580000px;}
.wsd6{word-spacing:27.180000px;}
.wsb1{word-spacing:27.900000px;}
.wsaf{word-spacing:29.280000px;}
.wsda{word-spacing:29.700000px;}
.wsf8{word-spacing:30.000000px;}
.wsc6{word-spacing:31.260000px;}
.ws0{word-spacing:33.621000px;}
.ws104{word-spacing:34.260000px;}
.wsaa{word-spacing:34.920000px;}
.ws5f{word-spacing:48.240000px;}
.ws55{word-spacing:59.280000px;}
.ws1{word-spacing:386.314800px;}
.ws18{word-spacing:1699.977600px;}
._2b{margin-left:-9.384000px;}
._4{margin-left:-7.160400px;}
._3{margin-left:-5.999400px;}
._0{margin-left:-4.968000px;}
._9{margin-left:-3.325800px;}
._2{margin-left:-2.014200px;}
._6{margin-left:-1.004400px;}
._5{width:1.872600px;}
._1{width:3.300000px;}
._11{width:4.452000px;}
._13{width:5.844000px;}
._c{width:6.882000px;}
._d{width:8.190000px;}
._25{width:9.297600px;}
._1b{width:10.740000px;}
._18{width:12.822000px;}
._2c{width:13.824000px;}
._24{width:16.038000px;}
._1d{width:17.124000px;}
._1a{width:18.552000px;}
._16{width:19.896000px;}
._20{width:21.084000px;}
._22{width:32.688000px;}
._28{width:35.520000px;}
._26{width:38.760000px;}
._19{width:43.440000px;}
._14{width:46.980000px;}
._29{width:48.180000px;}
._27{width:51.840000px;}
._12{width:53.160000px;}
._1e{width:54.420000px;}
._17{width:56.820000px;}
._23{width:58.140000px;}
._21{width:59.400000px;}
._15{width:60.840000px;}
._f{width:62.160000px;}
._7{width:63.240000px;}
._2a{width:64.680000px;}
._e{width:65.700000px;}
._8{width:67.380000px;}
._b{width:68.580000px;}
._10{width:69.840000px;}
._1f{width:71.280000px;}
._a{width:72.420000px;}
._1c{width:75.660000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y35{bottom:64.760550px;}
.y34{bottom:65.586600px;}
.ydd{bottom:91.659600px;}
.y64{bottom:98.496300px;}
.y95{bottom:98.700450px;}
.yc3{bottom:99.159600px;}
.ydc{bottom:111.159600px;}
.y63{bottom:117.996300px;}
.y94{bottom:118.200450px;}
.yc2{bottom:118.659600px;}
.ydb{bottom:130.659600px;}
.y62{bottom:137.496300px;}
.y93{bottom:137.700450px;}
.yc1{bottom:138.159600px;}
.y2a{bottom:147.342450px;}
.yda{bottom:150.159600px;}
.y61{bottom:156.996300px;}
.y92{bottom:157.200450px;}
.yc0{bottom:157.659600px;}
.y29{bottom:166.842450px;}
.yd9{bottom:169.659600px;}
.y66{bottom:176.496300px;}
.y91{bottom:176.700450px;}
.ybf{bottom:177.159600px;}
.y28{bottom:186.342450px;}
.yd8{bottom:189.159600px;}
.y60{bottom:195.996300px;}
.y90{bottom:196.200450px;}
.ybe{bottom:196.659600px;}
.y27{bottom:205.842450px;}
.yd7{bottom:208.659600px;}
.y5f{bottom:215.496300px;}
.y8f{bottom:215.700450px;}
.ybd{bottom:216.159600px;}
.y26{bottom:225.342450px;}
.yd6{bottom:228.159600px;}
.y5e{bottom:234.996300px;}
.y8e{bottom:235.200450px;}
.ybc{bottom:235.659600px;}
.y25{bottom:244.842450px;}
.yd5{bottom:247.659600px;}
.y5d{bottom:254.496300px;}
.y8d{bottom:254.700450px;}
.yc4{bottom:255.159600px;}
.y24{bottom:264.342450px;}
.yd4{bottom:267.159600px;}
.y5c{bottom:273.996300px;}
.y8c{bottom:274.200450px;}
.ybb{bottom:274.659600px;}
.y23{bottom:283.842450px;}
.yd3{bottom:285.909600px;}
.y5b{bottom:293.496300px;}
.y8b{bottom:293.700450px;}
.yba{bottom:294.159600px;}
.y22{bottom:303.342450px;}
.yd2{bottom:304.659600px;}
.y5a{bottom:312.996300px;}
.y8a{bottom:313.200450px;}
.yb9{bottom:313.659600px;}
.y21{bottom:322.842450px;}
.yd1{bottom:323.409600px;}
.y59{bottom:332.496300px;}
.y89{bottom:332.700450px;}
.yb8{bottom:333.159600px;}
.yd0{bottom:342.159600px;}
.y20{bottom:342.342450px;}
.y58{bottom:351.996300px;}
.y88{bottom:352.200450px;}
.yb7{bottom:352.659600px;}
.ycf{bottom:360.909600px;}
.y1f{bottom:361.842450px;}
.y57{bottom:371.496300px;}
.y87{bottom:371.700450px;}
.yb6{bottom:372.159600px;}
.yce{bottom:379.659600px;}
.y1e{bottom:381.342450px;}
.y65{bottom:390.996300px;}
.y86{bottom:391.200450px;}
.yb5{bottom:391.659600px;}
.ycd{bottom:398.409600px;}
.y1d{bottom:400.842450px;}
.y56{bottom:410.496300px;}
.y85{bottom:410.700450px;}
.yb4{bottom:411.159600px;}
.ycc{bottom:417.159600px;}
.y1c{bottom:420.342450px;}
.y55{bottom:429.996300px;}
.y84{bottom:430.200450px;}
.yb3{bottom:430.659600px;}
.ycb{bottom:435.909600px;}
.y1b{bottom:439.842450px;}
.y54{bottom:449.496300px;}
.y83{bottom:449.700450px;}
.yb2{bottom:450.159600px;}
.yca{bottom:454.659600px;}
.y33{bottom:456.139950px;}
.y1a{bottom:459.342450px;}
.y53{bottom:468.996300px;}
.y82{bottom:469.200450px;}
.yb1{bottom:469.659600px;}
.yc9{bottom:473.409600px;}
.y32{bottom:478.639950px;}
.y19{bottom:478.842450px;}
.y52{bottom:488.496300px;}
.y81{bottom:488.700450px;}
.yb0{bottom:489.159600px;}
.yc8{bottom:492.159600px;}
.y18{bottom:498.342450px;}
.y31{bottom:501.139950px;}
.y51{bottom:507.996300px;}
.y80{bottom:508.200450px;}
.yaf{bottom:508.659600px;}
.yc7{bottom:510.909600px;}
.y17{bottom:517.842450px;}
.yf5{bottom:522.401400px;}
.y50{bottom:527.496300px;}
.y7f{bottom:527.700450px;}
.yae{bottom:528.159600px;}
.yc6{bottom:529.659600px;}
.y16{bottom:537.342450px;}
.y30{bottom:541.639950px;}
.y4f{bottom:546.996300px;}
.y7e{bottom:547.200450px;}
.yad{bottom:547.659600px;}
.yf4{bottom:547.899600px;}
.yc5{bottom:548.409600px;}
.y4e{bottom:566.496300px;}
.y7d{bottom:566.700450px;}
.yac{bottom:567.159600px;}
.yf3{bottom:567.399600px;}
.y15{bottom:571.887450px;}
.y4d{bottom:585.996300px;}
.y7c{bottom:586.200450px;}
.y2f{bottom:586.639950px;}
.yab{bottom:586.659600px;}
.yf2{bottom:586.899600px;}
.y14{bottom:589.882950px;}
.y4c{bottom:605.496300px;}
.y7b{bottom:605.700450px;}
.yaa{bottom:606.159600px;}
.yf1{bottom:606.399600px;}
.y13{bottom:607.878450px;}
.y4b{bottom:624.996300px;}
.y7a{bottom:625.200450px;}
.ya9{bottom:625.659600px;}
.y12{bottom:625.873950px;}
.yf0{bottom:625.899600px;}
.y2e{bottom:627.139950px;}
.y11{bottom:643.869450px;}
.y4a{bottom:644.496300px;}
.y79{bottom:644.700450px;}
.ya8{bottom:645.159600px;}
.yef{bottom:645.399600px;}
.y10{bottom:661.864950px;}
.y2d{bottom:663.139950px;}
.y49{bottom:663.996300px;}
.y78{bottom:664.200450px;}
.ya7{bottom:664.659600px;}
.yee{bottom:664.899600px;}
.yf{bottom:679.860450px;}
.y48{bottom:683.496300px;}
.y77{bottom:683.700450px;}
.ya6{bottom:684.159600px;}
.yed{bottom:684.399600px;}
.ye{bottom:697.855950px;}
.y2c{bottom:699.139950px;}
.y47{bottom:702.996300px;}
.y76{bottom:703.200450px;}
.ya5{bottom:703.659600px;}
.yec{bottom:703.899600px;}
.yd{bottom:715.851450px;}
.y46{bottom:722.496300px;}
.y75{bottom:722.700450px;}
.ya4{bottom:723.159600px;}
.yeb{bottom:723.399600px;}
.yc{bottom:733.846950px;}
.y2b{bottom:735.139950px;}
.y45{bottom:741.996300px;}
.y74{bottom:742.200450px;}
.ya3{bottom:742.659600px;}
.yea{bottom:742.899600px;}
.yb{bottom:751.842450px;}
.y44{bottom:761.496300px;}
.y73{bottom:761.700450px;}
.ya2{bottom:762.159600px;}
.ye9{bottom:762.399600px;}
.ya{bottom:769.842450px;}
.y43{bottom:780.996300px;}
.y72{bottom:781.200450px;}
.ya1{bottom:781.659600px;}
.ye8{bottom:781.899600px;}
.y42{bottom:800.496300px;}
.y71{bottom:800.700450px;}
.ya0{bottom:801.159600px;}
.y9{bottom:813.946950px;}
.y41{bottom:819.996300px;}
.y70{bottom:820.200450px;}
.y9f{bottom:820.659600px;}
.ye7{bottom:820.899600px;}
.y8{bottom:831.942450px;}
.y40{bottom:839.496300px;}
.y6f{bottom:839.700450px;}
.y9e{bottom:840.159600px;}
.ye6{bottom:840.399600px;}
.y7{bottom:849.942450px;}
.y3f{bottom:858.996300px;}
.y6e{bottom:859.200450px;}
.y9d{bottom:859.659600px;}
.ye5{bottom:859.899600px;}
.y3e{bottom:878.496300px;}
.y6d{bottom:878.700450px;}
.y9c{bottom:879.159600px;}
.ye4{bottom:879.399600px;}
.y6{bottom:884.446950px;}
.y3d{bottom:897.996300px;}
.y6c{bottom:898.200450px;}
.y9b{bottom:898.659600px;}
.ye3{bottom:898.899600px;}
.y5{bottom:902.442450px;}
.y3c{bottom:917.496300px;}
.y6b{bottom:917.700450px;}
.y9a{bottom:918.159600px;}
.ye2{bottom:918.399600px;}
.y4{bottom:920.442450px;}
.y3b{bottom:936.996300px;}
.y6a{bottom:937.200450px;}
.y99{bottom:937.659600px;}
.ye1{bottom:937.899600px;}
.y3a{bottom:956.496300px;}
.y69{bottom:956.700450px;}
.y98{bottom:957.159600px;}
.ye0{bottom:957.399600px;}
.y3{bottom:965.442450px;}
.y39{bottom:975.996300px;}
.y68{bottom:976.200450px;}
.y97{bottom:976.659600px;}
.ydf{bottom:976.899600px;}
.y38{bottom:995.496300px;}
.y67{bottom:995.700450px;}
.y96{bottom:996.159600px;}
.yde{bottom:996.399600px;}
.y37{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y36{bottom:1039.374150px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h8{height:41.689453px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.ha{height:46.200000px;}
.h9{height:50.400000px;}
.h3{height:52.492611px;}
.h7{height:52.863281px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xc{left:63.779550px;}
.x2{left:65.202600px;}
.x1{left:71.253150px;}
.xb{left:73.559100px;}
.xa{left:224.187900px;}
.x3{left:328.907250px;}
.x9{left:341.270400px;}
.x6{left:342.403350px;}
.x11{left:381.555000px;}
.x8{left:395.297400px;}
.x5{left:399.562350px;}
.xf{left:412.272150px;}
.x10{left:426.929550px;}
.x7{left:565.510800px;}
.xe{left:614.196150px;}
.x4{left:617.574300px;}
.xd{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:62.240000pt;}
.ws2{word-spacing:-13.333333pt;}
.wsa8{word-spacing:-5.600000pt;}
.ws63{word-spacing:-5.013333pt;}
.ws93{word-spacing:-4.640000pt;}
.ws83{word-spacing:-4.373333pt;}
.ws101{word-spacing:-3.946667pt;}
.wsef{word-spacing:-3.146667pt;}
.wsba{word-spacing:-2.986667pt;}
.ws4{word-spacing:-2.933333pt;}
.ws7f{word-spacing:-2.826667pt;}
.wsab{word-spacing:-2.773333pt;}
.ws48{word-spacing:-2.720000pt;}
.wsb4{word-spacing:-2.613333pt;}
.ws61{word-spacing:-2.506667pt;}
.ws6d{word-spacing:-2.400000pt;}
.wsff{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.240000pt;}
.ws4b{word-spacing:-2.186667pt;}
.ws11{word-spacing:-2.133333pt;}
.ws88{word-spacing:-2.026667pt;}
.ws32{word-spacing:-1.973333pt;}
.wse4{word-spacing:-1.920000pt;}
.wse0{word-spacing:-1.866667pt;}
.ws49{word-spacing:-1.760000pt;}
.ws44{word-spacing:-1.706667pt;}
.wsbc{word-spacing:-1.653333pt;}
.ws60{word-spacing:-1.600000pt;}
.wsb6{word-spacing:-1.546667pt;}
.ws75{word-spacing:-1.493333pt;}
.wsb8{word-spacing:-1.386667pt;}
.ws6{word-spacing:-1.344000pt;}
.wsf4{word-spacing:-1.333333pt;}
.wsf9{word-spacing:-1.173333pt;}
.ws82{word-spacing:-1.120000pt;}
.wsdc{word-spacing:-1.066667pt;}
.wsa3{word-spacing:-0.960000pt;}
.wscd{word-spacing:-0.906667pt;}
.ws9b{word-spacing:-0.853333pt;}
.ws38{word-spacing:-0.800000pt;}
.wsd1{word-spacing:-0.746667pt;}
.ws34{word-spacing:-0.693333pt;}
.ws26{word-spacing:-0.586667pt;}
.ws8{word-spacing:-0.432000pt;}
.ws67{word-spacing:-0.426667pt;}
.wse1{word-spacing:-0.373333pt;}
.ws13{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.213333pt;}
.ws95{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsf3{word-spacing:0.053333pt;}
.ws25{word-spacing:0.160000pt;}
.ws46{word-spacing:0.213333pt;}
.wsac{word-spacing:0.373333pt;}
.ws3e{word-spacing:0.426667pt;}
.ws36{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.533333pt;}
.ws3f{word-spacing:0.586667pt;}
.ws19{word-spacing:0.640000pt;}
.wsf7{word-spacing:0.693333pt;}
.ws10{word-spacing:0.746667pt;}
.ws37{word-spacing:0.906667pt;}
.ws3c{word-spacing:0.960000pt;}
.wscc{word-spacing:1.013333pt;}
.wsc4{word-spacing:1.066667pt;}
.ws56{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.226667pt;}
.ws14{word-spacing:1.280000pt;}
.ws5{word-spacing:1.392000pt;}
.wsf2{word-spacing:1.440000pt;}
.ws8a{word-spacing:1.546667pt;}
.ws68{word-spacing:1.600000pt;}
.ws2c{word-spacing:1.653333pt;}
.wsbe{word-spacing:1.706667pt;}
.ws5b{word-spacing:1.813333pt;}
.ws92{word-spacing:1.866667pt;}
.ws62{word-spacing:1.920000pt;}
.ws90{word-spacing:2.026667pt;}
.ws103{word-spacing:2.080000pt;}
.wsf6{word-spacing:2.133333pt;}
.ws69{word-spacing:2.186667pt;}
.ws8d{word-spacing:2.293333pt;}
.wsf{word-spacing:2.346667pt;}
.ws4f{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws81{word-spacing:2.506667pt;}
.wscb{word-spacing:2.613333pt;}
.ws12{word-spacing:2.666667pt;}
.ws8e{word-spacing:2.720000pt;}
.ws7d{word-spacing:2.826667pt;}
.ws17{word-spacing:2.933333pt;}
.ws94{word-spacing:3.040000pt;}
.wsb7{word-spacing:3.093333pt;}
.wsee{word-spacing:3.146667pt;}
.wsf0{word-spacing:3.200000pt;}
.ws20{word-spacing:3.253333pt;}
.wsd{word-spacing:3.306667pt;}
.ws31{word-spacing:3.413333pt;}
.ws84{word-spacing:3.466667pt;}
.ws22{word-spacing:3.520000pt;}
.ws1e{word-spacing:3.573333pt;}
.ws24{word-spacing:3.626667pt;}
.ws59{word-spacing:3.733333pt;}
.ws1a{word-spacing:3.840000pt;}
.wsbb{word-spacing:3.893333pt;}
.ws6c{word-spacing:3.946667pt;}
.wsb5{word-spacing:4.000000pt;}
.ws98{word-spacing:4.053333pt;}
.ws15{word-spacing:4.160000pt;}
.ws5a{word-spacing:4.213333pt;}
.ws4d{word-spacing:4.373333pt;}
.ws33{word-spacing:4.533333pt;}
.wse5{word-spacing:4.586667pt;}
.wsfd{word-spacing:4.746667pt;}
.ws9c{word-spacing:4.960000pt;}
.wsb{word-spacing:4.992000pt;}
.ws57{word-spacing:5.013333pt;}
.ws7{word-spacing:5.088000pt;}
.wse9{word-spacing:5.173333pt;}
.wsfc{word-spacing:5.226667pt;}
.ws65{word-spacing:5.333333pt;}
.ws7a{word-spacing:5.440000pt;}
.ws96{word-spacing:5.546667pt;}
.wsc2{word-spacing:5.600000pt;}
.wsf5{word-spacing:5.653333pt;}
.wsa{word-spacing:5.856000pt;}
.ws54{word-spacing:5.866667pt;}
.ws87{word-spacing:5.920000pt;}
.ws16{word-spacing:5.973333pt;}
.wsc{word-spacing:6.026667pt;}
.ws9d{word-spacing:6.080000pt;}
.ws23{word-spacing:6.133333pt;}
.ws73{word-spacing:6.240000pt;}
.ws85{word-spacing:6.400000pt;}
.wsec{word-spacing:6.453333pt;}
.wsdf{word-spacing:6.506667pt;}
.ws78{word-spacing:6.560000pt;}
.ws27{word-spacing:6.613333pt;}
.ws4c{word-spacing:6.720000pt;}
.wsc0{word-spacing:6.880000pt;}
.ws1b{word-spacing:6.933333pt;}
.ws21{word-spacing:6.986667pt;}
.wsbf{word-spacing:7.040000pt;}
.wsce{word-spacing:7.146667pt;}
.ws79{word-spacing:7.200000pt;}
.wseb{word-spacing:7.253333pt;}
.ws1d{word-spacing:7.306667pt;}
.ws28{word-spacing:7.360000pt;}
.wsb9{word-spacing:7.520000pt;}
.wse{word-spacing:7.786667pt;}
.wsa5{word-spacing:7.840000pt;}
.wsd7{word-spacing:7.946667pt;}
.ws1c{word-spacing:8.106667pt;}
.ws3b{word-spacing:8.160000pt;}
.ws8f{word-spacing:8.320000pt;}
.ws47{word-spacing:8.373333pt;}
.ws76{word-spacing:8.426667pt;}
.wsea{word-spacing:8.480000pt;}
.wscf{word-spacing:8.533333pt;}
.wsfa{word-spacing:8.586667pt;}
.ws7b{word-spacing:8.640000pt;}
.ws1f{word-spacing:8.746667pt;}
.wsde{word-spacing:8.800000pt;}
.ws66{word-spacing:8.906667pt;}
.ws89{word-spacing:8.960000pt;}
.ws9e{word-spacing:9.066667pt;}
.ws4e{word-spacing:9.226667pt;}
.ws100{word-spacing:9.280000pt;}
.ws2b{word-spacing:9.333333pt;}
.ws97{word-spacing:9.440000pt;}
.ws2f{word-spacing:9.493333pt;}
.ws6f{word-spacing:9.600000pt;}
.wsbd{word-spacing:9.706667pt;}
.wse2{word-spacing:9.760000pt;}
.ws7e{word-spacing:9.920000pt;}
.ws6e{word-spacing:9.973333pt;}
.ws41{word-spacing:10.026667pt;}
.wse6{word-spacing:10.293333pt;}
.ws6a{word-spacing:10.346667pt;}
.wsc1{word-spacing:10.506667pt;}
.wsa6{word-spacing:10.560000pt;}
.wsc3{word-spacing:10.666667pt;}
.wsdb{word-spacing:10.720000pt;}
.ws64{word-spacing:10.773333pt;}
.ws43{word-spacing:10.826667pt;}
.ws7c{word-spacing:10.880000pt;}
.wsb2{word-spacing:10.933333pt;}
.ws53{word-spacing:11.093333pt;}
.wsd2{word-spacing:11.146667pt;}
.wsa1{word-spacing:11.200000pt;}
.ws8c{word-spacing:11.306667pt;}
.wsfb{word-spacing:11.413333pt;}
.wsad{word-spacing:11.626667pt;}
.ws91{word-spacing:11.680000pt;}
.ws42{word-spacing:11.733333pt;}
.wsf1{word-spacing:12.000000pt;}
.ws72{word-spacing:12.053333pt;}
.ws50{word-spacing:12.160000pt;}
.ws71{word-spacing:12.213333pt;}
.ws2a{word-spacing:12.266667pt;}
.wsdd{word-spacing:12.426667pt;}
.ws52{word-spacing:12.480000pt;}
.wse7{word-spacing:12.586667pt;}
.ws99{word-spacing:12.693333pt;}
.ws9a{word-spacing:12.906667pt;}
.ws40{word-spacing:13.173333pt;}
.ws58{word-spacing:13.280000pt;}
.wsc5{word-spacing:13.493333pt;}
.wsb0{word-spacing:13.706667pt;}
.ws77{word-spacing:13.866667pt;}
.wsfe{word-spacing:14.026667pt;}
.ws5d{word-spacing:14.346667pt;}
.ws86{word-spacing:14.506667pt;}
.wsd3{word-spacing:14.773333pt;}
.ws29{word-spacing:14.986667pt;}
.ws39{word-spacing:15.093333pt;}
.wsa9{word-spacing:15.146667pt;}
.wsae{word-spacing:15.306667pt;}
.ws102{word-spacing:15.840000pt;}
.ws5c{word-spacing:16.000000pt;}
.wsc9{word-spacing:16.160000pt;}
.ws2d{word-spacing:16.426667pt;}
.ws6b{word-spacing:16.480000pt;}
.wse8{word-spacing:16.533333pt;}
.wsed{word-spacing:16.640000pt;}
.wsd0{word-spacing:17.120000pt;}
.ws8b{word-spacing:17.920000pt;}
.ws3d{word-spacing:18.080000pt;}
.wsa2{word-spacing:18.506667pt;}
.ws30{word-spacing:18.613333pt;}
.wsd8{word-spacing:18.720000pt;}
.ws45{word-spacing:18.826667pt;}
.wsd5{word-spacing:19.146667pt;}
.wsd9{word-spacing:19.413333pt;}
.wsb3{word-spacing:19.466667pt;}
.wsd4{word-spacing:19.626667pt;}
.wsc8{word-spacing:19.680000pt;}
.wsa0{word-spacing:19.786667pt;}
.wsc7{word-spacing:20.213333pt;}
.ws9f{word-spacing:20.320000pt;}
.ws35{word-spacing:20.480000pt;}
.ws80{word-spacing:20.693333pt;}
.wsca{word-spacing:20.960000pt;}
.ws5e{word-spacing:21.013333pt;}
.ws70{word-spacing:21.226667pt;}
.wse3{word-spacing:22.453333pt;}
.ws4a{word-spacing:23.253333pt;}
.ws51{word-spacing:23.626667pt;}
.wsd6{word-spacing:24.160000pt;}
.wsb1{word-spacing:24.800000pt;}
.wsaf{word-spacing:26.026667pt;}
.wsda{word-spacing:26.400000pt;}
.wsf8{word-spacing:26.666667pt;}
.wsc6{word-spacing:27.786667pt;}
.ws0{word-spacing:29.885333pt;}
.ws104{word-spacing:30.453333pt;}
.wsaa{word-spacing:31.040000pt;}
.ws5f{word-spacing:42.880000pt;}
.ws55{word-spacing:52.693333pt;}
.ws1{word-spacing:343.390933pt;}
.ws18{word-spacing:1511.091200pt;}
._2b{margin-left:-8.341333pt;}
._4{margin-left:-6.364800pt;}
._3{margin-left:-5.332800pt;}
._0{margin-left:-4.416000pt;}
._9{margin-left:-2.956267pt;}
._2{margin-left:-1.790400pt;}
._6{margin-left:-0.892800pt;}
._5{width:1.664533pt;}
._1{width:2.933333pt;}
._11{width:3.957333pt;}
._13{width:5.194667pt;}
._c{width:6.117333pt;}
._d{width:7.280000pt;}
._25{width:8.264533pt;}
._1b{width:9.546667pt;}
._18{width:11.397333pt;}
._2c{width:12.288000pt;}
._24{width:14.256000pt;}
._1d{width:15.221333pt;}
._1a{width:16.490667pt;}
._16{width:17.685333pt;}
._20{width:18.741333pt;}
._22{width:29.056000pt;}
._28{width:31.573333pt;}
._26{width:34.453333pt;}
._19{width:38.613333pt;}
._14{width:41.760000pt;}
._29{width:42.826667pt;}
._27{width:46.080000pt;}
._12{width:47.253333pt;}
._1e{width:48.373333pt;}
._17{width:50.506667pt;}
._23{width:51.680000pt;}
._21{width:52.800000pt;}
._15{width:54.080000pt;}
._f{width:55.253333pt;}
._7{width:56.213333pt;}
._2a{width:57.493333pt;}
._e{width:58.400000pt;}
._8{width:59.893333pt;}
._b{width:60.960000pt;}
._10{width:62.080000pt;}
._1f{width:63.360000pt;}
._a{width:64.373333pt;}
._1c{width:67.253333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y35{bottom:57.564933pt;}
.y34{bottom:58.299200pt;}
.ydd{bottom:81.475200pt;}
.y64{bottom:87.552267pt;}
.y95{bottom:87.733733pt;}
.yc3{bottom:88.141867pt;}
.ydc{bottom:98.808533pt;}
.y63{bottom:104.885600pt;}
.y94{bottom:105.067067pt;}
.yc2{bottom:105.475200pt;}
.ydb{bottom:116.141867pt;}
.y62{bottom:122.218933pt;}
.y93{bottom:122.400400pt;}
.yc1{bottom:122.808533pt;}
.y2a{bottom:130.971067pt;}
.yda{bottom:133.475200pt;}
.y61{bottom:139.552267pt;}
.y92{bottom:139.733733pt;}
.yc0{bottom:140.141867pt;}
.y29{bottom:148.304400pt;}
.yd9{bottom:150.808533pt;}
.y66{bottom:156.885600pt;}
.y91{bottom:157.067067pt;}
.ybf{bottom:157.475200pt;}
.y28{bottom:165.637733pt;}
.yd8{bottom:168.141867pt;}
.y60{bottom:174.218933pt;}
.y90{bottom:174.400400pt;}
.ybe{bottom:174.808533pt;}
.y27{bottom:182.971067pt;}
.yd7{bottom:185.475200pt;}
.y5f{bottom:191.552267pt;}
.y8f{bottom:191.733733pt;}
.ybd{bottom:192.141867pt;}
.y26{bottom:200.304400pt;}
.yd6{bottom:202.808533pt;}
.y5e{bottom:208.885600pt;}
.y8e{bottom:209.067067pt;}
.ybc{bottom:209.475200pt;}
.y25{bottom:217.637733pt;}
.yd5{bottom:220.141867pt;}
.y5d{bottom:226.218933pt;}
.y8d{bottom:226.400400pt;}
.yc4{bottom:226.808533pt;}
.y24{bottom:234.971067pt;}
.yd4{bottom:237.475200pt;}
.y5c{bottom:243.552267pt;}
.y8c{bottom:243.733733pt;}
.ybb{bottom:244.141867pt;}
.y23{bottom:252.304400pt;}
.yd3{bottom:254.141867pt;}
.y5b{bottom:260.885600pt;}
.y8b{bottom:261.067067pt;}
.yba{bottom:261.475200pt;}
.y22{bottom:269.637733pt;}
.yd2{bottom:270.808533pt;}
.y5a{bottom:278.218933pt;}
.y8a{bottom:278.400400pt;}
.yb9{bottom:278.808533pt;}
.y21{bottom:286.971067pt;}
.yd1{bottom:287.475200pt;}
.y59{bottom:295.552267pt;}
.y89{bottom:295.733733pt;}
.yb8{bottom:296.141867pt;}
.yd0{bottom:304.141867pt;}
.y20{bottom:304.304400pt;}
.y58{bottom:312.885600pt;}
.y88{bottom:313.067067pt;}
.yb7{bottom:313.475200pt;}
.ycf{bottom:320.808533pt;}
.y1f{bottom:321.637733pt;}
.y57{bottom:330.218933pt;}
.y87{bottom:330.400400pt;}
.yb6{bottom:330.808533pt;}
.yce{bottom:337.475200pt;}
.y1e{bottom:338.971067pt;}
.y65{bottom:347.552267pt;}
.y86{bottom:347.733733pt;}
.yb5{bottom:348.141867pt;}
.ycd{bottom:354.141867pt;}
.y1d{bottom:356.304400pt;}
.y56{bottom:364.885600pt;}
.y85{bottom:365.067067pt;}
.yb4{bottom:365.475200pt;}
.ycc{bottom:370.808533pt;}
.y1c{bottom:373.637733pt;}
.y55{bottom:382.218933pt;}
.y84{bottom:382.400400pt;}
.yb3{bottom:382.808533pt;}
.ycb{bottom:387.475200pt;}
.y1b{bottom:390.971067pt;}
.y54{bottom:399.552267pt;}
.y83{bottom:399.733733pt;}
.yb2{bottom:400.141867pt;}
.yca{bottom:404.141867pt;}
.y33{bottom:405.457733pt;}
.y1a{bottom:408.304400pt;}
.y53{bottom:416.885600pt;}
.y82{bottom:417.067067pt;}
.yb1{bottom:417.475200pt;}
.yc9{bottom:420.808533pt;}
.y32{bottom:425.457733pt;}
.y19{bottom:425.637733pt;}
.y52{bottom:434.218933pt;}
.y81{bottom:434.400400pt;}
.yb0{bottom:434.808533pt;}
.yc8{bottom:437.475200pt;}
.y18{bottom:442.971067pt;}
.y31{bottom:445.457733pt;}
.y51{bottom:451.552267pt;}
.y80{bottom:451.733733pt;}
.yaf{bottom:452.141867pt;}
.yc7{bottom:454.141867pt;}
.y17{bottom:460.304400pt;}
.yf5{bottom:464.356800pt;}
.y50{bottom:468.885600pt;}
.y7f{bottom:469.067067pt;}
.yae{bottom:469.475200pt;}
.yc6{bottom:470.808533pt;}
.y16{bottom:477.637733pt;}
.y30{bottom:481.457733pt;}
.y4f{bottom:486.218933pt;}
.y7e{bottom:486.400400pt;}
.yad{bottom:486.808533pt;}
.yf4{bottom:487.021867pt;}
.yc5{bottom:487.475200pt;}
.y4e{bottom:503.552267pt;}
.y7d{bottom:503.733733pt;}
.yac{bottom:504.141867pt;}
.yf3{bottom:504.355200pt;}
.y15{bottom:508.344400pt;}
.y4d{bottom:520.885600pt;}
.y7c{bottom:521.067067pt;}
.y2f{bottom:521.457733pt;}
.yab{bottom:521.475200pt;}
.yf2{bottom:521.688533pt;}
.y14{bottom:524.340400pt;}
.y4c{bottom:538.218933pt;}
.y7b{bottom:538.400400pt;}
.yaa{bottom:538.808533pt;}
.yf1{bottom:539.021867pt;}
.y13{bottom:540.336400pt;}
.y4b{bottom:555.552267pt;}
.y7a{bottom:555.733733pt;}
.ya9{bottom:556.141867pt;}
.y12{bottom:556.332400pt;}
.yf0{bottom:556.355200pt;}
.y2e{bottom:557.457733pt;}
.y11{bottom:572.328400pt;}
.y4a{bottom:572.885600pt;}
.y79{bottom:573.067067pt;}
.ya8{bottom:573.475200pt;}
.yef{bottom:573.688533pt;}
.y10{bottom:588.324400pt;}
.y2d{bottom:589.457733pt;}
.y49{bottom:590.218933pt;}
.y78{bottom:590.400400pt;}
.ya7{bottom:590.808533pt;}
.yee{bottom:591.021867pt;}
.yf{bottom:604.320400pt;}
.y48{bottom:607.552267pt;}
.y77{bottom:607.733733pt;}
.ya6{bottom:608.141867pt;}
.yed{bottom:608.355200pt;}
.ye{bottom:620.316400pt;}
.y2c{bottom:621.457733pt;}
.y47{bottom:624.885600pt;}
.y76{bottom:625.067067pt;}
.ya5{bottom:625.475200pt;}
.yec{bottom:625.688533pt;}
.yd{bottom:636.312400pt;}
.y46{bottom:642.218933pt;}
.y75{bottom:642.400400pt;}
.ya4{bottom:642.808533pt;}
.yeb{bottom:643.021867pt;}
.yc{bottom:652.308400pt;}
.y2b{bottom:653.457733pt;}
.y45{bottom:659.552267pt;}
.y74{bottom:659.733733pt;}
.ya3{bottom:660.141867pt;}
.yea{bottom:660.355200pt;}
.yb{bottom:668.304400pt;}
.y44{bottom:676.885600pt;}
.y73{bottom:677.067067pt;}
.ya2{bottom:677.475200pt;}
.ye9{bottom:677.688533pt;}
.ya{bottom:684.304400pt;}
.y43{bottom:694.218933pt;}
.y72{bottom:694.400400pt;}
.ya1{bottom:694.808533pt;}
.ye8{bottom:695.021867pt;}
.y42{bottom:711.552267pt;}
.y71{bottom:711.733733pt;}
.ya0{bottom:712.141867pt;}
.y9{bottom:723.508400pt;}
.y41{bottom:728.885600pt;}
.y70{bottom:729.067067pt;}
.y9f{bottom:729.475200pt;}
.ye7{bottom:729.688533pt;}
.y8{bottom:739.504400pt;}
.y40{bottom:746.218933pt;}
.y6f{bottom:746.400400pt;}
.y9e{bottom:746.808533pt;}
.ye6{bottom:747.021867pt;}
.y7{bottom:755.504400pt;}
.y3f{bottom:763.552267pt;}
.y6e{bottom:763.733733pt;}
.y9d{bottom:764.141867pt;}
.ye5{bottom:764.355200pt;}
.y3e{bottom:780.885600pt;}
.y6d{bottom:781.067067pt;}
.y9c{bottom:781.475200pt;}
.ye4{bottom:781.688533pt;}
.y6{bottom:786.175067pt;}
.y3d{bottom:798.218933pt;}
.y6c{bottom:798.400400pt;}
.y9b{bottom:798.808533pt;}
.ye3{bottom:799.021867pt;}
.y5{bottom:802.171067pt;}
.y3c{bottom:815.552267pt;}
.y6b{bottom:815.733733pt;}
.y9a{bottom:816.141867pt;}
.ye2{bottom:816.355200pt;}
.y4{bottom:818.171067pt;}
.y3b{bottom:832.885600pt;}
.y6a{bottom:833.067067pt;}
.y99{bottom:833.475200pt;}
.ye1{bottom:833.688533pt;}
.y3a{bottom:850.218933pt;}
.y69{bottom:850.400400pt;}
.y98{bottom:850.808533pt;}
.ye0{bottom:851.021867pt;}
.y3{bottom:858.171067pt;}
.y39{bottom:867.552267pt;}
.y68{bottom:867.733733pt;}
.y97{bottom:868.141867pt;}
.ydf{bottom:868.355200pt;}
.y38{bottom:884.885600pt;}
.y67{bottom:885.067067pt;}
.y96{bottom:885.475200pt;}
.yde{bottom:885.688533pt;}
.y37{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y36{bottom:923.888133pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h8{height:37.057292pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.ha{height:41.066667pt;}
.h9{height:44.800000pt;}
.h3{height:46.660099pt;}
.h7{height:46.989583pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xc{left:56.692933pt;}
.x2{left:57.957867pt;}
.x1{left:63.336133pt;}
.xb{left:65.385867pt;}
.xa{left:199.278133pt;}
.x3{left:292.362000pt;}
.x9{left:303.351467pt;}
.x6{left:304.358533pt;}
.x11{left:339.160000pt;}
.x8{left:351.375467pt;}
.x5{left:355.166533pt;}
.xf{left:366.464133pt;}
.x10{left:379.492933pt;}
.x7{left:502.676267pt;}
.xe{left:545.952133pt;}
.x4{left:548.954933pt;}
.xd{left:562.556267pt;}
}




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