
    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_3525c5ba086000360f8f42d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_11edfae8e1f56a853b908394.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.197000;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_2dc499e46d42461dee64ed5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_50ded029364e831df124558c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.213000;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_dc970594fda0583d59e9d7ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.222000;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_c1dc0ad2b3b5b9df39096993.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_a644054470c6a783238694cc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_204121730e55fdc277212653.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.303000;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_ba2e0fa37079fe833c5653ea.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_11edfae8e1f56a853b908394.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.197000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.256000;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_065c9e8dbf3a3e320661749a.woff2')format("woff");}.fff{font-family:fff;line-height:1.230000;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_2bfc0d9a99371d28e7943ec3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.725000;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:ff11;src:url('chunks/assets/font_71f9e92e1109c4b3e21a4a7d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;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:ff12;src:url('chunks/assets/font_38300cbd12bcac44d2bd6f09.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.040000;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:ff13;src:url('chunks/assets/font_d0d2ad1aab6615e270ef2230.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.266000;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:ff14;src:url('chunks/assets/font_0dbf59995973e66e4849e25b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_50b4d9f2f1dfd028a2d772df.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-19.200073px;}
.v2{vertical-align:-14.250000px;}
.v3{vertical-align:-9.108032px;}
.v6{vertical-align:-4.800018px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.108032px;}
.v1{vertical-align:22.799927px;}
.v5{vertical-align:30.636108px;}
.ls1{letter-spacing:-4.704000px;}
.lsb{letter-spacing:-3.552000px;}
.ls6{letter-spacing:-0.296967px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000027px;}
.ls8{letter-spacing:0.000036px;}
.lsd{letter-spacing:0.000066px;}
.lsc{letter-spacing:0.000081px;}
.lsa{letter-spacing:0.000089px;}
.ls2{letter-spacing:0.000091px;}
.ls5{letter-spacing:0.247471px;}
.ls4{letter-spacing:0.418795px;}
.ls3{letter-spacing:2.186536px;}
.ls7{letter-spacing:3.979358px;}
.lse{letter-spacing:30.703189px;}
.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:-14.250000px;}
.ws97{word-spacing:-13.332000px;}
.ws8b{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws8a{word-spacing:-11.340000px;}
.wsf{word-spacing:-9.975000px;}
.ws3{word-spacing:-9.408000px;}
.ws89{word-spacing:-9.216000px;}
.ws98{word-spacing:-8.448000px;}
.wsd2{word-spacing:-8.400000px;}
.ws4c{word-spacing:-8.151000px;}
.ws7{word-spacing:-7.125000px;}
.wsa8{word-spacing:-6.000000px;}
.wscd{word-spacing:-5.424000px;}
.ws56{word-spacing:-4.038751px;}
.ws40{word-spacing:-3.840000px;}
.ws16{word-spacing:-2.793000px;}
.ws1e{word-spacing:-2.736000px;}
.ws47{word-spacing:-2.679000px;}
.wsbf{word-spacing:-2.640000px;}
.ws68{word-spacing:-2.394000px;}
.ws86{word-spacing:-2.337000px;}
.ws2c{word-spacing:-2.280000px;}
.wsb9{word-spacing:-2.256000px;}
.ws85{word-spacing:-2.223000px;}
.wsd0{word-spacing:-2.064000px;}
.ws2e{word-spacing:-2.052000px;}
.ws7c{word-spacing:-1.995000px;}
.ws67{word-spacing:-1.938000px;}
.ws22{word-spacing:-1.881000px;}
.wsa0{word-spacing:-1.776000px;}
.ws65{word-spacing:-1.767000px;}
.ws72{word-spacing:-1.539000px;}
.ws3c{word-spacing:-1.482000px;}
.ws7e{word-spacing:-1.368000px;}
.wscf{word-spacing:-1.344000px;}
.ws33{word-spacing:-1.254000px;}
.wsbd{word-spacing:-1.200000px;}
.ws43{word-spacing:-1.197000px;}
.wsbc{word-spacing:-1.152000px;}
.ws9e{word-spacing:-1.056000px;}
.wsa1{word-spacing:-1.008000px;}
.ws64{word-spacing:-0.969000px;}
.wsd4{word-spacing:-0.960000px;}
.wsc5{word-spacing:-0.912000px;}
.wsb4{word-spacing:-0.864000px;}
.ws9f{word-spacing:-0.816000px;}
.ws88{word-spacing:-0.627000px;}
.ws79{word-spacing:-0.570000px;}
.wsc1{word-spacing:-0.528000px;}
.ws3b{word-spacing:-0.456000px;}
.ws1c{word-spacing:-0.399000px;}
.ws83{word-spacing:-0.342000px;}
.ws8e{word-spacing:-0.285000px;}
.wscc{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.228000px;}
.ws80{word-spacing:-0.171000px;}
.wsd1{word-spacing:-0.144000px;}
.ws99{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws70{word-spacing:0.057000px;}
.wsd5{word-spacing:0.096000px;}
.ws6a{word-spacing:0.114000px;}
.ws5a{word-spacing:0.171000px;}
.ws81{word-spacing:0.228000px;}
.ws69{word-spacing:0.240000px;}
.ws49{word-spacing:0.285000px;}
.ws58{word-spacing:0.296967px;}
.ws6e{word-spacing:0.342000px;}
.ws4d{word-spacing:0.399000px;}
.ws5c{word-spacing:0.456000px;}
.ws9d{word-spacing:0.528000px;}
.ws78{word-spacing:0.570000px;}
.ws87{word-spacing:0.627000px;}
.wsac{word-spacing:0.672000px;}
.ws82{word-spacing:0.684000px;}
.ws3d{word-spacing:0.741000px;}
.ws28{word-spacing:0.798000px;}
.ws9b{word-spacing:0.816000px;}
.ws7f{word-spacing:0.912000px;}
.ws17{word-spacing:0.969000px;}
.wsb7{word-spacing:1.008000px;}
.ws7b{word-spacing:1.026000px;}
.ws9c{word-spacing:1.056000px;}
.ws5b{word-spacing:1.083000px;}
.ws4a{word-spacing:1.140000px;}
.ws1d{word-spacing:1.197000px;}
.wsa6{word-spacing:1.200000px;}
.ws24{word-spacing:1.254000px;}
.ws66{word-spacing:1.311000px;}
.wsb5{word-spacing:1.440000px;}
.wsab{word-spacing:1.536000px;}
.ws6d{word-spacing:1.539000px;}
.ws63{word-spacing:1.596000px;}
.wsc2{word-spacing:1.632000px;}
.ws3f{word-spacing:1.653000px;}
.ws9a{word-spacing:1.680000px;}
.ws77{word-spacing:1.710000px;}
.ws13{word-spacing:1.767000px;}
.wsd3{word-spacing:1.872000px;}
.wsbe{word-spacing:1.920000px;}
.ws4b{word-spacing:1.938000px;}
.ws5d{word-spacing:1.995000px;}
.ws12{word-spacing:2.052000px;}
.ws8c{word-spacing:2.109000px;}
.ws6{word-spacing:2.166000px;}
.wsa5{word-spacing:2.208000px;}
.ws71{word-spacing:2.280000px;}
.wsa3{word-spacing:2.304000px;}
.ws41{word-spacing:2.337000px;}
.ws3e{word-spacing:2.394000px;}
.ws21{word-spacing:2.451000px;}
.ws46{word-spacing:2.565000px;}
.wsca{word-spacing:2.640000px;}
.ws6c{word-spacing:2.736000px;}
.wsb6{word-spacing:2.784000px;}
.ws10{word-spacing:2.832000px;}
.ws73{word-spacing:2.850000px;}
.wscb{word-spacing:2.880000px;}
.ws61{word-spacing:2.907000px;}
.ws62{word-spacing:2.964000px;}
.wsba{word-spacing:2.976000px;}
.ws74{word-spacing:3.021000px;}
.wsc7{word-spacing:3.072000px;}
.ws18{word-spacing:3.078000px;}
.ws57{word-spacing:3.135000px;}
.ws95{word-spacing:3.168000px;}
.wsaf{word-spacing:3.216000px;}
.ws31{word-spacing:3.249000px;}
.wse{word-spacing:3.306000px;}
.wsc0{word-spacing:3.360000px;}
.ws14{word-spacing:3.363000px;}
.ws55{word-spacing:3.420000px;}
.ws34{word-spacing:3.477000px;}
.ws48{word-spacing:3.534000px;}
.ws90{word-spacing:3.591000px;}
.ws39{word-spacing:3.648000px;}
.wsbb{word-spacing:3.696000px;}
.ws19{word-spacing:3.705000px;}
.wsc6{word-spacing:3.744000px;}
.ws84{word-spacing:3.762000px;}
.ws27{word-spacing:3.876000px;}
.wsc9{word-spacing:3.888000px;}
.ws30{word-spacing:3.933000px;}
.wsaa{word-spacing:3.984000px;}
.wsb1{word-spacing:4.032000px;}
.ws2b{word-spacing:4.047000px;}
.ws38{word-spacing:4.104000px;}
.ws7d{word-spacing:4.161000px;}
.ws1f{word-spacing:4.218000px;}
.wsd{word-spacing:4.275000px;}
.ws42{word-spacing:4.389000px;}
.ws1a{word-spacing:4.446000px;}
.ws29{word-spacing:4.503000px;}
.ws9{word-spacing:4.560000px;}
.wsa7{word-spacing:4.608000px;}
.ws45{word-spacing:4.617000px;}
.ws25{word-spacing:4.704000px;}
.ws52{word-spacing:4.731000px;}
.wsa2{word-spacing:4.944000px;}
.ws53{word-spacing:4.959000px;}
.ws94{word-spacing:4.992000px;}
.ws23{word-spacing:5.016000px;}
.ws15{word-spacing:5.073000px;}
.ws51{word-spacing:5.130000px;}
.ws54{word-spacing:5.187000px;}
.ws2a{word-spacing:5.244000px;}
.ws91{word-spacing:5.301000px;}
.ws26{word-spacing:5.358000px;}
.ws4e{word-spacing:5.586000px;}
.ws59{word-spacing:5.643000px;}
.ws6b{word-spacing:5.700000px;}
.wsc8{word-spacing:5.712000px;}
.ws4f{word-spacing:5.757000px;}
.ws93{word-spacing:5.871000px;}
.wsc{word-spacing:6.042000px;}
.ws37{word-spacing:6.213000px;}
.ws5f{word-spacing:6.270000px;}
.ws6f{word-spacing:6.327000px;}
.ws75{word-spacing:6.384000px;}
.ws35{word-spacing:6.441000px;}
.ws8d{word-spacing:6.669000px;}
.ws2f{word-spacing:6.840000px;}
.wsb3{word-spacing:6.864000px;}
.ws1b{word-spacing:7.125000px;}
.wsa4{word-spacing:7.344000px;}
.ws92{word-spacing:7.410000px;}
.ws44{word-spacing:7.581000px;}
.ws96{word-spacing:7.584000px;}
.ws36{word-spacing:7.638000px;}
.wsb2{word-spacing:7.776000px;}
.ws2d{word-spacing:7.866000px;}
.ws8{word-spacing:7.980000px;}
.ws60{word-spacing:8.151000px;}
.ws76{word-spacing:8.493000px;}
.wsa9{word-spacing:8.784000px;}
.ws5e{word-spacing:9.063000px;}
.wsad{word-spacing:9.744000px;}
.ws8f{word-spacing:9.804000px;}
.ws7a{word-spacing:9.918000px;}
.wsb{word-spacing:10.887000px;}
.ws3a{word-spacing:11.058000px;}
.ws32{word-spacing:11.229000px;}
.wsa{word-spacing:11.400000px;}
.wsb0{word-spacing:11.520000px;}
.wsce{word-spacing:12.480000px;}
.wsae{word-spacing:15.840000px;}
.ws50{word-spacing:18.660000px;}
.ws11{word-spacing:19.668000px;}
.wsb8{word-spacing:26.256000px;}
.wsc3{word-spacing:27.072000px;}
.ws2{word-spacing:44.754910px;}
.wsc4{word-spacing:45.936000px;}
._1e{margin-left:-66.351585px;}
._1c{margin-left:-33.534563px;}
._16{margin-left:-16.238993px;}
._18{margin-left:-14.976981px;}
._10{margin-left:-13.810744px;}
._15{margin-left:-12.436565px;}
._e{margin-left:-10.430111px;}
._17{margin-left:-9.404169px;}
._1a{margin-left:-8.352597px;}
._4{margin-left:-7.089880px;}
._f{margin-left:-5.862000px;}
._8{margin-left:-4.765199px;}
._3{margin-left:-3.152100px;}
._0{margin-left:-1.257600px;}
._1{width:1.019673px;}
._5{width:2.753100px;}
._2{width:4.708200px;}
._b{width:6.441000px;}
._6{width:7.609500px;}
._7{width:9.074400px;}
._9{width:10.573500px;}
._c{width:11.650799px;}
._d{width:13.144201px;}
._a{width:16.641612px;}
._12{width:18.660000px;}
._11{width:19.668000px;}
._13{width:20.700000px;}
._14{width:22.500000px;}
._1d{width:24.038399px;}
._19{width:25.597189px;}
._1b{width:27.062399px;}
._1f{width:56.255995px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:33.600000px;}
.fs8{font-size:39.900000px;}
.fsc{font-size:41.245199px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fsb{font-size:59.393400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs9{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y72{bottom:2.760223px;}
.y41{bottom:33.647400px;}
.y6f{bottom:36.141749px;}
.y5{bottom:66.525004px;}
.y74{bottom:76.535402px;}
.ybb{bottom:78.425102px;}
.y24{bottom:78.661348px;}
.y73{bottom:90.410402px;}
.y6e{bottom:90.425102px;}
.yf7{bottom:90.848402px;}
.yba{bottom:92.300102px;}
.y4{bottom:97.125005px;}
.yf6{bottom:104.723396px;}
.yb9{bottom:106.175102px;}
.y6d{bottom:108.425102px;}
.yf5{bottom:118.598396px;}
.yb8{bottom:120.050102px;}
.y6c{bottom:126.425102px;}
.yf4{bottom:132.473396px;}
.yb7{bottom:133.925102px;}
.y21{bottom:139.264499px;}
.y82{bottom:141.427952px;}
.y6b{bottom:144.425102px;}
.yf3{bottom:146.348396px;}
.yb6{bottom:147.800102px;}
.y81{bottom:155.302952px;}
.yf2{bottom:160.223396px;}
.yb5{bottom:161.675102px;}
.y6a{bottom:162.425102px;}
.y80{bottom:169.177952px;}
.yf1{bottom:174.098396px;}
.yb4{bottom:175.550102px;}
.y69{bottom:180.425102px;}
.y7f{bottom:183.052952px;}
.yf0{bottom:187.973396px;}
.yb3{bottom:189.425102px;}
.y7e{bottom:196.927940px;}
.y18{bottom:196.933500px;}
.y68{bottom:198.425102px;}
.yef{bottom:201.848396px;}
.yb2{bottom:203.300102px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y7d{bottom:210.802940px;}
.yee{bottom:215.723396px;}
.y67{bottom:216.425102px;}
.yb1{bottom:217.175102px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y7c{bottom:224.677940px;}
.yed{bottom:229.598396px;}
.yb0{bottom:231.050102px;}
.y66{bottom:234.425102px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y7b{bottom:238.552940px;}
.yec{bottom:243.473396px;}
.yaf{bottom:244.925102px;}
.y65{bottom:252.425102px;}
.yeb{bottom:257.348396px;}
.yae{bottom:258.800102px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y40{bottom:261.355797px;}
.y64{bottom:270.425102px;}
.y7a{bottom:270.426590px;}
.yea{bottom:271.223396px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yad{bottom:272.675102px;}
.ye9{bottom:285.098396px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yac{bottom:286.550102px;}
.y63{bottom:288.425102px;}
.y3f{bottom:296.605797px;}
.ye8{bottom:298.973396px;}
.yab{bottom:300.425102px;}
.y79{bottom:302.300102px;}
.y62{bottom:306.425102px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ye7{bottom:312.848396px;}
.y3e{bottom:313.855797px;}
.yaa{bottom:314.300102px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y61{bottom:324.425102px;}
.ye6{bottom:326.723396px;}
.ya9{bottom:328.175102px;}
.y78{bottom:336.800102px;}
.ye5{bottom:340.598396px;}
.ya8{bottom:342.050102px;}
.y60{bottom:342.425102px;}
.yf{bottom:348.133500px;}
.y3d{bottom:349.105797px;}
.ye4{bottom:354.473396px;}
.ya7{bottom:355.925102px;}
.y5f{bottom:360.425102px;}
.y3c{bottom:366.355797px;}
.ye3{bottom:368.348396px;}
.y77{bottom:368.675102px;}
.ya6{bottom:369.800102px;}
.y5e{bottom:378.425102px;}
.ye2{bottom:382.223396px;}
.y76{bottom:382.550102px;}
.y3b{bottom:383.605797px;}
.ya5{bottom:383.675102px;}
.ye{bottom:386.785499px;}
.ye1{bottom:396.098419px;}
.y5d{bottom:396.425079px;}
.ya4{bottom:397.550079px;}
.y3a{bottom:400.855820px;}
.yd{bottom:408.044999px;}
.ye0{bottom:409.973419px;}
.ya3{bottom:411.425079px;}
.y5c{bottom:414.425079px;}
.y39{bottom:418.105820px;}
.y106{bottom:420.542084px;}
.ydf{bottom:423.848419px;}
.ya2{bottom:425.300079px;}
.y5b{bottom:432.425079px;}
.y38{bottom:435.355820px;}
.yde{bottom:437.723419px;}
.ya1{bottom:439.175079px;}
.y105{bottom:439.217102px;}
.y5a{bottom:450.425079px;}
.ydd{bottom:451.598419px;}
.y37{bottom:452.605820px;}
.ya0{bottom:453.050079px;}
.y104{bottom:455.792084px;}
.ydc{bottom:465.473419px;}
.y9f{bottom:466.925079px;}
.y59{bottom:468.425079px;}
.y36{bottom:469.855820px;}
.y103{bottom:474.467102px;}
.y75{bottom:477.530685px;}
.ydb{bottom:479.348419px;}
.y9e{bottom:480.800079px;}
.y58{bottom:486.425079px;}
.y35{bottom:487.105820px;}
.y102{bottom:491.042084px;}
.yda{bottom:493.223419px;}
.y9d{bottom:494.675079px;}
.yc{bottom:502.864502px;}
.y34{bottom:504.355820px;}
.y57{bottom:504.425079px;}
.yd9{bottom:507.098419px;}
.y9c{bottom:508.550079px;}
.y101{bottom:509.717102px;}
.yb{bottom:520.864502px;}
.yd8{bottom:520.973419px;}
.y33{bottom:521.605820px;}
.y56{bottom:522.425079px;}
.y100{bottom:526.292084px;}
.yd7{bottom:534.848419px;}
.y9b{bottom:536.300079px;}
.y32{bottom:538.855820px;}
.ya{bottom:538.864499px;}
.y55{bottom:540.425079px;}
.yff{bottom:544.967102px;}
.yd6{bottom:548.723419px;}
.y9a{bottom:550.175079px;}
.y31{bottom:556.105820px;}
.y9{bottom:556.864499px;}
.y54{bottom:558.425079px;}
.yfe{bottom:561.542084px;}
.yd5{bottom:562.598419px;}
.y99{bottom:564.050079px;}
.y30{bottom:573.355820px;}
.y53{bottom:576.425079px;}
.yd4{bottom:576.473419px;}
.y98{bottom:577.925079px;}
.yfd{bottom:580.217102px;}
.yd3{bottom:590.348419px;}
.y2f{bottom:590.605820px;}
.y97{bottom:591.800079px;}
.y52{bottom:594.425079px;}
.yfc{bottom:604.174072px;}
.yd2{bottom:604.223419px;}
.y96{bottom:605.675079px;}
.y2e{bottom:607.855820px;}
.y51{bottom:612.425079px;}
.yfb{bottom:618.049072px;}
.yd1{bottom:618.098419px;}
.y95{bottom:619.550079px;}
.y2d{bottom:625.105820px;}
.y50{bottom:630.425079px;}
.yd0{bottom:631.973419px;}
.y94{bottom:633.425079px;}
.yfa{bottom:639.424072px;}
.y2c{bottom:642.355820px;}
.y8{bottom:645.510000px;}
.ycf{bottom:645.848419px;}
.y93{bottom:647.300079px;}
.y4f{bottom:648.425079px;}
.yf9{bottom:653.299072px;}
.y2b{bottom:659.605820px;}
.yce{bottom:659.723419px;}
.y92{bottom:661.175079px;}
.y4e{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.ycd{bottom:673.598419px;}
.y91{bottom:675.050079px;}
.y2a{bottom:676.855820px;}
.y4d{bottom:684.425079px;}
.yf8{bottom:685.925079px;}
.ycc{bottom:687.473419px;}
.y90{bottom:688.925079px;}
.ycb{bottom:701.348419px;}
.y4c{bottom:702.425079px;}
.y8f{bottom:702.800079px;}
.yca{bottom:715.223419px;}
.y8e{bottom:716.675079px;}
.y4b{bottom:720.425079px;}
.y23{bottom:725.471420px;}
.y6{bottom:726.298500px;}
.yc9{bottom:729.098419px;}
.y8d{bottom:730.550079px;}
.y4a{bottom:738.425079px;}
.y22{bottom:739.346420px;}
.yc8{bottom:742.973419px;}
.y8c{bottom:744.425079px;}
.y3{bottom:752.599495px;}
.y49{bottom:756.425079px;}
.yc7{bottom:756.848419px;}
.y8b{bottom:758.300079px;}
.yc6{bottom:770.723419px;}
.y8a{bottom:772.175079px;}
.y48{bottom:774.425079px;}
.y27{bottom:781.987244px;}
.yc5{bottom:784.598419px;}
.y89{bottom:786.050079px;}
.y47{bottom:792.425079px;}
.yc4{bottom:798.473419px;}
.y88{bottom:799.925079px;}
.y46{bottom:810.425079px;}
.yc3{bottom:812.348419px;}
.y87{bottom:813.800079px;}
.y26{bottom:823.686035px;}
.y71{bottom:824.553040px;}
.yc2{bottom:826.223419px;}
.y86{bottom:827.675079px;}
.y45{bottom:828.425079px;}
.yc1{bottom:840.098419px;}
.y85{bottom:841.550079px;}
.y25{bottom:846.186035px;}
.y44{bottom:846.425079px;}
.yc0{bottom:853.973419px;}
.y84{bottom:855.425079px;}
.y43{bottom:864.425079px;}
.ybf{bottom:867.848419px;}
.y83{bottom:869.300079px;}
.y2{bottom:879.369000px;}
.ybe{bottom:881.723419px;}
.y70{bottom:882.425079px;}
.ybd{bottom:895.598419px;}
.y42{bottom:900.425079px;}
.ybc{bottom:909.473419px;}
.y29{bottom:925.313965px;}
.y28{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h17{height:15.525000px;}
.h21{height:24.117187px;}
.h7{height:32.130000px;}
.h1e{height:33.328125px;}
.h1a{height:33.351562px;}
.hb{height:34.453125px;}
.h20{height:34.687500px;}
.h11{height:39.604980px;}
.hf{height:40.913086px;}
.ha{height:45.456000px;}
.h6{height:45.900000px;}
.h1c{height:46.224000px;}
.h1d{height:47.472000px;}
.h3{height:48.195000px;}
.h19{height:48.480000px;}
.h18{height:48.956134px;}
.h1b{height:51.679688px;}
.h12{height:54.891000px;}
.h2{height:55.080000px;}
.he{height:56.373000px;}
.h10{height:57.570000px;}
.h16{height:58.800000px;}
.hd{height:61.582727px;}
.h1f{height:61.582910px;}
.h14{height:65.274000px;}
.h15{height:66.660000px;}
.h13{height:72.000000px;}
.hc{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:65.548502px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:70.583702px;}
.xd{left:83.745449px;}
.x8{left:87.059097px;}
.xe{left:91.417350px;}
.xc{left:95.669249px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xa{left:326.761505px;}
.xb{left:392.312119px;}
.x3{left:454.959000px;}
.x7{left:472.766418px;}
.x6{left:527.540680px;}
.x9{left:564.604340px;}
@media print{
.v7{vertical-align:-17.066732pt;}
.v2{vertical-align:-12.666667pt;}
.v3{vertical-align:-8.096028pt;}
.v6{vertical-align:-4.266683pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.096028pt;}
.v1{vertical-align:20.266602pt;}
.v5{vertical-align:27.232096pt;}
.ls1{letter-spacing:-4.181333pt;}
.lsb{letter-spacing:-3.157333pt;}
.ls6{letter-spacing:-0.263971pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000024pt;}
.ls8{letter-spacing:0.000032pt;}
.lsd{letter-spacing:0.000059pt;}
.lsc{letter-spacing:0.000072pt;}
.lsa{letter-spacing:0.000079pt;}
.ls2{letter-spacing:0.000081pt;}
.ls5{letter-spacing:0.219974pt;}
.ls4{letter-spacing:0.372262pt;}
.ls3{letter-spacing:1.943587pt;}
.ls7{letter-spacing:3.537207pt;}
.lse{letter-spacing:27.291724pt;}
.ws5{word-spacing:-12.666667pt;}
.ws97{word-spacing:-11.850667pt;}
.ws8b{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws8a{word-spacing:-10.080000pt;}
.wsf{word-spacing:-8.866667pt;}
.ws3{word-spacing:-8.362667pt;}
.ws89{word-spacing:-8.192000pt;}
.ws98{word-spacing:-7.509333pt;}
.wsd2{word-spacing:-7.466667pt;}
.ws4c{word-spacing:-7.245333pt;}
.ws7{word-spacing:-6.333333pt;}
.wsa8{word-spacing:-5.333333pt;}
.wscd{word-spacing:-4.821333pt;}
.ws56{word-spacing:-3.590001pt;}
.ws40{word-spacing:-3.413333pt;}
.ws16{word-spacing:-2.482667pt;}
.ws1e{word-spacing:-2.432000pt;}
.ws47{word-spacing:-2.381333pt;}
.wsbf{word-spacing:-2.346667pt;}
.ws68{word-spacing:-2.128000pt;}
.ws86{word-spacing:-2.077333pt;}
.ws2c{word-spacing:-2.026667pt;}
.wsb9{word-spacing:-2.005333pt;}
.ws85{word-spacing:-1.976000pt;}
.wsd0{word-spacing:-1.834667pt;}
.ws2e{word-spacing:-1.824000pt;}
.ws7c{word-spacing:-1.773333pt;}
.ws67{word-spacing:-1.722667pt;}
.ws22{word-spacing:-1.672000pt;}
.wsa0{word-spacing:-1.578667pt;}
.ws65{word-spacing:-1.570667pt;}
.ws72{word-spacing:-1.368000pt;}
.ws3c{word-spacing:-1.317333pt;}
.ws7e{word-spacing:-1.216000pt;}
.wscf{word-spacing:-1.194667pt;}
.ws33{word-spacing:-1.114667pt;}
.wsbd{word-spacing:-1.066667pt;}
.ws43{word-spacing:-1.064000pt;}
.wsbc{word-spacing:-1.024000pt;}
.ws9e{word-spacing:-0.938667pt;}
.wsa1{word-spacing:-0.896000pt;}
.ws64{word-spacing:-0.861333pt;}
.wsd4{word-spacing:-0.853333pt;}
.wsc5{word-spacing:-0.810667pt;}
.wsb4{word-spacing:-0.768000pt;}
.ws9f{word-spacing:-0.725333pt;}
.ws88{word-spacing:-0.557333pt;}
.ws79{word-spacing:-0.506667pt;}
.wsc1{word-spacing:-0.469333pt;}
.ws3b{word-spacing:-0.405333pt;}
.ws1c{word-spacing:-0.354667pt;}
.ws83{word-spacing:-0.304000pt;}
.ws8e{word-spacing:-0.253333pt;}
.wscc{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.202667pt;}
.ws80{word-spacing:-0.152000pt;}
.wsd1{word-spacing:-0.128000pt;}
.ws99{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws70{word-spacing:0.050667pt;}
.wsd5{word-spacing:0.085333pt;}
.ws6a{word-spacing:0.101333pt;}
.ws5a{word-spacing:0.152000pt;}
.ws81{word-spacing:0.202667pt;}
.ws69{word-spacing:0.213333pt;}
.ws49{word-spacing:0.253333pt;}
.ws58{word-spacing:0.263971pt;}
.ws6e{word-spacing:0.304000pt;}
.ws4d{word-spacing:0.354667pt;}
.ws5c{word-spacing:0.405333pt;}
.ws9d{word-spacing:0.469333pt;}
.ws78{word-spacing:0.506667pt;}
.ws87{word-spacing:0.557333pt;}
.wsac{word-spacing:0.597333pt;}
.ws82{word-spacing:0.608000pt;}
.ws3d{word-spacing:0.658667pt;}
.ws28{word-spacing:0.709333pt;}
.ws9b{word-spacing:0.725333pt;}
.ws7f{word-spacing:0.810667pt;}
.ws17{word-spacing:0.861333pt;}
.wsb7{word-spacing:0.896000pt;}
.ws7b{word-spacing:0.912000pt;}
.ws9c{word-spacing:0.938667pt;}
.ws5b{word-spacing:0.962667pt;}
.ws4a{word-spacing:1.013333pt;}
.ws1d{word-spacing:1.064000pt;}
.wsa6{word-spacing:1.066667pt;}
.ws24{word-spacing:1.114667pt;}
.ws66{word-spacing:1.165333pt;}
.wsb5{word-spacing:1.280000pt;}
.wsab{word-spacing:1.365333pt;}
.ws6d{word-spacing:1.368000pt;}
.ws63{word-spacing:1.418667pt;}
.wsc2{word-spacing:1.450667pt;}
.ws3f{word-spacing:1.469333pt;}
.ws9a{word-spacing:1.493333pt;}
.ws77{word-spacing:1.520000pt;}
.ws13{word-spacing:1.570667pt;}
.wsd3{word-spacing:1.664000pt;}
.wsbe{word-spacing:1.706667pt;}
.ws4b{word-spacing:1.722667pt;}
.ws5d{word-spacing:1.773333pt;}
.ws12{word-spacing:1.824000pt;}
.ws8c{word-spacing:1.874667pt;}
.ws6{word-spacing:1.925333pt;}
.wsa5{word-spacing:1.962667pt;}
.ws71{word-spacing:2.026667pt;}
.wsa3{word-spacing:2.048000pt;}
.ws41{word-spacing:2.077333pt;}
.ws3e{word-spacing:2.128000pt;}
.ws21{word-spacing:2.178667pt;}
.ws46{word-spacing:2.280000pt;}
.wsca{word-spacing:2.346667pt;}
.ws6c{word-spacing:2.432000pt;}
.wsb6{word-spacing:2.474667pt;}
.ws10{word-spacing:2.517333pt;}
.ws73{word-spacing:2.533333pt;}
.wscb{word-spacing:2.560000pt;}
.ws61{word-spacing:2.584000pt;}
.ws62{word-spacing:2.634667pt;}
.wsba{word-spacing:2.645333pt;}
.ws74{word-spacing:2.685333pt;}
.wsc7{word-spacing:2.730667pt;}
.ws18{word-spacing:2.736000pt;}
.ws57{word-spacing:2.786667pt;}
.ws95{word-spacing:2.816000pt;}
.wsaf{word-spacing:2.858667pt;}
.ws31{word-spacing:2.888000pt;}
.wse{word-spacing:2.938667pt;}
.wsc0{word-spacing:2.986667pt;}
.ws14{word-spacing:2.989333pt;}
.ws55{word-spacing:3.040000pt;}
.ws34{word-spacing:3.090667pt;}
.ws48{word-spacing:3.141333pt;}
.ws90{word-spacing:3.192000pt;}
.ws39{word-spacing:3.242667pt;}
.wsbb{word-spacing:3.285333pt;}
.ws19{word-spacing:3.293333pt;}
.wsc6{word-spacing:3.328000pt;}
.ws84{word-spacing:3.344000pt;}
.ws27{word-spacing:3.445333pt;}
.wsc9{word-spacing:3.456000pt;}
.ws30{word-spacing:3.496000pt;}
.wsaa{word-spacing:3.541333pt;}
.wsb1{word-spacing:3.584000pt;}
.ws2b{word-spacing:3.597333pt;}
.ws38{word-spacing:3.648000pt;}
.ws7d{word-spacing:3.698667pt;}
.ws1f{word-spacing:3.749333pt;}
.wsd{word-spacing:3.800000pt;}
.ws42{word-spacing:3.901333pt;}
.ws1a{word-spacing:3.952000pt;}
.ws29{word-spacing:4.002667pt;}
.ws9{word-spacing:4.053333pt;}
.wsa7{word-spacing:4.096000pt;}
.ws45{word-spacing:4.104000pt;}
.ws25{word-spacing:4.181333pt;}
.ws52{word-spacing:4.205333pt;}
.wsa2{word-spacing:4.394667pt;}
.ws53{word-spacing:4.408000pt;}
.ws94{word-spacing:4.437333pt;}
.ws23{word-spacing:4.458667pt;}
.ws15{word-spacing:4.509333pt;}
.ws51{word-spacing:4.560000pt;}
.ws54{word-spacing:4.610667pt;}
.ws2a{word-spacing:4.661333pt;}
.ws91{word-spacing:4.712000pt;}
.ws26{word-spacing:4.762667pt;}
.ws4e{word-spacing:4.965333pt;}
.ws59{word-spacing:5.016000pt;}
.ws6b{word-spacing:5.066667pt;}
.wsc8{word-spacing:5.077333pt;}
.ws4f{word-spacing:5.117333pt;}
.ws93{word-spacing:5.218667pt;}
.wsc{word-spacing:5.370667pt;}
.ws37{word-spacing:5.522667pt;}
.ws5f{word-spacing:5.573333pt;}
.ws6f{word-spacing:5.624000pt;}
.ws75{word-spacing:5.674667pt;}
.ws35{word-spacing:5.725333pt;}
.ws8d{word-spacing:5.928000pt;}
.ws2f{word-spacing:6.080000pt;}
.wsb3{word-spacing:6.101333pt;}
.ws1b{word-spacing:6.333333pt;}
.wsa4{word-spacing:6.528000pt;}
.ws92{word-spacing:6.586667pt;}
.ws44{word-spacing:6.738667pt;}
.ws96{word-spacing:6.741333pt;}
.ws36{word-spacing:6.789333pt;}
.wsb2{word-spacing:6.912000pt;}
.ws2d{word-spacing:6.992000pt;}
.ws8{word-spacing:7.093333pt;}
.ws60{word-spacing:7.245333pt;}
.ws76{word-spacing:7.549333pt;}
.wsa9{word-spacing:7.808000pt;}
.ws5e{word-spacing:8.056000pt;}
.wsad{word-spacing:8.661333pt;}
.ws8f{word-spacing:8.714667pt;}
.ws7a{word-spacing:8.816000pt;}
.wsb{word-spacing:9.677333pt;}
.ws3a{word-spacing:9.829333pt;}
.ws32{word-spacing:9.981333pt;}
.wsa{word-spacing:10.133333pt;}
.wsb0{word-spacing:10.240000pt;}
.wsce{word-spacing:11.093333pt;}
.wsae{word-spacing:14.080000pt;}
.ws50{word-spacing:16.586667pt;}
.ws11{word-spacing:17.482667pt;}
.wsb8{word-spacing:23.338667pt;}
.wsc3{word-spacing:24.064000pt;}
.ws2{word-spacing:39.782143pt;}
.wsc4{word-spacing:40.832000pt;}
._1e{margin-left:-58.979187pt;}
._1c{margin-left:-29.808500pt;}
._16{margin-left:-14.434661pt;}
._18{margin-left:-13.312872pt;}
._10{margin-left:-12.276217pt;}
._15{margin-left:-11.054724pt;}
._e{margin-left:-9.271210pt;}
._17{margin-left:-8.359262pt;}
._1a{margin-left:-7.424530pt;}
._4{margin-left:-6.302116pt;}
._f{margin-left:-5.210667pt;}
._8{margin-left:-4.235733pt;}
._3{margin-left:-2.801866pt;}
._0{margin-left:-1.117867pt;}
._1{width:0.906376pt;}
._5{width:2.447200pt;}
._2{width:4.185067pt;}
._b{width:5.725333pt;}
._6{width:6.764000pt;}
._7{width:8.066133pt;}
._9{width:9.398667pt;}
._c{width:10.356266pt;}
._d{width:11.683734pt;}
._a{width:14.792544pt;}
._12{width:16.586667pt;}
._11{width:17.482667pt;}
._13{width:18.400000pt;}
._14{width:20.000000pt;}
._1d{width:21.367466pt;}
._19{width:22.753057pt;}
._1b{width:24.055466pt;}
._1f{width:50.005329pt;}
.fsd{font-size:29.866667pt;}
.fs8{font-size:35.466667pt;}
.fsc{font-size:36.662399pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fsb{font-size:52.794133pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs9{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:2.453532pt;}
.y41{bottom:29.908800pt;}
.y6f{bottom:32.125999pt;}
.y5{bottom:59.133337pt;}
.y74{bottom:68.031469pt;}
.ybb{bottom:69.711202pt;}
.y24{bottom:69.921199pt;}
.y73{bottom:80.364802pt;}
.y6e{bottom:80.377869pt;}
.yf7{bottom:80.754135pt;}
.yba{bottom:82.044535pt;}
.y4{bottom:86.333337pt;}
.yf6{bottom:93.087463pt;}
.yb9{bottom:94.377869pt;}
.y6d{bottom:96.377869pt;}
.yf5{bottom:105.420797pt;}
.yb8{bottom:106.711202pt;}
.y6c{bottom:112.377869pt;}
.yf4{bottom:117.754130pt;}
.yb7{bottom:119.044535pt;}
.y21{bottom:123.790666pt;}
.y82{bottom:125.713735pt;}
.y6b{bottom:128.377869pt;}
.yf3{bottom:130.087463pt;}
.yb6{bottom:131.377869pt;}
.y81{bottom:138.047068pt;}
.yf2{bottom:142.420797pt;}
.yb5{bottom:143.711202pt;}
.y6a{bottom:144.377869pt;}
.y80{bottom:150.380402pt;}
.yf1{bottom:154.754130pt;}
.yb4{bottom:156.044535pt;}
.y69{bottom:160.377869pt;}
.y7f{bottom:162.713735pt;}
.yf0{bottom:167.087463pt;}
.yb3{bottom:168.377869pt;}
.y7e{bottom:175.047058pt;}
.y18{bottom:175.052000pt;}
.y68{bottom:176.377869pt;}
.yef{bottom:179.420797pt;}
.yb2{bottom:180.711202pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y7d{bottom:187.380391pt;}
.yee{bottom:191.754130pt;}
.y67{bottom:192.377869pt;}
.yb1{bottom:193.044535pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y7c{bottom:199.713725pt;}
.yed{bottom:204.087463pt;}
.yb0{bottom:205.377869pt;}
.y66{bottom:208.377869pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y7b{bottom:212.047058pt;}
.yec{bottom:216.420797pt;}
.yaf{bottom:217.711202pt;}
.y65{bottom:224.377869pt;}
.yeb{bottom:228.754130pt;}
.yae{bottom:230.044535pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y40{bottom:232.316264pt;}
.y64{bottom:240.377869pt;}
.y7a{bottom:240.379191pt;}
.yea{bottom:241.087463pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yad{bottom:242.377869pt;}
.ye9{bottom:253.420797pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yac{bottom:254.711202pt;}
.y63{bottom:256.377869pt;}
.y3f{bottom:263.649597pt;}
.ye8{bottom:265.754130pt;}
.yab{bottom:267.044535pt;}
.y79{bottom:268.711202pt;}
.y62{bottom:272.377869pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ye7{bottom:278.087463pt;}
.y3e{bottom:278.982931pt;}
.yaa{bottom:279.377869pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y61{bottom:288.377869pt;}
.ye6{bottom:290.420797pt;}
.ya9{bottom:291.711202pt;}
.y78{bottom:299.377869pt;}
.ye5{bottom:302.754130pt;}
.ya8{bottom:304.044535pt;}
.y60{bottom:304.377869pt;}
.yf{bottom:309.452000pt;}
.y3d{bottom:310.316264pt;}
.ye4{bottom:315.087463pt;}
.ya7{bottom:316.377869pt;}
.y5f{bottom:320.377869pt;}
.y3c{bottom:325.649597pt;}
.ye3{bottom:327.420797pt;}
.y77{bottom:327.711202pt;}
.ya6{bottom:328.711202pt;}
.y5e{bottom:336.377869pt;}
.ye2{bottom:339.754130pt;}
.y76{bottom:340.044535pt;}
.y3b{bottom:340.982931pt;}
.ya5{bottom:341.044535pt;}
.ye{bottom:343.809333pt;}
.ye1{bottom:352.087484pt;}
.y5d{bottom:352.377848pt;}
.ya4{bottom:353.377848pt;}
.y3a{bottom:356.316284pt;}
.yd{bottom:362.706666pt;}
.ye0{bottom:364.420817pt;}
.ya3{bottom:365.711182pt;}
.y5c{bottom:368.377848pt;}
.y39{bottom:371.649618pt;}
.y106{bottom:373.815186pt;}
.ydf{bottom:376.754150pt;}
.ya2{bottom:378.044515pt;}
.y5b{bottom:384.377848pt;}
.y38{bottom:386.982951pt;}
.yde{bottom:389.087484pt;}
.ya1{bottom:390.377848pt;}
.y105{bottom:390.415202pt;}
.y5a{bottom:400.377848pt;}
.ydd{bottom:401.420817pt;}
.y37{bottom:402.316284pt;}
.ya0{bottom:402.711182pt;}
.y104{bottom:405.148519pt;}
.ydc{bottom:413.754150pt;}
.y9f{bottom:415.044515pt;}
.y59{bottom:416.377848pt;}
.y36{bottom:417.649618pt;}
.y103{bottom:421.748535pt;}
.y75{bottom:424.471720pt;}
.ydb{bottom:426.087484pt;}
.y9e{bottom:427.377848pt;}
.y58{bottom:432.377848pt;}
.y35{bottom:432.982951pt;}
.y102{bottom:436.481852pt;}
.yda{bottom:438.420817pt;}
.y9d{bottom:439.711182pt;}
.yc{bottom:446.990669pt;}
.y34{bottom:448.316284pt;}
.y57{bottom:448.377848pt;}
.yd9{bottom:450.754150pt;}
.y9c{bottom:452.044515pt;}
.y101{bottom:453.081868pt;}
.yb{bottom:462.990669pt;}
.yd8{bottom:463.087484pt;}
.y33{bottom:463.649618pt;}
.y56{bottom:464.377848pt;}
.y100{bottom:467.815186pt;}
.yd7{bottom:475.420817pt;}
.y9b{bottom:476.711182pt;}
.y32{bottom:478.982951pt;}
.ya{bottom:478.990666pt;}
.y55{bottom:480.377848pt;}
.yff{bottom:484.415202pt;}
.yd6{bottom:487.754150pt;}
.y9a{bottom:489.044515pt;}
.y31{bottom:494.316284pt;}
.y9{bottom:494.990666pt;}
.y54{bottom:496.377848pt;}
.yfe{bottom:499.148519pt;}
.yd5{bottom:500.087484pt;}
.y99{bottom:501.377848pt;}
.y30{bottom:509.649618pt;}
.y53{bottom:512.377848pt;}
.yd4{bottom:512.420817pt;}
.y98{bottom:513.711182pt;}
.yfd{bottom:515.748535pt;}
.yd3{bottom:524.754150pt;}
.y2f{bottom:524.982951pt;}
.y97{bottom:526.044515pt;}
.y52{bottom:528.377848pt;}
.yfc{bottom:537.043620pt;}
.yd2{bottom:537.087484pt;}
.y96{bottom:538.377848pt;}
.y2e{bottom:540.316284pt;}
.y51{bottom:544.377848pt;}
.yfb{bottom:549.376953pt;}
.yd1{bottom:549.420817pt;}
.y95{bottom:550.711182pt;}
.y2d{bottom:555.649618pt;}
.y50{bottom:560.377848pt;}
.yd0{bottom:561.754150pt;}
.y94{bottom:563.044515pt;}
.yfa{bottom:568.376953pt;}
.y2c{bottom:570.982951pt;}
.y8{bottom:573.786667pt;}
.ycf{bottom:574.087484pt;}
.y93{bottom:575.377848pt;}
.y4f{bottom:576.377848pt;}
.yf9{bottom:580.710286pt;}
.y2b{bottom:586.316284pt;}
.yce{bottom:586.420817pt;}
.y92{bottom:587.711182pt;}
.y4e{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.ycd{bottom:598.754150pt;}
.y91{bottom:600.044515pt;}
.y2a{bottom:601.649618pt;}
.y4d{bottom:608.377848pt;}
.yf8{bottom:609.711182pt;}
.ycc{bottom:611.087484pt;}
.y90{bottom:612.377848pt;}
.ycb{bottom:623.420817pt;}
.y4c{bottom:624.377848pt;}
.y8f{bottom:624.711182pt;}
.yca{bottom:635.754150pt;}
.y8e{bottom:637.044515pt;}
.y4b{bottom:640.377848pt;}
.y23{bottom:644.863485pt;}
.y6{bottom:645.598667pt;}
.yc9{bottom:648.087484pt;}
.y8d{bottom:649.377848pt;}
.y4a{bottom:656.377848pt;}
.y22{bottom:657.196818pt;}
.yc8{bottom:660.420817pt;}
.y8c{bottom:661.711182pt;}
.y3{bottom:668.977329pt;}
.y49{bottom:672.377848pt;}
.yc7{bottom:672.754150pt;}
.y8b{bottom:674.044515pt;}
.yc6{bottom:685.087484pt;}
.y8a{bottom:686.377848pt;}
.y48{bottom:688.377848pt;}
.y27{bottom:695.099772pt;}
.yc5{bottom:697.420817pt;}
.y89{bottom:698.711182pt;}
.y47{bottom:704.377848pt;}
.yc4{bottom:709.754150pt;}
.y88{bottom:711.044515pt;}
.y46{bottom:720.377848pt;}
.yc3{bottom:722.087484pt;}
.y87{bottom:723.377848pt;}
.y26{bottom:732.165365pt;}
.y71{bottom:732.936035pt;}
.yc2{bottom:734.420817pt;}
.y86{bottom:735.711182pt;}
.y45{bottom:736.377848pt;}
.yc1{bottom:746.754150pt;}
.y85{bottom:748.044515pt;}
.y25{bottom:752.165365pt;}
.y44{bottom:752.377848pt;}
.yc0{bottom:759.087484pt;}
.y84{bottom:760.377848pt;}
.y43{bottom:768.377848pt;}
.ybf{bottom:771.420817pt;}
.y83{bottom:772.711182pt;}
.y2{bottom:781.661334pt;}
.ybe{bottom:783.754150pt;}
.y70{bottom:784.377848pt;}
.ybd{bottom:796.087484pt;}
.y42{bottom:800.377848pt;}
.ybc{bottom:808.420817pt;}
.y29{bottom:822.501302pt;}
.y28{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h17{height:13.800000pt;}
.h21{height:21.437500pt;}
.h7{height:28.560000pt;}
.h1e{height:29.625000pt;}
.h1a{height:29.645833pt;}
.hb{height:30.625000pt;}
.h20{height:30.833333pt;}
.h11{height:35.204427pt;}
.hf{height:36.367188pt;}
.ha{height:40.405333pt;}
.h6{height:40.800000pt;}
.h1c{height:41.088000pt;}
.h1d{height:42.197333pt;}
.h3{height:42.840000pt;}
.h19{height:43.093333pt;}
.h18{height:43.516563pt;}
.h1b{height:45.937500pt;}
.h12{height:48.792000pt;}
.h2{height:48.960000pt;}
.he{height:50.109333pt;}
.h10{height:51.173333pt;}
.h16{height:52.266667pt;}
.hd{height:54.740202pt;}
.h1f{height:54.740364pt;}
.h14{height:58.021333pt;}
.h15{height:59.253333pt;}
.h13{height:64.000000pt;}
.hc{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:58.265335pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:62.741069pt;}
.xd{left:74.440399pt;}
.x8{left:77.385864pt;}
.xe{left:81.259867pt;}
.xc{left:85.039332pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xa{left:290.454671pt;}
.xb{left:348.721883pt;}
.x3{left:404.408000pt;}
.x7{left:420.236816pt;}
.x6{left:468.925049pt;}
.x9{left:501.870524pt;}
}




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