
    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_fadfdff18a453e79735194d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.016000;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_042ef9ffbc943409f1a2ecda.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a771b75c12c27085a6830471.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.639000;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_e1a9e819db39cd815ef79fc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_43292a05a54c1c67d7867a99.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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;}
.m1{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:156.000000px;}
.ls3{letter-spacing:-5.100000px;}
.ls5{letter-spacing:-0.813667px;}
.ls6{letter-spacing:-0.232800px;}
.ls4{letter-spacing:-0.081000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.333000px;}
.ls1{letter-spacing:0.888000px;}
.ls7{letter-spacing:7.295400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.336146px;}
.ws73{word-spacing:-17.319000px;}
.ws0{word-spacing:-14.818500px;}
.ws2f{word-spacing:-13.036800px;}
.wse5{word-spacing:-12.495000px;}
.ws109{word-spacing:-11.746800px;}
.ws107{word-spacing:-11.325600px;}
.ws10a{word-spacing:-10.483200px;}
.ws61{word-spacing:-3.957600px;}
.wsbe{word-spacing:-3.492000px;}
.wsc7{word-spacing:-3.259200px;}
.wsdb{word-spacing:-3.084600px;}
.wsdd{word-spacing:-2.910000px;}
.ws7e{word-spacing:-2.793600px;}
.ws3f{word-spacing:-2.735400px;}
.wsd3{word-spacing:-2.677200px;}
.wsb8{word-spacing:-2.619000px;}
.ws35{word-spacing:-2.560800px;}
.ws40{word-spacing:-2.502600px;}
.ws9a{word-spacing:-2.444400px;}
.wsaf{word-spacing:-2.386200px;}
.ws6b{word-spacing:-2.328000px;}
.ws28{word-spacing:-2.269800px;}
.wscb{word-spacing:-2.211600px;}
.ws38{word-spacing:-2.153400px;}
.ws67{word-spacing:-2.095200px;}
.wsd9{word-spacing:-2.037000px;}
.ws7d{word-spacing:-1.978800px;}
.ws78{word-spacing:-1.920600px;}
.wsb0{word-spacing:-1.862400px;}
.ws2e{word-spacing:-1.746000px;}
.ws16{word-spacing:-1.687800px;}
.ws5c{word-spacing:-1.629600px;}
.wsb4{word-spacing:-1.571400px;}
.ws97{word-spacing:-1.513200px;}
.ws60{word-spacing:-1.455000px;}
.ws5e{word-spacing:-1.396800px;}
.ws1b{word-spacing:-1.338600px;}
.ws27{word-spacing:-1.280400px;}
.wsbf{word-spacing:-1.222200px;}
.wsd1{word-spacing:-1.164000px;}
.ws30{word-spacing:-1.105800px;}
.wsdf{word-spacing:-1.047600px;}
.ws69{word-spacing:-0.989400px;}
.wse3{word-spacing:-0.931200px;}
.wsa7{word-spacing:-0.873000px;}
.wsda{word-spacing:-0.814800px;}
.ws3e{word-spacing:-0.756600px;}
.ws59{word-spacing:-0.640200px;}
.ws29{word-spacing:-0.582000px;}
.ws75{word-spacing:-0.523800px;}
.wsc4{word-spacing:-0.465600px;}
.ws4b{word-spacing:-0.407400px;}
.ws1{word-spacing:-0.309004px;}
.wsa5{word-spacing:-0.291000px;}
.wsa4{word-spacing:-0.232800px;}
.wsd4{word-spacing:-0.174600px;}
.wsc2{word-spacing:-0.116400px;}
.ws74{word-spacing:-0.058200px;}
.ws3{word-spacing:0.000000px;}
.ws18{word-spacing:0.058200px;}
.wsac{word-spacing:0.116400px;}
.ws41{word-spacing:0.174600px;}
.wsc0{word-spacing:0.232800px;}
.wsc9{word-spacing:0.291000px;}
.ws5{word-spacing:0.324000px;}
.ws15{word-spacing:0.349200px;}
.ws11{word-spacing:0.523800px;}
.wsd8{word-spacing:0.582000px;}
.wsf1{word-spacing:0.698400px;}
.ws95{word-spacing:0.756600px;}
.wsba{word-spacing:0.814800px;}
.ws80{word-spacing:0.873000px;}
.ws51{word-spacing:0.931200px;}
.ws33{word-spacing:0.989400px;}
.ws3a{word-spacing:1.047600px;}
.wsa3{word-spacing:1.105800px;}
.ws53{word-spacing:1.164000px;}
.wse8{word-spacing:1.222200px;}
.ws2a{word-spacing:1.280400px;}
.ws32{word-spacing:1.338600px;}
.ws82{word-spacing:1.396800px;}
.wsef{word-spacing:1.455000px;}
.wsa{word-spacing:1.513200px;}
.ws86{word-spacing:1.571400px;}
.ws36{word-spacing:1.629600px;}
.ws9{word-spacing:1.687800px;}
.wsd2{word-spacing:1.746000px;}
.ws31{word-spacing:1.804200px;}
.ws13{word-spacing:1.862400px;}
.ws26{word-spacing:1.920600px;}
.ws56{word-spacing:1.978800px;}
.ws3b{word-spacing:2.037000px;}
.ws58{word-spacing:2.095200px;}
.wsa6{word-spacing:2.153400px;}
.wsb1{word-spacing:2.211600px;}
.ws4{word-spacing:2.250000px;}
.wsb{word-spacing:2.269800px;}
.ws48{word-spacing:2.328000px;}
.wsdc{word-spacing:2.386200px;}
.ws4d{word-spacing:2.444400px;}
.ws10{word-spacing:2.502600px;}
.ws55{word-spacing:2.560800px;}
.ws8e{word-spacing:2.619000px;}
.ws9f{word-spacing:2.677200px;}
.ws54{word-spacing:2.735400px;}
.ws2c{word-spacing:2.793600px;}
.ws37{word-spacing:2.851800px;}
.ws42{word-spacing:2.910000px;}
.ws66{word-spacing:2.968200px;}
.wsff{word-spacing:3.026400px;}
.ws6{word-spacing:3.142800px;}
.ws57{word-spacing:3.201000px;}
.ws70{word-spacing:3.259200px;}
.ws24{word-spacing:3.317400px;}
.ws43{word-spacing:3.375600px;}
.ws17{word-spacing:3.433800px;}
.ws83{word-spacing:3.492000px;}
.wsce{word-spacing:3.550200px;}
.wsc3{word-spacing:3.608400px;}
.ws8b{word-spacing:3.666600px;}
.ws62{word-spacing:3.724800px;}
.wsea{word-spacing:3.783000px;}
.ws94{word-spacing:3.841200px;}
.ws22{word-spacing:3.899400px;}
.wsaa{word-spacing:3.957600px;}
.ws65{word-spacing:4.015800px;}
.ws4a{word-spacing:4.074000px;}
.ws87{word-spacing:4.132200px;}
.wsd6{word-spacing:4.190400px;}
.wsed{word-spacing:4.248600px;}
.wsd{word-spacing:4.365000px;}
.ws77{word-spacing:4.423200px;}
.ws5d{word-spacing:4.481400px;}
.wsbc{word-spacing:4.539600px;}
.ws99{word-spacing:4.656000px;}
.ws93{word-spacing:4.714200px;}
.wsc8{word-spacing:4.830600px;}
.ws1e{word-spacing:4.888800px;}
.ws5a{word-spacing:4.947000px;}
.ws1d{word-spacing:5.005200px;}
.ws91{word-spacing:5.063400px;}
.wsa2{word-spacing:5.121600px;}
.wse1{word-spacing:5.179800px;}
.ws6f{word-spacing:5.238000px;}
.ws8f{word-spacing:5.296200px;}
.ws7b{word-spacing:5.354400px;}
.ws12{word-spacing:5.412600px;}
.ws63{word-spacing:5.470800px;}
.ws21{word-spacing:5.529000px;}
.ws4c{word-spacing:5.587200px;}
.ws1a{word-spacing:5.645400px;}
.ws39{word-spacing:5.703600px;}
.ws81{word-spacing:5.761800px;}
.ws85{word-spacing:5.820000px;}
.ws19{word-spacing:5.878200px;}
.ws6a{word-spacing:5.936400px;}
.ws20{word-spacing:5.994600px;}
.ws9b{word-spacing:6.052800px;}
.ws52{word-spacing:6.111000px;}
.wsa0{word-spacing:6.227400px;}
.ws68{word-spacing:6.285600px;}
.ws105{word-spacing:6.343800px;}
.ws34{word-spacing:6.402000px;}
.ws9e{word-spacing:6.460200px;}
.ws44{word-spacing:6.518400px;}
.ws2b{word-spacing:6.634800px;}
.wsad{word-spacing:6.693000px;}
.ws4e{word-spacing:6.751200px;}
.wse7{word-spacing:6.809400px;}
.ws103{word-spacing:6.867600px;}
.ws50{word-spacing:6.925800px;}
.ws8c{word-spacing:6.984000px;}
.ws5f{word-spacing:7.042200px;}
.wse{word-spacing:7.100400px;}
.ws45{word-spacing:7.158600px;}
.ws100{word-spacing:7.275000px;}
.ws23{word-spacing:7.333200px;}
.ws7c{word-spacing:7.507800px;}
.wsb7{word-spacing:7.566000px;}
.ws8{word-spacing:7.624200px;}
.wscc{word-spacing:7.682400px;}
.ws9c{word-spacing:7.857000px;}
.wsae{word-spacing:7.915200px;}
.wsa8{word-spacing:7.973400px;}
.wsfa{word-spacing:8.031600px;}
.ws25{word-spacing:8.089800px;}
.ws7a{word-spacing:8.148000px;}
.wsd7{word-spacing:8.206200px;}
.ws101{word-spacing:8.264400px;}
.ws3d{word-spacing:8.322600px;}
.ws9d{word-spacing:8.380800px;}
.ws96{word-spacing:8.439000px;}
.wsde{word-spacing:8.613600px;}
.wscd{word-spacing:8.671800px;}
.wsb9{word-spacing:8.730000px;}
.wse6{word-spacing:8.788200px;}
.ws76{word-spacing:8.904600px;}
.wsb2{word-spacing:9.021000px;}
.ws7{word-spacing:9.079200px;}
.wsf2{word-spacing:9.137400px;}
.wsec{word-spacing:9.195600px;}
.ws6e{word-spacing:9.312000px;}
.wseb{word-spacing:9.370200px;}
.wsf6{word-spacing:9.428400px;}
.wsc6{word-spacing:9.486600px;}
.wsbb{word-spacing:9.603000px;}
.ws90{word-spacing:9.661200px;}
.ws8d{word-spacing:9.719400px;}
.wse0{word-spacing:9.777600px;}
.ws1c{word-spacing:9.835800px;}
.wsf{word-spacing:9.952200px;}
.wsf8{word-spacing:10.010400px;}
.wsf4{word-spacing:10.068600px;}
.wsc1{word-spacing:10.301400px;}
.wsd0{word-spacing:10.359600px;}
.ws79{word-spacing:10.417800px;}
.ws7f{word-spacing:10.534200px;}
.wsc5{word-spacing:10.650600px;}
.ws6c{word-spacing:10.767000px;}
.wsfe{word-spacing:10.825200px;}
.wse9{word-spacing:10.883400px;}
.wsab{word-spacing:10.941600px;}
.wsf7{word-spacing:10.999800px;}
.ws5b{word-spacing:11.116200px;}
.ws3c{word-spacing:11.581800px;}
.ws104{word-spacing:11.814600px;}
.ws49{word-spacing:11.931000px;}
.wsca{word-spacing:12.047400px;}
.ws64{word-spacing:12.280200px;}
.ws71{word-spacing:12.338400px;}
.ws14{word-spacing:12.687600px;}
.ws6d{word-spacing:12.804000px;}
.wsfc{word-spacing:12.978600px;}
.ws92{word-spacing:13.036800px;}
.wsf0{word-spacing:13.095000px;}
.wsb6{word-spacing:13.211400px;}
.ws8a{word-spacing:13.618800px;}
.wsfb{word-spacing:14.026200px;}
.ws1f{word-spacing:14.608200px;}
.ws84{word-spacing:14.724600px;}
.wse2{word-spacing:15.248400px;}
.wsa1{word-spacing:15.364800px;}
.wsf5{word-spacing:15.423000px;}
.ws46{word-spacing:15.655800px;}
.ws106{word-spacing:16.005000px;}
.ws4f{word-spacing:18.158400px;}
.wsf3{word-spacing:18.449400px;}
.wsd5{word-spacing:18.507600px;}
.wsfd{word-spacing:19.497000px;}
.wsb3{word-spacing:20.661000px;}
.ws2d{word-spacing:21.708600px;}
.wsb5{word-spacing:22.989000px;}
.wsee{word-spacing:64.222800px;}
.wscf{word-spacing:64.882800px;}
.wsf9{word-spacing:66.922800px;}
.ws102{word-spacing:67.642800px;}
.wse4{word-spacing:71.182800px;}
.ws98{word-spacing:72.862800px;}
.ws47{word-spacing:73.522800px;}
.wsa9{word-spacing:75.562800px;}
.wsbd{word-spacing:76.282800px;}
.wsc{word-spacing:77.002800px;}
.ws108{word-spacing:77.782800px;}
.ws72{word-spacing:79.822800px;}
.ws10b{word-spacing:84.082800px;}
.ws89{word-spacing:185.246400px;}
.ws88{word-spacing:213.730800px;}
._8{margin-left:-23.892000px;}
._5{margin-left:-6.935820px;}
._9{margin-left:-5.889000px;}
._6{margin-left:-4.587000px;}
._7{margin-left:-3.354000px;}
._3{margin-left:-2.220000px;}
._1{margin-left:-1.080000px;}
._2{width:1.110000px;}
._0{width:2.115000px;}
._4{width:3.392289px;}
._1b{width:6.984000px;}
._c{width:224.413200px;}
._10{width:228.253800px;}
._e{width:229.550400px;}
._12{width:232.526400px;}
._14{width:238.334400px;}
._16{width:247.117800px;}
._19{width:249.709200px;}
._d{width:308.341800px;}
._17{width:789.301800px;}
._11{width:794.065800px;}
._15{width:888.661800px;}
._f{width:1001.029800px;}
._13{width:1118.821800px;}
._b{width:1182.854400px;}
._18{width:1206.038400px;}
._1a{width:1376.631000px;}
._a{width:1467.103800px;}
.fc1{color:rgb(0,96,195);}
.fc2{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs3{font-size:55.500000px;}
.fs9{font-size:55.800000px;}
.fs5{font-size:58.200000px;}
.fs0{font-size:60.000000px;}
.fs8{font-size:69.000000px;}
.fs2{font-size:81.000000px;}
.fs6{font-size:90.407400px;}
.fs1{font-size:150.000000px;}
.fs4{font-size:309.003600px;}
.y0{bottom:0.000000px;}
.y58{bottom:71.716500px;}
.y8d{bottom:74.883150px;}
.ybe{bottom:75.867000px;}
.yf2{bottom:84.354450px;}
.y8c{bottom:88.533150px;}
.ybd{bottom:89.517000px;}
.y1e{bottom:91.216500px;}
.yf1{bottom:98.004450px;}
.ybc{bottom:103.167000px;}
.y8b{bottom:106.009950px;}
.y1d{bottom:110.716500px;}
.yf0{bottom:111.654450px;}
.y51{bottom:118.671000px;}
.ybb{bottom:120.643800px;}
.y8a{bottom:123.486750px;}
.yef{bottom:129.131250px;}
.y1c{bottom:130.216500px;}
.yba{bottom:134.293800px;}
.y89{bottom:137.136750px;}
.y50{bottom:141.853200px;}
.yee{bottom:142.781100px;}
.yb9{bottom:147.943800px;}
.y1a{bottom:149.716500px;}
.y88{bottom:154.613550px;}
.yed{bottom:160.258050px;}
.y4f{bottom:165.035400px;}
.yb8{bottom:165.420600px;}
.y87{bottom:168.263550px;}
.y1b{bottom:169.216500px;}
.yec{bottom:173.908050px;}
.yb7{bottom:179.070600px;}
.y86{bottom:185.740200px;}
.y4e{bottom:188.217450px;}
.y47{bottom:188.716500px;}
.yeb{bottom:191.384700px;}
.yb6{bottom:196.547400px;}
.y85{bottom:199.390200px;}
.yea{bottom:205.034700px;}
.y46{bottom:208.216500px;}
.yb5{bottom:210.197400px;}
.y4d{bottom:211.399650px;}
.y84{bottom:216.867000px;}
.ye9{bottom:222.511500px;}
.yb4{bottom:223.847400px;}
.y45{bottom:227.716500px;}
.y83{bottom:230.517000px;}
.y4c{bottom:234.581850px;}
.ye8{bottom:236.161500px;}
.y19{bottom:236.998050px;}
.yb3{bottom:237.497400px;}
.y44{bottom:247.216500px;}
.y82{bottom:247.993800px;}
.ye7{bottom:249.811500px;}
.y18{bottom:254.473050px;}
.yb2{bottom:254.974050px;}
.y4b{bottom:257.764050px;}
.y81{bottom:261.643800px;}
.ye6{bottom:263.461500px;}
.y43{bottom:266.716500px;}
.yb1{bottom:268.624050px;}
.y17{bottom:271.948050px;}
.y80{bottom:279.120600px;}
.ye5{bottom:280.938300px;}
.y4a{bottom:280.946250px;}
.yb0{bottom:282.274050px;}
.y42{bottom:286.216500px;}
.y7f{bottom:292.770600px;}
.ye4{bottom:294.588300px;}
.yaf{bottom:295.924050px;}
.y49{bottom:304.128300px;}
.y41{bottom:305.716500px;}
.ye3{bottom:308.238300px;}
.y7e{bottom:310.247400px;}
.y16{bottom:310.682850px;}
.yae{bottom:313.400850px;}
.y7d{bottom:323.897250px;}
.y40{bottom:325.216500px;}
.ye2{bottom:325.715100px;}
.yad{bottom:327.050850px;}
.y48{bottom:327.310500px;}
.y15{bottom:328.157850px;}
.ye1{bottom:339.365100px;}
.y7c{bottom:341.374050px;}
.yac{bottom:344.527650px;}
.y3f{bottom:344.716500px;}
.y14{bottom:345.632850px;}
.ye0{bottom:353.015100px;}
.y7b{bottom:355.024050px;}
.yab{bottom:358.177650px;}
.y52{bottom:358.235400px;}
.y13{bottom:363.107850px;}
.y3e{bottom:364.216500px;}
.ydf{bottom:366.665100px;}
.yaa{bottom:371.827650px;}
.y7a{bottom:372.500850px;}
.y12{bottom:380.582850px;}
.y3d{bottom:383.716500px;}
.yde{bottom:384.141750px;}
.ya9{bottom:389.304450px;}
.y79{bottom:389.977650px;}
.ydd{bottom:397.791750px;}
.y11{bottom:398.057850px;}
.ya8{bottom:402.954450px;}
.y3c{bottom:403.216500px;}
.y78{bottom:403.627650px;}
.ydc{bottom:415.268550px;}
.y10{bottom:415.532850px;}
.ya7{bottom:420.431250px;}
.y77{bottom:421.104450px;}
.y3b{bottom:422.716500px;}
.ydb{bottom:428.918550px;}
.yf{bottom:433.007850px;}
.ya6{bottom:434.081250px;}
.y76{bottom:434.754450px;}
.y3a{bottom:442.216500px;}
.yda{bottom:442.568550px;}
.ya5{bottom:447.731250px;}
.ye{bottom:450.482850px;}
.y75{bottom:452.231250px;}
.yd9{bottom:460.045350px;}
.y39{bottom:461.716500px;}
.ya4{bottom:465.207900px;}
.y74{bottom:465.881250px;}
.yd{bottom:467.957850px;}
.yd8{bottom:477.522150px;}
.ya3{bottom:478.857900px;}
.y38{bottom:481.216500px;}
.y54{bottom:481.408350px;}
.y73{bottom:483.357900px;}
.yc{bottom:485.432850px;}
.yd7{bottom:491.172150px;}
.ya2{bottom:496.334700px;}
.y53{bottom:496.408350px;}
.y72{bottom:497.008050px;}
.y37{bottom:500.716500px;}
.yb{bottom:502.907850px;}
.yd6{bottom:504.822150px;}
.ya1{bottom:509.984700px;}
.y71{bottom:514.484700px;}
.yfb{bottom:518.472150px;}
.y36{bottom:520.216500px;}
.ya{bottom:520.382850px;}
.yd5{bottom:522.298950px;}
.y70{bottom:528.134700px;}
.yfa{bottom:532.122150px;}
.ya0{bottom:535.788300px;}
.yd4{bottom:535.948950px;}
.y57{bottom:537.102150px;}
.y9{bottom:537.857850px;}
.y35{bottom:539.716500px;}
.y6f{bottom:545.611500px;}
.yd3{bottom:549.598950px;}
.y56{bottom:552.102150px;}
.y8{bottom:555.332850px;}
.y34{bottom:559.216500px;}
.y6e{bottom:563.088300px;}
.yf9{bottom:563.248950px;}
.yd2{bottom:567.075750px;}
.y7{bottom:572.807850px;}
.y6d{bottom:576.738300px;}
.y33{bottom:578.716500px;}
.yd1{bottom:580.725750px;}
.y9f{bottom:588.218700px;}
.y6{bottom:590.282850px;}
.y6c{bottom:590.388300px;}
.yd0{bottom:594.375750px;}
.yf8{bottom:598.202400px;}
.y32{bottom:598.216500px;}
.y9e{bottom:605.695350px;}
.y5{bottom:607.757850px;}
.y6b{bottom:607.865100px;}
.ycf{bottom:608.025750px;}
.yf7{bottom:611.852400px;}
.y55{bottom:611.888700px;}
.y31{bottom:617.716500px;}
.y9d{bottom:619.345350px;}
.y6a{bottom:621.515100px;}
.yce{bottom:625.502400px;}
.yf6{bottom:629.329200px;}
.y9c{bottom:636.822150px;}
.y30{bottom:637.216500px;}
.y69{bottom:638.991900px;}
.ycd{bottom:639.152400px;}
.yf5{bottom:642.979200px;}
.y9b{bottom:650.472150px;}
.y4{bottom:650.744700px;}
.y68{bottom:652.641750px;}
.ycc{bottom:656.629200px;}
.y2f{bottom:656.716500px;}
.y9a{bottom:667.948950px;}
.y67{bottom:670.118550px;}
.ycb{bottom:670.279200px;}
.y3{bottom:673.244700px;}
.y2e{bottom:676.216500px;}
.y99{bottom:681.598950px;}
.y66{bottom:687.595350px;}
.yca{bottom:687.756000px;}
.y2d{bottom:695.716500px;}
.y65{bottom:701.245350px;}
.y2{bottom:704.248650px;}
.yc9{bottom:705.232800px;}
.y98{bottom:707.402400px;}
.y2c{bottom:715.216500px;}
.y64{bottom:718.722150px;}
.yc8{bottom:718.882800px;}
.yf4{bottom:732.532800px;}
.y2b{bottom:734.716500px;}
.y63{bottom:736.198950px;}
.yc7{bottom:736.359600px;}
.yc6{bottom:750.009450px;}
.y62{bottom:753.675600px;}
.y2a{bottom:754.216500px;}
.y97{bottom:759.832800px;}
.yc5{bottom:763.659600px;}
.y61{bottom:771.152400px;}
.y96{bottom:773.482800px;}
.y29{bottom:773.716500px;}
.yf3{bottom:777.309600px;}
.yc4{bottom:781.136400px;}
.y60{bottom:784.802550px;}
.y95{bottom:790.959600px;}
.y28{bottom:793.216500px;}
.yc3{bottom:794.786250px;}
.y5f{bottom:802.279200px;}
.y94{bottom:808.436250px;}
.yc2{bottom:812.263050px;}
.y27{bottom:812.716500px;}
.y5e{bottom:819.756000px;}
.y93{bottom:822.086400px;}
.yc1{bottom:825.913050px;}
.y26{bottom:832.216500px;}
.y5d{bottom:837.232800px;}
.y92{bottom:839.563050px;}
.yc0{bottom:843.389850px;}
.y25{bottom:851.716500px;}
.y91{bottom:853.213050px;}
.y5c{bottom:854.709450px;}
.ybf{bottom:857.039850px;}
.y90{bottom:870.689850px;}
.y24{bottom:871.216500px;}
.y5b{bottom:872.186250px;}
.y8f{bottom:884.339850px;}
.y5a{bottom:889.663050px;}
.y23{bottom:890.716500px;}
.y8e{bottom:901.816650px;}
.y22{bottom:910.216500px;}
.y59{bottom:915.466650px;}
.y1f{bottom:942.925800px;}
.y20{bottom:983.818350px;}
.y21{bottom:983.865900px;}
.y1{bottom:984.053850px;}
.he{height:33.504000px;}
.h11{height:35.598000px;}
.h14{height:37.440000px;}
.h13{height:38.376000px;}
.ha{height:38.400000px;}
.h5{height:38.739000px;}
.hf{height:39.360000px;}
.hc{height:40.064400px;}
.h12{height:41.787600px;}
.hd{height:41.820000px;}
.h6{height:45.510000px;}
.h8{height:46.560000px;}
.h10{height:47.724000px;}
.h2{height:49.200000px;}
.hb{height:56.580000px;}
.h9{height:63.104365px;}
.h4{height:66.420000px;}
.h3{height:123.000000px;}
.h7{height:202.560000px;}
.h1{height:1050.000000px;}
.h0{height:1050.235500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:48.047250px;}
.x8{left:78.661500px;}
.x9{left:95.669250px;}
.x10{left:99.921300px;}
.x15{left:108.425250px;}
.xe{left:133.228350px;}
.x4{left:136.061400px;}
.x2{left:140.314950px;}
.xf{left:150.236250px;}
.x6{left:155.515800px;}
.xb{left:157.322850px;}
.xc{left:161.574750px;}
.x14{left:170.078700px;}
.x5{left:172.522650px;}
.x12{left:178.582650px;}
.x3{left:182.834700px;}
.x13{left:650.850150px;}
.x11{left:652.065300px;}
.xa{left:653.190300px;}
.x1{left:654.270450px;}
.xd{left:655.725150px;}
.x16{left:656.790150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:138.666667pt;}
.ls3{letter-spacing:-4.533333pt;}
.ls5{letter-spacing:-0.723259pt;}
.ls6{letter-spacing:-0.206933pt;}
.ls4{letter-spacing:-0.072000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.296000pt;}
.ls1{letter-spacing:0.789333pt;}
.ls7{letter-spacing:6.484800pt;}
.ws2{word-spacing:-18.965463pt;}
.ws73{word-spacing:-15.394667pt;}
.ws0{word-spacing:-13.172000pt;}
.ws2f{word-spacing:-11.588267pt;}
.wse5{word-spacing:-11.106667pt;}
.ws109{word-spacing:-10.441600pt;}
.ws107{word-spacing:-10.067200pt;}
.ws10a{word-spacing:-9.318400pt;}
.ws61{word-spacing:-3.517867pt;}
.wsbe{word-spacing:-3.104000pt;}
.wsc7{word-spacing:-2.897067pt;}
.wsdb{word-spacing:-2.741867pt;}
.wsdd{word-spacing:-2.586667pt;}
.ws7e{word-spacing:-2.483200pt;}
.ws3f{word-spacing:-2.431467pt;}
.wsd3{word-spacing:-2.379733pt;}
.wsb8{word-spacing:-2.328000pt;}
.ws35{word-spacing:-2.276267pt;}
.ws40{word-spacing:-2.224533pt;}
.ws9a{word-spacing:-2.172800pt;}
.wsaf{word-spacing:-2.121067pt;}
.ws6b{word-spacing:-2.069333pt;}
.ws28{word-spacing:-2.017600pt;}
.wscb{word-spacing:-1.965867pt;}
.ws38{word-spacing:-1.914133pt;}
.ws67{word-spacing:-1.862400pt;}
.wsd9{word-spacing:-1.810667pt;}
.ws7d{word-spacing:-1.758933pt;}
.ws78{word-spacing:-1.707200pt;}
.wsb0{word-spacing:-1.655467pt;}
.ws2e{word-spacing:-1.552000pt;}
.ws16{word-spacing:-1.500267pt;}
.ws5c{word-spacing:-1.448533pt;}
.wsb4{word-spacing:-1.396800pt;}
.ws97{word-spacing:-1.345067pt;}
.ws60{word-spacing:-1.293333pt;}
.ws5e{word-spacing:-1.241600pt;}
.ws1b{word-spacing:-1.189867pt;}
.ws27{word-spacing:-1.138133pt;}
.wsbf{word-spacing:-1.086400pt;}
.wsd1{word-spacing:-1.034667pt;}
.ws30{word-spacing:-0.982933pt;}
.wsdf{word-spacing:-0.931200pt;}
.ws69{word-spacing:-0.879467pt;}
.wse3{word-spacing:-0.827733pt;}
.wsa7{word-spacing:-0.776000pt;}
.wsda{word-spacing:-0.724267pt;}
.ws3e{word-spacing:-0.672533pt;}
.ws59{word-spacing:-0.569067pt;}
.ws29{word-spacing:-0.517333pt;}
.ws75{word-spacing:-0.465600pt;}
.wsc4{word-spacing:-0.413867pt;}
.ws4b{word-spacing:-0.362133pt;}
.ws1{word-spacing:-0.274670pt;}
.wsa5{word-spacing:-0.258667pt;}
.wsa4{word-spacing:-0.206933pt;}
.wsd4{word-spacing:-0.155200pt;}
.wsc2{word-spacing:-0.103467pt;}
.ws74{word-spacing:-0.051733pt;}
.ws3{word-spacing:0.000000pt;}
.ws18{word-spacing:0.051733pt;}
.wsac{word-spacing:0.103467pt;}
.ws41{word-spacing:0.155200pt;}
.wsc0{word-spacing:0.206933pt;}
.wsc9{word-spacing:0.258667pt;}
.ws5{word-spacing:0.288000pt;}
.ws15{word-spacing:0.310400pt;}
.ws11{word-spacing:0.465600pt;}
.wsd8{word-spacing:0.517333pt;}
.wsf1{word-spacing:0.620800pt;}
.ws95{word-spacing:0.672533pt;}
.wsba{word-spacing:0.724267pt;}
.ws80{word-spacing:0.776000pt;}
.ws51{word-spacing:0.827733pt;}
.ws33{word-spacing:0.879467pt;}
.ws3a{word-spacing:0.931200pt;}
.wsa3{word-spacing:0.982933pt;}
.ws53{word-spacing:1.034667pt;}
.wse8{word-spacing:1.086400pt;}
.ws2a{word-spacing:1.138133pt;}
.ws32{word-spacing:1.189867pt;}
.ws82{word-spacing:1.241600pt;}
.wsef{word-spacing:1.293333pt;}
.wsa{word-spacing:1.345067pt;}
.ws86{word-spacing:1.396800pt;}
.ws36{word-spacing:1.448533pt;}
.ws9{word-spacing:1.500267pt;}
.wsd2{word-spacing:1.552000pt;}
.ws31{word-spacing:1.603733pt;}
.ws13{word-spacing:1.655467pt;}
.ws26{word-spacing:1.707200pt;}
.ws56{word-spacing:1.758933pt;}
.ws3b{word-spacing:1.810667pt;}
.ws58{word-spacing:1.862400pt;}
.wsa6{word-spacing:1.914133pt;}
.wsb1{word-spacing:1.965867pt;}
.ws4{word-spacing:2.000000pt;}
.wsb{word-spacing:2.017600pt;}
.ws48{word-spacing:2.069333pt;}
.wsdc{word-spacing:2.121067pt;}
.ws4d{word-spacing:2.172800pt;}
.ws10{word-spacing:2.224533pt;}
.ws55{word-spacing:2.276267pt;}
.ws8e{word-spacing:2.328000pt;}
.ws9f{word-spacing:2.379733pt;}
.ws54{word-spacing:2.431467pt;}
.ws2c{word-spacing:2.483200pt;}
.ws37{word-spacing:2.534933pt;}
.ws42{word-spacing:2.586667pt;}
.ws66{word-spacing:2.638400pt;}
.wsff{word-spacing:2.690133pt;}
.ws6{word-spacing:2.793600pt;}
.ws57{word-spacing:2.845333pt;}
.ws70{word-spacing:2.897067pt;}
.ws24{word-spacing:2.948800pt;}
.ws43{word-spacing:3.000533pt;}
.ws17{word-spacing:3.052267pt;}
.ws83{word-spacing:3.104000pt;}
.wsce{word-spacing:3.155733pt;}
.wsc3{word-spacing:3.207467pt;}
.ws8b{word-spacing:3.259200pt;}
.ws62{word-spacing:3.310933pt;}
.wsea{word-spacing:3.362667pt;}
.ws94{word-spacing:3.414400pt;}
.ws22{word-spacing:3.466133pt;}
.wsaa{word-spacing:3.517867pt;}
.ws65{word-spacing:3.569600pt;}
.ws4a{word-spacing:3.621333pt;}
.ws87{word-spacing:3.673067pt;}
.wsd6{word-spacing:3.724800pt;}
.wsed{word-spacing:3.776533pt;}
.wsd{word-spacing:3.880000pt;}
.ws77{word-spacing:3.931733pt;}
.ws5d{word-spacing:3.983467pt;}
.wsbc{word-spacing:4.035200pt;}
.ws99{word-spacing:4.138667pt;}
.ws93{word-spacing:4.190400pt;}
.wsc8{word-spacing:4.293867pt;}
.ws1e{word-spacing:4.345600pt;}
.ws5a{word-spacing:4.397333pt;}
.ws1d{word-spacing:4.449067pt;}
.ws91{word-spacing:4.500800pt;}
.wsa2{word-spacing:4.552533pt;}
.wse1{word-spacing:4.604267pt;}
.ws6f{word-spacing:4.656000pt;}
.ws8f{word-spacing:4.707733pt;}
.ws7b{word-spacing:4.759467pt;}
.ws12{word-spacing:4.811200pt;}
.ws63{word-spacing:4.862933pt;}
.ws21{word-spacing:4.914667pt;}
.ws4c{word-spacing:4.966400pt;}
.ws1a{word-spacing:5.018133pt;}
.ws39{word-spacing:5.069867pt;}
.ws81{word-spacing:5.121600pt;}
.ws85{word-spacing:5.173333pt;}
.ws19{word-spacing:5.225067pt;}
.ws6a{word-spacing:5.276800pt;}
.ws20{word-spacing:5.328533pt;}
.ws9b{word-spacing:5.380267pt;}
.ws52{word-spacing:5.432000pt;}
.wsa0{word-spacing:5.535467pt;}
.ws68{word-spacing:5.587200pt;}
.ws105{word-spacing:5.638933pt;}
.ws34{word-spacing:5.690667pt;}
.ws9e{word-spacing:5.742400pt;}
.ws44{word-spacing:5.794133pt;}
.ws2b{word-spacing:5.897600pt;}
.wsad{word-spacing:5.949333pt;}
.ws4e{word-spacing:6.001067pt;}
.wse7{word-spacing:6.052800pt;}
.ws103{word-spacing:6.104533pt;}
.ws50{word-spacing:6.156267pt;}
.ws8c{word-spacing:6.208000pt;}
.ws5f{word-spacing:6.259733pt;}
.wse{word-spacing:6.311467pt;}
.ws45{word-spacing:6.363200pt;}
.ws100{word-spacing:6.466667pt;}
.ws23{word-spacing:6.518400pt;}
.ws7c{word-spacing:6.673600pt;}
.wsb7{word-spacing:6.725333pt;}
.ws8{word-spacing:6.777067pt;}
.wscc{word-spacing:6.828800pt;}
.ws9c{word-spacing:6.984000pt;}
.wsae{word-spacing:7.035733pt;}
.wsa8{word-spacing:7.087467pt;}
.wsfa{word-spacing:7.139200pt;}
.ws25{word-spacing:7.190933pt;}
.ws7a{word-spacing:7.242667pt;}
.wsd7{word-spacing:7.294400pt;}
.ws101{word-spacing:7.346133pt;}
.ws3d{word-spacing:7.397867pt;}
.ws9d{word-spacing:7.449600pt;}
.ws96{word-spacing:7.501333pt;}
.wsde{word-spacing:7.656533pt;}
.wscd{word-spacing:7.708267pt;}
.wsb9{word-spacing:7.760000pt;}
.wse6{word-spacing:7.811733pt;}
.ws76{word-spacing:7.915200pt;}
.wsb2{word-spacing:8.018667pt;}
.ws7{word-spacing:8.070400pt;}
.wsf2{word-spacing:8.122133pt;}
.wsec{word-spacing:8.173867pt;}
.ws6e{word-spacing:8.277333pt;}
.wseb{word-spacing:8.329067pt;}
.wsf6{word-spacing:8.380800pt;}
.wsc6{word-spacing:8.432533pt;}
.wsbb{word-spacing:8.536000pt;}
.ws90{word-spacing:8.587733pt;}
.ws8d{word-spacing:8.639467pt;}
.wse0{word-spacing:8.691200pt;}
.ws1c{word-spacing:8.742933pt;}
.wsf{word-spacing:8.846400pt;}
.wsf8{word-spacing:8.898133pt;}
.wsf4{word-spacing:8.949867pt;}
.wsc1{word-spacing:9.156800pt;}
.wsd0{word-spacing:9.208533pt;}
.ws79{word-spacing:9.260267pt;}
.ws7f{word-spacing:9.363733pt;}
.wsc5{word-spacing:9.467200pt;}
.ws6c{word-spacing:9.570667pt;}
.wsfe{word-spacing:9.622400pt;}
.wse9{word-spacing:9.674133pt;}
.wsab{word-spacing:9.725867pt;}
.wsf7{word-spacing:9.777600pt;}
.ws5b{word-spacing:9.881067pt;}
.ws3c{word-spacing:10.294933pt;}
.ws104{word-spacing:10.501867pt;}
.ws49{word-spacing:10.605333pt;}
.wsca{word-spacing:10.708800pt;}
.ws64{word-spacing:10.915733pt;}
.ws71{word-spacing:10.967467pt;}
.ws14{word-spacing:11.277867pt;}
.ws6d{word-spacing:11.381333pt;}
.wsfc{word-spacing:11.536533pt;}
.ws92{word-spacing:11.588267pt;}
.wsf0{word-spacing:11.640000pt;}
.wsb6{word-spacing:11.743467pt;}
.ws8a{word-spacing:12.105600pt;}
.wsfb{word-spacing:12.467733pt;}
.ws1f{word-spacing:12.985067pt;}
.ws84{word-spacing:13.088533pt;}
.wse2{word-spacing:13.554133pt;}
.wsa1{word-spacing:13.657600pt;}
.wsf5{word-spacing:13.709333pt;}
.ws46{word-spacing:13.916267pt;}
.ws106{word-spacing:14.226667pt;}
.ws4f{word-spacing:16.140800pt;}
.wsf3{word-spacing:16.399467pt;}
.wsd5{word-spacing:16.451200pt;}
.wsfd{word-spacing:17.330667pt;}
.wsb3{word-spacing:18.365333pt;}
.ws2d{word-spacing:19.296533pt;}
.wsb5{word-spacing:20.434667pt;}
.wsee{word-spacing:57.086933pt;}
.wscf{word-spacing:57.673600pt;}
.wsf9{word-spacing:59.486933pt;}
.ws102{word-spacing:60.126933pt;}
.wse4{word-spacing:63.273600pt;}
.ws98{word-spacing:64.766933pt;}
.ws47{word-spacing:65.353600pt;}
.wsa9{word-spacing:67.166933pt;}
.wsbd{word-spacing:67.806933pt;}
.wsc{word-spacing:68.446933pt;}
.ws108{word-spacing:69.140267pt;}
.ws72{word-spacing:70.953600pt;}
.ws10b{word-spacing:74.740267pt;}
.ws89{word-spacing:164.663467pt;}
.ws88{word-spacing:189.982933pt;}
._8{margin-left:-21.237333pt;}
._5{margin-left:-6.165173pt;}
._9{margin-left:-5.234667pt;}
._6{margin-left:-4.077333pt;}
._7{margin-left:-2.981333pt;}
._3{margin-left:-1.973333pt;}
._1{margin-left:-0.960000pt;}
._2{width:0.986667pt;}
._0{width:1.880000pt;}
._4{width:3.015368pt;}
._1b{width:6.208000pt;}
._c{width:199.478400pt;}
._10{width:202.892267pt;}
._e{width:204.044800pt;}
._12{width:206.690133pt;}
._14{width:211.852800pt;}
._16{width:219.660267pt;}
._19{width:221.963733pt;}
._d{width:274.081600pt;}
._17{width:701.601600pt;}
._11{width:705.836267pt;}
._15{width:789.921600pt;}
._f{width:889.804267pt;}
._13{width:994.508267pt;}
._b{width:1051.426133pt;}
._18{width:1072.034133pt;}
._1a{width:1223.672000pt;}
._a{width:1304.092267pt;}
.fsb{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs3{font-size:49.333333pt;}
.fs9{font-size:49.600000pt;}
.fs5{font-size:51.733333pt;}
.fs0{font-size:53.333333pt;}
.fs8{font-size:61.333333pt;}
.fs2{font-size:72.000000pt;}
.fs6{font-size:80.362133pt;}
.fs1{font-size:133.333333pt;}
.fs4{font-size:274.669867pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:63.748000pt;}
.y8d{bottom:66.562800pt;}
.ybe{bottom:67.437333pt;}
.yf2{bottom:74.981733pt;}
.y8c{bottom:78.696133pt;}
.ybd{bottom:79.570667pt;}
.y1e{bottom:81.081333pt;}
.yf1{bottom:87.115067pt;}
.ybc{bottom:91.704000pt;}
.y8b{bottom:94.231067pt;}
.y1d{bottom:98.414667pt;}
.yf0{bottom:99.248400pt;}
.y51{bottom:105.485333pt;}
.ybb{bottom:107.238933pt;}
.y8a{bottom:109.766000pt;}
.yef{bottom:114.783333pt;}
.y1c{bottom:115.748000pt;}
.yba{bottom:119.372267pt;}
.y89{bottom:121.899333pt;}
.y50{bottom:126.091733pt;}
.yee{bottom:126.916533pt;}
.yb9{bottom:131.505600pt;}
.y1a{bottom:133.081333pt;}
.y88{bottom:137.434267pt;}
.yed{bottom:142.451600pt;}
.y4f{bottom:146.698133pt;}
.yb8{bottom:147.040533pt;}
.y87{bottom:149.567600pt;}
.y1b{bottom:150.414667pt;}
.yec{bottom:154.584933pt;}
.yb7{bottom:159.173867pt;}
.y86{bottom:165.102400pt;}
.y4e{bottom:167.304400pt;}
.y47{bottom:167.748000pt;}
.yeb{bottom:170.119733pt;}
.yb6{bottom:174.708800pt;}
.y85{bottom:177.235733pt;}
.yea{bottom:182.253067pt;}
.y46{bottom:185.081333pt;}
.yb5{bottom:186.842133pt;}
.y4d{bottom:187.910800pt;}
.y84{bottom:192.770667pt;}
.ye9{bottom:197.788000pt;}
.yb4{bottom:198.975467pt;}
.y45{bottom:202.414667pt;}
.y83{bottom:204.904000pt;}
.y4c{bottom:208.517200pt;}
.ye8{bottom:209.921333pt;}
.y19{bottom:210.664933pt;}
.yb3{bottom:211.108800pt;}
.y44{bottom:219.748000pt;}
.y82{bottom:220.438933pt;}
.ye7{bottom:222.054667pt;}
.y18{bottom:226.198267pt;}
.yb2{bottom:226.643600pt;}
.y4b{bottom:229.123600pt;}
.y81{bottom:232.572267pt;}
.ye6{bottom:234.188000pt;}
.y43{bottom:237.081333pt;}
.yb1{bottom:238.776933pt;}
.y17{bottom:241.731600pt;}
.y80{bottom:248.107200pt;}
.ye5{bottom:249.722933pt;}
.y4a{bottom:249.730000pt;}
.yb0{bottom:250.910267pt;}
.y42{bottom:254.414667pt;}
.y7f{bottom:260.240533pt;}
.ye4{bottom:261.856267pt;}
.yaf{bottom:263.043600pt;}
.y49{bottom:270.336267pt;}
.y41{bottom:271.748000pt;}
.ye3{bottom:273.989600pt;}
.y7e{bottom:275.775467pt;}
.y16{bottom:276.162533pt;}
.yae{bottom:278.578533pt;}
.y7d{bottom:287.908667pt;}
.y40{bottom:289.081333pt;}
.ye2{bottom:289.524533pt;}
.yad{bottom:290.711867pt;}
.y48{bottom:290.942667pt;}
.y15{bottom:291.695867pt;}
.ye1{bottom:301.657867pt;}
.y7c{bottom:303.443600pt;}
.yac{bottom:306.246800pt;}
.y3f{bottom:306.414667pt;}
.y14{bottom:307.229200pt;}
.ye0{bottom:313.791200pt;}
.y7b{bottom:315.576933pt;}
.yab{bottom:318.380133pt;}
.y52{bottom:318.431467pt;}
.y13{bottom:322.762533pt;}
.y3e{bottom:323.748000pt;}
.ydf{bottom:325.924533pt;}
.yaa{bottom:330.513467pt;}
.y7a{bottom:331.111867pt;}
.y12{bottom:338.295867pt;}
.y3d{bottom:341.081333pt;}
.yde{bottom:341.459333pt;}
.ya9{bottom:346.048400pt;}
.y79{bottom:346.646800pt;}
.ydd{bottom:353.592667pt;}
.y11{bottom:353.829200pt;}
.ya8{bottom:358.181733pt;}
.y3c{bottom:358.414667pt;}
.y78{bottom:358.780133pt;}
.ydc{bottom:369.127600pt;}
.y10{bottom:369.362533pt;}
.ya7{bottom:373.716667pt;}
.y77{bottom:374.315067pt;}
.y3b{bottom:375.748000pt;}
.ydb{bottom:381.260933pt;}
.yf{bottom:384.895867pt;}
.ya6{bottom:385.850000pt;}
.y76{bottom:386.448400pt;}
.y3a{bottom:393.081333pt;}
.yda{bottom:393.394267pt;}
.ya5{bottom:397.983333pt;}
.ye{bottom:400.429200pt;}
.y75{bottom:401.983333pt;}
.yd9{bottom:408.929200pt;}
.y39{bottom:410.414667pt;}
.ya4{bottom:413.518133pt;}
.y74{bottom:414.116667pt;}
.yd{bottom:415.962533pt;}
.yd8{bottom:424.464133pt;}
.ya3{bottom:425.651467pt;}
.y38{bottom:427.748000pt;}
.y54{bottom:427.918533pt;}
.y73{bottom:429.651467pt;}
.yc{bottom:431.495867pt;}
.yd7{bottom:436.597467pt;}
.ya2{bottom:441.186400pt;}
.y53{bottom:441.251867pt;}
.y72{bottom:441.784933pt;}
.y37{bottom:445.081333pt;}
.yb{bottom:447.029200pt;}
.yd6{bottom:448.730800pt;}
.ya1{bottom:453.319733pt;}
.y71{bottom:457.319733pt;}
.yfb{bottom:460.864133pt;}
.y36{bottom:462.414667pt;}
.ya{bottom:462.562533pt;}
.yd5{bottom:464.265733pt;}
.y70{bottom:469.453067pt;}
.yfa{bottom:472.997467pt;}
.ya0{bottom:476.256267pt;}
.yd4{bottom:476.399067pt;}
.y57{bottom:477.424133pt;}
.y9{bottom:478.095867pt;}
.y35{bottom:479.748000pt;}
.y6f{bottom:484.988000pt;}
.yd3{bottom:488.532400pt;}
.y56{bottom:490.757467pt;}
.y8{bottom:493.629200pt;}
.y34{bottom:497.081333pt;}
.y6e{bottom:500.522933pt;}
.yf9{bottom:500.665733pt;}
.yd2{bottom:504.067333pt;}
.y7{bottom:509.162533pt;}
.y6d{bottom:512.656267pt;}
.y33{bottom:514.414667pt;}
.yd1{bottom:516.200667pt;}
.y9f{bottom:522.861067pt;}
.y6{bottom:524.695867pt;}
.y6c{bottom:524.789600pt;}
.yd0{bottom:528.334000pt;}
.yf8{bottom:531.735467pt;}
.y32{bottom:531.748000pt;}
.y9e{bottom:538.395867pt;}
.y5{bottom:540.229200pt;}
.y6b{bottom:540.324533pt;}
.ycf{bottom:540.467333pt;}
.yf7{bottom:543.868800pt;}
.y55{bottom:543.901067pt;}
.y31{bottom:549.081333pt;}
.y9d{bottom:550.529200pt;}
.y6a{bottom:552.457867pt;}
.yce{bottom:556.002133pt;}
.yf6{bottom:559.403733pt;}
.y9c{bottom:566.064133pt;}
.y30{bottom:566.414667pt;}
.y69{bottom:567.992800pt;}
.ycd{bottom:568.135467pt;}
.yf5{bottom:571.537067pt;}
.y9b{bottom:578.197467pt;}
.y4{bottom:578.439733pt;}
.y68{bottom:580.126000pt;}
.ycc{bottom:583.670400pt;}
.y2f{bottom:583.748000pt;}
.y9a{bottom:593.732400pt;}
.y67{bottom:595.660933pt;}
.ycb{bottom:595.803733pt;}
.y3{bottom:598.439733pt;}
.y2e{bottom:601.081333pt;}
.y99{bottom:605.865733pt;}
.y66{bottom:611.195867pt;}
.yca{bottom:611.338667pt;}
.y2d{bottom:618.414667pt;}
.y65{bottom:623.329200pt;}
.y2{bottom:625.998800pt;}
.yc9{bottom:626.873600pt;}
.y98{bottom:628.802133pt;}
.y2c{bottom:635.748000pt;}
.y64{bottom:638.864133pt;}
.yc8{bottom:639.006933pt;}
.yf4{bottom:651.140267pt;}
.y2b{bottom:653.081333pt;}
.y63{bottom:654.399067pt;}
.yc7{bottom:654.541867pt;}
.yc6{bottom:666.675067pt;}
.y62{bottom:669.933867pt;}
.y2a{bottom:670.414667pt;}
.y97{bottom:675.406933pt;}
.yc5{bottom:678.808533pt;}
.y61{bottom:685.468800pt;}
.y96{bottom:687.540267pt;}
.y29{bottom:687.748000pt;}
.yf3{bottom:690.941867pt;}
.yc4{bottom:694.343467pt;}
.y60{bottom:697.602267pt;}
.y95{bottom:703.075200pt;}
.y28{bottom:705.081333pt;}
.yc3{bottom:706.476667pt;}
.y5f{bottom:713.137067pt;}
.y94{bottom:718.610000pt;}
.yc2{bottom:722.011600pt;}
.y27{bottom:722.414667pt;}
.y5e{bottom:728.672000pt;}
.y93{bottom:730.743467pt;}
.yc1{bottom:734.144933pt;}
.y26{bottom:739.748000pt;}
.y5d{bottom:744.206933pt;}
.y92{bottom:746.278267pt;}
.yc0{bottom:749.679867pt;}
.y25{bottom:757.081333pt;}
.y91{bottom:758.411600pt;}
.y5c{bottom:759.741733pt;}
.ybf{bottom:761.813200pt;}
.y90{bottom:773.946533pt;}
.y24{bottom:774.414667pt;}
.y5b{bottom:775.276667pt;}
.y8f{bottom:786.079867pt;}
.y5a{bottom:790.811600pt;}
.y23{bottom:791.748000pt;}
.y8e{bottom:801.614800pt;}
.y22{bottom:809.081333pt;}
.y59{bottom:813.748133pt;}
.y1f{bottom:838.156267pt;}
.y20{bottom:874.505200pt;}
.y21{bottom:874.547467pt;}
.y1{bottom:874.714533pt;}
.he{height:29.781333pt;}
.h11{height:31.642667pt;}
.h14{height:33.280000pt;}
.h13{height:34.112000pt;}
.ha{height:34.133333pt;}
.h5{height:34.434667pt;}
.hf{height:34.986667pt;}
.hc{height:35.612800pt;}
.h12{height:37.144533pt;}
.hd{height:37.173333pt;}
.h6{height:40.453333pt;}
.h8{height:41.386667pt;}
.h10{height:42.421333pt;}
.h2{height:43.733333pt;}
.hb{height:50.293333pt;}
.h9{height:56.092769pt;}
.h4{height:59.040000pt;}
.h3{height:109.333333pt;}
.h7{height:180.053333pt;}
.h1{height:933.333333pt;}
.h0{height:933.542667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:42.708667pt;}
.x8{left:69.921333pt;}
.x9{left:85.039333pt;}
.x10{left:88.818933pt;}
.x15{left:96.378000pt;}
.xe{left:118.425200pt;}
.x4{left:120.943467pt;}
.x2{left:124.724400pt;}
.xf{left:133.543333pt;}
.x6{left:138.236267pt;}
.xb{left:139.842533pt;}
.xc{left:143.622000pt;}
.x14{left:151.181067pt;}
.x5{left:153.353467pt;}
.x12{left:158.740133pt;}
.x3{left:162.519733pt;}
.x13{left:578.533467pt;}
.x11{left:579.613600pt;}
.xa{left:580.613600pt;}
.x1{left:581.573733pt;}
.xd{left:582.866800pt;}
.x16{left:583.813467pt;}
}




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