
    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_0a96b51a71178efbb733ba59.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_45a9ccd345e4f0e6086e393b.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_1d3f524e0430da662a7e4840.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.696000;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_4056fd02a6c5a6f5463dccab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.697000;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_3e9976550a5da7e58cc054e9.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_c61ee9be856f83ee0c05b68b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c26f838e695be08ba08d97a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_6440b11774635d8192c02662.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_23529f0fd29b7f3b0ba2283c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6d56611ad83550cc39f08bfb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81e8a7c3a42153ceadff7c7e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.923000;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;}
.ls1{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.990525px;}
.lsc{letter-spacing:13.869487px;}
.ls7{letter-spacing:16.712338px;}
.ls8{letter-spacing:16.714438px;}
.lsd{letter-spacing:18.423487px;}
.lsb{letter-spacing:18.429487px;}
.ls9{letter-spacing:18.778438px;}
.lsa{letter-spacing:19.924438px;}
.ls6{letter-spacing:21.420532px;}
.ls5{letter-spacing:22.910525px;}
.ls3{letter-spacing:30.630532px;}
.ls2{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;}
}
.wsee{word-spacing:-22.416000px;}
.ws2{word-spacing:-16.605662px;}
.ws1f{word-spacing:-15.278643px;}
.wsf0{word-spacing:-3.335478px;}
.wsa3{word-spacing:-3.275703px;}
.ws6{word-spacing:-3.093408px;}
.ws73{word-spacing:-2.797498px;}
.ws4b{word-spacing:-2.618171px;}
.wsec{word-spacing:-2.438844px;}
.ws71{word-spacing:-2.319293px;}
.wsdb{word-spacing:-2.259518px;}
.wsd3{word-spacing:-2.080191px;}
.wsa4{word-spacing:-1.900864px;}
.ws94{word-spacing:-1.601986px;}
.wsef{word-spacing:-1.542210px;}
.wsf8{word-spacing:-1.533254px;}
.ws29{word-spacing:-1.362884px;}
.ws69{word-spacing:-1.303108px;}
.wsb1{word-spacing:-1.243332px;}
.ws9e{word-spacing:-1.183557px;}
.ws6a{word-spacing:-0.944454px;}
.wsd5{word-spacing:-0.824903px;}
.wsd7{word-spacing:-0.765128px;}
.ws45{word-spacing:-0.645576px;}
.wsb0{word-spacing:-0.585801px;}
.wsd4{word-spacing:-0.526025px;}
.wsda{word-spacing:-0.466250px;}
.wsb{word-spacing:-0.349690px;}
.wsd0{word-spacing:-0.227147px;}
.ws49{word-spacing:-0.107596px;}
.ws13{word-spacing:-0.080698px;}
.ws6b{word-spacing:-0.059776px;}
.ws10{word-spacing:-0.053798px;}
.ws7a{word-spacing:-0.047820px;}
.ws22{word-spacing:0.000000px;}
.wsbf{word-spacing:0.011955px;}
.wsb7{word-spacing:0.106738px;}
.ws101{word-spacing:0.188294px;}
.ws7b{word-spacing:0.251058px;}
.ws1e{word-spacing:0.430384px;}
.wsd6{word-spacing:0.540300px;}
.wsf3{word-spacing:0.618682px;}
.ws84{word-spacing:0.669487px;}
.ws66{word-spacing:0.729262px;}
.ws5d{word-spacing:0.789038px;}
.ws46{word-spacing:0.829403px;}
.ws48{word-spacing:0.848814px;}
.wse6{word-spacing:0.968365px;}
.wse8{word-spacing:1.028140px;}
.ws3c{word-spacing:1.087916px;}
.ws14{word-spacing:1.102867px;}
.wsc0{word-spacing:1.313034px;}
.ws8c{word-spacing:1.327018px;}
.ws35{word-spacing:1.386794px;}
.wsd8{word-spacing:1.446570px;}
.wsaf{word-spacing:1.506345px;}
.ws30{word-spacing:1.625896px;}
.ws9d{word-spacing:1.685672px;}
.ws33{word-spacing:1.805223px;}
.ws90{word-spacing:1.864999px;}
.ws42{word-spacing:1.924774px;}
.wsf2{word-spacing:2.017440px;}
.wse9{word-spacing:2.104101px;}
.ws5c{word-spacing:2.135034px;}
.ws47{word-spacing:2.140430px;}
.wsc5{word-spacing:2.163877px;}
.ws5e{word-spacing:2.283428px;}
.ws16{word-spacing:2.286432px;}
.wsd1{word-spacing:2.343204px;}
.ws3d{word-spacing:2.421097px;}
.ws28{word-spacing:2.462755px;}
.ws26{word-spacing:2.482738px;}
.wsa1{word-spacing:2.522530px;}
.wsfd{word-spacing:2.555424px;}
.wscb{word-spacing:2.582306px;}
.wsf9{word-spacing:2.663021px;}
.ws8b{word-spacing:2.669658px;}
.ws56{word-spacing:2.881184px;}
.ws12{word-spacing:2.932013px;}
.ws24{word-spacing:2.940960px;}
.ws4a{word-spacing:2.952915px;}
.ws3{word-spacing:3.039610px;}
.wsf4{word-spacing:3.071497px;}
.ws4{word-spacing:3.093408px;}
.ws88{word-spacing:3.120286px;}
.wsf7{word-spacing:3.254803px;}
.ws1{word-spacing:3.299613px;}
.ws91{word-spacing:3.306676px;}
.wsa{word-spacing:3.308602px;}
.ws36{word-spacing:3.316738px;}
.ws41{word-spacing:3.359389px;}
.wsfa{word-spacing:3.362400px;}
.wscc{word-spacing:3.478940px;}
.ws4f{word-spacing:3.598491px;}
.ws7{word-spacing:3.631392px;}
.ws72{word-spacing:3.658267px;}
.wsff{word-spacing:3.738989px;}
.ws74{word-spacing:3.801728px;}
.wsc8{word-spacing:3.849549px;}
.wsdc{word-spacing:3.897369px;}
.ws85{word-spacing:3.957145px;}
.ws81{word-spacing:4.076696px;}
.ws57{word-spacing:4.136472px;}
.wsed{word-spacing:4.256023px;}
.wse{word-spacing:4.276973px;}
.ws77{word-spacing:4.315798px;}
.ws1a{word-spacing:4.375574px;}
.ws89{word-spacing:4.390266px;}
.ws55{word-spacing:4.483200px;}
.ws38{word-spacing:4.495125px;}
.ws32{word-spacing:4.554901px;}
.ws31{word-spacing:4.614676px;}
.ws37{word-spacing:4.631034px;}
.wse7{word-spacing:4.636430px;}
.wse5{word-spacing:4.637219px;}
.wsb4{word-spacing:4.674452px;}
.ws98{word-spacing:4.734228px;}
.ws9a{word-spacing:4.755650px;}
.ws87{word-spacing:4.794003px;}
.ws2c{word-spacing:4.913554px;}
.ws65{word-spacing:4.973330px;}
.ws2a{word-spacing:5.033106px;}
.ws2f{word-spacing:5.092881px;}
.ws2e{word-spacing:5.152657px;}
.ws17{word-spacing:5.191546px;}
.ws54{word-spacing:5.272208px;}
.ws27{word-spacing:5.343939px;}
.ws0{word-spacing:5.379825px;}
.ws50{word-spacing:5.391759px;}
.ws11{word-spacing:5.406739px;}
.wsf{word-spacing:5.460538px;}
.ws58{word-spacing:5.464430px;}
.ws79{word-spacing:5.630862px;}
.ws2d{word-spacing:5.690637px;}
.ws23{word-spacing:5.750413px;}
.wsc2{word-spacing:5.810188px;}
.wsc1{word-spacing:5.869964px;}
.ws34{word-spacing:5.929740px;}
.ws44{word-spacing:5.989515px;}
.ws80{word-spacing:6.109066px;}
.ws43{word-spacing:6.121021px;}
.ws5b{word-spacing:6.168842px;}
.ws95{word-spacing:6.276480px;}
.wsfc{word-spacing:6.321312px;}
.ws20{word-spacing:6.407944px;}
.wsb3{word-spacing:6.467720px;}
.ws7d{word-spacing:6.587271px;}
.wsde{word-spacing:6.647047px;}
.ws86{word-spacing:6.706822px;}
.ws15{word-spacing:6.751699px;}
.ws8f{word-spacing:6.766598px;}
.ws8d{word-spacing:6.826374px;}
.wsb2{word-spacing:6.886149px;}
.ws8{word-spacing:6.913094px;}
.ws1d{word-spacing:6.945925px;}
.ws1c{word-spacing:7.005700px;}
.ws62{word-spacing:7.125252px;}
.ws70{word-spacing:7.244803px;}
.wsab{word-spacing:7.483905px;}
.wseb{word-spacing:7.603456px;}
.ws63{word-spacing:7.663232px;}
.wsd9{word-spacing:7.666272px;}
.wsc4{word-spacing:7.723008px;}
.wsaa{word-spacing:7.962110px;}
.wsad{word-spacing:7.990508px;}
.wsea{word-spacing:8.004529px;}
.ws9c{word-spacing:8.021886px;}
.wsf1{word-spacing:8.042861px;}
.ws60{word-spacing:8.081661px;}
.ws51{word-spacing:8.141437px;}
.ws53{word-spacing:8.201212px;}
.wsb5{word-spacing:8.320764px;}
.wsce{word-spacing:8.380539px;}
.wse2{word-spacing:8.423587px;}
.ws25{word-spacing:8.440315px;}
.wsc3{word-spacing:8.619642px;}
.ws9{word-spacing:8.634643px;}
.ws96{word-spacing:8.679417px;}
.wsf6{word-spacing:8.688442px;}
.wsac{word-spacing:8.805240px;}
.ws59{word-spacing:8.858744px;}
.ws2b{word-spacing:8.978295px;}
.wsca{word-spacing:9.010543px;}
.wsfb{word-spacing:9.065030px;}
.ws3a{word-spacing:9.157622px;}
.wsdd{word-spacing:9.336949px;}
.wsa6{word-spacing:9.387821px;}
.ws82{word-spacing:9.396724px;}
.ws61{word-spacing:9.407972px;}
.ws52{word-spacing:9.490430px;}
.ws7c{word-spacing:9.516276px;}
.ws97{word-spacing:9.635827px;}
.ws7e{word-spacing:9.695602px;}
.wsd{word-spacing:9.764410px;}
.ws64{word-spacing:9.815154px;}
.ws99{word-spacing:9.867401px;}
.ws78{word-spacing:9.994480px;}
.wsbe{word-spacing:10.233583px;}
.ws100{word-spacing:10.302394px;}
.ws76{word-spacing:10.353134px;}
.ws4d{word-spacing:10.412910px;}
.wsc{word-spacing:10.463789px;}
.ws40{word-spacing:10.472685px;}
.ws3b{word-spacing:10.486430px;}
.ws3e{word-spacing:10.532461px;}
.ws4e{word-spacing:10.544486px;}
.ws9b{word-spacing:10.684761px;}
.ws1b{word-spacing:10.711788px;}
.ws7f{word-spacing:10.831339px;}
.ws39{word-spacing:10.950890px;}
.ws21{word-spacing:11.010666px;}
.wsa0{word-spacing:11.070441px;}
.ws67{word-spacing:11.130217px;}
.wsfe{word-spacing:11.163168px;}
.ws75{word-spacing:11.189992px;}
.wsdf{word-spacing:11.309544px;}
.ws6c{word-spacing:11.429095px;}
.ws92{word-spacing:11.488870px;}
.wscf{word-spacing:11.668197px;}
.ws3f{word-spacing:11.824430px;}
.wsa7{word-spacing:11.967075px;}
.wse4{word-spacing:12.016430px;}
.wse0{word-spacing:12.265953px;}
.wsba{word-spacing:12.325729px;}
.ws68{word-spacing:12.385504px;}
.wsc9{word-spacing:12.393612px;}
.wsbc{word-spacing:12.624607px;}
.wse3{word-spacing:12.684382px;}
.ws5a{word-spacing:12.863709px;}
.wsa9{word-spacing:12.923485px;}
.wsa2{word-spacing:13.043036px;}
.wse1{word-spacing:13.612697px;}
.wsb9{word-spacing:13.879894px;}
.ws18{word-spacing:14.095181px;}
.ws9f{word-spacing:14.836304px;}
.wsb6{word-spacing:15.732938px;}
.ws4c{word-spacing:15.852489px;}
.wsb8{word-spacing:16.649564px;}
.ws93{word-spacing:17.427772px;}
.wsf5{word-spacing:18.373175px;}
.wsc6{word-spacing:18.708614px;}
.wsd2{word-spacing:18.886994px;}
.wsc7{word-spacing:19.086614px;}
.wsbd{word-spacing:19.860614px;}
.wsa5{word-spacing:19.868894px;}
.wscd{word-spacing:20.014994px;}
.ws8a{word-spacing:20.946614px;}
.ws8e{word-spacing:23.353274px;}
.wsae{word-spacing:24.523664px;}
.ws83{word-spacing:25.953944px;}
.wsa8{word-spacing:28.507754px;}
.wsbb{word-spacing:28.850234px;}
.ws5{word-spacing:29.830266px;}
.ws6d{word-spacing:31.322414px;}
.ws5f{word-spacing:49.649613px;}
.ws19{word-spacing:58.281600px;}
.ws6e{word-spacing:62.704604px;}
.ws6f{word-spacing:94.086794px;}
._e{margin-left:-39.747578px;}
._20{margin-left:-33.461808px;}
._22{margin-left:-32.197540px;}
._10{margin-left:-31.002028px;}
._2{margin-left:-29.887800px;}
._4{margin-left:-28.177328px;}
._b{margin-left:-27.113469px;}
._6{margin-left:-23.252708px;}
._a{margin-left:-21.077062px;}
._0{margin-left:-8.091257px;}
._5{margin-left:-6.575316px;}
._1c{margin-left:-5.499355px;}
._c{margin-left:-4.123928px;}
._1{margin-left:-2.668393px;}
._3{margin-left:-1.650126px;}
._7{width:1.003657px;}
._9{width:2.031305px;}
._8{width:3.102683px;}
._15{width:4.342110px;}
._13{width:13.641430px;}
._1f{width:16.058128px;}
._1e{width:17.911171px;}
._16{width:19.033762px;}
._12{width:20.959727px;}
._14{width:22.570997px;}
._f{width:24.665814px;}
._18{width:26.484627px;}
._d{width:28.537903px;}
._24{width:29.911910px;}
._27{width:31.196441px;}
._21{width:33.393052px;}
._25{width:39.272832px;}
._26{width:41.191950px;}
._28{width:42.429313px;}
._2a{width:46.195201px;}
._29{width:48.741350px;}
._19{width:62.764380px;}
._1d{width:68.741940px;}
._17{width:80.697600px;}
._1b{width:94.146570px;}
._1a{width:125.528760px;}
._23{width:142.996147px;}
._11{width:170.648525px;}
.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;}
.y87{bottom:193.615500px;}
.y27{bottom:193.617000px;}
.y54{bottom:199.330500px;}
.y128{bottom:208.762500px;}
.y26{bottom:211.549500px;}
.y53{bottom:215.769000px;}
.yd3{bottom:221.118000px;}
.y127{bottom:225.201000px;}
.y25{bottom:229.482000px;}
.y52{bottom:232.207500px;}
.yd2{bottom:239.050500px;}
.y126{bottom:241.639500px;}
.y24{bottom:247.414500px;}
.y51{bottom:251.980500px;}
.yd1{bottom:256.984500px;}
.y125{bottom:257.445000px;}
.ybc{bottom:264.747000px;}
.y23{bottom:265.347000px;}
.y86{bottom:267.375000px;}
.y50{bottom:269.913000px;}
.y124{bottom:273.883500px;}
.yd0{bottom:274.917000px;}
.ybb{bottom:282.679500px;}
.y68{bottom:283.279500px;}
.y22{bottom:283.281000px;}
.y85{bottom:285.307500px;}
.y4f{bottom:287.847000px;}
.y123{bottom:290.322000px;}
.ycf{bottom:292.849500px;}
.yba{bottom:300.612000px;}
.yf1{bottom:301.212000px;}
.y21{bottom:301.213500px;}
.y84{bottom:303.240000px;}
.y4e{bottom:305.779500px;}
.y122{bottom:306.760500px;}
.yce{bottom:310.782000px;}
.yb9{bottom:318.544500px;}
.y67{bottom:319.146000px;}
.y98{bottom:320.019000px;}
.y83{bottom:321.174000px;}
.y121{bottom:322.567500px;}
.ycd{bottom:328.714500px;}
.y4d{bottom:332.719500px;}
.y20{bottom:335.797500px;}
.yb8{bottom:336.477000px;}
.y66{bottom:337.078500px;}
.y97{bottom:337.953000px;}
.y120{bottom:339.004500px;}
.y82{bottom:339.106500px;}
.ycc{bottom:346.647000px;}
.y4c{bottom:350.652000px;}
.y11f{bottom:354.811500px;}
.y65{bottom:355.011000px;}
.y96{bottom:355.885500px;}
.y81{bottom:357.039000px;}
.yb7{bottom:363.358500px;}
.ycb{bottom:364.581000px;}
.yf0{bottom:365.149500px;}
.y4b{bottom:368.584500px;}
.y11e{bottom:371.250000px;}
.y64{bottom:372.943500px;}
.y95{bottom:373.818000px;}
.y80{bottom:374.971500px;}
.yb6{bottom:381.292500px;}
.yca{bottom:382.513500px;}
.y1f{bottom:384.945000px;}
.y4a{bottom:385.330500px;}
.y11d{bottom:387.055500px;}
.y107{bottom:390.876000px;}
.y94{bottom:391.750500px;}
.y7f{bottom:392.904000px;}
.yb5{bottom:399.225000px;}
.yc9{bottom:400.446000px;}
.y1e{bottom:401.382000px;}
.y63{bottom:402.213000px;}
.y49{bottom:403.263000px;}
.y11c{bottom:403.494000px;}
.yef{bottom:408.165000px;}
.y93{bottom:409.683000px;}
.y7e{bottom:410.836500px;}
.yb4{bottom:417.157500px;}
.yc8{bottom:418.378500px;}
.y11b{bottom:419.932500px;}
.y48{bottom:420.009000px;}
.yee{bottom:426.097500px;}
.y106{bottom:426.523500px;}
.y92{bottom:427.617000px;}
.y7d{bottom:428.770500px;}
.y1d{bottom:433.939500px;}
.yb3{bottom:435.090000px;}
.yc7{bottom:436.311000px;}
.y11a{bottom:436.371000px;}
.y47{bottom:437.941500px;}
.yed{bottom:444.031500px;}
.y91{bottom:446.422500px;}
.y62{bottom:446.424000px;}
.y7c{bottom:446.703000px;}
.y1c{bottom:450.378000px;}
.y119{bottom:452.178000px;}
.yb2{bottom:453.022500px;}
.yc6{bottom:454.243500px;}
.y46{bottom:454.687500px;}
.yec{bottom:461.964000px;}
.y90{bottom:464.356500px;}
.y61{bottom:464.358000px;}
.y1b{bottom:466.816500px;}
.y118{bottom:468.616500px;}
.yc5{bottom:472.177500px;}
.y45{bottom:472.620000px;}
.y105{bottom:474.126000px;}
.yeb{bottom:479.896500px;}
.yb1{bottom:480.505500px;}
.y8f{bottom:482.289000px;}
.y60{bottom:482.290500px;}
.y1a{bottom:483.253500px;}
.y117{bottom:484.422000px;}
.y7b{bottom:486.729000px;}
.y44{bottom:489.364500px;}
.yc4{bottom:490.110000px;}
.y104{bottom:492.058500px;}
.yea{bottom:497.829000px;}
.y19{bottom:499.692000px;}
.y8e{bottom:500.221500px;}
.y5f{bottom:500.223000px;}
.y116{bottom:500.860500px;}
.y43{bottom:507.298500px;}
.yc3{bottom:508.042500px;}
.y103{bottom:509.991000px;}
.ye9{bottom:515.761500px;}
.y18{bottom:516.130500px;}
.y115{bottom:517.299000px;}
.y8d{bottom:518.154000px;}
.y5e{bottom:518.155500px;}
.yb0{bottom:522.933000px;}
.y102{bottom:527.923500px;}
.y17{bottom:532.569000px;}
.y42{bottom:533.050500px;}
.y114{bottom:533.104500px;}
.ye8{bottom:533.694000px;}
.y8c{bottom:536.086500px;}
.y5d{bottom:536.088000px;}
.yc2{bottom:537.210000px;}
.yaf{bottom:540.865500px;}
.y7a{bottom:541.699500px;}
.y101{bottom:545.856000px;}
.y16{bottom:549.007500px;}
.y113{bottom:549.543000px;}
.y41{bottom:550.983000px;}
.ye7{bottom:551.628000px;}
.y8b{bottom:554.019000px;}
.y5c{bottom:554.020500px;}
.yae{bottom:558.799500px;}
.y79{bottom:559.633500px;}
.y100{bottom:563.790000px;}
.y15{bottom:565.446000px;}
.y112{bottom:565.981500px;}
.y40{bottom:568.917000px;}
.ye6{bottom:569.560500px;}
.y8a{bottom:571.953000px;}
.yad{bottom:576.732000px;}
.y78{bottom:577.566000px;}
.yc1{bottom:581.322000px;}
.yff{bottom:581.722500px;}
.y111{bottom:581.788500px;}
.y14{bottom:581.884500px;}
.y3f{bottom:586.849500px;}
.ye5{bottom:587.493000px;}
.y5b{bottom:589.267500px;}
.yac{bottom:594.664500px;}
.y77{bottom:595.498500px;}
.y110{bottom:598.227000px;}
.y13{bottom:598.323000px;}
.yc0{bottom:599.254500px;}
.yfe{bottom:599.655000px;}
.y3e{bottom:604.782000px;}
.ye4{bottom:605.425500px;}
.y89{bottom:612.187500px;}
.yab{bottom:612.597000px;}
.y76{bottom:613.431000px;}
.y10f{bottom:614.665500px;}
.y12{bottom:614.761500px;}
.ybf{bottom:617.187000px;}
.yfd{bottom:617.587500px;}
.y3d{bottom:622.714500px;}
.ye3{bottom:623.358000px;}
.y10e{bottom:630.471000px;}
.yaa{bottom:630.529500px;}
.y11{bottom:631.200000px;}
.yfc{bottom:635.520000px;}
.y5a{bottom:636.468000px;}
.y3c{bottom:640.647000px;}
.ye2{bottom:641.292000px;}
.y10d{bottom:646.909500px;}
.y10{bottom:647.637000px;}
.ya9{bottom:648.462000px;}
.yfb{bottom:653.452500px;}
.y59{bottom:654.400500px;}
.y75{bottom:654.418500px;}
.y3b{bottom:658.579500px;}
.ye1{bottom:659.224500px;}
.yf{bottom:664.075500px;}
.ya8{bottom:666.396000px;}
.ybe{bottom:668.788500px;}
.y74{bottom:669.363000px;}
.yfa{bottom:671.386500px;}
.y58{bottom:672.334500px;}
.y3a{bottom:676.513500px;}
.ye0{bottom:677.157000px;}
.y10c{bottom:678.120000px;}
.y88{bottom:680.455500px;}
.ye{bottom:680.514000px;}
.y73{bottom:684.307500px;}
.ya7{bottom:684.328500px;}
.ybd{bottom:685.227000px;}
.yf9{bottom:689.319000px;}
.y57{bottom:690.267000px;}
.y39{bottom:694.446000px;}
.ydf{bottom:695.089500px;}
.yd{bottom:696.952500px;}
.y72{bottom:699.250500px;}
.yf8{bottom:707.251500px;}
.y56{bottom:708.199500px;}
.y38{bottom:712.378500px;}
.yde{bottom:713.022000px;}
.y71{bottom:714.195000px;}
.ya6{bottom:717.789000px;}
.y10b{bottom:723.412500px;}
.yf7{bottom:725.184000px;}
.y70{bottom:729.138000px;}
.y37{bottom:730.311000px;}
.ydd{bottom:730.954500px;}
.ya5{bottom:738.711000px;}
.y10a{bottom:741.345000px;}
.yf6{bottom:743.116500px;}
.y6f{bottom:744.082500px;}
.y36{bottom:748.243500px;}
.ydc{bottom:748.888500px;}
.yc{bottom:754.638000px;}
.y6e{bottom:759.027000px;}
.y109{bottom:759.277500px;}
.yf5{bottom:761.049000px;}
.y35{bottom:766.176000px;}
.ydb{bottom:766.821000px;}
.y6d{bottom:773.970000px;}
.y55{bottom:774.846000px;}
.yb{bottom:776.790000px;}
.yf4{bottom:778.983000px;}
.y34{bottom:784.110000px;}
.ya4{bottom:784.126500px;}
.yda{bottom:784.753500px;}
.y6c{bottom:788.914500px;}
.y108{bottom:792.615000px;}
.ya{bottom:793.228500px;}
.y33{bottom:802.042500px;}
.ya3{bottom:802.059000px;}
.yd9{bottom:802.686000px;}
.y6b{bottom:803.859000px;}
.y9{bottom:803.953500px;}
.y6a{bottom:818.802000px;}
.y32{bottom:819.975000px;}
.ya2{bottom:819.991500px;}
.y8{bottom:820.392000px;}
.yd8{bottom:820.618500px;}
.yf3{bottom:831.085500px;}
.y69{bottom:833.746500px;}
.y7{bottom:836.830500px;}
.y31{bottom:837.907500px;}
.yd7{bottom:838.551000px;}
.yf2{bottom:847.524000px;}
.ya1{bottom:849.862500px;}
.y30{bottom:855.840000px;}
.yd6{bottom:856.485000px;}
.y6{bottom:858.982500px;}
.ya0{bottom:864.807000px;}
.y2f{bottom:873.774000px;}
.yd5{bottom:874.417500px;}
.y9f{bottom:879.751500px;}
.y5{bottom:884.589000px;}
.y2e{bottom:891.706500px;}
.y9e{bottom:894.694500px;}
.yd4{bottom:902.488500px;}
.y4{bottom:902.521500px;}
.y2d{bottom:909.639000px;}
.y3{bottom:920.455500px;}
.y9d{bottom:924.583500px;}
.y2c{bottom:927.571500px;}
.y9c{bottom:939.526500px;}
.y2b{bottom:945.504000px;}
.y9b{bottom:954.471000px;}
.y2a{bottom:963.436500px;}
.y9a{bottom:969.414000px;}
.y2{bottom:972.403500px;}
.y29{bottom:981.370500px;}
.y99{bottom:984.358500px;}
.y1{bottom:999.303000px;}
.y28{bottom:1038.157500px;}
.h4{height:24.245146px;}
.h5{height:40.348800px;}
.h9{height:41.484266px;}
.h8{height:42.082022px;}
.ha{height:42.141798px;}
.h7{height:44.831700px;}
.h2{height:49.975733px;}
.h3{height:49.981733px;}
.h6{height:50.498765px;}
.h1{height:60.598349px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:202.147500px;}
.x10{left:206.256000px;}
.x15{left:209.058000px;}
.x3{left:214.536000px;}
.xe{left:224.563500px;}
.xf{left:227.551500px;}
.x1{left:229.830000px;}
.x14{left:238.012500px;}
.xc{left:244.666500px;}
.x9{left:249.322500px;}
.x4{left:252.436500px;}
.x12{left:267.016500px;}
.x8{left:283.819500px;}
.x2{left:323.491500px;}
.xa{left:333.396000px;}
.x13{left:350.472000px;}
.x7{left:352.987500px;}
.xb{left:357.487500px;}
.x6{left:364.185000px;}
.x5{left:408.517500px;}
.x11{left:419.626500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.658245pt;}
.lsc{letter-spacing:12.328433pt;}
.ls7{letter-spacing:14.855412pt;}
.ls8{letter-spacing:14.857279pt;}
.lsd{letter-spacing:16.376433pt;}
.lsb{letter-spacing:16.381766pt;}
.ls9{letter-spacing:16.691945pt;}
.lsa{letter-spacing:17.710612pt;}
.ls6{letter-spacing:19.040473pt;}
.ls5{letter-spacing:20.364911pt;}
.ls3{letter-spacing:27.227139pt;}
.ls2{letter-spacing:27.232473pt;}
.wsee{word-spacing:-19.925333pt;}
.ws2{word-spacing:-14.760588pt;}
.ws1f{word-spacing:-13.581016pt;}
.wsf0{word-spacing:-2.964870pt;}
.wsa3{word-spacing:-2.911736pt;}
.ws6{word-spacing:-2.749696pt;}
.ws73{word-spacing:-2.486665pt;}
.ws4b{word-spacing:-2.327263pt;}
.wsec{word-spacing:-2.167862pt;}
.ws71{word-spacing:-2.061594pt;}
.wsdb{word-spacing:-2.008460pt;}
.wsd3{word-spacing:-1.849059pt;}
.wsa4{word-spacing:-1.689657pt;}
.ws94{word-spacing:-1.423988pt;}
.wsef{word-spacing:-1.370854pt;}
.wsf8{word-spacing:-1.362893pt;}
.ws29{word-spacing:-1.211452pt;}
.ws69{word-spacing:-1.158318pt;}
.wsb1{word-spacing:-1.105184pt;}
.ws9e{word-spacing:-1.052051pt;}
.ws6a{word-spacing:-0.839515pt;}
.wsd5{word-spacing:-0.733247pt;}
.wsd7{word-spacing:-0.680113pt;}
.ws45{word-spacing:-0.573846pt;}
.wsb0{word-spacing:-0.520712pt;}
.wsd4{word-spacing:-0.467578pt;}
.wsda{word-spacing:-0.414444pt;}
.wsb{word-spacing:-0.310835pt;}
.wsd0{word-spacing:-0.201909pt;}
.ws49{word-spacing:-0.095641pt;}
.ws13{word-spacing:-0.071731pt;}
.ws6b{word-spacing:-0.053134pt;}
.ws10{word-spacing:-0.047821pt;}
.ws7a{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.wsbf{word-spacing:0.010627pt;}
.wsb7{word-spacing:0.094879pt;}
.ws101{word-spacing:0.167373pt;}
.ws7b{word-spacing:0.223162pt;}
.ws1e{word-spacing:0.382564pt;}
.wsd6{word-spacing:0.480267pt;}
.wsf3{word-spacing:0.549939pt;}
.ws84{word-spacing:0.595099pt;}
.ws66{word-spacing:0.648233pt;}
.ws5d{word-spacing:0.701367pt;}
.ws46{word-spacing:0.737247pt;}
.ws48{word-spacing:0.754501pt;}
.wse6{word-spacing:0.860769pt;}
.wse8{word-spacing:0.913903pt;}
.ws3c{word-spacing:0.967036pt;}
.ws14{word-spacing:0.980326pt;}
.wsc0{word-spacing:1.167142pt;}
.ws8c{word-spacing:1.179572pt;}
.ws35{word-spacing:1.232706pt;}
.wsd8{word-spacing:1.285840pt;}
.wsaf{word-spacing:1.338973pt;}
.ws30{word-spacing:1.445241pt;}
.ws9d{word-spacing:1.498375pt;}
.ws33{word-spacing:1.604643pt;}
.ws90{word-spacing:1.657777pt;}
.ws42{word-spacing:1.710911pt;}
.wsf2{word-spacing:1.793280pt;}
.wse9{word-spacing:1.870312pt;}
.ws5c{word-spacing:1.897808pt;}
.ws47{word-spacing:1.902604pt;}
.wsc5{word-spacing:1.923446pt;}
.ws5e{word-spacing:2.029714pt;}
.ws16{word-spacing:2.032384pt;}
.wsd1{word-spacing:2.082848pt;}
.ws3d{word-spacing:2.152086pt;}
.ws28{word-spacing:2.189115pt;}
.ws26{word-spacing:2.206879pt;}
.wsa1{word-spacing:2.242249pt;}
.wsfd{word-spacing:2.271488pt;}
.wscb{word-spacing:2.295383pt;}
.wsf9{word-spacing:2.367130pt;}
.ws8b{word-spacing:2.373029pt;}
.ws56{word-spacing:2.561052pt;}
.ws12{word-spacing:2.606234pt;}
.ws24{word-spacing:2.614186pt;}
.ws4a{word-spacing:2.624813pt;}
.ws3{word-spacing:2.701875pt;}
.wsf4{word-spacing:2.730220pt;}
.ws4{word-spacing:2.749696pt;}
.ws88{word-spacing:2.773588pt;}
.wsf7{word-spacing:2.893158pt;}
.ws1{word-spacing:2.932989pt;}
.ws91{word-spacing:2.939267pt;}
.wsa{word-spacing:2.940979pt;}
.ws36{word-spacing:2.948212pt;}
.ws41{word-spacing:2.986123pt;}
.wsfa{word-spacing:2.988800pt;}
.wscc{word-spacing:3.092391pt;}
.ws4f{word-spacing:3.198659pt;}
.ws7{word-spacing:3.227904pt;}
.ws72{word-spacing:3.251793pt;}
.wsff{word-spacing:3.323546pt;}
.ws74{word-spacing:3.379314pt;}
.wsc8{word-spacing:3.421821pt;}
.wsdc{word-spacing:3.464328pt;}
.ws85{word-spacing:3.517462pt;}
.ws81{word-spacing:3.623730pt;}
.ws57{word-spacing:3.676864pt;}
.wsed{word-spacing:3.783131pt;}
.wse{word-spacing:3.801754pt;}
.ws77{word-spacing:3.836265pt;}
.ws1a{word-spacing:3.889399pt;}
.ws89{word-spacing:3.902458pt;}
.ws55{word-spacing:3.985067pt;}
.ws38{word-spacing:3.995667pt;}
.ws32{word-spacing:4.048801pt;}
.ws31{word-spacing:4.101935pt;}
.ws37{word-spacing:4.116475pt;}
.wse7{word-spacing:4.121271pt;}
.wse5{word-spacing:4.121972pt;}
.wsb4{word-spacing:4.155068pt;}
.ws98{word-spacing:4.208202pt;}
.ws9a{word-spacing:4.227245pt;}
.ws87{word-spacing:4.261336pt;}
.ws2c{word-spacing:4.367604pt;}
.ws65{word-spacing:4.420738pt;}
.ws2a{word-spacing:4.473872pt;}
.ws2f{word-spacing:4.527005pt;}
.ws2e{word-spacing:4.580139pt;}
.ws17{word-spacing:4.614707pt;}
.ws54{word-spacing:4.686407pt;}
.ws27{word-spacing:4.750168pt;}
.ws0{word-spacing:4.782067pt;}
.ws50{word-spacing:4.792675pt;}
.ws11{word-spacing:4.805990pt;}
.wsf{word-spacing:4.853811pt;}
.ws58{word-spacing:4.857271pt;}
.ws79{word-spacing:5.005210pt;}
.ws2d{word-spacing:5.058344pt;}
.ws23{word-spacing:5.111478pt;}
.wsc2{word-spacing:5.164612pt;}
.wsc1{word-spacing:5.217746pt;}
.ws34{word-spacing:5.270880pt;}
.ws44{word-spacing:5.324013pt;}
.ws80{word-spacing:5.430281pt;}
.ws43{word-spacing:5.440908pt;}
.ws5b{word-spacing:5.483415pt;}
.ws95{word-spacing:5.579093pt;}
.wsfc{word-spacing:5.618944pt;}
.ws20{word-spacing:5.695951pt;}
.wsb3{word-spacing:5.749084pt;}
.ws7d{word-spacing:5.855352pt;}
.wsde{word-spacing:5.908486pt;}
.ws86{word-spacing:5.961620pt;}
.ws15{word-spacing:6.001510pt;}
.ws8f{word-spacing:6.014754pt;}
.ws8d{word-spacing:6.067888pt;}
.wsb2{word-spacing:6.121021pt;}
.ws8{word-spacing:6.144973pt;}
.ws1d{word-spacing:6.174155pt;}
.ws1c{word-spacing:6.227289pt;}
.ws62{word-spacing:6.333557pt;}
.ws70{word-spacing:6.439825pt;}
.wsab{word-spacing:6.652360pt;}
.wseb{word-spacing:6.758628pt;}
.ws63{word-spacing:6.811762pt;}
.wsd9{word-spacing:6.814464pt;}
.wsc4{word-spacing:6.864896pt;}
.wsaa{word-spacing:7.077431pt;}
.wsad{word-spacing:7.102674pt;}
.wsea{word-spacing:7.115137pt;}
.ws9c{word-spacing:7.130565pt;}
.wsf1{word-spacing:7.149210pt;}
.ws60{word-spacing:7.183699pt;}
.ws51{word-spacing:7.236833pt;}
.ws53{word-spacing:7.289967pt;}
.wsb5{word-spacing:7.396234pt;}
.wsce{word-spacing:7.449368pt;}
.wse2{word-spacing:7.487633pt;}
.ws25{word-spacing:7.502502pt;}
.wsc3{word-spacing:7.661904pt;}
.ws9{word-spacing:7.675238pt;}
.ws96{word-spacing:7.715037pt;}
.wsf6{word-spacing:7.723059pt;}
.wsac{word-spacing:7.826880pt;}
.ws59{word-spacing:7.874439pt;}
.ws2b{word-spacing:7.980707pt;}
.wsca{word-spacing:8.009372pt;}
.wsfb{word-spacing:8.057805pt;}
.ws3a{word-spacing:8.140108pt;}
.wsdd{word-spacing:8.299510pt;}
.wsa6{word-spacing:8.344730pt;}
.ws82{word-spacing:8.352644pt;}
.ws61{word-spacing:8.362642pt;}
.ws52{word-spacing:8.435938pt;}
.ws7c{word-spacing:8.458912pt;}
.ws97{word-spacing:8.565179pt;}
.ws7e{word-spacing:8.618313pt;}
.wsd{word-spacing:8.679475pt;}
.ws64{word-spacing:8.724581pt;}
.ws99{word-spacing:8.771023pt;}
.ws78{word-spacing:8.883983pt;}
.wsbe{word-spacing:9.096518pt;}
.ws100{word-spacing:9.157683pt;}
.ws76{word-spacing:9.202786pt;}
.ws4d{word-spacing:9.255920pt;}
.wsc{word-spacing:9.301146pt;}
.ws40{word-spacing:9.309053pt;}
.ws3b{word-spacing:9.321271pt;}
.ws3e{word-spacing:9.362187pt;}
.ws4e{word-spacing:9.372877pt;}
.ws9b{word-spacing:9.497565pt;}
.ws1b{word-spacing:9.521589pt;}
.ws7f{word-spacing:9.627857pt;}
.ws39{word-spacing:9.734124pt;}
.ws21{word-spacing:9.787258pt;}
.wsa0{word-spacing:9.840392pt;}
.ws67{word-spacing:9.893526pt;}
.wsfe{word-spacing:9.922816pt;}
.ws75{word-spacing:9.946660pt;}
.wsdf{word-spacing:10.052928pt;}
.ws6c{word-spacing:10.159195pt;}
.ws92{word-spacing:10.212329pt;}
.wscf{word-spacing:10.371731pt;}
.ws3f{word-spacing:10.510604pt;}
.wsa7{word-spacing:10.637400pt;}
.wse4{word-spacing:10.681271pt;}
.wse0{word-spacing:10.903069pt;}
.wsba{word-spacing:10.956203pt;}
.ws68{word-spacing:11.009337pt;}
.wsc9{word-spacing:11.016544pt;}
.wsbc{word-spacing:11.221873pt;}
.wse3{word-spacing:11.275007pt;}
.ws5a{word-spacing:11.434408pt;}
.wsa9{word-spacing:11.487542pt;}
.wsa2{word-spacing:11.593810pt;}
.wse1{word-spacing:12.100175pt;}
.wsb9{word-spacing:12.337684pt;}
.ws18{word-spacing:12.529050pt;}
.ws9f{word-spacing:13.187826pt;}
.wsb6{word-spacing:13.984834pt;}
.ws4c{word-spacing:14.091101pt;}
.wsb8{word-spacing:14.799613pt;}
.ws93{word-spacing:15.491353pt;}
.wsf5{word-spacing:16.331711pt;}
.wsc6{word-spacing:16.629879pt;}
.wsd2{word-spacing:16.788439pt;}
.wsc7{word-spacing:16.965879pt;}
.wsbd{word-spacing:17.653879pt;}
.wsa5{word-spacing:17.661239pt;}
.wscd{word-spacing:17.791106pt;}
.ws8a{word-spacing:18.619213pt;}
.ws8e{word-spacing:20.758466pt;}
.wsae{word-spacing:21.798813pt;}
.ws83{word-spacing:23.070173pt;}
.wsa8{word-spacing:25.340226pt;}
.wsbb{word-spacing:25.644653pt;}
.ws5{word-spacing:26.515792pt;}
.ws6d{word-spacing:27.842146pt;}
.ws5f{word-spacing:44.132990pt;}
.ws19{word-spacing:51.805867pt;}
.ws6e{word-spacing:55.737426pt;}
.ws6f{word-spacing:83.632706pt;}
._e{margin-left:-35.331180pt;}
._20{margin-left:-29.743829pt;}
._22{margin-left:-28.620035pt;}
._10{margin-left:-27.557358pt;}
._2{margin-left:-26.566933pt;}
._4{margin-left:-25.046514pt;}
._b{margin-left:-24.100861pt;}
._6{margin-left:-20.669074pt;}
._a{margin-left:-18.735166pt;}
._0{margin-left:-7.192228pt;}
._5{margin-left:-5.844725pt;}
._1c{margin-left:-4.888316pt;}
._c{margin-left:-3.665713pt;}
._1{margin-left:-2.371905pt;}
._3{margin-left:-1.466778pt;}
._7{width:0.892140pt;}
._9{width:1.805605pt;}
._8{width:2.757940pt;}
._15{width:3.859653pt;}
._13{width:12.125716pt;}
._1f{width:14.273891pt;}
._1e{width:15.921041pt;}
._16{width:16.918900pt;}
._12{width:18.630868pt;}
._14{width:20.063108pt;}
._f{width:21.925168pt;}
._18{width:23.541891pt;}
._d{width:25.367025pt;}
._24{width:26.588365pt;}
._27{width:27.730170pt;}
._21{width:29.682713pt;}
._25{width:34.909184pt;}
._26{width:36.615066pt;}
._28{width:37.714945pt;}
._2a{width:41.062401pt;}
._29{width:43.325645pt;}
._19{width:55.790560pt;}
._1d{width:61.103947pt;}
._17{width:71.731200pt;}
._1b{width:83.685840pt;}
._1a{width:111.581120pt;}
._23{width:127.107686pt;}
._11{width:151.687578pt;}
.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;}
.y87{bottom:172.102667pt;}
.y27{bottom:172.104000pt;}
.y54{bottom:177.182667pt;}
.y128{bottom:185.566667pt;}
.y26{bottom:188.044000pt;}
.y53{bottom:191.794667pt;}
.yd3{bottom:196.549333pt;}
.y127{bottom:200.178667pt;}
.y25{bottom:203.984000pt;}
.y52{bottom:206.406667pt;}
.yd2{bottom:212.489333pt;}
.y126{bottom:214.790667pt;}
.y24{bottom:219.924000pt;}
.y51{bottom:223.982667pt;}
.yd1{bottom:228.430667pt;}
.y125{bottom:228.840000pt;}
.ybc{bottom:235.330667pt;}
.y23{bottom:235.864000pt;}
.y86{bottom:237.666667pt;}
.y50{bottom:239.922667pt;}
.y124{bottom:243.452000pt;}
.yd0{bottom:244.370667pt;}
.ybb{bottom:251.270667pt;}
.y68{bottom:251.804000pt;}
.y22{bottom:251.805333pt;}
.y85{bottom:253.606667pt;}
.y4f{bottom:255.864000pt;}
.y123{bottom:258.064000pt;}
.ycf{bottom:260.310667pt;}
.yba{bottom:267.210667pt;}
.yf1{bottom:267.744000pt;}
.y21{bottom:267.745333pt;}
.y84{bottom:269.546667pt;}
.y4e{bottom:271.804000pt;}
.y122{bottom:272.676000pt;}
.yce{bottom:276.250667pt;}
.yb9{bottom:283.150667pt;}
.y67{bottom:283.685333pt;}
.y98{bottom:284.461333pt;}
.y83{bottom:285.488000pt;}
.y121{bottom:286.726667pt;}
.ycd{bottom:292.190667pt;}
.y4d{bottom:295.750667pt;}
.y20{bottom:298.486667pt;}
.yb8{bottom:299.090667pt;}
.y66{bottom:299.625333pt;}
.y97{bottom:300.402667pt;}
.y120{bottom:301.337333pt;}
.y82{bottom:301.428000pt;}
.ycc{bottom:308.130667pt;}
.y4c{bottom:311.690667pt;}
.y11f{bottom:315.388000pt;}
.y65{bottom:315.565333pt;}
.y96{bottom:316.342667pt;}
.y81{bottom:317.368000pt;}
.yb7{bottom:322.985333pt;}
.ycb{bottom:324.072000pt;}
.yf0{bottom:324.577333pt;}
.y4b{bottom:327.630667pt;}
.y11e{bottom:330.000000pt;}
.y64{bottom:331.505333pt;}
.y95{bottom:332.282667pt;}
.y80{bottom:333.308000pt;}
.yb6{bottom:338.926667pt;}
.yca{bottom:340.012000pt;}
.y1f{bottom:342.173333pt;}
.y4a{bottom:342.516000pt;}
.y11d{bottom:344.049333pt;}
.y107{bottom:347.445333pt;}
.y94{bottom:348.222667pt;}
.y7f{bottom:349.248000pt;}
.yb5{bottom:354.866667pt;}
.yc9{bottom:355.952000pt;}
.y1e{bottom:356.784000pt;}
.y63{bottom:357.522667pt;}
.y49{bottom:358.456000pt;}
.y11c{bottom:358.661333pt;}
.yef{bottom:362.813333pt;}
.y93{bottom:364.162667pt;}
.y7e{bottom:365.188000pt;}
.yb4{bottom:370.806667pt;}
.yc8{bottom:371.892000pt;}
.y11b{bottom:373.273333pt;}
.y48{bottom:373.341333pt;}
.yee{bottom:378.753333pt;}
.y106{bottom:379.132000pt;}
.y92{bottom:380.104000pt;}
.y7d{bottom:381.129333pt;}
.y1d{bottom:385.724000pt;}
.yb3{bottom:386.746667pt;}
.yc7{bottom:387.832000pt;}
.y11a{bottom:387.885333pt;}
.y47{bottom:389.281333pt;}
.yed{bottom:394.694667pt;}
.y91{bottom:396.820000pt;}
.y62{bottom:396.821333pt;}
.y7c{bottom:397.069333pt;}
.y1c{bottom:400.336000pt;}
.y119{bottom:401.936000pt;}
.yb2{bottom:402.686667pt;}
.yc6{bottom:403.772000pt;}
.y46{bottom:404.166667pt;}
.yec{bottom:410.634667pt;}
.y90{bottom:412.761333pt;}
.y61{bottom:412.762667pt;}
.y1b{bottom:414.948000pt;}
.y118{bottom:416.548000pt;}
.yc5{bottom:419.713333pt;}
.y45{bottom:420.106667pt;}
.y105{bottom:421.445333pt;}
.yeb{bottom:426.574667pt;}
.yb1{bottom:427.116000pt;}
.y8f{bottom:428.701333pt;}
.y60{bottom:428.702667pt;}
.y1a{bottom:429.558667pt;}
.y117{bottom:430.597333pt;}
.y7b{bottom:432.648000pt;}
.y44{bottom:434.990667pt;}
.yc4{bottom:435.653333pt;}
.y104{bottom:437.385333pt;}
.yea{bottom:442.514667pt;}
.y19{bottom:444.170667pt;}
.y8e{bottom:444.641333pt;}
.y5f{bottom:444.642667pt;}
.y116{bottom:445.209333pt;}
.y43{bottom:450.932000pt;}
.yc3{bottom:451.593333pt;}
.y103{bottom:453.325333pt;}
.ye9{bottom:458.454667pt;}
.y18{bottom:458.782667pt;}
.y115{bottom:459.821333pt;}
.y8d{bottom:460.581333pt;}
.y5e{bottom:460.582667pt;}
.yb0{bottom:464.829333pt;}
.y102{bottom:469.265333pt;}
.y17{bottom:473.394667pt;}
.y42{bottom:473.822667pt;}
.y114{bottom:473.870667pt;}
.ye8{bottom:474.394667pt;}
.y8c{bottom:476.521333pt;}
.y5d{bottom:476.522667pt;}
.yc2{bottom:477.520000pt;}
.yaf{bottom:480.769333pt;}
.y7a{bottom:481.510667pt;}
.y101{bottom:485.205333pt;}
.y16{bottom:488.006667pt;}
.y113{bottom:488.482667pt;}
.y41{bottom:489.762667pt;}
.ye7{bottom:490.336000pt;}
.y8b{bottom:492.461333pt;}
.y5c{bottom:492.462667pt;}
.yae{bottom:496.710667pt;}
.y79{bottom:497.452000pt;}
.y100{bottom:501.146667pt;}
.y15{bottom:502.618667pt;}
.y112{bottom:503.094667pt;}
.y40{bottom:505.704000pt;}
.ye6{bottom:506.276000pt;}
.y8a{bottom:508.402667pt;}
.yad{bottom:512.650667pt;}
.y78{bottom:513.392000pt;}
.yc1{bottom:516.730667pt;}
.yff{bottom:517.086667pt;}
.y111{bottom:517.145333pt;}
.y14{bottom:517.230667pt;}
.y3f{bottom:521.644000pt;}
.ye5{bottom:522.216000pt;}
.y5b{bottom:523.793333pt;}
.yac{bottom:528.590667pt;}
.y77{bottom:529.332000pt;}
.y110{bottom:531.757333pt;}
.y13{bottom:531.842667pt;}
.yc0{bottom:532.670667pt;}
.yfe{bottom:533.026667pt;}
.y3e{bottom:537.584000pt;}
.ye4{bottom:538.156000pt;}
.y89{bottom:544.166667pt;}
.yab{bottom:544.530667pt;}
.y76{bottom:545.272000pt;}
.y10f{bottom:546.369333pt;}
.y12{bottom:546.454667pt;}
.ybf{bottom:548.610667pt;}
.yfd{bottom:548.966667pt;}
.y3d{bottom:553.524000pt;}
.ye3{bottom:554.096000pt;}
.y10e{bottom:560.418667pt;}
.yaa{bottom:560.470667pt;}
.y11{bottom:561.066667pt;}
.yfc{bottom:564.906667pt;}
.y5a{bottom:565.749333pt;}
.y3c{bottom:569.464000pt;}
.ye2{bottom:570.037333pt;}
.y10d{bottom:575.030667pt;}
.y10{bottom:575.677333pt;}
.ya9{bottom:576.410667pt;}
.yfb{bottom:580.846667pt;}
.y59{bottom:581.689333pt;}
.y75{bottom:581.705333pt;}
.y3b{bottom:585.404000pt;}
.ye1{bottom:585.977333pt;}
.yf{bottom:590.289333pt;}
.ya8{bottom:592.352000pt;}
.ybe{bottom:594.478667pt;}
.y74{bottom:594.989333pt;}
.yfa{bottom:596.788000pt;}
.y58{bottom:597.630667pt;}
.y3a{bottom:601.345333pt;}
.ye0{bottom:601.917333pt;}
.y10c{bottom:602.773333pt;}
.y88{bottom:604.849333pt;}
.ye{bottom:604.901333pt;}
.y73{bottom:608.273333pt;}
.ya7{bottom:608.292000pt;}
.ybd{bottom:609.090667pt;}
.yf9{bottom:612.728000pt;}
.y57{bottom:613.570667pt;}
.y39{bottom:617.285333pt;}
.ydf{bottom:617.857333pt;}
.yd{bottom:619.513333pt;}
.y72{bottom:621.556000pt;}
.yf8{bottom:628.668000pt;}
.y56{bottom:629.510667pt;}
.y38{bottom:633.225333pt;}
.yde{bottom:633.797333pt;}
.y71{bottom:634.840000pt;}
.ya6{bottom:638.034667pt;}
.y10b{bottom:643.033333pt;}
.yf7{bottom:644.608000pt;}
.y70{bottom:648.122667pt;}
.y37{bottom:649.165333pt;}
.ydd{bottom:649.737333pt;}
.ya5{bottom:656.632000pt;}
.y10a{bottom:658.973333pt;}
.yf6{bottom:660.548000pt;}
.y6f{bottom:661.406667pt;}
.y36{bottom:665.105333pt;}
.ydc{bottom:665.678667pt;}
.yc{bottom:670.789333pt;}
.y6e{bottom:674.690667pt;}
.y109{bottom:674.913333pt;}
.yf5{bottom:676.488000pt;}
.y35{bottom:681.045333pt;}
.ydb{bottom:681.618667pt;}
.y6d{bottom:687.973333pt;}
.y55{bottom:688.752000pt;}
.yb{bottom:690.480000pt;}
.yf4{bottom:692.429333pt;}
.y34{bottom:696.986667pt;}
.ya4{bottom:697.001333pt;}
.yda{bottom:697.558667pt;}
.y6c{bottom:701.257333pt;}
.y108{bottom:704.546667pt;}
.ya{bottom:705.092000pt;}
.y33{bottom:712.926667pt;}
.ya3{bottom:712.941333pt;}
.yd9{bottom:713.498667pt;}
.y6b{bottom:714.541333pt;}
.y9{bottom:714.625333pt;}
.y6a{bottom:727.824000pt;}
.y32{bottom:728.866667pt;}
.ya2{bottom:728.881333pt;}
.y8{bottom:729.237333pt;}
.yd8{bottom:729.438667pt;}
.yf3{bottom:738.742667pt;}
.y69{bottom:741.108000pt;}
.y7{bottom:743.849333pt;}
.y31{bottom:744.806667pt;}
.yd7{bottom:745.378667pt;}
.yf2{bottom:753.354667pt;}
.ya1{bottom:755.433333pt;}
.y30{bottom:760.746667pt;}
.yd6{bottom:761.320000pt;}
.y6{bottom:763.540000pt;}
.ya0{bottom:768.717333pt;}
.y2f{bottom:776.688000pt;}
.yd5{bottom:777.260000pt;}
.y9f{bottom:782.001333pt;}
.y5{bottom:786.301333pt;}
.y2e{bottom:792.628000pt;}
.y9e{bottom:795.284000pt;}
.yd4{bottom:802.212000pt;}
.y4{bottom:802.241333pt;}
.y2d{bottom:808.568000pt;}
.y3{bottom:818.182667pt;}
.y9d{bottom:821.852000pt;}
.y2c{bottom:824.508000pt;}
.y9c{bottom:835.134667pt;}
.y2b{bottom:840.448000pt;}
.y9b{bottom:848.418667pt;}
.y2a{bottom:856.388000pt;}
.y9a{bottom:861.701333pt;}
.y2{bottom:864.358667pt;}
.y29{bottom:872.329333pt;}
.y99{bottom:874.985333pt;}
.y1{bottom:888.269333pt;}
.y28{bottom:922.806667pt;}
.h4{height:21.551241pt;}
.h5{height:35.865600pt;}
.h9{height:36.874903pt;}
.h8{height:37.406242pt;}
.ha{height:37.459376pt;}
.h7{height:39.850400pt;}
.h2{height:44.422874pt;}
.h3{height:44.428207pt;}
.h6{height:44.887791pt;}
.h1{height:53.865199pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:179.686667pt;}
.x10{left:183.338667pt;}
.x15{left:185.829333pt;}
.x3{left:190.698667pt;}
.xe{left:199.612000pt;}
.xf{left:202.268000pt;}
.x1{left:204.293333pt;}
.x14{left:211.566667pt;}
.xc{left:217.481333pt;}
.x9{left:221.620000pt;}
.x4{left:224.388000pt;}
.x12{left:237.348000pt;}
.x8{left:252.284000pt;}
.x2{left:287.548000pt;}
.xa{left:296.352000pt;}
.x13{left:311.530667pt;}
.x7{left:313.766667pt;}
.xb{left:317.766667pt;}
.x6{left:323.720000pt;}
.x5{left:363.126667pt;}
.x11{left:373.001333pt;}
}




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