
    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_a68555f358f8dd81a2902eee.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111816;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_68366fca9ebac00edfc3cc5a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_6c5cbbe3a117e98b9553f47a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_54e5e08636df9b4ab5957187.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_a5d73307326cb1ef760f69df.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_9a66442c32f9ccf22b65718f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_7257a0a68c921bc70d33afe8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080000;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_c63f09a4594f1ec6bda8a36d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.925000;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_21a53e85725a78b40c1da54c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_789df34d92664fc37076c8a5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-29.376000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.611400px;}
.ls8{letter-spacing:-3.654720px;}
.ls25{letter-spacing:-3.132000px;}
.lsd{letter-spacing:-0.360720px;}
.ls13{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.316800px;}
.ls4{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.270000px;}
.ls2b{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.240480px;}
.ls1a{letter-spacing:-0.237600px;}
.ls14{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.208800px;}
.ls29{letter-spacing:-0.192240px;}
.ls5{letter-spacing:-0.191520px;}
.ls30{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.174240px;}
.ls1e{letter-spacing:-0.167040px;}
.ls12{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.155520px;}
.ls15{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.132480px;}
.ls1d{letter-spacing:-0.120240px;}
.lsf{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.084240px;}
.ls23{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.045360px;}
.ls3{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.021600px;}
.ls10{letter-spacing:0.054000px;}
.ls28{letter-spacing:0.063360px;}
.ls6{letter-spacing:0.066240px;}
.ls2{letter-spacing:0.077760px;}
.ls21{letter-spacing:0.083520px;}
.ls38{letter-spacing:0.084240px;}
.ls9{letter-spacing:0.120240px;}
.ls2a{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.144000px;}
.ls37{letter-spacing:0.168480px;}
.ls2f{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.237600px;}
.lsb{letter-spacing:0.240480px;}
.ls11{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.287280px;}
.ls7{letter-spacing:0.288000px;}
.ls35{letter-spacing:0.299520px;}
.ls22{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.362880px;}
.ls1b{letter-spacing:0.390816px;}
.ls2d{letter-spacing:1.047600px;}
.ls24{letter-spacing:3.132000px;}
.ls32{letter-spacing:65.916000px;}
.ls36{letter-spacing:68.976000px;}
.ls33{letter-spacing:80.801280px;}
.ls34{letter-spacing:80.810640px;}
.ls2c{letter-spacing:83.880000px;}
.ls3c{letter-spacing:85.824000px;}
.ls39{letter-spacing:119.916000px;}
.ls3a{letter-spacing:128.484000px;}
.ls3b{letter-spacing:139.824000px;}
.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;}
}
.ws52{word-spacing:-49.032000px;}
.ws86{word-spacing:-48.816000px;}
.ws83{word-spacing:-41.932800px;}
.ws7d{word-spacing:-40.320000px;}
.ws44{word-spacing:-40.032000px;}
.ws8a{word-spacing:-39.552480px;}
.wsf{word-spacing:-33.546960px;}
.wse{word-spacing:-33.426720px;}
.ws2f{word-spacing:-32.544000px;}
.ws54{word-spacing:-30.348000px;}
.ws62{word-spacing:-30.240000px;}
.ws63{word-spacing:-30.024000px;}
.ws65{word-spacing:-29.808000px;}
.ws64{word-spacing:-29.700000px;}
.ws30{word-spacing:-27.414720px;}
.ws1b{word-spacing:-27.294480px;}
.ws8c{word-spacing:-26.908560px;}
.ws61{word-spacing:-26.892000px;}
.ws1a{word-spacing:-26.813520px;}
.ws88{word-spacing:-26.621280px;}
.ws8b{word-spacing:-26.429760px;}
.ws6f{word-spacing:-25.380000px;}
.ws67{word-spacing:-23.334480px;}
.ws0{word-spacing:-21.641760px;}
.ws1{word-spacing:-20.304000px;}
.ws40{word-spacing:-18.282240px;}
.ws68{word-spacing:-17.677440px;}
.ws8f{word-spacing:-17.614080px;}
.ws22{word-spacing:-14.040000px;}
.ws26{word-spacing:-13.932000px;}
.ws2b{word-spacing:-13.824000px;}
.ws39{word-spacing:-12.564720px;}
.ws48{word-spacing:-11.609280px;}
.ws49{word-spacing:-11.442240px;}
.ws47{word-spacing:-11.400480px;}
.ws15{word-spacing:-3.246480px;}
.ws74{word-spacing:-3.060000px;}
.ws6{word-spacing:-2.681280px;}
.ws93{word-spacing:-2.534400px;}
.ws14{word-spacing:-2.525040px;}
.ws3d{word-spacing:-2.494800px;}
.ws92{word-spacing:-2.471040px;}
.ws59{word-spacing:-2.304000px;}
.ws7e{word-spacing:-2.284560px;}
.wsc{word-spacing:-2.185920px;}
.ws3e{word-spacing:-2.177280px;}
.ws5{word-spacing:-1.915200px;}
.ws37{word-spacing:-1.900800px;}
.ws6c{word-spacing:-1.890000px;}
.ws91{word-spacing:-1.837440px;}
.ws16{word-spacing:-1.803600px;}
.ws3c{word-spacing:-1.769040px;}
.ws82{word-spacing:-1.684800px;}
.ws72{word-spacing:-1.620000px;}
.ws5b{word-spacing:-1.584000px;}
.ws32{word-spacing:-1.563120px;}
.ws35{word-spacing:-1.512000px;}
.wsb{word-spacing:-1.457280px;}
.ws7{word-spacing:-1.244880px;}
.ws89{word-spacing:-1.202400px;}
.ws38{word-spacing:-1.188000px;}
.ws87{word-spacing:-1.179360px;}
.ws4b{word-spacing:-1.095120px;}
.ws13{word-spacing:-1.082160px;}
.ws90{word-spacing:-1.077120px;}
.ws7a{word-spacing:-1.010016px;}
.ws4c{word-spacing:-1.008000px;}
.ws71{word-spacing:-0.900000px;}
.ws84{word-spacing:-0.898560px;}
.ws58{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.841680px;}
.ws34{word-spacing:-0.810000px;}
.wsa{word-spacing:-0.794880px;}
.ws6a{word-spacing:-0.768960px;}
.ws78{word-spacing:-0.756000px;}
.ws1c{word-spacing:-0.721440px;}
.ws79{word-spacing:-0.648000px;}
.ws3{word-spacing:-0.576720px;}
.ws5c{word-spacing:-0.576000px;}
.ws24{word-spacing:-0.540000px;}
.ws5e{word-spacing:-0.504000px;}
.ws36{word-spacing:-0.475200px;}
.ws70{word-spacing:-0.432000px;}
.ws94{word-spacing:-0.380160px;}
.ws21{word-spacing:-0.378000px;}
.ws42{word-spacing:-0.360720px;}
.ws76{word-spacing:-0.360000px;}
.ws7f{word-spacing:-0.336960px;}
.ws2a{word-spacing:-0.324000px;}
.ws3b{word-spacing:-0.317520px;}
.ws95{word-spacing:-0.316800px;}
.ws2c{word-spacing:-0.288000px;}
.ws9{word-spacing:-0.287280px;}
.ws1e{word-spacing:-0.240480px;}
.ws33{word-spacing:-0.216000px;}
.ws73{word-spacing:-0.180000px;}
.ws57{word-spacing:-0.167040px;}
.ws85{word-spacing:-0.149760px;}
.ws12{word-spacing:-0.144000px;}
.ws80{word-spacing:-0.120240px;}
.ws5d{word-spacing:-0.108000px;}
.ws96{word-spacing:-0.063360px;}
.ws2e{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws53{word-spacing:0.029232px;}
.ws3a{word-spacing:0.045360px;}
.ws51{word-spacing:0.083520px;}
.ws69{word-spacing:0.084240px;}
.ws5f{word-spacing:0.108000px;}
.ws81{word-spacing:0.120240px;}
.ws6e{word-spacing:0.144000px;}
.ws4d{word-spacing:0.167040px;}
.ws6b{word-spacing:0.174240px;}
.ws75{word-spacing:0.180000px;}
.ws8{word-spacing:0.191520px;}
.ws19{word-spacing:0.216000px;}
.ws10{word-spacing:0.233280px;}
.ws1f{word-spacing:0.240480px;}
.ws77{word-spacing:0.270000px;}
.ws23{word-spacing:0.288000px;}
.ws4e{word-spacing:0.316800px;}
.ws28{word-spacing:0.324000px;}
.ws29{word-spacing:0.378000px;}
.ws25{word-spacing:0.432000px;}
.ws18{word-spacing:0.466560px;}
.ws1d{word-spacing:0.480960px;}
.ws27{word-spacing:0.486000px;}
.ws60{word-spacing:0.540000px;}
.ws4{word-spacing:0.576000px;}
.ws2d{word-spacing:0.594000px;}
.ws6d{word-spacing:0.630000px;}
.ws4a{word-spacing:0.696960px;}
.ws3f{word-spacing:0.712800px;}
.ws8d{word-spacing:0.766080px;}
.ws50{word-spacing:0.793440px;}
.ws2{word-spacing:0.933120px;}
.ws20{word-spacing:1.296000px;}
.ws46{word-spacing:1.486656px;}
.ws55{word-spacing:1.545120px;}
.ws8e{word-spacing:1.627920px;}
.ws66{word-spacing:2.052000px;}
.ws4f{word-spacing:2.255040px;}
.ws56{word-spacing:2.964960px;}
.ws45{word-spacing:3.090240px;}
.ws5a{word-spacing:3.348000px;}
.ws11{word-spacing:3.965760px;}
.ws43{word-spacing:56.304000px;}
.ws17{word-spacing:73.805040px;}
.ws7c{word-spacing:75.270240px;}
.ws7b{word-spacing:75.319200px;}
.ws41{word-spacing:81.932400px;}
._3{margin-left:-750.329568px;}
._8{margin-left:-9.076968px;}
._b{margin-left:-7.999632px;}
._e{margin-left:-6.454224px;}
._2{margin-left:-4.766688px;}
._1{margin-left:-3.732480px;}
._7{margin-left:-2.247840px;}
._0{margin-left:-1.041984px;}
._4{width:1.152000px;}
._5{width:2.891232px;}
._6{width:4.146048px;}
._9{width:12.299040px;}
._a{width:14.488704px;}
._c{width:33.060240px;}
._f{width:128.484000px;}
._d{width:2381.040000px;}
.fcd{color:rgb(230,239,206);}
.fc0{color:rgb(255,255,255);}
.fc4{color:rgb(0,176,80);}
.fc5{color:rgb(29,29,29);}
.fc6{color:rgb(0,0,0);}
.fc9{color:rgb(74,74,74);}
.fcc{color:rgb(38,38,38);}
.fc3{color:rgb(72,105,92);}
.fc2{color:transparent;}
.fc7{color:rgb(0,169,85);}
.fcb{color:rgb(70,120,134);}
.fc1{color:rgb(68,124,89);}
.fc8{color:rgb(0,112,192);}
.fca{color:rgb(255,0,0);}
.fsf{font-size:41.760000px;}
.fsc{font-size:45.360000px;}
.fsb{font-size:47.520000px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fse{font-size:84.240000px;}
.fs12{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs11{font-size:126.000000px;}
.fs2{font-size:144.000000px;}
.fs13{font-size:149.760000px;}
.fs8{font-size:174.240000px;}
.fsd{font-size:180.000000px;}
.fs1{font-size:192.240000px;}
.fs7{font-size:216.000000px;}
.fs14{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:9.083700px;}
.yb0{bottom:9.993000px;}
.y4b{bottom:10.198800px;}
.ya{bottom:10.729230px;}
.y1f{bottom:15.857100px;}
.y4d{bottom:16.579200px;}
.y75{bottom:18.894900px;}
.y26{bottom:22.243200px;}
.y15{bottom:22.576500px;}
.y22{bottom:24.499950px;}
.yd{bottom:26.232390px;}
.y3f{bottom:28.071000px;}
.y51{bottom:29.967120px;}
.y4c{bottom:30.441960px;}
.y9{bottom:30.534990px;}
.ya4{bottom:34.694700px;}
.y21{bottom:40.974600px;}
.y50{bottom:42.568200px;}
.y2c{bottom:46.938150px;}
.yc{bottom:49.638150px;}
.y8{bottom:50.340750px;}
.yd0{bottom:60.450900px;}
.y35{bottom:68.290950px;}
.y85{bottom:68.565600px;}
.y24{bottom:71.367900px;}
.yd6{bottom:73.974000px;}
.y46{bottom:75.504300px;}
.y14{bottom:76.122480px;}
.y7d{bottom:78.103800px;}
.y30{bottom:79.036950px;}
.y97{bottom:79.110300px;}
.ycf{bottom:79.350900px;}
.y23{bottom:87.567900px;}
.y3a{bottom:90.872250px;}
.y9d{bottom:91.049010px;}
.yb{bottom:91.707150px;}
.y84{bottom:92.865600px;}
.y3c{bottom:95.620950px;}
.y4a{bottom:102.391050px;}
.ya3{bottom:107.335500px;}
.y29{bottom:107.484300px;}
.yc1{bottom:109.112250px;}
.yce{bottom:113.193780px;}
.y83{bottom:117.165600px;}
.y58{bottom:118.392450px;}
.y5e{bottom:123.697050px;}
.y45{bottom:126.624150px;}
.y96{bottom:130.050450px;}
.ycd{bottom:132.090900px;}
.y5{bottom:133.421640px;}
.y57{bottom:139.992450px;}
.yc0{bottom:143.845410px;}
.y5d{bottom:145.297050px;}
.y7c{bottom:153.338250px;}
.y62{bottom:159.689100px;}
.y9c{bottom:159.976590px;}
.y56{bottom:161.592450px;}
.yb9{bottom:163.368330px;}
.ycc{bottom:165.930900px;}
.y5c{bottom:166.897050px;}
.ya2{bottom:167.455500px;}
.yab{bottom:168.910800px;}
.y4{bottom:169.786500px;}
.y7b{bottom:174.938250px;}
.y13{bottom:176.883600px;}
.y44{bottom:177.552270px;}
.y95{bottom:180.990300px;}
.y61{bottom:181.289100px;}
.y55{bottom:183.192450px;}
.yb8{bottom:184.515300px;}
.y3b{bottom:187.892100px;}
.y5b{bottom:188.497050px;}
.y31{bottom:189.553200px;}
.y7a{bottom:196.538250px;}
.y2d{bottom:198.503100px;}
.ycb{bottom:199.950900px;}
.y37{bottom:200.600400px;}
.y71{bottom:202.327050px;}
.y60{bottom:202.889100px;}
.yd5{bottom:203.574000px;}
.y49{bottom:203.730900px;}
.y54{bottom:204.792450px;}
.y5a{bottom:210.097050px;}
.y43{bottom:213.564150px;}
.y9b{bottom:213.964350px;}
.yaa{bottom:219.850800px;}
.ybf{bottom:222.512250px;}
.y34{bottom:225.675900px;}
.ya1{bottom:227.407740px;}
.y8a{bottom:230.403300px;}
.y94{bottom:232.100040px;}
.yca{bottom:233.790900px;}
.y82{bottom:234.623550px;}
.y70{bottom:234.727050px;}
.y69{bottom:234.732300px;}
.yb7{bottom:238.515300px;}
.y53{bottom:245.622600px;}
.yd4{bottom:246.774000px;}
.y74{bottom:247.753680px;}
.y5f{bottom:248.271450px;}
.y59{bottom:250.865250px;}
.y89{bottom:252.003300px;}
.y7{bottom:256.742490px;}
.ybe{bottom:257.245410px;}
.yae{bottom:258.707550px;}
.y12{bottom:263.823600px;}
.y42{bottom:264.504300px;}
.y6f{bottom:267.127050px;}
.y68{bottom:267.132300px;}
.yc9{bottom:267.630900px;}
.ya9{bottom:270.970800px;}
.y73{bottom:272.962500px;}
.y77{bottom:273.532140px;}
.y88{bottom:273.603300px;}
.y17{bottom:274.264350px;}
.ya0{bottom:281.395860px;}
.y81{bottom:281.963550px;}
.y9a{bottom:283.084350px;}
.y8e{bottom:283.086900px;}
.yb6{bottom:292.515300px;}
.y6{bottom:293.107350px;}
.y38{bottom:297.677250px;}
.y6e{bottom:299.527050px;}
.y67{bottom:299.532300px;}
.yc8{bottom:301.650900px;}
.y48{bottom:305.250900px;}
.y11{bottom:307.386660px;}
.y33{bottom:310.028850px;}
.y93{bottom:312.390300px;}
.y8d{bottom:315.486900px;}
.y41{bottom:315.624300px;}
.ya8{bottom:321.910800px;}
.y90{bottom:327.031050px;}
.yad{bottom:328.205550px;}
.y80{bottom:329.483550px;}
.y6d{bottom:331.927050px;}
.y66{bottom:331.932300px;}
.y4f{bottom:333.791400px;}
.y76{bottom:335.097000px;}
.yc7{bottom:335.496660px;}
.ybd{bottom:335.912250px;}
.y1a{bottom:340.056690px;}
.y9f{bottom:341.335500px;}
.y2e{bottom:346.282350px;}
.yb5{bottom:346.515300px;}
.y16{bottom:347.129100px;}
.y8c{bottom:347.886900px;}
.y10{bottom:350.943600px;}
.y79{bottom:350.978250px;}
.y99{bottom:352.024350px;}
.y2a{bottom:355.447950px;}
.y7f{bottom:361.883550px;}
.y92{bottom:363.510300px;}
.y6c{bottom:364.327050px;}
.y65{bottom:364.332300px;}
.yc6{bottom:369.330900px;}
.ybc{bottom:370.652430px;}
.ya7{bottom:372.850800px;}
.y19{bottom:376.068570px;}
.yd3{bottom:376.374000px;}
.y40{bottom:377.724150px;}
.y8b{bottom:380.286900px;}
.y78{bottom:388.778250px;}
.y8f{bottom:396.313050px;}
.y6b{bottom:396.727050px;}
.y64{bottom:396.732300px;}
.y9e{bottom:397.315500px;}
.yac{bottom:397.487550px;}
.ybb{bottom:399.452250px;}
.y3{bottom:399.511350px;}
.yb4{bottom:400.515150px;}
.yc5{bottom:403.353780px;}
.y47{bottom:406.590900px;}
.y36{bottom:406.713300px;}
.y18{bottom:412.080450px;}
.y4e{bottom:413.322750px;}
.y91{bottom:414.450300px;}
.yb2{bottom:419.536170px;}
.yd2{bottom:419.574000px;}
.yc4{bottom:422.250900px;}
.y87{bottom:428.043300px;}
.y6a{bottom:429.127050px;}
.y63{bottom:429.132300px;}
.ya5{bottom:430.890900px;}
.yba{bottom:434.192250px;}
.yf{bottom:437.883600px;}
.y2f{bottom:443.428500px;}
.y2{bottom:445.231500px;}
.y28{bottom:454.641750px;}
.yc3{bottom:456.090900px;}
.y39{bottom:460.902900px;}
.y86{bottom:465.843300px;}
.y3d{bottom:469.528950px;}
.yb1{bottom:474.987150px;}
.y3e{bottom:489.480900px;}
.y1b{bottom:490.299150px;}
.y72{bottom:491.646300px;}
.y52{bottom:495.706800px;}
.ya6{bottom:496.431750px;}
.yc2{bottom:505.230900px;}
.y7e{bottom:506.688000px;}
.y1c{bottom:508.146900px;}
.y2b{bottom:510.344850px;}
.y32{bottom:510.628350px;}
.y1e{bottom:511.099350px;}
.y20{bottom:512.885400px;}
.yb3{bottom:515.831550px;}
.y25{bottom:516.142650px;}
.ye{bottom:516.812400px;}
.y98{bottom:518.929800px;}
.y27{bottom:525.316650px;}
.yd1{bottom:540.174000px;}
.yaf{bottom:564.840000px;}
.y1{bottom:566.109900px;}
.h1b{height:37.437188px;}
.h24{height:38.759766px;}
.h15{height:40.664531px;}
.h14{height:42.600937px;}
.hf{height:47.574000px;}
.h12{height:48.410156px;}
.h20{height:50.688000px;}
.h1a{height:56.790210px;}
.h19{height:56.801250px;}
.h29{height:57.203437px;}
.h17{height:59.383125px;}
.h6{height:59.706562px;}
.h1c{height:64.546875px;}
.h7{height:65.003906px;}
.h25{height:69.473320px;}
.h1{height:70.090313px;}
.h1d{height:75.519844px;}
.h21{height:80.683594px;}
.h27{height:85.847344px;}
.hc{height:86.305078px;}
.h5{height:86.314922px;}
.h28{height:86.455195px;}
.h4{height:87.109805px;}
.h1f{height:88.704000px;}
.h11{height:96.820312px;}
.h13{height:97.505859px;}
.hd{height:99.162773px;}
.h22{height:107.791841px;}
.ha{height:107.793281px;}
.h9{height:108.556523px;}
.h26{height:116.458744px;}
.h18{height:129.093750px;}
.h3{height:129.796875px;}
.h10{height:130.007812px;}
.h8{height:130.992188px;}
.h23{height:134.257500px;}
.he{height:158.500547px;}
.h1e{height:158.541680px;}
.h16{height:162.509766px;}
.h2{height:174.874570px;}
.hb{height:178.136719px;}
.h2a{height:218.101992px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x16{left:10.868100px;}
.xe{left:18.145650px;}
.x2{left:19.973700px;}
.x3{left:21.542700px;}
.x14{left:22.837200px;}
.x4{left:24.043050px;}
.x4a{left:25.048050px;}
.x12{left:26.146650px;}
.x6{left:29.707050px;}
.x10{left:32.345700px;}
.x58{left:34.559700px;}
.xf{left:38.257650px;}
.x1b{left:41.740650px;}
.x11{left:43.145700px;}
.xc{left:50.589900px;}
.x44{left:54.099750px;}
.xd{left:55.221750px;}
.x2e{left:58.015950px;}
.x2d{left:61.079040px;}
.x4c{left:63.523050px;}
.x43{left:65.599800px;}
.x54{left:77.759700px;}
.x62{left:83.058180px;}
.x4b{left:85.843050px;}
.x2a{left:88.521750px;}
.x5c{left:101.169150px;}
.x59{left:107.861100px;}
.x5{left:114.755850px;}
.x57{left:128.764650px;}
.x36{left:133.556850px;}
.x5a{left:134.861100px;}
.x34{left:136.256850px;}
.x37{left:141.296850px;}
.x31{left:143.767350px;}
.x33{left:145.247100px;}
.x35{left:166.136850px;}
.x38{left:189.896850px;}
.x17{left:209.545050px;}
.x7{left:217.669650px;}
.x67{left:248.486100px;}
.x8{left:264.542370px;}
.x65{left:266.486100px;}
.x63{left:273.866100px;}
.x64{left:275.846100px;}
.x9{left:283.597350px;}
.x32{left:295.331700px;}
.x1c{left:334.908600px;}
.x68{left:354.146100px;}
.x66{left:368.546100px;}
.x26{left:371.223450px;}
.x19{left:372.425700px;}
.x5f{left:383.886750px;}
.x1d{left:391.905150px;}
.x15{left:402.659400px;}
.x18{left:415.312050px;}
.x39{left:430.869900px;}
.x25{left:438.284850px;}
.x3c{left:443.199750px;}
.x3a{left:444.639750px;}
.x3e{left:448.239750px;}
.x1a{left:460.744800px;}
.x2b{left:464.737950px;}
.x3d{left:471.639750px;}
.x3b{left:475.239750px;}
.x2c{left:518.737950px;}
.x45{left:566.362200px;}
.x55{left:571.920450px;}
.x53{left:582.524400px;}
.x5b{left:587.100600px;}
.x2f{left:591.029250px;}
.xa{left:597.996900px;}
.x30{left:599.534100px;}
.xb{left:611.523000px;}
.x56{left:631.140450px;}
.x52{left:632.205150px;}
.x60{left:656.250300px;}
.x20{left:660.780000px;}
.x1e{left:681.172950px;}
.x46{left:694.681200px;}
.x4d{left:700.242450px;}
.x47{left:705.481200px;}
.x4e{left:711.042600px;}
.x1f{left:716.987550px;}
.x21{left:723.792150px;}
.x50{left:729.942600px;}
.x13{left:747.627000px;}
.x48{left:762.721200px;}
.x3f{left:767.258850px;}
.x4f{left:768.282600px;}
.x61{left:780.934500px;}
.x41{left:791.515050px;}
.x49{left:803.581200px;}
.x40{left:808.075050px;}
.x51{left:809.142450px;}
.x42{left:825.895050px;}
.x27{left:855.415050px;}
.x28{left:857.541750px;}
.x1{left:862.423950px;}
.x29{left:875.909850px;}
.x22{left:895.085100px;}
.x5e{left:907.118100px;}
.x5d{left:910.382400px;}
.x23{left:940.027800px;}
.x24{left:991.953750px;}
@media print{
.v1{vertical-align:-26.112000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:27.210133pt;}
.ls8{letter-spacing:-3.248640pt;}
.ls25{letter-spacing:-2.784000pt;}
.lsd{letter-spacing:-0.320640pt;}
.ls13{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.281600pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.240000pt;}
.ls2b{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.213760pt;}
.ls1a{letter-spacing:-0.211200pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.185600pt;}
.ls29{letter-spacing:-0.170880pt;}
.ls5{letter-spacing:-0.170240pt;}
.ls30{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.154880pt;}
.ls1e{letter-spacing:-0.148480pt;}
.ls12{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.138240pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.117760pt;}
.ls1d{letter-spacing:-0.106880pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.074880pt;}
.ls23{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.040320pt;}
.ls3{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.019200pt;}
.ls10{letter-spacing:0.048000pt;}
.ls28{letter-spacing:0.056320pt;}
.ls6{letter-spacing:0.058880pt;}
.ls2{letter-spacing:0.069120pt;}
.ls21{letter-spacing:0.074240pt;}
.ls38{letter-spacing:0.074880pt;}
.ls9{letter-spacing:0.106880pt;}
.ls2a{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls37{letter-spacing:0.149760pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.211200pt;}
.lsb{letter-spacing:0.213760pt;}
.ls11{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.255360pt;}
.ls7{letter-spacing:0.256000pt;}
.ls35{letter-spacing:0.266240pt;}
.ls22{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.322560pt;}
.ls1b{letter-spacing:0.347392pt;}
.ls2d{letter-spacing:0.931200pt;}
.ls24{letter-spacing:2.784000pt;}
.ls32{letter-spacing:58.592000pt;}
.ls36{letter-spacing:61.312000pt;}
.ls33{letter-spacing:71.823360pt;}
.ls34{letter-spacing:71.831680pt;}
.ls2c{letter-spacing:74.560000pt;}
.ls3c{letter-spacing:76.288000pt;}
.ls39{letter-spacing:106.592000pt;}
.ls3a{letter-spacing:114.208000pt;}
.ls3b{letter-spacing:124.288000pt;}
.ws52{word-spacing:-43.584000pt;}
.ws86{word-spacing:-43.392000pt;}
.ws83{word-spacing:-37.273600pt;}
.ws7d{word-spacing:-35.840000pt;}
.ws44{word-spacing:-35.584000pt;}
.ws8a{word-spacing:-35.157760pt;}
.wsf{word-spacing:-29.819520pt;}
.wse{word-spacing:-29.712640pt;}
.ws2f{word-spacing:-28.928000pt;}
.ws54{word-spacing:-26.976000pt;}
.ws62{word-spacing:-26.880000pt;}
.ws63{word-spacing:-26.688000pt;}
.ws65{word-spacing:-26.496000pt;}
.ws64{word-spacing:-26.400000pt;}
.ws30{word-spacing:-24.368640pt;}
.ws1b{word-spacing:-24.261760pt;}
.ws8c{word-spacing:-23.918720pt;}
.ws61{word-spacing:-23.904000pt;}
.ws1a{word-spacing:-23.834240pt;}
.ws88{word-spacing:-23.663360pt;}
.ws8b{word-spacing:-23.493120pt;}
.ws6f{word-spacing:-22.560000pt;}
.ws67{word-spacing:-20.741760pt;}
.ws0{word-spacing:-19.237120pt;}
.ws1{word-spacing:-18.048000pt;}
.ws40{word-spacing:-16.250880pt;}
.ws68{word-spacing:-15.713280pt;}
.ws8f{word-spacing:-15.656960pt;}
.ws22{word-spacing:-12.480000pt;}
.ws26{word-spacing:-12.384000pt;}
.ws2b{word-spacing:-12.288000pt;}
.ws39{word-spacing:-11.168640pt;}
.ws48{word-spacing:-10.319360pt;}
.ws49{word-spacing:-10.170880pt;}
.ws47{word-spacing:-10.133760pt;}
.ws15{word-spacing:-2.885760pt;}
.ws74{word-spacing:-2.720000pt;}
.ws6{word-spacing:-2.383360pt;}
.ws93{word-spacing:-2.252800pt;}
.ws14{word-spacing:-2.244480pt;}
.ws3d{word-spacing:-2.217600pt;}
.ws92{word-spacing:-2.196480pt;}
.ws59{word-spacing:-2.048000pt;}
.ws7e{word-spacing:-2.030720pt;}
.wsc{word-spacing:-1.943040pt;}
.ws3e{word-spacing:-1.935360pt;}
.ws5{word-spacing:-1.702400pt;}
.ws37{word-spacing:-1.689600pt;}
.ws6c{word-spacing:-1.680000pt;}
.ws91{word-spacing:-1.633280pt;}
.ws16{word-spacing:-1.603200pt;}
.ws3c{word-spacing:-1.572480pt;}
.ws82{word-spacing:-1.497600pt;}
.ws72{word-spacing:-1.440000pt;}
.ws5b{word-spacing:-1.408000pt;}
.ws32{word-spacing:-1.389440pt;}
.ws35{word-spacing:-1.344000pt;}
.wsb{word-spacing:-1.295360pt;}
.ws7{word-spacing:-1.106560pt;}
.ws89{word-spacing:-1.068800pt;}
.ws38{word-spacing:-1.056000pt;}
.ws87{word-spacing:-1.048320pt;}
.ws4b{word-spacing:-0.973440pt;}
.ws13{word-spacing:-0.961920pt;}
.ws90{word-spacing:-0.957440pt;}
.ws7a{word-spacing:-0.897792pt;}
.ws4c{word-spacing:-0.896000pt;}
.ws71{word-spacing:-0.800000pt;}
.ws84{word-spacing:-0.798720pt;}
.ws58{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.748160pt;}
.ws34{word-spacing:-0.720000pt;}
.wsa{word-spacing:-0.706560pt;}
.ws6a{word-spacing:-0.683520pt;}
.ws78{word-spacing:-0.672000pt;}
.ws1c{word-spacing:-0.641280pt;}
.ws79{word-spacing:-0.576000pt;}
.ws3{word-spacing:-0.512640pt;}
.ws5c{word-spacing:-0.512000pt;}
.ws24{word-spacing:-0.480000pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws36{word-spacing:-0.422400pt;}
.ws70{word-spacing:-0.384000pt;}
.ws94{word-spacing:-0.337920pt;}
.ws21{word-spacing:-0.336000pt;}
.ws42{word-spacing:-0.320640pt;}
.ws76{word-spacing:-0.320000pt;}
.ws7f{word-spacing:-0.299520pt;}
.ws2a{word-spacing:-0.288000pt;}
.ws3b{word-spacing:-0.282240pt;}
.ws95{word-spacing:-0.281600pt;}
.ws2c{word-spacing:-0.256000pt;}
.ws9{word-spacing:-0.255360pt;}
.ws1e{word-spacing:-0.213760pt;}
.ws33{word-spacing:-0.192000pt;}
.ws73{word-spacing:-0.160000pt;}
.ws57{word-spacing:-0.148480pt;}
.ws85{word-spacing:-0.133120pt;}
.ws12{word-spacing:-0.128000pt;}
.ws80{word-spacing:-0.106880pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws96{word-spacing:-0.056320pt;}
.ws2e{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws53{word-spacing:0.025984pt;}
.ws3a{word-spacing:0.040320pt;}
.ws51{word-spacing:0.074240pt;}
.ws69{word-spacing:0.074880pt;}
.ws5f{word-spacing:0.096000pt;}
.ws81{word-spacing:0.106880pt;}
.ws6e{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.148480pt;}
.ws6b{word-spacing:0.154880pt;}
.ws75{word-spacing:0.160000pt;}
.ws8{word-spacing:0.170240pt;}
.ws19{word-spacing:0.192000pt;}
.ws10{word-spacing:0.207360pt;}
.ws1f{word-spacing:0.213760pt;}
.ws77{word-spacing:0.240000pt;}
.ws23{word-spacing:0.256000pt;}
.ws4e{word-spacing:0.281600pt;}
.ws28{word-spacing:0.288000pt;}
.ws29{word-spacing:0.336000pt;}
.ws25{word-spacing:0.384000pt;}
.ws18{word-spacing:0.414720pt;}
.ws1d{word-spacing:0.427520pt;}
.ws27{word-spacing:0.432000pt;}
.ws60{word-spacing:0.480000pt;}
.ws4{word-spacing:0.512000pt;}
.ws2d{word-spacing:0.528000pt;}
.ws6d{word-spacing:0.560000pt;}
.ws4a{word-spacing:0.619520pt;}
.ws3f{word-spacing:0.633600pt;}
.ws8d{word-spacing:0.680960pt;}
.ws50{word-spacing:0.705280pt;}
.ws2{word-spacing:0.829440pt;}
.ws20{word-spacing:1.152000pt;}
.ws46{word-spacing:1.321472pt;}
.ws55{word-spacing:1.373440pt;}
.ws8e{word-spacing:1.447040pt;}
.ws66{word-spacing:1.824000pt;}
.ws4f{word-spacing:2.004480pt;}
.ws56{word-spacing:2.635520pt;}
.ws45{word-spacing:2.746880pt;}
.ws5a{word-spacing:2.976000pt;}
.ws11{word-spacing:3.525120pt;}
.ws43{word-spacing:50.048000pt;}
.ws17{word-spacing:65.604480pt;}
.ws7c{word-spacing:66.906880pt;}
.ws7b{word-spacing:66.950400pt;}
.ws41{word-spacing:72.828800pt;}
._3{margin-left:-666.959616pt;}
._8{margin-left:-8.068416pt;}
._b{margin-left:-7.110784pt;}
._e{margin-left:-5.737088pt;}
._2{margin-left:-4.237056pt;}
._1{margin-left:-3.317760pt;}
._7{margin-left:-1.998080pt;}
._0{margin-left:-0.926208pt;}
._4{width:1.024000pt;}
._5{width:2.569984pt;}
._6{width:3.685376pt;}
._9{width:10.932480pt;}
._a{width:12.878848pt;}
._c{width:29.386880pt;}
._f{width:114.208000pt;}
._d{width:2116.480000pt;}
.fsf{font-size:37.120000pt;}
.fsc{font-size:40.320000pt;}
.fsb{font-size:42.240000pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fse{font-size:74.880000pt;}
.fs12{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs11{font-size:112.000000pt;}
.fs2{font-size:128.000000pt;}
.fs13{font-size:133.120000pt;}
.fs8{font-size:154.880000pt;}
.fsd{font-size:160.000000pt;}
.fs1{font-size:170.880000pt;}
.fs7{font-size:192.000000pt;}
.fs14{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:8.074400pt;}
.yb0{bottom:8.882667pt;}
.y4b{bottom:9.065600pt;}
.ya{bottom:9.537093pt;}
.y1f{bottom:14.095200pt;}
.y4d{bottom:14.737067pt;}
.y75{bottom:16.795467pt;}
.y26{bottom:19.771733pt;}
.y15{bottom:20.068000pt;}
.y22{bottom:21.777733pt;}
.yd{bottom:23.317680pt;}
.y3f{bottom:24.952000pt;}
.y51{bottom:26.637440pt;}
.y4c{bottom:27.059520pt;}
.y9{bottom:27.142213pt;}
.ya4{bottom:30.839733pt;}
.y21{bottom:36.421867pt;}
.y50{bottom:37.838400pt;}
.y2c{bottom:41.722800pt;}
.yc{bottom:44.122800pt;}
.y8{bottom:44.747333pt;}
.yd0{bottom:53.734133pt;}
.y35{bottom:60.703067pt;}
.y85{bottom:60.947200pt;}
.y24{bottom:63.438133pt;}
.yd6{bottom:65.754667pt;}
.y46{bottom:67.114933pt;}
.y14{bottom:67.664427pt;}
.y7d{bottom:69.425600pt;}
.y30{bottom:70.255067pt;}
.y97{bottom:70.320267pt;}
.ycf{bottom:70.534133pt;}
.y23{bottom:77.838133pt;}
.y3a{bottom:80.775333pt;}
.y9d{bottom:80.932453pt;}
.yb{bottom:81.517467pt;}
.y84{bottom:82.547200pt;}
.y3c{bottom:84.996400pt;}
.y4a{bottom:91.014267pt;}
.ya3{bottom:95.409333pt;}
.y29{bottom:95.541600pt;}
.yc1{bottom:96.988667pt;}
.yce{bottom:100.616693pt;}
.y83{bottom:104.147200pt;}
.y58{bottom:105.237733pt;}
.y5e{bottom:109.952933pt;}
.y45{bottom:112.554800pt;}
.y96{bottom:115.600400pt;}
.ycd{bottom:117.414133pt;}
.y5{bottom:118.597013pt;}
.y57{bottom:124.437733pt;}
.yc0{bottom:127.862587pt;}
.y5d{bottom:129.152933pt;}
.y7c{bottom:136.300667pt;}
.y62{bottom:141.945867pt;}
.y9c{bottom:142.201413pt;}
.y56{bottom:143.637733pt;}
.yb9{bottom:145.216293pt;}
.ycc{bottom:147.494133pt;}
.y5c{bottom:148.352933pt;}
.ya2{bottom:148.849333pt;}
.yab{bottom:150.142933pt;}
.y4{bottom:150.921333pt;}
.y7b{bottom:155.500667pt;}
.y13{bottom:157.229867pt;}
.y44{bottom:157.824240pt;}
.y95{bottom:160.880267pt;}
.y61{bottom:161.145867pt;}
.y55{bottom:162.837733pt;}
.yb8{bottom:164.013600pt;}
.y3b{bottom:167.015200pt;}
.y5b{bottom:167.552933pt;}
.y31{bottom:168.491733pt;}
.y7a{bottom:174.700667pt;}
.y2d{bottom:176.447200pt;}
.ycb{bottom:177.734133pt;}
.y37{bottom:178.311467pt;}
.y71{bottom:179.846267pt;}
.y60{bottom:180.345867pt;}
.yd5{bottom:180.954667pt;}
.y49{bottom:181.094133pt;}
.y54{bottom:182.037733pt;}
.y5a{bottom:186.752933pt;}
.y43{bottom:189.834800pt;}
.y9b{bottom:190.190533pt;}
.yaa{bottom:195.422933pt;}
.ybf{bottom:197.788667pt;}
.y34{bottom:200.600800pt;}
.ya1{bottom:202.140213pt;}
.y8a{bottom:204.802933pt;}
.y94{bottom:206.311147pt;}
.yca{bottom:207.814133pt;}
.y82{bottom:208.554267pt;}
.y70{bottom:208.646267pt;}
.y69{bottom:208.650933pt;}
.yb7{bottom:212.013600pt;}
.y53{bottom:218.331200pt;}
.yd4{bottom:219.354667pt;}
.y74{bottom:220.225493pt;}
.y5f{bottom:220.685733pt;}
.y59{bottom:222.991333pt;}
.y89{bottom:224.002933pt;}
.y7{bottom:228.215547pt;}
.ybe{bottom:228.662587pt;}
.yae{bottom:229.962267pt;}
.y12{bottom:234.509867pt;}
.y42{bottom:235.114933pt;}
.y6f{bottom:237.446267pt;}
.y68{bottom:237.450933pt;}
.yc9{bottom:237.894133pt;}
.ya9{bottom:240.862933pt;}
.y73{bottom:242.633333pt;}
.y77{bottom:243.139680pt;}
.y88{bottom:243.202933pt;}
.y17{bottom:243.790533pt;}
.ya0{bottom:250.129653pt;}
.y81{bottom:250.634267pt;}
.y9a{bottom:251.630533pt;}
.y8e{bottom:251.632800pt;}
.yb6{bottom:260.013600pt;}
.y6{bottom:260.539867pt;}
.y38{bottom:264.602000pt;}
.y6e{bottom:266.246267pt;}
.y67{bottom:266.250933pt;}
.yc8{bottom:268.134133pt;}
.y48{bottom:271.334133pt;}
.y11{bottom:273.232587pt;}
.y33{bottom:275.581200pt;}
.y93{bottom:277.680267pt;}
.y8d{bottom:280.432800pt;}
.y41{bottom:280.554933pt;}
.ya8{bottom:286.142933pt;}
.y90{bottom:290.694267pt;}
.yad{bottom:291.738267pt;}
.y80{bottom:292.874267pt;}
.y6d{bottom:295.046267pt;}
.y66{bottom:295.050933pt;}
.y4f{bottom:296.703467pt;}
.y76{bottom:297.864000pt;}
.yc7{bottom:298.219253pt;}
.ybd{bottom:298.588667pt;}
.y1a{bottom:302.272613pt;}
.y9f{bottom:303.409333pt;}
.y2e{bottom:307.806533pt;}
.yb5{bottom:308.013600pt;}
.y16{bottom:308.559200pt;}
.y8c{bottom:309.232800pt;}
.y10{bottom:311.949867pt;}
.y79{bottom:311.980667pt;}
.y99{bottom:312.910533pt;}
.y2a{bottom:315.953733pt;}
.y7f{bottom:321.674267pt;}
.y92{bottom:323.120267pt;}
.y6c{bottom:323.846267pt;}
.y65{bottom:323.850933pt;}
.yc6{bottom:328.294133pt;}
.ybc{bottom:329.468827pt;}
.ya7{bottom:331.422933pt;}
.y19{bottom:334.283173pt;}
.yd3{bottom:334.554667pt;}
.y40{bottom:335.754800pt;}
.y8b{bottom:338.032800pt;}
.y78{bottom:345.580667pt;}
.y8f{bottom:352.278267pt;}
.y6b{bottom:352.646267pt;}
.y64{bottom:352.650933pt;}
.y9e{bottom:353.169333pt;}
.yac{bottom:353.322267pt;}
.ybb{bottom:355.068667pt;}
.y3{bottom:355.121200pt;}
.yb4{bottom:356.013467pt;}
.yc5{bottom:358.536693pt;}
.y47{bottom:361.414133pt;}
.y36{bottom:361.522933pt;}
.y18{bottom:366.293733pt;}
.y4e{bottom:367.398000pt;}
.y91{bottom:368.400267pt;}
.yb2{bottom:372.921040pt;}
.yd2{bottom:372.954667pt;}
.yc4{bottom:375.334133pt;}
.y87{bottom:380.482933pt;}
.y6a{bottom:381.446267pt;}
.y63{bottom:381.450933pt;}
.ya5{bottom:383.014133pt;}
.yba{bottom:385.948667pt;}
.yf{bottom:389.229867pt;}
.y2f{bottom:394.158667pt;}
.y2{bottom:395.761333pt;}
.y28{bottom:404.126000pt;}
.yc3{bottom:405.414133pt;}
.y39{bottom:409.691467pt;}
.y86{bottom:414.082933pt;}
.y3d{bottom:417.359067pt;}
.yb1{bottom:422.210800pt;}
.y3e{bottom:435.094133pt;}
.y1b{bottom:435.821467pt;}
.y72{bottom:437.018933pt;}
.y52{bottom:440.628267pt;}
.ya6{bottom:441.272667pt;}
.yc2{bottom:449.094133pt;}
.y7e{bottom:450.389333pt;}
.y1c{bottom:451.686133pt;}
.y2b{bottom:453.639867pt;}
.y32{bottom:453.891867pt;}
.y1e{bottom:454.310533pt;}
.y20{bottom:455.898133pt;}
.yb3{bottom:458.516933pt;}
.y25{bottom:458.793467pt;}
.ye{bottom:459.388800pt;}
.y98{bottom:461.270933pt;}
.y27{bottom:466.948133pt;}
.yd1{bottom:480.154667pt;}
.yaf{bottom:502.080000pt;}
.y1{bottom:503.208800pt;}
.h1b{height:33.277500pt;}
.h24{height:34.453125pt;}
.h15{height:36.146250pt;}
.h14{height:37.867500pt;}
.hf{height:42.288000pt;}
.h12{height:43.031250pt;}
.h20{height:45.056000pt;}
.h1a{height:50.480187pt;}
.h19{height:50.490000pt;}
.h29{height:50.847500pt;}
.h17{height:52.785000pt;}
.h6{height:53.072500pt;}
.h1c{height:57.375000pt;}
.h7{height:57.781250pt;}
.h25{height:61.754062pt;}
.h1{height:62.302500pt;}
.h1d{height:67.128750pt;}
.h21{height:71.718750pt;}
.h27{height:76.308750pt;}
.hc{height:76.715625pt;}
.h5{height:76.724375pt;}
.h28{height:76.849063pt;}
.h4{height:77.430937pt;}
.h1f{height:78.848000pt;}
.h11{height:86.062500pt;}
.h13{height:86.671875pt;}
.hd{height:88.144687pt;}
.h22{height:95.814970pt;}
.ha{height:95.816250pt;}
.h9{height:96.494687pt;}
.h26{height:103.518883pt;}
.h18{height:114.750000pt;}
.h3{height:115.375000pt;}
.h10{height:115.562500pt;}
.h8{height:116.437500pt;}
.h23{height:119.340000pt;}
.he{height:140.889375pt;}
.h1e{height:140.925938pt;}
.h16{height:144.453125pt;}
.h2{height:155.444063pt;}
.hb{height:158.343750pt;}
.h2a{height:193.868437pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.660533pt;}
.xe{left:16.129467pt;}
.x2{left:17.754400pt;}
.x3{left:19.149067pt;}
.x14{left:20.299733pt;}
.x4{left:21.371600pt;}
.x4a{left:22.264933pt;}
.x12{left:23.241467pt;}
.x6{left:26.406267pt;}
.x10{left:28.751733pt;}
.x58{left:30.719733pt;}
.xf{left:34.006800pt;}
.x1b{left:37.102800pt;}
.x11{left:38.351733pt;}
.xc{left:44.968800pt;}
.x44{left:48.088667pt;}
.xd{left:49.086000pt;}
.x2e{left:51.569733pt;}
.x2d{left:54.292480pt;}
.x4c{left:56.464933pt;}
.x43{left:58.310933pt;}
.x54{left:69.119733pt;}
.x62{left:73.829493pt;}
.x4b{left:76.304933pt;}
.x2a{left:78.686000pt;}
.x5c{left:89.928133pt;}
.x59{left:95.876533pt;}
.x5{left:102.005200pt;}
.x57{left:114.457467pt;}
.x36{left:118.717200pt;}
.x5a{left:119.876533pt;}
.x34{left:121.117200pt;}
.x37{left:125.597200pt;}
.x31{left:127.793200pt;}
.x33{left:129.108533pt;}
.x35{left:147.677200pt;}
.x38{left:168.797200pt;}
.x17{left:186.262267pt;}
.x7{left:193.484133pt;}
.x67{left:220.876533pt;}
.x8{left:235.148773pt;}
.x65{left:236.876533pt;}
.x63{left:243.436533pt;}
.x64{left:245.196533pt;}
.x9{left:252.086533pt;}
.x32{left:262.517067pt;}
.x1c{left:297.696533pt;}
.x68{left:314.796533pt;}
.x66{left:327.596533pt;}
.x26{left:329.976400pt;}
.x19{left:331.045067pt;}
.x5f{left:341.232667pt;}
.x1d{left:348.360133pt;}
.x15{left:357.919467pt;}
.x18{left:369.166267pt;}
.x39{left:382.995467pt;}
.x25{left:389.586533pt;}
.x3c{left:393.955333pt;}
.x3a{left:395.235333pt;}
.x3e{left:398.435333pt;}
.x1a{left:409.550933pt;}
.x2b{left:413.100400pt;}
.x3d{left:419.235333pt;}
.x3b{left:422.435333pt;}
.x2c{left:461.100400pt;}
.x45{left:503.433067pt;}
.x55{left:508.373733pt;}
.x53{left:517.799467pt;}
.x5b{left:521.867200pt;}
.x2f{left:525.359333pt;}
.xa{left:531.552800pt;}
.x30{left:532.919200pt;}
.xb{left:543.576000pt;}
.x56{left:561.013733pt;}
.x52{left:561.960133pt;}
.x60{left:583.333600pt;}
.x20{left:587.360000pt;}
.x1e{left:605.487067pt;}
.x46{left:617.494400pt;}
.x4d{left:622.437733pt;}
.x47{left:627.094400pt;}
.x4e{left:632.037867pt;}
.x1f{left:637.322267pt;}
.x21{left:643.370800pt;}
.x50{left:648.837867pt;}
.x13{left:664.557333pt;}
.x48{left:677.974400pt;}
.x3f{left:682.007867pt;}
.x4f{left:682.917867pt;}
.x61{left:694.164000pt;}
.x41{left:703.568933pt;}
.x49{left:714.294400pt;}
.x40{left:718.288933pt;}
.x51{left:719.237733pt;}
.x42{left:734.128933pt;}
.x27{left:760.368933pt;}
.x28{left:762.259333pt;}
.x1{left:766.599067pt;}
.x29{left:778.586533pt;}
.x22{left:795.631200pt;}
.x5e{left:806.327200pt;}
.x5d{left:809.228800pt;}
.x23{left:835.580267pt;}
.x24{left:881.736667pt;}
}




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