
    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_bdf51a28624deda570d6b7d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_ccea2cf350736860d4d10978.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fbe6c3d8c6b72220f7c70b99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.684000;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_0186612ef870c9b2362b7115.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686000;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_1aeface3e16632b29e42890a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_52bfa0f876cbb733d04abc98.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_8e352a146097c2c69a5b2000.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896000;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_ceeb40958e43b2788101cd00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_0a9ce4d2ecac4022a638b992.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_bf71e091bc48c5a20d651e5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.984525px;}
.ls1{letter-spacing:2.990525px;}
.ls6{letter-spacing:20.072338px;}
.ls7{letter-spacing:20.074438px;}
.ls5{letter-spacing:23.776438px;}
.ls2{letter-spacing:30.630532px;}
.ls3{letter-spacing:30.636532px;}
.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;}
}
.ws22{word-spacing:-16.605662px;}
.ws69{word-spacing:-15.278643px;}
.ws56{word-spacing:-3.275703px;}
.wse8{word-spacing:-2.824416px;}
.ws65{word-spacing:-2.797498px;}
.wsa9{word-spacing:-2.618171px;}
.wsdc{word-spacing:-2.319293px;}
.ws2f{word-spacing:-2.259518px;}
.wsb8{word-spacing:-1.841088px;}
.ws7d{word-spacing:-1.661762px;}
.wse6{word-spacing:-1.640851px;}
.ws28{word-spacing:-1.482435px;}
.ws66{word-spacing:-1.422659px;}
.ws98{word-spacing:-1.303108px;}
.ws21{word-spacing:-1.243332px;}
.ws2d{word-spacing:-1.183557px;}
.wseb{word-spacing:-1.156666px;}
.ws78{word-spacing:-1.004230px;}
.wse1{word-spacing:-0.995270px;}
.ws5e{word-spacing:-0.944454px;}
.wsd9{word-spacing:-0.884679px;}
.wsdf{word-spacing:-0.618682px;}
.ws5c{word-spacing:-0.526025px;}
.ws2e{word-spacing:-0.466250px;}
.wsc0{word-spacing:-0.406474px;}
.wsa8{word-spacing:-0.286923px;}
.ws97{word-spacing:-0.227147px;}
.wsa7{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws2a{word-spacing:-0.047820px;}
.ws26{word-spacing:0.000000px;}
.wsc9{word-spacing:0.011955px;}
.wsad{word-spacing:0.071731px;}
.wsfc{word-spacing:0.242093px;}
.ws68{word-spacing:0.251058px;}
.ws86{word-spacing:0.310833px;}
.ws59{word-spacing:0.430384px;}
.ws61{word-spacing:0.549936px;}
.ws96{word-spacing:0.609711px;}
.wscc{word-spacing:0.669487px;}
.ws35{word-spacing:0.729262px;}
.wse{word-spacing:0.780077px;}
.ws57{word-spacing:0.848814px;}
.wsa0{word-spacing:0.968365px;}
.ws24{word-spacing:1.028140px;}
.ws25{word-spacing:1.087916px;}
.wse4{word-spacing:1.102867px;}
.ws84{word-spacing:1.147692px;}
.wsfb{word-spacing:1.156666px;}
.wsd7{word-spacing:1.267243px;}
.ws5f{word-spacing:1.327018px;}
.ws1c{word-spacing:1.386794px;}
.wsf6{word-spacing:1.425658px;}
.ws58{word-spacing:1.446570px;}
.wsb5{word-spacing:1.506345px;}
.ws7c{word-spacing:1.566121px;}
.ws4f{word-spacing:1.625896px;}
.wsd4{word-spacing:1.649215px;}
.wsb{word-spacing:1.748448px;}
.ws37{word-spacing:1.805223px;}
.ws31{word-spacing:1.864999px;}
.wsbf{word-spacing:1.924774px;}
.ws20{word-spacing:2.104101px;}
.ws7a{word-spacing:2.163877px;}
.ws9{word-spacing:2.178835px;}
.ws67{word-spacing:2.223652px;}
.ws29{word-spacing:2.283428px;}
.wsc4{word-spacing:2.343204px;}
.ws92{word-spacing:2.402979px;}
.wsaf{word-spacing:2.462755px;}
.ws71{word-spacing:2.522530px;}
.ws6d{word-spacing:2.582306px;}
.ws9e{word-spacing:2.821408px;}
.wsac{word-spacing:2.881184px;}
.ws2b{word-spacing:2.940960px;}
.ws82{word-spacing:3.000735px;}
.ws4{word-spacing:3.039610px;}
.ws9c{word-spacing:3.060511px;}
.ws3{word-spacing:3.093408px;}
.wsde{word-spacing:3.096918px;}
.wsa6{word-spacing:3.180062px;}
.ws8{word-spacing:3.201005px;}
.wsb9{word-spacing:3.239838px;}
.wsf7{word-spacing:3.254803px;}
.ws1{word-spacing:3.299613px;}
.ws2{word-spacing:3.359389px;}
.wsba{word-spacing:3.419164px;}
.wsc6{word-spacing:3.478940px;}
.wsfa{word-spacing:3.523795px;}
.ws3f{word-spacing:3.538716px;}
.ws7b{word-spacing:3.598491px;}
.ws9f{word-spacing:3.658267px;}
.wsfd{word-spacing:3.685190px;}
.wsb1{word-spacing:3.718042px;}
.ws7{word-spacing:3.738989px;}
.ws75{word-spacing:3.777818px;}
.ws70{word-spacing:3.837594px;}
.wsd2{word-spacing:3.897369px;}
.ws34{word-spacing:3.957145px;}
.ws23{word-spacing:3.969100px;}
.ws7e{word-spacing:4.016920px;}
.wsa2{word-spacing:4.076696px;}
.ws47{word-spacing:4.136472px;}
.ws5b{word-spacing:4.196247px;}
.ws81{word-spacing:4.256023px;}
.ws60{word-spacing:4.327753px;}
.wse7{word-spacing:4.384570px;}
.ws2c{word-spacing:4.435350px;}
.wsf9{word-spacing:4.438368px;}
.ws4c{word-spacing:4.483200px;}
.ws30{word-spacing:4.495125px;}
.wsc5{word-spacing:4.547376px;}
.ws46{word-spacing:4.554901px;}
.wsd5{word-spacing:4.566856px;}
.wsc{word-spacing:4.599763px;}
.ws64{word-spacing:4.614676px;}
.wsc2{word-spacing:4.734228px;}
.ws9d{word-spacing:4.794003px;}
.ws17{word-spacing:4.814957px;}
.ws93{word-spacing:4.913554px;}
.ws16{word-spacing:4.976352px;}
.ws5d{word-spacing:4.985285px;}
.ws51{word-spacing:5.092881px;}
.wse0{word-spacing:5.137747px;}
.ws1d{word-spacing:5.152657px;}
.ws9b{word-spacing:5.212432px;}
.wsc3{word-spacing:5.224387px;}
.ws79{word-spacing:5.272208px;}
.wsbe{word-spacing:5.284163px;}
.ws10{word-spacing:5.299142px;}
.wsd6{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.wsf2{word-spacing:5.460538px;}
.ws54{word-spacing:5.511310px;}
.ws11{word-spacing:5.568134px;}
.wsb0{word-spacing:5.571086px;}
.ws39{word-spacing:5.630862px;}
.ws6a{word-spacing:5.690637px;}
.wsae{word-spacing:5.750413px;}
.ws48{word-spacing:5.810188px;}
.wsd{word-spacing:5.837126px;}
.ws94{word-spacing:5.869964px;}
.wsab{word-spacing:5.929740px;}
.wsd1{word-spacing:6.061246px;}
.ws32{word-spacing:6.109066px;}
.ws3d{word-spacing:6.168842px;}
.wsa{word-spacing:6.213715px;}
.wsa3{word-spacing:6.228618px;}
.wsc7{word-spacing:6.240573px;}
.ws3a{word-spacing:6.288393px;}
.wsee{word-spacing:6.321312px;}
.wsb2{word-spacing:6.393427px;}
.ws1f{word-spacing:6.407944px;}
.wsec{word-spacing:6.428909px;}
.ws87{word-spacing:6.467720px;}
.ws6b{word-spacing:6.527496px;}
.wsf{word-spacing:6.536506px;}
.wsa5{word-spacing:6.587271px;}
.ws33{word-spacing:6.647047px;}
.ws8f{word-spacing:6.826374px;}
.wsda{word-spacing:6.886149px;}
.wse9{word-spacing:6.913094px;}
.ws27{word-spacing:6.945925px;}
.ws72{word-spacing:7.005700px;}
.ws5a{word-spacing:7.065476px;}
.ws3c{word-spacing:7.125252px;}
.wse2{word-spacing:7.182086px;}
.ws49{word-spacing:7.185027px;}
.ws73{word-spacing:7.304578px;}
.ws88{word-spacing:7.364354px;}
.ws50{word-spacing:7.424130px;}
.wsd8{word-spacing:7.483905px;}
.ws8c{word-spacing:7.543681px;}
.ws40{word-spacing:7.603456px;}
.ws3b{word-spacing:7.663232px;}
.ws15{word-spacing:7.720070px;}
.wsce{word-spacing:7.723008px;}
.ws74{word-spacing:7.782783px;}
.wsd3{word-spacing:7.791705px;}
.ws1e{word-spacing:7.794738px;}
.ws89{word-spacing:7.842559px;}
.wsf0{word-spacing:7.935264px;}
.ws53{word-spacing:7.962110px;}
.ws44{word-spacing:8.081661px;}
.ws63{word-spacing:8.141437px;}
.ws4a{word-spacing:8.201212px;}
.ws38{word-spacing:8.213167px;}
.ws8b{word-spacing:8.260988px;}
.wsdd{word-spacing:8.320764px;}
.ws4d{word-spacing:8.380539px;}
.wsc1{word-spacing:8.440315px;}
.wsf8{word-spacing:8.473248px;}
.ws8e{word-spacing:8.679417px;}
.ws9a{word-spacing:8.739193px;}
.ws7f{word-spacing:8.749907px;}
.wsef{word-spacing:8.796038px;}
.ws45{word-spacing:8.798968px;}
.ws36{word-spacing:8.858744px;}
.ws19{word-spacing:8.903635px;}
.ws83{word-spacing:8.940931px;}
.wsed{word-spacing:9.118829px;}
.wscd{word-spacing:9.169577px;}
.wsbb{word-spacing:9.277173px;}
.wsbd{word-spacing:9.336949px;}
.ws18{word-spacing:9.387821px;}
.ws41{word-spacing:9.396724px;}
.wsca{word-spacing:9.456500px;}
.wscf{word-spacing:9.528231px;}
.ws14{word-spacing:9.549216px;}
.ws99{word-spacing:9.635827px;}
.ws76{word-spacing:9.690931px;}
.wsc8{word-spacing:9.691704px;}
.ws4b{word-spacing:9.755378px;}
.wsf1{word-spacing:9.764410px;}
.ws52{word-spacing:9.815154px;}
.ws6c{word-spacing:9.886884px;}
.ws77{word-spacing:9.934705px;}
.ws43{word-spacing:10.006435px;}
.ws6f{word-spacing:10.054256px;}
.ws3e{word-spacing:10.114032px;}
.wse3{word-spacing:10.194797px;}
.wsa4{word-spacing:10.293358px;}
.ws6e{word-spacing:10.353134px;}
.wsb6{word-spacing:10.472685px;}
.ws62{word-spacing:10.484640px;}
.wsb7{word-spacing:10.532461px;}
.ws55{word-spacing:10.544486px;}
.ws42{word-spacing:11.189992px;}
.wsea{word-spacing:11.216966px;}
.wse5{word-spacing:11.270765px;}
.ws85{word-spacing:11.436931px;}
.ws4e{word-spacing:11.548646px;}
.wsa1{word-spacing:11.608422px;}
.wscb{word-spacing:11.739928px;}
.ws91{word-spacing:11.787748px;}
.wsd0{word-spacing:12.038806px;}
.ws95{word-spacing:12.134331px;}
.wsb3{word-spacing:12.306931px;}
.ws8d{word-spacing:12.942931px;}
.wsaa{word-spacing:13.043036px;}
.ws80{word-spacing:13.399911px;}
.ws8a{word-spacing:13.761397px;}
.wsbc{word-spacing:14.002190px;}
.wsf4{word-spacing:15.198048px;}
.wsf5{word-spacing:15.520838px;}
.ws90{word-spacing:17.676931px;}
.ws12{word-spacing:22.003546px;}
.wsb4{word-spacing:22.456303px;}
.wsdb{word-spacing:24.760106px;}
.ws1a{word-spacing:27.592038px;}
.ws13{word-spacing:28.910509px;}
.ws6{word-spacing:29.830266px;}
.wsf3{word-spacing:39.622522px;}
.ws1b{word-spacing:58.281600px;}
._d{margin-left:-40.384666px;}
._14{margin-left:-32.282551px;}
._10{margin-left:-31.002028px;}
._e{margin-left:-30.000991px;}
._8{margin-left:-28.706830px;}
._5{margin-left:-27.706176px;}
._9{margin-left:-26.199821px;}
._f{margin-left:-23.021944px;}
._4{margin-left:-21.519360px;}
._b{margin-left:-20.518706px;}
._18{margin-left:-7.373908px;}
._3{margin-left:-6.186816px;}
._6{margin-left:-4.680461px;}
._0{margin-left:-2.668393px;}
._7{margin-left:-1.506355px;}
._2{width:1.054452px;}
._1{width:2.668393px;}
._11{width:3.804941px;}
._1c{width:5.150240px;}
._1e{width:13.722364px;}
._17{width:16.459799px;}
._1a{width:18.090498px;}
._a{width:19.119948px;}
._1b{width:20.959727px;}
._16{width:22.752995px;}
._19{width:24.646406px;}
._c{width:25.941574px;}
._12{width:27.056838px;}
._15{width:29.208760px;}
._1d{width:30.361740px;}
._13{width:80.697600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:266.956500px;}
.y105{bottom:283.395000px;}
.y26{bottom:284.889000px;}
.y104{bottom:299.833500px;}
.y25{bottom:302.821500px;}
.yc5{bottom:302.823000px;}
.y134{bottom:315.190500px;}
.y103{bottom:316.555500px;}
.y80{bottom:320.754000px;}
.y24{bottom:320.755500px;}
.y133{bottom:331.627500px;}
.yc4{bottom:337.039500px;}
.y23{bottom:338.688000px;}
.y132{bottom:348.066000px;}
.y102{bottom:352.348500px;}
.yc3{bottom:354.972000px;}
.y22{bottom:356.620500px;}
.y131{bottom:363.423000px;}
.yc2{bottom:372.904500px;}
.y21{bottom:374.553000px;}
.y130{bottom:379.861500px;}
.y7f{bottom:380.101500px;}
.yc1{bottom:391.171500px;}
.y20{bottom:392.485500px;}
.y12f{bottom:396.300000px;}
.y4c{bottom:396.646500px;}
.y7e{bottom:398.034000px;}
.y101{bottom:401.592000px;}
.yc0{bottom:409.105500px;}
.yea{bottom:410.418000px;}
.y5c{bottom:410.419500px;}
.y9e{bottom:410.779500px;}
.y12e{bottom:411.655500px;}
.y4b{bottom:414.580500px;}
.y7d{bottom:415.966500px;}
.y100{bottom:419.524500px;}
.ybf{bottom:427.038000px;}
.y1f{bottom:427.071000px;}
.y12d{bottom:428.094000px;}
.ye9{bottom:428.350500px;}
.y5b{bottom:428.352000px;}
.y9d{bottom:428.712000px;}
.y4a{bottom:432.513000px;}
.y7c{bottom:433.899000px;}
.yff{bottom:437.457000px;}
.y12c{bottom:443.451000px;}
.ybe{bottom:444.970500px;}
.y5a{bottom:446.284500px;}
.y9c{bottom:446.644500px;}
.y49{bottom:450.445500px;}
.y7b{bottom:451.833000px;}
.yfe{bottom:455.389500px;}
.y12b{bottom:459.888000px;}
.ybd{bottom:462.903000px;}
.ye8{bottom:464.217000px;}
.y9b{bottom:464.577000px;}
.y48{bottom:468.378000px;}
.y7a{bottom:469.765500px;}
.yfd{bottom:473.322000px;}
.y1e{bottom:476.217000px;}
.y12a{bottom:476.326500px;}
.ybc{bottom:480.835500px;}
.ye7{bottom:482.149500px;}
.y9a{bottom:482.511000px;}
.y47{bottom:486.310500px;}
.y79{bottom:487.698000px;}
.yfc{bottom:491.256000px;}
.y129{bottom:491.683500px;}
.y59{bottom:497.752500px;}
.ye6{bottom:500.082000px;}
.y46{bottom:504.243000px;}
.y78{bottom:505.630500px;}
.y128{bottom:508.122000px;}
.y1d{bottom:508.773000px;}
.yfb{bottom:509.188500px;}
.yc7{bottom:514.086000px;}
.ybb{bottom:515.388000px;}
.ye5{bottom:518.014500px;}
.y99{bottom:520.179000px;}
.y45{bottom:522.177000px;}
.y77{bottom:523.563000px;}
.y127{bottom:524.560500px;}
.y1c{bottom:525.211500px;}
.yba{bottom:533.320500px;}
.ye4{bottom:535.948500px;}
.y126{bottom:539.916000px;}
.y44{bottom:540.109500px;}
.y76{bottom:541.495500px;}
.y1b{bottom:541.650000px;}
.yb9{bottom:551.253000px;}
.ye3{bottom:553.881000px;}
.yfa{bottom:555.442500px;}
.y125{bottom:556.354500px;}
.y43{bottom:558.042000px;}
.y1a{bottom:558.088500px;}
.y75{bottom:559.429500px;}
.yb8{bottom:569.520000px;}
.y98{bottom:569.803500px;}
.ye2{bottom:571.813500px;}
.y124{bottom:572.793000px;}
.yf9{bottom:573.375000px;}
.y19{bottom:574.527000px;}
.y42{bottom:575.974500px;}
.y74{bottom:577.362000px;}
.yb7{bottom:587.454000px;}
.y97{bottom:587.737500px;}
.y123{bottom:589.231500px;}
.ye1{bottom:589.746000px;}
.y18{bottom:590.965500px;}
.yf8{bottom:591.307500px;}
.y73{bottom:595.294500px;}
.y41{bottom:598.068000px;}
.y122{bottom:604.587000px;}
.yb6{bottom:605.386500px;}
.y96{bottom:606.030000px;}
.y17{bottom:607.404000px;}
.ye0{bottom:607.678500px;}
.yf7{bottom:609.240000px;}
.y72{bottom:613.227000px;}
.y40{bottom:616.002000px;}
.y121{bottom:621.025500px;}
.yb5{bottom:623.319000px;}
.y16{bottom:623.842500px;}
.y95{bottom:623.962500px;}
.ydf{bottom:625.611000px;}
.yf6{bottom:627.457500px;}
.y71{bottom:631.159500px;}
.y3f{bottom:633.934500px;}
.y120{bottom:636.382500px;}
.y15{bottom:640.281000px;}
.yb4{bottom:641.251500px;}
.y94{bottom:641.896500px;}
.yde{bottom:643.545000px;}
.yf5{bottom:645.390000px;}
.y70{bottom:649.092000px;}
.y3e{bottom:651.867000px;}
.y11f{bottom:652.821000px;}
.y14{bottom:656.719500px;}
.yb3{bottom:659.184000px;}
.y93{bottom:659.829000px;}
.ydd{bottom:661.477500px;}
.yf4{bottom:663.322500px;}
.y6f{bottom:667.026000px;}
.y11e{bottom:669.259500px;}
.y3d{bottom:669.799500px;}
.y13{bottom:673.156500px;}
.yb2{bottom:677.116500px;}
.y92{bottom:677.761500px;}
.ydc{bottom:679.410000px;}
.yf3{bottom:681.256500px;}
.y11d{bottom:684.615000px;}
.y6e{bottom:684.958500px;}
.y3c{bottom:687.732000px;}
.y12{bottom:689.595000px;}
.yb1{bottom:695.050500px;}
.y91{bottom:695.694000px;}
.ydb{bottom:697.342500px;}
.yf2{bottom:699.189000px;}
.y11c{bottom:701.053500px;}
.y6d{bottom:702.891000px;}
.y3b{bottom:705.664500px;}
.y11{bottom:706.033500px;}
.yb0{bottom:712.983000px;}
.y90{bottom:713.626500px;}
.yda{bottom:715.275000px;}
.yf1{bottom:717.121500px;}
.y11b{bottom:717.492000px;}
.y6c{bottom:720.823500px;}
.y10{bottom:722.472000px;}
.y3a{bottom:723.598500px;}
.yaf{bottom:730.915500px;}
.y8f{bottom:731.559000px;}
.yd9{bottom:733.207500px;}
.y11a{bottom:733.930500px;}
.yf0{bottom:735.054000px;}
.yf{bottom:738.910500px;}
.y39{bottom:741.531000px;}
.y6b{bottom:744.304500px;}
.yae{bottom:749.182500px;}
.y8e{bottom:749.493000px;}
.y119{bottom:750.369000px;}
.yd8{bottom:751.141500px;}
.yef{bottom:752.986500px;}
.ye{bottom:755.349000px;}
.y38{bottom:759.463500px;}
.y6a{bottom:762.237000px;}
.y118{bottom:766.807500px;}
.yad{bottom:767.116500px;}
.y8d{bottom:767.425500px;}
.yd7{bottom:769.074000px;}
.yee{bottom:770.919000px;}
.yd{bottom:771.787500px;}
.y37{bottom:777.396000px;}
.y69{bottom:780.171000px;}
.y117{bottom:782.163000px;}
.yac{bottom:785.049000px;}
.y8c{bottom:785.358000px;}
.yd6{bottom:787.006500px;}
.yc{bottom:788.226000px;}
.y36{bottom:795.328500px;}
.y68{bottom:798.103500px;}
.y116{bottom:798.601500px;}
.yab{bottom:802.981500px;}
.y8b{bottom:803.290500px;}
.yd5{bottom:804.939000px;}
.yed{bottom:808.207500px;}
.y115{bottom:815.040000px;}
.y67{bottom:816.036000px;}
.y35{bottom:817.423500px;}
.yaa{bottom:820.914000px;}
.y8a{bottom:821.223000px;}
.yd4{bottom:822.871500px;}
.y114{bottom:830.395500px;}
.y66{bottom:833.968500px;}
.y34{bottom:835.356000px;}
.ya9{bottom:838.846500px;}
.y89{bottom:839.155500px;}
.y58{bottom:839.895000px;}
.yd3{bottom:840.804000px;}
.yb{bottom:845.911500px;}
.y113{bottom:846.834000px;}
.y65{bottom:851.901000px;}
.y33{bottom:853.288500px;}
.ya8{bottom:856.780500px;}
.y88{bottom:857.089500px;}
.yec{bottom:857.449500px;}
.y57{bottom:857.827500px;}
.yd2{bottom:858.738000px;}
.y112{bottom:863.272500px;}
.ya{bottom:868.063500px;}
.y64{bottom:869.833500px;}
.y32{bottom:871.221000px;}
.y87{bottom:875.022000px;}
.ya7{bottom:875.047500px;}
.yeb{bottom:875.382000px;}
.y56{bottom:875.761500px;}
.yd1{bottom:876.670500px;}
.y111{bottom:878.629500px;}
.y9{bottom:878.788500px;}
.y63{bottom:887.767500px;}
.y31{bottom:889.153500px;}
.y86{bottom:892.954500px;}
.ya6{bottom:892.980000px;}
.yc6{bottom:893.316000px;}
.y55{bottom:893.694000px;}
.yd0{bottom:894.603000px;}
.y110{bottom:895.068000px;}
.y8{bottom:900.940500px;}
.y62{bottom:905.700000px;}
.y30{bottom:907.087500px;}
.ya5{bottom:910.912500px;}
.y85{bottom:911.248500px;}
.y10f{bottom:911.505000px;}
.y54{bottom:911.626500px;}
.y7{bottom:911.665500px;}
.ycf{bottom:912.535500px;}
.y61{bottom:923.632500px;}
.y2f{bottom:925.020000px;}
.y10e{bottom:926.862000px;}
.y6{bottom:928.104000px;}
.ya4{bottom:928.846500px;}
.y84{bottom:929.181000px;}
.y53{bottom:929.559000px;}
.yce{bottom:930.468000px;}
.y60{bottom:941.565000px;}
.y2e{bottom:942.952500px;}
.y10d{bottom:943.300500px;}
.ya3{bottom:946.779000px;}
.y83{bottom:947.113500px;}
.y52{bottom:947.491500px;}
.ycd{bottom:948.402000px;}
.y5{bottom:950.254500px;}
.y5f{bottom:959.497500px;}
.y10c{bottom:959.739000px;}
.y2d{bottom:960.885000px;}
.ya2{bottom:964.711500px;}
.y82{bottom:965.046000px;}
.y51{bottom:965.424000px;}
.ycc{bottom:966.334500px;}
.y4{bottom:975.862500px;}
.y10b{bottom:976.177500px;}
.y5e{bottom:977.431500px;}
.y2c{bottom:978.817500px;}
.ya1{bottom:982.644000px;}
.y81{bottom:982.978500px;}
.y50{bottom:983.358000px;}
.ycb{bottom:984.267000px;}
.y10a{bottom:991.533000px;}
.y3{bottom:993.795000px;}
.y5d{bottom:995.364000px;}
.ya0{bottom:1000.576500px;}
.y2b{bottom:1000.912500px;}
.y4f{bottom:1001.290500px;}
.yca{bottom:1002.199500px;}
.y109{bottom:1007.971500px;}
.y9f{bottom:1018.509000px;}
.y2a{bottom:1018.845000px;}
.y4e{bottom:1019.223000px;}
.yc9{bottom:1020.132000px;}
.y108{bottom:1024.410000px;}
.y29{bottom:1036.777500px;}
.y4d{bottom:1037.155500px;}
.yc8{bottom:1038.064500px;}
.y107{bottom:1040.848500px;}
.y2{bottom:1045.743000px;}
.y28{bottom:1054.710000px;}
.y106{bottom:1056.204000px;}
.y1{bottom:1072.642500px;}
.h4{height:23.850624px;}
.h6{height:37.336090px;}
.h5{height:40.348800px;}
.h8{height:44.831700px;}
.h3{height:49.473619px;}
.h7{height:50.498765px;}
.h2{height:60.598349px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:202.147500px;}
.x8{left:203.166000px;}
.x10{left:209.058000px;}
.x3{left:214.122000px;}
.xf{left:222.727500px;}
.xc{left:224.563500px;}
.x1{left:225.942000px;}
.xe{left:227.551500px;}
.xa{left:244.666500px;}
.x2{left:263.419500px;}
.xd{left:280.170000px;}
.x4{left:326.968500px;}
.x7{left:330.516000px;}
.x6{left:340.734000px;}
.x5{left:395.403000px;}
.x9{left:405.030000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.652911pt;}
.ls1{letter-spacing:2.658245pt;}
.ls6{letter-spacing:17.842079pt;}
.ls7{letter-spacing:17.843945pt;}
.ls5{letter-spacing:21.134612pt;}
.ls2{letter-spacing:27.227139pt;}
.ls3{letter-spacing:27.232473pt;}
.ws22{word-spacing:-14.760588pt;}
.ws69{word-spacing:-13.581016pt;}
.ws56{word-spacing:-2.911736pt;}
.wse8{word-spacing:-2.510592pt;}
.ws65{word-spacing:-2.486665pt;}
.wsa9{word-spacing:-2.327263pt;}
.wsdc{word-spacing:-2.061594pt;}
.ws2f{word-spacing:-2.008460pt;}
.wsb8{word-spacing:-1.636523pt;}
.ws7d{word-spacing:-1.477121pt;}
.wse6{word-spacing:-1.458534pt;}
.ws28{word-spacing:-1.317720pt;}
.ws66{word-spacing:-1.264586pt;}
.ws98{word-spacing:-1.158318pt;}
.ws21{word-spacing:-1.105184pt;}
.ws2d{word-spacing:-1.052051pt;}
.wseb{word-spacing:-1.028147pt;}
.ws78{word-spacing:-0.892649pt;}
.wse1{word-spacing:-0.884685pt;}
.ws5e{word-spacing:-0.839515pt;}
.wsd9{word-spacing:-0.786381pt;}
.wsdf{word-spacing:-0.549939pt;}
.ws5c{word-spacing:-0.467578pt;}
.ws2e{word-spacing:-0.414444pt;}
.wsc0{word-spacing:-0.361310pt;}
.wsa8{word-spacing:-0.255043pt;}
.ws97{word-spacing:-0.201909pt;}
.wsa7{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws2a{word-spacing:-0.042507pt;}
.ws26{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.010627pt;}
.wsad{word-spacing:0.063761pt;}
.wsfc{word-spacing:0.215194pt;}
.ws68{word-spacing:0.223162pt;}
.ws86{word-spacing:0.276296pt;}
.ws59{word-spacing:0.382564pt;}
.ws61{word-spacing:0.488832pt;}
.ws96{word-spacing:0.541965pt;}
.wscc{word-spacing:0.595099pt;}
.ws35{word-spacing:0.648233pt;}
.wse{word-spacing:0.693402pt;}
.ws57{word-spacing:0.754501pt;}
.wsa0{word-spacing:0.860769pt;}
.ws24{word-spacing:0.913903pt;}
.ws25{word-spacing:0.967036pt;}
.wse4{word-spacing:0.980326pt;}
.ws84{word-spacing:1.020170pt;}
.wsfb{word-spacing:1.028147pt;}
.wsd7{word-spacing:1.126438pt;}
.ws5f{word-spacing:1.179572pt;}
.ws1c{word-spacing:1.232706pt;}
.wsf6{word-spacing:1.267251pt;}
.ws58{word-spacing:1.285840pt;}
.wsb5{word-spacing:1.338973pt;}
.ws7c{word-spacing:1.392107pt;}
.ws4f{word-spacing:1.445241pt;}
.wsd4{word-spacing:1.465969pt;}
.wsb{word-spacing:1.554176pt;}
.ws37{word-spacing:1.604643pt;}
.ws31{word-spacing:1.657777pt;}
.wsbf{word-spacing:1.710911pt;}
.ws20{word-spacing:1.870312pt;}
.ws7a{word-spacing:1.923446pt;}
.ws9{word-spacing:1.936742pt;}
.ws67{word-spacing:1.976580pt;}
.ws29{word-spacing:2.029714pt;}
.wsc4{word-spacing:2.082848pt;}
.ws92{word-spacing:2.135981pt;}
.wsaf{word-spacing:2.189115pt;}
.ws71{word-spacing:2.242249pt;}
.ws6d{word-spacing:2.295383pt;}
.ws9e{word-spacing:2.507919pt;}
.wsac{word-spacing:2.561052pt;}
.ws2b{word-spacing:2.614186pt;}
.ws82{word-spacing:2.667320pt;}
.ws4{word-spacing:2.701875pt;}
.ws9c{word-spacing:2.720454pt;}
.ws3{word-spacing:2.749696pt;}
.wsde{word-spacing:2.752816pt;}
.wsa6{word-spacing:2.826722pt;}
.ws8{word-spacing:2.845338pt;}
.wsb9{word-spacing:2.879856pt;}
.wsf7{word-spacing:2.893158pt;}
.ws1{word-spacing:2.932989pt;}
.ws2{word-spacing:2.986123pt;}
.wsba{word-spacing:3.039257pt;}
.wsc6{word-spacing:3.092391pt;}
.wsfa{word-spacing:3.132262pt;}
.ws3f{word-spacing:3.145525pt;}
.ws7b{word-spacing:3.198659pt;}
.ws9f{word-spacing:3.251793pt;}
.wsfd{word-spacing:3.275725pt;}
.wsb1{word-spacing:3.304927pt;}
.ws7{word-spacing:3.323546pt;}
.ws75{word-spacing:3.358060pt;}
.ws70{word-spacing:3.411194pt;}
.wsd2{word-spacing:3.464328pt;}
.ws34{word-spacing:3.517462pt;}
.ws23{word-spacing:3.528089pt;}
.ws7e{word-spacing:3.570596pt;}
.wsa2{word-spacing:3.623730pt;}
.ws47{word-spacing:3.676864pt;}
.ws5b{word-spacing:3.729997pt;}
.ws81{word-spacing:3.783131pt;}
.ws60{word-spacing:3.846892pt;}
.wse7{word-spacing:3.897395pt;}
.ws2c{word-spacing:3.942533pt;}
.wsf9{word-spacing:3.945216pt;}
.ws4c{word-spacing:3.985067pt;}
.ws30{word-spacing:3.995667pt;}
.wsc5{word-spacing:4.042112pt;}
.ws46{word-spacing:4.048801pt;}
.wsd5{word-spacing:4.059427pt;}
.wsc{word-spacing:4.088678pt;}
.ws64{word-spacing:4.101935pt;}
.wsc2{word-spacing:4.208202pt;}
.ws9d{word-spacing:4.261336pt;}
.ws17{word-spacing:4.279962pt;}
.ws93{word-spacing:4.367604pt;}
.ws16{word-spacing:4.423424pt;}
.ws5d{word-spacing:4.431364pt;}
.ws51{word-spacing:4.527005pt;}
.wse0{word-spacing:4.566886pt;}
.ws1d{word-spacing:4.580139pt;}
.ws9b{word-spacing:4.633273pt;}
.wsc3{word-spacing:4.643900pt;}
.ws79{word-spacing:4.686407pt;}
.wsbe{word-spacing:4.697034pt;}
.ws10{word-spacing:4.710349pt;}
.wsd6{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.wsf2{word-spacing:4.853811pt;}
.ws54{word-spacing:4.898943pt;}
.ws11{word-spacing:4.949453pt;}
.wsb0{word-spacing:4.952076pt;}
.ws39{word-spacing:5.005210pt;}
.ws6a{word-spacing:5.058344pt;}
.wsae{word-spacing:5.111478pt;}
.ws48{word-spacing:5.164612pt;}
.wsd{word-spacing:5.188557pt;}
.ws94{word-spacing:5.217746pt;}
.wsab{word-spacing:5.270880pt;}
.wsd1{word-spacing:5.387774pt;}
.ws32{word-spacing:5.430281pt;}
.ws3d{word-spacing:5.483415pt;}
.wsa{word-spacing:5.523302pt;}
.wsa3{word-spacing:5.536549pt;}
.wsc7{word-spacing:5.547176pt;}
.ws3a{word-spacing:5.589683pt;}
.wsee{word-spacing:5.618944pt;}
.wsb2{word-spacing:5.683046pt;}
.ws1f{word-spacing:5.695951pt;}
.wsec{word-spacing:5.714586pt;}
.ws87{word-spacing:5.749084pt;}
.ws6b{word-spacing:5.802218pt;}
.wsf{word-spacing:5.810227pt;}
.wsa5{word-spacing:5.855352pt;}
.ws33{word-spacing:5.908486pt;}
.ws8f{word-spacing:6.067888pt;}
.wsda{word-spacing:6.121021pt;}
.wse9{word-spacing:6.144973pt;}
.ws27{word-spacing:6.174155pt;}
.ws72{word-spacing:6.227289pt;}
.ws5a{word-spacing:6.280423pt;}
.ws3c{word-spacing:6.333557pt;}
.wse2{word-spacing:6.384077pt;}
.ws49{word-spacing:6.386691pt;}
.ws73{word-spacing:6.492959pt;}
.ws88{word-spacing:6.546092pt;}
.ws50{word-spacing:6.599226pt;}
.wsd8{word-spacing:6.652360pt;}
.ws8c{word-spacing:6.705494pt;}
.ws40{word-spacing:6.758628pt;}
.ws3b{word-spacing:6.811762pt;}
.ws15{word-spacing:6.862285pt;}
.wsce{word-spacing:6.864896pt;}
.ws74{word-spacing:6.918029pt;}
.wsd3{word-spacing:6.925960pt;}
.ws1e{word-spacing:6.928656pt;}
.ws89{word-spacing:6.971163pt;}
.wsf0{word-spacing:7.053568pt;}
.ws53{word-spacing:7.077431pt;}
.ws44{word-spacing:7.183699pt;}
.ws63{word-spacing:7.236833pt;}
.ws4a{word-spacing:7.289967pt;}
.ws38{word-spacing:7.300593pt;}
.ws8b{word-spacing:7.343100pt;}
.wsdd{word-spacing:7.396234pt;}
.ws4d{word-spacing:7.449368pt;}
.wsc1{word-spacing:7.502502pt;}
.wsf8{word-spacing:7.531776pt;}
.ws8e{word-spacing:7.715037pt;}
.ws9a{word-spacing:7.768171pt;}
.ws7f{word-spacing:7.777695pt;}
.wsef{word-spacing:7.818701pt;}
.ws45{word-spacing:7.821305pt;}
.ws36{word-spacing:7.874439pt;}
.ws19{word-spacing:7.914342pt;}
.ws83{word-spacing:7.947494pt;}
.wsed{word-spacing:8.105626pt;}
.wscd{word-spacing:8.150735pt;}
.wsbb{word-spacing:8.246376pt;}
.wsbd{word-spacing:8.299510pt;}
.ws18{word-spacing:8.344730pt;}
.ws41{word-spacing:8.352644pt;}
.wsca{word-spacing:8.405778pt;}
.wscf{word-spacing:8.469538pt;}
.ws14{word-spacing:8.488192pt;}
.ws99{word-spacing:8.565179pt;}
.ws76{word-spacing:8.614161pt;}
.wsc8{word-spacing:8.614848pt;}
.ws4b{word-spacing:8.671447pt;}
.wsf1{word-spacing:8.679475pt;}
.ws52{word-spacing:8.724581pt;}
.ws6c{word-spacing:8.788342pt;}
.ws77{word-spacing:8.830849pt;}
.ws43{word-spacing:8.894609pt;}
.ws6f{word-spacing:8.937116pt;}
.ws3e{word-spacing:8.990250pt;}
.wse3{word-spacing:9.062042pt;}
.wsa4{word-spacing:9.149652pt;}
.ws6e{word-spacing:9.202786pt;}
.wsb6{word-spacing:9.309053pt;}
.ws62{word-spacing:9.319680pt;}
.wsb7{word-spacing:9.362187pt;}
.ws55{word-spacing:9.372877pt;}
.ws42{word-spacing:9.946660pt;}
.wsea{word-spacing:9.970637pt;}
.wse5{word-spacing:10.018458pt;}
.ws85{word-spacing:10.166161pt;}
.ws4e{word-spacing:10.265463pt;}
.wsa1{word-spacing:10.318597pt;}
.wscb{word-spacing:10.435491pt;}
.ws91{word-spacing:10.477999pt;}
.wsd0{word-spacing:10.701161pt;}
.ws95{word-spacing:10.786072pt;}
.wsb3{word-spacing:10.939494pt;}
.ws8d{word-spacing:11.504828pt;}
.wsaa{word-spacing:11.593810pt;}
.ws80{word-spacing:11.911032pt;}
.ws8a{word-spacing:12.232353pt;}
.wsbc{word-spacing:12.446391pt;}
.wsf4{word-spacing:13.509376pt;}
.wsf5{word-spacing:13.796301pt;}
.ws90{word-spacing:15.712828pt;}
.ws12{word-spacing:19.558707pt;}
.wsb4{word-spacing:19.961158pt;}
.wsdb{word-spacing:22.008983pt;}
.ws1a{word-spacing:24.526256pt;}
.ws13{word-spacing:25.698231pt;}
.ws6{word-spacing:26.515792pt;}
.wsf3{word-spacing:35.220019pt;}
.ws1b{word-spacing:51.805867pt;}
._d{margin-left:-35.897481pt;}
._14{margin-left:-28.695601pt;}
._10{margin-left:-27.557358pt;}
._e{margin-left:-26.667547pt;}
._8{margin-left:-25.517182pt;}
._5{margin-left:-24.627712pt;}
._9{margin-left:-23.288730pt;}
._f{margin-left:-20.463950pt;}
._4{margin-left:-19.128320pt;}
._b{margin-left:-18.238850pt;}
._18{margin-left:-6.554585pt;}
._3{margin-left:-5.499392pt;}
._6{margin-left:-4.160410pt;}
._0{margin-left:-2.371905pt;}
._7{margin-left:-1.338982pt;}
._2{width:0.937291pt;}
._1{width:2.371905pt;}
._11{width:3.382170pt;}
._1c{width:4.577991pt;}
._1e{width:12.197657pt;}
._17{width:14.630932pt;}
._1a{width:16.080443pt;}
._a{width:16.995509pt;}
._1b{width:18.630868pt;}
._16{width:20.224884pt;}
._19{width:21.907917pt;}
._c{width:23.059177pt;}
._12{width:24.050523pt;}
._15{width:25.963342pt;}
._1d{width:26.988213pt;}
._13{width:71.731200pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:237.294667pt;}
.y105{bottom:251.906667pt;}
.y26{bottom:253.234667pt;}
.y104{bottom:266.518667pt;}
.y25{bottom:269.174667pt;}
.yc5{bottom:269.176000pt;}
.y134{bottom:280.169333pt;}
.y103{bottom:281.382667pt;}
.y80{bottom:285.114667pt;}
.y24{bottom:285.116000pt;}
.y133{bottom:294.780000pt;}
.yc4{bottom:299.590667pt;}
.y23{bottom:301.056000pt;}
.y132{bottom:309.392000pt;}
.y102{bottom:313.198667pt;}
.yc3{bottom:315.530667pt;}
.y22{bottom:316.996000pt;}
.y131{bottom:323.042667pt;}
.yc2{bottom:331.470667pt;}
.y21{bottom:332.936000pt;}
.y130{bottom:337.654667pt;}
.y7f{bottom:337.868000pt;}
.yc1{bottom:347.708000pt;}
.y20{bottom:348.876000pt;}
.y12f{bottom:352.266667pt;}
.y4c{bottom:352.574667pt;}
.y7e{bottom:353.808000pt;}
.y101{bottom:356.970667pt;}
.yc0{bottom:363.649333pt;}
.yea{bottom:364.816000pt;}
.y5c{bottom:364.817333pt;}
.y9e{bottom:365.137333pt;}
.y12e{bottom:365.916000pt;}
.y4b{bottom:368.516000pt;}
.y7d{bottom:369.748000pt;}
.y100{bottom:372.910667pt;}
.ybf{bottom:379.589333pt;}
.y1f{bottom:379.618667pt;}
.y12d{bottom:380.528000pt;}
.ye9{bottom:380.756000pt;}
.y5b{bottom:380.757333pt;}
.y9d{bottom:381.077333pt;}
.y4a{bottom:384.456000pt;}
.y7c{bottom:385.688000pt;}
.yff{bottom:388.850667pt;}
.y12c{bottom:394.178667pt;}
.ybe{bottom:395.529333pt;}
.y5a{bottom:396.697333pt;}
.y9c{bottom:397.017333pt;}
.y49{bottom:400.396000pt;}
.y7b{bottom:401.629333pt;}
.yfe{bottom:404.790667pt;}
.y12b{bottom:408.789333pt;}
.ybd{bottom:411.469333pt;}
.ye8{bottom:412.637333pt;}
.y9b{bottom:412.957333pt;}
.y48{bottom:416.336000pt;}
.y7a{bottom:417.569333pt;}
.yfd{bottom:420.730667pt;}
.y1e{bottom:423.304000pt;}
.y12a{bottom:423.401333pt;}
.ybc{bottom:427.409333pt;}
.ye7{bottom:428.577333pt;}
.y9a{bottom:428.898667pt;}
.y47{bottom:432.276000pt;}
.y79{bottom:433.509333pt;}
.yfc{bottom:436.672000pt;}
.y129{bottom:437.052000pt;}
.y59{bottom:442.446667pt;}
.ye6{bottom:444.517333pt;}
.y46{bottom:448.216000pt;}
.y78{bottom:449.449333pt;}
.y128{bottom:451.664000pt;}
.y1d{bottom:452.242667pt;}
.yfb{bottom:452.612000pt;}
.yc7{bottom:456.965333pt;}
.ybb{bottom:458.122667pt;}
.ye5{bottom:460.457333pt;}
.y99{bottom:462.381333pt;}
.y45{bottom:464.157333pt;}
.y77{bottom:465.389333pt;}
.y127{bottom:466.276000pt;}
.y1c{bottom:466.854667pt;}
.yba{bottom:474.062667pt;}
.ye4{bottom:476.398667pt;}
.y126{bottom:479.925333pt;}
.y44{bottom:480.097333pt;}
.y76{bottom:481.329333pt;}
.y1b{bottom:481.466667pt;}
.yb9{bottom:490.002667pt;}
.ye3{bottom:492.338667pt;}
.yfa{bottom:493.726667pt;}
.y125{bottom:494.537333pt;}
.y43{bottom:496.037333pt;}
.y1a{bottom:496.078667pt;}
.y75{bottom:497.270667pt;}
.yb8{bottom:506.240000pt;}
.y98{bottom:506.492000pt;}
.ye2{bottom:508.278667pt;}
.y124{bottom:509.149333pt;}
.yf9{bottom:509.666667pt;}
.y19{bottom:510.690667pt;}
.y42{bottom:511.977333pt;}
.y74{bottom:513.210667pt;}
.yb7{bottom:522.181333pt;}
.y97{bottom:522.433333pt;}
.y123{bottom:523.761333pt;}
.ye1{bottom:524.218667pt;}
.y18{bottom:525.302667pt;}
.yf8{bottom:525.606667pt;}
.y73{bottom:529.150667pt;}
.y41{bottom:531.616000pt;}
.y122{bottom:537.410667pt;}
.yb6{bottom:538.121333pt;}
.y96{bottom:538.693333pt;}
.y17{bottom:539.914667pt;}
.ye0{bottom:540.158667pt;}
.yf7{bottom:541.546667pt;}
.y72{bottom:545.090667pt;}
.y40{bottom:547.557333pt;}
.y121{bottom:552.022667pt;}
.yb5{bottom:554.061333pt;}
.y16{bottom:554.526667pt;}
.y95{bottom:554.633333pt;}
.ydf{bottom:556.098667pt;}
.yf6{bottom:557.740000pt;}
.y71{bottom:561.030667pt;}
.y3f{bottom:563.497333pt;}
.y120{bottom:565.673333pt;}
.y15{bottom:569.138667pt;}
.yb4{bottom:570.001333pt;}
.y94{bottom:570.574667pt;}
.yde{bottom:572.040000pt;}
.yf5{bottom:573.680000pt;}
.y70{bottom:576.970667pt;}
.y3e{bottom:579.437333pt;}
.y11f{bottom:580.285333pt;}
.y14{bottom:583.750667pt;}
.yb3{bottom:585.941333pt;}
.y93{bottom:586.514667pt;}
.ydd{bottom:587.980000pt;}
.yf4{bottom:589.620000pt;}
.y6f{bottom:592.912000pt;}
.y11e{bottom:594.897333pt;}
.y3d{bottom:595.377333pt;}
.y13{bottom:598.361333pt;}
.yb2{bottom:601.881333pt;}
.y92{bottom:602.454667pt;}
.ydc{bottom:603.920000pt;}
.yf3{bottom:605.561333pt;}
.y11d{bottom:608.546667pt;}
.y6e{bottom:608.852000pt;}
.y3c{bottom:611.317333pt;}
.y12{bottom:612.973333pt;}
.yb1{bottom:617.822667pt;}
.y91{bottom:618.394667pt;}
.ydb{bottom:619.860000pt;}
.yf2{bottom:621.501333pt;}
.y11c{bottom:623.158667pt;}
.y6d{bottom:624.792000pt;}
.y3b{bottom:627.257333pt;}
.y11{bottom:627.585333pt;}
.yb0{bottom:633.762667pt;}
.y90{bottom:634.334667pt;}
.yda{bottom:635.800000pt;}
.yf1{bottom:637.441333pt;}
.y11b{bottom:637.770667pt;}
.y6c{bottom:640.732000pt;}
.y10{bottom:642.197333pt;}
.y3a{bottom:643.198667pt;}
.yaf{bottom:649.702667pt;}
.y8f{bottom:650.274667pt;}
.yd9{bottom:651.740000pt;}
.y11a{bottom:652.382667pt;}
.yf0{bottom:653.381333pt;}
.yf{bottom:656.809333pt;}
.y39{bottom:659.138667pt;}
.y6b{bottom:661.604000pt;}
.yae{bottom:665.940000pt;}
.y8e{bottom:666.216000pt;}
.y119{bottom:666.994667pt;}
.yd8{bottom:667.681333pt;}
.yef{bottom:669.321333pt;}
.ye{bottom:671.421333pt;}
.y38{bottom:675.078667pt;}
.y6a{bottom:677.544000pt;}
.y118{bottom:681.606667pt;}
.yad{bottom:681.881333pt;}
.y8d{bottom:682.156000pt;}
.yd7{bottom:683.621333pt;}
.yee{bottom:685.261333pt;}
.yd{bottom:686.033333pt;}
.y37{bottom:691.018667pt;}
.y69{bottom:693.485333pt;}
.y117{bottom:695.256000pt;}
.yac{bottom:697.821333pt;}
.y8c{bottom:698.096000pt;}
.yd6{bottom:699.561333pt;}
.yc{bottom:700.645333pt;}
.y36{bottom:706.958667pt;}
.y68{bottom:709.425333pt;}
.y116{bottom:709.868000pt;}
.yab{bottom:713.761333pt;}
.y8b{bottom:714.036000pt;}
.yd5{bottom:715.501333pt;}
.yed{bottom:718.406667pt;}
.y115{bottom:724.480000pt;}
.y67{bottom:725.365333pt;}
.y35{bottom:726.598667pt;}
.yaa{bottom:729.701333pt;}
.y8a{bottom:729.976000pt;}
.yd4{bottom:731.441333pt;}
.y114{bottom:738.129333pt;}
.y66{bottom:741.305333pt;}
.y34{bottom:742.538667pt;}
.ya9{bottom:745.641333pt;}
.y89{bottom:745.916000pt;}
.y58{bottom:746.573333pt;}
.yd3{bottom:747.381333pt;}
.yb{bottom:751.921333pt;}
.y113{bottom:752.741333pt;}
.y65{bottom:757.245333pt;}
.y33{bottom:758.478667pt;}
.ya8{bottom:761.582667pt;}
.y88{bottom:761.857333pt;}
.yec{bottom:762.177333pt;}
.y57{bottom:762.513333pt;}
.yd2{bottom:763.322667pt;}
.y112{bottom:767.353333pt;}
.ya{bottom:771.612000pt;}
.y64{bottom:773.185333pt;}
.y32{bottom:774.418667pt;}
.y87{bottom:777.797333pt;}
.ya7{bottom:777.820000pt;}
.yeb{bottom:778.117333pt;}
.y56{bottom:778.454667pt;}
.yd1{bottom:779.262667pt;}
.y111{bottom:781.004000pt;}
.y9{bottom:781.145333pt;}
.y63{bottom:789.126667pt;}
.y31{bottom:790.358667pt;}
.y86{bottom:793.737333pt;}
.ya6{bottom:793.760000pt;}
.yc6{bottom:794.058667pt;}
.y55{bottom:794.394667pt;}
.yd0{bottom:795.202667pt;}
.y110{bottom:795.616000pt;}
.y8{bottom:800.836000pt;}
.y62{bottom:805.066667pt;}
.y30{bottom:806.300000pt;}
.ya5{bottom:809.700000pt;}
.y85{bottom:809.998667pt;}
.y10f{bottom:810.226667pt;}
.y54{bottom:810.334667pt;}
.y7{bottom:810.369333pt;}
.ycf{bottom:811.142667pt;}
.y61{bottom:821.006667pt;}
.y2f{bottom:822.240000pt;}
.y10e{bottom:823.877333pt;}
.y6{bottom:824.981333pt;}
.ya4{bottom:825.641333pt;}
.y84{bottom:825.938667pt;}
.y53{bottom:826.274667pt;}
.yce{bottom:827.082667pt;}
.y60{bottom:836.946667pt;}
.y2e{bottom:838.180000pt;}
.y10d{bottom:838.489333pt;}
.ya3{bottom:841.581333pt;}
.y83{bottom:841.878667pt;}
.y52{bottom:842.214667pt;}
.ycd{bottom:843.024000pt;}
.y5{bottom:844.670667pt;}
.y5f{bottom:852.886667pt;}
.y10c{bottom:853.101333pt;}
.y2d{bottom:854.120000pt;}
.ya2{bottom:857.521333pt;}
.y82{bottom:857.818667pt;}
.y51{bottom:858.154667pt;}
.ycc{bottom:858.964000pt;}
.y4{bottom:867.433333pt;}
.y10b{bottom:867.713333pt;}
.y5e{bottom:868.828000pt;}
.y2c{bottom:870.060000pt;}
.ya1{bottom:873.461333pt;}
.y81{bottom:873.758667pt;}
.y50{bottom:874.096000pt;}
.ycb{bottom:874.904000pt;}
.y10a{bottom:881.362667pt;}
.y3{bottom:883.373333pt;}
.y5d{bottom:884.768000pt;}
.ya0{bottom:889.401333pt;}
.y2b{bottom:889.700000pt;}
.y4f{bottom:890.036000pt;}
.yca{bottom:890.844000pt;}
.y109{bottom:895.974667pt;}
.y9f{bottom:905.341333pt;}
.y2a{bottom:905.640000pt;}
.y4e{bottom:905.976000pt;}
.yc9{bottom:906.784000pt;}
.y108{bottom:910.586667pt;}
.y29{bottom:921.580000pt;}
.y4d{bottom:921.916000pt;}
.yc8{bottom:922.724000pt;}
.y107{bottom:925.198667pt;}
.y2{bottom:929.549333pt;}
.y28{bottom:937.520000pt;}
.y106{bottom:938.848000pt;}
.y1{bottom:953.460000pt;}
.h4{height:21.200555pt;}
.h6{height:33.187635pt;}
.h5{height:35.865600pt;}
.h8{height:39.850400pt;}
.h3{height:43.976550pt;}
.h7{height:44.887791pt;}
.h2{height:53.865199pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:179.686667pt;}
.x8{left:180.592000pt;}
.x10{left:185.829333pt;}
.x3{left:190.330667pt;}
.xf{left:197.980000pt;}
.xc{left:199.612000pt;}
.x1{left:200.837333pt;}
.xe{left:202.268000pt;}
.xa{left:217.481333pt;}
.x2{left:234.150667pt;}
.xd{left:249.040000pt;}
.x4{left:290.638667pt;}
.x7{left:293.792000pt;}
.x6{left:302.874667pt;}
.x5{left:351.469333pt;}
.x9{left:360.026667pt;}
}




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