
    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_d7a77ab689b6363bc30eda2c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_9a3e367abf07437a13c2c238.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_e98d173965923be0082d1e38.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1b2b10e300309e9cc8c082e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.734090px;}
.ls19{letter-spacing:-3.056040px;}
.ls1{letter-spacing:-0.013335px;}
.ls6{letter-spacing:-0.008149px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000600px;}
.ls17{letter-spacing:0.001200px;}
.ls7{letter-spacing:0.032598px;}
.ls15{letter-spacing:0.081494px;}
.ls11{letter-spacing:0.154839px;}
.ls9{letter-spacing:0.162989px;}
.ls13{letter-spacing:0.203736px;}
.ls20{letter-spacing:0.236334px;}
.lsc{letter-spacing:0.244483px;}
.ls4{letter-spacing:0.317828px;}
.ls14{letter-spacing:0.325978px;}
.ls25{letter-spacing:0.342276px;}
.ls1f{letter-spacing:0.358575px;}
.lsb{letter-spacing:0.399323px;}
.ls23{letter-spacing:0.407472px;}
.lsd{letter-spacing:0.488966px;}
.ls18{letter-spacing:0.570461px;}
.ls5{letter-spacing:0.651955px;}
.ls1d{letter-spacing:0.672600px;}
.ls1c{letter-spacing:0.673200px;}
.ls21{letter-spacing:0.733450px;}
.ls3{letter-spacing:0.740856px;}
.ls10{letter-spacing:0.774197px;}
.ls8{letter-spacing:0.814944px;}
.ls12{letter-spacing:0.896438px;}
.lsa{letter-spacing:0.977933px;}
.lse{letter-spacing:1.059427px;}
.lsf{letter-spacing:1.092025px;}
.ls1b{letter-spacing:1.140922px;}
.ls1a{letter-spacing:1.222416px;}
.ls2{letter-spacing:1.259455px;}
.ls22{letter-spacing:1.263163px;}
.ls1e{letter-spacing:1.303910px;}
.ls24{letter-spacing:1.955866px;}
.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;}
}
.ws8{word-spacing:-20.373600px;}
.wsaf{word-spacing:-17.317560px;}
.wsb6{word-spacing:-11.816700px;}
.ws4e{word-spacing:-2.852304px;}
.ws6a{word-spacing:-2.689315px;}
.ws97{word-spacing:-2.037360px;}
.ws3d{word-spacing:-1.955866px;}
.ws37{word-spacing:-1.711382px;}
.wsb{word-spacing:-1.629888px;}
.wsb1{word-spacing:-1.589141px;}
.ws77{word-spacing:-1.548394px;}
.ws41{word-spacing:-1.507646px;}
.wsb8{word-spacing:-1.466899px;}
.ws5c{word-spacing:-1.303910px;}
.ws13{word-spacing:-1.222416px;}
.wsb3{word-spacing:-1.173519px;}
.ws40{word-spacing:-1.140922px;}
.wsbd{word-spacing:-1.067577px;}
.wsa4{word-spacing:-1.059427px;}
.ws42{word-spacing:-0.977933px;}
.ws69{word-spacing:-0.896438px;}
.ws55{word-spacing:-0.888289px;}
.ws18{word-spacing:-0.814944px;}
.ws86{word-spacing:-0.733450px;}
.ws60{word-spacing:-0.651955px;}
.wsf{word-spacing:-0.570461px;}
.ws81{word-spacing:-0.488966px;}
.ws8c{word-spacing:-0.325978px;}
.ws43{word-spacing:-0.317828px;}
.ws72{word-spacing:-0.244483px;}
.ws6e{word-spacing:-0.187437px;}
.ws7{word-spacing:-0.013335px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.006668px;}
.ws1{word-spacing:0.013335px;}
.ws76{word-spacing:0.032598px;}
.ws88{word-spacing:0.081494px;}
.ws17{word-spacing:0.162989px;}
.ws31{word-spacing:0.244483px;}
.ws35{word-spacing:0.366725px;}
.wsa1{word-spacing:0.399323px;}
.wsa7{word-spacing:0.407472px;}
.wsc2{word-spacing:0.472668px;}
.ws5d{word-spacing:0.488966px;}
.wsa3{word-spacing:0.562311px;}
.ws24{word-spacing:0.570461px;}
.ws3{word-spacing:0.592685px;}
.ws58{word-spacing:0.651955px;}
.wsad{word-spacing:0.733450px;}
.ws8b{word-spacing:0.847542px;}
.wsac{word-spacing:0.977933px;}
.ws59{word-spacing:1.010531px;}
.ws65{word-spacing:1.059427px;}
.ws2b{word-spacing:1.140922px;}
.ws20{word-spacing:1.173519px;}
.ws7b{word-spacing:1.181669px;}
.ws7c{word-spacing:1.189818px;}
.ws78{word-spacing:1.214267px;}
.ws63{word-spacing:1.303910px;}
.wsba{word-spacing:1.352807px;}
.wsbb{word-spacing:1.369106px;}
.ws5b{word-spacing:1.377255px;}
.ws8d{word-spacing:1.385405px;}
.wsb9{word-spacing:1.466899px;}
.ws27{word-spacing:1.548394px;}
.ws6f{word-spacing:1.629888px;}
.ws4f{word-spacing:1.711382px;}
.wsc7{word-spacing:1.719532px;}
.ws30{word-spacing:1.792877px;}
.ws3f{word-spacing:1.825475px;}
.ws99{word-spacing:1.874371px;}
.ws3b{word-spacing:1.955866px;}
.ws4c{word-spacing:2.037360px;}
.wsc6{word-spacing:2.110705px;}
.ws85{word-spacing:2.118854px;}
.ws47{word-spacing:2.200349px;}
.ws39{word-spacing:2.281843px;}
.ws71{word-spacing:2.355188px;}
.ws5a{word-spacing:2.444832px;}
.ws87{word-spacing:2.518177px;}
.ws68{word-spacing:2.526326px;}
.wsc0{word-spacing:2.607821px;}
.ws7f{word-spacing:2.689315px;}
.ws2c{word-spacing:2.770810px;}
.ws53{word-spacing:2.852304px;}
.ws21{word-spacing:2.860453px;}
.ws1e{word-spacing:2.933798px;}
.ws2f{word-spacing:3.015293px;}
.ws82{word-spacing:3.096787px;}
.ws4a{word-spacing:3.178282px;}
.wse{word-spacing:3.243477px;}
.ws19{word-spacing:3.259776px;}
.ws3c{word-spacing:3.267925px;}
.ws26{word-spacing:3.316822px;}
.wsa{word-spacing:3.341270px;}
.ws29{word-spacing:3.422765px;}
.wsc{word-spacing:3.504259px;}
.ws9a{word-spacing:3.585754px;}
.ws44{word-spacing:3.667248px;}
.ws1f{word-spacing:3.748742px;}
.ws54{word-spacing:3.756892px;}
.ws83{word-spacing:3.830237px;}
.ws1d{word-spacing:3.911731px;}
.ws1b{word-spacing:3.976927px;}
.ws38{word-spacing:3.993226px;}
.ws75{word-spacing:4.001375px;}
.wsa2{word-spacing:4.025823px;}
.ws28{word-spacing:4.066571px;}
.ws9e{word-spacing:4.074720px;}
.ws8a{word-spacing:4.156214px;}
.wsae{word-spacing:4.229559px;}
.ws45{word-spacing:4.237709px;}
.ws33{word-spacing:4.319203px;}
.ws23{word-spacing:4.351801px;}
.ws52{word-spacing:4.400698px;}
.ws4b{word-spacing:4.433295px;}
.ws2e{word-spacing:4.482192px;}
.ws3a{word-spacing:4.563686px;}
.ws98{word-spacing:4.637031px;}
.ws1c{word-spacing:4.726675px;}
.ws6c{word-spacing:4.808170px;}
.ws2d{word-spacing:4.857066px;}
.ws1a{word-spacing:4.881515px;}
.ws95{word-spacing:5.125998px;}
.ws46{word-spacing:5.134147px;}
.ws80{word-spacing:5.215642px;}
.wsc1{word-spacing:5.297136px;}
.wsbc{word-spacing:5.370481px;}
.ws3e{word-spacing:5.378630px;}
.ws62{word-spacing:5.460125px;}
.ws96{word-spacing:5.541619px;}
.ws73{word-spacing:5.590516px;}
.ws9c{word-spacing:5.614964px;}
.ws90{word-spacing:5.623114px;}
.ws16{word-spacing:5.655711px;}
.ws93{word-spacing:5.704608px;}
.wsa6{word-spacing:5.786102px;}
.ws48{word-spacing:5.957241px;}
.ws94{word-spacing:6.030586px;}
.ws15{word-spacing:6.112080px;}
.ws5e{word-spacing:6.169126px;}
.wsa5{word-spacing:6.193574px;}
.ws64{word-spacing:6.266919px;}
.ws61{word-spacing:6.275069px;}
.ws6b{word-spacing:6.356563px;}
.wsb7{word-spacing:6.389161px;}
.wsc5{word-spacing:6.429908px;}
.wsc4{word-spacing:6.438058px;}
.ws36{word-spacing:6.519552px;}
.ws79{word-spacing:6.601046px;}
.ws66{word-spacing:6.609196px;}
.ws6{word-spacing:6.652887px;}
.ws56{word-spacing:6.764035px;}
.ws50{word-spacing:6.845530px;}
.ws7a{word-spacing:6.927024px;}
.ws89{word-spacing:7.008518px;}
.wsa0{word-spacing:7.016668px;}
.wsb5{word-spacing:7.171507px;}
.wsb4{word-spacing:7.253002px;}
.wsb0{word-spacing:7.497485px;}
.ws10{word-spacing:7.578979px;}
.ws8e{word-spacing:7.660474px;}
.wsaa{word-spacing:7.823462px;}
.wsbf{word-spacing:7.896807px;}
.ws7e{word-spacing:7.904957px;}
.wsa8{word-spacing:7.994601px;}
.ws7d{word-spacing:8.059796px;}
.ws25{word-spacing:8.149440px;}
.wsab{word-spacing:8.230934px;}
.ws70{word-spacing:8.263532px;}
.ws4d{word-spacing:8.312429px;}
.wsbe{word-spacing:8.393923px;}
.ws74{word-spacing:8.475418px;}
.ws67{word-spacing:8.556912px;}
.ws57{word-spacing:8.638406px;}
.ws2a{word-spacing:8.719901px;}
.ws9{word-spacing:8.801395px;}
.ws49{word-spacing:8.882890px;}
.ws8f{word-spacing:8.964384px;}
.ws9d{word-spacing:9.054028px;}
.wsa9{word-spacing:9.119223px;}
.wsb2{word-spacing:9.127373px;}
.ws6d{word-spacing:9.208867px;}
.ws5{word-spacing:9.260700px;}
.wsd{word-spacing:9.298511px;}
.ws5f{word-spacing:9.453350px;}
.ws9f{word-spacing:9.534845px;}
.ws91{word-spacing:9.608190px;}
.ws51{word-spacing:9.779328px;}
.ws32{word-spacing:9.820075px;}
.ws84{word-spacing:9.942317px;}
.wsc3{word-spacing:9.983064px;}
.ws9b{word-spacing:10.023811px;}
.ws11{word-spacing:10.105306px;}
.ws34{word-spacing:10.137903px;}
.ws22{word-spacing:10.154202px;}
.ws92{word-spacing:10.178651px;}
.ws14{word-spacing:10.186800px;}
.ws12{word-spacing:10.194949px;}
.ws4{word-spacing:151.875480px;}
._14{margin-left:-19.099296px;}
._17{margin-left:-17.424895px;}
._16{margin-left:-14.320746px;}
._11{margin-left:-11.416577px;}
._a{margin-left:-9.557042px;}
._c{margin-left:-8.223502px;}
._1{margin-left:-7.112256px;}
._8{margin-left:-5.482334px;}
._5{margin-left:-3.763563px;}
._0{margin-left:-2.667096px;}
._2{margin-left:-1.044593px;}
._18{width:1.064472px;}
._d{width:3.119004px;}
._19{width:5.477888px;}
._1a{width:7.769365px;}
._1b{width:9.689684px;}
._e{width:11.483268px;}
._f{width:12.913120px;}
._10{width:14.809711px;}
._12{width:133.354080px;}
._13{width:151.134610px;}
._15{width:152.149650px;}
._6{width:167.063028px;}
._3{width:177.286841px;}
._9{width:228.109562px;}
._b{width:256.854775px;}
._7{width:488.001847px;}
._4{width:506.523247px;}
.fc2{color:rgb(16,15,13);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:47.266800px;}
.fs3{font-size:66.677400px;}
.fs2{font-size:74.085600px;}
.fs7{font-size:81.494400px;}
.fs5{font-size:88.903200px;}
.fs6{font-size:96.000000px;}
.fs4{font-size:103.720200px;}
.fs1{font-size:133.354200px;}
.fs0{font-size:177.806400px;}
.y0{bottom:0.000000px;}
.y4f{bottom:96.085200px;}
.y4e{bottom:148.551010px;}
.y16{bottom:148.586910px;}
.y14e{bottom:148.669462px;}
.y74{bottom:148.708171px;}
.ye0{bottom:148.710209px;}
.y193{bottom:148.730696px;}
.yc2{bottom:148.771330px;}
.y170{bottom:148.792973px;}
.y129{bottom:148.812077px;}
.y105{bottom:148.875235px;}
.y9b{bottom:148.954692px;}
.y2d{bottom:153.704514px;}
.y1b9{bottom:154.029756px;}
.y15{bottom:168.590130px;}
.y4d{bottom:172.652979px;}
.yc1{bottom:173.178902px;}
.y104{bottom:173.180940px;}
.y192{bottom:173.321632px;}
.y73{bottom:173.400975px;}
.ydf{bottom:173.403012px;}
.y9a{bottom:173.627122px;}
.y14d{bottom:173.830858px;}
.y16f{bottom:173.852501px;}
.y2c{bottom:175.932046px;}
.y1b8{bottom:178.111351px;}
.y14{bottom:188.593350px;}
.y4c{bottom:196.754947px;}
.yc0{bottom:197.586475px;}
.y128{bottom:197.993947px;}
.yde{bottom:198.095815px;}
.y2b{bottom:198.159578px;}
.y99{bottom:198.299551px;}
.y16e{bottom:198.912029px;}
.y14c{bottom:198.992254px;}
.y1b7{bottom:202.192946px;}
.y191{bottom:203.168956px;}
.y103{bottom:207.999422px;}
.y72{bottom:213.842571px;}
.y4b{bottom:220.856916px;}
.ybf{bottom:221.994048px;}
.y127{bottom:222.584882px;}
.ydd{bottom:222.788618px;}
.y98{bottom:222.971981px;}
.y190{bottom:227.759891px;}
.y16d{bottom:229.227946px;}
.y1b6{bottom:231.530930px;}
.y102{bottom:232.305127px;}
.y14b{bottom:234.666427px;}
.y2a{bottom:236.128448px;}
.y4a{bottom:244.958885px;}
.ybe{bottom:246.401621px;}
.y126{bottom:247.175818px;}
.ydc{bottom:247.481422px;}
.y97{bottom:247.644410px;}
.y16c{bottom:254.287474px;}
.y1b5{bottom:255.612525px;}
.y101{bottom:256.610832px;}
.y18f{bottom:257.607215px;}
.y29{bottom:258.354128px;}
.y14a{bottom:259.827823px;}
.y13{bottom:268.592001px;}
.y49{bottom:269.060854px;}
.ybd{bottom:270.809194px;}
.y125{bottom:271.766753px;}
.ydb{bottom:272.174225px;}
.y96{bottom:272.316840px;}
.y5{bottom:274.105500px;}
.y71{bottom:275.289348px;}
.y16b{bottom:279.347002px;}
.y1b4{bottom:279.694121px;}
.y100{bottom:280.916537px;}
.y18e{bottom:282.193926px;}
.y149{bottom:284.989219px;}
.y12{bottom:290.817681px;}
.y48{bottom:293.162823px;}
.ybc{bottom:295.216766px;}
.y28{bottom:296.322998px;}
.y124{bottom:296.357688px;}
.y95{bottom:296.989270px;}
.y70{bottom:299.982151px;}
.yff{bottom:305.222241px;}
.yda{bottom:307.379806px;}
.y1b3{bottom:309.032105px;}
.y16a{bottom:309.662918px;}
.y148{bottom:310.150615px;}
.y18d{bottom:312.041250px;}
.y47{bottom:317.264791px;}
.y11{bottom:318.284917px;}
.y27{bottom:318.548678px;}
.y123{bottom:320.948623px;}
.y94{bottom:321.661699px;}
.y6f{bottom:324.674955px;}
.yfe{bottom:329.527946px;}
.ybb{bottom:330.137117px;}
.yd9{bottom:332.072609px;}
.y1b2{bottom:333.113700px;}
.y169{bottom:334.722446px;}
.y147{bottom:335.312011px;}
.y18c{bottom:336.632185px;}
.y10{bottom:340.512449px;}
.y26{bottom:340.774358px;}
.y122{bottom:345.539558px;}
.y93{bottom:346.334129px;}
.y6e{bottom:349.367758px;}
.yfd{bottom:353.833651px;}
.y4{bottom:354.125128px;}
.yba{bottom:354.544690px;}
.yd8{bottom:356.765412px;}
.y46{bottom:357.115553px;}
.y1b1{bottom:357.195295px;}
.y146{bottom:360.473407px;}
.y168{bottom:365.038363px;}
.yf{bottom:365.368168px;}
.y18b{bottom:366.481546px;}
.y121{bottom:370.130494px;}
.y92{bottom:371.006558px;}
.y6d{bottom:374.060561px;}
.yfc{bottom:378.139356px;}
.y25{bottom:378.743228px;}
.yb9{bottom:378.952262px;}
.yd7{bottom:381.458215px;}
.y145{bottom:385.634803px;}
.y1b0{bottom:386.533279px;}
.ye{bottom:387.593848px;}
.y167{bottom:390.097891px;}
.y18a{bottom:391.072481px;}
.y120{bottom:394.721429px;}
.y91{bottom:395.678988px;}
.y24{bottom:400.968908px;}
.yfb{bottom:402.445061px;}
.yb8{bottom:403.359835px;}
.yd6{bottom:406.151018px;}
.y3{bottom:407.467048px;}
.y6c{bottom:409.266142px;}
.y1af{bottom:410.614874px;}
.y144{bottom:410.796199px;}
.yd{bottom:413.375636px;}
.y166{bottom:415.157419px;}
.y189{bottom:415.661379px;}
.y45{bottom:417.971496px;}
.y90{bottom:420.351418px;}
.yb7{bottom:427.767408px;}
.y11f{bottom:429.825142px;}
.yd5{bottom:430.843822px;}
.y6b{bottom:433.958945px;}
.y1ae{bottom:434.696469px;}
.yc{bottom:435.601316px;}
.y143{bottom:435.957595px;}
.yfa{bottom:437.263543px;}
.y23{bottom:438.937778px;}
.y44{bottom:442.073465px;}
.y8f{bottom:445.023847px;}
.y165{bottom:445.473336px;}
.y188{bottom:445.510740px;}
.yb6{bottom:452.174981px;}
.y11e{bottom:454.416077px;}
.yd4{bottom:455.536625px;}
.y6a{bottom:458.651748px;}
.y1ad{bottom:458.778065px;}
.y2{bottom:460.808968px;}
.y142{bottom:461.118991px;}
.y22{bottom:461.163458px;}
.yb{bottom:461.383105px;}
.yf9{bottom:461.567210px;}
.y43{bottom:466.175434px;}
.y8e{bottom:469.696277px;}
.y187{bottom:470.101676px;}
.y164{bottom:470.532864px;}
.yb5{bottom:476.582554px;}
.y11d{bottom:479.007012px;}
.yd3{bottom:480.229428px;}
.y69{bottom:483.344551px;}
.ya{bottom:483.608785px;}
.yf8{bottom:485.870878px;}
.y141{bottom:486.280387px;}
.y1ac{bottom:488.114011px;}
.y42{bottom:490.277403px;}
.y8d{bottom:494.368706px;}
.y163{bottom:495.592392px;}
.y21{bottom:499.132328px;}
.y186{bottom:499.949000px;}
.y11c{bottom:503.597947px;}
.yd2{bottom:504.922231px;}
.y68{bottom:508.037355px;}
.y9{bottom:509.390574px;}
.yf7{bottom:510.174545px;}
.yb4{bottom:511.502904px;}
.y1ab{bottom:512.197644px;}
.y41{bottom:514.379371px;}
.y8c{bottom:519.041136px;}
.y20{bottom:521.358008px;}
.y140{bottom:521.954561px;}
.y185{bottom:524.539935px;}
.y162{bottom:525.908309px;}
.y11b{bottom:528.188882px;}
.y8{bottom:531.616254px;}
.y67{bottom:532.730158px;}
.yf6{bottom:534.478213px;}
.yb3{bottom:535.910477px;}
.y1aa{bottom:536.279239px;}
.y8b{bottom:543.713566px;}
.yd1{bottom:545.363827px;}
.y13f{bottom:547.115957px;}
.y40{bottom:548.973744px;}
.y184{bottom:549.130870px;}
.y161{bottom:550.967837px;}
.y11a{bottom:552.779818px;}
.y66{bottom:557.422961px;}
.yf5{bottom:558.781880px;}
.yb2{bottom:560.318050px;}
.y1f{bottom:562.105088px;}
.y7{bottom:564.345420px;}
.y1a9{bottom:565.617223px;}
.yd0{bottom:570.056630px;}
.y13e{bottom:572.277353px;}
.y3f{bottom:573.075713px;}
.y160{bottom:576.027365px;}
.y119{bottom:577.370753px;}
.y8a{bottom:578.898773px;}
.y183{bottom:578.978194px;}
.y65{bottom:582.115764px;}
.yf4{bottom:583.085548px;}
.y1e{bottom:584.330768px;}
.yb1{bottom:584.725622px;}
.y6{bottom:586.571100px;}
.y1a8{bottom:589.698818px;}
.y3e{bottom:597.177682px;}
.y13d{bottom:597.438749px;}
.y15f{bottom:601.086893px;}
.y118{bottom:601.961688px;}
.y182{bottom:603.569129px;}
.y89{bottom:603.571202px;}
.y1d{bottom:606.556448px;}
.yf3{bottom:607.389215px;}
.yb0{bottom:609.133195px;}
.y1a7{bottom:613.780413px;}
.y64{bottom:617.321345px;}
.y3d{bottom:621.279651px;}
.y13c{bottom:622.600145px;}
.y181{bottom:628.160064px;}
.y88{bottom:628.243632px;}
.y15e{bottom:631.402810px;}
.ycf{bottom:631.503408px;}
.yf2{bottom:631.692882px;}
.yaf{bottom:633.540768px;}
.y63{bottom:642.014148px;}
.y117{bottom:642.301416px;}
.y1a6{bottom:643.118397px;}
.y1c{bottom:644.525318px;}
.y3c{bottom:645.381619px;}
.y13b{bottom:647.761541px;}
.y33{bottom:647.773500px;}
.y87{bottom:652.916062px;}
.yf1{bottom:655.996550px;}
.yce{bottom:656.196211px;}
.y15d{bottom:656.462338px;}
.yae{bottom:657.948341px;}
.y180{bottom:658.007388px;}
.y62{bottom:666.706951px;}
.y1b{bottom:666.752850px;}
.y1a5{bottom:667.199993px;}
.y3b{bottom:669.483588px;}
.y13a{bottom:672.922937px;}
.y86{bottom:677.588491px;}
.yf0{bottom:680.300217px;}
.ycd{bottom:680.889014px;}
.yad{bottom:682.355914px;}
.y17f{bottom:682.598324px;}
.y15c{bottom:686.778254px;}
.y1a{bottom:688.978530px;}
.y1a4{bottom:691.281588px;}
.y61{bottom:691.399755px;}
.y3a{bottom:693.585557px;}
.y32{bottom:696.599400px;}
.y139{bottom:698.084333px;}
.y85{bottom:702.260921px;}
.y116{bottom:703.646326px;}
.yef{bottom:704.603885px;}
.ycc{bottom:705.581818px;}
.yac{bottom:706.763486px;}
.y17e{bottom:707.189259px;}
.y15b{bottom:711.837782px;}
.y60{bottom:716.092558px;}
.y39{bottom:717.687526px;}
.y1a3{bottom:720.619572px;}
.y31{bottom:724.381650px;}
.y84{bottom:726.933350px;}
.y19{bottom:726.947400px;}
.y115{bottom:728.237261px;}
.ycb{bottom:730.274621px;}
.yab{bottom:731.171059px;}
.y17d{bottom:731.780194px;}
.y138{bottom:733.758506px;}
.yee{bottom:739.422367px;}
.y5f{bottom:740.785361px;}
.y38{bottom:741.789495px;}
.y15a{bottom:742.153699px;}
.y1a2{bottom:744.701167px;}
.y18{bottom:749.174400px;}
.y83{bottom:751.605780px;}
.y30{bottom:752.163900px;}
.y114{bottom:752.828196px;}
.yca{bottom:754.967424px;}
.yaa{bottom:755.578632px;}
.y17c{bottom:756.371129px;}
.y137{bottom:758.919902px;}
.yed{bottom:763.728072px;}
.y5e{bottom:765.478164px;}
.y37{bottom:765.891463px;}
.y159{bottom:767.213227px;}
.y1a1{bottom:768.782762px;}
.y82{bottom:776.278210px;}
.y113{bottom:777.419131px;}
.ya9{bottom:779.986205px;}
.y136{bottom:784.081298px;}
.y17b{bottom:786.218453px;}
.yec{bottom:788.033777px;}
.y36{bottom:789.993432px;}
.y5d{bottom:790.170967px;}
.yc9{bottom:790.173005px;}
.y158{bottom:792.272755px;}
.y1a0{bottom:798.120746px;}
.y112{bottom:802.010066px;}
.ya8{bottom:804.393778px;}
.y2f{bottom:805.085940px;}
.y135{bottom:809.242694px;}
.y17a{bottom:810.809388px;}
.y81{bottom:811.463417px;}
.yeb{bottom:812.339482px;}
.y35{bottom:814.095401px;}
.y5c{bottom:814.863771px;}
.yc8{bottom:814.865808px;}
.y19f{bottom:822.202341px;}
.y157{bottom:822.588672px;}
.y111{bottom:826.601002px;}
.ya7{bottom:828.801350px;}
.y134{bottom:834.404090px;}
.y80{bottom:836.135846px;}
.yea{bottom:836.645186px;}
.yc7{bottom:839.558611px;}
.y179{bottom:840.656712px;}
.y2e{bottom:845.092200px;}
.y156{bottom:847.687678px;}
.y5b{bottom:850.071389px;}
.y17{bottom:850.153200px;}
.y110{bottom:851.191937px;}
.y19e{bottom:851.538288px;}
.ya6{bottom:853.208923px;}
.y34{bottom:853.948200px;}
.y133{bottom:859.565486px;}
.y7f{bottom:860.808276px;}
.ye9{bottom:860.950891px;}
.yc6{bottom:864.251414px;}
.y178{bottom:865.247648px;}
.y5a{bottom:874.764192px;}
.y19d{bottom:875.619883px;}
.y10f{bottom:875.782872px;}
.ya5{bottom:877.616496px;}
.y155{bottom:878.003594px;}
.y132{bottom:884.726882px;}
.ye8{bottom:885.256596px;}
.y7e{bottom:885.480706px;}
.yc5{bottom:888.944218px;}
.y177{bottom:895.097009px;}
.y59{bottom:899.456995px;}
.y19c{bottom:899.701478px;}
.y10e{bottom:900.373807px;}
.ya4{bottom:902.024069px;}
.y154{bottom:903.063122px;}
.ye7{bottom:909.562301px;}
.y131{bottom:909.888278px;}
.y7d{bottom:910.153135px;}
.yc4{bottom:913.637021px;}
.y1{bottom:921.505350px;}
.y58{bottom:924.149798px;}
.y176{bottom:924.946370px;}
.y10d{bottom:924.964742px;}
.y19b{bottom:929.039462px;}
.ye6{bottom:933.868006px;}
.y7c{bottom:934.825565px;}
.ya3{bottom:936.944419px;}
.yc3{bottom:938.329824px;}
.y153{bottom:943.891817px;}
.y130{bottom:945.562452px;}
.y57{bottom:948.842602px;}
.y175{bottom:949.537306px;}
.y10c{bottom:949.555678px;}
.y19a{bottom:953.121058px;}
.ye5{bottom:958.173710px;}
.y7b{bottom:959.497994px;}
.ya2{bottom:961.351992px;}
.y12f{bottom:970.723848px;}
.y56{bottom:973.535405px;}
.y174{bottom:974.126203px;}
.y10b{bottom:974.146613px;}
.y199{bottom:977.202653px;}
.ye4{bottom:982.479415px;}
.y7a{bottom:984.170424px;}
.ya1{bottom:985.759565px;}
.y1be{bottom:987.715430px;}
.y152{bottom:995.212915px;}
.y12e{bottom:995.885244px;}
.y55{bottom:998.228208px;}
.y10a{bottom:998.737548px;}
.y173{bottom:1003.975565px;}
.y198{bottom:1006.540637px;}
.ye3{bottom:1006.785120px;}
.y79{bottom:1008.842854px;}
.ya0{bottom:1010.167138px;}
.y1bd{bottom:1011.797026px;}
.y12d{bottom:1021.046640px;}
.y54{bottom:1022.921011px;}
.y109{bottom:1023.328483px;}
.y172{bottom:1028.572565px;}
.y197{bottom:1030.622232px;}
.y78{bottom:1033.515283px;}
.y9f{bottom:1034.574710px;}
.y1bc{bottom:1035.878621px;}
.y12c{bottom:1046.208036px;}
.ye2{bottom:1046.839618px;}
.y53{bottom:1047.613814px;}
.y171{bottom:1053.173770px;}
.y196{bottom:1054.703827px;}
.y151{bottom:1057.026418px;}
.y77{bottom:1058.187713px;}
.y108{bottom:1058.432196px;}
.y9e{bottom:1058.982283px;}
.y1bb{bottom:1059.960216px;}
.y12b{bottom:1071.369432px;}
.y52{bottom:1072.306618px;}
.y195{bottom:1078.785422px;}
.y150{bottom:1082.085946px;}
.y76{bottom:1082.860142px;}
.y107{bottom:1083.023131px;}
.y9d{bottom:1083.389856px;}
.y1ba{bottom:1084.041811px;}
.y12a{bottom:1107.043606px;}
.y14f{bottom:1107.145474px;}
.y51{bottom:1107.512198px;}
.y75{bottom:1107.532572px;}
.y106{bottom:1107.614066px;}
.y9c{bottom:1107.797429px;}
.ye1{bottom:1107.899297px;}
.y194{bottom:1108.123406px;}
.y50{bottom:1132.205002px;}
.h4{height:51.859920px;}
.hb{height:57.046080px;}
.h5{height:59.342886px;}
.h8{height:62.232240px;}
.h3{height:65.936184px;}
.h9{height:67.488000px;}
.ha{height:72.530016px;}
.hc{height:72.546914px;}
.h7{height:79.123848px;}
.h6{height:92.310978px;}
.h2{height:93.347940px;}
.h1{height:124.464480px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x6{left:115.503900px;}
.x7{left:157.506300px;}
.x2{left:227.431123px;}
.x3{left:236.677056px;}
.x4{left:237.877249px;}
.x8{left:326.361600px;}
.x5{left:355.434750px;}
.xd{left:362.653500px;}
.xb{left:385.433053px;}
.x9{left:391.805174px;}
.x1{left:401.814750px;}
.xe{left:419.108250px;}
.xa{left:468.690900px;}
.xc{left:519.143466px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.763635pt;}
.ls19{letter-spacing:-2.716480pt;}
.ls1{letter-spacing:-0.011854pt;}
.ls6{letter-spacing:-0.007244pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000533pt;}
.ls17{letter-spacing:0.001067pt;}
.ls7{letter-spacing:0.028976pt;}
.ls15{letter-spacing:0.072439pt;}
.ls11{letter-spacing:0.137635pt;}
.ls9{letter-spacing:0.144879pt;}
.ls13{letter-spacing:0.181099pt;}
.ls20{letter-spacing:0.210074pt;}
.lsc{letter-spacing:0.217318pt;}
.ls4{letter-spacing:0.282514pt;}
.ls14{letter-spacing:0.289758pt;}
.ls25{letter-spacing:0.304246pt;}
.ls1f{letter-spacing:0.318734pt;}
.lsb{letter-spacing:0.354953pt;}
.ls23{letter-spacing:0.362197pt;}
.lsd{letter-spacing:0.434637pt;}
.ls18{letter-spacing:0.507076pt;}
.ls5{letter-spacing:0.579516pt;}
.ls1d{letter-spacing:0.597867pt;}
.ls1c{letter-spacing:0.598400pt;}
.ls21{letter-spacing:0.651955pt;}
.ls3{letter-spacing:0.658539pt;}
.ls10{letter-spacing:0.688175pt;}
.ls8{letter-spacing:0.724395pt;}
.ls12{letter-spacing:0.796834pt;}
.lsa{letter-spacing:0.869274pt;}
.lse{letter-spacing:0.941713pt;}
.lsf{letter-spacing:0.970689pt;}
.ls1b{letter-spacing:1.014153pt;}
.ls1a{letter-spacing:1.086592pt;}
.ls2{letter-spacing:1.119516pt;}
.ls22{letter-spacing:1.122812pt;}
.ls1e{letter-spacing:1.159031pt;}
.ls24{letter-spacing:1.738547pt;}
.ws8{word-spacing:-18.109867pt;}
.wsaf{word-spacing:-15.393387pt;}
.wsb6{word-spacing:-10.503733pt;}
.ws4e{word-spacing:-2.535381pt;}
.ws6a{word-spacing:-2.390502pt;}
.ws97{word-spacing:-1.810987pt;}
.ws3d{word-spacing:-1.738547pt;}
.ws37{word-spacing:-1.521229pt;}
.wsb{word-spacing:-1.448789pt;}
.wsb1{word-spacing:-1.412570pt;}
.ws77{word-spacing:-1.376350pt;}
.ws41{word-spacing:-1.340130pt;}
.wsb8{word-spacing:-1.303910pt;}
.ws5c{word-spacing:-1.159031pt;}
.ws13{word-spacing:-1.086592pt;}
.wsb3{word-spacing:-1.043128pt;}
.ws40{word-spacing:-1.014153pt;}
.wsbd{word-spacing:-0.948957pt;}
.wsa4{word-spacing:-0.941713pt;}
.ws42{word-spacing:-0.869274pt;}
.ws69{word-spacing:-0.796834pt;}
.ws55{word-spacing:-0.789590pt;}
.ws18{word-spacing:-0.724395pt;}
.ws86{word-spacing:-0.651955pt;}
.ws60{word-spacing:-0.579516pt;}
.wsf{word-spacing:-0.507076pt;}
.ws81{word-spacing:-0.434637pt;}
.ws8c{word-spacing:-0.289758pt;}
.ws43{word-spacing:-0.282514pt;}
.ws72{word-spacing:-0.217318pt;}
.ws6e{word-spacing:-0.166611pt;}
.ws7{word-spacing:-0.011854pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.005927pt;}
.ws1{word-spacing:0.011854pt;}
.ws76{word-spacing:0.028976pt;}
.ws88{word-spacing:0.072439pt;}
.ws17{word-spacing:0.144879pt;}
.ws31{word-spacing:0.217318pt;}
.ws35{word-spacing:0.325978pt;}
.wsa1{word-spacing:0.354953pt;}
.wsa7{word-spacing:0.362197pt;}
.wsc2{word-spacing:0.420149pt;}
.ws5d{word-spacing:0.434637pt;}
.wsa3{word-spacing:0.499832pt;}
.ws24{word-spacing:0.507076pt;}
.ws3{word-spacing:0.526831pt;}
.ws58{word-spacing:0.579516pt;}
.wsad{word-spacing:0.651955pt;}
.ws8b{word-spacing:0.753370pt;}
.wsac{word-spacing:0.869274pt;}
.ws59{word-spacing:0.898249pt;}
.ws65{word-spacing:0.941713pt;}
.ws2b{word-spacing:1.014153pt;}
.ws20{word-spacing:1.043128pt;}
.ws7b{word-spacing:1.050372pt;}
.ws7c{word-spacing:1.057616pt;}
.ws78{word-spacing:1.079348pt;}
.ws63{word-spacing:1.159031pt;}
.wsba{word-spacing:1.202495pt;}
.wsbb{word-spacing:1.216983pt;}
.ws5b{word-spacing:1.224227pt;}
.ws8d{word-spacing:1.231471pt;}
.wsb9{word-spacing:1.303910pt;}
.ws27{word-spacing:1.376350pt;}
.ws6f{word-spacing:1.448789pt;}
.ws4f{word-spacing:1.521229pt;}
.wsc7{word-spacing:1.528473pt;}
.ws30{word-spacing:1.593668pt;}
.ws3f{word-spacing:1.622644pt;}
.ws99{word-spacing:1.666108pt;}
.ws3b{word-spacing:1.738547pt;}
.ws4c{word-spacing:1.810987pt;}
.wsc6{word-spacing:1.876182pt;}
.ws85{word-spacing:1.883426pt;}
.ws47{word-spacing:1.955866pt;}
.ws39{word-spacing:2.028305pt;}
.ws71{word-spacing:2.093501pt;}
.ws5a{word-spacing:2.173184pt;}
.ws87{word-spacing:2.238380pt;}
.ws68{word-spacing:2.245623pt;}
.wsc0{word-spacing:2.318063pt;}
.ws7f{word-spacing:2.390502pt;}
.ws2c{word-spacing:2.462942pt;}
.ws53{word-spacing:2.535381pt;}
.ws21{word-spacing:2.542625pt;}
.ws1e{word-spacing:2.607821pt;}
.ws2f{word-spacing:2.680260pt;}
.ws82{word-spacing:2.752700pt;}
.ws4a{word-spacing:2.825139pt;}
.wse{word-spacing:2.883091pt;}
.ws19{word-spacing:2.897579pt;}
.ws3c{word-spacing:2.904823pt;}
.ws26{word-spacing:2.948286pt;}
.wsa{word-spacing:2.970018pt;}
.ws29{word-spacing:3.042458pt;}
.wsc{word-spacing:3.114897pt;}
.ws9a{word-spacing:3.187337pt;}
.ws44{word-spacing:3.259776pt;}
.ws1f{word-spacing:3.332215pt;}
.ws54{word-spacing:3.339459pt;}
.ws83{word-spacing:3.404655pt;}
.ws1d{word-spacing:3.477094pt;}
.ws1b{word-spacing:3.535046pt;}
.ws38{word-spacing:3.549534pt;}
.ws75{word-spacing:3.556778pt;}
.wsa2{word-spacing:3.578510pt;}
.ws28{word-spacing:3.614729pt;}
.ws9e{word-spacing:3.621973pt;}
.ws8a{word-spacing:3.694413pt;}
.wsae{word-spacing:3.759608pt;}
.ws45{word-spacing:3.766852pt;}
.ws33{word-spacing:3.839292pt;}
.ws23{word-spacing:3.868268pt;}
.ws52{word-spacing:3.911731pt;}
.ws4b{word-spacing:3.940707pt;}
.ws2e{word-spacing:3.984171pt;}
.ws3a{word-spacing:4.056610pt;}
.ws98{word-spacing:4.121806pt;}
.ws1c{word-spacing:4.201489pt;}
.ws6c{word-spacing:4.273929pt;}
.ws2d{word-spacing:4.317392pt;}
.ws1a{word-spacing:4.339124pt;}
.ws95{word-spacing:4.556442pt;}
.ws46{word-spacing:4.563686pt;}
.ws80{word-spacing:4.636126pt;}
.wsc1{word-spacing:4.708565pt;}
.wsbc{word-spacing:4.773761pt;}
.ws3e{word-spacing:4.781005pt;}
.ws62{word-spacing:4.853444pt;}
.ws96{word-spacing:4.925884pt;}
.ws73{word-spacing:4.969347pt;}
.ws9c{word-spacing:4.991079pt;}
.ws90{word-spacing:4.998323pt;}
.ws16{word-spacing:5.027299pt;}
.ws93{word-spacing:5.070763pt;}
.wsa6{word-spacing:5.143202pt;}
.ws48{word-spacing:5.295325pt;}
.ws94{word-spacing:5.360521pt;}
.ws15{word-spacing:5.432960pt;}
.ws5e{word-spacing:5.483668pt;}
.wsa5{word-spacing:5.505399pt;}
.ws64{word-spacing:5.570595pt;}
.ws61{word-spacing:5.577839pt;}
.ws6b{word-spacing:5.650278pt;}
.wsb7{word-spacing:5.679254pt;}
.wsc5{word-spacing:5.715474pt;}
.wsc4{word-spacing:5.722718pt;}
.ws36{word-spacing:5.795157pt;}
.ws79{word-spacing:5.867597pt;}
.ws66{word-spacing:5.874841pt;}
.ws6{word-spacing:5.913677pt;}
.ws56{word-spacing:6.012476pt;}
.ws50{word-spacing:6.084915pt;}
.ws7a{word-spacing:6.157355pt;}
.ws89{word-spacing:6.229794pt;}
.wsa0{word-spacing:6.237038pt;}
.wsb5{word-spacing:6.374673pt;}
.wsb4{word-spacing:6.447113pt;}
.wsb0{word-spacing:6.664431pt;}
.ws10{word-spacing:6.736870pt;}
.ws8e{word-spacing:6.809310pt;}
.wsaa{word-spacing:6.954189pt;}
.wsbf{word-spacing:7.019384pt;}
.ws7e{word-spacing:7.026628pt;}
.wsa8{word-spacing:7.106312pt;}
.ws7d{word-spacing:7.164263pt;}
.ws25{word-spacing:7.243947pt;}
.wsab{word-spacing:7.316386pt;}
.ws70{word-spacing:7.345362pt;}
.ws4d{word-spacing:7.388826pt;}
.wsbe{word-spacing:7.461265pt;}
.ws74{word-spacing:7.533705pt;}
.ws67{word-spacing:7.606144pt;}
.ws57{word-spacing:7.678583pt;}
.ws2a{word-spacing:7.751023pt;}
.ws9{word-spacing:7.823462pt;}
.ws49{word-spacing:7.895902pt;}
.ws8f{word-spacing:7.968341pt;}
.ws9d{word-spacing:8.048025pt;}
.wsa9{word-spacing:8.105976pt;}
.wsb2{word-spacing:8.113220pt;}
.ws6d{word-spacing:8.185660pt;}
.ws5{word-spacing:8.231733pt;}
.wsd{word-spacing:8.265343pt;}
.ws5f{word-spacing:8.402978pt;}
.ws9f{word-spacing:8.475418pt;}
.ws91{word-spacing:8.540613pt;}
.ws51{word-spacing:8.692736pt;}
.ws32{word-spacing:8.728956pt;}
.ws84{word-spacing:8.837615pt;}
.wsc3{word-spacing:8.873835pt;}
.ws9b{word-spacing:8.910054pt;}
.ws11{word-spacing:8.982494pt;}
.ws34{word-spacing:9.011470pt;}
.ws22{word-spacing:9.025958pt;}
.ws92{word-spacing:9.047689pt;}
.ws14{word-spacing:9.054933pt;}
.ws12{word-spacing:9.062177pt;}
.ws4{word-spacing:135.000427pt;}
._14{margin-left:-16.977152pt;}
._17{margin-left:-15.488795pt;}
._16{margin-left:-12.729552pt;}
._11{margin-left:-10.148068pt;}
._a{margin-left:-8.495149pt;}
._c{margin-left:-7.309779pt;}
._1{margin-left:-6.322005pt;}
._8{margin-left:-4.873186pt;}
._5{margin-left:-3.345389pt;}
._0{margin-left:-2.370752pt;}
._2{margin-left:-0.928527pt;}
._18{width:0.946198pt;}
._d{width:2.772448pt;}
._19{width:4.869234pt;}
._1a{width:6.906102pt;}
._1b{width:8.613053pt;}
._e{width:10.207349pt;}
._f{width:11.478329pt;}
._10{width:13.164188pt;}
._12{width:118.536960pt;}
._13{width:134.341875pt;}
._15{width:135.244133pt;}
._6{width:148.500469pt;}
._3{width:157.588303pt;}
._9{width:202.764055pt;}
._b{width:228.315356pt;}
._7{width:433.779420pt;}
._4{width:450.242886pt;}
.fs8{font-size:42.014933pt;}
.fs3{font-size:59.268800pt;}
.fs2{font-size:65.853867pt;}
.fs7{font-size:72.439467pt;}
.fs5{font-size:79.025067pt;}
.fs6{font-size:85.333333pt;}
.fs4{font-size:92.195733pt;}
.fs1{font-size:118.537067pt;}
.fs0{font-size:158.050133pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:85.409067pt;}
.y4e{bottom:132.045342pt;}
.y16{bottom:132.077253pt;}
.y14e{bottom:132.150633pt;}
.y74{bottom:132.185041pt;}
.ye0{bottom:132.186852pt;}
.y193{bottom:132.205063pt;}
.yc2{bottom:132.241182pt;}
.y170{bottom:132.260420pt;}
.y129{bottom:132.277402pt;}
.y105{bottom:132.333542pt;}
.y9b{bottom:132.404171pt;}
.y2d{bottom:136.626234pt;}
.y1b9{bottom:136.915338pt;}
.y15{bottom:149.857893pt;}
.y4d{bottom:153.469314pt;}
.yc1{bottom:153.936802pt;}
.y104{bottom:153.938613pt;}
.y192{bottom:154.063673pt;}
.y73{bottom:154.134200pt;}
.ydf{bottom:154.136011pt;}
.y9a{bottom:154.335219pt;}
.y14d{bottom:154.516318pt;}
.y16f{bottom:154.535556pt;}
.y2c{bottom:156.384041pt;}
.y1b8{bottom:158.321201pt;}
.y14{bottom:167.638533pt;}
.y4c{bottom:174.893287pt;}
.yc0{bottom:175.632422pt;}
.y128{bottom:175.994620pt;}
.yde{bottom:176.085169pt;}
.y2b{bottom:176.141847pt;}
.y99{bottom:176.266268pt;}
.y16e{bottom:176.810692pt;}
.y14c{bottom:176.882003pt;}
.y1b7{bottom:179.727063pt;}
.y191{bottom:180.594627pt;}
.y103{bottom:184.888375pt;}
.y72{bottom:190.082285pt;}
.y4b{bottom:196.317259pt;}
.ybf{bottom:197.328043pt;}
.y127{bottom:197.853229pt;}
.ydd{bottom:198.034327pt;}
.y98{bottom:198.197316pt;}
.y190{bottom:202.453236pt;}
.y16d{bottom:203.758174pt;}
.y1b6{bottom:205.805271pt;}
.y102{bottom:206.493446pt;}
.y14b{bottom:208.592380pt;}
.y2a{bottom:209.891954pt;}
.y4a{bottom:217.741231pt;}
.ybe{bottom:219.023663pt;}
.y126{bottom:219.711838pt;}
.ydc{bottom:219.983486pt;}
.y97{bottom:220.128365pt;}
.y16c{bottom:226.033310pt;}
.y1b5{bottom:227.211134pt;}
.y101{bottom:228.098517pt;}
.y18f{bottom:228.984191pt;}
.y29{bottom:229.648114pt;}
.y14a{bottom:230.958065pt;}
.y13{bottom:238.748445pt;}
.y49{bottom:239.165203pt;}
.ybd{bottom:240.719283pt;}
.y125{bottom:241.570447pt;}
.ydb{bottom:241.932644pt;}
.y96{bottom:242.059413pt;}
.y5{bottom:243.649333pt;}
.y71{bottom:244.701643pt;}
.y16b{bottom:248.308446pt;}
.y1b4{bottom:248.616996pt;}
.y100{bottom:249.703588pt;}
.y18e{bottom:250.839045pt;}
.y149{bottom:253.323750pt;}
.y12{bottom:258.504605pt;}
.y48{bottom:260.589176pt;}
.ybc{bottom:262.414903pt;}
.y28{bottom:263.398220pt;}
.y124{bottom:263.429056pt;}
.y95{bottom:263.990462pt;}
.y70{bottom:266.650801pt;}
.yff{bottom:271.308659pt;}
.yda{bottom:273.226494pt;}
.y1b3{bottom:274.695204pt;}
.y16a{bottom:275.255927pt;}
.y148{bottom:275.689436pt;}
.y18d{bottom:277.370000pt;}
.y47{bottom:282.013148pt;}
.y11{bottom:282.919926pt;}
.y27{bottom:283.154380pt;}
.y123{bottom:285.287665pt;}
.y94{bottom:285.921510pt;}
.y6f{bottom:288.599960pt;}
.yfe{bottom:292.913730pt;}
.ybb{bottom:293.455215pt;}
.yd9{bottom:295.175652pt;}
.y1b2{bottom:296.101066pt;}
.y169{bottom:297.531063pt;}
.y147{bottom:298.055121pt;}
.y18c{bottom:299.228609pt;}
.y10{bottom:302.677732pt;}
.y26{bottom:302.910540pt;}
.y122{bottom:307.146274pt;}
.y93{bottom:307.852559pt;}
.y6e{bottom:310.549118pt;}
.yfd{bottom:314.518801pt;}
.y4{bottom:314.777891pt;}
.yba{bottom:315.150835pt;}
.yd8{bottom:317.124811pt;}
.y46{bottom:317.436047pt;}
.y1b1{bottom:317.506929pt;}
.y146{bottom:320.420806pt;}
.y168{bottom:324.478545pt;}
.yf{bottom:324.771705pt;}
.y18b{bottom:325.761374pt;}
.y121{bottom:329.004883pt;}
.y92{bottom:329.783607pt;}
.y6d{bottom:332.498276pt;}
.yfc{bottom:336.123872pt;}
.y25{bottom:336.660647pt;}
.yb9{bottom:336.846455pt;}
.yd7{bottom:339.073969pt;}
.y145{bottom:342.786492pt;}
.y1b0{bottom:343.585137pt;}
.ye{bottom:344.527865pt;}
.y167{bottom:346.753681pt;}
.y18a{bottom:347.619983pt;}
.y120{bottom:350.863492pt;}
.y91{bottom:351.714656pt;}
.y24{bottom:356.416807pt;}
.yfb{bottom:357.728943pt;}
.yb8{bottom:358.542076pt;}
.yd6{bottom:361.023127pt;}
.y3{bottom:362.192931pt;}
.y6c{bottom:363.792126pt;}
.y1af{bottom:364.990999pt;}
.y144{bottom:365.152177pt;}
.yd{bottom:367.445010pt;}
.y166{bottom:369.028817pt;}
.y189{bottom:369.476781pt;}
.y45{bottom:371.530219pt;}
.y90{bottom:373.645705pt;}
.yb7{bottom:380.237696pt;}
.y11f{bottom:382.066793pt;}
.yd5{bottom:382.972286pt;}
.y6b{bottom:385.741284pt;}
.y1ae{bottom:386.396862pt;}
.yc{bottom:387.201170pt;}
.y143{bottom:387.517862pt;}
.yfa{bottom:388.678705pt;}
.y23{bottom:390.166914pt;}
.y44{bottom:392.954191pt;}
.y8f{bottom:395.576753pt;}
.y165{bottom:395.976299pt;}
.y188{bottom:396.009547pt;}
.yb6{bottom:401.933316pt;}
.y11e{bottom:403.925402pt;}
.yd4{bottom:404.921444pt;}
.y6a{bottom:407.690443pt;}
.y1ad{bottom:407.802724pt;}
.y2{bottom:409.607971pt;}
.y142{bottom:409.883548pt;}
.y22{bottom:409.923074pt;}
.yb{bottom:410.118316pt;}
.yf9{bottom:410.281965pt;}
.y43{bottom:414.378163pt;}
.y8e{bottom:417.507802pt;}
.y187{bottom:417.868156pt;}
.y164{bottom:418.251435pt;}
.yb5{bottom:423.628937pt;}
.y11d{bottom:425.784011pt;}
.yd3{bottom:426.870603pt;}
.y69{bottom:429.639601pt;}
.ya{bottom:429.874476pt;}
.yf8{bottom:431.885225pt;}
.y141{bottom:432.249233pt;}
.y1ac{bottom:433.879121pt;}
.y42{bottom:435.802136pt;}
.y8d{bottom:439.438850pt;}
.y163{bottom:440.526571pt;}
.y21{bottom:443.673180pt;}
.y186{bottom:444.399111pt;}
.y11c{bottom:447.642620pt;}
.yd2{bottom:448.819761pt;}
.y68{bottom:451.588760pt;}
.y9{bottom:452.791621pt;}
.yf7{bottom:453.488485pt;}
.yb4{bottom:454.669248pt;}
.y1ab{bottom:455.286794pt;}
.y41{bottom:457.226108pt;}
.y8c{bottom:461.369899pt;}
.y20{bottom:463.429340pt;}
.y140{bottom:463.959610pt;}
.y185{bottom:466.257720pt;}
.y162{bottom:467.474052pt;}
.y11b{bottom:469.501229pt;}
.y8{bottom:472.547781pt;}
.y67{bottom:473.537918pt;}
.yf6{bottom:475.091745pt;}
.yb3{bottom:476.364868pt;}
.y1aa{bottom:476.692657pt;}
.y8b{bottom:483.300947pt;}
.yd1{bottom:484.767846pt;}
.y13f{bottom:486.325295pt;}
.y40{bottom:487.976662pt;}
.y184{bottom:488.116329pt;}
.y161{bottom:489.749188pt;}
.y11a{bottom:491.359838pt;}
.y66{bottom:495.487076pt;}
.yf5{bottom:496.695005pt;}
.yb2{bottom:498.060489pt;}
.y1f{bottom:499.648967pt;}
.y7{bottom:501.640373pt;}
.y1a9{bottom:502.770865pt;}
.yd0{bottom:506.717005pt;}
.y13e{bottom:508.690980pt;}
.y3f{bottom:509.400634pt;}
.y160{bottom:512.024324pt;}
.y119{bottom:513.218447pt;}
.y8a{bottom:514.576687pt;}
.y183{bottom:514.647284pt;}
.y65{bottom:517.436235pt;}
.yf4{bottom:518.298265pt;}
.y1e{bottom:519.405127pt;}
.yb1{bottom:519.756109pt;}
.y6{bottom:521.396533pt;}
.y1a8{bottom:524.176727pt;}
.y3e{bottom:530.824606pt;}
.y13d{bottom:531.056666pt;}
.y15f{bottom:534.299460pt;}
.y118{bottom:535.077056pt;}
.y182{bottom:536.505893pt;}
.y89{bottom:536.507735pt;}
.y1d{bottom:539.161287pt;}
.yf3{bottom:539.901524pt;}
.yb0{bottom:541.451729pt;}
.y1a7{bottom:545.582590pt;}
.y64{bottom:548.730084pt;}
.y3d{bottom:552.248578pt;}
.y13c{bottom:553.422351pt;}
.y181{bottom:558.364502pt;}
.y88{bottom:558.438784pt;}
.y15e{bottom:561.246942pt;}
.ycf{bottom:561.336363pt;}
.yf2{bottom:561.504784pt;}
.yaf{bottom:563.147349pt;}
.y63{bottom:570.679243pt;}
.y117{bottom:570.934592pt;}
.y1a6{bottom:571.660798pt;}
.y1c{bottom:572.911394pt;}
.y3c{bottom:573.672551pt;}
.y13b{bottom:575.788036pt;}
.y33{bottom:575.798667pt;}
.y87{bottom:580.369833pt;}
.yf1{bottom:583.108044pt;}
.yce{bottom:583.285521pt;}
.y15d{bottom:583.522078pt;}
.yae{bottom:584.842970pt;}
.y180{bottom:584.895456pt;}
.y62{bottom:592.628401pt;}
.y1b{bottom:592.669200pt;}
.y1a5{bottom:593.066660pt;}
.y3b{bottom:595.096523pt;}
.y13a{bottom:598.153722pt;}
.y86{bottom:602.300881pt;}
.yf0{bottom:604.711304pt;}
.ycd{bottom:605.234679pt;}
.yad{bottom:606.538590pt;}
.y17f{bottom:606.754065pt;}
.y15c{bottom:610.469559pt;}
.y1a{bottom:612.425360pt;}
.y1a4{bottom:614.472522pt;}
.y61{bottom:614.577560pt;}
.y3a{bottom:616.520495pt;}
.y32{bottom:619.199467pt;}
.y139{bottom:620.519407pt;}
.y85{bottom:624.231930pt;}
.y116{bottom:625.463401pt;}
.yef{bottom:626.314564pt;}
.ycc{bottom:627.183838pt;}
.yac{bottom:628.234210pt;}
.y17e{bottom:628.612675pt;}
.y15b{bottom:632.744695pt;}
.y60{bottom:636.526718pt;}
.y39{bottom:637.944467pt;}
.y1a3{bottom:640.550730pt;}
.y31{bottom:643.894800pt;}
.y84{bottom:646.162978pt;}
.y19{bottom:646.175467pt;}
.y115{bottom:647.322010pt;}
.ycb{bottom:649.132996pt;}
.yab{bottom:649.929830pt;}
.y17d{bottom:650.471284pt;}
.y138{bottom:652.229783pt;}
.yee{bottom:657.264326pt;}
.y5f{bottom:658.475876pt;}
.y38{bottom:659.368440pt;}
.y15a{bottom:659.692177pt;}
.y1a2{bottom:661.956593pt;}
.y18{bottom:665.932800pt;}
.y83{bottom:668.094027pt;}
.y30{bottom:668.590133pt;}
.y114{bottom:669.180619pt;}
.yca{bottom:671.082155pt;}
.yaa{bottom:671.625451pt;}
.y17c{bottom:672.329893pt;}
.y137{bottom:674.595469pt;}
.yed{bottom:678.869397pt;}
.y5e{bottom:680.425035pt;}
.y37{bottom:680.792412pt;}
.y159{bottom:681.967313pt;}
.y1a1{bottom:683.362455pt;}
.y82{bottom:690.025075pt;}
.y113{bottom:691.039228pt;}
.ya9{bottom:693.321071pt;}
.y136{bottom:696.961154pt;}
.y17b{bottom:698.860847pt;}
.yec{bottom:700.474468pt;}
.y36{bottom:702.216384pt;}
.y5d{bottom:702.374193pt;}
.yc9{bottom:702.376004pt;}
.y158{bottom:704.242449pt;}
.y1a0{bottom:709.440663pt;}
.y112{bottom:712.897837pt;}
.ya8{bottom:715.016691pt;}
.y2f{bottom:715.631947pt;}
.y135{bottom:719.326839pt;}
.y17a{bottom:720.719456pt;}
.y81{bottom:721.300815pt;}
.yeb{bottom:722.079539pt;}
.y35{bottom:723.640356pt;}
.y5c{bottom:724.323352pt;}
.yc8{bottom:724.325163pt;}
.y19f{bottom:730.846526pt;}
.y157{bottom:731.189931pt;}
.y111{bottom:734.756446pt;}
.ya7{bottom:736.712311pt;}
.y134{bottom:741.692525pt;}
.y80{bottom:743.231863pt;}
.yea{bottom:743.684610pt;}
.yc7{bottom:746.274321pt;}
.y179{bottom:747.250411pt;}
.y2e{bottom:751.193067pt;}
.y156{bottom:753.500158pt;}
.y5b{bottom:755.619012pt;}
.y17{bottom:755.691733pt;}
.y110{bottom:756.615055pt;}
.y19e{bottom:756.922923pt;}
.ya6{bottom:758.407932pt;}
.y34{bottom:759.065067pt;}
.y133{bottom:764.058210pt;}
.y7f{bottom:765.162912pt;}
.ye9{bottom:765.289681pt;}
.yc6{bottom:768.223479pt;}
.y178{bottom:769.109020pt;}
.y5a{bottom:777.568171pt;}
.y19d{bottom:778.328785pt;}
.y10f{bottom:778.473664pt;}
.ya5{bottom:780.103552pt;}
.y155{bottom:780.447639pt;}
.y132{bottom:786.423895pt;}
.ye8{bottom:786.894752pt;}
.y7e{bottom:787.093961pt;}
.yc5{bottom:790.172638pt;}
.y177{bottom:795.641786pt;}
.y59{bottom:799.517329pt;}
.y19c{bottom:799.734647pt;}
.y10e{bottom:800.332273pt;}
.ya4{bottom:801.799172pt;}
.y154{bottom:802.722775pt;}
.ye7{bottom:808.499823pt;}
.y131{bottom:808.789581pt;}
.y7d{bottom:809.025009pt;}
.yc4{bottom:812.121796pt;}
.y1{bottom:819.115867pt;}
.y58{bottom:821.466487pt;}
.y176{bottom:822.174551pt;}
.y10d{bottom:822.190882pt;}
.y19b{bottom:825.812855pt;}
.ye6{bottom:830.104894pt;}
.y7c{bottom:830.956058pt;}
.ya3{bottom:832.839484pt;}
.yc3{bottom:834.070955pt;}
.y153{bottom:839.014948pt;}
.y130{bottom:840.499957pt;}
.y57{bottom:843.415646pt;}
.y175{bottom:844.033161pt;}
.y10c{bottom:844.049491pt;}
.y19a{bottom:847.218718pt;}
.ye5{bottom:851.709965pt;}
.y7b{bottom:852.887106pt;}
.ya2{bottom:854.535104pt;}
.y12f{bottom:862.865643pt;}
.y56{bottom:865.364804pt;}
.y174{bottom:865.889959pt;}
.y10b{bottom:865.908100pt;}
.y199{bottom:868.624580pt;}
.ye4{bottom:873.315036pt;}
.y7a{bottom:874.818155pt;}
.ya1{bottom:876.230724pt;}
.y1be{bottom:877.969271pt;}
.y152{bottom:884.633702pt;}
.y12e{bottom:885.231328pt;}
.y55{bottom:887.313963pt;}
.y10a{bottom:887.766709pt;}
.y173{bottom:892.422724pt;}
.y198{bottom:894.702788pt;}
.ye3{bottom:894.920107pt;}
.y79{bottom:896.749203pt;}
.ya0{bottom:897.926345pt;}
.y1bd{bottom:899.375134pt;}
.y12d{bottom:907.597013pt;}
.y54{bottom:909.263121pt;}
.y109{bottom:909.625318pt;}
.y172{bottom:914.286724pt;}
.y197{bottom:916.108651pt;}
.y78{bottom:918.680252pt;}
.y9f{bottom:919.621965pt;}
.y1bc{bottom:920.780996pt;}
.y12c{bottom:929.962699pt;}
.ye2{bottom:930.524105pt;}
.y53{bottom:931.212279pt;}
.y171{bottom:936.154462pt;}
.y196{bottom:937.514513pt;}
.y151{bottom:939.579038pt;}
.y77{bottom:940.611300pt;}
.y108{bottom:940.828619pt;}
.y9e{bottom:941.317585pt;}
.y1bb{bottom:942.186859pt;}
.y12b{bottom:952.328384pt;}
.y52{bottom:953.161438pt;}
.y195{bottom:958.920375pt;}
.y150{bottom:961.854174pt;}
.y76{bottom:962.542349pt;}
.y107{bottom:962.687228pt;}
.y9d{bottom:963.013205pt;}
.y1ba{bottom:963.592721pt;}
.y12a{bottom:984.038761pt;}
.y14f{bottom:984.129310pt;}
.y51{bottom:984.455287pt;}
.y75{bottom:984.473397pt;}
.y106{bottom:984.545837pt;}
.y9c{bottom:984.708826pt;}
.ye1{bottom:984.799375pt;}
.y194{bottom:984.998583pt;}
.y50{bottom:1006.404446pt;}
.h4{height:46.097707pt;}
.hb{height:50.707627pt;}
.h5{height:52.749232pt;}
.h8{height:55.317547pt;}
.h3{height:58.609941pt;}
.h9{height:59.989333pt;}
.ha{height:64.471125pt;}
.hc{height:64.486146pt;}
.h7{height:70.332309pt;}
.h6{height:82.054203pt;}
.h2{height:82.975947pt;}
.h1{height:110.635093pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x6{left:102.670133pt;}
.x7{left:140.005600pt;}
.x2{left:202.160998pt;}
.x3{left:210.379605pt;}
.x4{left:211.446444pt;}
.x8{left:290.099200pt;}
.x5{left:315.942000pt;}
.xd{left:322.358667pt;}
.xb{left:342.607158pt;}
.x9{left:348.271265pt;}
.x1{left:357.168667pt;}
.xe{left:372.540667pt;}
.xa{left:416.614133pt;}
.xc{left:461.460859pt;}
}




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