
    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_e07b5b6a338c60372607c878.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a51f2946525567a8b6f00c61.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_8bcfb0df4a5d8884dd3ae5e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_6b195d21095bf525aacf36d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_26fff972e977b855af2770df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.932000;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_0c6e11d2c262253d636e029b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e1681b8dc4f57537a4e514b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_8452e254070efe488fce6972.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.596000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_99aaa86f9b54b51f241d5909.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.451000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c7b35d67b4a1abec3a93156d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.988000px;}
.v2{vertical-align:15.948000px;}
.v5{vertical-align:21.696000px;}
.v4{vertical-align:40.440000px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000538px;}
.ls18{letter-spacing:0.834017px;}
.ls0{letter-spacing:2.964877px;}
.lsa{letter-spacing:2.984525px;}
.ls2{letter-spacing:2.986766px;}
.ls16{letter-spacing:2.987108px;}
.ls1a{letter-spacing:2.987675px;}
.ls1{letter-spacing:2.988780px;}
.lsd{letter-spacing:2.990525px;}
.ls19{letter-spacing:3.319492px;}
.ls6{letter-spacing:6.433866px;}
.ls7{letter-spacing:6.516305px;}
.lsc{letter-spacing:8.034538px;}
.lsb{letter-spacing:8.037269px;}
.ls3{letter-spacing:13.280338px;}
.ls10{letter-spacing:16.602062px;}
.ls8{letter-spacing:16.602538px;}
.ls12{letter-spacing:16.606200px;}
.ls5{letter-spacing:16.608062px;}
.ls15{letter-spacing:16.608538px;}
.ls9{letter-spacing:23.035866px;}
.lse{letter-spacing:23.118305px;}
.ls13{letter-spacing:25.634100px;}
.lsf{letter-spacing:28.542538px;}
.ls11{letter-spacing:30.211866px;}
.ls14{letter-spacing:31.830305px;}
.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;}
}
.wsf8{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.ws41{word-spacing:-11.955150px;}
.ws50{word-spacing:-1.075961px;}
.wsdc{word-spacing:-0.956410px;}
.wsda{word-spacing:-0.896634px;}
.ws79{word-spacing:-0.836858px;}
.wse8{word-spacing:-0.717307px;}
.ws88{word-spacing:-0.657532px;}
.wsbb{word-spacing:-0.478205px;}
.wsc7{word-spacing:-0.358654px;}
.ws8a{word-spacing:-0.179327px;}
.wsae{word-spacing:-0.119551px;}
.ws4d{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.wsd9{word-spacing:-0.041843px;}
.ws90{word-spacing:-0.015656px;}
.ws5a{word-spacing:0.000000px;}
.ws40{word-spacing:0.033796px;}
.ws91{word-spacing:0.034594px;}
.ws39{word-spacing:0.047821px;}
.wsd6{word-spacing:0.119551px;}
.wsa4{word-spacing:0.239102px;}
.ws101{word-spacing:0.286924px;}
.wsc6{word-spacing:0.418429px;}
.wsb4{word-spacing:0.537980px;}
.ws5b{word-spacing:0.597756px;}
.ws99{word-spacing:0.777083px;}
.wsbd{word-spacing:0.836858px;}
.ws4f{word-spacing:0.896634px;}
.ws69{word-spacing:0.956410px;}
.wsce{word-spacing:1.016185px;}
.ws8b{word-spacing:1.255288px;}
.wsf5{word-spacing:1.315063px;}
.ws9c{word-spacing:1.434614px;}
.ws9a{word-spacing:1.613941px;}
.ws14{word-spacing:1.673717px;}
.ws60{word-spacing:1.733492px;}
.ws4b{word-spacing:1.793268px;}
.wsa8{word-spacing:1.853044px;}
.ws2a{word-spacing:1.964914px;}
.ws2b{word-spacing:1.972595px;}
.wsaf{word-spacing:2.092146px;}
.wsfe{word-spacing:2.183292px;}
.wsff{word-spacing:2.199748px;}
.wsf6{word-spacing:2.211697px;}
.ws54{word-spacing:2.331248px;}
.ws52{word-spacing:2.391024px;}
.wsf1{word-spacing:2.510575px;}
.wsb2{word-spacing:2.570351px;}
.wsa3{word-spacing:2.630126px;}
.wsb5{word-spacing:2.749678px;}
.ws1d{word-spacing:3.048556px;}
.wse2{word-spacing:3.108331px;}
.ws1e{word-spacing:3.168107px;}
.ws3c{word-spacing:3.227882px;}
.wsd0{word-spacing:3.347434px;}
.ws38{word-spacing:3.466985px;}
.ws96{word-spacing:3.526760px;}
.ws36{word-spacing:3.586536px;}
.ws20{word-spacing:3.706087px;}
.ws4e{word-spacing:3.825638px;}
.ws78{word-spacing:3.945190px;}
.ws47{word-spacing:4.004965px;}
.wse5{word-spacing:4.064741px;}
.wsd7{word-spacing:4.124516px;}
.ws35{word-spacing:4.184292px;}
.wsc5{word-spacing:4.303843px;}
.wsad{word-spacing:4.483170px;}
.wsa5{word-spacing:4.542946px;}
.wse0{word-spacing:4.602721px;}
.wsb8{word-spacing:4.722272px;}
.ws106{word-spacing:4.777965px;}
.ws102{word-spacing:4.781507px;}
.ws74{word-spacing:4.782048px;}
.ws3e{word-spacing:4.782060px;}
.ws5e{word-spacing:4.841824px;}
.wsdd{word-spacing:5.140702px;}
.ws33{word-spacing:5.320028px;}
.wsb0{word-spacing:5.439580px;}
.wsc9{word-spacing:5.499355px;}
.ws46{word-spacing:5.559131px;}
.ws34{word-spacing:5.678682px;}
.wsc2{word-spacing:5.738458px;}
.ws8e{word-spacing:5.798233px;}
.wse6{word-spacing:5.858009px;}
.ws64{word-spacing:5.917784px;}
.wsca{word-spacing:5.929754px;}
.ws2{word-spacing:5.977560px;}
.ws82{word-spacing:5.978134px;}
.wsc3{word-spacing:6.156887px;}
.ws4c{word-spacing:6.216662px;}
.ws26{word-spacing:6.276438px;}
.wsa2{word-spacing:6.336214px;}
.ws37{word-spacing:6.395989px;}
.ws4a{word-spacing:6.455765px;}
.wsd4{word-spacing:6.515540px;}
.wsa0{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws16{word-spacing:6.694867px;}
.ws29{word-spacing:6.754643px;}
.wscf{word-spacing:6.814418px;}
.wsa1{word-spacing:6.874194px;}
.wsd8{word-spacing:6.933970px;}
.wsc0{word-spacing:6.993745px;}
.ws95{word-spacing:7.053521px;}
.ws83{word-spacing:7.113296px;}
.ws84{word-spacing:7.126436px;}
.ws85{word-spacing:7.173072px;}
.ws17{word-spacing:7.232848px;}
.ws6d{word-spacing:7.292623px;}
.wsa9{word-spacing:7.352399px;}
.ws65{word-spacing:7.412174px;}
.ws42{word-spacing:7.471950px;}
.wsdb{word-spacing:7.591501px;}
.ws9b{word-spacing:7.651277px;}
.ws9f{word-spacing:7.770828px;}
.ws23{word-spacing:7.830604px;}
.ws27{word-spacing:7.890379px;}
.wse3{word-spacing:7.950155px;}
.ws3a{word-spacing:8.129482px;}
.wsd2{word-spacing:8.189257px;}
.ws89{word-spacing:8.249033px;}
.ws8c{word-spacing:8.368584px;}
.wsab{word-spacing:8.428360px;}
.ws48{word-spacing:8.547911px;}
.ws98{word-spacing:8.667462px;}
.ws2f{word-spacing:8.727238px;}
.ws2d{word-spacing:8.787013px;}
.wsd5{word-spacing:8.846789px;}
.wsd3{word-spacing:8.906564px;}
.ws1b{word-spacing:8.966340px;}
.wsba{word-spacing:9.265218px;}
.wsac{word-spacing:9.384769px;}
.wsc4{word-spacing:9.444545px;}
.wsf7{word-spacing:9.564096px;}
.ws61{word-spacing:9.623872px;}
.ws68{word-spacing:9.683647px;}
.ws21{word-spacing:9.982525px;}
.ws105{word-spacing:10.137967px;}
.ws22{word-spacing:10.281403px;}
.wsa6{word-spacing:10.400954px;}
.ws2c{word-spacing:10.460730px;}
.ws8d{word-spacing:10.580281px;}
.ws76{word-spacing:10.611313px;}
.ws7f{word-spacing:10.640057px;}
.ws2e{word-spacing:10.699832px;}
.ws1c{word-spacing:10.759608px;}
.wsd1{word-spacing:10.879159px;}
.ws25{word-spacing:10.938935px;}
.ws97{word-spacing:11.058486px;}
.wsed{word-spacing:11.178037px;}
.ws8f{word-spacing:11.237813px;}
.ws100{word-spacing:11.333482px;}
.ws5d{word-spacing:11.596466px;}
.wsc1{word-spacing:11.716018px;}
.wsbc{word-spacing:11.775793px;}
.ws87{word-spacing:11.895344px;}
.ws3f{word-spacing:11.955120px;}
.ws19{word-spacing:12.014896px;}
.ws67{word-spacing:12.194222px;}
.ws7d{word-spacing:12.313774px;}
.ws9e{word-spacing:12.373549px;}
.wsb7{word-spacing:12.433325px;}
.ws6c{word-spacing:12.672427px;}
.ws45{word-spacing:12.732203px;}
.ws104{word-spacing:12.911562px;}
.ws103{word-spacing:12.959383px;}
.wsbf{word-spacing:12.971305px;}
.ws49{word-spacing:13.031081px;}
.ws71{word-spacing:13.207346px;}
.ws56{word-spacing:13.212538px;}
.ws6f{word-spacing:13.213346px;}
.wsc8{word-spacing:13.329959px;}
.wsaa{word-spacing:13.389734px;}
.wsdf{word-spacing:13.449510px;}
.ws5f{word-spacing:13.628837px;}
.wsa7{word-spacing:13.688612px;}
.wscd{word-spacing:14.047266px;}
.ws3b{word-spacing:14.107042px;}
.wse4{word-spacing:14.226593px;}
.ws24{word-spacing:14.286368px;}
.wsb6{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws1f{word-spacing:14.405920px;}
.wsb9{word-spacing:14.824349px;}
.ws43{word-spacing:14.884124px;}
.ws15{word-spacing:15.003676px;}
.ws9d{word-spacing:15.183002px;}
.ws6a{word-spacing:15.362329px;}
.ws44{word-spacing:15.481880px;}
.wsfa{word-spacing:15.541656px;}
.wsfb{word-spacing:15.601432px;}
.ws18{word-spacing:15.720983px;}
.wsf2{word-spacing:15.780758px;}
.ws1a{word-spacing:15.840534px;}
.wsea{word-spacing:16.019861px;}
.ws7e{word-spacing:16.438290px;}
.ws75{word-spacing:16.498066px;}
.wsd{word-spacing:16.516109px;}
.ws58{word-spacing:16.534855px;}
.ws55{word-spacing:16.538623px;}
.ws3d{word-spacing:16.557841px;}
.wseb{word-spacing:16.677392px;}
.ws86{word-spacing:16.976270px;}
.ws6e{word-spacing:16.983229px;}
.wse9{word-spacing:17.036046px;}
.wsbe{word-spacing:17.155597px;}
.ws92{word-spacing:17.215373px;}
.ws53{word-spacing:17.242855px;}
.ws62{word-spacing:17.454475px;}
.ws7c{word-spacing:17.574026px;}
.wsb3{word-spacing:17.633802px;}
.ws5c{word-spacing:17.693578px;}
.ws5{word-spacing:17.753472px;}
.ws12{word-spacing:17.932680px;}
.wsfc{word-spacing:17.932725px;}
.ws31{word-spacing:18.033277px;}
.ws30{word-spacing:18.052231px;}
.ws9{word-spacing:18.130061px;}
.wse7{word-spacing:18.231558px;}
.wscc{word-spacing:18.889090px;}
.wsb1{word-spacing:18.948865px;}
.ws72{word-spacing:19.185313px;}
.wsa{word-spacing:19.259827px;}
.ws63{word-spacing:19.307519px;}
.wsf9{word-spacing:19.367294px;}
.wsef{word-spacing:19.460663px;}
.wsee{word-spacing:19.473042px;}
.wsf0{word-spacing:19.486846px;}
.ws94{word-spacing:19.546621px;}
.ws70{word-spacing:19.556362px;}
.ws28{word-spacing:19.785724px;}
.ws93{word-spacing:19.905275px;}
.ws11{word-spacing:20.120602px;}
.wscb{word-spacing:20.204153px;}
.wsec{word-spacing:20.263928px;}
.ws10{word-spacing:20.389594px;}
.wse1{word-spacing:20.921460px;}
.ws6b{word-spacing:21.041011px;}
.ws6{word-spacing:21.250368px;}
.wsf4{word-spacing:21.339889px;}
.wsf3{word-spacing:21.349500px;}
.wsc{word-spacing:21.357965px;}
.wsde{word-spacing:21.399665px;}
.ws32{word-spacing:21.638767px;}
.ws66{word-spacing:22.415850px;}
.ws81{word-spacing:25.285079px;}
.ws80{word-spacing:25.701229px;}
.ws8{word-spacing:27.329587px;}
.wsb{word-spacing:27.490982px;}
.wse{word-spacing:27.544781px;}
.ws4{word-spacing:28.513152px;}
.ws51{word-spacing:29.828024px;}
.ws7a{word-spacing:29.832824px;}
.wsf{word-spacing:31.256870px;}
.ws57{word-spacing:31.979946px;}
.ws77{word-spacing:32.469313px;}
.ws7{word-spacing:32.709427px;}
.wsfd{word-spacing:42.655975px;}
.ws59{word-spacing:60.911336px;}
.ws73{word-spacing:84.021313px;}
.ws7b{word-spacing:239.531088px;}
._0{margin-left:-11.476944px;}
._6{margin-left:-6.933970px;}
._3{margin-left:-5.260272px;}
._2{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._8{margin-left:-1.022170px;}
._c{width:2.017031px;}
._5{width:3.079199px;}
._7{width:4.387143px;}
._4{width:5.481790px;}
._f{width:6.783775px;}
._9{width:15.547738px;}
._11{width:17.207188px;}
._a{width:19.421222px;}
._15{width:20.801914px;}
._14{width:22.654952px;}
._e{width:26.958796px;}
._d{width:29.887800px;}
._b{width:33.474420px;}
._16{width:35.327380px;}
._10{width:36.343565px;}
._17{width:54.611125px;}
._12{width:153.970908px;}
._13{width:338.918509px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y11b{bottom:97.906500px;}
.y38{bottom:111.678000px;}
.y95{bottom:111.679500px;}
.y5d{bottom:114.585000px;}
.y11a{bottom:115.839000px;}
.y164{bottom:116.454000px;}
.y37{bottom:129.612000px;}
.y163{bottom:129.904500px;}
.y119{bottom:133.771500px;}
.y5c{bottom:142.099500px;}
.y162{bottom:143.353500px;}
.y36{bottom:147.544500px;}
.y118{bottom:151.704000px;}
.y12d{bottom:153.546000px;}
.y161{bottom:156.804000px;}
.y35{bottom:165.477000px;}
.y5b{bottom:169.614000px;}
.y117{bottom:169.638000px;}
.y160{bottom:170.253000px;}
.yc4{bottom:170.265000px;}
.y34{bottom:183.409500px;}
.y15f{bottom:183.702000px;}
.y5a{bottom:187.546500px;}
.y116{bottom:187.570500px;}
.ye7{bottom:190.191000px;}
.y15e{bottom:197.152500px;}
.y94{bottom:201.202500px;}
.y33{bottom:201.936000px;}
.y59{bottom:205.479000px;}
.y115{bottom:205.503000px;}
.yc3{bottom:207.634500px;}
.y15d{bottom:210.601500px;}
.y93{bottom:219.135000px;}
.y32{bottom:219.868500px;}
.y58{bottom:223.411500px;}
.y114{bottom:223.435500px;}
.y15c{bottom:224.050500px;}
.y92{bottom:237.067500px;}
.y15b{bottom:237.501000px;}
.y31{bottom:237.801000px;}
.y57{bottom:241.344000px;}
.y113{bottom:241.368000px;}
.y15a{bottom:250.950000px;}
.y91{bottom:255.000000px;}
.y30{bottom:255.733500px;}
.y56{bottom:259.276500px;}
.y112{bottom:259.300500px;}
.y159{bottom:264.400500px;}
.y90{bottom:272.932500px;}
.y2f{bottom:273.666000px;}
.y55{bottom:277.210500px;}
.y111{bottom:277.234500px;}
.y158{bottom:277.849500px;}
.y8f{bottom:290.865000px;}
.y2e{bottom:291.600000px;}
.y54{bottom:295.143000px;}
.y110{bottom:295.167000px;}
.y157{bottom:299.320500px;}
.y2d{bottom:310.125000px;}
.y53{bottom:313.075500px;}
.y10f{bottom:313.099500px;}
.y8e{bottom:313.365000px;}
.y156{bottom:316.672500px;}
.yc2{bottom:327.961500px;}
.y2c{bottom:328.057500px;}
.y52{bottom:331.008000px;}
.y10e{bottom:331.032000px;}
.y155{bottom:334.605000px;}
.ye6{bottom:338.013000px;}
.y8d{bottom:339.792000px;}
.y8c{bottom:340.539000px;}
.yc1{bottom:345.894000px;}
.y2b{bottom:345.990000px;}
.y51{bottom:348.940500px;}
.y10d{bottom:348.964500px;}
.y154{bottom:352.537500px;}
.ye5{bottom:355.945500px;}
.y8b{bottom:358.473000px;}
.yc0{bottom:363.826500px;}
.y2a{bottom:363.924000px;}
.y50{bottom:366.873000px;}
.y10c{bottom:366.897000px;}
.y12c{bottom:369.462000px;}
.y153{bottom:370.471500px;}
.ye4{bottom:373.878000px;}
.y8a{bottom:376.405500px;}
.ybf{bottom:381.759000px;}
.y29{bottom:381.856500px;}
.y10b{bottom:384.831000px;}
.y152{bottom:388.404000px;}
.y4f{bottom:389.400000px;}
.ye3{bottom:391.810500px;}
.y89{bottom:394.338000px;}
.ybe{bottom:399.691500px;}
.y28{bottom:399.789000px;}
.y10a{bottom:402.763500px;}
.y151{bottom:406.336500px;}
.y4e{bottom:408.234000px;}
.ye2{bottom:409.744500px;}
.y88{bottom:412.270500px;}
.ybd{bottom:417.625500px;}
.y27{bottom:418.315500px;}
.y109{bottom:421.224000px;}
.y4d{bottom:426.166500px;}
.ye1{bottom:427.677000px;}
.y150{bottom:428.616000px;}
.y87{bottom:430.203000px;}
.ybc{bottom:435.558000px;}
.y26{bottom:436.248000px;}
.y108{bottom:439.156500px;}
.y4c{bottom:444.099000px;}
.ye0{bottom:445.609500px;}
.y14f{bottom:445.968000px;}
.y86{bottom:448.135500px;}
.ybb{bottom:453.490500px;}
.y25{bottom:454.180500px;}
.y107{bottom:457.089000px;}
.y4b{bottom:462.031500px;}
.ydf{bottom:463.542000px;}
.y14e{bottom:463.900500px;}
.y84{bottom:470.554500px;}
.yba{bottom:471.423000px;}
.y24{bottom:472.113000px;}
.y106{bottom:475.023000px;}
.y4a{bottom:479.964000px;}
.y85{bottom:480.057000px;}
.y83{bottom:480.804000px;}
.yde{bottom:481.732500px;}
.y14d{bottom:481.834500px;}
.yb9{bottom:489.355500px;}
.y23{bottom:490.045500px;}
.y105{bottom:492.955500px;}
.y49{bottom:497.898000px;}
.ydd{bottom:499.665000px;}
.y14c{bottom:499.767000px;}
.yb8{bottom:507.312000px;}
.y22{bottom:507.978000px;}
.y104{bottom:510.888000px;}
.y82{bottom:513.822000px;}
.y48{bottom:515.830500px;}
.y14b{bottom:517.339500px;}
.ydc{bottom:523.209000px;}
.yb7{bottom:525.244500px;}
.y21{bottom:525.912000px;}
.y103{bottom:528.820500px;}
.y81{bottom:531.754500px;}
.y47{bottom:533.763000px;}
.y14a{bottom:535.272000px;}
.yb6{bottom:543.177000px;}
.y20{bottom:543.844500px;}
.y12b{bottom:544.662000px;}
.y102{bottom:546.753000px;}
.y46{bottom:551.695500px;}
.y149{bottom:553.204500px;}
.y80{bottom:558.261000px;}
.y7f{bottom:559.008000px;}
.yb5{bottom:561.109500px;}
.y1f{bottom:561.777000px;}
.ydb{bottom:562.971000px;}
.y101{bottom:565.215000px;}
.y148{bottom:571.137000px;}
.y45{bottom:574.222500px;}
.yb4{bottom:579.066000px;}
.y1e{bottom:579.709500px;}
.y100{bottom:583.147500px;}
.y7e{bottom:586.401000px;}
.y147{bottom:589.069500px;}
.yb3{bottom:596.998500px;}
.y1d{bottom:597.642000px;}
.yff{bottom:601.080000px;}
.y7d{bottom:604.335000px;}
.y146{bottom:607.002000px;}
.y44{bottom:607.158000px;}
.yb2{bottom:614.931000px;}
.y1c{bottom:615.574500px;}
.yfe{bottom:619.012500px;}
.y7c{bottom:622.267500px;}
.y145{bottom:624.936000px;}
.yb1{bottom:632.863500px;}
.y1b{bottom:633.508500px;}
.yfd{bottom:636.945000px;}
.y7b{bottom:640.200000px;}
.y144{bottom:642.868500px;}
.yb0{bottom:650.818500px;}
.y1a{bottom:651.441000px;}
.yfc{bottom:654.877500px;}
.y143{bottom:660.801000px;}
.y7a{bottom:666.706500px;}
.y79{bottom:667.453500px;}
.yaf{bottom:668.752500px;}
.y19{bottom:669.373500px;}
.yfb{bottom:672.811500px;}
.y142{bottom:678.373500px;}
.yae{bottom:686.685000px;}
.y18{bottom:687.306000px;}
.yfa{bottom:690.744000px;}
.y78{bottom:694.846500px;}
.y141{bottom:696.306000px;}
.yad{bottom:704.617500px;}
.y17{bottom:705.238500px;}
.yf9{bottom:708.676500px;}
.y77{bottom:712.779000px;}
.yda{bottom:716.407500px;}
.y140{bottom:718.585500px;}
.yac{bottom:722.550000px;}
.y16{bottom:723.172500px;}
.yf8{bottom:726.609000px;}
.y76{bottom:730.572000px;}
.yd9{bottom:734.340000px;}
.y13f{bottom:735.937500px;}
.yab{bottom:740.505000px;}
.y15{bottom:741.105000px;}
.y12a{bottom:742.605000px;}
.y75{bottom:748.504500px;}
.yf7{bottom:751.098000px;}
.yd8{bottom:752.272500px;}
.y13e{bottom:753.870000px;}
.yaa{bottom:758.439000px;}
.y129{bottom:760.537500px;}
.y74{bottom:766.437000px;}
.y14{bottom:767.302500px;}
.yd7{bottom:770.205000px;}
.y13d{bottom:771.804000px;}
.ya9{bottom:776.371500px;}
.y128{bottom:778.470000px;}
.yf6{bottom:783.606000px;}
.y73{bottom:784.369500px;}
.yd6{bottom:788.139000px;}
.y13c{bottom:789.736500px;}
.y43{bottom:791.881500px;}
.ya8{bottom:794.304000px;}
.y13{bottom:796.113000px;}
.y127{bottom:796.402500px;}
.yf5{bottom:801.540000px;}
.y72{bottom:802.302000px;}
.yd5{bottom:806.071500px;}
.y13b{bottom:807.669000px;}
.y42{bottom:809.814000px;}
.y12{bottom:811.056000px;}
.ya7{bottom:812.236500px;}
.y126{bottom:814.336500px;}
.y71{bottom:820.236000px;}
.yd4{bottom:824.004000px;}
.y13a{bottom:825.601500px;}
.y11{bottom:826.000500px;}
.yf4{bottom:827.349000px;}
.y41{bottom:827.746500px;}
.ya6{bottom:830.193000px;}
.y125{bottom:832.269000px;}
.y70{bottom:838.168500px;}
.y10{bottom:840.943500px;}
.yd3{bottom:841.936500px;}
.y139{bottom:843.534000px;}
.y40{bottom:845.679000px;}
.ya5{bottom:848.125500px;}
.y124{bottom:850.201500px;}
.yf{bottom:855.888000px;}
.y6f{bottom:856.101000px;}
.yf3{bottom:859.857000px;}
.yd2{bottom:859.869000px;}
.y138{bottom:861.466500px;}
.y3f{bottom:863.611500px;}
.ya4{bottom:866.058000px;}
.ye{bottom:870.832500px;}
.y123{bottom:871.068000px;}
.y6e{bottom:873.892500px;}
.yf2{bottom:877.789500px;}
.yd1{bottom:877.801500px;}
.y137{bottom:879.400500px;}
.y3e{bottom:881.545500px;}
.ya3{bottom:883.990500px;}
.yd{bottom:885.775500px;}
.y122{bottom:889.002000px;}
.y6d{bottom:891.825000px;}
.yf1{bottom:895.723500px;}
.yd0{bottom:895.735500px;}
.y136{bottom:897.333000px;}
.yc{bottom:900.720000px;}
.ya2{bottom:901.923000px;}
.y3d{bottom:904.071000px;}
.y121{bottom:906.916500px;}
.y6c{bottom:909.757500px;}
.yf0{bottom:913.656000px;}
.ycf{bottom:913.668000px;}
.y135{bottom:915.265500px;}
.yb{bottom:915.664500px;}
.y3c{bottom:918.652500px;}
.ya1{bottom:919.855500px;}
.y120{bottom:924.850500px;}
.y6b{bottom:927.691500px;}
.ya{bottom:930.607500px;}
.yce{bottom:931.600500px;}
.yef{bottom:932.116500px;}
.y134{bottom:932.838000px;}
.y3b{bottom:936.585000px;}
.ya0{bottom:937.789500px;}
.y11f{bottom:942.783000px;}
.y9{bottom:945.552000px;}
.y6a{bottom:945.624000px;}
.ycd{bottom:949.533000px;}
.yee{bottom:950.049000px;}
.y133{bottom:950.770500px;}
.y3a{bottom:954.517500px;}
.y9f{bottom:955.722000px;}
.y8{bottom:960.496500px;}
.y11e{bottom:960.715500px;}
.y69{bottom:963.556500px;}
.ycc{bottom:967.465500px;}
.yed{bottom:967.981500px;}
.y132{bottom:968.703000px;}
.y39{bottom:972.450000px;}
.y9e{bottom:973.654500px;}
.y7{bottom:975.439500px;}
.y68{bottom:981.489000px;}
.y11d{bottom:983.338500px;}
.ycb{bottom:985.398000px;}
.yec{bottom:985.915500px;}
.y131{bottom:986.635500px;}
.y6{bottom:990.384000px;}
.y9d{bottom:996.373500px;}
.y67{bottom:999.421500px;}
.yca{bottom:1003.590000px;}
.yeb{bottom:1003.848000px;}
.y130{bottom:1004.208000px;}
.y66{bottom:1017.214500px;}
.yc9{bottom:1021.522500px;}
.yea{bottom:1021.780500px;}
.y12f{bottom:1022.140500px;}
.y11c{bottom:1022.971500px;}
.y9c{bottom:1024.588500px;}
.y65{bottom:1035.147000px;}
.yc8{bottom:1039.455000px;}
.ye9{bottom:1039.713000px;}
.y12e{bottom:1040.073000px;}
.y9b{bottom:1042.521000px;}
.y5{bottom:1043.985000px;}
.y64{bottom:1053.079500px;}
.yc7{bottom:1057.387500px;}
.ye8{bottom:1057.645500px;}
.y4{bottom:1062.478500px;}
.y9a{bottom:1065.297000px;}
.y63{bottom:1071.012000px;}
.yc6{bottom:1075.578000px;}
.y3{bottom:1080.972000px;}
.y62{bottom:1088.944500px;}
.y99{bottom:1093.510500px;}
.yc5{bottom:1093.512000px;}
.y2{bottom:1099.686000px;}
.y61{bottom:1106.877000px;}
.y98{bottom:1111.444500px;}
.y60{bottom:1124.811000px;}
.y97{bottom:1129.377000px;}
.y5f{bottom:1142.743500px;}
.y1{bottom:1146.760500px;}
.y96{bottom:1147.309500px;}
.y5e{bottom:1165.242000px;}
.h14{height:32.661470px;}
.h9{height:32.900573px;}
.h15{height:33.140573px;}
.h8{height:37.174694px;}
.h7{height:37.605082px;}
.ha{height:40.826735px;}
.h5{height:41.125613px;}
.h13{height:41.419613px;}
.h6{height:41.425613px;}
.hb{height:42.799330px;}
.hc{height:44.831700px;}
.h4{height:45.238339px;}
.h3{height:45.568339px;}
.he{height:47.819700px;}
.h12{height:49.479619px;}
.hd{height:55.758550px;}
.hf{height:55.764550px;}
.h10{height:83.239330px;}
.h11{height:96.762550px;}
.h2{height:98.701718px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:75.186000px;}
.xc{left:76.536000px;}
.x16{left:84.007500px;}
.xb{left:91.479000px;}
.x14{left:96.895500px;}
.x1b{left:131.364000px;}
.x1{left:137.124000px;}
.x1e{left:147.301500px;}
.x1f{left:150.946500px;}
.x18{left:153.864000px;}
.x22{left:158.389500px;}
.x23{left:172.537500px;}
.x24{left:179.197500px;}
.x19{left:189.219000px;}
.x2{left:201.493500px;}
.xd{left:205.080000px;}
.x8{left:222.069000px;}
.x5{left:233.515500px;}
.x4{left:240.726000px;}
.x1a{left:272.995500px;}
.x9{left:303.243000px;}
.x6{left:343.816500px;}
.x15{left:345.556500px;}
.x17{left:373.389000px;}
.xe{left:468.178500px;}
.x2a{left:481.464000px;}
.x10{left:483.123000px;}
.x2c{left:489.591000px;}
.x27{left:517.987500px;}
.x12{left:524.019000px;}
.x11{left:525.561000px;}
.x1c{left:536.679000px;}
.x1d{left:544.042500px;}
.x13{left:570.144000px;}
.xf{left:572.298000px;}
.x20{left:578.536500px;}
.x26{left:582.154500px;}
.x2e{left:584.091000px;}
.x25{left:593.899500px;}
.x2b{left:613.192500px;}
.xa{left:616.660500px;}
.x7{left:660.999000px;}
.x2d{left:668.320500px;}
.x31{left:673.842000px;}
.x2f{left:689.866500px;}
.x29{left:694.650000px;}
.x3{left:700.494000px;}
.x28{left:709.852500px;}
.x30{left:829.935000px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.656000pt;}
.v2{vertical-align:14.176000pt;}
.v5{vertical-align:19.285333pt;}
.v4{vertical-align:35.946667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000479pt;}
.ls18{letter-spacing:0.741348pt;}
.ls0{letter-spacing:2.635446pt;}
.lsa{letter-spacing:2.652911pt;}
.ls2{letter-spacing:2.654903pt;}
.ls16{letter-spacing:2.655207pt;}
.ls1a{letter-spacing:2.655711pt;}
.ls1{letter-spacing:2.656693pt;}
.lsd{letter-spacing:2.658245pt;}
.ls19{letter-spacing:2.950659pt;}
.ls6{letter-spacing:5.718992pt;}
.ls7{letter-spacing:5.792271pt;}
.lsc{letter-spacing:7.141812pt;}
.lsb{letter-spacing:7.144239pt;}
.ls3{letter-spacing:11.804745pt;}
.ls10{letter-spacing:14.757388pt;}
.ls8{letter-spacing:14.757812pt;}
.ls12{letter-spacing:14.761067pt;}
.ls5{letter-spacing:14.762721pt;}
.ls15{letter-spacing:14.763145pt;}
.ls9{letter-spacing:20.476326pt;}
.lse{letter-spacing:20.549605pt;}
.ls13{letter-spacing:22.785867pt;}
.lsf{letter-spacing:25.371145pt;}
.ls11{letter-spacing:26.854992pt;}
.ls14{letter-spacing:28.293605pt;}
.wsf8{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.ws41{word-spacing:-10.626800pt;}
.ws50{word-spacing:-0.956410pt;}
.wsdc{word-spacing:-0.850142pt;}
.wsda{word-spacing:-0.797008pt;}
.ws79{word-spacing:-0.743874pt;}
.wse8{word-spacing:-0.637606pt;}
.ws88{word-spacing:-0.584473pt;}
.wsbb{word-spacing:-0.425071pt;}
.wsc7{word-spacing:-0.318803pt;}
.ws8a{word-spacing:-0.159402pt;}
.wsae{word-spacing:-0.106268pt;}
.ws4d{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.wsd9{word-spacing:-0.037194pt;}
.ws90{word-spacing:-0.013917pt;}
.ws5a{word-spacing:0.000000pt;}
.ws40{word-spacing:0.030041pt;}
.ws91{word-spacing:0.030750pt;}
.ws39{word-spacing:0.042507pt;}
.wsd6{word-spacing:0.106268pt;}
.wsa4{word-spacing:0.212535pt;}
.ws101{word-spacing:0.255043pt;}
.wsc6{word-spacing:0.371937pt;}
.wsb4{word-spacing:0.478205pt;}
.ws5b{word-spacing:0.531339pt;}
.ws99{word-spacing:0.690740pt;}
.wsbd{word-spacing:0.743874pt;}
.ws4f{word-spacing:0.797008pt;}
.ws69{word-spacing:0.850142pt;}
.wsce{word-spacing:0.903276pt;}
.ws8b{word-spacing:1.115811pt;}
.wsf5{word-spacing:1.168945pt;}
.ws9c{word-spacing:1.275213pt;}
.ws9a{word-spacing:1.434614pt;}
.ws14{word-spacing:1.487748pt;}
.ws60{word-spacing:1.540882pt;}
.ws4b{word-spacing:1.594016pt;}
.wsa8{word-spacing:1.647150pt;}
.ws2a{word-spacing:1.746590pt;}
.ws2b{word-spacing:1.753418pt;}
.wsaf{word-spacing:1.859685pt;}
.wsfe{word-spacing:1.940704pt;}
.wsff{word-spacing:1.955331pt;}
.wsf6{word-spacing:1.965953pt;}
.ws54{word-spacing:2.072221pt;}
.ws52{word-spacing:2.125355pt;}
.wsf1{word-spacing:2.231622pt;}
.wsb2{word-spacing:2.284756pt;}
.wsa3{word-spacing:2.337890pt;}
.wsb5{word-spacing:2.444158pt;}
.ws1d{word-spacing:2.709827pt;}
.wse2{word-spacing:2.762961pt;}
.ws1e{word-spacing:2.816095pt;}
.ws3c{word-spacing:2.869229pt;}
.wsd0{word-spacing:2.975497pt;}
.ws38{word-spacing:3.081764pt;}
.ws96{word-spacing:3.134898pt;}
.ws36{word-spacing:3.188032pt;}
.ws20{word-spacing:3.294300pt;}
.ws4e{word-spacing:3.400567pt;}
.ws78{word-spacing:3.506835pt;}
.ws47{word-spacing:3.559969pt;}
.wse5{word-spacing:3.613103pt;}
.wsd7{word-spacing:3.666237pt;}
.ws35{word-spacing:3.719371pt;}
.wsc5{word-spacing:3.825638pt;}
.wsad{word-spacing:3.985040pt;}
.wsa5{word-spacing:4.038174pt;}
.wse0{word-spacing:4.091308pt;}
.wsb8{word-spacing:4.197575pt;}
.ws106{word-spacing:4.247080pt;}
.ws102{word-spacing:4.250228pt;}
.ws74{word-spacing:4.250709pt;}
.ws3e{word-spacing:4.250720pt;}
.ws5e{word-spacing:4.303843pt;}
.wsdd{word-spacing:4.569513pt;}
.ws33{word-spacing:4.728914pt;}
.wsb0{word-spacing:4.835182pt;}
.wsc9{word-spacing:4.888316pt;}
.ws46{word-spacing:4.941450pt;}
.ws34{word-spacing:5.047717pt;}
.wsc2{word-spacing:5.100851pt;}
.ws8e{word-spacing:5.153985pt;}
.wse6{word-spacing:5.207119pt;}
.ws64{word-spacing:5.260253pt;}
.wsca{word-spacing:5.270893pt;}
.ws2{word-spacing:5.313387pt;}
.ws82{word-spacing:5.313897pt;}
.wsc3{word-spacing:5.472788pt;}
.ws4c{word-spacing:5.525922pt;}
.ws26{word-spacing:5.579056pt;}
.wsa2{word-spacing:5.632190pt;}
.ws37{word-spacing:5.685324pt;}
.ws4a{word-spacing:5.738458pt;}
.wsd4{word-spacing:5.791591pt;}
.wsa0{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws16{word-spacing:5.950993pt;}
.ws29{word-spacing:6.004127pt;}
.wscf{word-spacing:6.057261pt;}
.wsa1{word-spacing:6.110395pt;}
.wsd8{word-spacing:6.163529pt;}
.wsc0{word-spacing:6.216662pt;}
.ws95{word-spacing:6.269796pt;}
.ws83{word-spacing:6.322930pt;}
.ws84{word-spacing:6.334610pt;}
.ws85{word-spacing:6.376064pt;}
.ws17{word-spacing:6.429198pt;}
.ws6d{word-spacing:6.482332pt;}
.wsa9{word-spacing:6.535466pt;}
.ws65{word-spacing:6.588599pt;}
.ws42{word-spacing:6.641733pt;}
.wsdb{word-spacing:6.748001pt;}
.ws9b{word-spacing:6.801135pt;}
.ws9f{word-spacing:6.907403pt;}
.ws23{word-spacing:6.960537pt;}
.ws27{word-spacing:7.013670pt;}
.wse3{word-spacing:7.066804pt;}
.ws3a{word-spacing:7.226206pt;}
.wsd2{word-spacing:7.279340pt;}
.ws89{word-spacing:7.332474pt;}
.ws8c{word-spacing:7.438741pt;}
.wsab{word-spacing:7.491875pt;}
.ws48{word-spacing:7.598143pt;}
.ws98{word-spacing:7.704411pt;}
.ws2f{word-spacing:7.757545pt;}
.ws2d{word-spacing:7.810678pt;}
.wsd5{word-spacing:7.863812pt;}
.wsd3{word-spacing:7.916946pt;}
.ws1b{word-spacing:7.970080pt;}
.wsba{word-spacing:8.235749pt;}
.wsac{word-spacing:8.342017pt;}
.wsc4{word-spacing:8.395151pt;}
.wsf7{word-spacing:8.501419pt;}
.ws61{word-spacing:8.554553pt;}
.ws68{word-spacing:8.607686pt;}
.ws21{word-spacing:8.873356pt;}
.ws105{word-spacing:9.011526pt;}
.ws22{word-spacing:9.139025pt;}
.wsa6{word-spacing:9.245293pt;}
.ws2c{word-spacing:9.298427pt;}
.ws8d{word-spacing:9.404694pt;}
.ws76{word-spacing:9.432278pt;}
.ws7f{word-spacing:9.457828pt;}
.ws2e{word-spacing:9.510962pt;}
.ws1c{word-spacing:9.564096pt;}
.wsd1{word-spacing:9.670364pt;}
.ws25{word-spacing:9.723498pt;}
.ws97{word-spacing:9.829765pt;}
.wsed{word-spacing:9.936033pt;}
.ws8f{word-spacing:9.989167pt;}
.ws100{word-spacing:10.074206pt;}
.ws5d{word-spacing:10.307970pt;}
.wsc1{word-spacing:10.414238pt;}
.wsbc{word-spacing:10.467372pt;}
.ws87{word-spacing:10.573639pt;}
.ws3f{word-spacing:10.626773pt;}
.ws19{word-spacing:10.679907pt;}
.ws67{word-spacing:10.839309pt;}
.ws7d{word-spacing:10.945577pt;}
.ws9e{word-spacing:10.998710pt;}
.wsb7{word-spacing:11.051844pt;}
.ws6c{word-spacing:11.264380pt;}
.ws45{word-spacing:11.317514pt;}
.ws104{word-spacing:11.476944pt;}
.ws103{word-spacing:11.519451pt;}
.wsbf{word-spacing:11.530049pt;}
.ws49{word-spacing:11.583183pt;}
.ws71{word-spacing:11.739863pt;}
.ws56{word-spacing:11.744479pt;}
.ws6f{word-spacing:11.745196pt;}
.wsc8{word-spacing:11.848852pt;}
.wsaa{word-spacing:11.901986pt;}
.wsdf{word-spacing:11.955120pt;}
.ws5f{word-spacing:12.114522pt;}
.wsa7{word-spacing:12.167655pt;}
.wscd{word-spacing:12.486459pt;}
.ws3b{word-spacing:12.539593pt;}
.wse4{word-spacing:12.645860pt;}
.ws24{word-spacing:12.698994pt;}
.wsb6{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws1f{word-spacing:12.805262pt;}
.wsb9{word-spacing:13.177199pt;}
.ws43{word-spacing:13.230333pt;}
.ws15{word-spacing:13.336601pt;}
.ws9d{word-spacing:13.496002pt;}
.ws6a{word-spacing:13.655404pt;}
.ws44{word-spacing:13.761671pt;}
.wsfa{word-spacing:13.814805pt;}
.wsfb{word-spacing:13.867939pt;}
.ws18{word-spacing:13.974207pt;}
.wsf2{word-spacing:14.027341pt;}
.ws1a{word-spacing:14.080475pt;}
.wsea{word-spacing:14.239876pt;}
.ws7e{word-spacing:14.611813pt;}
.ws75{word-spacing:14.664947pt;}
.wsd{word-spacing:14.680986pt;}
.ws58{word-spacing:14.697649pt;}
.ws55{word-spacing:14.700998pt;}
.ws3d{word-spacing:14.718081pt;}
.wseb{word-spacing:14.824349pt;}
.ws86{word-spacing:15.090018pt;}
.ws6e{word-spacing:15.096203pt;}
.wse9{word-spacing:15.143152pt;}
.wsbe{word-spacing:15.249420pt;}
.ws92{word-spacing:15.302554pt;}
.ws53{word-spacing:15.326982pt;}
.ws62{word-spacing:15.515089pt;}
.ws7c{word-spacing:15.621357pt;}
.wsb3{word-spacing:15.674491pt;}
.ws5c{word-spacing:15.727625pt;}
.ws5{word-spacing:15.780864pt;}
.ws12{word-spacing:15.940160pt;}
.wsfc{word-spacing:15.940200pt;}
.ws31{word-spacing:16.029580pt;}
.ws30{word-spacing:16.046428pt;}
.ws9{word-spacing:16.115610pt;}
.wse7{word-spacing:16.205829pt;}
.wscc{word-spacing:16.790302pt;}
.wsb1{word-spacing:16.843436pt;}
.ws72{word-spacing:17.053612pt;}
.wsa{word-spacing:17.119846pt;}
.ws63{word-spacing:17.162239pt;}
.wsf9{word-spacing:17.215373pt;}
.wsef{word-spacing:17.298367pt;}
.wsee{word-spacing:17.309371pt;}
.wsf0{word-spacing:17.321641pt;}
.ws94{word-spacing:17.374774pt;}
.ws70{word-spacing:17.383433pt;}
.ws28{word-spacing:17.587310pt;}
.ws93{word-spacing:17.693578pt;}
.ws11{word-spacing:17.884979pt;}
.wscb{word-spacing:17.959247pt;}
.wsec{word-spacing:18.012381pt;}
.ws10{word-spacing:18.124083pt;}
.wse1{word-spacing:18.596853pt;}
.ws6b{word-spacing:18.703121pt;}
.ws6{word-spacing:18.889216pt;}
.wsf4{word-spacing:18.968790pt;}
.wsf3{word-spacing:18.977333pt;}
.wsc{word-spacing:18.984858pt;}
.wsde{word-spacing:19.021924pt;}
.ws32{word-spacing:19.234460pt;}
.ws66{word-spacing:19.925200pt;}
.ws81{word-spacing:22.475626pt;}
.ws80{word-spacing:22.845537pt;}
.ws8{word-spacing:24.292966pt;}
.wsb{word-spacing:24.436429pt;}
.wse{word-spacing:24.484250pt;}
.ws4{word-spacing:25.345024pt;}
.ws51{word-spacing:26.513799pt;}
.ws7a{word-spacing:26.518066pt;}
.wsf{word-spacing:27.783885pt;}
.ws57{word-spacing:28.426619pt;}
.ws77{word-spacing:28.861612pt;}
.ws7{word-spacing:29.075046pt;}
.wsfd{word-spacing:37.916422pt;}
.ws59{word-spacing:54.143410pt;}
.ws73{word-spacing:74.685612pt;}
.ws7b{word-spacing:212.916523pt;}
._0{margin-left:-10.201728pt;}
._6{margin-left:-6.163529pt;}
._3{margin-left:-4.675797pt;}
._2{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._8{margin-left:-0.908595pt;}
._c{width:1.792917pt;}
._5{width:2.737066pt;}
._7{width:3.899683pt;}
._4{width:4.872702pt;}
._f{width:6.030022pt;}
._9{width:13.820211pt;}
._11{width:15.295278pt;}
._a{width:17.263309pt;}
._15{width:18.490590pt;}
._14{width:20.137735pt;}
._e{width:23.963374pt;}
._d{width:26.566933pt;}
._b{width:29.755040pt;}
._16{width:31.402115pt;}
._10{width:32.305391pt;}
._17{width:48.543222pt;}
._12{width:136.863029pt;}
._13{width:301.260897pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:87.028000pt;}
.y38{bottom:99.269333pt;}
.y95{bottom:99.270667pt;}
.y5d{bottom:101.853333pt;}
.y11a{bottom:102.968000pt;}
.y164{bottom:103.514667pt;}
.y37{bottom:115.210667pt;}
.y163{bottom:115.470667pt;}
.y119{bottom:118.908000pt;}
.y5c{bottom:126.310667pt;}
.y162{bottom:127.425333pt;}
.y36{bottom:131.150667pt;}
.y118{bottom:134.848000pt;}
.y12d{bottom:136.485333pt;}
.y161{bottom:139.381333pt;}
.y35{bottom:147.090667pt;}
.y5b{bottom:150.768000pt;}
.y117{bottom:150.789333pt;}
.y160{bottom:151.336000pt;}
.yc4{bottom:151.346667pt;}
.y34{bottom:163.030667pt;}
.y15f{bottom:163.290667pt;}
.y5a{bottom:166.708000pt;}
.y116{bottom:166.729333pt;}
.ye7{bottom:169.058667pt;}
.y15e{bottom:175.246667pt;}
.y94{bottom:178.846667pt;}
.y33{bottom:179.498667pt;}
.y59{bottom:182.648000pt;}
.y115{bottom:182.669333pt;}
.yc3{bottom:184.564000pt;}
.y15d{bottom:187.201333pt;}
.y93{bottom:194.786667pt;}
.y32{bottom:195.438667pt;}
.y58{bottom:198.588000pt;}
.y114{bottom:198.609333pt;}
.y15c{bottom:199.156000pt;}
.y92{bottom:210.726667pt;}
.y15b{bottom:211.112000pt;}
.y31{bottom:211.378667pt;}
.y57{bottom:214.528000pt;}
.y113{bottom:214.549333pt;}
.y15a{bottom:223.066667pt;}
.y91{bottom:226.666667pt;}
.y30{bottom:227.318667pt;}
.y56{bottom:230.468000pt;}
.y112{bottom:230.489333pt;}
.y159{bottom:235.022667pt;}
.y90{bottom:242.606667pt;}
.y2f{bottom:243.258667pt;}
.y55{bottom:246.409333pt;}
.y111{bottom:246.430667pt;}
.y158{bottom:246.977333pt;}
.y8f{bottom:258.546667pt;}
.y2e{bottom:259.200000pt;}
.y54{bottom:262.349333pt;}
.y110{bottom:262.370667pt;}
.y157{bottom:266.062667pt;}
.y2d{bottom:275.666667pt;}
.y53{bottom:278.289333pt;}
.y10f{bottom:278.310667pt;}
.y8e{bottom:278.546667pt;}
.y156{bottom:281.486667pt;}
.yc2{bottom:291.521333pt;}
.y2c{bottom:291.606667pt;}
.y52{bottom:294.229333pt;}
.y10e{bottom:294.250667pt;}
.y155{bottom:297.426667pt;}
.ye6{bottom:300.456000pt;}
.y8d{bottom:302.037333pt;}
.y8c{bottom:302.701333pt;}
.yc1{bottom:307.461333pt;}
.y2b{bottom:307.546667pt;}
.y51{bottom:310.169333pt;}
.y10d{bottom:310.190667pt;}
.y154{bottom:313.366667pt;}
.ye5{bottom:316.396000pt;}
.y8b{bottom:318.642667pt;}
.yc0{bottom:323.401333pt;}
.y2a{bottom:323.488000pt;}
.y50{bottom:326.109333pt;}
.y10c{bottom:326.130667pt;}
.y12c{bottom:328.410667pt;}
.y153{bottom:329.308000pt;}
.ye4{bottom:332.336000pt;}
.y8a{bottom:334.582667pt;}
.ybf{bottom:339.341333pt;}
.y29{bottom:339.428000pt;}
.y10b{bottom:342.072000pt;}
.y152{bottom:345.248000pt;}
.y4f{bottom:346.133333pt;}
.ye3{bottom:348.276000pt;}
.y89{bottom:350.522667pt;}
.ybe{bottom:355.281333pt;}
.y28{bottom:355.368000pt;}
.y10a{bottom:358.012000pt;}
.y151{bottom:361.188000pt;}
.y4e{bottom:362.874667pt;}
.ye2{bottom:364.217333pt;}
.y88{bottom:366.462667pt;}
.ybd{bottom:371.222667pt;}
.y27{bottom:371.836000pt;}
.y109{bottom:374.421333pt;}
.y4d{bottom:378.814667pt;}
.ye1{bottom:380.157333pt;}
.y150{bottom:380.992000pt;}
.y87{bottom:382.402667pt;}
.ybc{bottom:387.162667pt;}
.y26{bottom:387.776000pt;}
.y108{bottom:390.361333pt;}
.y4c{bottom:394.754667pt;}
.ye0{bottom:396.097333pt;}
.y14f{bottom:396.416000pt;}
.y86{bottom:398.342667pt;}
.ybb{bottom:403.102667pt;}
.y25{bottom:403.716000pt;}
.y107{bottom:406.301333pt;}
.y4b{bottom:410.694667pt;}
.ydf{bottom:412.037333pt;}
.y14e{bottom:412.356000pt;}
.y84{bottom:418.270667pt;}
.yba{bottom:419.042667pt;}
.y24{bottom:419.656000pt;}
.y106{bottom:422.242667pt;}
.y4a{bottom:426.634667pt;}
.y85{bottom:426.717333pt;}
.y83{bottom:427.381333pt;}
.yde{bottom:428.206667pt;}
.y14d{bottom:428.297333pt;}
.yb9{bottom:434.982667pt;}
.y23{bottom:435.596000pt;}
.y105{bottom:438.182667pt;}
.y49{bottom:442.576000pt;}
.ydd{bottom:444.146667pt;}
.y14c{bottom:444.237333pt;}
.yb8{bottom:450.944000pt;}
.y22{bottom:451.536000pt;}
.y104{bottom:454.122667pt;}
.y82{bottom:456.730667pt;}
.y48{bottom:458.516000pt;}
.y14b{bottom:459.857333pt;}
.ydc{bottom:465.074667pt;}
.yb7{bottom:466.884000pt;}
.y21{bottom:467.477333pt;}
.y103{bottom:470.062667pt;}
.y81{bottom:472.670667pt;}
.y47{bottom:474.456000pt;}
.y14a{bottom:475.797333pt;}
.yb6{bottom:482.824000pt;}
.y20{bottom:483.417333pt;}
.y12b{bottom:484.144000pt;}
.y102{bottom:486.002667pt;}
.y46{bottom:490.396000pt;}
.y149{bottom:491.737333pt;}
.y80{bottom:496.232000pt;}
.y7f{bottom:496.896000pt;}
.yb5{bottom:498.764000pt;}
.y1f{bottom:499.357333pt;}
.ydb{bottom:500.418667pt;}
.y101{bottom:502.413333pt;}
.y148{bottom:507.677333pt;}
.y45{bottom:510.420000pt;}
.yb4{bottom:514.725333pt;}
.y1e{bottom:515.297333pt;}
.y100{bottom:518.353333pt;}
.y7e{bottom:521.245333pt;}
.y147{bottom:523.617333pt;}
.yb3{bottom:530.665333pt;}
.y1d{bottom:531.237333pt;}
.yff{bottom:534.293333pt;}
.y7d{bottom:537.186667pt;}
.y146{bottom:539.557333pt;}
.y44{bottom:539.696000pt;}
.yb2{bottom:546.605333pt;}
.y1c{bottom:547.177333pt;}
.yfe{bottom:550.233333pt;}
.y7c{bottom:553.126667pt;}
.y145{bottom:555.498667pt;}
.yb1{bottom:562.545333pt;}
.y1b{bottom:563.118667pt;}
.yfd{bottom:566.173333pt;}
.y7b{bottom:569.066667pt;}
.y144{bottom:571.438667pt;}
.yb0{bottom:578.505333pt;}
.y1a{bottom:579.058667pt;}
.yfc{bottom:582.113333pt;}
.y143{bottom:587.378667pt;}
.y7a{bottom:592.628000pt;}
.y79{bottom:593.292000pt;}
.yaf{bottom:594.446667pt;}
.y19{bottom:594.998667pt;}
.yfb{bottom:598.054667pt;}
.y142{bottom:602.998667pt;}
.yae{bottom:610.386667pt;}
.y18{bottom:610.938667pt;}
.yfa{bottom:613.994667pt;}
.y78{bottom:617.641333pt;}
.y141{bottom:618.938667pt;}
.yad{bottom:626.326667pt;}
.y17{bottom:626.878667pt;}
.yf9{bottom:629.934667pt;}
.y77{bottom:633.581333pt;}
.yda{bottom:636.806667pt;}
.y140{bottom:638.742667pt;}
.yac{bottom:642.266667pt;}
.y16{bottom:642.820000pt;}
.yf8{bottom:645.874667pt;}
.y76{bottom:649.397333pt;}
.yd9{bottom:652.746667pt;}
.y13f{bottom:654.166667pt;}
.yab{bottom:658.226667pt;}
.y15{bottom:658.760000pt;}
.y12a{bottom:660.093333pt;}
.y75{bottom:665.337333pt;}
.yf7{bottom:667.642667pt;}
.yd8{bottom:668.686667pt;}
.y13e{bottom:670.106667pt;}
.yaa{bottom:674.168000pt;}
.y129{bottom:676.033333pt;}
.y74{bottom:681.277333pt;}
.y14{bottom:682.046667pt;}
.yd7{bottom:684.626667pt;}
.y13d{bottom:686.048000pt;}
.ya9{bottom:690.108000pt;}
.y128{bottom:691.973333pt;}
.yf6{bottom:696.538667pt;}
.y73{bottom:697.217333pt;}
.yd6{bottom:700.568000pt;}
.y13c{bottom:701.988000pt;}
.y43{bottom:703.894667pt;}
.ya8{bottom:706.048000pt;}
.y13{bottom:707.656000pt;}
.y127{bottom:707.913333pt;}
.yf5{bottom:712.480000pt;}
.y72{bottom:713.157333pt;}
.yd5{bottom:716.508000pt;}
.y13b{bottom:717.928000pt;}
.y42{bottom:719.834667pt;}
.y12{bottom:720.938667pt;}
.ya7{bottom:721.988000pt;}
.y126{bottom:723.854667pt;}
.y71{bottom:729.098667pt;}
.yd4{bottom:732.448000pt;}
.y13a{bottom:733.868000pt;}
.y11{bottom:734.222667pt;}
.yf4{bottom:735.421333pt;}
.y41{bottom:735.774667pt;}
.ya6{bottom:737.949333pt;}
.y125{bottom:739.794667pt;}
.y70{bottom:745.038667pt;}
.y10{bottom:747.505333pt;}
.yd3{bottom:748.388000pt;}
.y139{bottom:749.808000pt;}
.y40{bottom:751.714667pt;}
.ya5{bottom:753.889333pt;}
.y124{bottom:755.734667pt;}
.yf{bottom:760.789333pt;}
.y6f{bottom:760.978667pt;}
.yf3{bottom:764.317333pt;}
.yd2{bottom:764.328000pt;}
.y138{bottom:765.748000pt;}
.y3f{bottom:767.654667pt;}
.ya4{bottom:769.829333pt;}
.ye{bottom:774.073333pt;}
.y123{bottom:774.282667pt;}
.y6e{bottom:776.793333pt;}
.yf2{bottom:780.257333pt;}
.yd1{bottom:780.268000pt;}
.y137{bottom:781.689333pt;}
.y3e{bottom:783.596000pt;}
.ya3{bottom:785.769333pt;}
.yd{bottom:787.356000pt;}
.y122{bottom:790.224000pt;}
.y6d{bottom:792.733333pt;}
.yf1{bottom:796.198667pt;}
.yd0{bottom:796.209333pt;}
.y136{bottom:797.629333pt;}
.yc{bottom:800.640000pt;}
.ya2{bottom:801.709333pt;}
.y3d{bottom:803.618667pt;}
.y121{bottom:806.148000pt;}
.y6c{bottom:808.673333pt;}
.yf0{bottom:812.138667pt;}
.ycf{bottom:812.149333pt;}
.y135{bottom:813.569333pt;}
.yb{bottom:813.924000pt;}
.y3c{bottom:816.580000pt;}
.ya1{bottom:817.649333pt;}
.y120{bottom:822.089333pt;}
.y6b{bottom:824.614667pt;}
.ya{bottom:827.206667pt;}
.yce{bottom:828.089333pt;}
.yef{bottom:828.548000pt;}
.y134{bottom:829.189333pt;}
.y3b{bottom:832.520000pt;}
.ya0{bottom:833.590667pt;}
.y11f{bottom:838.029333pt;}
.y9{bottom:840.490667pt;}
.y6a{bottom:840.554667pt;}
.ycd{bottom:844.029333pt;}
.yee{bottom:844.488000pt;}
.y133{bottom:845.129333pt;}
.y3a{bottom:848.460000pt;}
.y9f{bottom:849.530667pt;}
.y8{bottom:853.774667pt;}
.y11e{bottom:853.969333pt;}
.y69{bottom:856.494667pt;}
.ycc{bottom:859.969333pt;}
.yed{bottom:860.428000pt;}
.y132{bottom:861.069333pt;}
.y39{bottom:864.400000pt;}
.y9e{bottom:865.470667pt;}
.y7{bottom:867.057333pt;}
.y68{bottom:872.434667pt;}
.y11d{bottom:874.078667pt;}
.ycb{bottom:875.909333pt;}
.yec{bottom:876.369333pt;}
.y131{bottom:877.009333pt;}
.y6{bottom:880.341333pt;}
.y9d{bottom:885.665333pt;}
.y67{bottom:888.374667pt;}
.yca{bottom:892.080000pt;}
.yeb{bottom:892.309333pt;}
.y130{bottom:892.629333pt;}
.y66{bottom:904.190667pt;}
.yc9{bottom:908.020000pt;}
.yea{bottom:908.249333pt;}
.y12f{bottom:908.569333pt;}
.y11c{bottom:909.308000pt;}
.y9c{bottom:910.745333pt;}
.y65{bottom:920.130667pt;}
.yc8{bottom:923.960000pt;}
.ye9{bottom:924.189333pt;}
.y12e{bottom:924.509333pt;}
.y9b{bottom:926.685333pt;}
.y5{bottom:927.986667pt;}
.y64{bottom:936.070667pt;}
.yc7{bottom:939.900000pt;}
.ye8{bottom:940.129333pt;}
.y4{bottom:944.425333pt;}
.y9a{bottom:946.930667pt;}
.y63{bottom:952.010667pt;}
.yc6{bottom:956.069333pt;}
.y3{bottom:960.864000pt;}
.y62{bottom:967.950667pt;}
.y99{bottom:972.009333pt;}
.yc5{bottom:972.010667pt;}
.y2{bottom:977.498667pt;}
.y61{bottom:983.890667pt;}
.y98{bottom:987.950667pt;}
.y60{bottom:999.832000pt;}
.y97{bottom:1003.890667pt;}
.y5f{bottom:1015.772000pt;}
.y1{bottom:1019.342667pt;}
.y96{bottom:1019.830667pt;}
.y5e{bottom:1035.770667pt;}
.h14{height:29.032418pt;}
.h9{height:29.244954pt;}
.h15{height:29.458287pt;}
.h8{height:33.044173pt;}
.h7{height:33.426739pt;}
.ha{height:36.290431pt;}
.h5{height:36.556100pt;}
.h13{height:36.817434pt;}
.h6{height:36.822767pt;}
.hb{height:38.043849pt;}
.hc{height:39.850400pt;}
.h4{height:40.211857pt;}
.h3{height:40.505190pt;}
.he{height:42.506400pt;}
.h12{height:43.981884pt;}
.hd{height:49.563155pt;}
.hf{height:49.568489pt;}
.h10{height:73.990515pt;}
.h11{height:86.011155pt;}
.h2{height:87.734861pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:66.832000pt;}
.xc{left:68.032000pt;}
.x16{left:74.673333pt;}
.xb{left:81.314667pt;}
.x14{left:86.129333pt;}
.x1b{left:116.768000pt;}
.x1{left:121.888000pt;}
.x1e{left:130.934667pt;}
.x1f{left:134.174667pt;}
.x18{left:136.768000pt;}
.x22{left:140.790667pt;}
.x23{left:153.366667pt;}
.x24{left:159.286667pt;}
.x19{left:168.194667pt;}
.x2{left:179.105333pt;}
.xd{left:182.293333pt;}
.x8{left:197.394667pt;}
.x5{left:207.569333pt;}
.x4{left:213.978667pt;}
.x1a{left:242.662667pt;}
.x9{left:269.549333pt;}
.x6{left:305.614667pt;}
.x15{left:307.161333pt;}
.x17{left:331.901333pt;}
.xe{left:416.158667pt;}
.x2a{left:427.968000pt;}
.x10{left:429.442667pt;}
.x2c{left:435.192000pt;}
.x27{left:460.433333pt;}
.x12{left:465.794667pt;}
.x11{left:467.165333pt;}
.x1c{left:477.048000pt;}
.x1d{left:483.593333pt;}
.x13{left:506.794667pt;}
.xf{left:508.709333pt;}
.x20{left:514.254667pt;}
.x26{left:517.470667pt;}
.x2e{left:519.192000pt;}
.x25{left:527.910667pt;}
.x2b{left:545.060000pt;}
.xa{left:548.142667pt;}
.x7{left:587.554667pt;}
.x2d{left:594.062667pt;}
.x31{left:598.970667pt;}
.x2f{left:613.214667pt;}
.x29{left:617.466667pt;}
.x3{left:622.661333pt;}
.x28{left:630.980000pt;}
.x30{left:737.720000pt;}
}




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