
    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_26707e82bba15f9b7a9a5986.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_c63e85d3d7fa040c795f5e56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_af0a2cc79050919caf46d386.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_03855e0abe52f69dd46b8bd5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_e07374b956e10331b15836b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6a3a9a118e324b719dd6af19.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2e{letter-spacing:-5.088600px;}
.ls2f{letter-spacing:-3.898800px;}
.ls12{letter-spacing:-2.318400px;}
.ls23{letter-spacing:-1.890000px;}
.ls34{letter-spacing:-1.860000px;}
.ls3c{letter-spacing:-1.500000px;}
.ls19{letter-spacing:-1.427534px;}
.ls1b{letter-spacing:-1.167982px;}
.ls16{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-1.062600px;}
.ls1a{letter-spacing:-0.719400px;}
.ls2a{letter-spacing:-0.162000px;}
.ls2c{letter-spacing:-0.156600px;}
.ls2b{letter-spacing:-0.151200px;}
.ls2d{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.094446px;}
.ls22{letter-spacing:-0.072600px;}
.ls20{letter-spacing:-0.046200px;}
.ls1e{letter-spacing:-0.032400px;}
.ls11{letter-spacing:-0.027000px;}
.ls21{letter-spacing:-0.026400px;}
.ls10{letter-spacing:-0.021600px;}
.ls3d{letter-spacing:-0.012000px;}
.ls7{letter-spacing:-0.010800px;}
.ls13{letter-spacing:-0.006600px;}
.ls1d{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003000px;}
.ls3{letter-spacing:0.005400px;}
.ls35{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.lsf{letter-spacing:0.010800px;}
.ls37{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.013200px;}
.lse{letter-spacing:0.016200px;}
.ls3b{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.019800px;}
.ls24{letter-spacing:0.026400px;}
.ls38{letter-spacing:0.030000px;}
.ls18{letter-spacing:0.033000px;}
.ls3a{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.037800px;}
.ls1f{letter-spacing:0.039600px;}
.ls5{letter-spacing:0.043200px;}
.ls17{letter-spacing:0.046200px;}
.lsa{letter-spacing:0.052800px;}
.ls6{letter-spacing:0.054000px;}
.ls32{letter-spacing:0.588000px;}
.ls31{letter-spacing:0.600000px;}
.ls27{letter-spacing:0.769560px;}
.ls33{letter-spacing:1.200000px;}
.ls26{letter-spacing:1.320000px;}
.ls3f{letter-spacing:2.112000px;}
.ls28{letter-spacing:2.541000px;}
.lsd{letter-spacing:2.856000px;}
.ls30{letter-spacing:3.834000px;}
.ls9{letter-spacing:5.332800px;}
.ls3e{letter-spacing:5.976000px;}
.ls39{letter-spacing:7.710000px;}
.ls1c{letter-spacing:9.079500px;}
.ls14{letter-spacing:10.117800px;}
.ls36{letter-spacing:11.052000px;}
.lsc{letter-spacing:13.500000px;}
.ls25{letter-spacing:14.850000px;}
.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;}
}
.wsae{word-spacing:-60.000000px;}
.ws1b{word-spacing:-54.000000px;}
.ws53{word-spacing:-17.820000px;}
.wsa{word-spacing:-16.500000px;}
.ws86{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws55{word-spacing:-13.338000px;}
.ws87{word-spacing:-13.140000px;}
.ws4a{word-spacing:-10.389060px;}
.ws3{word-spacing:-9.619500px;}
.ws21{word-spacing:-8.191966px;}
.ws17{word-spacing:-8.181600px;}
.ws4{word-spacing:-7.870500px;}
.ws54{word-spacing:-7.776054px;}
.ws22{word-spacing:-6.702518px;}
.ws2c{word-spacing:-5.713200px;}
.ws76{word-spacing:-5.088600px;}
.ws70{word-spacing:-4.870800px;}
.wsbf{word-spacing:-4.860000px;}
.ws6e{word-spacing:-4.654800px;}
.ws6f{word-spacing:-4.644000px;}
.wsa0{word-spacing:-4.638000px;}
.ws62{word-spacing:-4.271400px;}
.ws58{word-spacing:-4.104000px;}
.ws65{word-spacing:-3.877200px;}
.ws9e{word-spacing:-3.858000px;}
.ws15{word-spacing:-3.758400px;}
.ws14{word-spacing:-3.753000px;}
.wsac{word-spacing:-3.186000px;}
.ws6d{word-spacing:-3.121200px;}
.ws16{word-spacing:-3.051000px;}
.wsb2{word-spacing:-3.048000px;}
.ws60{word-spacing:-2.845800px;}
.ws46{word-spacing:-2.737800px;}
.ws2e{word-spacing:-2.640600px;}
.wsa2{word-spacing:-2.514000px;}
.ws5f{word-spacing:-2.181600px;}
.ws9{word-spacing:-2.165400px;}
.ws59{word-spacing:-2.003400px;}
.ws71{word-spacing:-1.814400px;}
.ws48{word-spacing:-1.522800px;}
.ws6{word-spacing:-1.420200px;}
.ws74{word-spacing:-1.409400px;}
.ws75{word-spacing:-1.404000px;}
.ws2f{word-spacing:-1.188000px;}
.ws5d{word-spacing:-1.047600px;}
.ws45{word-spacing:-0.837000px;}
.ws3a{word-spacing:-0.799200px;}
.wsb8{word-spacing:-0.672000px;}
.ws3b{word-spacing:-0.415800px;}
.wsc5{word-spacing:-0.354000px;}
.ws79{word-spacing:-0.340200px;}
.ws6b{word-spacing:-0.280800px;}
.ws32{word-spacing:-0.124200px;}
.wsb{word-spacing:-0.066000px;}
.wsad{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws49{word-spacing:0.064800px;}
.wsbb{word-spacing:0.270000px;}
.ws91{word-spacing:0.306000px;}
.ws42{word-spacing:0.382800px;}
.ws43{word-spacing:0.496800px;}
.ws57{word-spacing:0.610200px;}
.wsab{word-spacing:0.618000px;}
.ws11{word-spacing:0.783000px;}
.wsba{word-spacing:0.846000px;}
.wsc9{word-spacing:0.852000px;}
.ws4e{word-spacing:0.880200px;}
.ws5c{word-spacing:0.945000px;}
.ws5b{word-spacing:0.955800px;}
.ws9a{word-spacing:1.236000px;}
.ws9c{word-spacing:1.278000px;}
.ws99{word-spacing:1.368000px;}
.ws13{word-spacing:1.544400px;}
.ws1d{word-spacing:1.690200px;}
.ws7{word-spacing:1.760400px;}
.ws36{word-spacing:1.900800px;}
.ws95{word-spacing:1.968000px;}
.ws23{word-spacing:1.980000px;}
.wsa8{word-spacing:1.992000px;}
.ws37{word-spacing:2.165400px;}
.ws61{word-spacing:2.241000px;}
.ws33{word-spacing:2.262600px;}
.ws38{word-spacing:2.473200px;}
.ws8a{word-spacing:2.508000px;}
.ws10{word-spacing:2.570400px;}
.ws12{word-spacing:2.619000px;}
.ws63{word-spacing:2.705400px;}
.ws2b{word-spacing:2.743200px;}
.ws9f{word-spacing:2.778000px;}
.ws5a{word-spacing:2.781000px;}
.ws4d{word-spacing:2.829600px;}
.wsb9{word-spacing:2.874000px;}
.ws34{word-spacing:3.364200px;}
.ws3c{word-spacing:3.807000px;}
.wsb1{word-spacing:3.810000px;}
.wscb{word-spacing:3.822000px;}
.ws8e{word-spacing:3.834000px;}
.wsc3{word-spacing:3.966000px;}
.ws1e{word-spacing:4.023000px;}
.ws1f{word-spacing:4.152600px;}
.ws6a{word-spacing:4.357800px;}
.ws7b{word-spacing:4.363200px;}
.ws52{word-spacing:4.444200px;}
.ws50{word-spacing:4.525200px;}
.ws18{word-spacing:4.560600px;}
.ws5e{word-spacing:4.676400px;}
.ws3e{word-spacing:4.725000px;}
.ws4f{word-spacing:4.779000px;}
.ws28{word-spacing:4.800600px;}
.ws82{word-spacing:4.811400px;}
.ws81{word-spacing:4.816800px;}
.ws64{word-spacing:5.124600px;}
.ws73{word-spacing:5.135400px;}
.wsd{word-spacing:5.332800px;}
.ws7e{word-spacing:5.545800px;}
.ws7f{word-spacing:5.551200px;}
.ws9d{word-spacing:5.598000px;}
.ws77{word-spacing:5.605200px;}
.ws2d{word-spacing:5.664600px;}
.ws3d{word-spacing:5.697000px;}
.ws72{word-spacing:5.713200px;}
.ws8{word-spacing:5.761800px;}
.ws6c{word-spacing:5.891400px;}
.ws90{word-spacing:6.114000px;}
.ws56{word-spacing:6.420600px;}
.wsca{word-spacing:6.594000px;}
.ws24{word-spacing:6.626400px;}
.ws20{word-spacing:7.133400px;}
.ws85{word-spacing:7.203600px;}
.ws31{word-spacing:7.236000px;}
.ws2{word-spacing:7.286400px;}
.ws27{word-spacing:7.457400px;}
.ws25{word-spacing:7.477800px;}
.ws8f{word-spacing:7.506000px;}
.wsb5{word-spacing:7.572000px;}
.wsb4{word-spacing:7.578000px;}
.ws19{word-spacing:7.583400px;}
.wsb0{word-spacing:7.710000px;}
.ws8d{word-spacing:7.728000px;}
.ws39{word-spacing:7.959600px;}
.wsc6{word-spacing:8.172000px;}
.ws44{word-spacing:8.267400px;}
.ws98{word-spacing:8.286000px;}
.ws40{word-spacing:8.332200px;}
.ws41{word-spacing:8.337600px;}
.wsaa{word-spacing:8.874000px;}
.ws1c{word-spacing:8.969400px;}
.wsa7{word-spacing:9.156000px;}
.ws4c{word-spacing:9.438000px;}
.ws1a{word-spacing:9.471000px;}
.ws7c{word-spacing:9.477000px;}
.ws88{word-spacing:9.558000px;}
.ws89{word-spacing:9.564000px;}
.ws83{word-spacing:9.930600px;}
.ws66{word-spacing:9.990000px;}
.wsc4{word-spacing:10.266000px;}
.ws5{word-spacing:10.422000px;}
.wsc1{word-spacing:10.674000px;}
.wsc8{word-spacing:10.872000px;}
.ws84{word-spacing:10.908000px;}
.ws9b{word-spacing:11.046000px;}
.wsa1{word-spacing:11.052000px;}
.wse{word-spacing:11.299200px;}
.wsaf{word-spacing:11.388000px;}
.ws7a{word-spacing:11.421000px;}
.ws78{word-spacing:12.047400px;}
.wsbc{word-spacing:12.396000px;}
.wsb6{word-spacing:12.624000px;}
.ws51{word-spacing:12.933000px;}
.ws3f{word-spacing:13.111200px;}
.wsa3{word-spacing:13.218000px;}
.ws67{word-spacing:13.728000px;}
.wsc2{word-spacing:13.746000px;}
.ws80{word-spacing:13.969800px;}
.ws8b{word-spacing:14.292000px;}
.ws47{word-spacing:14.396400px;}
.ws35{word-spacing:14.407200px;}
.wsb3{word-spacing:14.676000px;}
.wsa9{word-spacing:14.778000px;}
.ws4b{word-spacing:14.850000px;}
.ws96{word-spacing:15.504000px;}
.wsa6{word-spacing:15.846000px;}
.wsc0{word-spacing:16.494000px;}
.wsbd{word-spacing:17.028000px;}
.ws94{word-spacing:17.094000px;}
.wsa4{word-spacing:17.364000px;}
.wsc7{word-spacing:17.514000px;}
.ws69{word-spacing:18.041400px;}
.ws30{word-spacing:18.073800px;}
.ws26{word-spacing:19.985400px;}
.ws97{word-spacing:20.556000px;}
.wsa5{word-spacing:20.616000px;}
.wsb7{word-spacing:21.042000px;}
.ws2a{word-spacing:21.891600px;}
.ws7d{word-spacing:23.398200px;}
.ws68{word-spacing:23.542200px;}
.ws92{word-spacing:24.876000px;}
.wsbe{word-spacing:25.734000px;}
.ws93{word-spacing:26.040000px;}
.ws8c{word-spacing:28.926000px;}
.wsf{word-spacing:30.676800px;}
.ws29{word-spacing:33.312600px;}
._16{margin-left:-30.519000px;}
._27{margin-left:-22.019400px;}
._26{margin-left:-20.571000px;}
._c{margin-left:-19.438800px;}
._5{margin-left:-18.384000px;}
._0{margin-left:-16.704000px;}
._15{margin-left:-14.797200px;}
._18{margin-left:-13.537800px;}
._1c{margin-left:-10.203600px;}
._23{margin-left:-8.688600px;}
._1d{margin-left:-7.253400px;}
._9{margin-left:-6.006000px;}
._8{margin-left:-4.798200px;}
._d{margin-left:-3.174600px;}
._4{margin-left:-1.593600px;}
._1{width:1.686000px;}
._3{width:2.776800px;}
._a{width:4.039200px;}
._f{width:5.573400px;}
._b{width:6.745200px;}
._7{width:7.827600px;}
._6{width:9.332400px;}
._e{width:11.193600px;}
._19{width:12.546600px;}
._13{width:13.800600px;}
._14{width:15.206400px;}
._1f{width:16.615800px;}
._10{width:17.635200px;}
._1e{width:19.013400px;}
._22{width:20.919600px;}
._24{width:22.369800px;}
._12{width:24.571800px;}
._1a{width:25.878600px;}
._1b{width:27.027000px;}
._11{width:28.663800px;}
._2{width:30.379800px;}
._17{width:31.448400px;}
._20{width:32.798564px;}
._21{width:34.199400px;}
._25{width:47.770800px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs5{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y192{bottom:83.027100px;}
.y89{bottom:83.553600px;}
.y98{bottom:83.553750px;}
.y138{bottom:84.387600px;}
.y48{bottom:85.053600px;}
.y1b{bottom:85.418100px;}
.y165{bottom:86.027100px;}
.yde{bottom:86.553600px;}
.yca{bottom:86.553750px;}
.y82{bottom:88.049100px;}
.y59{bottom:89.549100px;}
.y9f{bottom:99.753600px;}
.y97{bottom:99.753750px;}
.y191{bottom:101.027100px;}
.y47{bottom:101.253600px;}
.y137{bottom:102.387600px;}
.yc9{bottom:102.753750px;}
.y164{bottom:104.027100px;}
.y88{bottom:104.249100px;}
.yea{bottom:105.749100px;}
.ydd{bottom:107.249100px;}
.y11b{bottom:109.757100px;}
.y1a{bottom:113.619600px;}
.y58{bottom:114.252750px;}
.y96{bottom:115.953750px;}
.y46{bottom:117.453600px;}
.yc8{bottom:118.953750px;}
.y190{bottom:119.027100px;}
.y136{bottom:120.387600px;}
.y9e{bottom:120.449100px;}
.y163{bottom:122.027100px;}
.y87{bottom:124.457100px;}
.y115{bottom:125.957100px;}
.ydc{bottom:127.457250px;}
.y81{bottom:127.587600px;}
.ye9{bottom:130.452600px;}
.y19{bottom:133.419600px;}
.y45{bottom:133.653600px;}
.yc7{bottom:135.153750px;}
.y57{bottom:136.262100px;}
.y95{bottom:136.649100px;}
.y18f{bottom:137.027100px;}
.y135{bottom:138.387600px;}
.y162{bottom:140.027100px;}
.y86{bottom:140.657100px;}
.y114{bottom:142.157100px;}
.ydb{bottom:143.657250px;}
.y80{bottom:147.387600px;}
.y44{bottom:149.853600px;}
.ye8{bottom:150.662100px;}
.yc6{bottom:151.353750px;}
.y56{bottom:152.462100px;}
.y18{bottom:153.219600px;}
.y18e{bottom:155.027100px;}
.y134{bottom:156.387600px;}
.y85{bottom:156.857100px;}
.y161{bottom:158.027100px;}
.y113{bottom:158.357100px;}
.yda{bottom:164.352750px;}
.y43{bottom:166.053600px;}
.ye7{bottom:166.862100px;}
.y7f{bottom:167.187600px;}
.yc5{bottom:167.553750px;}
.y55{bottom:168.662100px;}
.y17{bottom:173.019600px;}
.y18d{bottom:173.027100px;}
.y94{bottom:173.057100px;}
.y133{bottom:174.387600px;}
.y112{bottom:174.557100px;}
.y160{bottom:176.027100px;}
.y84{bottom:177.552600px;}
.y42{bottom:182.253600px;}
.ye6{bottom:183.062100px;}
.yc4{bottom:183.753750px;}
.yd9{bottom:184.562100px;}
.y54{bottom:184.862100px;}
.y7e{bottom:186.987600px;}
.y93{bottom:189.257100px;}
.y111{bottom:190.757100px;}
.y18c{bottom:191.027100px;}
.y132{bottom:192.387600px;}
.y16{bottom:192.819600px;}
.y15f{bottom:194.027100px;}
.y41{bottom:198.453600px;}
.ye5{bottom:199.260750px;}
.yc3{bottom:199.953750px;}
.yd8{bottom:200.762100px;}
.y53{bottom:201.062100px;}
.y83{bottom:202.257600px;}
.y92{bottom:205.457100px;}
.y7d{bottom:206.787600px;}
.y110{bottom:206.957100px;}
.y18b{bottom:209.027100px;}
.y131{bottom:210.387600px;}
.y15e{bottom:212.027100px;}
.y15{bottom:212.619600px;}
.y40{bottom:214.653600px;}
.ye4{bottom:215.460750px;}
.yd7{bottom:216.962100px;}
.y52{bottom:217.262100px;}
.yc2{bottom:220.649100px;}
.y10f{bottom:223.157100px;}
.y91{bottom:226.152600px;}
.y7c{bottom:226.587600px;}
.y18a{bottom:227.027100px;}
.y11a{bottom:227.652600px;}
.y130{bottom:228.387600px;}
.y15d{bottom:230.027100px;}
.y3f{bottom:230.853600px;}
.ye3{bottom:231.662100px;}
.y14{bottom:232.419600px;}
.yd6{bottom:233.162100px;}
.y51{bottom:233.462100px;}
.y104{bottom:235.349100px;}
.yc1{bottom:240.857100px;}
.y1af{bottom:241.727250px;}
.y10e{bottom:243.852600px;}
.y189{bottom:245.027100px;}
.y90{bottom:246.362100px;}
.y7b{bottom:246.387600px;}
.y3e{bottom:247.053600px;}
.y119{bottom:247.862100px;}
.y15c{bottom:248.027100px;}
.yd5{bottom:249.362100px;}
.y50{bottom:249.662100px;}
.y13{bottom:252.219600px;}
.ye2{bottom:252.357600px;}
.y103{bottom:255.557100px;}
.yc0{bottom:261.552600px;}
.y8f{bottom:262.562100px;}
.y188{bottom:263.027100px;}
.y3d{bottom:263.253600px;}
.y10d{bottom:264.062100px;}
.y12f{bottom:264.387600px;}
.y4f{bottom:265.862100px;}
.y15b{bottom:266.027100px;}
.y7a{bottom:266.187600px;}
.yd4{bottom:270.057600px;}
.y102{bottom:271.757100px;}
.y12{bottom:272.019600px;}
.ye1{bottom:272.565750px;}
.y9d{bottom:278.762100px;}
.y3c{bottom:279.453600px;}
.y1ae{bottom:279.527250px;}
.y10c{bottom:280.262100px;}
.y187{bottom:281.027100px;}
.ybf{bottom:281.762100px;}
.y4e{bottom:282.062100px;}
.y12e{bottom:282.387600px;}
.y8e{bottom:283.257600px;}
.y15a{bottom:284.027100px;}
.y118{bottom:284.757600px;}
.y79{bottom:285.987600px;}
.y101{bottom:287.957100px;}
.yd3{bottom:290.265600px;}
.y11{bottom:291.819600px;}
.y9c{bottom:294.962100px;}
.y3b{bottom:295.653600px;}
.y1ad{bottom:297.527250px;}
.ybe{bottom:297.962100px;}
.y186{bottom:299.027100px;}
.y12d{bottom:300.387600px;}
.y10b{bottom:300.957600px;}
.y159{bottom:302.027100px;}
.y4d{bottom:302.757600px;}
.y8d{bottom:303.465600px;}
.y100{bottom:304.157100px;}
.y117{bottom:304.965600px;}
.y78{bottom:305.787600px;}
.ye0{bottom:307.287600px;}
.y10{bottom:311.619600px;}
.y3a{bottom:311.853600px;}
.ybd{bottom:314.162100px;}
.y1ac{bottom:315.527250px;}
.y9b{bottom:315.657600px;}
.y185{bottom:317.027100px;}
.y12c{bottom:318.387600px;}
.y8c{bottom:319.665600px;}
.y158{bottom:320.027100px;}
.y10a{bottom:321.165600px;}
.yff{bottom:324.852750px;}
.y77{bottom:325.587600px;}
.ydf{bottom:327.087600px;}
.y39{bottom:328.053600px;}
.yd2{bottom:328.587600px;}
.yf{bottom:331.419600px;}
.y1ab{bottom:333.527250px;}
.ybc{bottom:334.857600px;}
.y184{bottom:335.027100px;}
.y8b{bottom:335.865600px;}
.y12b{bottom:336.387600px;}
.y109{bottom:337.365600px;}
.y157{bottom:338.027100px;}
.y38{bottom:344.253600px;}
.yfe{bottom:345.062100px;}
.y76{bottom:345.387600px;}
.y4c{bottom:346.887600px;}
.yd1{bottom:348.387600px;}
.ye{bottom:351.219600px;}
.y1aa{bottom:351.527250px;}
.y9a{bottom:352.065600px;}
.y183{bottom:353.027100px;}
.y108{bottom:353.565600px;}
.y12a{bottom:354.387600px;}
.ybb{bottom:355.065600px;}
.y156{bottom:356.027100px;}
.y8a{bottom:356.561100px;}
.y37{bottom:360.453600px;}
.yfd{bottom:361.262100px;}
.y75{bottom:365.187600px;}
.y4b{bottom:366.687600px;}
.yd0{bottom:368.187600px;}
.y1a9{bottom:369.527250px;}
.y107{bottom:369.765600px;}
.yd{bottom:371.019600px;}
.y182{bottom:371.027100px;}
.yba{bottom:371.265600px;}
.y129{bottom:372.387600px;}
.y99{bottom:372.761100px;}
.y155{bottom:374.027100px;}
.y116{bottom:374.261100px;}
.yfc{bottom:377.462100px;}
.y36{bottom:381.149100px;}
.y74{bottom:384.987600px;}
.y106{bottom:385.965600px;}
.y4a{bottom:386.487600px;}
.yb9{bottom:387.465600px;}
.y1a8{bottom:387.527250px;}
.ycf{bottom:387.987600px;}
.y181{bottom:389.027100px;}
.y128{bottom:390.387600px;}
.yc{bottom:390.819600px;}
.y154{bottom:392.027100px;}
.yfb{bottom:393.662100px;}
.yb8{bottom:403.665600px;}
.y73{bottom:404.787600px;}
.y1a7{bottom:405.527250px;}
.y35{bottom:406.287600px;}
.y105{bottom:406.661100px;}
.y180{bottom:407.027100px;}
.yce{bottom:407.787600px;}
.y127{bottom:408.387600px;}
.yfa{bottom:409.862100px;}
.y153{bottom:410.027100px;}
.yb{bottom:410.619600px;}
.yb7{bottom:419.865600px;}
.y1a6{bottom:423.527250px;}
.y72{bottom:424.587600px;}
.y17f{bottom:425.027100px;}
.yf9{bottom:426.062100px;}
.y34{bottom:426.087600px;}
.y126{bottom:426.387600px;}
.ycd{bottom:427.587600px;}
.y152{bottom:428.027100px;}
.ya{bottom:430.419600px;}
.yb6{bottom:436.065600px;}
.y1a5{bottom:441.527250px;}
.yf8{bottom:442.262100px;}
.y17e{bottom:443.027100px;}
.y71{bottom:444.387600px;}
.y33{bottom:445.887600px;}
.y151{bottom:446.027100px;}
.ycc{bottom:447.387600px;}
.y9{bottom:450.219600px;}
.yb5{bottom:456.761100px;}
.yf7{bottom:458.462100px;}
.y17d{bottom:461.027100px;}
.y125{bottom:462.387600px;}
.y150{bottom:464.027100px;}
.y70{bottom:464.187600px;}
.y32{bottom:465.687600px;}
.ycb{bottom:467.187600px;}
.y8{bottom:470.019600px;}
.yf6{bottom:474.662100px;}
.y17c{bottom:479.027100px;}
.y124{bottom:480.387600px;}
.y14f{bottom:482.027100px;}
.y6f{bottom:483.987600px;}
.y31{bottom:485.487600px;}
.yb4{bottom:486.987600px;}
.y7{bottom:489.819600px;}
.yf5{bottom:490.862100px;}
.y17b{bottom:497.027100px;}
.y123{bottom:498.387600px;}
.y14e{bottom:500.027100px;}
.y6e{bottom:503.787600px;}
.y30{bottom:505.287600px;}
.yb3{bottom:506.787600px;}
.yf4{bottom:507.062100px;}
.y6{bottom:509.619600px;}
.y17a{bottom:515.027100px;}
.y122{bottom:516.387600px;}
.y14d{bottom:518.027100px;}
.yf3{bottom:523.262100px;}
.y6d{bottom:523.587600px;}
.y2f{bottom:525.087600px;}
.yb2{bottom:526.587600px;}
.y5{bottom:529.419600px;}
.y179{bottom:533.027100px;}
.y121{bottom:534.387600px;}
.y14c{bottom:536.027100px;}
.y6c{bottom:543.387600px;}
.yf2{bottom:543.957600px;}
.y2e{bottom:544.887600px;}
.yb1{bottom:546.387600px;}
.y4{bottom:549.219600px;}
.y178{bottom:551.027100px;}
.y120{bottom:552.387600px;}
.y14b{bottom:554.027100px;}
.y1a4{bottom:558.527250px;}
.y6b{bottom:563.187600px;}
.yf1{bottom:564.165600px;}
.y2d{bottom:564.687600px;}
.yb0{bottom:566.187600px;}
.y177{bottom:569.027100px;}
.y11f{bottom:570.387600px;}
.y14a{bottom:572.027100px;}
.y1a3{bottom:576.527250px;}
.yf0{bottom:580.365600px;}
.y6a{bottom:582.987600px;}
.y2c{bottom:584.487600px;}
.yaf{bottom:585.987600px;}
.y176{bottom:587.027100px;}
.y11e{bottom:588.387600px;}
.y149{bottom:590.027100px;}
.y1a2{bottom:594.527250px;}
.yef{bottom:596.565600px;}
.y69{bottom:602.787600px;}
.y2b{bottom:604.287600px;}
.y175{bottom:605.027100px;}
.yae{bottom:605.787600px;}
.y11d{bottom:606.387600px;}
.y148{bottom:608.027100px;}
.y1a1{bottom:612.527250px;}
.yee{bottom:612.765600px;}
.y68{bottom:622.587600px;}
.y174{bottom:623.027100px;}
.y2a{bottom:624.087600px;}
.y11c{bottom:624.387600px;}
.yad{bottom:625.587600px;}
.y147{bottom:626.027100px;}
.yed{bottom:628.965600px;}
.y1a0{bottom:630.527250px;}
.y173{bottom:641.027100px;}
.y67{bottom:642.387600px;}
.y29{bottom:643.887600px;}
.y146{bottom:644.027100px;}
.yec{bottom:645.165600px;}
.yac{bottom:645.387600px;}
.y1bc{bottom:646.968600px;}
.y19f{bottom:648.527250px;}
.y172{bottom:659.027100px;}
.y145{bottom:662.027100px;}
.y66{bottom:662.187600px;}
.y28{bottom:663.687600px;}
.yab{bottom:665.187600px;}
.yeb{bottom:665.861100px;}
.y19e{bottom:666.527250px;}
.y171{bottom:677.027100px;}
.y144{bottom:680.027100px;}
.y65{bottom:681.987600px;}
.y3{bottom:682.419600px;}
.y27{bottom:683.487600px;}
.y19d{bottom:684.527250px;}
.y1bb{bottom:684.768600px;}
.yaa{bottom:684.987600px;}
.y170{bottom:695.027100px;}
.y143{bottom:698.027100px;}
.y2{bottom:700.419600px;}
.y64{bottom:701.787600px;}
.y19c{bottom:702.527250px;}
.y1ba{bottom:702.768600px;}
.y26{bottom:703.287600px;}
.ya9{bottom:704.787600px;}
.y16f{bottom:713.027100px;}
.y142{bottom:716.027100px;}
.y19b{bottom:720.527250px;}
.y1b9{bottom:720.768600px;}
.y63{bottom:721.587600px;}
.y25{bottom:723.087600px;}
.ya8{bottom:724.587600px;}
.y16e{bottom:731.027100px;}
.y141{bottom:734.027100px;}
.y19a{bottom:738.527250px;}
.y1b8{bottom:738.768600px;}
.y62{bottom:741.387600px;}
.y24{bottom:742.887600px;}
.ya7{bottom:744.387600px;}
.y16d{bottom:749.027100px;}
.y140{bottom:752.027100px;}
.y199{bottom:756.527250px;}
.y1b7{bottom:756.768600px;}
.y61{bottom:761.187600px;}
.y23{bottom:762.687600px;}
.ya6{bottom:764.187600px;}
.y16c{bottom:767.027100px;}
.y13f{bottom:770.027100px;}
.y198{bottom:774.527250px;}
.y1b6{bottom:774.768600px;}
.y60{bottom:780.987600px;}
.y22{bottom:782.487600px;}
.ya5{bottom:783.987600px;}
.y16b{bottom:785.027100px;}
.y13e{bottom:788.027100px;}
.y197{bottom:792.527250px;}
.y1b5{bottom:792.768600px;}
.y1{bottom:797.019600px;}
.y5f{bottom:800.787600px;}
.y21{bottom:802.287600px;}
.y16a{bottom:803.027100px;}
.ya4{bottom:803.787600px;}
.y13d{bottom:806.027100px;}
.y196{bottom:810.527250px;}
.y1b4{bottom:810.768600px;}
.y5e{bottom:820.587600px;}
.y169{bottom:821.027100px;}
.y20{bottom:822.087600px;}
.ya3{bottom:823.587600px;}
.y13c{bottom:824.027100px;}
.y195{bottom:828.527250px;}
.y1b3{bottom:828.768600px;}
.y168{bottom:839.027100px;}
.y5d{bottom:840.387600px;}
.y1f{bottom:841.887600px;}
.y13b{bottom:842.027100px;}
.ya2{bottom:843.387600px;}
.y194{bottom:846.527250px;}
.y1b2{bottom:846.768600px;}
.y167{bottom:857.027100px;}
.y13a{bottom:860.027100px;}
.y5c{bottom:860.187600px;}
.y1e{bottom:861.687600px;}
.ya1{bottom:863.187600px;}
.y193{bottom:864.527250px;}
.y1b1{bottom:864.768600px;}
.y166{bottom:875.027100px;}
.y139{bottom:878.027100px;}
.y5b{bottom:879.987600px;}
.y1d{bottom:881.487600px;}
.ya0{bottom:882.987600px;}
.y49{bottom:925.454100px;}
.y1c{bottom:927.225600px;}
.y5a{bottom:927.485100px;}
.y1b0{bottom:927.485250px;}
.h12{height:29.399236px;}
.hf{height:29.399836px;}
.h9{height:29.531672px;}
.h10{height:29.532272px;}
.he{height:34.663884px;}
.hd{height:34.664484px;}
.h8{height:37.303711px;}
.h3{height:44.730469px;}
.ha{height:47.381836px;}
.hb{height:47.513672px;}
.h7{height:47.961914px;}
.h4{height:52.646484px;}
.h14{height:52.792969px;}
.hc{height:53.291016px;}
.h5{height:57.911133px;}
.h11{height:57.911733px;}
.h6{height:58.072266px;}
.h13{height:58.620117px;}
.h2{height:85.265625px;}
.h0{height:977.748600px;}
.h1{height:978.000000px;}
.w0{width:680.686050px;}
.w1{width:681.000000px;}
.x0{left:0.000000px;}
.x6{left:95.384550px;}
.x5{left:99.636300px;}
.x8{left:108.884550px;}
.xb{left:113.135550px;}
.x7{left:129.399300px;}
.x4{left:133.651050px;}
.xe{left:137.903550px;}
.xf{left:142.156050px;}
.x1{left:161.599050px;}
.xc{left:239.308050px;}
.x9{left:269.867550px;}
.x11{left:295.490550px;}
.x3{left:299.510550px;}
.x10{left:312.233550px;}
.x2{left:438.266550px;}
.xa{left:571.232550px;}
.xd{left:572.390550px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2e{letter-spacing:-4.523200pt;}
.ls2f{letter-spacing:-3.465600pt;}
.ls12{letter-spacing:-2.060800pt;}
.ls23{letter-spacing:-1.680000pt;}
.ls34{letter-spacing:-1.653333pt;}
.ls3c{letter-spacing:-1.333333pt;}
.ls19{letter-spacing:-1.268919pt;}
.ls1b{letter-spacing:-1.038206pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.944533pt;}
.ls1a{letter-spacing:-0.639467pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls2c{letter-spacing:-0.139200pt;}
.ls2b{letter-spacing:-0.134400pt;}
.ls2d{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.083952pt;}
.ls22{letter-spacing:-0.064533pt;}
.ls20{letter-spacing:-0.041067pt;}
.ls1e{letter-spacing:-0.028800pt;}
.ls11{letter-spacing:-0.024000pt;}
.ls21{letter-spacing:-0.023467pt;}
.ls10{letter-spacing:-0.019200pt;}
.ls3d{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:-0.009600pt;}
.ls13{letter-spacing:-0.005867pt;}
.ls1d{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002667pt;}
.ls3{letter-spacing:0.004800pt;}
.ls35{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.lsf{letter-spacing:0.009600pt;}
.ls37{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.011733pt;}
.lse{letter-spacing:0.014400pt;}
.ls3b{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.017600pt;}
.ls24{letter-spacing:0.023467pt;}
.ls38{letter-spacing:0.026667pt;}
.ls18{letter-spacing:0.029333pt;}
.ls3a{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.033600pt;}
.ls1f{letter-spacing:0.035200pt;}
.ls5{letter-spacing:0.038400pt;}
.ls17{letter-spacing:0.041067pt;}
.lsa{letter-spacing:0.046933pt;}
.ls6{letter-spacing:0.048000pt;}
.ls32{letter-spacing:0.522667pt;}
.ls31{letter-spacing:0.533333pt;}
.ls27{letter-spacing:0.684053pt;}
.ls33{letter-spacing:1.066667pt;}
.ls26{letter-spacing:1.173333pt;}
.ls3f{letter-spacing:1.877333pt;}
.ls28{letter-spacing:2.258667pt;}
.lsd{letter-spacing:2.538667pt;}
.ls30{letter-spacing:3.408000pt;}
.ls9{letter-spacing:4.740267pt;}
.ls3e{letter-spacing:5.312000pt;}
.ls39{letter-spacing:6.853333pt;}
.ls1c{letter-spacing:8.070667pt;}
.ls14{letter-spacing:8.993600pt;}
.ls36{letter-spacing:9.824000pt;}
.lsc{letter-spacing:12.000000pt;}
.ls25{letter-spacing:13.200000pt;}
.wsae{word-spacing:-53.333333pt;}
.ws1b{word-spacing:-48.000000pt;}
.ws53{word-spacing:-15.840000pt;}
.wsa{word-spacing:-14.666667pt;}
.ws86{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws55{word-spacing:-11.856000pt;}
.ws87{word-spacing:-11.680000pt;}
.ws4a{word-spacing:-9.234720pt;}
.ws3{word-spacing:-8.550667pt;}
.ws21{word-spacing:-7.281748pt;}
.ws17{word-spacing:-7.272533pt;}
.ws4{word-spacing:-6.996000pt;}
.ws54{word-spacing:-6.912048pt;}
.ws22{word-spacing:-5.957794pt;}
.ws2c{word-spacing:-5.078400pt;}
.ws76{word-spacing:-4.523200pt;}
.ws70{word-spacing:-4.329600pt;}
.wsbf{word-spacing:-4.320000pt;}
.ws6e{word-spacing:-4.137600pt;}
.ws6f{word-spacing:-4.128000pt;}
.wsa0{word-spacing:-4.122667pt;}
.ws62{word-spacing:-3.796800pt;}
.ws58{word-spacing:-3.648000pt;}
.ws65{word-spacing:-3.446400pt;}
.ws9e{word-spacing:-3.429333pt;}
.ws15{word-spacing:-3.340800pt;}
.ws14{word-spacing:-3.336000pt;}
.wsac{word-spacing:-2.832000pt;}
.ws6d{word-spacing:-2.774400pt;}
.ws16{word-spacing:-2.712000pt;}
.wsb2{word-spacing:-2.709333pt;}
.ws60{word-spacing:-2.529600pt;}
.ws46{word-spacing:-2.433600pt;}
.ws2e{word-spacing:-2.347200pt;}
.wsa2{word-spacing:-2.234667pt;}
.ws5f{word-spacing:-1.939200pt;}
.ws9{word-spacing:-1.924800pt;}
.ws59{word-spacing:-1.780800pt;}
.ws71{word-spacing:-1.612800pt;}
.ws48{word-spacing:-1.353600pt;}
.ws6{word-spacing:-1.262400pt;}
.ws74{word-spacing:-1.252800pt;}
.ws75{word-spacing:-1.248000pt;}
.ws2f{word-spacing:-1.056000pt;}
.ws5d{word-spacing:-0.931200pt;}
.ws45{word-spacing:-0.744000pt;}
.ws3a{word-spacing:-0.710400pt;}
.wsb8{word-spacing:-0.597333pt;}
.ws3b{word-spacing:-0.369600pt;}
.wsc5{word-spacing:-0.314667pt;}
.ws79{word-spacing:-0.302400pt;}
.ws6b{word-spacing:-0.249600pt;}
.ws32{word-spacing:-0.110400pt;}
.wsb{word-spacing:-0.058667pt;}
.wsad{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws49{word-spacing:0.057600pt;}
.wsbb{word-spacing:0.240000pt;}
.ws91{word-spacing:0.272000pt;}
.ws42{word-spacing:0.340267pt;}
.ws43{word-spacing:0.441600pt;}
.ws57{word-spacing:0.542400pt;}
.wsab{word-spacing:0.549333pt;}
.ws11{word-spacing:0.696000pt;}
.wsba{word-spacing:0.752000pt;}
.wsc9{word-spacing:0.757333pt;}
.ws4e{word-spacing:0.782400pt;}
.ws5c{word-spacing:0.840000pt;}
.ws5b{word-spacing:0.849600pt;}
.ws9a{word-spacing:1.098667pt;}
.ws9c{word-spacing:1.136000pt;}
.ws99{word-spacing:1.216000pt;}
.ws13{word-spacing:1.372800pt;}
.ws1d{word-spacing:1.502400pt;}
.ws7{word-spacing:1.564800pt;}
.ws36{word-spacing:1.689600pt;}
.ws95{word-spacing:1.749333pt;}
.ws23{word-spacing:1.760000pt;}
.wsa8{word-spacing:1.770667pt;}
.ws37{word-spacing:1.924800pt;}
.ws61{word-spacing:1.992000pt;}
.ws33{word-spacing:2.011200pt;}
.ws38{word-spacing:2.198400pt;}
.ws8a{word-spacing:2.229333pt;}
.ws10{word-spacing:2.284800pt;}
.ws12{word-spacing:2.328000pt;}
.ws63{word-spacing:2.404800pt;}
.ws2b{word-spacing:2.438400pt;}
.ws9f{word-spacing:2.469333pt;}
.ws5a{word-spacing:2.472000pt;}
.ws4d{word-spacing:2.515200pt;}
.wsb9{word-spacing:2.554667pt;}
.ws34{word-spacing:2.990400pt;}
.ws3c{word-spacing:3.384000pt;}
.wsb1{word-spacing:3.386667pt;}
.wscb{word-spacing:3.397333pt;}
.ws8e{word-spacing:3.408000pt;}
.wsc3{word-spacing:3.525333pt;}
.ws1e{word-spacing:3.576000pt;}
.ws1f{word-spacing:3.691200pt;}
.ws6a{word-spacing:3.873600pt;}
.ws7b{word-spacing:3.878400pt;}
.ws52{word-spacing:3.950400pt;}
.ws50{word-spacing:4.022400pt;}
.ws18{word-spacing:4.053867pt;}
.ws5e{word-spacing:4.156800pt;}
.ws3e{word-spacing:4.200000pt;}
.ws4f{word-spacing:4.248000pt;}
.ws28{word-spacing:4.267200pt;}
.ws82{word-spacing:4.276800pt;}
.ws81{word-spacing:4.281600pt;}
.ws64{word-spacing:4.555200pt;}
.ws73{word-spacing:4.564800pt;}
.wsd{word-spacing:4.740267pt;}
.ws7e{word-spacing:4.929600pt;}
.ws7f{word-spacing:4.934400pt;}
.ws9d{word-spacing:4.976000pt;}
.ws77{word-spacing:4.982400pt;}
.ws2d{word-spacing:5.035200pt;}
.ws3d{word-spacing:5.064000pt;}
.ws72{word-spacing:5.078400pt;}
.ws8{word-spacing:5.121600pt;}
.ws6c{word-spacing:5.236800pt;}
.ws90{word-spacing:5.434667pt;}
.ws56{word-spacing:5.707200pt;}
.wsca{word-spacing:5.861333pt;}
.ws24{word-spacing:5.890133pt;}
.ws20{word-spacing:6.340800pt;}
.ws85{word-spacing:6.403200pt;}
.ws31{word-spacing:6.432000pt;}
.ws2{word-spacing:6.476800pt;}
.ws27{word-spacing:6.628800pt;}
.ws25{word-spacing:6.646933pt;}
.ws8f{word-spacing:6.672000pt;}
.wsb5{word-spacing:6.730667pt;}
.wsb4{word-spacing:6.736000pt;}
.ws19{word-spacing:6.740800pt;}
.wsb0{word-spacing:6.853333pt;}
.ws8d{word-spacing:6.869333pt;}
.ws39{word-spacing:7.075200pt;}
.wsc6{word-spacing:7.264000pt;}
.ws44{word-spacing:7.348800pt;}
.ws98{word-spacing:7.365333pt;}
.ws40{word-spacing:7.406400pt;}
.ws41{word-spacing:7.411200pt;}
.wsaa{word-spacing:7.888000pt;}
.ws1c{word-spacing:7.972800pt;}
.wsa7{word-spacing:8.138667pt;}
.ws4c{word-spacing:8.389333pt;}
.ws1a{word-spacing:8.418667pt;}
.ws7c{word-spacing:8.424000pt;}
.ws88{word-spacing:8.496000pt;}
.ws89{word-spacing:8.501333pt;}
.ws83{word-spacing:8.827200pt;}
.ws66{word-spacing:8.880000pt;}
.wsc4{word-spacing:9.125333pt;}
.ws5{word-spacing:9.264000pt;}
.wsc1{word-spacing:9.488000pt;}
.wsc8{word-spacing:9.664000pt;}
.ws84{word-spacing:9.696000pt;}
.ws9b{word-spacing:9.818667pt;}
.wsa1{word-spacing:9.824000pt;}
.wse{word-spacing:10.043733pt;}
.wsaf{word-spacing:10.122667pt;}
.ws7a{word-spacing:10.152000pt;}
.ws78{word-spacing:10.708800pt;}
.wsbc{word-spacing:11.018667pt;}
.wsb6{word-spacing:11.221333pt;}
.ws51{word-spacing:11.496000pt;}
.ws3f{word-spacing:11.654400pt;}
.wsa3{word-spacing:11.749333pt;}
.ws67{word-spacing:12.202667pt;}
.wsc2{word-spacing:12.218667pt;}
.ws80{word-spacing:12.417600pt;}
.ws8b{word-spacing:12.704000pt;}
.ws47{word-spacing:12.796800pt;}
.ws35{word-spacing:12.806400pt;}
.wsb3{word-spacing:13.045333pt;}
.wsa9{word-spacing:13.136000pt;}
.ws4b{word-spacing:13.200000pt;}
.ws96{word-spacing:13.781333pt;}
.wsa6{word-spacing:14.085333pt;}
.wsc0{word-spacing:14.661333pt;}
.wsbd{word-spacing:15.136000pt;}
.ws94{word-spacing:15.194667pt;}
.wsa4{word-spacing:15.434667pt;}
.wsc7{word-spacing:15.568000pt;}
.ws69{word-spacing:16.036800pt;}
.ws30{word-spacing:16.065600pt;}
.ws26{word-spacing:17.764800pt;}
.ws97{word-spacing:18.272000pt;}
.wsa5{word-spacing:18.325333pt;}
.wsb7{word-spacing:18.704000pt;}
.ws2a{word-spacing:19.459200pt;}
.ws7d{word-spacing:20.798400pt;}
.ws68{word-spacing:20.926400pt;}
.ws92{word-spacing:22.112000pt;}
.wsbe{word-spacing:22.874667pt;}
.ws93{word-spacing:23.146667pt;}
.ws8c{word-spacing:25.712000pt;}
.wsf{word-spacing:27.268267pt;}
.ws29{word-spacing:29.611200pt;}
._16{margin-left:-27.128000pt;}
._27{margin-left:-19.572800pt;}
._26{margin-left:-18.285333pt;}
._c{margin-left:-17.278933pt;}
._5{margin-left:-16.341333pt;}
._0{margin-left:-14.848000pt;}
._15{margin-left:-13.153067pt;}
._18{margin-left:-12.033600pt;}
._1c{margin-left:-9.069867pt;}
._23{margin-left:-7.723200pt;}
._1d{margin-left:-6.447467pt;}
._9{margin-left:-5.338667pt;}
._8{margin-left:-4.265067pt;}
._d{margin-left:-2.821867pt;}
._4{margin-left:-1.416533pt;}
._1{width:1.498667pt;}
._3{width:2.468267pt;}
._a{width:3.590400pt;}
._f{width:4.954133pt;}
._b{width:5.995733pt;}
._7{width:6.957867pt;}
._6{width:8.295467pt;}
._e{width:9.949867pt;}
._19{width:11.152533pt;}
._13{width:12.267200pt;}
._14{width:13.516800pt;}
._1f{width:14.769600pt;}
._10{width:15.675733pt;}
._1e{width:16.900800pt;}
._22{width:18.595200pt;}
._24{width:19.884267pt;}
._12{width:21.841600pt;}
._1a{width:23.003200pt;}
._1b{width:24.024000pt;}
._11{width:25.478933pt;}
._2{width:27.004267pt;}
._17{width:27.954133pt;}
._20{width:29.154279pt;}
._21{width:30.399467pt;}
._25{width:42.462933pt;}
.fs6{font-size:27.984000pt;}
.fs5{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y192{bottom:73.801867pt;}
.y89{bottom:74.269867pt;}
.y98{bottom:74.270000pt;}
.y138{bottom:75.011200pt;}
.y48{bottom:75.603200pt;}
.y1b{bottom:75.927200pt;}
.y165{bottom:76.468533pt;}
.yde{bottom:76.936533pt;}
.yca{bottom:76.936667pt;}
.y82{bottom:78.265867pt;}
.y59{bottom:79.599200pt;}
.y9f{bottom:88.669867pt;}
.y97{bottom:88.670000pt;}
.y191{bottom:89.801867pt;}
.y47{bottom:90.003200pt;}
.y137{bottom:91.011200pt;}
.yc9{bottom:91.336667pt;}
.y164{bottom:92.468533pt;}
.y88{bottom:92.665867pt;}
.yea{bottom:93.999200pt;}
.ydd{bottom:95.332533pt;}
.y11b{bottom:97.561867pt;}
.y1a{bottom:100.995200pt;}
.y58{bottom:101.558000pt;}
.y96{bottom:103.070000pt;}
.y46{bottom:104.403200pt;}
.yc8{bottom:105.736667pt;}
.y190{bottom:105.801867pt;}
.y136{bottom:107.011200pt;}
.y9e{bottom:107.065867pt;}
.y163{bottom:108.468533pt;}
.y87{bottom:110.628533pt;}
.y115{bottom:111.961867pt;}
.ydc{bottom:113.295333pt;}
.y81{bottom:113.411200pt;}
.ye9{bottom:115.957867pt;}
.y19{bottom:118.595200pt;}
.y45{bottom:118.803200pt;}
.yc7{bottom:120.136667pt;}
.y57{bottom:121.121867pt;}
.y95{bottom:121.465867pt;}
.y18f{bottom:121.801867pt;}
.y135{bottom:123.011200pt;}
.y162{bottom:124.468533pt;}
.y86{bottom:125.028533pt;}
.y114{bottom:126.361867pt;}
.ydb{bottom:127.695333pt;}
.y80{bottom:131.011200pt;}
.y44{bottom:133.203200pt;}
.ye8{bottom:133.921867pt;}
.yc6{bottom:134.536667pt;}
.y56{bottom:135.521867pt;}
.y18{bottom:136.195200pt;}
.y18e{bottom:137.801867pt;}
.y134{bottom:139.011200pt;}
.y85{bottom:139.428533pt;}
.y161{bottom:140.468533pt;}
.y113{bottom:140.761867pt;}
.yda{bottom:146.091333pt;}
.y43{bottom:147.603200pt;}
.ye7{bottom:148.321867pt;}
.y7f{bottom:148.611200pt;}
.yc5{bottom:148.936667pt;}
.y55{bottom:149.921867pt;}
.y17{bottom:153.795200pt;}
.y18d{bottom:153.801867pt;}
.y94{bottom:153.828533pt;}
.y133{bottom:155.011200pt;}
.y112{bottom:155.161867pt;}
.y160{bottom:156.468533pt;}
.y84{bottom:157.824533pt;}
.y42{bottom:162.003200pt;}
.ye6{bottom:162.721867pt;}
.yc4{bottom:163.336667pt;}
.yd9{bottom:164.055200pt;}
.y54{bottom:164.321867pt;}
.y7e{bottom:166.211200pt;}
.y93{bottom:168.228533pt;}
.y111{bottom:169.561867pt;}
.y18c{bottom:169.801867pt;}
.y132{bottom:171.011200pt;}
.y16{bottom:171.395200pt;}
.y15f{bottom:172.468533pt;}
.y41{bottom:176.403200pt;}
.ye5{bottom:177.120667pt;}
.yc3{bottom:177.736667pt;}
.yd8{bottom:178.455200pt;}
.y53{bottom:178.721867pt;}
.y83{bottom:179.784533pt;}
.y92{bottom:182.628533pt;}
.y7d{bottom:183.811200pt;}
.y110{bottom:183.961867pt;}
.y18b{bottom:185.801867pt;}
.y131{bottom:187.011200pt;}
.y15e{bottom:188.468533pt;}
.y15{bottom:188.995200pt;}
.y40{bottom:190.803200pt;}
.ye4{bottom:191.520667pt;}
.yd7{bottom:192.855200pt;}
.y52{bottom:193.121867pt;}
.yc2{bottom:196.132533pt;}
.y10f{bottom:198.361867pt;}
.y91{bottom:201.024533pt;}
.y7c{bottom:201.411200pt;}
.y18a{bottom:201.801867pt;}
.y11a{bottom:202.357867pt;}
.y130{bottom:203.011200pt;}
.y15d{bottom:204.468533pt;}
.y3f{bottom:205.203200pt;}
.ye3{bottom:205.921867pt;}
.y14{bottom:206.595200pt;}
.yd6{bottom:207.255200pt;}
.y51{bottom:207.521867pt;}
.y104{bottom:209.199200pt;}
.yc1{bottom:214.095200pt;}
.y1af{bottom:214.868667pt;}
.y10e{bottom:216.757867pt;}
.y189{bottom:217.801867pt;}
.y90{bottom:218.988533pt;}
.y7b{bottom:219.011200pt;}
.y3e{bottom:219.603200pt;}
.y119{bottom:220.321867pt;}
.y15c{bottom:220.468533pt;}
.yd5{bottom:221.655200pt;}
.y50{bottom:221.921867pt;}
.y13{bottom:224.195200pt;}
.ye2{bottom:224.317867pt;}
.y103{bottom:227.161867pt;}
.yc0{bottom:232.491200pt;}
.y8f{bottom:233.388533pt;}
.y188{bottom:233.801867pt;}
.y3d{bottom:234.003200pt;}
.y10d{bottom:234.721867pt;}
.y12f{bottom:235.011200pt;}
.y4f{bottom:236.321867pt;}
.y15b{bottom:236.468533pt;}
.y7a{bottom:236.611200pt;}
.yd4{bottom:240.051200pt;}
.y102{bottom:241.561867pt;}
.y12{bottom:241.795200pt;}
.ye1{bottom:242.280667pt;}
.y9d{bottom:247.788533pt;}
.y3c{bottom:248.403200pt;}
.y1ae{bottom:248.468667pt;}
.y10c{bottom:249.121867pt;}
.y187{bottom:249.801867pt;}
.ybf{bottom:250.455200pt;}
.y4e{bottom:250.721867pt;}
.y12e{bottom:251.011200pt;}
.y8e{bottom:251.784533pt;}
.y15a{bottom:252.468533pt;}
.y118{bottom:253.117867pt;}
.y79{bottom:254.211200pt;}
.y101{bottom:255.961867pt;}
.yd3{bottom:258.013867pt;}
.y11{bottom:259.395200pt;}
.y9c{bottom:262.188533pt;}
.y3b{bottom:262.803200pt;}
.y1ad{bottom:264.468667pt;}
.ybe{bottom:264.855200pt;}
.y186{bottom:265.801867pt;}
.y12d{bottom:267.011200pt;}
.y10b{bottom:267.517867pt;}
.y159{bottom:268.468533pt;}
.y4d{bottom:269.117867pt;}
.y8d{bottom:269.747200pt;}
.y100{bottom:270.361867pt;}
.y117{bottom:271.080533pt;}
.y78{bottom:271.811200pt;}
.ye0{bottom:273.144533pt;}
.y10{bottom:276.995200pt;}
.y3a{bottom:277.203200pt;}
.ybd{bottom:279.255200pt;}
.y1ac{bottom:280.468667pt;}
.y9b{bottom:280.584533pt;}
.y185{bottom:281.801867pt;}
.y12c{bottom:283.011200pt;}
.y8c{bottom:284.147200pt;}
.y158{bottom:284.468533pt;}
.y10a{bottom:285.480533pt;}
.yff{bottom:288.758000pt;}
.y77{bottom:289.411200pt;}
.ydf{bottom:290.744533pt;}
.y39{bottom:291.603200pt;}
.yd2{bottom:292.077867pt;}
.yf{bottom:294.595200pt;}
.y1ab{bottom:296.468667pt;}
.ybc{bottom:297.651200pt;}
.y184{bottom:297.801867pt;}
.y8b{bottom:298.547200pt;}
.y12b{bottom:299.011200pt;}
.y109{bottom:299.880533pt;}
.y157{bottom:300.468533pt;}
.y38{bottom:306.003200pt;}
.yfe{bottom:306.721867pt;}
.y76{bottom:307.011200pt;}
.y4c{bottom:308.344533pt;}
.yd1{bottom:309.677867pt;}
.ye{bottom:312.195200pt;}
.y1aa{bottom:312.468667pt;}
.y9a{bottom:312.947200pt;}
.y183{bottom:313.801867pt;}
.y108{bottom:314.280533pt;}
.y12a{bottom:315.011200pt;}
.ybb{bottom:315.613867pt;}
.y156{bottom:316.468533pt;}
.y8a{bottom:316.943200pt;}
.y37{bottom:320.403200pt;}
.yfd{bottom:321.121867pt;}
.y75{bottom:324.611200pt;}
.y4b{bottom:325.944533pt;}
.yd0{bottom:327.277867pt;}
.y1a9{bottom:328.468667pt;}
.y107{bottom:328.680533pt;}
.yd{bottom:329.795200pt;}
.y182{bottom:329.801867pt;}
.yba{bottom:330.013867pt;}
.y129{bottom:331.011200pt;}
.y99{bottom:331.343200pt;}
.y155{bottom:332.468533pt;}
.y116{bottom:332.676533pt;}
.yfc{bottom:335.521867pt;}
.y36{bottom:338.799200pt;}
.y74{bottom:342.211200pt;}
.y106{bottom:343.080533pt;}
.y4a{bottom:343.544533pt;}
.yb9{bottom:344.413867pt;}
.y1a8{bottom:344.468667pt;}
.ycf{bottom:344.877867pt;}
.y181{bottom:345.801867pt;}
.y128{bottom:347.011200pt;}
.yc{bottom:347.395200pt;}
.y154{bottom:348.468533pt;}
.yfb{bottom:349.921867pt;}
.yb8{bottom:358.813867pt;}
.y73{bottom:359.811200pt;}
.y1a7{bottom:360.468667pt;}
.y35{bottom:361.144533pt;}
.y105{bottom:361.476533pt;}
.y180{bottom:361.801867pt;}
.yce{bottom:362.477867pt;}
.y127{bottom:363.011200pt;}
.yfa{bottom:364.321867pt;}
.y153{bottom:364.468533pt;}
.yb{bottom:364.995200pt;}
.yb7{bottom:373.213867pt;}
.y1a6{bottom:376.468667pt;}
.y72{bottom:377.411200pt;}
.y17f{bottom:377.801867pt;}
.yf9{bottom:378.721867pt;}
.y34{bottom:378.744533pt;}
.y126{bottom:379.011200pt;}
.ycd{bottom:380.077867pt;}
.y152{bottom:380.468533pt;}
.ya{bottom:382.595200pt;}
.yb6{bottom:387.613867pt;}
.y1a5{bottom:392.468667pt;}
.yf8{bottom:393.121867pt;}
.y17e{bottom:393.801867pt;}
.y71{bottom:395.011200pt;}
.y33{bottom:396.344533pt;}
.y151{bottom:396.468533pt;}
.ycc{bottom:397.677867pt;}
.y9{bottom:400.195200pt;}
.yb5{bottom:406.009867pt;}
.yf7{bottom:407.521867pt;}
.y17d{bottom:409.801867pt;}
.y125{bottom:411.011200pt;}
.y150{bottom:412.468533pt;}
.y70{bottom:412.611200pt;}
.y32{bottom:413.944533pt;}
.ycb{bottom:415.277867pt;}
.y8{bottom:417.795200pt;}
.yf6{bottom:421.921867pt;}
.y17c{bottom:425.801867pt;}
.y124{bottom:427.011200pt;}
.y14f{bottom:428.468533pt;}
.y6f{bottom:430.211200pt;}
.y31{bottom:431.544533pt;}
.yb4{bottom:432.877867pt;}
.y7{bottom:435.395200pt;}
.yf5{bottom:436.321867pt;}
.y17b{bottom:441.801867pt;}
.y123{bottom:443.011200pt;}
.y14e{bottom:444.468533pt;}
.y6e{bottom:447.811200pt;}
.y30{bottom:449.144533pt;}
.yb3{bottom:450.477867pt;}
.yf4{bottom:450.721867pt;}
.y6{bottom:452.995200pt;}
.y17a{bottom:457.801867pt;}
.y122{bottom:459.011200pt;}
.y14d{bottom:460.468533pt;}
.yf3{bottom:465.121867pt;}
.y6d{bottom:465.411200pt;}
.y2f{bottom:466.744533pt;}
.yb2{bottom:468.077867pt;}
.y5{bottom:470.595200pt;}
.y179{bottom:473.801867pt;}
.y121{bottom:475.011200pt;}
.y14c{bottom:476.468533pt;}
.y6c{bottom:483.011200pt;}
.yf2{bottom:483.517867pt;}
.y2e{bottom:484.344533pt;}
.yb1{bottom:485.677867pt;}
.y4{bottom:488.195200pt;}
.y178{bottom:489.801867pt;}
.y120{bottom:491.011200pt;}
.y14b{bottom:492.468533pt;}
.y1a4{bottom:496.468667pt;}
.y6b{bottom:500.611200pt;}
.yf1{bottom:501.480533pt;}
.y2d{bottom:501.944533pt;}
.yb0{bottom:503.277867pt;}
.y177{bottom:505.801867pt;}
.y11f{bottom:507.011200pt;}
.y14a{bottom:508.468533pt;}
.y1a3{bottom:512.468667pt;}
.yf0{bottom:515.880533pt;}
.y6a{bottom:518.211200pt;}
.y2c{bottom:519.544533pt;}
.yaf{bottom:520.877867pt;}
.y176{bottom:521.801867pt;}
.y11e{bottom:523.011200pt;}
.y149{bottom:524.468533pt;}
.y1a2{bottom:528.468667pt;}
.yef{bottom:530.280533pt;}
.y69{bottom:535.811200pt;}
.y2b{bottom:537.144533pt;}
.y175{bottom:537.801867pt;}
.yae{bottom:538.477867pt;}
.y11d{bottom:539.011200pt;}
.y148{bottom:540.468533pt;}
.y1a1{bottom:544.468667pt;}
.yee{bottom:544.680533pt;}
.y68{bottom:553.411200pt;}
.y174{bottom:553.801867pt;}
.y2a{bottom:554.744533pt;}
.y11c{bottom:555.011200pt;}
.yad{bottom:556.077867pt;}
.y147{bottom:556.468533pt;}
.yed{bottom:559.080533pt;}
.y1a0{bottom:560.468667pt;}
.y173{bottom:569.801867pt;}
.y67{bottom:571.011200pt;}
.y29{bottom:572.344533pt;}
.y146{bottom:572.468533pt;}
.yec{bottom:573.480533pt;}
.yac{bottom:573.677867pt;}
.y1bc{bottom:575.083200pt;}
.y19f{bottom:576.468667pt;}
.y172{bottom:585.801867pt;}
.y145{bottom:588.468533pt;}
.y66{bottom:588.611200pt;}
.y28{bottom:589.944533pt;}
.yab{bottom:591.277867pt;}
.yeb{bottom:591.876533pt;}
.y19e{bottom:592.468667pt;}
.y171{bottom:601.801867pt;}
.y144{bottom:604.468533pt;}
.y65{bottom:606.211200pt;}
.y3{bottom:606.595200pt;}
.y27{bottom:607.544533pt;}
.y19d{bottom:608.468667pt;}
.y1bb{bottom:608.683200pt;}
.yaa{bottom:608.877867pt;}
.y170{bottom:617.801867pt;}
.y143{bottom:620.468533pt;}
.y2{bottom:622.595200pt;}
.y64{bottom:623.811200pt;}
.y19c{bottom:624.468667pt;}
.y1ba{bottom:624.683200pt;}
.y26{bottom:625.144533pt;}
.ya9{bottom:626.477867pt;}
.y16f{bottom:633.801867pt;}
.y142{bottom:636.468533pt;}
.y19b{bottom:640.468667pt;}
.y1b9{bottom:640.683200pt;}
.y63{bottom:641.411200pt;}
.y25{bottom:642.744533pt;}
.ya8{bottom:644.077867pt;}
.y16e{bottom:649.801867pt;}
.y141{bottom:652.468533pt;}
.y19a{bottom:656.468667pt;}
.y1b8{bottom:656.683200pt;}
.y62{bottom:659.011200pt;}
.y24{bottom:660.344533pt;}
.ya7{bottom:661.677867pt;}
.y16d{bottom:665.801867pt;}
.y140{bottom:668.468533pt;}
.y199{bottom:672.468667pt;}
.y1b7{bottom:672.683200pt;}
.y61{bottom:676.611200pt;}
.y23{bottom:677.944533pt;}
.ya6{bottom:679.277867pt;}
.y16c{bottom:681.801867pt;}
.y13f{bottom:684.468533pt;}
.y198{bottom:688.468667pt;}
.y1b6{bottom:688.683200pt;}
.y60{bottom:694.211200pt;}
.y22{bottom:695.544533pt;}
.ya5{bottom:696.877867pt;}
.y16b{bottom:697.801867pt;}
.y13e{bottom:700.468533pt;}
.y197{bottom:704.468667pt;}
.y1b5{bottom:704.683200pt;}
.y1{bottom:708.461867pt;}
.y5f{bottom:711.811200pt;}
.y21{bottom:713.144533pt;}
.y16a{bottom:713.801867pt;}
.ya4{bottom:714.477867pt;}
.y13d{bottom:716.468533pt;}
.y196{bottom:720.468667pt;}
.y1b4{bottom:720.683200pt;}
.y5e{bottom:729.411200pt;}
.y169{bottom:729.801867pt;}
.y20{bottom:730.744533pt;}
.ya3{bottom:732.077867pt;}
.y13c{bottom:732.468533pt;}
.y195{bottom:736.468667pt;}
.y1b3{bottom:736.683200pt;}
.y168{bottom:745.801867pt;}
.y5d{bottom:747.011200pt;}
.y1f{bottom:748.344533pt;}
.y13b{bottom:748.468533pt;}
.ya2{bottom:749.677867pt;}
.y194{bottom:752.468667pt;}
.y1b2{bottom:752.683200pt;}
.y167{bottom:761.801867pt;}
.y13a{bottom:764.468533pt;}
.y5c{bottom:764.611200pt;}
.y1e{bottom:765.944533pt;}
.ya1{bottom:767.277867pt;}
.y193{bottom:768.468667pt;}
.y1b1{bottom:768.683200pt;}
.y166{bottom:777.801867pt;}
.y139{bottom:780.468533pt;}
.y5b{bottom:782.211200pt;}
.y1d{bottom:783.544533pt;}
.ya0{bottom:784.877867pt;}
.y49{bottom:822.625867pt;}
.y1c{bottom:824.200533pt;}
.y5a{bottom:824.431200pt;}
.y1b0{bottom:824.431333pt;}
.h12{height:26.132654pt;}
.hf{height:26.133187pt;}
.h9{height:26.250375pt;}
.h10{height:26.250908pt;}
.he{height:30.812342pt;}
.hd{height:30.812875pt;}
.h8{height:33.158854pt;}
.h3{height:39.760417pt;}
.ha{height:42.117188pt;}
.hb{height:42.234375pt;}
.h7{height:42.632812pt;}
.h4{height:46.796875pt;}
.h14{height:46.927083pt;}
.hc{height:47.369792pt;}
.h5{height:51.476562pt;}
.h11{height:51.477096pt;}
.h6{height:51.619792pt;}
.h13{height:52.106771pt;}
.h2{height:75.791667pt;}
.h0{height:869.109867pt;}
.h1{height:869.333333pt;}
.w0{width:605.054267pt;}
.w1{width:605.333333pt;}
.x0{left:0.000000pt;}
.x6{left:84.786267pt;}
.x5{left:88.565600pt;}
.x8{left:96.786267pt;}
.xb{left:100.564933pt;}
.x7{left:115.021600pt;}
.x4{left:118.800933pt;}
.xe{left:122.580933pt;}
.xf{left:126.360933pt;}
.x1{left:143.643600pt;}
.xc{left:212.718267pt;}
.x9{left:239.882267pt;}
.x11{left:262.658267pt;}
.x3{left:266.231600pt;}
.x10{left:277.540933pt;}
.x2{left:389.570267pt;}
.xa{left:507.762267pt;}
.xd{left:508.791600pt;}
}




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