
    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_d023d6985a22025e80e52f59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_7ef2302537dbdf6981326c14.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_7c296c6cfa324a94a6c4ac47.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.664000;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_dfd33dc0d312ae81c31b5c55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5bb64cc25d1910e6bb6cb208.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_73bc02207c72caaba5b74420.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.844000;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_8ea45b8dcafb72a29b014aa7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_5827f8dd31c5c905a6dcbbb9.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ccd4a146a2a48ee320420c25.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_5ae47807c290bdf9f63cb1a9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_298275153902c0846f13c782.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_98a5017b58ee93bef1e9e63b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c954b367364c62c9ab352485.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v3{vertical-align:-22.860000px;}
.v4{vertical-align:-8.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.560000px;}
.v2{vertical-align:15.120000px;}
.v1{vertical-align:21.720000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.013672px;}
.ls14{letter-spacing:0.028907px;}
.ls0{letter-spacing:2.994026px;}
.ls5{letter-spacing:4.846549px;}
.lsd{letter-spacing:6.432691px;}
.ls7{letter-spacing:8.309142px;}
.ls8{letter-spacing:13.251000px;}
.lse{letter-spacing:13.264672px;}
.lsf{letter-spacing:13.285551px;}
.ls9{letter-spacing:13.311000px;}
.ls11{letter-spacing:13.966500px;}
.ls12{letter-spacing:15.013672px;}
.lsa{letter-spacing:16.624672px;}
.ls10{letter-spacing:18.925551px;}
.ls13{letter-spacing:19.933672px;}
.ls6{letter-spacing:21.406549px;}
.lsc{letter-spacing:22.633672px;}
.ls1{letter-spacing:27.433672px;}
.ls4{letter-spacing:29.887650px;}
.ls2{letter-spacing:30.641065px;}
.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;}
}
.ws64{word-spacing:-8.368920px;}
.ws10d{word-spacing:-0.071730px;}
.ws18{word-spacing:-0.059778px;}
.ws110{word-spacing:-0.053796px;}
.ws29{word-spacing:0.000000px;}
.ws65{word-spacing:7.657194px;}
.wsd2{word-spacing:9.863370px;}
.ws6f{word-spacing:10.544016px;}
.ws114{word-spacing:12.749652px;}
.ws111{word-spacing:13.072428px;}
.ws66{word-spacing:13.151160px;}
.wsd5{word-spacing:13.210938px;}
.wsd4{word-spacing:13.214558px;}
.wsd6{word-spacing:13.276889px;}
.ws8{word-spacing:13.341408px;}
.ws12f{word-spacing:13.502796px;}
.ws10b{word-spacing:13.509828px;}
.ws56{word-spacing:13.569606px;}
.wse0{word-spacing:13.898855px;}
.wse1{word-spacing:13.928274px;}
.ws52{word-spacing:14.107608px;}
.ws84{word-spacing:14.167386px;}
.ws49{word-spacing:14.406498px;}
.ws9{word-spacing:14.471124px;}
.wsbf{word-spacing:14.526054px;}
.wsbb{word-spacing:14.585832px;}
.ws113{word-spacing:14.632512px;}
.wsda{word-spacing:14.824944px;}
.wsdc{word-spacing:14.884722px;}
.wsd3{word-spacing:14.884834px;}
.ws6e{word-spacing:14.944500px;}
.wsdb{word-spacing:14.956889px;}
.ws4a{word-spacing:15.004278px;}
.wsf8{word-spacing:15.064056px;}
.ws80{word-spacing:15.123834px;}
.ws7e{word-spacing:15.183612px;}
.ws59{word-spacing:15.243390px;}
.ws11{word-spacing:15.278064px;}
.ws34{word-spacing:15.303168px;}
.ws44{word-spacing:15.362946px;}
.ws4f{word-spacing:15.542280px;}
.ws130{word-spacing:15.547044px;}
.wsf6{word-spacing:15.721614px;}
.ws103{word-spacing:15.900948px;}
.ws2c{word-spacing:15.960726px;}
.wsb7{word-spacing:16.080282px;}
.ws81{word-spacing:16.140060px;}
.ws5b{word-spacing:16.199838px;}
.wsac{word-spacing:16.259616px;}
.wsc{word-spacing:16.407780px;}
.ws3a{word-spacing:16.438950px;}
.ws3d{word-spacing:16.498728px;}
.ws128{word-spacing:16.515372px;}
.ws63{word-spacing:16.558506px;}
.wse4{word-spacing:16.613273px;}
.wsfe{word-spacing:16.659176px;}
.wsb8{word-spacing:16.678062px;}
.wsec{word-spacing:16.704720px;}
.wsb4{word-spacing:16.737840px;}
.ws2e{word-spacing:16.797618px;}
.ws123{word-spacing:16.891944px;}
.ws93{word-spacing:16.917174px;}
.ws88{word-spacing:16.960658px;}
.ws89{word-spacing:16.976952px;}
.wsb0{word-spacing:17.036730px;}
.wsea{word-spacing:17.053332px;}
.wsfb{word-spacing:17.096508px;}
.ws10c{word-spacing:17.156286px;}
.ws127{word-spacing:17.160924px;}
.ws12e{word-spacing:17.214720px;}
.wsf0{word-spacing:17.216064px;}
.wsf{word-spacing:17.268516px;}
.ws55{word-spacing:17.275842px;}
.wsb9{word-spacing:17.335620px;}
.ws43{word-spacing:17.455176px;}
.wsde{word-spacing:17.470550px;}
.wsdd{word-spacing:17.514954px;}
.ws122{word-spacing:17.537496px;}
.ws85{word-spacing:17.574732px;}
.ws105{word-spacing:17.634510px;}
.ws11f{word-spacing:17.645088px;}
.wsfc{word-spacing:17.694288px;}
.ws12c{word-spacing:17.806476px;}
.ws12b{word-spacing:17.860272px;}
.ws5c{word-spacing:17.873622px;}
.ws12d{word-spacing:17.914068px;}
.ws7b{word-spacing:17.933400px;}
.ws14{word-spacing:17.993178px;}
.ws10{word-spacing:18.021660px;}
.ws48{word-spacing:18.052956px;}
.wsaa{word-spacing:18.070550px;}
.wsab{word-spacing:18.112734px;}
.ws2b{word-spacing:18.172512px;}
.ws10f{word-spacing:18.183048px;}
.ws100{word-spacing:18.232290px;}
.ws5{word-spacing:18.290640px;}
.ws94{word-spacing:18.292068px;}
.ws3{word-spacing:18.344436px;}
.ws1d{word-spacing:18.351846px;}
.ws11b{word-spacing:18.356610px;}
.ws4{word-spacing:18.398232px;}
.wseb{word-spacing:18.400135px;}
.wsfd{word-spacing:18.406339px;}
.ws36{word-spacing:18.471402px;}
.wse{word-spacing:18.505824px;}
.ws9f{word-spacing:18.531180px;}
.ws9d{word-spacing:18.550550px;}
.ws1b{word-spacing:18.590958px;}
.ws9e{word-spacing:18.609880px;}
.ws19{word-spacing:18.650736px;}
.ws116{word-spacing:18.667212px;}
.ws107{word-spacing:18.688808px;}
.ws60{word-spacing:18.710514px;}
.ws129{word-spacing:18.721008px;}
.ws26{word-spacing:18.770292px;}
.wsd8{word-spacing:18.822008px;}
.wscf{word-spacing:18.830070px;}
.wsee{word-spacing:18.949626px;}
.ws17{word-spacing:19.069182px;}
.ws8e{word-spacing:19.128960px;}
.ws73{word-spacing:19.248516px;}
.ws7{word-spacing:19.420356px;}
.ws104{word-spacing:19.427850px;}
.wsa1{word-spacing:19.487628px;}
.wsa2{word-spacing:19.570550px;}
.wsa4{word-spacing:19.607184px;}
.ws57{word-spacing:19.666962px;}
.wse3{word-spacing:19.726740px;}
.ws2{word-spacing:19.786518px;}
.ws5e{word-spacing:19.840658px;}
.ws6a{word-spacing:19.845908px;}
.ws1{word-spacing:19.846296px;}
.ws126{word-spacing:19.850724px;}
.wsd0{word-spacing:19.870550px;}
.wsd1{word-spacing:19.888784px;}
.ws109{word-spacing:19.905908px;}
.ws6c{word-spacing:19.906074px;}
.ws68{word-spacing:19.930165px;}
.ws24{word-spacing:19.965852px;}
.ws8a{word-spacing:20.025630px;}
.wse8{word-spacing:20.035161px;}
.ws87{word-spacing:20.085408px;}
.ws45{word-spacing:20.145186px;}
.ws54{word-spacing:20.204964px;}
.wse9{word-spacing:20.264742px;}
.ws112{word-spacing:20.281092px;}
.ws98{word-spacing:20.324520px;}
.ws99{word-spacing:20.364022px;}
.ws9a{word-spacing:20.384298px;}
.ws2a{word-spacing:20.444076px;}
.ws7f{word-spacing:20.450833px;}
.wsb6{word-spacing:20.503854px;}
.wsd9{word-spacing:20.584834px;}
.ws4e{word-spacing:20.683188px;}
.ws121{word-spacing:20.711460px;}
.wsf9{word-spacing:20.742966px;}
.ws1e{word-spacing:20.802744px;}
.ws86{word-spacing:20.862522px;}
.ws37{word-spacing:20.922300px;}
.ws11e{word-spacing:20.980440px;}
.ws23{word-spacing:20.982078px;}
.ws12a{word-spacing:21.034236px;}
.ws101{word-spacing:21.041856px;}
.wsa3{word-spacing:21.101634px;}
.wsae{word-spacing:21.161412px;}
.wsa0{word-spacing:21.221190px;}
.ws13{word-spacing:21.280968px;}
.ws76{word-spacing:21.286072px;}
.ws11a{word-spacing:21.303216px;}
.ws77{word-spacing:21.340746px;}
.ws35{word-spacing:21.460302px;}
.wsce{word-spacing:21.520080px;}
.ws1c{word-spacing:21.639636px;}
.ws53{word-spacing:21.699414px;}
.wsb2{word-spacing:21.759192px;}
.ws7d{word-spacing:21.818970px;}
.wsa{word-spacing:21.841176px;}
.wsc4{word-spacing:21.878748px;}
.ws83{word-spacing:21.998304px;}
.wsd{word-spacing:22.056360px;}
.wsa5{word-spacing:22.058082px;}
.ws9c{word-spacing:22.117860px;}
.ws1f{word-spacing:22.177638px;}
.wsa6{word-spacing:22.235465px;}
.ws25{word-spacing:22.237416px;}
.ws70{word-spacing:22.271544px;}
.ws40{word-spacing:22.297194px;}
.ws47{word-spacing:22.356972px;}
.ws117{word-spacing:22.432932px;}
.wsa9{word-spacing:22.459462px;}
.wsa8{word-spacing:22.476528px;}
.wsa7{word-spacing:22.536306px;}
.ws5d{word-spacing:22.596084px;}
.ws120{word-spacing:22.648116px;}
.ws72{word-spacing:22.655862px;}
.ws38{word-spacing:22.715640px;}
.wse5{word-spacing:22.775418px;}
.wsc9{word-spacing:22.835196px;}
.wsad{word-spacing:22.894974px;}
.ws32{word-spacing:23.074308px;}
.wsf3{word-spacing:23.134086px;}
.wsf1{word-spacing:23.134679px;}
.ws7c{word-spacing:23.241050px;}
.ws82{word-spacing:23.253642px;}
.ws106{word-spacing:23.273532px;}
.wsed{word-spacing:23.283146px;}
.ws102{word-spacing:23.313420px;}
.wscb{word-spacing:23.373198px;}
.ws11d{word-spacing:23.401260px;}
.ws71{word-spacing:23.492754px;}
.ws74{word-spacing:23.552532px;}
.ws15{word-spacing:23.612310px;}
.ws58{word-spacing:23.731866px;}
.ws3f{word-spacing:23.791644px;}
.ws42{word-spacing:23.851422px;}
.ws1a{word-spacing:23.900264px;}
.wsef{word-spacing:23.970978px;}
.ws33{word-spacing:24.030756px;}
.ws118{word-spacing:24.154404px;}
.ws3e{word-spacing:24.210090px;}
.ws6d{word-spacing:24.259038px;}
.wsf2{word-spacing:24.269868px;}
.ws108{word-spacing:24.332155px;}
.wsc2{word-spacing:24.389424px;}
.ws132{word-spacing:24.477180px;}
.ws51{word-spacing:24.508980px;}
.ws133{word-spacing:24.530976px;}
.ws5a{word-spacing:24.628536px;}
.wsaf{word-spacing:24.688314px;}
.wsf4{word-spacing:24.748092px;}
.ws92{word-spacing:24.927426px;}
.ws39{word-spacing:24.987204px;}
.ws46{word-spacing:25.046982px;}
.wsca{word-spacing:25.106760px;}
.wsb{word-spacing:25.122732px;}
.wse2{word-spacing:25.166538px;}
.ws16{word-spacing:25.226316px;}
.ws95{word-spacing:25.286094px;}
.ws10a{word-spacing:25.448725px;}
.ws4c{word-spacing:25.465428px;}
.ws27{word-spacing:25.485850px;}
.ws62{word-spacing:25.525206px;}
.ws28{word-spacing:25.540658px;}
.ws61{word-spacing:25.584984px;}
.ws9b{word-spacing:25.644762px;}
.wsf7{word-spacing:25.704540px;}
.wsf5{word-spacing:25.764318px;}
.ws91{word-spacing:25.824096px;}
.ws8f{word-spacing:25.868134px;}
.ws2d{word-spacing:25.883874px;}
.ws5f{word-spacing:26.003430px;}
.wsc8{word-spacing:26.063208px;}
.wse7{word-spacing:26.182764px;}
.ws4b{word-spacing:26.242542px;}
.ws115{word-spacing:26.252448px;}
.ws41{word-spacing:26.302320px;}
.wse6{word-spacing:26.362098px;}
.ws4d{word-spacing:26.421876px;}
.ws96{word-spacing:26.428189px;}
.ws30{word-spacing:26.481654px;}
.wsbd{word-spacing:26.720766px;}
.wsba{word-spacing:26.755290px;}
.ws3c{word-spacing:26.780544px;}
.ws31{word-spacing:26.827020px;}
.ws90{word-spacing:26.840322px;}
.ws8b{word-spacing:26.900100px;}
.ws22{word-spacing:27.019656px;}
.ws119{word-spacing:27.059388px;}
.wscd{word-spacing:27.079434px;}
.ws11c{word-spacing:27.113184px;}
.ws7a{word-spacing:27.139212px;}
.wsbe{word-spacing:27.378324px;}
.ws6b{word-spacing:27.577194px;}
.ws125{word-spacing:27.597348px;}
.ws69{word-spacing:27.637194px;}
.wsc3{word-spacing:27.677214px;}
.ws8c{word-spacing:27.736992px;}
.ws2f{word-spacing:27.796770px;}
.wscc{word-spacing:27.916326px;}
.ws21{word-spacing:28.035882px;}
.wsb3{word-spacing:28.215216px;}
.wsfa{word-spacing:28.812996px;}
.wsb5{word-spacing:28.932552px;}
.ws124{word-spacing:28.942248px;}
.ws50{word-spacing:29.171664px;}
.wsdf{word-spacing:29.231442px;}
.ws79{word-spacing:29.350998px;}
.ws8d{word-spacing:29.410776px;}
.wsc1{word-spacing:29.530332px;}
.wsbc{word-spacing:29.590110px;}
.wsc7{word-spacing:29.709666px;}
.wsb1{word-spacing:29.827872px;}
.wsc6{word-spacing:29.829222px;}
.ws131{word-spacing:29.856780px;}
.ws6{word-spacing:29.865106px;}
.ws10e{word-spacing:29.948778px;}
.ws78{word-spacing:30.068334px;}
.wsc0{word-spacing:30.187890px;}
.wsc5{word-spacing:30.486780px;}
.ws97{word-spacing:31.659893px;}
.ws3b{word-spacing:32.160564px;}
.ws0{word-spacing:32.192424px;}
.ws20{word-spacing:32.578529px;}
.ws75{word-spacing:68.684922px;}
.wsd7{word-spacing:79.863408px;}
.ws12{word-spacing:80.624520px;}
.wsff{word-spacing:210.034675px;}
.ws67{word-spacing:467.852558px;}
._6{margin-left:-29.889000px;}
._3{margin-left:-27.780300px;}
._27{margin-left:-25.691298px;}
._4{margin-left:-22.706352px;}
._9{margin-left:-21.518400px;}
._2{margin-left:-8.091144px;}
._8{margin-left:-6.799666px;}
._d{margin-left:-5.551024px;}
._5{margin-left:-3.905738px;}
._1{margin-left:-2.668356px;}
._7{margin-left:-1.506288px;}
._a{width:1.506288px;}
._0{width:2.582280px;}
._b{width:4.324184px;}
._16{width:5.369038px;}
._1d{width:6.396246px;}
._13{width:7.858280px;}
._12{width:8.942047px;}
._17{width:15.233574px;}
._1f{width:16.377686px;}
._1e{width:17.646251px;}
._11{width:18.987750px;}
._c{width:20.927442px;}
._14{width:22.343681px;}
._20{width:23.361101px;}
._15{width:24.558942px;}
._10{width:26.304342px;}
._e{width:27.595782px;}
._2c{width:28.874435px;}
._18{width:30.657784px;}
._1b{width:32.575046px;}
._1c{width:33.658598px;}
._19{width:35.585258px;}
._1a{width:37.752584px;}
._2d{width:39.540060px;}
._28{width:41.960880px;}
._29{width:50.838094px;}
._2b{width:51.913140px;}
._25{width:53.234236px;}
._2a{width:56.248384px;}
._22{width:64.856942px;}
._21{width:68.744700px;}
._24{width:78.674236px;}
._f{width:80.696250px;}
._23{width:92.474236px;}
._26{width:401.908762px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.868000px;}
.fs2{font-size:41.844000px;}
.fs4{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs5{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y27{bottom:268.620000px;}
.y16f{bottom:276.480000px;}
.y13e{bottom:285.060000px;}
.y26{bottom:286.545000px;}
.y16e{bottom:292.920000px;}
.y50{bottom:304.485000px;}
.y25{bottom:305.040000px;}
.y16d{bottom:309.345000px;}
.y13d{bottom:312.600000px;}
.y4f{bottom:322.410000px;}
.ydd{bottom:322.710000px;}
.y24{bottom:322.980000px;}
.y16c{bottom:325.785000px;}
.y7e{bottom:329.685000px;}
.y4e{bottom:340.350000px;}
.ydc{bottom:340.650000px;}
.y16b{bottom:340.815000px;}
.y23{bottom:340.905000px;}
.y13c{bottom:354.945000px;}
.y16a{bottom:357.255000px;}
.y4d{bottom:358.275000px;}
.y6d{bottom:358.695000px;}
.y22{bottom:358.845000px;}
.ydb{bottom:358.875000px;}
.y7d{bottom:369.840000px;}
.y169{bottom:372.270000px;}
.y13b{bottom:372.885000px;}
.y4c{bottom:376.215000px;}
.yb8{bottom:376.590000px;}
.y6c{bottom:376.620000px;}
.y21{bottom:376.770000px;}
.yda{bottom:376.800000px;}
.y7c{bottom:387.780000px;}
.y168{bottom:388.710000px;}
.y13a{bottom:390.810000px;}
.y4b{bottom:394.140000px;}
.yb7{bottom:394.530000px;}
.y6b{bottom:394.560000px;}
.y20{bottom:394.710000px;}
.yd9{bottom:394.740000px;}
.y167{bottom:403.725000px;}
.y139{bottom:408.750000px;}
.y99{bottom:412.080000px;}
.y4a{bottom:412.125000px;}
.yb6{bottom:412.455000px;}
.y6a{bottom:412.485000px;}
.y1f{bottom:412.635000px;}
.yd8{bottom:412.965000px;}
.y7b{bottom:418.965000px;}
.y166{bottom:420.165000px;}
.y138{bottom:426.675000px;}
.y98{bottom:430.005000px;}
.y49{bottom:430.065000px;}
.yb5{bottom:430.395000px;}
.y1e{bottom:430.575000px;}
.yd7{bottom:430.890000px;}
.y165{bottom:435.195000px;}
.y137{bottom:444.615000px;}
.y69{bottom:447.000000px;}
.y97{bottom:447.945000px;}
.y48{bottom:447.990000px;}
.yb4{bottom:448.335000px;}
.y1d{bottom:448.500000px;}
.yd6{bottom:448.830000px;}
.y164{bottom:451.635000px;}
.y7a{bottom:462.105000px;}
.y68{bottom:464.940000px;}
.y96{bottom:465.870000px;}
.y47{bottom:465.930000px;}
.yb3{bottom:466.650000px;}
.y1c{bottom:466.995000px;}
.yd5{bottom:467.055000px;}
.y136{bottom:475.005000px;}
.yf6{bottom:476.925000px;}
.y79{bottom:480.030000px;}
.y163{bottom:483.090000px;}
.y67{bottom:483.285000px;}
.y95{bottom:483.810000px;}
.y46{bottom:483.870000px;}
.yb2{bottom:484.575000px;}
.y1b{bottom:484.935000px;}
.yd4{bottom:484.995000px;}
.y78{bottom:497.970000px;}
.y162{bottom:498.105000px;}
.y11b{bottom:500.640000px;}
.y66{bottom:501.210000px;}
.y94{bottom:501.735000px;}
.y45{bottom:501.795000px;}
.yb1{bottom:502.515000px;}
.y1a{bottom:502.860000px;}
.yd3{bottom:502.920000px;}
.y161{bottom:514.545000px;}
.y77{bottom:515.910000px;}
.y135{bottom:517.365000px;}
.y11a{bottom:517.680000px;}
.y65{bottom:519.555000px;}
.y93{bottom:519.675000px;}
.y44{bottom:519.735000px;}
.yb0{bottom:520.440000px;}
.y19{bottom:520.800000px;}
.yf5{bottom:520.845000px;}
.yd2{bottom:521.145000px;}
.y160{bottom:530.985000px;}
.y76{bottom:533.835000px;}
.y119{bottom:534.720000px;}
.y134{bottom:535.305000px;}
.y64{bottom:537.495000px;}
.y92{bottom:537.615000px;}
.y43{bottom:537.660000px;}
.yaf{bottom:538.380000px;}
.y18{bottom:538.725000px;}
.yf4{bottom:538.785000px;}
.yd1{bottom:539.085000px;}
.y15f{bottom:546.015000px;}
.y118{bottom:551.745000px;}
.y133{bottom:553.230000px;}
.y91{bottom:555.540000px;}
.y42{bottom:555.645000px;}
.y101{bottom:555.795000px;}
.y63{bottom:555.840000px;}
.yae{bottom:556.305000px;}
.y17{bottom:556.665000px;}
.yd0{bottom:557.010000px;}
.y15e{bottom:562.440000px;}
.y117{bottom:568.785000px;}
.y132{bottom:571.170000px;}
.y100{bottom:572.835000px;}
.y90{bottom:573.480000px;}
.y41{bottom:573.585000px;}
.yf3{bottom:573.735000px;}
.y62{bottom:574.170000px;}
.yad{bottom:574.245000px;}
.ycf{bottom:575.250000px;}
.y15d{bottom:578.880000px;}
.y75{bottom:580.545000px;}
.y116{bottom:585.825000px;}
.y131{bottom:589.095000px;}
.y8f{bottom:591.405000px;}
.y40{bottom:591.510000px;}
.yce{bottom:593.175000px;}
.y15c{bottom:593.910000px;}
.y16{bottom:595.905000px;}
.y74{bottom:596.970000px;}
.yff{bottom:601.380000px;}
.y130{bottom:607.035000px;}
.yac{bottom:609.045000px;}
.y61{bottom:609.105000px;}
.y8e{bottom:609.345000px;}
.y3f{bottom:609.450000px;}
.y15b{bottom:610.350000px;}
.ycd{bottom:611.115000px;}
.y115{bottom:616.980000px;}
.yf2{bottom:620.655000px;}
.y12f{bottom:624.960000px;}
.y15a{bottom:626.775000px;}
.yab{bottom:626.970000px;}
.y60{bottom:627.045000px;}
.y8d{bottom:627.270000px;}
.y3e{bottom:627.375000px;}
.ycc{bottom:629.040000px;}
.yf1{bottom:638.580000px;}
.y159{bottom:641.805000px;}
.y12e{bottom:642.900000px;}
.y5f{bottom:644.970000px;}
.y8c{bottom:645.210000px;}
.yaa{bottom:645.285000px;}
.y3d{bottom:645.315000px;}
.yfe{bottom:647.130000px;}
.ycb{bottom:647.265000px;}
.y15{bottom:648.900000px;}
.yf0{bottom:656.520000px;}
.y158{bottom:658.245000px;}
.y12d{bottom:660.825000px;}
.y5e{bottom:662.910000px;}
.y114{bottom:663.030000px;}
.y8b{bottom:663.135000px;}
.ya9{bottom:663.225000px;}
.y3c{bottom:663.300000px;}
.yfd{bottom:665.055000px;}
.yca{bottom:665.205000px;}
.y14{bottom:665.340000px;}
.yef{bottom:674.445000px;}
.y157{bottom:674.685000px;}
.y12c{bottom:678.765000px;}
.y113{bottom:680.970000px;}
.y8a{bottom:681.075000px;}
.ya8{bottom:681.150000px;}
.y3b{bottom:681.225000px;}
.y5d{bottom:681.240000px;}
.y13{bottom:681.780000px;}
.yfc{bottom:682.995000px;}
.yc9{bottom:683.130000px;}
.y156{bottom:691.125000px;}
.yee{bottom:692.385000px;}
.y12b{bottom:696.690000px;}
.y12{bottom:698.205000px;}
.y112{bottom:698.895000px;}
.ya7{bottom:699.090000px;}
.y3a{bottom:699.165000px;}
.y5c{bottom:699.180000px;}
.yfb{bottom:700.920000px;}
.yc8{bottom:701.370000px;}
.y155{bottom:706.140000px;}
.y89{bottom:709.050000px;}
.yed{bottom:710.310000px;}
.y12a{bottom:714.630000px;}
.y11{bottom:714.645000px;}
.y111{bottom:716.835000px;}
.y39{bottom:717.090000px;}
.y5b{bottom:717.105000px;}
.yfa{bottom:718.860000px;}
.yc7{bottom:719.295000px;}
.y154{bottom:722.580000px;}
.yec{bottom:728.250000px;}
.y10{bottom:731.085000px;}
.y129{bottom:732.555000px;}
.y110{bottom:734.760000px;}
.y5a{bottom:735.045000px;}
.y38{bottom:735.075000px;}
.yf9{bottom:736.785000px;}
.ya6{bottom:736.875000px;}
.yc6{bottom:737.520000px;}
.y153{bottom:739.020000px;}
.yeb{bottom:746.175000px;}
.yf{bottom:747.525000px;}
.y128{bottom:750.495000px;}
.y88{bottom:751.995000px;}
.y10f{bottom:752.700000px;}
.y59{bottom:752.985000px;}
.y37{bottom:753.015000px;}
.y152{bottom:754.035000px;}
.yf8{bottom:754.725000px;}
.yc5{bottom:755.460000px;}
.ye{bottom:763.965000px;}
.yea{bottom:764.115000px;}
.y127{bottom:768.420000px;}
.y87{bottom:769.920000px;}
.y151{bottom:770.475000px;}
.y10e{bottom:770.625000px;}
.y58{bottom:770.910000px;}
.y36{bottom:770.940000px;}
.yc4{bottom:773.385000px;}
.yd{bottom:780.405000px;}
.ye9{bottom:782.040000px;}
.y126{bottom:786.360000px;}
.ya5{bottom:786.615000px;}
.y150{bottom:786.915000px;}
.y86{bottom:787.860000px;}
.y10d{bottom:788.565000px;}
.y57{bottom:788.850000px;}
.y35{bottom:788.880000px;}
.yc{bottom:796.845000px;}
.ye8{bottom:799.980000px;}
.y14f{bottom:801.930000px;}
.y125{bottom:804.285000px;}
.ya4{bottom:804.540000px;}
.yf7{bottom:805.275000px;}
.y85{bottom:805.785000px;}
.y10c{bottom:806.490000px;}
.y56{bottom:806.775000px;}
.y34{bottom:806.805000px;}
.yc3{bottom:807.750000px;}
.yb{bottom:813.285000px;}
.ye7{bottom:817.905000px;}
.y14e{bottom:818.370000px;}
.y124{bottom:822.225000px;}
.ya3{bottom:822.480000px;}
.y84{bottom:823.725000px;}
.y10b{bottom:824.430000px;}
.y33{bottom:824.745000px;}
.yc2{bottom:825.975000px;}
.ya{bottom:829.725000px;}
.y14d{bottom:834.810000px;}
.ye6{bottom:835.845000px;}
.y123{bottom:840.150000px;}
.ya2{bottom:840.405000px;}
.y73{bottom:840.915000px;}
.y83{bottom:841.650000px;}
.y10a{bottom:842.355000px;}
.y32{bottom:842.670000px;}
.yc1{bottom:843.900000px;}
.y55{bottom:844.695000px;}
.y14c{bottom:849.840000px;}
.ye5{bottom:853.770000px;}
.y122{bottom:858.090000px;}
.ya1{bottom:858.345000px;}
.y72{bottom:858.855000px;}
.y82{bottom:859.590000px;}
.y109{bottom:860.295000px;}
.yc0{bottom:861.840000px;}
.y14b{bottom:866.265000px;}
.y121{bottom:876.015000px;}
.ya0{bottom:876.270000px;}
.y71{bottom:876.780000px;}
.y81{bottom:877.515000px;}
.y108{bottom:878.220000px;}
.y31{bottom:878.805000px;}
.ybf{bottom:879.765000px;}
.y14a{bottom:881.295000px;}
.y9{bottom:881.385000px;}
.ye4{bottom:885.510000px;}
.y120{bottom:893.955000px;}
.y9f{bottom:894.210000px;}
.y54{bottom:894.570000px;}
.y80{bottom:895.455000px;}
.y107{bottom:896.160000px;}
.ybe{bottom:897.705000px;}
.y149{bottom:897.735000px;}
.y8{bottom:897.825000px;}
.y70{bottom:903.810000px;}
.y11f{bottom:911.880000px;}
.y9e{bottom:912.135000px;}
.y53{bottom:912.495000px;}
.y30{bottom:912.855000px;}
.y7f{bottom:913.380000px;}
.y106{bottom:914.085000px;}
.y148{bottom:914.175000px;}
.ybd{bottom:915.630000px;}
.y7{bottom:919.965000px;}
.y11e{bottom:929.820000px;}
.y52{bottom:930.435000px;}
.y9d{bottom:930.450000px;}
.y147{bottom:930.615000px;}
.y6{bottom:930.690000px;}
.y2f{bottom:930.780000px;}
.y6f{bottom:930.840000px;}
.y105{bottom:932.025000px;}
.ybc{bottom:933.870000px;}
.ye3{bottom:935.190000px;}
.y146{bottom:945.630000px;}
.y5{bottom:947.130000px;}
.y11d{bottom:947.745000px;}
.y51{bottom:948.360000px;}
.y9c{bottom:948.390000px;}
.y2e{bottom:948.720000px;}
.y6e{bottom:948.780000px;}
.y104{bottom:949.950000px;}
.ybb{bottom:951.795000px;}
.ye2{bottom:953.130000px;}
.y145{bottom:962.070000px;}
.y9b{bottom:966.315000px;}
.y2d{bottom:966.705000px;}
.y103{bottom:967.890000px;}
.y4{bottom:969.285000px;}
.yba{bottom:969.735000px;}
.ye1{bottom:971.055000px;}
.y11c{bottom:978.150000px;}
.y144{bottom:978.510000px;}
.y9a{bottom:984.255000px;}
.y2c{bottom:984.645000px;}
.ye0{bottom:988.995000px;}
.y3{bottom:994.890000px;}
.y143{bottom:994.950000px;}
.y102{bottom:995.685000px;}
.y2b{bottom:1002.570000px;}
.yb9{bottom:1007.070000px;}
.y142{bottom:1011.390000px;}
.y2a{bottom:1020.510000px;}
.ydf{bottom:1020.735000px;}
.y141{bottom:1026.405000px;}
.y29{bottom:1038.435000px;}
.yde{bottom:1038.660000px;}
.y140{bottom:1042.845000px;}
.y2{bottom:1047.405000px;}
.y28{bottom:1056.375000px;}
.y13f{bottom:1059.285000px;}
.y1{bottom:1074.300000px;}
.h4{height:23.852220px;}
.h6{height:33.138336px;}
.hb{height:37.657200px;}
.h5{height:40.347000px;}
.ha{height:41.844600px;}
.h8{height:44.833500px;}
.h3{height:49.504416px;}
.h7{height:50.211000px;}
.hc{height:53.907000px;}
.h9{height:56.789100px;}
.h2{height:59.953500px;}
.h1{height:60.253200px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:202.140000px;}
.x3{left:204.300000px;}
.x1e{left:209.055000px;}
.x10{left:211.485000px;}
.x2{left:224.745000px;}
.x11{left:227.550000px;}
.x1{left:232.215000px;}
.x15{left:241.230000px;}
.xb{left:244.665000px;}
.x5{left:250.485000px;}
.x17{left:251.565000px;}
.x8{left:275.325000px;}
.xa{left:306.180000px;}
.x6{left:311.175000px;}
.x16{left:318.150000px;}
.x1b{left:325.305000px;}
.x1c{left:328.755000px;}
.x1d{left:331.065000px;}
.x4{left:334.740000px;}
.x12{left:338.235000px;}
.x1a{left:344.685000px;}
.x18{left:355.455000px;}
.x9{left:365.460000px;}
.x19{left:373.980000px;}
.xf{left:379.905000px;}
.x7{left:415.620000px;}
.x13{left:430.305000px;}
.x14{left:435.285000px;}
.x1f{left:556.125000px;}
.xd{left:654.345000px;}
.xe{left:671.070000px;}
@media print{
.v3{vertical-align:-20.320000pt;}
.v4{vertical-align:-7.946667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.053333pt;}
.v2{vertical-align:13.440000pt;}
.v1{vertical-align:19.306667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.012153pt;}
.ls14{letter-spacing:0.025695pt;}
.ls0{letter-spacing:2.661357pt;}
.ls5{letter-spacing:4.308043pt;}
.lsd{letter-spacing:5.717948pt;}
.ls7{letter-spacing:7.385904pt;}
.ls8{letter-spacing:11.778667pt;}
.lse{letter-spacing:11.790819pt;}
.lsf{letter-spacing:11.809379pt;}
.ls9{letter-spacing:11.832000pt;}
.ls11{letter-spacing:12.414667pt;}
.ls12{letter-spacing:13.345486pt;}
.lsa{letter-spacing:14.777486pt;}
.ls10{letter-spacing:16.822712pt;}
.ls13{letter-spacing:17.718819pt;}
.ls6{letter-spacing:19.028043pt;}
.lsc{letter-spacing:20.118819pt;}
.ls1{letter-spacing:24.385486pt;}
.ls4{letter-spacing:26.566800pt;}
.ls2{letter-spacing:27.236502pt;}
.ws64{word-spacing:-7.439040pt;}
.ws10d{word-spacing:-0.063760pt;}
.ws18{word-spacing:-0.053136pt;}
.ws110{word-spacing:-0.047819pt;}
.ws29{word-spacing:0.000000pt;}
.ws65{word-spacing:6.806395pt;}
.wsd2{word-spacing:8.767440pt;}
.ws6f{word-spacing:9.372459pt;}
.ws114{word-spacing:11.333024pt;}
.ws111{word-spacing:11.619936pt;}
.ws66{word-spacing:11.689920pt;}
.wsd5{word-spacing:11.743056pt;}
.wsd4{word-spacing:11.746274pt;}
.wsd6{word-spacing:11.801679pt;}
.ws8{word-spacing:11.859029pt;}
.ws12f{word-spacing:12.002485pt;}
.ws10b{word-spacing:12.008736pt;}
.ws56{word-spacing:12.061872pt;}
.wse0{word-spacing:12.354538pt;}
.wse1{word-spacing:12.380688pt;}
.ws52{word-spacing:12.540096pt;}
.ws84{word-spacing:12.593232pt;}
.ws49{word-spacing:12.805776pt;}
.ws9{word-spacing:12.863221pt;}
.wsbf{word-spacing:12.912048pt;}
.wsbb{word-spacing:12.965184pt;}
.ws113{word-spacing:13.006677pt;}
.wsda{word-spacing:13.177728pt;}
.wsdc{word-spacing:13.230864pt;}
.wsd3{word-spacing:13.230963pt;}
.ws6e{word-spacing:13.284000pt;}
.wsdb{word-spacing:13.295013pt;}
.ws4a{word-spacing:13.337136pt;}
.wsf8{word-spacing:13.390272pt;}
.ws80{word-spacing:13.443408pt;}
.ws7e{word-spacing:13.496544pt;}
.ws59{word-spacing:13.549680pt;}
.ws11{word-spacing:13.580501pt;}
.ws34{word-spacing:13.602816pt;}
.ws44{word-spacing:13.655952pt;}
.ws4f{word-spacing:13.815360pt;}
.ws130{word-spacing:13.819595pt;}
.wsf6{word-spacing:13.974768pt;}
.ws103{word-spacing:14.134176pt;}
.ws2c{word-spacing:14.187312pt;}
.wsb7{word-spacing:14.293584pt;}
.ws81{word-spacing:14.346720pt;}
.ws5b{word-spacing:14.399856pt;}
.wsac{word-spacing:14.452992pt;}
.wsc{word-spacing:14.584693pt;}
.ws3a{word-spacing:14.612400pt;}
.ws3d{word-spacing:14.665536pt;}
.ws128{word-spacing:14.680331pt;}
.ws63{word-spacing:14.718672pt;}
.wse4{word-spacing:14.767354pt;}
.wsfe{word-spacing:14.808157pt;}
.wsb8{word-spacing:14.824944pt;}
.wsec{word-spacing:14.848640pt;}
.wsb4{word-spacing:14.878080pt;}
.ws2e{word-spacing:14.931216pt;}
.ws123{word-spacing:15.015061pt;}
.ws93{word-spacing:15.037488pt;}
.ws88{word-spacing:15.076140pt;}
.ws89{word-spacing:15.090624pt;}
.wsb0{word-spacing:15.143760pt;}
.wsea{word-spacing:15.158517pt;}
.wsfb{word-spacing:15.196896pt;}
.ws10c{word-spacing:15.250032pt;}
.ws127{word-spacing:15.254155pt;}
.ws12e{word-spacing:15.301973pt;}
.wsf0{word-spacing:15.303168pt;}
.wsf{word-spacing:15.349792pt;}
.ws55{word-spacing:15.356304pt;}
.wsb9{word-spacing:15.409440pt;}
.ws43{word-spacing:15.515712pt;}
.wsde{word-spacing:15.529378pt;}
.wsdd{word-spacing:15.568848pt;}
.ws122{word-spacing:15.588885pt;}
.ws85{word-spacing:15.621984pt;}
.ws105{word-spacing:15.675120pt;}
.ws11f{word-spacing:15.684523pt;}
.wsfc{word-spacing:15.728256pt;}
.ws12c{word-spacing:15.827979pt;}
.ws12b{word-spacing:15.875797pt;}
.ws5c{word-spacing:15.887664pt;}
.ws12d{word-spacing:15.923616pt;}
.ws7b{word-spacing:15.940800pt;}
.ws14{word-spacing:15.993936pt;}
.ws10{word-spacing:16.019253pt;}
.ws48{word-spacing:16.047072pt;}
.wsaa{word-spacing:16.062711pt;}
.wsab{word-spacing:16.100208pt;}
.ws2b{word-spacing:16.153344pt;}
.ws10f{word-spacing:16.162709pt;}
.ws100{word-spacing:16.206480pt;}
.ws5{word-spacing:16.258347pt;}
.ws94{word-spacing:16.259616pt;}
.ws3{word-spacing:16.306165pt;}
.ws1d{word-spacing:16.312752pt;}
.ws11b{word-spacing:16.316987pt;}
.ws4{word-spacing:16.353984pt;}
.wseb{word-spacing:16.355676pt;}
.wsfd{word-spacing:16.361190pt;}
.ws36{word-spacing:16.419024pt;}
.wse{word-spacing:16.449621pt;}
.ws9f{word-spacing:16.472160pt;}
.ws9d{word-spacing:16.489378pt;}
.ws1b{word-spacing:16.525296pt;}
.ws9e{word-spacing:16.542116pt;}
.ws19{word-spacing:16.578432pt;}
.ws116{word-spacing:16.593077pt;}
.ws107{word-spacing:16.612274pt;}
.ws60{word-spacing:16.631568pt;}
.ws129{word-spacing:16.640896pt;}
.ws26{word-spacing:16.684704pt;}
.wsd8{word-spacing:16.730674pt;}
.wscf{word-spacing:16.737840pt;}
.wsee{word-spacing:16.844112pt;}
.ws17{word-spacing:16.950384pt;}
.ws8e{word-spacing:17.003520pt;}
.ws73{word-spacing:17.109792pt;}
.ws7{word-spacing:17.262539pt;}
.ws104{word-spacing:17.269200pt;}
.wsa1{word-spacing:17.322336pt;}
.wsa2{word-spacing:17.396045pt;}
.wsa4{word-spacing:17.428608pt;}
.ws57{word-spacing:17.481744pt;}
.wse3{word-spacing:17.534880pt;}
.ws2{word-spacing:17.588016pt;}
.ws5e{word-spacing:17.636140pt;}
.ws6a{word-spacing:17.640807pt;}
.ws1{word-spacing:17.641152pt;}
.ws126{word-spacing:17.645088pt;}
.wsd0{word-spacing:17.662711pt;}
.wsd1{word-spacing:17.678919pt;}
.ws109{word-spacing:17.694141pt;}
.ws6c{word-spacing:17.694288pt;}
.ws68{word-spacing:17.715702pt;}
.ws24{word-spacing:17.747424pt;}
.ws8a{word-spacing:17.800560pt;}
.wse8{word-spacing:17.809032pt;}
.ws87{word-spacing:17.853696pt;}
.ws45{word-spacing:17.906832pt;}
.ws54{word-spacing:17.959968pt;}
.wse9{word-spacing:18.013104pt;}
.ws112{word-spacing:18.027637pt;}
.ws98{word-spacing:18.066240pt;}
.ws99{word-spacing:18.101353pt;}
.ws9a{word-spacing:18.119376pt;}
.ws2a{word-spacing:18.172512pt;}
.ws7f{word-spacing:18.178518pt;}
.wsb6{word-spacing:18.225648pt;}
.wsd9{word-spacing:18.297630pt;}
.ws4e{word-spacing:18.385056pt;}
.ws121{word-spacing:18.410187pt;}
.wsf9{word-spacing:18.438192pt;}
.ws1e{word-spacing:18.491328pt;}
.ws86{word-spacing:18.544464pt;}
.ws37{word-spacing:18.597600pt;}
.ws11e{word-spacing:18.649280pt;}
.ws23{word-spacing:18.650736pt;}
.ws12a{word-spacing:18.697099pt;}
.ws101{word-spacing:18.703872pt;}
.wsa3{word-spacing:18.757008pt;}
.wsae{word-spacing:18.810144pt;}
.wsa0{word-spacing:18.863280pt;}
.ws13{word-spacing:18.916416pt;}
.ws76{word-spacing:18.920953pt;}
.ws11a{word-spacing:18.936192pt;}
.ws77{word-spacing:18.969552pt;}
.ws35{word-spacing:19.075824pt;}
.wsce{word-spacing:19.128960pt;}
.ws1c{word-spacing:19.235232pt;}
.ws53{word-spacing:19.288368pt;}
.wsb2{word-spacing:19.341504pt;}
.ws7d{word-spacing:19.394640pt;}
.wsa{word-spacing:19.414379pt;}
.wsc4{word-spacing:19.447776pt;}
.ws83{word-spacing:19.554048pt;}
.wsd{word-spacing:19.605653pt;}
.wsa5{word-spacing:19.607184pt;}
.ws9c{word-spacing:19.660320pt;}
.ws1f{word-spacing:19.713456pt;}
.wsa6{word-spacing:19.764858pt;}
.ws25{word-spacing:19.766592pt;}
.ws70{word-spacing:19.796928pt;}
.ws40{word-spacing:19.819728pt;}
.ws47{word-spacing:19.872864pt;}
.ws117{word-spacing:19.940384pt;}
.wsa9{word-spacing:19.963966pt;}
.wsa8{word-spacing:19.979136pt;}
.wsa7{word-spacing:20.032272pt;}
.ws5d{word-spacing:20.085408pt;}
.ws120{word-spacing:20.131659pt;}
.ws72{word-spacing:20.138544pt;}
.ws38{word-spacing:20.191680pt;}
.wse5{word-spacing:20.244816pt;}
.wsc9{word-spacing:20.297952pt;}
.wsad{word-spacing:20.351088pt;}
.ws32{word-spacing:20.510496pt;}
.wsf3{word-spacing:20.563632pt;}
.wsf1{word-spacing:20.564159pt;}
.ws7c{word-spacing:20.658711pt;}
.ws82{word-spacing:20.669904pt;}
.ws106{word-spacing:20.687584pt;}
.wsed{word-spacing:20.696130pt;}
.ws102{word-spacing:20.723040pt;}
.wscb{word-spacing:20.776176pt;}
.ws11d{word-spacing:20.801120pt;}
.ws71{word-spacing:20.882448pt;}
.ws74{word-spacing:20.935584pt;}
.ws15{word-spacing:20.988720pt;}
.ws58{word-spacing:21.094992pt;}
.ws3f{word-spacing:21.148128pt;}
.ws42{word-spacing:21.201264pt;}
.ws1a{word-spacing:21.244679pt;}
.wsef{word-spacing:21.307536pt;}
.ws33{word-spacing:21.360672pt;}
.ws118{word-spacing:21.470581pt;}
.ws3e{word-spacing:21.520080pt;}
.ws6d{word-spacing:21.563589pt;}
.wsf2{word-spacing:21.573216pt;}
.ws108{word-spacing:21.628582pt;}
.wsc2{word-spacing:21.679488pt;}
.ws132{word-spacing:21.757493pt;}
.ws51{word-spacing:21.785760pt;}
.ws133{word-spacing:21.805312pt;}
.ws5a{word-spacing:21.892032pt;}
.wsaf{word-spacing:21.945168pt;}
.wsf4{word-spacing:21.998304pt;}
.ws92{word-spacing:22.157712pt;}
.ws39{word-spacing:22.210848pt;}
.ws46{word-spacing:22.263984pt;}
.wsca{word-spacing:22.317120pt;}
.wsb{word-spacing:22.331317pt;}
.wse2{word-spacing:22.370256pt;}
.ws16{word-spacing:22.423392pt;}
.ws95{word-spacing:22.476528pt;}
.ws10a{word-spacing:22.621089pt;}
.ws4c{word-spacing:22.635936pt;}
.ws27{word-spacing:22.654089pt;}
.ws62{word-spacing:22.689072pt;}
.ws28{word-spacing:22.702807pt;}
.ws61{word-spacing:22.742208pt;}
.ws9b{word-spacing:22.795344pt;}
.wsf7{word-spacing:22.848480pt;}
.wsf5{word-spacing:22.901616pt;}
.ws91{word-spacing:22.954752pt;}
.ws8f{word-spacing:22.993897pt;}
.ws2d{word-spacing:23.007888pt;}
.ws5f{word-spacing:23.114160pt;}
.wsc8{word-spacing:23.167296pt;}
.wse7{word-spacing:23.273568pt;}
.ws4b{word-spacing:23.326704pt;}
.ws115{word-spacing:23.335509pt;}
.ws41{word-spacing:23.379840pt;}
.wse6{word-spacing:23.432976pt;}
.ws4d{word-spacing:23.486112pt;}
.ws96{word-spacing:23.491723pt;}
.ws30{word-spacing:23.539248pt;}
.wsbd{word-spacing:23.751792pt;}
.wsba{word-spacing:23.782480pt;}
.ws3c{word-spacing:23.804928pt;}
.ws31{word-spacing:23.846240pt;}
.ws90{word-spacing:23.858064pt;}
.ws8b{word-spacing:23.911200pt;}
.ws22{word-spacing:24.017472pt;}
.ws119{word-spacing:24.052789pt;}
.wscd{word-spacing:24.070608pt;}
.ws11c{word-spacing:24.100608pt;}
.ws7a{word-spacing:24.123744pt;}
.wsbe{word-spacing:24.336288pt;}
.ws6b{word-spacing:24.513061pt;}
.ws125{word-spacing:24.530976pt;}
.ws69{word-spacing:24.566395pt;}
.wsc3{word-spacing:24.601968pt;}
.ws8c{word-spacing:24.655104pt;}
.ws2f{word-spacing:24.708240pt;}
.wscc{word-spacing:24.814512pt;}
.ws21{word-spacing:24.920784pt;}
.wsb3{word-spacing:25.080192pt;}
.wsfa{word-spacing:25.611552pt;}
.wsb5{word-spacing:25.717824pt;}
.ws124{word-spacing:25.726443pt;}
.ws50{word-spacing:25.930368pt;}
.wsdf{word-spacing:25.983504pt;}
.ws79{word-spacing:26.089776pt;}
.ws8d{word-spacing:26.142912pt;}
.wsc1{word-spacing:26.249184pt;}
.wsbc{word-spacing:26.302320pt;}
.wsc7{word-spacing:26.408592pt;}
.wsb1{word-spacing:26.513664pt;}
.wsc6{word-spacing:26.514864pt;}
.ws131{word-spacing:26.539360pt;}
.ws6{word-spacing:26.546761pt;}
.ws10e{word-spacing:26.621136pt;}
.ws78{word-spacing:26.727408pt;}
.wsc0{word-spacing:26.833680pt;}
.wsc5{word-spacing:27.099360pt;}
.ws97{word-spacing:28.142127pt;}
.ws3b{word-spacing:28.587168pt;}
.ws0{word-spacing:28.615488pt;}
.ws20{word-spacing:28.958693pt;}
.ws75{word-spacing:61.053264pt;}
.wsd7{word-spacing:70.989696pt;}
.ws12{word-spacing:71.666240pt;}
.wsff{word-spacing:186.697489pt;}
.ws67{word-spacing:415.868940pt;}
._6{margin-left:-26.568000pt;}
._3{margin-left:-24.693600pt;}
._27{margin-left:-22.836709pt;}
._4{margin-left:-20.183424pt;}
._9{margin-left:-19.127467pt;}
._2{margin-left:-7.192128pt;}
._8{margin-left:-6.044147pt;}
._d{margin-left:-4.934243pt;}
._5{margin-left:-3.471767pt;}
._1{margin-left:-2.371872pt;}
._7{margin-left:-1.338923pt;}
._a{width:1.338923pt;}
._0{width:2.295360pt;}
._b{width:3.843719pt;}
._16{width:4.772478pt;}
._1d{width:5.685552pt;}
._13{width:6.985138pt;}
._12{width:7.948486pt;}
._17{width:13.540955pt;}
._1f{width:14.557943pt;}
._1e{width:15.685557pt;}
._11{width:16.878000pt;}
._c{width:18.602171pt;}
._14{width:19.861050pt;}
._20{width:20.765423pt;}
._15{width:21.830171pt;}
._10{width:23.381637pt;}
._e{width:24.529584pt;}
._2c{width:25.666164pt;}
._18{width:27.251363pt;}
._1b{width:28.955596pt;}
._1c{width:29.918754pt;}
._19{width:31.631340pt;}
._1a{width:33.557852pt;}
._2d{width:35.146720pt;}
._28{width:37.298560pt;}
._29{width:45.189417pt;}
._2b{width:46.145013pt;}
._25{width:47.319321pt;}
._2a{width:49.998563pt;}
._22{width:57.650615pt;}
._21{width:61.106400pt;}
._24{width:69.932654pt;}
._f{width:71.730000pt;}
._23{width:82.199321pt;}
._26{width:357.252233pt;}
.fs3{font-size:31.882667pt;}
.fs2{font-size:37.194667pt;}
.fs4{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs5{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:238.773333pt;}
.y16f{bottom:245.760000pt;}
.y13e{bottom:253.386667pt;}
.y26{bottom:254.706667pt;}
.y16e{bottom:260.373333pt;}
.y50{bottom:270.653333pt;}
.y25{bottom:271.146667pt;}
.y16d{bottom:274.973333pt;}
.y13d{bottom:277.866667pt;}
.y4f{bottom:286.586667pt;}
.ydd{bottom:286.853333pt;}
.y24{bottom:287.093333pt;}
.y16c{bottom:289.586667pt;}
.y7e{bottom:293.053333pt;}
.y4e{bottom:302.533333pt;}
.ydc{bottom:302.800000pt;}
.y16b{bottom:302.946667pt;}
.y23{bottom:303.026667pt;}
.y13c{bottom:315.506667pt;}
.y16a{bottom:317.560000pt;}
.y4d{bottom:318.466667pt;}
.y6d{bottom:318.840000pt;}
.y22{bottom:318.973333pt;}
.ydb{bottom:319.000000pt;}
.y7d{bottom:328.746667pt;}
.y169{bottom:330.906667pt;}
.y13b{bottom:331.453333pt;}
.y4c{bottom:334.413333pt;}
.yb8{bottom:334.746667pt;}
.y6c{bottom:334.773333pt;}
.y21{bottom:334.906667pt;}
.yda{bottom:334.933333pt;}
.y7c{bottom:344.693333pt;}
.y168{bottom:345.520000pt;}
.y13a{bottom:347.386667pt;}
.y4b{bottom:350.346667pt;}
.yb7{bottom:350.693333pt;}
.y6b{bottom:350.720000pt;}
.y20{bottom:350.853333pt;}
.yd9{bottom:350.880000pt;}
.y167{bottom:358.866667pt;}
.y139{bottom:363.333333pt;}
.y99{bottom:366.293333pt;}
.y4a{bottom:366.333333pt;}
.yb6{bottom:366.626667pt;}
.y6a{bottom:366.653333pt;}
.y1f{bottom:366.786667pt;}
.yd8{bottom:367.080000pt;}
.y7b{bottom:372.413333pt;}
.y166{bottom:373.480000pt;}
.y138{bottom:379.266667pt;}
.y98{bottom:382.226667pt;}
.y49{bottom:382.280000pt;}
.yb5{bottom:382.573333pt;}
.y1e{bottom:382.733333pt;}
.yd7{bottom:383.013333pt;}
.y165{bottom:386.840000pt;}
.y137{bottom:395.213333pt;}
.y69{bottom:397.333333pt;}
.y97{bottom:398.173333pt;}
.y48{bottom:398.213333pt;}
.yb4{bottom:398.520000pt;}
.y1d{bottom:398.666667pt;}
.yd6{bottom:398.960000pt;}
.y164{bottom:401.453333pt;}
.y7a{bottom:410.760000pt;}
.y68{bottom:413.280000pt;}
.y96{bottom:414.106667pt;}
.y47{bottom:414.160000pt;}
.yb3{bottom:414.800000pt;}
.y1c{bottom:415.106667pt;}
.yd5{bottom:415.160000pt;}
.y136{bottom:422.226667pt;}
.yf6{bottom:423.933333pt;}
.y79{bottom:426.693333pt;}
.y163{bottom:429.413333pt;}
.y67{bottom:429.586667pt;}
.y95{bottom:430.053333pt;}
.y46{bottom:430.106667pt;}
.yb2{bottom:430.733333pt;}
.y1b{bottom:431.053333pt;}
.yd4{bottom:431.106667pt;}
.y78{bottom:442.640000pt;}
.y162{bottom:442.760000pt;}
.y11b{bottom:445.013333pt;}
.y66{bottom:445.520000pt;}
.y94{bottom:445.986667pt;}
.y45{bottom:446.040000pt;}
.yb1{bottom:446.680000pt;}
.y1a{bottom:446.986667pt;}
.yd3{bottom:447.040000pt;}
.y161{bottom:457.373333pt;}
.y77{bottom:458.586667pt;}
.y135{bottom:459.880000pt;}
.y11a{bottom:460.160000pt;}
.y65{bottom:461.826667pt;}
.y93{bottom:461.933333pt;}
.y44{bottom:461.986667pt;}
.yb0{bottom:462.613333pt;}
.y19{bottom:462.933333pt;}
.yf5{bottom:462.973333pt;}
.yd2{bottom:463.240000pt;}
.y160{bottom:471.986667pt;}
.y76{bottom:474.520000pt;}
.y119{bottom:475.306667pt;}
.y134{bottom:475.826667pt;}
.y64{bottom:477.773333pt;}
.y92{bottom:477.880000pt;}
.y43{bottom:477.920000pt;}
.yaf{bottom:478.560000pt;}
.y18{bottom:478.866667pt;}
.yf4{bottom:478.920000pt;}
.yd1{bottom:479.186667pt;}
.y15f{bottom:485.346667pt;}
.y118{bottom:490.440000pt;}
.y133{bottom:491.760000pt;}
.y91{bottom:493.813333pt;}
.y42{bottom:493.906667pt;}
.y101{bottom:494.040000pt;}
.y63{bottom:494.080000pt;}
.yae{bottom:494.493333pt;}
.y17{bottom:494.813333pt;}
.yd0{bottom:495.120000pt;}
.y15e{bottom:499.946667pt;}
.y117{bottom:505.586667pt;}
.y132{bottom:507.706667pt;}
.y100{bottom:509.186667pt;}
.y90{bottom:509.760000pt;}
.y41{bottom:509.853333pt;}
.yf3{bottom:509.986667pt;}
.y62{bottom:510.373333pt;}
.yad{bottom:510.440000pt;}
.ycf{bottom:511.333333pt;}
.y15d{bottom:514.560000pt;}
.y75{bottom:516.040000pt;}
.y116{bottom:520.733333pt;}
.y131{bottom:523.640000pt;}
.y8f{bottom:525.693333pt;}
.y40{bottom:525.786667pt;}
.yce{bottom:527.266667pt;}
.y15c{bottom:527.920000pt;}
.y16{bottom:529.693333pt;}
.y74{bottom:530.640000pt;}
.yff{bottom:534.560000pt;}
.y130{bottom:539.586667pt;}
.yac{bottom:541.373333pt;}
.y61{bottom:541.426667pt;}
.y8e{bottom:541.640000pt;}
.y3f{bottom:541.733333pt;}
.y15b{bottom:542.533333pt;}
.ycd{bottom:543.213333pt;}
.y115{bottom:548.426667pt;}
.yf2{bottom:551.693333pt;}
.y12f{bottom:555.520000pt;}
.y15a{bottom:557.133333pt;}
.yab{bottom:557.306667pt;}
.y60{bottom:557.373333pt;}
.y8d{bottom:557.573333pt;}
.y3e{bottom:557.666667pt;}
.ycc{bottom:559.146667pt;}
.yf1{bottom:567.626667pt;}
.y159{bottom:570.493333pt;}
.y12e{bottom:571.466667pt;}
.y5f{bottom:573.306667pt;}
.y8c{bottom:573.520000pt;}
.yaa{bottom:573.586667pt;}
.y3d{bottom:573.613333pt;}
.yfe{bottom:575.226667pt;}
.ycb{bottom:575.346667pt;}
.y15{bottom:576.800000pt;}
.yf0{bottom:583.573333pt;}
.y158{bottom:585.106667pt;}
.y12d{bottom:587.400000pt;}
.y5e{bottom:589.253333pt;}
.y114{bottom:589.360000pt;}
.y8b{bottom:589.453333pt;}
.ya9{bottom:589.533333pt;}
.y3c{bottom:589.600000pt;}
.yfd{bottom:591.160000pt;}
.yca{bottom:591.293333pt;}
.y14{bottom:591.413333pt;}
.yef{bottom:599.506667pt;}
.y157{bottom:599.720000pt;}
.y12c{bottom:603.346667pt;}
.y113{bottom:605.306667pt;}
.y8a{bottom:605.400000pt;}
.ya8{bottom:605.466667pt;}
.y3b{bottom:605.533333pt;}
.y5d{bottom:605.546667pt;}
.y13{bottom:606.026667pt;}
.yfc{bottom:607.106667pt;}
.yc9{bottom:607.226667pt;}
.y156{bottom:614.333333pt;}
.yee{bottom:615.453333pt;}
.y12b{bottom:619.280000pt;}
.y12{bottom:620.626667pt;}
.y112{bottom:621.240000pt;}
.ya7{bottom:621.413333pt;}
.y3a{bottom:621.480000pt;}
.y5c{bottom:621.493333pt;}
.yfb{bottom:623.040000pt;}
.yc8{bottom:623.440000pt;}
.y155{bottom:627.680000pt;}
.y89{bottom:630.266667pt;}
.yed{bottom:631.386667pt;}
.y12a{bottom:635.226667pt;}
.y11{bottom:635.240000pt;}
.y111{bottom:637.186667pt;}
.y39{bottom:637.413333pt;}
.y5b{bottom:637.426667pt;}
.yfa{bottom:638.986667pt;}
.yc7{bottom:639.373333pt;}
.y154{bottom:642.293333pt;}
.yec{bottom:647.333333pt;}
.y10{bottom:649.853333pt;}
.y129{bottom:651.160000pt;}
.y110{bottom:653.120000pt;}
.y5a{bottom:653.373333pt;}
.y38{bottom:653.400000pt;}
.yf9{bottom:654.920000pt;}
.ya6{bottom:655.000000pt;}
.yc6{bottom:655.573333pt;}
.y153{bottom:656.906667pt;}
.yeb{bottom:663.266667pt;}
.yf{bottom:664.466667pt;}
.y128{bottom:667.106667pt;}
.y88{bottom:668.440000pt;}
.y10f{bottom:669.066667pt;}
.y59{bottom:669.320000pt;}
.y37{bottom:669.346667pt;}
.y152{bottom:670.253333pt;}
.yf8{bottom:670.866667pt;}
.yc5{bottom:671.520000pt;}
.ye{bottom:679.080000pt;}
.yea{bottom:679.213333pt;}
.y127{bottom:683.040000pt;}
.y87{bottom:684.373333pt;}
.y151{bottom:684.866667pt;}
.y10e{bottom:685.000000pt;}
.y58{bottom:685.253333pt;}
.y36{bottom:685.280000pt;}
.yc4{bottom:687.453333pt;}
.yd{bottom:693.693333pt;}
.ye9{bottom:695.146667pt;}
.y126{bottom:698.986667pt;}
.ya5{bottom:699.213333pt;}
.y150{bottom:699.480000pt;}
.y86{bottom:700.320000pt;}
.y10d{bottom:700.946667pt;}
.y57{bottom:701.200000pt;}
.y35{bottom:701.226667pt;}
.yc{bottom:708.306667pt;}
.ye8{bottom:711.093333pt;}
.y14f{bottom:712.826667pt;}
.y125{bottom:714.920000pt;}
.ya4{bottom:715.146667pt;}
.yf7{bottom:715.800000pt;}
.y85{bottom:716.253333pt;}
.y10c{bottom:716.880000pt;}
.y56{bottom:717.133333pt;}
.y34{bottom:717.160000pt;}
.yc3{bottom:718.000000pt;}
.yb{bottom:722.920000pt;}
.ye7{bottom:727.026667pt;}
.y14e{bottom:727.440000pt;}
.y124{bottom:730.866667pt;}
.ya3{bottom:731.093333pt;}
.y84{bottom:732.200000pt;}
.y10b{bottom:732.826667pt;}
.y33{bottom:733.106667pt;}
.yc2{bottom:734.200000pt;}
.ya{bottom:737.533333pt;}
.y14d{bottom:742.053333pt;}
.ye6{bottom:742.973333pt;}
.y123{bottom:746.800000pt;}
.ya2{bottom:747.026667pt;}
.y73{bottom:747.480000pt;}
.y83{bottom:748.133333pt;}
.y10a{bottom:748.760000pt;}
.y32{bottom:749.040000pt;}
.yc1{bottom:750.133333pt;}
.y55{bottom:750.840000pt;}
.y14c{bottom:755.413333pt;}
.ye5{bottom:758.906667pt;}
.y122{bottom:762.746667pt;}
.ya1{bottom:762.973333pt;}
.y72{bottom:763.426667pt;}
.y82{bottom:764.080000pt;}
.y109{bottom:764.706667pt;}
.yc0{bottom:766.080000pt;}
.y14b{bottom:770.013333pt;}
.y121{bottom:778.680000pt;}
.ya0{bottom:778.906667pt;}
.y71{bottom:779.360000pt;}
.y81{bottom:780.013333pt;}
.y108{bottom:780.640000pt;}
.y31{bottom:781.160000pt;}
.ybf{bottom:782.013333pt;}
.y14a{bottom:783.373333pt;}
.y9{bottom:783.453333pt;}
.ye4{bottom:787.120000pt;}
.y120{bottom:794.626667pt;}
.y9f{bottom:794.853333pt;}
.y54{bottom:795.173333pt;}
.y80{bottom:795.960000pt;}
.y107{bottom:796.586667pt;}
.ybe{bottom:797.960000pt;}
.y149{bottom:797.986667pt;}
.y8{bottom:798.066667pt;}
.y70{bottom:803.386667pt;}
.y11f{bottom:810.560000pt;}
.y9e{bottom:810.786667pt;}
.y53{bottom:811.106667pt;}
.y30{bottom:811.426667pt;}
.y7f{bottom:811.893333pt;}
.y106{bottom:812.520000pt;}
.y148{bottom:812.600000pt;}
.ybd{bottom:813.893333pt;}
.y7{bottom:817.746667pt;}
.y11e{bottom:826.506667pt;}
.y52{bottom:827.053333pt;}
.y9d{bottom:827.066667pt;}
.y147{bottom:827.213333pt;}
.y6{bottom:827.280000pt;}
.y2f{bottom:827.360000pt;}
.y6f{bottom:827.413333pt;}
.y105{bottom:828.466667pt;}
.ybc{bottom:830.106667pt;}
.ye3{bottom:831.280000pt;}
.y146{bottom:840.560000pt;}
.y5{bottom:841.893333pt;}
.y11d{bottom:842.440000pt;}
.y51{bottom:842.986667pt;}
.y9c{bottom:843.013333pt;}
.y2e{bottom:843.306667pt;}
.y6e{bottom:843.360000pt;}
.y104{bottom:844.400000pt;}
.ybb{bottom:846.040000pt;}
.ye2{bottom:847.226667pt;}
.y145{bottom:855.173333pt;}
.y9b{bottom:858.946667pt;}
.y2d{bottom:859.293333pt;}
.y103{bottom:860.346667pt;}
.y4{bottom:861.586667pt;}
.yba{bottom:861.986667pt;}
.ye1{bottom:863.160000pt;}
.y11c{bottom:869.466667pt;}
.y144{bottom:869.786667pt;}
.y9a{bottom:874.893333pt;}
.y2c{bottom:875.240000pt;}
.ye0{bottom:879.106667pt;}
.y3{bottom:884.346667pt;}
.y143{bottom:884.400000pt;}
.y102{bottom:885.053333pt;}
.y2b{bottom:891.173333pt;}
.yb9{bottom:895.173333pt;}
.y142{bottom:899.013333pt;}
.y2a{bottom:907.120000pt;}
.ydf{bottom:907.320000pt;}
.y141{bottom:912.360000pt;}
.y29{bottom:923.053333pt;}
.yde{bottom:923.253333pt;}
.y140{bottom:926.973333pt;}
.y2{bottom:931.026667pt;}
.y28{bottom:939.000000pt;}
.y13f{bottom:941.586667pt;}
.y1{bottom:954.933333pt;}
.h4{height:21.201973pt;}
.h6{height:29.456299pt;}
.hb{height:33.473067pt;}
.h5{height:35.864000pt;}
.ha{height:37.195200pt;}
.h8{height:39.852000pt;}
.h3{height:44.003925pt;}
.h7{height:44.632000pt;}
.hc{height:47.917333pt;}
.h9{height:50.479200pt;}
.h2{height:53.292000pt;}
.h1{height:53.558400pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:179.680000pt;}
.x3{left:181.600000pt;}
.x1e{left:185.826667pt;}
.x10{left:187.986667pt;}
.x2{left:199.773333pt;}
.x11{left:202.266667pt;}
.x1{left:206.413333pt;}
.x15{left:214.426667pt;}
.xb{left:217.480000pt;}
.x5{left:222.653333pt;}
.x17{left:223.613333pt;}
.x8{left:244.733333pt;}
.xa{left:272.160000pt;}
.x6{left:276.600000pt;}
.x16{left:282.800000pt;}
.x1b{left:289.160000pt;}
.x1c{left:292.226667pt;}
.x1d{left:294.280000pt;}
.x4{left:297.546667pt;}
.x12{left:300.653333pt;}
.x1a{left:306.386667pt;}
.x18{left:315.960000pt;}
.x9{left:324.853333pt;}
.x19{left:332.426667pt;}
.xf{left:337.693333pt;}
.x7{left:369.440000pt;}
.x13{left:382.493333pt;}
.x14{left:386.920000pt;}
.x1f{left:494.333333pt;}
.xd{left:581.640000pt;}
.xe{left:596.506667pt;}
}




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