
    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_56622ef0da86cf5d9c727550.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_ed9fe10b664b6867eb12e09a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_c1b0df1d85972e38dbf6c391.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a09e6ecd0f80d3c9c5d9d060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_119244e19afa589bf9841f3f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.704000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.840017px;}
.ls5{letter-spacing:2.371909px;}
.ls4{letter-spacing:2.387740px;}
.ls3{letter-spacing:2.391527px;}
.lsb{letter-spacing:2.449834px;}
.ls0{letter-spacing:2.964877px;}
.ls6{letter-spacing:2.987675px;}
.ls8{letter-spacing:2.988017px;}
.ls2{letter-spacing:2.988780px;}
.ls7{letter-spacing:2.990725px;}
.lsa{letter-spacing:35.863409px;}
.ls9{letter-spacing:35.869409px;}
.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;}
}
.ws4{word-spacing:-14.943900px;}
.ws23{word-spacing:-14.920027px;}
.ws3d{word-spacing:-11.955150px;}
.ws92{word-spacing:-11.936059px;}
.wsdd{word-spacing:-1.135736px;}
.ws2f{word-spacing:-0.896634px;}
.wse4{word-spacing:-0.537980px;}
.wsc5{word-spacing:-0.478205px;}
.wsd6{word-spacing:-0.476033px;}
.ws4a{word-spacing:-0.418429px;}
.wsb8{word-spacing:-0.358654px;}
.ws89{word-spacing:-0.179327px;}
.ws82{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsfa{word-spacing:-0.047821px;}
.wsef{word-spacing:-0.016652px;}
.ws64{word-spacing:-0.014363px;}
.ws90{word-spacing:-0.010967px;}
.wsa3{word-spacing:-0.005709px;}
.ws8e{word-spacing:-0.000249px;}
.ws3c{word-spacing:0.000000px;}
.wsba{word-spacing:0.033175px;}
.wsa0{word-spacing:0.059776px;}
.wsd{word-spacing:0.161395px;}
.ws7c{word-spacing:0.179327px;}
.wsaf{word-spacing:0.239102px;}
.ws113{word-spacing:0.286924px;}
.wsa4{word-spacing:0.478205px;}
.wsae{word-spacing:0.777083px;}
.ws28{word-spacing:0.836858px;}
.ws114{word-spacing:0.860771px;}
.ws7d{word-spacing:1.016185px;}
.ws4d{word-spacing:1.075961px;}
.ws16{word-spacing:1.075968px;}
.ws7b{word-spacing:1.255288px;}
.ws4e{word-spacing:1.554166px;}
.ws37{word-spacing:1.613941px;}
.ws19{word-spacing:1.613952px;}
.ws35{word-spacing:1.733492px;}
.ws7{word-spacing:1.775347px;}
.wsa9{word-spacing:1.853044px;}
.wsc1{word-spacing:1.912819px;}
.ws39{word-spacing:1.972595px;}
.ws10c{word-spacing:2.247568px;}
.ws36{word-spacing:2.271473px;}
.wsf8{word-spacing:2.331248px;}
.ws119{word-spacing:2.343209px;}
.ws8f{word-spacing:2.391030px;}
.ws24{word-spacing:2.450800px;}
.ws17{word-spacing:2.474726px;}
.wsf3{word-spacing:2.929004px;}
.ws63{word-spacing:2.988780px;}
.ws50{word-spacing:3.048556px;}
.ws6{word-spacing:3.066509px;}
.ws3f{word-spacing:3.108331px;}
.ws2b{word-spacing:3.168107px;}
.ws9{word-spacing:3.335501px;}
.wscb{word-spacing:3.407209px;}
.ws76{word-spacing:3.526760px;}
.ws77{word-spacing:3.586536px;}
.wscd{word-spacing:3.825638px;}
.ws4b{word-spacing:3.885414px;}
.ws10e{word-spacing:3.921289px;}
.ws79{word-spacing:3.945190px;}
.ws1f{word-spacing:4.034880px;}
.wsc0{word-spacing:4.124516px;}
.ws3b{word-spacing:4.184292px;}
.ws9e{word-spacing:4.244068px;}
.wsa1{word-spacing:4.303843px;}
.ws5f{word-spacing:4.363619px;}
.wse8{word-spacing:4.423394px;}
.wsa7{word-spacing:4.483170px;}
.ws75{word-spacing:4.602721px;}
.ws74{word-spacing:4.605025px;}
.ws5b{word-spacing:4.722272px;}
.ws11{word-spacing:4.734259px;}
.ws8d{word-spacing:4.743818px;}
.ws91{word-spacing:4.751240px;}
.ws21{word-spacing:4.782060px;}
.ws47{word-spacing:4.841824px;}
.ws69{word-spacing:4.901599px;}
.wsd4{word-spacing:5.021150px;}
.wsbf{word-spacing:5.080926px;}
.wsb0{word-spacing:5.200477px;}
.wsa6{word-spacing:5.260253px;}
.ws51{word-spacing:5.320028px;}
.ws20{word-spacing:5.355907px;}
.ws8a{word-spacing:5.379804px;}
.ws85{word-spacing:5.439580px;}
.ws110{word-spacing:5.451548px;}
.ws4f{word-spacing:5.559131px;}
.ws53{word-spacing:5.738458px;}
.ws42{word-spacing:5.858009px;}
.ws62{word-spacing:5.917113px;}
.wsa2{word-spacing:5.966986px;}
.ws3{word-spacing:5.977560px;}
.ws14{word-spacing:6.025421px;}
.ws60{word-spacing:6.037336px;}
.wsc4{word-spacing:6.216662px;}
.ws33{word-spacing:6.276438px;}
.ws27{word-spacing:6.336214px;}
.ws6a{word-spacing:6.455765px;}
.ws1{word-spacing:6.575340px;}
.ws5a{word-spacing:6.635092px;}
.wsab{word-spacing:6.694867px;}
.ws12{word-spacing:6.724800px;}
.wsbd{word-spacing:6.754643px;}
.ws1c{word-spacing:6.832397px;}
.ws108{word-spacing:6.886166px;}
.wscf{word-spacing:6.933970px;}
.wsd5{word-spacing:6.993745px;}
.wsf{word-spacing:7.047590px;}
.ws7a{word-spacing:7.113296px;}
.ws72{word-spacing:7.173072px;}
.ws9f{word-spacing:7.292623px;}
.wsf4{word-spacing:7.352399px;}
.ws7f{word-spacing:7.412174px;}
.ws80{word-spacing:7.471950px;}
.ws32{word-spacing:7.531726px;}
.wsb7{word-spacing:7.591501px;}
.wsc{word-spacing:7.639373px;}
.ws41{word-spacing:7.651277px;}
.ws8{word-spacing:7.693171px;}
.ws4c{word-spacing:7.770828px;}
.wsfd{word-spacing:7.794758px;}
.ws70{word-spacing:7.830604px;}
.wsda{word-spacing:7.890379px;}
.ws2e{word-spacing:8.069706px;}
.ws44{word-spacing:8.129482px;}
.ws29{word-spacing:8.189257px;}
.ws83{word-spacing:8.249033px;}
.wsac{word-spacing:8.368584px;}
.ws115{word-spacing:8.368605px;}
.ws13{word-spacing:8.392550px;}
.ws48{word-spacing:8.428360px;}
.ws34{word-spacing:8.488135px;}
.ws6e{word-spacing:8.607686px;}
.ws88{word-spacing:8.667462px;}
.ws2c{word-spacing:8.727238px;}
.ws10f{word-spacing:8.798990px;}
.wse{word-spacing:8.822938px;}
.wsb9{word-spacing:8.906564px;}
.ws43{word-spacing:8.966340px;}
.wsa5{word-spacing:9.085891px;}
.ws31{word-spacing:9.205442px;}
.wsf9{word-spacing:9.265218px;}
.ws9d{word-spacing:9.324994px;}
.ws118{word-spacing:9.325017px;}
.ws86{word-spacing:9.384769px;}
.ws10d{word-spacing:9.468479px;}
.wsd9{word-spacing:9.499450px;}
.wsbc{word-spacing:9.504320px;}
.wsb1{word-spacing:9.623872px;}
.ws104{word-spacing:9.755402px;}
.ws9c{word-spacing:9.803198px;}
.wsaa{word-spacing:10.281403px;}
.ws8c{word-spacing:10.341179px;}
.wsf6{word-spacing:10.460730px;}
.ws1b{word-spacing:10.544486px;}
.ws10b{word-spacing:10.568353px;}
.ws87{word-spacing:10.580281px;}
.wsa8{word-spacing:10.640057px;}
.wsdf{word-spacing:10.695236px;}
.wse0{word-spacing:10.699832px;}
.ws9b{word-spacing:10.759608px;}
.wsf2{word-spacing:10.819384px;}
.wsad{word-spacing:10.879159px;}
.wsdc{word-spacing:10.938935px;}
.wsdb{word-spacing:10.998710px;}
.wsb4{word-spacing:11.058486px;}
.wse2{word-spacing:11.118262px;}
.ws3a{word-spacing:11.178037px;}
.ws52{word-spacing:11.297588px;}
.ws5d{word-spacing:11.357364px;}
.ws57{word-spacing:11.476915px;}
.ws112{word-spacing:11.524765px;}
.ws7e{word-spacing:11.536691px;}
.ws103{word-spacing:11.620406px;}
.ws6c{word-spacing:11.716018px;}
.wsd0{word-spacing:11.895344px;}
.ws61{word-spacing:11.955120px;}
.ws56{word-spacing:12.074671px;}
.ws84{word-spacing:12.194222px;}
.ws68{word-spacing:12.253998px;}
.ws2d{word-spacing:12.373549px;}
.ws73{word-spacing:12.433325px;}
.ws10{word-spacing:12.481229px;}
.wsc3{word-spacing:12.612652px;}
.ws66{word-spacing:12.672427px;}
.wsf7{word-spacing:12.732203px;}
.ws67{word-spacing:12.791978px;}
.ws11c{word-spacing:12.863741px;}
.ws71{word-spacing:12.971305px;}
.ws6d{word-spacing:13.090856px;}
.ws25{word-spacing:13.150632px;}
.ws78{word-spacing:13.210408px;}
.wse1{word-spacing:13.509286px;}
.ws106{word-spacing:13.533230px;}
.ws26{word-spacing:13.569061px;}
.wsb2{word-spacing:13.628837px;}
.wsce{word-spacing:13.688612px;}
.ws65{word-spacing:13.808164px;}
.ws54{word-spacing:13.987490px;}
.wsec{word-spacing:14.107042px;}
.wsbe{word-spacing:14.166817px;}
.ws40{word-spacing:14.226593px;}
.wsf0{word-spacing:14.286368px;}
.ws5c{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws18{word-spacing:14.364173px;}
.wse9{word-spacing:14.645022px;}
.wsb3{word-spacing:14.764573px;}
.wsa{word-spacing:14.955955px;}
.ws38{word-spacing:15.362329px;}
.ws49{word-spacing:15.422105px;}
.wsf5{word-spacing:15.661207px;}
.wsc2{word-spacing:15.780758px;}
.wsd8{word-spacing:15.900310px;}
.wsf1{word-spacing:16.258963px;}
.wsbb{word-spacing:16.318739px;}
.ws5e{word-spacing:16.617617px;}
.wsb{word-spacing:16.623706px;}
.ws117{word-spacing:16.689389px;}
.ws46{word-spacing:16.737168px;}
.wsc9{word-spacing:16.796944px;}
.wsd1{word-spacing:16.856719px;}
.ws59{word-spacing:16.976270px;}
.wsb6{word-spacing:17.155597px;}
.wsb5{word-spacing:17.275148px;}
.wse5{word-spacing:17.334924px;}
.wsd3{word-spacing:17.454475px;}
.ws1a{word-spacing:17.484480px;}
.ws100{word-spacing:17.502340px;}
.ws8b{word-spacing:17.574026px;}
.wsc7{word-spacing:17.872904px;}
.ws22{word-spacing:17.932680px;}
.ws55{word-spacing:17.992456px;}
.wsfc{word-spacing:18.124007px;}
.wseb{word-spacing:18.231558px;}
.wsca{word-spacing:18.291334px;}
.wsea{word-spacing:18.470660px;}
.ws81{word-spacing:18.649987px;}
.wsc8{word-spacing:18.709763px;}
.ws109{word-spacing:18.793496px;}
.ws3e{word-spacing:19.486846px;}
.wsee{word-spacing:19.546621px;}
.ws6b{word-spacing:19.785724px;}
.ws58{word-spacing:19.905275px;}
.wscc{word-spacing:20.144377px;}
.ws116{word-spacing:20.275934px;}
.wse6{word-spacing:20.443255px;}
.ws2{word-spacing:20.861684px;}
.wsd2{word-spacing:21.220338px;}
.wsc6{word-spacing:21.339889px;}
.wsd7{word-spacing:21.399665px;}
.wse3{word-spacing:21.638767px;}
.ws107{word-spacing:21.758373px;}
.wse7{word-spacing:21.818094px;}
.ws2a{word-spacing:22.296299px;}
.ws10a{word-spacing:22.475682px;}
.wsed{word-spacing:22.774504px;}
.ws102{word-spacing:23.527735px;}
.ws15{word-spacing:23.671296px;}
.ws11a{word-spacing:23.766838px;}
.ws1e{word-spacing:24.693466px;}
.wsfe{word-spacing:25.392739px;}
.ws30{word-spacing:25.524181px;}
.wsff{word-spacing:25.918765px;}
.wsde{word-spacing:26.301264px;}
.ws111{word-spacing:27.305563px;}
.ws6f{word-spacing:28.811839px;}
.ws101{word-spacing:29.409669px;}
.ws45{word-spacing:29.828024px;}
.ws11d{word-spacing:30.892108px;}
.ws105{word-spacing:37.156606px;}
.ws1d{word-spacing:38.089267px;}
.ws11b{word-spacing:46.816367px;}
.wsfb{word-spacing:48.729191px;}
.ws97{word-spacing:59.767683px;}
.ws99{word-spacing:139.850363px;}
.ws96{word-spacing:141.166411px;}
.ws93{word-spacing:176.744938px;}
.ws95{word-spacing:204.624347px;}
.ws94{word-spacing:213.184235px;}
.ws9a{word-spacing:240.824542px;}
.ws98{word-spacing:255.075080px;}
._2{margin-left:-6.097111px;}
._1{margin-left:-4.782048px;}
._3{margin-left:-3.287670px;}
._0{margin-left:-2.151927px;}
._4{margin-left:-1.075968px;}
._b{width:1.137085px;}
._6{width:2.988780px;}
._8{width:14.764573px;}
._e{width:17.574038px;}
._c{width:20.801926px;}
._5{width:22.864311px;}
._9{width:24.448245px;}
._a{width:27.138122px;}
._17{width:28.154308px;}
._d{width:29.887800px;}
._18{width:31.262639px;}
._16{width:32.870578px;}
._7{width:43.038437px;}
._19{width:53.890690px;}
._f{width:71.013591px;}
._10{width:164.741967px;}
._13{width:167.037356px;}
._14{width:170.050054px;}
._15{width:200.607417px;}
._11{width:209.932434px;}
._12{width:221.839763px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.256600px;}
.fs6{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;}
.y32{bottom:113.332500px;}
.y31{bottom:126.783000px;}
.y176{bottom:129.024000px;}
.y4e{bottom:131.265000px;}
.y175{bottom:142.474500px;}
.y7d{bottom:149.197500px;}
.y4d{bottom:149.199000px;}
.y174{bottom:155.923500px;}
.yae{bottom:167.130000px;}
.y4c{bottom:167.131500px;}
.y173{bottom:169.372500px;}
.y172{bottom:182.823000px;}
.y30{bottom:183.147000px;}
.y4b{bottom:185.064000px;}
.y171{bottom:196.272000px;}
.y2f{bottom:198.090000px;}
.y4a{bottom:202.996500px;}
.y170{bottom:209.721000px;}
.y7c{bottom:210.441000px;}
.y2e{bottom:213.034500px;}
.yad{bottom:220.929000px;}
.y106{bottom:222.496500px;}
.y49{bottom:222.582000px;}
.y16f{bottom:223.171500px;}
.y136{bottom:225.453000px;}
.y2d{bottom:232.941000px;}
.y16e{bottom:236.620500px;}
.yac{bottom:238.861500px;}
.y105{bottom:240.430500px;}
.y48{bottom:240.514500px;}
.y7b{bottom:242.340000px;}
.y2c{bottom:247.885500px;}
.y16d{bottom:250.071000px;}
.y135{bottom:252.369000px;}
.yab{bottom:256.794000px;}
.ye0{bottom:256.795500px;}
.y104{bottom:258.363000px;}
.y47{bottom:258.448500px;}
.y7a{bottom:260.272500px;}
.y16c{bottom:263.520000px;}
.y2b{bottom:267.792000px;}
.y134{bottom:270.303000px;}
.yaa{bottom:274.726500px;}
.ydf{bottom:274.728000px;}
.y103{bottom:276.295500px;}
.y46{bottom:276.381000px;}
.y16b{bottom:276.969000px;}
.y79{bottom:278.205000px;}
.y2a{bottom:282.735000px;}
.y133{bottom:288.235500px;}
.y16a{bottom:290.419500px;}
.yde{bottom:292.660500px;}
.ya9{bottom:293.499000px;}
.y102{bottom:294.228000px;}
.y45{bottom:294.313500px;}
.y78{bottom:296.137500px;}
.y29{bottom:297.679500px;}
.y169{bottom:303.868500px;}
.y132{bottom:306.168000px;}
.ydd{bottom:310.593000px;}
.ya8{bottom:311.431500px;}
.y101{bottom:312.160500px;}
.y44{bottom:312.246000px;}
.y28{bottom:312.622500px;}
.y77{bottom:314.070000px;}
.y168{bottom:317.317500px;}
.y131{bottom:324.100500px;}
.y27{bottom:327.567000px;}
.ydc{bottom:328.525500px;}
.ya7{bottom:329.364000px;}
.y100{bottom:330.093000px;}
.y43{bottom:330.178500px;}
.y167{bottom:330.768000px;}
.y76{bottom:332.004000px;}
.y130{bottom:342.033000px;}
.y26{bottom:342.511500px;}
.y166{bottom:344.217000px;}
.ydb{bottom:346.458000px;}
.ya6{bottom:347.298000px;}
.yff{bottom:348.027000px;}
.y42{bottom:348.112500px;}
.y75{bottom:349.936500px;}
.y25{bottom:357.454500px;}
.y165{bottom:357.666000px;}
.y12f{bottom:359.965500px;}
.yda{bottom:364.392000px;}
.yfe{bottom:365.959500px;}
.y41{bottom:366.045000px;}
.y74{bottom:367.869000px;}
.y164{bottom:371.116500px;}
.y24{bottom:372.399000px;}
.ya5{bottom:372.874500px;}
.y12e{bottom:377.899500px;}
.yd9{bottom:382.005000px;}
.yfd{bottom:383.892000px;}
.y163{bottom:384.565500px;}
.y40{bottom:385.630500px;}
.y73{bottom:385.801500px;}
.y23{bottom:392.305500px;}
.y12d{bottom:395.832000px;}
.y162{bottom:398.016000px;}
.yd8{bottom:399.937500px;}
.yfc{bottom:401.824500px;}
.y3f{bottom:403.563000px;}
.y72{bottom:403.734000px;}
.y22{bottom:407.250000px;}
.ya4{bottom:408.027000px;}
.y161{bottom:411.465000px;}
.y12c{bottom:413.764500px;}
.yd7{bottom:417.870000px;}
.yfb{bottom:419.757000px;}
.y3e{bottom:421.495500px;}
.y21{bottom:422.193000px;}
.y160{bottom:424.914000px;}
.ya3{bottom:425.959500px;}
.y71{bottom:427.971000px;}
.y12b{bottom:434.094000px;}
.yd6{bottom:435.802500px;}
.y20{bottom:437.137500px;}
.yfa{bottom:437.689500px;}
.y15f{bottom:438.364500px;}
.y3d{bottom:439.428000px;}
.ya2{bottom:443.893500px;}
.y15e{bottom:451.813500px;}
.y12a{bottom:452.026500px;}
.y1f{bottom:452.082000px;}
.yd5{bottom:453.735000px;}
.yf9{bottom:455.623500px;}
.y3c{bottom:457.362000px;}
.y70{bottom:459.870000px;}
.ya1{bottom:461.826000px;}
.y15d{bottom:465.262500px;}
.y129{bottom:469.959000px;}
.yd4{bottom:471.669000px;}
.y1e{bottom:471.988500px;}
.yf8{bottom:473.556000px;}
.y3b{bottom:475.294500px;}
.y6f{bottom:477.802500px;}
.y15c{bottom:478.713000px;}
.ya0{bottom:479.758500px;}
.y1d{bottom:486.931500px;}
.y128{bottom:487.891500px;}
.yd3{bottom:489.601500px;}
.y15b{bottom:492.162000px;}
.y3a{bottom:493.227000px;}
.y6e{bottom:495.735000px;}
.y9f{bottom:497.691000px;}
.yf7{bottom:497.787000px;}
.y1c{bottom:501.876000px;}
.y15a{bottom:505.612500px;}
.y127{bottom:505.824000px;}
.yd2{bottom:507.214500px;}
.y39{bottom:511.159500px;}
.y6d{bottom:513.667500px;}
.y9e{bottom:515.623500px;}
.yf6{bottom:515.721000px;}
.y1b{bottom:516.820500px;}
.y159{bottom:519.061500px;}
.y126{bottom:523.758000px;}
.yd1{bottom:525.147000px;}
.y38{bottom:529.092000px;}
.y6c{bottom:531.600000px;}
.y1a{bottom:531.763500px;}
.y158{bottom:532.510500px;}
.y9d{bottom:533.556000px;}
.yf5{bottom:533.653500px;}
.y125{bottom:541.690500px;}
.yd0{bottom:543.079500px;}
.y157{bottom:545.961000px;}
.y19{bottom:546.708000px;}
.y37{bottom:547.026000px;}
.y6b{bottom:549.532500px;}
.y9c{bottom:551.490000px;}
.yf4{bottom:551.586000px;}
.y156{bottom:559.410000px;}
.y124{bottom:559.623000px;}
.ycf{bottom:561.012000px;}
.y18{bottom:561.652500px;}
.y36{bottom:564.958500px;}
.y6a{bottom:567.466500px;}
.y9b{bottom:569.422500px;}
.yf3{bottom:569.518500px;}
.y155{bottom:572.859000px;}
.y17{bottom:576.595500px;}
.y123{bottom:577.555500px;}
.yce{bottom:578.946000px;}
.y35{bottom:582.891000px;}
.y69{bottom:585.399000px;}
.y154{bottom:586.309500px;}
.y9a{bottom:587.355000px;}
.yf2{bottom:587.451000px;}
.y16{bottom:591.540000px;}
.y122{bottom:595.488000px;}
.ycd{bottom:596.878500px;}
.y153{bottom:599.758500px;}
.y34{bottom:600.823500px;}
.y68{bottom:603.331500px;}
.yf1{bottom:605.385000px;}
.y99{bottom:606.127500px;}
.y15{bottom:606.484500px;}
.y152{bottom:613.209000px;}
.y121{bottom:613.420500px;}
.ycc{bottom:614.811000px;}
.y33{bottom:618.756000px;}
.y67{bottom:621.264000px;}
.y14{bottom:621.427500px;}
.yf0{bottom:623.317500px;}
.y98{bottom:624.060000px;}
.y151{bottom:626.658000px;}
.y120{bottom:631.354500px;}
.ycb{bottom:632.743500px;}
.y13{bottom:636.372000px;}
.y66{bottom:639.196500px;}
.y150{bottom:640.107000px;}
.yef{bottom:641.250000px;}
.y97{bottom:641.992500px;}
.y11f{bottom:649.287000px;}
.yca{bottom:650.676000px;}
.y12{bottom:651.315000px;}
.y14f{bottom:653.557500px;}
.y65{bottom:657.130500px;}
.yee{bottom:659.182500px;}
.y96{bottom:659.925000px;}
.y14e{bottom:667.006500px;}
.y11e{bottom:667.219500px;}
.yc9{bottom:668.608500px;}
.y64{bottom:675.063000px;}
.yed{bottom:677.115000px;}
.y95{bottom:677.857500px;}
.y14d{bottom:680.455500px;}
.y11d{bottom:685.152000px;}
.yc8{bottom:686.542500px;}
.y63{bottom:692.995500px;}
.y14c{bottom:693.906000px;}
.y94{bottom:695.790000px;}
.yec{bottom:701.347500px;}
.y11c{bottom:703.084500px;}
.yc7{bottom:704.475000px;}
.y14b{bottom:707.355000px;}
.y62{bottom:710.928000px;}
.y93{bottom:713.724000px;}
.y11{bottom:717.994500px;}
.yeb{bottom:719.280000px;}
.y14a{bottom:720.805500px;}
.y11b{bottom:721.018500px;}
.yc6{bottom:726.795000px;}
.y61{bottom:728.860500px;}
.y92{bottom:731.656500px;}
.y149{bottom:734.254500px;}
.y10{bottom:736.488000px;}
.yea{bottom:737.212500px;}
.y11a{bottom:738.951000px;}
.y60{bottom:746.793000px;}
.y148{bottom:747.703500px;}
.y91{bottom:750.427500px;}
.yc5{bottom:752.898000px;}
.yf{bottom:754.981500px;}
.ye9{bottom:756.714000px;}
.y119{bottom:756.883500px;}
.y147{bottom:761.154000px;}
.y90{bottom:768.361500px;}
.yc4{bottom:770.830500px;}
.y5f{bottom:771.030000px;}
.ye{bottom:773.473500px;}
.y146{bottom:774.603000px;}
.ye8{bottom:774.646500px;}
.y118{bottom:774.816000px;}
.y8f{bottom:786.294000px;}
.y145{bottom:788.052000px;}
.yc3{bottom:788.763000px;}
.yd{bottom:792.189000px;}
.ye7{bottom:792.579000px;}
.y117{bottom:792.748500px;}
.y144{bottom:801.502500px;}
.y5e{bottom:802.929000px;}
.y8e{bottom:804.226500px;}
.yc2{bottom:806.695500px;}
.ye6{bottom:810.511500px;}
.y116{bottom:810.681000px;}
.y5d{bottom:820.861500px;}
.y8d{bottom:822.159000px;}
.y143{bottom:823.693500px;}
.yc1{bottom:824.628000px;}
.ye5{bottom:828.444000px;}
.yc{bottom:829.693500px;}
.y115{bottom:831.010500px;}
.y5c{bottom:838.794000px;}
.y8c{bottom:840.091500px;}
.yc0{bottom:842.560500px;}
.ye4{bottom:846.378000px;}
.yb{bottom:848.185500px;}
.y114{bottom:848.943000px;}
.y142{bottom:851.713500px;}
.y5b{bottom:856.726500px;}
.y8b{bottom:858.024000px;}
.ybf{bottom:860.494500px;}
.ye3{bottom:864.310500px;}
.ya{bottom:866.679000px;}
.y113{bottom:866.877000px;}
.y141{bottom:869.646000px;}
.y5a{bottom:874.659000px;}
.y8a{bottom:875.958000px;}
.ybe{bottom:878.427000px;}
.ye2{bottom:882.243000px;}
.y112{bottom:884.809500px;}
.y9{bottom:885.172500px;}
.y140{bottom:892.287000px;}
.y59{bottom:892.593000px;}
.y89{bottom:893.890500px;}
.ybd{bottom:896.359500px;}
.ye1{bottom:900.175500px;}
.y111{bottom:902.557500px;}
.y8{bottom:903.666000px;}
.y88{bottom:911.823000px;}
.ybc{bottom:914.292000px;}
.y58{bottom:916.830000px;}
.y13f{bottom:920.307000px;}
.y110{bottom:920.490000px;}
.y7{bottom:922.380000px;}
.y87{bottom:930.595500px;}
.ybb{bottom:932.224500px;}
.y13e{bottom:938.239500px;}
.y10f{bottom:938.424000px;}
.y86{bottom:948.528000px;}
.y57{bottom:948.727500px;}
.y13d{bottom:956.172000px;}
.y10e{bottom:956.356500px;}
.y6{bottom:959.884500px;}
.y85{bottom:966.460500px;}
.y56{bottom:966.660000px;}
.y13c{bottom:974.104500px;}
.y10d{bottom:974.289000px;}
.y5{bottom:978.378000px;}
.y84{bottom:984.393000px;}
.y55{bottom:984.592500px;}
.yba{bottom:985.873500px;}
.y13b{bottom:992.037000px;}
.y10c{bottom:992.221500px;}
.yb8{bottom:992.598000px;}
.y4{bottom:996.870000px;}
.yb3{bottom:999.324000px;}
.y83{bottom:1002.325500px;}
.y54{bottom:1002.526500px;}
.yb7{bottom:1006.048500px;}
.y13a{bottom:1009.969500px;}
.y10b{bottom:1010.154000px;}
.yb2{bottom:1012.773000px;}
.y3{bottom:1015.363500px;}
.yb6{bottom:1019.497500px;}
.y82{bottom:1020.258000px;}
.y53{bottom:1020.459000px;}
.yb1{bottom:1026.222000px;}
.y139{bottom:1027.903500px;}
.y10a{bottom:1028.088000px;}
.y2{bottom:1034.079000px;}
.y81{bottom:1038.192000px;}
.y52{bottom:1038.391500px;}
.yb5{bottom:1040.755500px;}
.y138{bottom:1045.836000px;}
.y109{bottom:1046.020500px;}
.yb0{bottom:1047.480000px;}
.yb4{bottom:1054.204500px;}
.y80{bottom:1056.124500px;}
.y51{bottom:1056.324000px;}
.yb9{bottom:1060.930500px;}
.y137{bottom:1063.768500px;}
.y108{bottom:1063.953000px;}
.y7f{bottom:1074.057000px;}
.y50{bottom:1074.256500px;}
.y1{bottom:1081.152000px;}
.y107{bottom:1081.701000px;}
.yaf{bottom:1086.184500px;}
.y7e{bottom:1099.633500px;}
.y4f{bottom:1099.635000px;}
.h7{height:32.900573px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h9{height:41.484266px;}
.h2{height:45.238339px;}
.h8{height:58.604573px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:73.446000px;}
.x20{left:82.060500px;}
.x1{left:85.894500px;}
.x15{left:88.509000px;}
.x13{left:92.388000px;}
.x42{left:103.479000px;}
.x3f{left:109.291500px;}
.x4{left:118.917000px;}
.x3{left:126.268500px;}
.x14{left:127.273500px;}
.x6{left:133.995000px;}
.x11{left:150.349500px;}
.x2e{left:152.388000px;}
.x5{left:167.656500px;}
.x31{left:173.238000px;}
.x2{left:176.224500px;}
.x33{left:180.207000px;}
.x32{left:182.353500px;}
.x43{left:198.258000px;}
.x2d{left:204.258000px;}
.x30{left:282.150000px;}
.x35{left:302.305500px;}
.x36{left:313.602000px;}
.x37{left:316.585500px;}
.x34{left:322.653000px;}
.x24{left:344.179500px;}
.x22{left:356.748000px;}
.x17{left:363.822000px;}
.x21{left:369.793500px;}
.x23{left:371.467500px;}
.x18{left:382.764000px;}
.x9{left:384.898500px;}
.x8{left:392.251500px;}
.xb{left:399.976500px;}
.x19{left:417.649500px;}
.x16{left:422.020500px;}
.xa{left:433.638000px;}
.x2f{left:436.213500px;}
.x7{left:449.046000px;}
.x2c{left:467.967000px;}
.x38{left:471.727500px;}
.x45{left:473.944500px;}
.x2b{left:482.910000px;}
.x39{left:493.645500px;}
.x46{left:495.355500px;}
.x41{left:498.000000px;}
.x40{left:569.893500px;}
.x44{left:591.090000px;}
.x29{left:594.367500px;}
.x2a{left:597.949500px;}
.x26{left:613.167000px;}
.x3c{left:614.404500px;}
.x3d{left:615.738000px;}
.x28{left:616.798500px;}
.x3e{left:623.371500px;}
.x27{left:631.951500px;}
.x3b{left:634.423500px;}
.x3a{left:637.089000px;}
.x25{left:647.956500px;}
.x10{left:650.881500px;}
.xd{left:652.525500px;}
.x1f{left:654.198000px;}
.x1c{left:667.984500px;}
.xf{left:673.864500px;}
.x1d{left:681.001500px;}
.x1b{left:685.305000px;}
.xe{left:688.189500px;}
.x1e{left:691.230000px;}
.x1a{left:699.691500px;}
.xc{left:705.258000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.848000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.746682pt;}
.ls5{letter-spacing:2.108364pt;}
.ls4{letter-spacing:2.122436pt;}
.ls3{letter-spacing:2.125802pt;}
.lsb{letter-spacing:2.177630pt;}
.ls0{letter-spacing:2.635446pt;}
.ls6{letter-spacing:2.655711pt;}
.ls8{letter-spacing:2.656015pt;}
.ls2{letter-spacing:2.656693pt;}
.ls7{letter-spacing:2.658422pt;}
.lsa{letter-spacing:31.878586pt;}
.ls9{letter-spacing:31.883919pt;}
.ws4{word-spacing:-13.283467pt;}
.ws23{word-spacing:-13.262246pt;}
.ws3d{word-spacing:-10.626800pt;}
.ws92{word-spacing:-10.609830pt;}
.wsdd{word-spacing:-1.009543pt;}
.ws2f{word-spacing:-0.797008pt;}
.wse4{word-spacing:-0.478205pt;}
.wsc5{word-spacing:-0.425071pt;}
.wsd6{word-spacing:-0.423140pt;}
.ws4a{word-spacing:-0.371937pt;}
.wsb8{word-spacing:-0.318803pt;}
.ws89{word-spacing:-0.159402pt;}
.ws82{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsfa{word-spacing:-0.042507pt;}
.wsef{word-spacing:-0.014802pt;}
.ws64{word-spacing:-0.012767pt;}
.ws90{word-spacing:-0.009749pt;}
.wsa3{word-spacing:-0.005075pt;}
.ws8e{word-spacing:-0.000221pt;}
.ws3c{word-spacing:0.000000pt;}
.wsba{word-spacing:0.029489pt;}
.wsa0{word-spacing:0.053134pt;}
.wsd{word-spacing:0.143462pt;}
.ws7c{word-spacing:0.159402pt;}
.wsaf{word-spacing:0.212535pt;}
.ws113{word-spacing:0.255043pt;}
.wsa4{word-spacing:0.425071pt;}
.wsae{word-spacing:0.690740pt;}
.ws28{word-spacing:0.743874pt;}
.ws114{word-spacing:0.765130pt;}
.ws7d{word-spacing:0.903276pt;}
.ws4d{word-spacing:0.956410pt;}
.ws16{word-spacing:0.956416pt;}
.ws7b{word-spacing:1.115811pt;}
.ws4e{word-spacing:1.381481pt;}
.ws37{word-spacing:1.434614pt;}
.ws19{word-spacing:1.434624pt;}
.ws35{word-spacing:1.540882pt;}
.ws7{word-spacing:1.578086pt;}
.wsa9{word-spacing:1.647150pt;}
.wsc1{word-spacing:1.700284pt;}
.ws39{word-spacing:1.753418pt;}
.ws10c{word-spacing:1.997838pt;}
.ws36{word-spacing:2.019087pt;}
.wsf8{word-spacing:2.072221pt;}
.ws119{word-spacing:2.082853pt;}
.ws8f{word-spacing:2.125360pt;}
.ws24{word-spacing:2.178489pt;}
.ws17{word-spacing:2.199757pt;}
.wsf3{word-spacing:2.603559pt;}
.ws63{word-spacing:2.656693pt;}
.ws50{word-spacing:2.709827pt;}
.ws6{word-spacing:2.725786pt;}
.ws3f{word-spacing:2.762961pt;}
.ws2b{word-spacing:2.816095pt;}
.ws9{word-spacing:2.964890pt;}
.wscb{word-spacing:3.028630pt;}
.ws76{word-spacing:3.134898pt;}
.ws77{word-spacing:3.188032pt;}
.wscd{word-spacing:3.400567pt;}
.ws4b{word-spacing:3.453701pt;}
.ws10e{word-spacing:3.485590pt;}
.ws79{word-spacing:3.506835pt;}
.ws1f{word-spacing:3.586560pt;}
.wsc0{word-spacing:3.666237pt;}
.ws3b{word-spacing:3.719371pt;}
.ws9e{word-spacing:3.772505pt;}
.wsa1{word-spacing:3.825638pt;}
.ws5f{word-spacing:3.878772pt;}
.wse8{word-spacing:3.931906pt;}
.wsa7{word-spacing:3.985040pt;}
.ws75{word-spacing:4.091308pt;}
.ws74{word-spacing:4.093356pt;}
.ws5b{word-spacing:4.197575pt;}
.ws11{word-spacing:4.208230pt;}
.ws8d{word-spacing:4.216727pt;}
.ws91{word-spacing:4.223324pt;}
.ws21{word-spacing:4.250720pt;}
.ws47{word-spacing:4.303843pt;}
.ws69{word-spacing:4.356977pt;}
.wsd4{word-spacing:4.463245pt;}
.wsbf{word-spacing:4.516379pt;}
.wsb0{word-spacing:4.622646pt;}
.wsa6{word-spacing:4.675780pt;}
.ws51{word-spacing:4.728914pt;}
.ws20{word-spacing:4.760806pt;}
.ws8a{word-spacing:4.782048pt;}
.ws85{word-spacing:4.835182pt;}
.ws110{word-spacing:4.845821pt;}
.ws4f{word-spacing:4.941450pt;}
.ws53{word-spacing:5.100851pt;}
.ws42{word-spacing:5.207119pt;}
.ws62{word-spacing:5.259656pt;}
.wsa2{word-spacing:5.303987pt;}
.ws3{word-spacing:5.313387pt;}
.ws14{word-spacing:5.355930pt;}
.ws60{word-spacing:5.366521pt;}
.wsc4{word-spacing:5.525922pt;}
.ws33{word-spacing:5.579056pt;}
.ws27{word-spacing:5.632190pt;}
.ws6a{word-spacing:5.738458pt;}
.ws1{word-spacing:5.844747pt;}
.ws5a{word-spacing:5.897859pt;}
.wsab{word-spacing:5.950993pt;}
.ws12{word-spacing:5.977600pt;}
.wsbd{word-spacing:6.004127pt;}
.ws1c{word-spacing:6.073242pt;}
.ws108{word-spacing:6.121037pt;}
.wscf{word-spacing:6.163529pt;}
.wsd5{word-spacing:6.216662pt;}
.wsf{word-spacing:6.264525pt;}
.ws7a{word-spacing:6.322930pt;}
.ws72{word-spacing:6.376064pt;}
.ws9f{word-spacing:6.482332pt;}
.wsf4{word-spacing:6.535466pt;}
.ws7f{word-spacing:6.588599pt;}
.ws80{word-spacing:6.641733pt;}
.ws32{word-spacing:6.694867pt;}
.wsb7{word-spacing:6.748001pt;}
.wsc{word-spacing:6.790554pt;}
.ws41{word-spacing:6.801135pt;}
.ws8{word-spacing:6.838374pt;}
.ws4c{word-spacing:6.907403pt;}
.wsfd{word-spacing:6.928674pt;}
.ws70{word-spacing:6.960537pt;}
.wsda{word-spacing:7.013670pt;}
.ws2e{word-spacing:7.173072pt;}
.ws44{word-spacing:7.226206pt;}
.ws29{word-spacing:7.279340pt;}
.ws83{word-spacing:7.332474pt;}
.wsac{word-spacing:7.438741pt;}
.ws115{word-spacing:7.438760pt;}
.ws13{word-spacing:7.460045pt;}
.ws48{word-spacing:7.491875pt;}
.ws34{word-spacing:7.545009pt;}
.ws6e{word-spacing:7.651277pt;}
.ws88{word-spacing:7.704411pt;}
.ws2c{word-spacing:7.757545pt;}
.ws10f{word-spacing:7.821325pt;}
.wse{word-spacing:7.842611pt;}
.wsb9{word-spacing:7.916946pt;}
.ws43{word-spacing:7.970080pt;}
.wsa5{word-spacing:8.076348pt;}
.ws31{word-spacing:8.182615pt;}
.wsf9{word-spacing:8.235749pt;}
.ws9d{word-spacing:8.288883pt;}
.ws118{word-spacing:8.288904pt;}
.ws86{word-spacing:8.342017pt;}
.ws10d{word-spacing:8.416426pt;}
.wsd9{word-spacing:8.443955pt;}
.wsbc{word-spacing:8.448285pt;}
.wsb1{word-spacing:8.554553pt;}
.ws104{word-spacing:8.671469pt;}
.ws9c{word-spacing:8.713954pt;}
.wsaa{word-spacing:9.139025pt;}
.ws8c{word-spacing:9.192159pt;}
.wsf6{word-spacing:9.298427pt;}
.ws1b{word-spacing:9.372877pt;}
.ws10b{word-spacing:9.394091pt;}
.ws87{word-spacing:9.404694pt;}
.wsa8{word-spacing:9.457828pt;}
.wsdf{word-spacing:9.506877pt;}
.wse0{word-spacing:9.510962pt;}
.ws9b{word-spacing:9.564096pt;}
.wsf2{word-spacing:9.617230pt;}
.wsad{word-spacing:9.670364pt;}
.wsdc{word-spacing:9.723498pt;}
.wsdb{word-spacing:9.776631pt;}
.wsb4{word-spacing:9.829765pt;}
.wse2{word-spacing:9.882899pt;}
.ws3a{word-spacing:9.936033pt;}
.ws52{word-spacing:10.042301pt;}
.ws5d{word-spacing:10.095435pt;}
.ws57{word-spacing:10.201702pt;}
.ws112{word-spacing:10.244235pt;}
.ws7e{word-spacing:10.254836pt;}
.ws103{word-spacing:10.329250pt;}
.ws6c{word-spacing:10.414238pt;}
.wsd0{word-spacing:10.573639pt;}
.ws61{word-spacing:10.626773pt;}
.ws56{word-spacing:10.733041pt;}
.ws84{word-spacing:10.839309pt;}
.ws68{word-spacing:10.892443pt;}
.ws2d{word-spacing:10.998710pt;}
.ws73{word-spacing:11.051844pt;}
.ws10{word-spacing:11.094426pt;}
.wsc3{word-spacing:11.211246pt;}
.ws66{word-spacing:11.264380pt;}
.wsf7{word-spacing:11.317514pt;}
.ws67{word-spacing:11.370647pt;}
.ws11c{word-spacing:11.434437pt;}
.ws71{word-spacing:11.530049pt;}
.ws6d{word-spacing:11.636317pt;}
.ws25{word-spacing:11.689451pt;}
.ws78{word-spacing:11.742585pt;}
.wse1{word-spacing:12.008254pt;}
.ws106{word-spacing:12.029538pt;}
.ws26{word-spacing:12.061388pt;}
.wsb2{word-spacing:12.114522pt;}
.wsce{word-spacing:12.167655pt;}
.ws65{word-spacing:12.273923pt;}
.ws54{word-spacing:12.433325pt;}
.wsec{word-spacing:12.539593pt;}
.wsbe{word-spacing:12.592726pt;}
.ws40{word-spacing:12.645860pt;}
.wsf0{word-spacing:12.698994pt;}
.ws5c{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws18{word-spacing:12.768154pt;}
.wse9{word-spacing:13.017797pt;}
.wsb3{word-spacing:13.124065pt;}
.wsa{word-spacing:13.294182pt;}
.ws38{word-spacing:13.655404pt;}
.ws49{word-spacing:13.708538pt;}
.wsf5{word-spacing:13.921073pt;}
.wsc2{word-spacing:14.027341pt;}
.wsd8{word-spacing:14.133609pt;}
.wsf1{word-spacing:14.452412pt;}
.wsbb{word-spacing:14.505546pt;}
.ws5e{word-spacing:14.771215pt;}
.wsb{word-spacing:14.776627pt;}
.ws117{word-spacing:14.835013pt;}
.ws46{word-spacing:14.877483pt;}
.wsc9{word-spacing:14.930617pt;}
.wsd1{word-spacing:14.983750pt;}
.ws59{word-spacing:15.090018pt;}
.wsb6{word-spacing:15.249420pt;}
.wsb5{word-spacing:15.355687pt;}
.wse5{word-spacing:15.408821pt;}
.wsd3{word-spacing:15.515089pt;}
.ws1a{word-spacing:15.541760pt;}
.ws100{word-spacing:15.557635pt;}
.ws8b{word-spacing:15.621357pt;}
.wsc7{word-spacing:15.887026pt;}
.ws22{word-spacing:15.940160pt;}
.ws55{word-spacing:15.993294pt;}
.wsfc{word-spacing:16.110229pt;}
.wseb{word-spacing:16.205829pt;}
.wsca{word-spacing:16.258963pt;}
.wsea{word-spacing:16.418365pt;}
.ws81{word-spacing:16.577766pt;}
.wsc8{word-spacing:16.630900pt;}
.ws109{word-spacing:16.705330pt;}
.ws3e{word-spacing:17.321641pt;}
.wsee{word-spacing:17.374774pt;}
.ws6b{word-spacing:17.587310pt;}
.ws58{word-spacing:17.693578pt;}
.wscc{word-spacing:17.906113pt;}
.ws116{word-spacing:18.023053pt;}
.wse6{word-spacing:18.171782pt;}
.ws2{word-spacing:18.543719pt;}
.wsd2{word-spacing:18.862523pt;}
.wsc6{word-spacing:18.968790pt;}
.wsd7{word-spacing:19.021924pt;}
.wse3{word-spacing:19.234460pt;}
.ws107{word-spacing:19.340776pt;}
.wse7{word-spacing:19.393861pt;}
.ws2a{word-spacing:19.818932pt;}
.ws10a{word-spacing:19.978384pt;}
.wsed{word-spacing:20.244003pt;}
.ws102{word-spacing:20.913542pt;}
.ws15{word-spacing:21.041152pt;}
.ws11a{word-spacing:21.126078pt;}
.ws1e{word-spacing:21.949747pt;}
.wsfe{word-spacing:22.571323pt;}
.ws30{word-spacing:22.688161pt;}
.wsff{word-spacing:23.038902pt;}
.wsde{word-spacing:23.378901pt;}
.ws111{word-spacing:24.271611pt;}
.ws6f{word-spacing:25.610524pt;}
.ws101{word-spacing:26.141928pt;}
.ws45{word-spacing:26.513799pt;}
.ws11d{word-spacing:27.459651pt;}
.ws105{word-spacing:33.028094pt;}
.ws1d{word-spacing:33.857126pt;}
.ws11b{word-spacing:41.614549pt;}
.wsfb{word-spacing:43.314837pt;}
.ws97{word-spacing:53.126829pt;}
.ws99{word-spacing:124.311434pt;}
.ws96{word-spacing:125.481254pt;}
.ws93{word-spacing:157.106611pt;}
.ws95{word-spacing:181.888309pt;}
.ws94{word-spacing:189.497098pt;}
.ws9a{word-spacing:214.066259pt;}
.ws98{word-spacing:226.733405pt;}
._2{margin-left:-5.419654pt;}
._1{margin-left:-4.250709pt;}
._3{margin-left:-2.922373pt;}
._0{margin-left:-1.912824pt;}
._4{margin-left:-0.956416pt;}
._b{width:1.010742pt;}
._6{width:2.656693pt;}
._8{width:13.124065pt;}
._e{width:15.621367pt;}
._c{width:18.490601pt;}
._5{width:20.323832pt;}
._9{width:21.731773pt;}
._a{width:24.122775pt;}
._17{width:25.026051pt;}
._d{width:26.566933pt;}
._18{width:27.789012pt;}
._16{width:29.218291pt;}
._7{width:38.256389pt;}
._19{width:47.902835pt;}
._f{width:63.123192pt;}
._10{width:146.437304pt;}
._13{width:148.477650pt;}
._14{width:151.155603pt;}
._15{width:178.317704pt;}
._11{width:186.606608pt;}
._12{width:197.190901pt;}
.fs5{font-size:34.005867pt;}
.fs6{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;}
.y32{bottom:100.740000pt;}
.y31{bottom:112.696000pt;}
.y176{bottom:114.688000pt;}
.y4e{bottom:116.680000pt;}
.y175{bottom:126.644000pt;}
.y7d{bottom:132.620000pt;}
.y4d{bottom:132.621333pt;}
.y174{bottom:138.598667pt;}
.yae{bottom:148.560000pt;}
.y4c{bottom:148.561333pt;}
.y173{bottom:150.553333pt;}
.y172{bottom:162.509333pt;}
.y30{bottom:162.797333pt;}
.y4b{bottom:164.501333pt;}
.y171{bottom:174.464000pt;}
.y2f{bottom:176.080000pt;}
.y4a{bottom:180.441333pt;}
.y170{bottom:186.418667pt;}
.y7c{bottom:187.058667pt;}
.y2e{bottom:189.364000pt;}
.yad{bottom:196.381333pt;}
.y106{bottom:197.774667pt;}
.y49{bottom:197.850667pt;}
.y16f{bottom:198.374667pt;}
.y136{bottom:200.402667pt;}
.y2d{bottom:207.058667pt;}
.y16e{bottom:210.329333pt;}
.yac{bottom:212.321333pt;}
.y105{bottom:213.716000pt;}
.y48{bottom:213.790667pt;}
.y7b{bottom:215.413333pt;}
.y2c{bottom:220.342667pt;}
.y16d{bottom:222.285333pt;}
.y135{bottom:224.328000pt;}
.yab{bottom:228.261333pt;}
.ye0{bottom:228.262667pt;}
.y104{bottom:229.656000pt;}
.y47{bottom:229.732000pt;}
.y7a{bottom:231.353333pt;}
.y16c{bottom:234.240000pt;}
.y2b{bottom:238.037333pt;}
.y134{bottom:240.269333pt;}
.yaa{bottom:244.201333pt;}
.ydf{bottom:244.202667pt;}
.y103{bottom:245.596000pt;}
.y46{bottom:245.672000pt;}
.y16b{bottom:246.194667pt;}
.y79{bottom:247.293333pt;}
.y2a{bottom:251.320000pt;}
.y133{bottom:256.209333pt;}
.y16a{bottom:258.150667pt;}
.yde{bottom:260.142667pt;}
.ya9{bottom:260.888000pt;}
.y102{bottom:261.536000pt;}
.y45{bottom:261.612000pt;}
.y78{bottom:263.233333pt;}
.y29{bottom:264.604000pt;}
.y169{bottom:270.105333pt;}
.y132{bottom:272.149333pt;}
.ydd{bottom:276.082667pt;}
.ya8{bottom:276.828000pt;}
.y101{bottom:277.476000pt;}
.y44{bottom:277.552000pt;}
.y28{bottom:277.886667pt;}
.y77{bottom:279.173333pt;}
.y168{bottom:282.060000pt;}
.y131{bottom:288.089333pt;}
.y27{bottom:291.170667pt;}
.ydc{bottom:292.022667pt;}
.ya7{bottom:292.768000pt;}
.y100{bottom:293.416000pt;}
.y43{bottom:293.492000pt;}
.y167{bottom:294.016000pt;}
.y76{bottom:295.114667pt;}
.y130{bottom:304.029333pt;}
.y26{bottom:304.454667pt;}
.y166{bottom:305.970667pt;}
.ydb{bottom:307.962667pt;}
.ya6{bottom:308.709333pt;}
.yff{bottom:309.357333pt;}
.y42{bottom:309.433333pt;}
.y75{bottom:311.054667pt;}
.y25{bottom:317.737333pt;}
.y165{bottom:317.925333pt;}
.y12f{bottom:319.969333pt;}
.yda{bottom:323.904000pt;}
.yfe{bottom:325.297333pt;}
.y41{bottom:325.373333pt;}
.y74{bottom:326.994667pt;}
.y164{bottom:329.881333pt;}
.y24{bottom:331.021333pt;}
.ya5{bottom:331.444000pt;}
.y12e{bottom:335.910667pt;}
.yd9{bottom:339.560000pt;}
.yfd{bottom:341.237333pt;}
.y163{bottom:341.836000pt;}
.y40{bottom:342.782667pt;}
.y73{bottom:342.934667pt;}
.y23{bottom:348.716000pt;}
.y12d{bottom:351.850667pt;}
.y162{bottom:353.792000pt;}
.yd8{bottom:355.500000pt;}
.yfc{bottom:357.177333pt;}
.y3f{bottom:358.722667pt;}
.y72{bottom:358.874667pt;}
.y22{bottom:362.000000pt;}
.ya4{bottom:362.690667pt;}
.y161{bottom:365.746667pt;}
.y12c{bottom:367.790667pt;}
.yd7{bottom:371.440000pt;}
.yfb{bottom:373.117333pt;}
.y3e{bottom:374.662667pt;}
.y21{bottom:375.282667pt;}
.y160{bottom:377.701333pt;}
.ya3{bottom:378.630667pt;}
.y71{bottom:380.418667pt;}
.y12b{bottom:385.861333pt;}
.yd6{bottom:387.380000pt;}
.y20{bottom:388.566667pt;}
.yfa{bottom:389.057333pt;}
.y15f{bottom:389.657333pt;}
.y3d{bottom:390.602667pt;}
.ya2{bottom:394.572000pt;}
.y15e{bottom:401.612000pt;}
.y12a{bottom:401.801333pt;}
.y1f{bottom:401.850667pt;}
.yd5{bottom:403.320000pt;}
.yf9{bottom:404.998667pt;}
.y3c{bottom:406.544000pt;}
.y70{bottom:408.773333pt;}
.ya1{bottom:410.512000pt;}
.y15d{bottom:413.566667pt;}
.y129{bottom:417.741333pt;}
.yd4{bottom:419.261333pt;}
.y1e{bottom:419.545333pt;}
.yf8{bottom:420.938667pt;}
.y3b{bottom:422.484000pt;}
.y6f{bottom:424.713333pt;}
.y15c{bottom:425.522667pt;}
.ya0{bottom:426.452000pt;}
.y1d{bottom:432.828000pt;}
.y128{bottom:433.681333pt;}
.yd3{bottom:435.201333pt;}
.y15b{bottom:437.477333pt;}
.y3a{bottom:438.424000pt;}
.y6e{bottom:440.653333pt;}
.y9f{bottom:442.392000pt;}
.yf7{bottom:442.477333pt;}
.y1c{bottom:446.112000pt;}
.y15a{bottom:449.433333pt;}
.y127{bottom:449.621333pt;}
.yd2{bottom:450.857333pt;}
.y39{bottom:454.364000pt;}
.y6d{bottom:456.593333pt;}
.y9e{bottom:458.332000pt;}
.yf6{bottom:458.418667pt;}
.y1b{bottom:459.396000pt;}
.y159{bottom:461.388000pt;}
.y126{bottom:465.562667pt;}
.yd1{bottom:466.797333pt;}
.y38{bottom:470.304000pt;}
.y6c{bottom:472.533333pt;}
.y1a{bottom:472.678667pt;}
.y158{bottom:473.342667pt;}
.y9d{bottom:474.272000pt;}
.yf5{bottom:474.358667pt;}
.y125{bottom:481.502667pt;}
.yd0{bottom:482.737333pt;}
.y157{bottom:485.298667pt;}
.y19{bottom:485.962667pt;}
.y37{bottom:486.245333pt;}
.y6b{bottom:488.473333pt;}
.y9c{bottom:490.213333pt;}
.yf4{bottom:490.298667pt;}
.y156{bottom:497.253333pt;}
.y124{bottom:497.442667pt;}
.ycf{bottom:498.677333pt;}
.y18{bottom:499.246667pt;}
.y36{bottom:502.185333pt;}
.y6a{bottom:504.414667pt;}
.y9b{bottom:506.153333pt;}
.yf3{bottom:506.238667pt;}
.y155{bottom:509.208000pt;}
.y17{bottom:512.529333pt;}
.y123{bottom:513.382667pt;}
.yce{bottom:514.618667pt;}
.y35{bottom:518.125333pt;}
.y69{bottom:520.354667pt;}
.y154{bottom:521.164000pt;}
.y9a{bottom:522.093333pt;}
.yf2{bottom:522.178667pt;}
.y16{bottom:525.813333pt;}
.y122{bottom:529.322667pt;}
.ycd{bottom:530.558667pt;}
.y153{bottom:533.118667pt;}
.y34{bottom:534.065333pt;}
.y68{bottom:536.294667pt;}
.yf1{bottom:538.120000pt;}
.y99{bottom:538.780000pt;}
.y15{bottom:539.097333pt;}
.y152{bottom:545.074667pt;}
.y121{bottom:545.262667pt;}
.ycc{bottom:546.498667pt;}
.y33{bottom:550.005333pt;}
.y67{bottom:552.234667pt;}
.y14{bottom:552.380000pt;}
.yf0{bottom:554.060000pt;}
.y98{bottom:554.720000pt;}
.y151{bottom:557.029333pt;}
.y120{bottom:561.204000pt;}
.ycb{bottom:562.438667pt;}
.y13{bottom:565.664000pt;}
.y66{bottom:568.174667pt;}
.y150{bottom:568.984000pt;}
.yef{bottom:570.000000pt;}
.y97{bottom:570.660000pt;}
.y11f{bottom:577.144000pt;}
.yca{bottom:578.378667pt;}
.y12{bottom:578.946667pt;}
.y14f{bottom:580.940000pt;}
.y65{bottom:584.116000pt;}
.yee{bottom:585.940000pt;}
.y96{bottom:586.600000pt;}
.y14e{bottom:592.894667pt;}
.y11e{bottom:593.084000pt;}
.yc9{bottom:594.318667pt;}
.y64{bottom:600.056000pt;}
.yed{bottom:601.880000pt;}
.y95{bottom:602.540000pt;}
.y14d{bottom:604.849333pt;}
.y11d{bottom:609.024000pt;}
.yc8{bottom:610.260000pt;}
.y63{bottom:615.996000pt;}
.y14c{bottom:616.805333pt;}
.y94{bottom:618.480000pt;}
.yec{bottom:623.420000pt;}
.y11c{bottom:624.964000pt;}
.yc7{bottom:626.200000pt;}
.y14b{bottom:628.760000pt;}
.y62{bottom:631.936000pt;}
.y93{bottom:634.421333pt;}
.y11{bottom:638.217333pt;}
.yeb{bottom:639.360000pt;}
.y14a{bottom:640.716000pt;}
.y11b{bottom:640.905333pt;}
.yc6{bottom:646.040000pt;}
.y61{bottom:647.876000pt;}
.y92{bottom:650.361333pt;}
.y149{bottom:652.670667pt;}
.y10{bottom:654.656000pt;}
.yea{bottom:655.300000pt;}
.y11a{bottom:656.845333pt;}
.y60{bottom:663.816000pt;}
.y148{bottom:664.625333pt;}
.y91{bottom:667.046667pt;}
.yc5{bottom:669.242667pt;}
.yf{bottom:671.094667pt;}
.ye9{bottom:672.634667pt;}
.y119{bottom:672.785333pt;}
.y147{bottom:676.581333pt;}
.y90{bottom:682.988000pt;}
.yc4{bottom:685.182667pt;}
.y5f{bottom:685.360000pt;}
.ye{bottom:687.532000pt;}
.y146{bottom:688.536000pt;}
.ye8{bottom:688.574667pt;}
.y118{bottom:688.725333pt;}
.y8f{bottom:698.928000pt;}
.y145{bottom:700.490667pt;}
.yc3{bottom:701.122667pt;}
.yd{bottom:704.168000pt;}
.ye7{bottom:704.514667pt;}
.y117{bottom:704.665333pt;}
.y144{bottom:712.446667pt;}
.y5e{bottom:713.714667pt;}
.y8e{bottom:714.868000pt;}
.yc2{bottom:717.062667pt;}
.ye6{bottom:720.454667pt;}
.y116{bottom:720.605333pt;}
.y5d{bottom:729.654667pt;}
.y8d{bottom:730.808000pt;}
.y143{bottom:732.172000pt;}
.yc1{bottom:733.002667pt;}
.ye5{bottom:736.394667pt;}
.yc{bottom:737.505333pt;}
.y115{bottom:738.676000pt;}
.y5c{bottom:745.594667pt;}
.y8c{bottom:746.748000pt;}
.yc0{bottom:748.942667pt;}
.ye4{bottom:752.336000pt;}
.yb{bottom:753.942667pt;}
.y114{bottom:754.616000pt;}
.y142{bottom:757.078667pt;}
.y5b{bottom:761.534667pt;}
.y8b{bottom:762.688000pt;}
.ybf{bottom:764.884000pt;}
.ye3{bottom:768.276000pt;}
.ya{bottom:770.381333pt;}
.y113{bottom:770.557333pt;}
.y141{bottom:773.018667pt;}
.y5a{bottom:777.474667pt;}
.y8a{bottom:778.629333pt;}
.ybe{bottom:780.824000pt;}
.ye2{bottom:784.216000pt;}
.y112{bottom:786.497333pt;}
.y9{bottom:786.820000pt;}
.y140{bottom:793.144000pt;}
.y59{bottom:793.416000pt;}
.y89{bottom:794.569333pt;}
.ybd{bottom:796.764000pt;}
.ye1{bottom:800.156000pt;}
.y111{bottom:802.273333pt;}
.y8{bottom:803.258667pt;}
.y88{bottom:810.509333pt;}
.ybc{bottom:812.704000pt;}
.y58{bottom:814.960000pt;}
.y13f{bottom:818.050667pt;}
.y110{bottom:818.213333pt;}
.y7{bottom:819.893333pt;}
.y87{bottom:827.196000pt;}
.ybb{bottom:828.644000pt;}
.y13e{bottom:833.990667pt;}
.y10f{bottom:834.154667pt;}
.y86{bottom:843.136000pt;}
.y57{bottom:843.313333pt;}
.y13d{bottom:849.930667pt;}
.y10e{bottom:850.094667pt;}
.y6{bottom:853.230667pt;}
.y85{bottom:859.076000pt;}
.y56{bottom:859.253333pt;}
.y13c{bottom:865.870667pt;}
.y10d{bottom:866.034667pt;}
.y5{bottom:869.669333pt;}
.y84{bottom:875.016000pt;}
.y55{bottom:875.193333pt;}
.yba{bottom:876.332000pt;}
.y13b{bottom:881.810667pt;}
.y10c{bottom:881.974667pt;}
.yb8{bottom:882.309333pt;}
.y4{bottom:886.106667pt;}
.yb3{bottom:888.288000pt;}
.y83{bottom:890.956000pt;}
.y54{bottom:891.134667pt;}
.yb7{bottom:894.265333pt;}
.y13a{bottom:897.750667pt;}
.y10b{bottom:897.914667pt;}
.yb2{bottom:900.242667pt;}
.y3{bottom:902.545333pt;}
.yb6{bottom:906.220000pt;}
.y82{bottom:906.896000pt;}
.y53{bottom:907.074667pt;}
.yb1{bottom:912.197333pt;}
.y139{bottom:913.692000pt;}
.y10a{bottom:913.856000pt;}
.y2{bottom:919.181333pt;}
.y81{bottom:922.837333pt;}
.y52{bottom:923.014667pt;}
.yb5{bottom:925.116000pt;}
.y138{bottom:929.632000pt;}
.y109{bottom:929.796000pt;}
.yb0{bottom:931.093333pt;}
.yb4{bottom:937.070667pt;}
.y80{bottom:938.777333pt;}
.y51{bottom:938.954667pt;}
.yb9{bottom:943.049333pt;}
.y137{bottom:945.572000pt;}
.y108{bottom:945.736000pt;}
.y7f{bottom:954.717333pt;}
.y50{bottom:954.894667pt;}
.y1{bottom:961.024000pt;}
.y107{bottom:961.512000pt;}
.yaf{bottom:965.497333pt;}
.y7e{bottom:977.452000pt;}
.y4f{bottom:977.453333pt;}
.h7{height:29.244954pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h9{height:36.874903pt;}
.h2{height:40.211857pt;}
.h8{height:52.092954pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:65.285333pt;}
.x20{left:72.942667pt;}
.x1{left:76.350667pt;}
.x15{left:78.674667pt;}
.x13{left:82.122667pt;}
.x42{left:91.981333pt;}
.x3f{left:97.148000pt;}
.x4{left:105.704000pt;}
.x3{left:112.238667pt;}
.x14{left:113.132000pt;}
.x6{left:119.106667pt;}
.x11{left:133.644000pt;}
.x2e{left:135.456000pt;}
.x5{left:149.028000pt;}
.x31{left:153.989333pt;}
.x2{left:156.644000pt;}
.x33{left:160.184000pt;}
.x32{left:162.092000pt;}
.x43{left:176.229333pt;}
.x2d{left:181.562667pt;}
.x30{left:250.800000pt;}
.x35{left:268.716000pt;}
.x36{left:278.757333pt;}
.x37{left:281.409333pt;}
.x34{left:286.802667pt;}
.x24{left:305.937333pt;}
.x22{left:317.109333pt;}
.x17{left:323.397333pt;}
.x21{left:328.705333pt;}
.x23{left:330.193333pt;}
.x18{left:340.234667pt;}
.x9{left:342.132000pt;}
.x8{left:348.668000pt;}
.xb{left:355.534667pt;}
.x19{left:371.244000pt;}
.x16{left:375.129333pt;}
.xa{left:385.456000pt;}
.x2f{left:387.745333pt;}
.x7{left:399.152000pt;}
.x2c{left:415.970667pt;}
.x38{left:419.313333pt;}
.x45{left:421.284000pt;}
.x2b{left:429.253333pt;}
.x39{left:438.796000pt;}
.x46{left:440.316000pt;}
.x41{left:442.666667pt;}
.x40{left:506.572000pt;}
.x44{left:525.413333pt;}
.x29{left:528.326667pt;}
.x2a{left:531.510667pt;}
.x26{left:545.037333pt;}
.x3c{left:546.137333pt;}
.x3d{left:547.322667pt;}
.x28{left:548.265333pt;}
.x3e{left:554.108000pt;}
.x27{left:561.734667pt;}
.x3b{left:563.932000pt;}
.x3a{left:566.301333pt;}
.x25{left:575.961333pt;}
.x10{left:578.561333pt;}
.xd{left:580.022667pt;}
.x1f{left:581.509333pt;}
.x1c{left:593.764000pt;}
.xf{left:598.990667pt;}
.x1d{left:605.334667pt;}
.x1b{left:609.160000pt;}
.xe{left:611.724000pt;}
.x1e{left:614.426667pt;}
.x1a{left:621.948000pt;}
.xc{left:626.896000pt;}
}




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