
    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_eae40e00b3a2940f7b6f77af.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_eae40e00b3a2940f7b6f77af.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b065a4ea7c514cbeefb280e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_d7b6c38282eb20e9950aa48d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e8016b1c158784b476e1eca3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_36a7c6198c9fbfdb7e170080.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_67a2dfdf2271883d8d133aaa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_05c0e75066b985e01f8217da.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_d709a15a33068ecf45d4370a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_ce9a04809a41a64c9c8b863e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_8ed4759c3590ec9434fa0ec5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3bf4f6c62cc30d059bc7c1da.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_494274e94f50deccfc81893e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_cd055f0fbba8290afb305bcd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_8b065a4ea7c514cbeefb280e.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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:ff10;src:url('chunks/assets/font_c65c65fed089316527494ac6.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m9{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls4{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.ls2{letter-spacing:66.312000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wse1{word-spacing:-71.280000px;}
.wsb{word-spacing:-61.416000px;}
.ws99{word-spacing:-61.128000px;}
.ws6a{word-spacing:-59.976000px;}
.ws25{word-spacing:-59.695200px;}
.wsc2{word-spacing:-58.824000px;}
.ws27{word-spacing:-58.680000px;}
.ws87{word-spacing:-58.248000px;}
.ws6{word-spacing:-58.176000px;}
.ws91{word-spacing:-57.744000px;}
.ws8a{word-spacing:-57.456000px;}
.ws57{word-spacing:-57.096000px;}
.wse6{word-spacing:-56.592000px;}
.ws12{word-spacing:-56.088000px;}
.wsb0{word-spacing:-55.872000px;}
.ws67{word-spacing:-55.800000px;}
.ws7e{word-spacing:-55.512000px;}
.ws1a{word-spacing:-55.368000px;}
.wsaa{word-spacing:-55.224000px;}
.ws11{word-spacing:-55.080000px;}
.ws96{word-spacing:-55.008000px;}
.wscb{word-spacing:-54.936000px;}
.ws79{word-spacing:-54.144000px;}
.wsa4{word-spacing:-53.856000px;}
.ws4a{word-spacing:-53.640000px;}
.wse0{word-spacing:-53.496000px;}
.ws84{word-spacing:-53.424000px;}
.wsa7{word-spacing:-53.280000px;}
.wsd0{word-spacing:-53.136000px;}
.wsd7{word-spacing:-52.128000px;}
.ws52{word-spacing:-51.912000px;}
.wsc4{word-spacing:-51.264000px;}
.ws7{word-spacing:-50.832000px;}
.ws2{word-spacing:-50.472000px;}
.ws88{word-spacing:-50.400000px;}
.ws5f{word-spacing:-50.328000px;}
.ws70{word-spacing:-49.968000px;}
.ws51{word-spacing:-49.824000px;}
.ws26{word-spacing:-49.464000px;}
.ws7b{word-spacing:-49.032000px;}
.ws90{word-spacing:-48.816000px;}
.ws20{word-spacing:-48.744000px;}
.ws2e{word-spacing:-48.672000px;}
.ws7a{word-spacing:-48.600000px;}
.wsb6{word-spacing:-48.312000px;}
.ws80{word-spacing:-48.168000px;}
.wsa2{word-spacing:-48.096000px;}
.ws44{word-spacing:-48.024000px;}
.ws77{word-spacing:-47.088000px;}
.ws2d{word-spacing:-46.656000px;}
.wsaf{word-spacing:-46.584000px;}
.wsdb{word-spacing:-46.296000px;}
.wsd{word-spacing:-45.720000px;}
.wsa1{word-spacing:-44.856000px;}
.wsed{word-spacing:-44.424000px;}
.ws38{word-spacing:-43.848000px;}
.ws37{word-spacing:-43.344000px;}
.wsad{word-spacing:-42.984000px;}
.wsb8{word-spacing:-42.552000px;}
.wseb{word-spacing:-41.472000px;}
.ws85{word-spacing:-41.112000px;}
.ws72{word-spacing:-41.040000px;}
.ws68{word-spacing:-40.824000px;}
.ws97{word-spacing:-40.608000px;}
.ws54{word-spacing:-40.176000px;}
.ws2a{word-spacing:-40.104000px;}
.ws7c{word-spacing:-39.528000px;}
.ws82{word-spacing:-39.312000px;}
.ws95{word-spacing:-38.664000px;}
.ws46{word-spacing:-38.520000px;}
.wsf0{word-spacing:-38.460000px;}
.ws19{word-spacing:-38.448000px;}
.wsef{word-spacing:-38.400000px;}
.ws98{word-spacing:-38.376000px;}
.ws58{word-spacing:-38.088000px;}
.ws75{word-spacing:-38.016000px;}
.wscc{word-spacing:-37.800000px;}
.ws9b{word-spacing:-37.368000px;}
.ws74{word-spacing:-35.136000px;}
.ws6b{word-spacing:-34.920000px;}
.wsc8{word-spacing:-34.848000px;}
.ws13{word-spacing:-34.632000px;}
.wsc7{word-spacing:-34.416000px;}
.ws73{word-spacing:-34.056000px;}
.wsee{word-spacing:-33.960000px;}
.ws31{word-spacing:-33.912000px;}
.ws9d{word-spacing:-33.840000px;}
.ws3{word-spacing:-33.264000px;}
.ws6d{word-spacing:-33.192000px;}
.ws62{word-spacing:-32.904000px;}
.wsd5{word-spacing:-32.832000px;}
.ws4{word-spacing:-32.760000px;}
.ws71{word-spacing:-32.616000px;}
.ws55{word-spacing:-32.112000px;}
.ws49{word-spacing:-31.968000px;}
.wsb4{word-spacing:-31.608000px;}
.ws89{word-spacing:-30.960000px;}
.ws83{word-spacing:-30.816000px;}
.ws2f{word-spacing:-30.600000px;}
.ws29{word-spacing:-30.312000px;}
.ws60{word-spacing:-30.096000px;}
.ws9{word-spacing:-29.592000px;}
.ws21{word-spacing:-29.520000px;}
.ws66{word-spacing:-29.448000px;}
.ws2b{word-spacing:-28.584000px;}
.ws92{word-spacing:-28.224000px;}
.ws6c{word-spacing:-28.080000px;}
.wse7{word-spacing:-28.008000px;}
.ws47{word-spacing:-27.792000px;}
.ws24{word-spacing:-27.576000px;}
.wse5{word-spacing:-27.360000px;}
.ws53{word-spacing:-25.056000px;}
.wsde{word-spacing:-24.912000px;}
.ws22{word-spacing:-24.552000px;}
.ws8f{word-spacing:-24.480000px;}
.ws3a{word-spacing:-23.695200px;}
.ws41{word-spacing:-22.896000px;}
.wsc3{word-spacing:-22.608000px;}
.ws4e{word-spacing:-21.096000px;}
.wsea{word-spacing:-20.088000px;}
.ws1c{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.440000px;}
.wsa0{word-spacing:-18.648000px;}
.ws86{word-spacing:-18.360000px;}
.ws94{word-spacing:-18.072000px;}
.wsf{word-spacing:-15.696000px;}
.wsb2{word-spacing:-15.264000px;}
.ws4b{word-spacing:-15.192000px;}
.ws14{word-spacing:-15.000000px;}
.ws48{word-spacing:-14.760000px;}
.wsce{word-spacing:-14.256000px;}
.ws9f{word-spacing:-14.112000px;}
.ws3e{word-spacing:-13.896000px;}
.ws59{word-spacing:-13.680000px;}
.ws7d{word-spacing:-13.500000px;}
.wsca{word-spacing:-12.960000px;}
.ws1b{word-spacing:-12.672000px;}
.wse{word-spacing:-12.600000px;}
.ws3f{word-spacing:-12.384000px;}
.ws64{word-spacing:-12.240000px;}
.ws56{word-spacing:-11.808000px;}
.wsc{word-spacing:-11.664000px;}
.wse4{word-spacing:-10.728000px;}
.ws1d{word-spacing:-10.584000px;}
.ws81{word-spacing:-10.512000px;}
.ws3d{word-spacing:-10.152000px;}
.ws6e{word-spacing:-10.080000px;}
.ws39{word-spacing:-9.792000px;}
.ws76{word-spacing:-9.000000px;}
.wsc6{word-spacing:-8.280000px;}
.wsba{word-spacing:-7.848000px;}
.ws35{word-spacing:-7.704000px;}
.ws36{word-spacing:-6.336000px;}
.ws4f{word-spacing:-6.264000px;}
.wsac{word-spacing:-5.976000px;}
.ws43{word-spacing:-5.832000px;}
.ws18{word-spacing:-5.680800px;}
.ws5a{word-spacing:-5.472000px;}
.ws5e{word-spacing:-5.400000px;}
.ws50{word-spacing:-5.328000px;}
.wsec{word-spacing:-4.896000px;}
.wsc1{word-spacing:-4.464000px;}
.ws10{word-spacing:-4.176000px;}
.ws8b{word-spacing:-2.520000px;}
.wsbf{word-spacing:-2.488200px;}
.ws34{word-spacing:-2.376000px;}
.ws33{word-spacing:-1.728000px;}
.ws78{word-spacing:-1.368000px;}
.ws42{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.216000px;}
.wsc0{word-spacing:-0.072000px;}
.ws15{word-spacing:0.000000px;}
.wsda{word-spacing:0.216000px;}
.ws7f{word-spacing:0.288000px;}
.ws1{word-spacing:0.720000px;}
.ws93{word-spacing:1.368000px;}
.wsdf{word-spacing:1.728000px;}
.wsd6{word-spacing:2.160000px;}
.wsf2{word-spacing:3.060000px;}
.wsb1{word-spacing:3.456000px;}
.ws32{word-spacing:3.528000px;}
.wse2{word-spacing:3.960000px;}
.wsae{word-spacing:5.688000px;}
.ws23{word-spacing:6.840000px;}
.ws8e{word-spacing:8.208000px;}
.wsa9{word-spacing:8.352000px;}
.wsd1{word-spacing:8.928000px;}
.ws28{word-spacing:9.936000px;}
.ws5d{word-spacing:10.152000px;}
.wscd{word-spacing:12.096000px;}
.ws9c{word-spacing:14.040000px;}
.wsf3{word-spacing:14.400000px;}
.wsb9{word-spacing:14.832000px;}
.ws8d{word-spacing:14.976000px;}
.wsf1{word-spacing:15.240000px;}
.wsa5{word-spacing:16.920000px;}
.wsf5{word-spacing:18.600000px;}
.wsbc{word-spacing:18.606600px;}
.wse8{word-spacing:19.080000px;}
.wsf6{word-spacing:19.260000px;}
.ws9a{word-spacing:21.024000px;}
.ws45{word-spacing:21.600000px;}
.wsd4{word-spacing:21.888000px;}
.ws65{word-spacing:24.048000px;}
.wsa{word-spacing:24.624000px;}
.ws4d{word-spacing:26.280000px;}
.wscf{word-spacing:27.576000px;}
.wsd3{word-spacing:30.888000px;}
.wse9{word-spacing:31.032000px;}
.wsbe{word-spacing:31.464000px;}
.ws8c{word-spacing:33.120000px;}
.wsab{word-spacing:38.160000px;}
.ws3c{word-spacing:38.808000px;}
.wsf4{word-spacing:39.900000px;}
.wsa3{word-spacing:41.544000px;}
.wsd2{word-spacing:42.336000px;}
.ws63{word-spacing:43.992000px;}
.ws1e{word-spacing:45.288000px;}
.ws16{word-spacing:48.021000px;}
.ws40{word-spacing:48.744000px;}
.wsb7{word-spacing:49.104000px;}
.wsd8{word-spacing:49.680000px;}
.ws6f{word-spacing:50.904000px;}
.wsdd{word-spacing:53.712000px;}
.wsdc{word-spacing:53.784000px;}
.ws5c{word-spacing:54.576000px;}
.ws3b{word-spacing:55.224000px;}
.wsc5{word-spacing:58.752000px;}
.wsa8{word-spacing:58.824000px;}
.wsb3{word-spacing:62.208000px;}
.ws1f{word-spacing:62.424000px;}
.wsbb{word-spacing:62.496000px;}
.ws2c{word-spacing:63.144000px;}
.wsbd{word-spacing:63.576000px;}
.ws5b{word-spacing:73.512000px;}
.wsd9{word-spacing:82.440000px;}
.wsa6{word-spacing:102.456000px;}
.ws69{word-spacing:113.112000px;}
.wsb5{word-spacing:124.776000px;}
.ws61{word-spacing:140.976000px;}
.wse3{word-spacing:151.704000px;}
.wsc9{word-spacing:177.192000px;}
.ws4c{word-spacing:240.552000px;}
.ws9e{word-spacing:262.872000px;}
.ws17{word-spacing:386.314800px;}
.ws0{word-spacing:1714.377600px;}
._7{margin-left:-18.720000px;}
._18{margin-left:-15.984000px;}
._13{margin-left:-14.832000px;}
._10{margin-left:-12.816000px;}
._14{margin-left:-11.592000px;}
._6{margin-left:-10.224000px;}
._c{margin-left:-9.216000px;}
._16{margin-left:-8.208000px;}
._5{margin-left:-7.128000px;}
._11{margin-left:-6.120000px;}
._2{margin-left:-4.386000px;}
._9{margin-left:-3.043200px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._8{width:3.228000px;}
._e{width:5.256000px;}
._12{width:6.264000px;}
._4{width:7.488000px;}
._a{width:9.432000px;}
._b{width:11.304000px;}
._3{width:66.319200px;}
._15{width:75.160800px;}
._f{width:91.360800px;}
._d{width:118.864800px;}
._17{width:177.328800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y81{bottom:93.240150px;}
.y5c{bottom:93.960150px;}
.y86{bottom:97.740150px;}
.yb1{bottom:98.472150px;}
.ydb{bottom:102.210150px;}
.yda{bottom:102.216150px;}
.y28{bottom:111.943050px;}
.y80{bottom:115.740150px;}
.y5b{bottom:116.460150px;}
.y85{bottom:119.484150px;}
.yb0{bottom:120.216150px;}
.yd9{bottom:123.960150px;}
.y27{bottom:134.443050px;}
.y7f{bottom:138.240150px;}
.y5a{bottom:138.960150px;}
.y84{bottom:141.228150px;}
.yaf{bottom:141.960150px;}
.yd8{bottom:145.710150px;}
.y26{bottom:156.943050px;}
.y7e{bottom:159.984150px;}
.y59{bottom:161.460150px;}
.y83{bottom:162.972150px;}
.yae{bottom:163.884150px;}
.yd7{bottom:167.460150px;}
.y25{bottom:179.443050px;}
.y7d{bottom:181.728150px;}
.y58{bottom:183.960150px;}
.y82{bottom:184.716150px;}
.yad{bottom:185.628150px;}
.yd6{bottom:189.210150px;}
.y24{bottom:201.943050px;}
.y102{bottom:203.460150px;}
.y7c{bottom:203.472150px;}
.y57{bottom:206.460150px;}
.yac{bottom:208.128150px;}
.yd5{bottom:210.960150px;}
.y101{bottom:222.960150px;}
.y23{bottom:224.443050px;}
.y7b{bottom:225.216150px;}
.y56{bottom:228.960150px;}
.yab{bottom:230.628150px;}
.yd4{bottom:232.920150px;}
.y100{bottom:242.460150px;}
.y22{bottom:246.943050px;}
.y7a{bottom:246.960150px;}
.y55{bottom:251.460150px;}
.yaa{bottom:253.128150px;}
.yd3{bottom:254.664150px;}
.yff{bottom:261.960150px;}
.y79{bottom:268.788150px;}
.y21{bottom:269.443050px;}
.y54{bottom:273.960150px;}
.ya9{bottom:274.872150px;}
.yd2{bottom:276.408150px;}
.yfe{bottom:281.460150px;}
.y78{bottom:290.532150px;}
.y20{bottom:291.943050px;}
.y53{bottom:296.460150px;}
.ya8{bottom:296.616150px;}
.yd1{bottom:298.152150px;}
.yfd{bottom:300.960150px;}
.y77{bottom:312.276150px;}
.y1f{bottom:314.443050px;}
.ya7{bottom:318.360150px;}
.y52{bottom:318.960150px;}
.yd0{bottom:319.896150px;}
.yfc{bottom:320.460150px;}
.y76{bottom:334.020150px;}
.y1e{bottom:336.943050px;}
.yfb{bottom:339.960150px;}
.ya6{bottom:340.104150px;}
.y51{bottom:341.460150px;}
.ycf{bottom:341.640150px;}
.y75{bottom:355.764150px;}
.y1d{bottom:359.443050px;}
.yfa{bottom:359.460150px;}
.ya5{bottom:361.848150px;}
.yce{bottom:363.384150px;}
.y50{bottom:363.960150px;}
.y74{bottom:377.508150px;}
.yf9{bottom:378.960150px;}
.y1c{bottom:381.943050px;}
.ya4{bottom:383.592150px;}
.ycd{bottom:385.128150px;}
.y4f{bottom:386.460150px;}
.yf8{bottom:398.460150px;}
.yf7{bottom:398.466150px;}
.y73{bottom:399.252150px;}
.y1b{bottom:404.443050px;}
.ya3{bottom:405.336150px;}
.ycc{bottom:406.872150px;}
.y4e{bottom:408.960150px;}
.yf6{bottom:420.210150px;}
.y72{bottom:420.996150px;}
.y1a{bottom:426.943050px;}
.ya2{bottom:427.080150px;}
.ycb{bottom:428.616150px;}
.y4d{bottom:431.460150px;}
.y71{bottom:442.740150px;}
.ya1{bottom:448.824150px;}
.y19{bottom:449.443050px;}
.yca{bottom:450.360150px;}
.y4c{bottom:453.960150px;}
.y31{bottom:456.139950px;}
.yf5{bottom:456.960150px;}
.y70{bottom:464.484150px;}
.ya0{bottom:470.568150px;}
.y18{bottom:471.943050px;}
.yc9{bottom:472.104150px;}
.y4b{bottom:476.460150px;}
.y30{bottom:478.639950px;}
.yf4{bottom:478.710150px;}
.y6f{bottom:486.228150px;}
.y9f{bottom:492.312150px;}
.yc8{bottom:493.848150px;}
.y4a{bottom:498.960150px;}
.yf3{bottom:500.460150px;}
.yf2{bottom:500.580150px;}
.y2f{bottom:501.139950px;}
.y6e{bottom:507.972150px;}
.y9e{bottom:514.056150px;}
.yc7{bottom:515.592150px;}
.y17{bottom:516.943050px;}
.y49{bottom:521.460150px;}
.yf1{bottom:522.324150px;}
.y6d{bottom:529.716150px;}
.y9d{bottom:535.800150px;}
.yc6{bottom:537.336150px;}
.y16{bottom:539.443050px;}
.y2e{bottom:541.639950px;}
.y48{bottom:543.960150px;}
.yf0{bottom:544.068150px;}
.y6c{bottom:551.460150px;}
.y9c{bottom:557.544150px;}
.yc5{bottom:559.080150px;}
.y15{bottom:561.943050px;}
.yef{bottom:565.812150px;}
.y47{bottom:566.460150px;}
.y6b{bottom:573.960150px;}
.y9b{bottom:579.288150px;}
.yc4{bottom:580.824150px;}
.y14{bottom:584.443050px;}
.y2d{bottom:586.639950px;}
.yee{bottom:587.556150px;}
.y46{bottom:588.960150px;}
.y6a{bottom:596.460150px;}
.y9a{bottom:601.032150px;}
.yc3{bottom:602.568150px;}
.y13{bottom:606.943050px;}
.yed{bottom:609.300150px;}
.y45{bottom:611.460150px;}
.y69{bottom:618.960150px;}
.y99{bottom:622.776150px;}
.yc2{bottom:624.312150px;}
.y2c{bottom:627.139950px;}
.y12{bottom:629.443050px;}
.yec{bottom:631.044150px;}
.y44{bottom:633.960150px;}
.y68{bottom:641.460150px;}
.y98{bottom:644.520150px;}
.yc1{bottom:646.056150px;}
.y11{bottom:651.943050px;}
.yeb{bottom:652.788150px;}
.y43{bottom:656.460150px;}
.y2b{bottom:663.139950px;}
.y67{bottom:663.960150px;}
.y97{bottom:666.264150px;}
.yc0{bottom:667.800150px;}
.y10{bottom:674.443050px;}
.yea{bottom:674.532150px;}
.y42{bottom:678.960150px;}
.y66{bottom:686.460150px;}
.y96{bottom:688.764150px;}
.ybf{bottom:689.544150px;}
.ye9{bottom:696.276150px;}
.yf{bottom:696.943050px;}
.y2a{bottom:699.139950px;}
.y41{bottom:701.460150px;}
.y65{bottom:708.960150px;}
.y95{bottom:711.264150px;}
.ybe{bottom:711.288150px;}
.ye8{bottom:718.020150px;}
.ye{bottom:719.443050px;}
.y40{bottom:723.960150px;}
.y64{bottom:731.460150px;}
.y94{bottom:733.008150px;}
.ybd{bottom:733.032150px;}
.y29{bottom:735.139950px;}
.ye7{bottom:739.764150px;}
.yd{bottom:741.943050px;}
.y3f{bottom:746.460150px;}
.y63{bottom:753.960150px;}
.y93{bottom:754.752150px;}
.ybc{bottom:754.776150px;}
.ye6{bottom:761.508150px;}
.yc{bottom:764.443050px;}
.y3e{bottom:768.960150px;}
.y62{bottom:776.460150px;}
.y92{bottom:776.496150px;}
.ybb{bottom:776.520150px;}
.ye5{bottom:783.252150px;}
.yb{bottom:786.943050px;}
.y3d{bottom:791.460150px;}
.y91{bottom:798.240150px;}
.yba{bottom:798.264150px;}
.y61{bottom:798.960150px;}
.ye4{bottom:804.996150px;}
.ya{bottom:809.443050px;}
.y3c{bottom:813.960150px;}
.y90{bottom:819.984150px;}
.yb9{bottom:820.008150px;}
.y60{bottom:821.460150px;}
.ye3{bottom:826.740150px;}
.y9{bottom:831.943050px;}
.y3b{bottom:836.460150px;}
.y8f{bottom:841.728150px;}
.yb8{bottom:841.752150px;}
.y5f{bottom:843.960150px;}
.ye2{bottom:848.484150px;}
.y3a{bottom:858.960150px;}
.y8e{bottom:863.472150px;}
.yb7{bottom:863.496150px;}
.y5e{bottom:866.460150px;}
.ye1{bottom:870.228150px;}
.y8{bottom:876.938550px;}
.y39{bottom:881.460150px;}
.y8d{bottom:885.216150px;}
.yb6{bottom:885.240150px;}
.y5d{bottom:888.960150px;}
.ye0{bottom:891.972150px;}
.y7{bottom:897.943050px;}
.y38{bottom:903.960150px;}
.y8c{bottom:906.960150px;}
.y8b{bottom:906.972150px;}
.yb5{bottom:906.984150px;}
.ydf{bottom:913.716150px;}
.y6{bottom:918.943050px;}
.y37{bottom:926.460150px;}
.y8a{bottom:928.716150px;}
.yb4{bottom:928.728150px;}
.yde{bottom:935.460150px;}
.y36{bottom:948.960150px;}
.y89{bottom:950.460150px;}
.yb3{bottom:950.472150px;}
.y5{bottom:968.443050px;}
.y35{bottom:971.460150px;}
.ydd{bottom:972.210150px;}
.yb2{bottom:972.216150px;}
.y88{bottom:972.252150px;}
.y34{bottom:993.960150px;}
.ydc{bottom:993.966150px;}
.y87{bottom:993.996150px;}
.y4{bottom:1024.374150px;}
.y33{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xc{left:65.202600px;}
.xa{left:73.559100px;}
.xb{left:74.853150px;}
.xe{left:102.837000px;}
.x12{left:137.865450px;}
.x13{left:154.311450px;}
.x14{left:161.744550px;}
.x9{left:224.187900px;}
.x8{left:342.342900px;}
.x5{left:354.138450px;}
.xd{left:374.424150px;}
.xf{left:399.981000px;}
.x4{left:412.272150px;}
.x11{left:421.195650px;}
.x18{left:426.935850px;}
.x7{left:452.513400px;}
.x17{left:471.707850px;}
.x19{left:478.000650px;}
.x15{left:531.866400px;}
.x6{left:559.498500px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x16{left:706.008450px;}
.x10{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ls2{letter-spacing:58.944000pt;}
.ws5{word-spacing:-64.000000pt;}
.wse1{word-spacing:-63.360000pt;}
.wsb{word-spacing:-54.592000pt;}
.ws99{word-spacing:-54.336000pt;}
.ws6a{word-spacing:-53.312000pt;}
.ws25{word-spacing:-53.062400pt;}
.wsc2{word-spacing:-52.288000pt;}
.ws27{word-spacing:-52.160000pt;}
.ws87{word-spacing:-51.776000pt;}
.ws6{word-spacing:-51.712000pt;}
.ws91{word-spacing:-51.328000pt;}
.ws8a{word-spacing:-51.072000pt;}
.ws57{word-spacing:-50.752000pt;}
.wse6{word-spacing:-50.304000pt;}
.ws12{word-spacing:-49.856000pt;}
.wsb0{word-spacing:-49.664000pt;}
.ws67{word-spacing:-49.600000pt;}
.ws7e{word-spacing:-49.344000pt;}
.ws1a{word-spacing:-49.216000pt;}
.wsaa{word-spacing:-49.088000pt;}
.ws11{word-spacing:-48.960000pt;}
.ws96{word-spacing:-48.896000pt;}
.wscb{word-spacing:-48.832000pt;}
.ws79{word-spacing:-48.128000pt;}
.wsa4{word-spacing:-47.872000pt;}
.ws4a{word-spacing:-47.680000pt;}
.wse0{word-spacing:-47.552000pt;}
.ws84{word-spacing:-47.488000pt;}
.wsa7{word-spacing:-47.360000pt;}
.wsd0{word-spacing:-47.232000pt;}
.wsd7{word-spacing:-46.336000pt;}
.ws52{word-spacing:-46.144000pt;}
.wsc4{word-spacing:-45.568000pt;}
.ws7{word-spacing:-45.184000pt;}
.ws2{word-spacing:-44.864000pt;}
.ws88{word-spacing:-44.800000pt;}
.ws5f{word-spacing:-44.736000pt;}
.ws70{word-spacing:-44.416000pt;}
.ws51{word-spacing:-44.288000pt;}
.ws26{word-spacing:-43.968000pt;}
.ws7b{word-spacing:-43.584000pt;}
.ws90{word-spacing:-43.392000pt;}
.ws20{word-spacing:-43.328000pt;}
.ws2e{word-spacing:-43.264000pt;}
.ws7a{word-spacing:-43.200000pt;}
.wsb6{word-spacing:-42.944000pt;}
.ws80{word-spacing:-42.816000pt;}
.wsa2{word-spacing:-42.752000pt;}
.ws44{word-spacing:-42.688000pt;}
.ws77{word-spacing:-41.856000pt;}
.ws2d{word-spacing:-41.472000pt;}
.wsaf{word-spacing:-41.408000pt;}
.wsdb{word-spacing:-41.152000pt;}
.wsd{word-spacing:-40.640000pt;}
.wsa1{word-spacing:-39.872000pt;}
.wsed{word-spacing:-39.488000pt;}
.ws38{word-spacing:-38.976000pt;}
.ws37{word-spacing:-38.528000pt;}
.wsad{word-spacing:-38.208000pt;}
.wsb8{word-spacing:-37.824000pt;}
.wseb{word-spacing:-36.864000pt;}
.ws85{word-spacing:-36.544000pt;}
.ws72{word-spacing:-36.480000pt;}
.ws68{word-spacing:-36.288000pt;}
.ws97{word-spacing:-36.096000pt;}
.ws54{word-spacing:-35.712000pt;}
.ws2a{word-spacing:-35.648000pt;}
.ws7c{word-spacing:-35.136000pt;}
.ws82{word-spacing:-34.944000pt;}
.ws95{word-spacing:-34.368000pt;}
.ws46{word-spacing:-34.240000pt;}
.wsf0{word-spacing:-34.186667pt;}
.ws19{word-spacing:-34.176000pt;}
.wsef{word-spacing:-34.133333pt;}
.ws98{word-spacing:-34.112000pt;}
.ws58{word-spacing:-33.856000pt;}
.ws75{word-spacing:-33.792000pt;}
.wscc{word-spacing:-33.600000pt;}
.ws9b{word-spacing:-33.216000pt;}
.ws74{word-spacing:-31.232000pt;}
.ws6b{word-spacing:-31.040000pt;}
.wsc8{word-spacing:-30.976000pt;}
.ws13{word-spacing:-30.784000pt;}
.wsc7{word-spacing:-30.592000pt;}
.ws73{word-spacing:-30.272000pt;}
.wsee{word-spacing:-30.186667pt;}
.ws31{word-spacing:-30.144000pt;}
.ws9d{word-spacing:-30.080000pt;}
.ws3{word-spacing:-29.568000pt;}
.ws6d{word-spacing:-29.504000pt;}
.ws62{word-spacing:-29.248000pt;}
.wsd5{word-spacing:-29.184000pt;}
.ws4{word-spacing:-29.120000pt;}
.ws71{word-spacing:-28.992000pt;}
.ws55{word-spacing:-28.544000pt;}
.ws49{word-spacing:-28.416000pt;}
.wsb4{word-spacing:-28.096000pt;}
.ws89{word-spacing:-27.520000pt;}
.ws83{word-spacing:-27.392000pt;}
.ws2f{word-spacing:-27.200000pt;}
.ws29{word-spacing:-26.944000pt;}
.ws60{word-spacing:-26.752000pt;}
.ws9{word-spacing:-26.304000pt;}
.ws21{word-spacing:-26.240000pt;}
.ws66{word-spacing:-26.176000pt;}
.ws2b{word-spacing:-25.408000pt;}
.ws92{word-spacing:-25.088000pt;}
.ws6c{word-spacing:-24.960000pt;}
.wse7{word-spacing:-24.896000pt;}
.ws47{word-spacing:-24.704000pt;}
.ws24{word-spacing:-24.512000pt;}
.wse5{word-spacing:-24.320000pt;}
.ws53{word-spacing:-22.272000pt;}
.wsde{word-spacing:-22.144000pt;}
.ws22{word-spacing:-21.824000pt;}
.ws8f{word-spacing:-21.760000pt;}
.ws3a{word-spacing:-21.062400pt;}
.ws41{word-spacing:-20.352000pt;}
.wsc3{word-spacing:-20.096000pt;}
.ws4e{word-spacing:-18.752000pt;}
.wsea{word-spacing:-17.856000pt;}
.ws1c{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.280000pt;}
.wsa0{word-spacing:-16.576000pt;}
.ws86{word-spacing:-16.320000pt;}
.ws94{word-spacing:-16.064000pt;}
.wsf{word-spacing:-13.952000pt;}
.wsb2{word-spacing:-13.568000pt;}
.ws4b{word-spacing:-13.504000pt;}
.ws14{word-spacing:-13.333333pt;}
.ws48{word-spacing:-13.120000pt;}
.wsce{word-spacing:-12.672000pt;}
.ws9f{word-spacing:-12.544000pt;}
.ws3e{word-spacing:-12.352000pt;}
.ws59{word-spacing:-12.160000pt;}
.ws7d{word-spacing:-12.000000pt;}
.wsca{word-spacing:-11.520000pt;}
.ws1b{word-spacing:-11.264000pt;}
.wse{word-spacing:-11.200000pt;}
.ws3f{word-spacing:-11.008000pt;}
.ws64{word-spacing:-10.880000pt;}
.ws56{word-spacing:-10.496000pt;}
.wsc{word-spacing:-10.368000pt;}
.wse4{word-spacing:-9.536000pt;}
.ws1d{word-spacing:-9.408000pt;}
.ws81{word-spacing:-9.344000pt;}
.ws3d{word-spacing:-9.024000pt;}
.ws6e{word-spacing:-8.960000pt;}
.ws39{word-spacing:-8.704000pt;}
.ws76{word-spacing:-8.000000pt;}
.wsc6{word-spacing:-7.360000pt;}
.wsba{word-spacing:-6.976000pt;}
.ws35{word-spacing:-6.848000pt;}
.ws36{word-spacing:-5.632000pt;}
.ws4f{word-spacing:-5.568000pt;}
.wsac{word-spacing:-5.312000pt;}
.ws43{word-spacing:-5.184000pt;}
.ws18{word-spacing:-5.049600pt;}
.ws5a{word-spacing:-4.864000pt;}
.ws5e{word-spacing:-4.800000pt;}
.ws50{word-spacing:-4.736000pt;}
.wsec{word-spacing:-4.352000pt;}
.wsc1{word-spacing:-3.968000pt;}
.ws10{word-spacing:-3.712000pt;}
.ws8b{word-spacing:-2.240000pt;}
.wsbf{word-spacing:-2.211733pt;}
.ws34{word-spacing:-2.112000pt;}
.ws33{word-spacing:-1.536000pt;}
.ws78{word-spacing:-1.216000pt;}
.ws42{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.192000pt;}
.wsc0{word-spacing:-0.064000pt;}
.ws15{word-spacing:0.000000pt;}
.wsda{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.256000pt;}
.ws1{word-spacing:0.640000pt;}
.ws93{word-spacing:1.216000pt;}
.wsdf{word-spacing:1.536000pt;}
.wsd6{word-spacing:1.920000pt;}
.wsf2{word-spacing:2.720000pt;}
.wsb1{word-spacing:3.072000pt;}
.ws32{word-spacing:3.136000pt;}
.wse2{word-spacing:3.520000pt;}
.wsae{word-spacing:5.056000pt;}
.ws23{word-spacing:6.080000pt;}
.ws8e{word-spacing:7.296000pt;}
.wsa9{word-spacing:7.424000pt;}
.wsd1{word-spacing:7.936000pt;}
.ws28{word-spacing:8.832000pt;}
.ws5d{word-spacing:9.024000pt;}
.wscd{word-spacing:10.752000pt;}
.ws9c{word-spacing:12.480000pt;}
.wsf3{word-spacing:12.800000pt;}
.wsb9{word-spacing:13.184000pt;}
.ws8d{word-spacing:13.312000pt;}
.wsf1{word-spacing:13.546667pt;}
.wsa5{word-spacing:15.040000pt;}
.wsf5{word-spacing:16.533333pt;}
.wsbc{word-spacing:16.539200pt;}
.wse8{word-spacing:16.960000pt;}
.wsf6{word-spacing:17.120000pt;}
.ws9a{word-spacing:18.688000pt;}
.ws45{word-spacing:19.200000pt;}
.wsd4{word-spacing:19.456000pt;}
.ws65{word-spacing:21.376000pt;}
.wsa{word-spacing:21.888000pt;}
.ws4d{word-spacing:23.360000pt;}
.wscf{word-spacing:24.512000pt;}
.wsd3{word-spacing:27.456000pt;}
.wse9{word-spacing:27.584000pt;}
.wsbe{word-spacing:27.968000pt;}
.ws8c{word-spacing:29.440000pt;}
.wsab{word-spacing:33.920000pt;}
.ws3c{word-spacing:34.496000pt;}
.wsf4{word-spacing:35.466667pt;}
.wsa3{word-spacing:36.928000pt;}
.wsd2{word-spacing:37.632000pt;}
.ws63{word-spacing:39.104000pt;}
.ws1e{word-spacing:40.256000pt;}
.ws16{word-spacing:42.685333pt;}
.ws40{word-spacing:43.328000pt;}
.wsb7{word-spacing:43.648000pt;}
.wsd8{word-spacing:44.160000pt;}
.ws6f{word-spacing:45.248000pt;}
.wsdd{word-spacing:47.744000pt;}
.wsdc{word-spacing:47.808000pt;}
.ws5c{word-spacing:48.512000pt;}
.ws3b{word-spacing:49.088000pt;}
.wsc5{word-spacing:52.224000pt;}
.wsa8{word-spacing:52.288000pt;}
.wsb3{word-spacing:55.296000pt;}
.ws1f{word-spacing:55.488000pt;}
.wsbb{word-spacing:55.552000pt;}
.ws2c{word-spacing:56.128000pt;}
.wsbd{word-spacing:56.512000pt;}
.ws5b{word-spacing:65.344000pt;}
.wsd9{word-spacing:73.280000pt;}
.wsa6{word-spacing:91.072000pt;}
.ws69{word-spacing:100.544000pt;}
.wsb5{word-spacing:110.912000pt;}
.ws61{word-spacing:125.312000pt;}
.wse3{word-spacing:134.848000pt;}
.wsc9{word-spacing:157.504000pt;}
.ws4c{word-spacing:213.824000pt;}
.ws9e{word-spacing:233.664000pt;}
.ws17{word-spacing:343.390933pt;}
.ws0{word-spacing:1523.891200pt;}
._7{margin-left:-16.640000pt;}
._18{margin-left:-14.208000pt;}
._13{margin-left:-13.184000pt;}
._10{margin-left:-11.392000pt;}
._14{margin-left:-10.304000pt;}
._6{margin-left:-9.088000pt;}
._c{margin-left:-8.192000pt;}
._16{margin-left:-7.296000pt;}
._5{margin-left:-6.336000pt;}
._11{margin-left:-5.440000pt;}
._2{margin-left:-3.898667pt;}
._9{margin-left:-2.705067pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._8{width:2.869333pt;}
._e{width:4.672000pt;}
._12{width:5.568000pt;}
._4{width:6.656000pt;}
._a{width:8.384000pt;}
._b{width:10.048000pt;}
._3{width:58.950400pt;}
._15{width:66.809600pt;}
._f{width:81.209600pt;}
._d{width:105.657600pt;}
._17{width:157.625600pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y81{bottom:82.880133pt;}
.y5c{bottom:83.520133pt;}
.y86{bottom:86.880133pt;}
.yb1{bottom:87.530800pt;}
.ydb{bottom:90.853467pt;}
.yda{bottom:90.858800pt;}
.y28{bottom:99.504933pt;}
.y80{bottom:102.880133pt;}
.y5b{bottom:103.520133pt;}
.y85{bottom:106.208133pt;}
.yb0{bottom:106.858800pt;}
.yd9{bottom:110.186800pt;}
.y27{bottom:119.504933pt;}
.y7f{bottom:122.880133pt;}
.y5a{bottom:123.520133pt;}
.y84{bottom:125.536133pt;}
.yaf{bottom:126.186800pt;}
.yd8{bottom:129.520133pt;}
.y26{bottom:139.504933pt;}
.y7e{bottom:142.208133pt;}
.y59{bottom:143.520133pt;}
.y83{bottom:144.864133pt;}
.yae{bottom:145.674800pt;}
.yd7{bottom:148.853467pt;}
.y25{bottom:159.504933pt;}
.y7d{bottom:161.536133pt;}
.y58{bottom:163.520133pt;}
.y82{bottom:164.192133pt;}
.yad{bottom:165.002800pt;}
.yd6{bottom:168.186800pt;}
.y24{bottom:179.504933pt;}
.y102{bottom:180.853467pt;}
.y7c{bottom:180.864133pt;}
.y57{bottom:183.520133pt;}
.yac{bottom:185.002800pt;}
.yd5{bottom:187.520133pt;}
.y101{bottom:198.186800pt;}
.y23{bottom:199.504933pt;}
.y7b{bottom:200.192133pt;}
.y56{bottom:203.520133pt;}
.yab{bottom:205.002800pt;}
.yd4{bottom:207.040133pt;}
.y100{bottom:215.520133pt;}
.y22{bottom:219.504933pt;}
.y7a{bottom:219.520133pt;}
.y55{bottom:223.520133pt;}
.yaa{bottom:225.002800pt;}
.yd3{bottom:226.368133pt;}
.yff{bottom:232.853467pt;}
.y79{bottom:238.922800pt;}
.y21{bottom:239.504933pt;}
.y54{bottom:243.520133pt;}
.ya9{bottom:244.330800pt;}
.yd2{bottom:245.696133pt;}
.yfe{bottom:250.186800pt;}
.y78{bottom:258.250800pt;}
.y20{bottom:259.504933pt;}
.y53{bottom:263.520133pt;}
.ya8{bottom:263.658800pt;}
.yd1{bottom:265.024133pt;}
.yfd{bottom:267.520133pt;}
.y77{bottom:277.578800pt;}
.y1f{bottom:279.504933pt;}
.ya7{bottom:282.986800pt;}
.y52{bottom:283.520133pt;}
.yd0{bottom:284.352133pt;}
.yfc{bottom:284.853467pt;}
.y76{bottom:296.906800pt;}
.y1e{bottom:299.504933pt;}
.yfb{bottom:302.186800pt;}
.ya6{bottom:302.314800pt;}
.y51{bottom:303.520133pt;}
.ycf{bottom:303.680133pt;}
.y75{bottom:316.234800pt;}
.y1d{bottom:319.504933pt;}
.yfa{bottom:319.520133pt;}
.ya5{bottom:321.642800pt;}
.yce{bottom:323.008133pt;}
.y50{bottom:323.520133pt;}
.y74{bottom:335.562800pt;}
.yf9{bottom:336.853467pt;}
.y1c{bottom:339.504933pt;}
.ya4{bottom:340.970800pt;}
.ycd{bottom:342.336133pt;}
.y4f{bottom:343.520133pt;}
.yf8{bottom:354.186800pt;}
.yf7{bottom:354.192133pt;}
.y73{bottom:354.890800pt;}
.y1b{bottom:359.504933pt;}
.ya3{bottom:360.298800pt;}
.ycc{bottom:361.664133pt;}
.y4e{bottom:363.520133pt;}
.yf6{bottom:373.520133pt;}
.y72{bottom:374.218800pt;}
.y1a{bottom:379.504933pt;}
.ya2{bottom:379.626800pt;}
.ycb{bottom:380.992133pt;}
.y4d{bottom:383.520133pt;}
.y71{bottom:393.546800pt;}
.ya1{bottom:398.954800pt;}
.y19{bottom:399.504933pt;}
.yca{bottom:400.320133pt;}
.y4c{bottom:403.520133pt;}
.y31{bottom:405.457733pt;}
.yf5{bottom:406.186800pt;}
.y70{bottom:412.874800pt;}
.ya0{bottom:418.282800pt;}
.y18{bottom:419.504933pt;}
.yc9{bottom:419.648133pt;}
.y4b{bottom:423.520133pt;}
.y30{bottom:425.457733pt;}
.yf4{bottom:425.520133pt;}
.y6f{bottom:432.202800pt;}
.y9f{bottom:437.610800pt;}
.yc8{bottom:438.976133pt;}
.y4a{bottom:443.520133pt;}
.yf3{bottom:444.853467pt;}
.yf2{bottom:444.960133pt;}
.y2f{bottom:445.457733pt;}
.y6e{bottom:451.530800pt;}
.y9e{bottom:456.938800pt;}
.yc7{bottom:458.304133pt;}
.y17{bottom:459.504933pt;}
.y49{bottom:463.520133pt;}
.yf1{bottom:464.288133pt;}
.y6d{bottom:470.858800pt;}
.y9d{bottom:476.266800pt;}
.yc6{bottom:477.632133pt;}
.y16{bottom:479.504933pt;}
.y2e{bottom:481.457733pt;}
.y48{bottom:483.520133pt;}
.yf0{bottom:483.616133pt;}
.y6c{bottom:490.186800pt;}
.y9c{bottom:495.594800pt;}
.yc5{bottom:496.960133pt;}
.y15{bottom:499.504933pt;}
.yef{bottom:502.944133pt;}
.y47{bottom:503.520133pt;}
.y6b{bottom:510.186800pt;}
.y9b{bottom:514.922800pt;}
.yc4{bottom:516.288133pt;}
.y14{bottom:519.504933pt;}
.y2d{bottom:521.457733pt;}
.yee{bottom:522.272133pt;}
.y46{bottom:523.520133pt;}
.y6a{bottom:530.186800pt;}
.y9a{bottom:534.250800pt;}
.yc3{bottom:535.616133pt;}
.y13{bottom:539.504933pt;}
.yed{bottom:541.600133pt;}
.y45{bottom:543.520133pt;}
.y69{bottom:550.186800pt;}
.y99{bottom:553.578800pt;}
.yc2{bottom:554.944133pt;}
.y2c{bottom:557.457733pt;}
.y12{bottom:559.504933pt;}
.yec{bottom:560.928133pt;}
.y44{bottom:563.520133pt;}
.y68{bottom:570.186800pt;}
.y98{bottom:572.906800pt;}
.yc1{bottom:574.272133pt;}
.y11{bottom:579.504933pt;}
.yeb{bottom:580.256133pt;}
.y43{bottom:583.520133pt;}
.y2b{bottom:589.457733pt;}
.y67{bottom:590.186800pt;}
.y97{bottom:592.234800pt;}
.yc0{bottom:593.600133pt;}
.y10{bottom:599.504933pt;}
.yea{bottom:599.584133pt;}
.y42{bottom:603.520133pt;}
.y66{bottom:610.186800pt;}
.y96{bottom:612.234800pt;}
.ybf{bottom:612.928133pt;}
.ye9{bottom:618.912133pt;}
.yf{bottom:619.504933pt;}
.y2a{bottom:621.457733pt;}
.y41{bottom:623.520133pt;}
.y65{bottom:630.186800pt;}
.y95{bottom:632.234800pt;}
.ybe{bottom:632.256133pt;}
.ye8{bottom:638.240133pt;}
.ye{bottom:639.504933pt;}
.y40{bottom:643.520133pt;}
.y64{bottom:650.186800pt;}
.y94{bottom:651.562800pt;}
.ybd{bottom:651.584133pt;}
.y29{bottom:653.457733pt;}
.ye7{bottom:657.568133pt;}
.yd{bottom:659.504933pt;}
.y3f{bottom:663.520133pt;}
.y63{bottom:670.186800pt;}
.y93{bottom:670.890800pt;}
.ybc{bottom:670.912133pt;}
.ye6{bottom:676.896133pt;}
.yc{bottom:679.504933pt;}
.y3e{bottom:683.520133pt;}
.y62{bottom:690.186800pt;}
.y92{bottom:690.218800pt;}
.ybb{bottom:690.240133pt;}
.ye5{bottom:696.224133pt;}
.yb{bottom:699.504933pt;}
.y3d{bottom:703.520133pt;}
.y91{bottom:709.546800pt;}
.yba{bottom:709.568133pt;}
.y61{bottom:710.186800pt;}
.ye4{bottom:715.552133pt;}
.ya{bottom:719.504933pt;}
.y3c{bottom:723.520133pt;}
.y90{bottom:728.874800pt;}
.yb9{bottom:728.896133pt;}
.y60{bottom:730.186800pt;}
.ye3{bottom:734.880133pt;}
.y9{bottom:739.504933pt;}
.y3b{bottom:743.520133pt;}
.y8f{bottom:748.202800pt;}
.yb8{bottom:748.224133pt;}
.y5f{bottom:750.186800pt;}
.ye2{bottom:754.208133pt;}
.y3a{bottom:763.520133pt;}
.y8e{bottom:767.530800pt;}
.yb7{bottom:767.552133pt;}
.y5e{bottom:770.186800pt;}
.ye1{bottom:773.536133pt;}
.y8{bottom:779.500933pt;}
.y39{bottom:783.520133pt;}
.y8d{bottom:786.858800pt;}
.yb6{bottom:786.880133pt;}
.y5d{bottom:790.186800pt;}
.ye0{bottom:792.864133pt;}
.y7{bottom:798.171600pt;}
.y38{bottom:803.520133pt;}
.y8c{bottom:806.186800pt;}
.y8b{bottom:806.197467pt;}
.yb5{bottom:806.208133pt;}
.ydf{bottom:812.192133pt;}
.y6{bottom:816.838267pt;}
.y37{bottom:823.520133pt;}
.y8a{bottom:825.525467pt;}
.yb4{bottom:825.536133pt;}
.yde{bottom:831.520133pt;}
.y36{bottom:843.520133pt;}
.y89{bottom:844.853467pt;}
.yb3{bottom:844.864133pt;}
.y5{bottom:860.838267pt;}
.y35{bottom:863.520133pt;}
.ydd{bottom:864.186800pt;}
.yb2{bottom:864.192133pt;}
.y88{bottom:864.224133pt;}
.y34{bottom:883.520133pt;}
.ydc{bottom:883.525467pt;}
.y87{bottom:883.552133pt;}
.y4{bottom:910.554800pt;}
.y33{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xc{left:57.957867pt;}
.xa{left:65.385867pt;}
.xb{left:66.536133pt;}
.xe{left:91.410667pt;}
.x12{left:122.547067pt;}
.x13{left:137.165733pt;}
.x14{left:143.772933pt;}
.x9{left:199.278133pt;}
.x8{left:304.304800pt;}
.x5{left:314.789733pt;}
.xd{left:332.821467pt;}
.xf{left:355.538667pt;}
.x4{left:366.464133pt;}
.x11{left:374.396133pt;}
.x18{left:379.498533pt;}
.x7{left:402.234133pt;}
.x17{left:419.295867pt;}
.x19{left:424.889467pt;}
.x15{left:472.770133pt;}
.x6{left:497.332000pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x16{left:627.563067pt;}
.x10{left:631.627067pt;}
}




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