
    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_bb3d427644daf7b2b5fb63bc.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_7d0c94e195818fd32197fbcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_5c3a12460ca8798f9995e9d1.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_3e973e0ae3f94c17c3d02f49.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_9192442c811c8c05909d0195.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.749000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.834017px;}
.lse{letter-spacing:2.360735px;}
.lsc{letter-spacing:2.371909px;}
.lsb{letter-spacing:2.385527px;}
.lsd{letter-spacing:2.391527px;}
.ls2{letter-spacing:2.449834px;}
.ls0{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988017px;}
.ls4{letter-spacing:2.988780px;}
.lsa{letter-spacing:2.989200px;}
.ls6{letter-spacing:2.990725px;}
.ls12{letter-spacing:2.994600px;}
.ls10{letter-spacing:14.345440px;}
.lsf{letter-spacing:14.345740px;}
.ls8{letter-spacing:24.618600px;}
.ls9{letter-spacing:35.484600px;}
.ls11{letter-spacing:144.801527px;}
.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;}
}
.ws83{word-spacing:-156.756677px;}
.ws3{word-spacing:-14.943900px;}
.ws16{word-spacing:-14.920027px;}
.ws44{word-spacing:-11.955150px;}
.wsa2{word-spacing:-0.956412px;}
.ws53{word-spacing:-0.717307px;}
.ws9d{word-spacing:-0.537980px;}
.wsbf{word-spacing:-0.430385px;}
.ws34{word-spacing:-0.358654px;}
.ws2c{word-spacing:-0.191282px;}
.wsac{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws80{word-spacing:-0.011582px;}
.ws7c{word-spacing:-0.008577px;}
.ws64{word-spacing:-0.006051px;}
.ws50{word-spacing:0.000000px;}
.ws7a{word-spacing:0.015998px;}
.ws59{word-spacing:0.239102px;}
.ws88{word-spacing:0.358654px;}
.wsb7{word-spacing:0.430385px;}
.ws18{word-spacing:0.478205px;}
.ws19{word-spacing:0.537980px;}
.ws79{word-spacing:0.657532px;}
.ws61{word-spacing:0.717307px;}
.ws48{word-spacing:0.956410px;}
.wsef{word-spacing:0.956412px;}
.ws17{word-spacing:1.075961px;}
.ws11{word-spacing:1.237363px;}
.ws4a{word-spacing:1.255288px;}
.ws9e{word-spacing:1.315063px;}
.ws5f{word-spacing:1.494390px;}
.ws62{word-spacing:1.733492px;}
.wsd4{word-spacing:1.769362px;}
.wsd5{word-spacing:1.778085px;}
.ws76{word-spacing:2.092146px;}
.ws7b{word-spacing:2.391030px;}
.wsed{word-spacing:2.438851px;}
.ws94{word-spacing:2.570351px;}
.ws3e{word-spacing:2.630126px;}
.ws36{word-spacing:2.869229px;}
.ws74{word-spacing:2.929004px;}
.wsa3{word-spacing:3.012698px;}
.ws92{word-spacing:3.048556px;}
.wsc{word-spacing:3.066509px;}
.ws8b{word-spacing:3.108331px;}
.ws52{word-spacing:3.168107px;}
.ws4f{word-spacing:3.227882px;}
.ws32{word-spacing:3.287658px;}
.ws2a{word-spacing:3.395263px;}
.ws1b{word-spacing:3.407209px;}
.ws33{word-spacing:3.466985px;}
.wsd2{word-spacing:3.490904px;}
.ws6{word-spacing:3.496896px;}
.ws10{word-spacing:3.604493px;}
.wsaf{word-spacing:3.646312px;}
.wsa4{word-spacing:3.730007px;}
.wse{word-spacing:3.819686px;}
.wse7{word-spacing:3.921289px;}
.ws6b{word-spacing:4.303843px;}
.ws27{word-spacing:4.363619px;}
.ws1a{word-spacing:4.423394px;}
.wsba{word-spacing:4.542957px;}
.wscc{word-spacing:4.554245px;}
.wsce{word-spacing:4.590778px;}
.ws9b{word-spacing:4.602721px;}
.wsae{word-spacing:4.662497px;}
.ws77{word-spacing:4.722272px;}
.ws7f{word-spacing:4.743818px;}
.ws7e{word-spacing:4.751228px;}
.wsd7{word-spacing:4.778603px;}
.ws2d{word-spacing:4.782060px;}
.ws7d{word-spacing:4.782075px;}
.wse6{word-spacing:4.783729px;}
.ws41{word-spacing:4.841824px;}
.wsb5{word-spacing:4.901599px;}
.ws23{word-spacing:4.961375px;}
.ws8c{word-spacing:5.140702px;}
.wsc7{word-spacing:5.260266px;}
.ws26{word-spacing:5.379804px;}
.wsca{word-spacing:5.403728px;}
.ws69{word-spacing:5.439580px;}
.ws37{word-spacing:5.678682px;}
.ws6f{word-spacing:5.858009px;}
.ws42{word-spacing:5.925050px;}
.ws65{word-spacing:5.953048px;}
.ws43{word-spacing:5.961520px;}
.ws4{word-spacing:5.977560px;}
.ws39{word-spacing:6.097111px;}
.ws12{word-spacing:6.294413px;}
.wse5{word-spacing:6.503602px;}
.ws56{word-spacing:6.515540px;}
.wsb2{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.ws38{word-spacing:6.635092px;}
.ws68{word-spacing:6.694867px;}
.ws14{word-spacing:6.724800px;}
.ws24{word-spacing:6.754643px;}
.wsc8{word-spacing:6.886166px;}
.ws8f{word-spacing:6.933970px;}
.wsb3{word-spacing:7.053521px;}
.ws6c{word-spacing:7.113296px;}
.wseb{word-spacing:7.364372px;}
.wsbd{word-spacing:7.603475px;}
.ws46{word-spacing:7.651277px;}
.ws5d{word-spacing:7.711052px;}
.ws3f{word-spacing:7.830604px;}
.ws71{word-spacing:7.890379px;}
.ws8d{word-spacing:8.129482px;}
.ws73{word-spacing:8.189257px;}
.wsa1{word-spacing:8.428360px;}
.wsd9{word-spacing:8.500672px;}
.wsd8{word-spacing:8.512067px;}
.ws4b{word-spacing:8.667462px;}
.ws6a{word-spacing:8.727238px;}
.ws54{word-spacing:8.787013px;}
.ws97{word-spacing:8.966340px;}
.ws3a{word-spacing:9.026116px;}
.wsad{word-spacing:9.085891px;}
.ws75{word-spacing:9.145667px;}
.ws30{word-spacing:9.324994px;}
.ws6e{word-spacing:9.444545px;}
.wsc4{word-spacing:9.468479px;}
.wsb1{word-spacing:9.623872px;}
.wsb4{word-spacing:9.862974px;}
.ws3b{word-spacing:9.922750px;}
.wsab{word-spacing:9.982525px;}
.ws29{word-spacing:10.042326px;}
.ws8a{word-spacing:10.102076px;}
.ws9f{word-spacing:10.460730px;}
.wsb{word-spacing:10.490688px;}
.ws5c{word-spacing:10.580281px;}
.wsb8{word-spacing:10.616173px;}
.ws95{word-spacing:10.640057px;}
.ws1d{word-spacing:10.699832px;}
.wse9{word-spacing:10.711814px;}
.wsaa{word-spacing:10.759608px;}
.ws3c{word-spacing:10.819384px;}
.wsd3{word-spacing:10.855276px;}
.ws55{word-spacing:11.178037px;}
.ws87{word-spacing:11.237813px;}
.wsc2{word-spacing:11.237841px;}
.ws93{word-spacing:11.297588px;}
.wsc0{word-spacing:11.476944px;}
.ws5e{word-spacing:11.596466px;}
.ws72{word-spacing:11.656242px;}
.ws45{word-spacing:11.775793px;}
.ws57{word-spacing:11.785236px;}
.ws9a{word-spacing:11.835569px;}
.ws70{word-spacing:11.895344px;}
.wse2{word-spacing:11.937886px;}
.ws63{word-spacing:11.955120px;}
.wse4{word-spacing:11.955150px;}
.ws5a{word-spacing:12.313774px;}
.ws51{word-spacing:12.433325px;}
.ws99{word-spacing:12.493100px;}
.ws58{word-spacing:12.612652px;}
.wsee{word-spacing:12.863741px;}
.ws89{word-spacing:13.031081px;}
.ws35{word-spacing:13.210408px;}
.wsdb{word-spacing:13.294127px;}
.ws25{word-spacing:13.329959px;}
.wsd1{word-spacing:13.533230px;}
.wsf{word-spacing:13.610995px;}
.ws98{word-spacing:13.628837px;}
.wsd6{word-spacing:13.676692px;}
.ws4d{word-spacing:13.688612px;}
.wsa6{word-spacing:13.986000px;}
.ws60{word-spacing:13.987490px;}
.ws9c{word-spacing:14.047266px;}
.ws0{word-spacing:14.346180px;}
.ws91{word-spacing:14.465695px;}
.ws20{word-spacing:14.704798px;}
.ws28{word-spacing:14.764573px;}
.ws4e{word-spacing:14.884124px;}
.wscf{word-spacing:14.920027px;}
.ws4c{word-spacing:15.003676px;}
.ws1c{word-spacing:15.302554px;}
.ws2e{word-spacing:15.362329px;}
.ws22{word-spacing:15.541656px;}
.ws78{word-spacing:15.720983px;}
.wse8{word-spacing:15.828619px;}
.ws90{word-spacing:16.139412px;}
.ws49{word-spacing:16.199188px;}
.wsbb{word-spacing:16.450286px;}
.wsa0{word-spacing:16.498066px;}
.wscd{word-spacing:16.498107px;}
.ws5b{word-spacing:16.617617px;}
.wsbc{word-spacing:16.689389px;}
.ws9{word-spacing:16.731302px;}
.ws47{word-spacing:16.976270px;}
.ws2f{word-spacing:17.155597px;}
.wsc6{word-spacing:17.167595px;}
.wscb{word-spacing:17.311057px;}
.ws6d{word-spacing:17.574026px;}
.wsa5{word-spacing:17.593056px;}
.ws15{word-spacing:17.932680px;}
.wsdd{word-spacing:17.932725px;}
.wsb6{word-spacing:17.992456px;}
.wse0{word-spacing:18.124007px;}
.ws7{word-spacing:18.506650px;}
.ws1e{word-spacing:18.530436px;}
.ws21{word-spacing:18.709763px;}
.ws8{word-spacing:18.721843px;}
.ws40{word-spacing:18.769538px;}
.wsc9{word-spacing:18.793496px;}
.ws67{word-spacing:19.068416px;}
.wsec{word-spacing:19.271702px;}
.wsc1{word-spacing:19.415164px;}
.wsb0{word-spacing:19.486846px;}
.wsbe{word-spacing:19.510805px;}
.ws13{word-spacing:20.120602px;}
.wsa{word-spacing:20.228198px;}
.ws3d{word-spacing:20.323704px;}
.wsda{word-spacing:20.419396px;}
.ws8e{word-spacing:20.503031px;}
.ws2{word-spacing:20.861684px;}
.ws31{word-spacing:20.981236px;}
.wsdf{word-spacing:21.088885px;}
.wsc5{word-spacing:21.375808px;}
.ws96{word-spacing:21.638767px;}
.ws1f{word-spacing:21.997421px;}
.wsb9{word-spacing:22.523503px;}
.wsea{word-spacing:22.571323px;}
.ws66{word-spacing:22.714728px;}
.wsc3{word-spacing:23.192991px;}
.wse3{word-spacing:23.862479px;}
.wsd{word-spacing:24.908659px;}
.wsdc{word-spacing:25.201456px;}
.wsd0{word-spacing:26.827357px;}
.wse1{word-spacing:30.031337px;}
.wsde{word-spacing:32.996214px;}
.ws85{word-spacing:59.776500px;}
.wsa9{word-spacing:60.909288px;}
.ws82{word-spacing:71.680039px;}
.wsa7{word-spacing:80.356962px;}
.ws84{word-spacing:83.686800px;}
.wsa8{word-spacing:137.076600px;}
.ws86{word-spacing:151.448590px;}
.ws81{word-spacing:324.129304px;}
._11{margin-left:-144.801527px;}
._8{margin-left:-18.877192px;}
._0{margin-left:-8.607708px;}
._10{margin-left:-7.591501px;}
._7{margin-left:-6.515540px;}
._2{margin-left:-5.260272px;}
._3{margin-left:-3.885414px;}
._5{margin-left:-2.689920px;}
._1{margin-left:-1.494390px;}
._b{width:1.139675px;}
._6{width:2.289551px;}
._4{width:3.685420px;}
._23{width:4.719952px;}
._9{width:6.652859px;}
._1c{width:10.534150px;}
._1b{width:13.389734px;}
._21{width:15.075529px;}
._22{width:18.231615px;}
._a{width:20.024826px;}
._e{width:21.638785px;}
._20{width:23.013606px;}
._c{width:24.931338px;}
._d{width:29.170493px;}
._f{width:32.876580px;}
._1f{width:69.992451px;}
._14{width:71.731650px;}
._1e{width:79.073829px;}
._16{width:90.330073px;}
._17{width:95.641950px;}
._1d{width:98.521503px;}
._12{width:103.624200px;}
._13{width:127.534500px;}
._18{width:143.458760px;}
._15{width:151.492621px;}
._19{width:163.403740px;}
._1a{width:172.677146px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:21.000000px;}
.fs8{font-size:22.200000px;}
.fsa{font-size:28.560600px;}
.fs6{font-size:35.865600px;}
.fs7{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.yef{bottom:8.970281px;}
.y105{bottom:9.486582px;}
.yc4{bottom:12.999349px;}
.yd3{bottom:19.867260px;}
.yfe{bottom:19.930641px;}
.ydb{bottom:23.503819px;}
.y106{bottom:24.298163px;}
.ycd{bottom:25.704894px;}
.yf0{bottom:30.514641px;}
.yf8{bottom:31.690641px;}
.yc5{bottom:34.655934px;}
.yff{bottom:41.098641px;}
.ydc{bottom:45.514573px;}
.ye3{bottom:46.361141px;}
.ye9{bottom:46.590654px;}
.yf1{bottom:48.154641px;}
.yd4{bottom:49.055434px;}
.yce{bottom:52.558014px;}
.y107{bottom:52.707963px;}
.y10c{bottom:53.519316px;}
.yf9{bottom:55.210641px;}
.yc6{bottom:57.033534px;}
.y100{bottom:62.266641px;}
.yf2{bottom:65.794641px;}
.ye4{bottom:67.017387px;}
.yfd{bottom:67.461187px;}
.ydd{bottom:67.525327px;}
.yf6{bottom:67.945172px;}
.y102{bottom:69.388922px;}
.yea{bottom:76.427454px;}
.yd5{bottom:78.243607px;}
.yfa{bottom:78.730641px;}
.yc7{bottom:79.411134px;}
.y108{bottom:81.117763px;}
.yf3{bottom:83.434641px;}
.yd2{bottom:87.140273px;}
.ycb{bottom:87.651913px;}
.ye5{bottom:87.673633px;}
.yd9{bottom:89.178163px;}
.yde{bottom:89.536081px;}
.yf4{bottom:101.074641px;}
.yc8{bottom:101.788734px;}
.yfb{bottom:102.250641px;}
.y101{bottom:104.602641px;}
.ycf{bottom:106.264254px;}
.yd6{bottom:107.431781px;}
.ye6{bottom:108.329879px;}
.y109{bottom:109.527563px;}
.ydf{bottom:111.546835px;}
.y32{bottom:113.332500px;}
.y8b{bottom:117.552000px;}
.yf5{bottom:118.714641px;}
.y151{bottom:120.472500px;}
.yc9{bottom:124.166334px;}
.yfc{bottom:125.770641px;}
.y31{bottom:126.783000px;}
.ye7{bottom:128.986125px;}
.y54{bottom:131.265000px;}
.y8a{bottom:132.346500px;}
.yd0{bottom:133.117374px;}
.y10e{bottom:133.228500px;}
.ye0{bottom:133.557589px;}
.y150{bottom:133.923000px;}
.yeb{bottom:136.101054px;}
.yd7{bottom:136.619955px;}
.y10a{bottom:137.937363px;}
.y30{bottom:140.232000px;}
.yca{bottom:146.543934px;}
.y14f{bottom:147.372000px;}
.y53{bottom:149.197500px;}
.ye8{bottom:149.642371px;}
.y12c{bottom:150.654000px;}
.y2f{bottom:153.681000px;}
.ye1{bottom:155.568344px;}
.y89{bottom:156.201000px;}
.yc2{bottom:157.900500px;}
.yd1{bottom:159.970494px;}
.y104{bottom:160.128000px;}
.y14e{bottom:160.821000px;}
.yd8{bottom:165.808129px;}
.yec{bottom:165.937854px;}
.y10b{bottom:166.347163px;}
.y52{bottom:167.131500px;}
.y88{bottom:174.133500px;}
.y14d{bottom:174.271500px;}
.y12b{bottom:181.053000px;}
.yc1{bottom:182.386500px;}
.y2e{bottom:183.537000px;}
.y51{bottom:185.064000px;}
.y14c{bottom:187.720500px;}
.y10d{bottom:189.313076px;}
.y87{bottom:191.680500px;}
.y12a{bottom:198.985500px;}
.yc0{bottom:200.319000px;}
.y14b{bottom:201.169500px;}
.y2d{bottom:201.469500px;}
.y50{bottom:202.996500px;}
.y86{bottom:209.613000px;}
.y14a{bottom:214.620000px;}
.y129{bottom:216.919500px;}
.ybf{bottom:218.251500px;}
.y2c{bottom:219.603000px;}
.y4f{bottom:220.929000px;}
.y85{bottom:227.545500px;}
.y149{bottom:228.069000px;}
.y128{bottom:234.852000px;}
.ybe{bottom:236.184000px;}
.y2b{bottom:237.535500px;}
.y4e{bottom:238.861500px;}
.y148{bottom:241.519500px;}
.y84{bottom:245.478000px;}
.y127{bottom:252.784500px;}
.ybd{bottom:253.849500px;}
.y147{bottom:254.968500px;}
.y2a{bottom:255.468000px;}
.y4d{bottom:256.794000px;}
.y83{bottom:263.410500px;}
.y146{bottom:268.417500px;}
.y126{bottom:270.717000px;}
.ybc{bottom:271.782000px;}
.y29{bottom:273.400500px;}
.y4c{bottom:274.728000px;}
.y82{bottom:281.343000px;}
.y145{bottom:281.868000px;}
.y125{bottom:288.649500px;}
.ybb{bottom:289.714500px;}
.y28{bottom:291.334500px;}
.y4b{bottom:292.660500px;}
.y144{bottom:295.317000px;}
.y81{bottom:299.277000px;}
.y124{bottom:306.582000px;}
.yba{bottom:307.647000px;}
.y143{bottom:308.766000px;}
.y27{bottom:309.267000px;}
.y4a{bottom:310.593000px;}
.y80{bottom:317.209500px;}
.y142{bottom:322.216500px;}
.y123{bottom:324.516000px;}
.yb9{bottom:325.581000px;}
.y26{bottom:327.199500px;}
.y49{bottom:328.525500px;}
.y7f{bottom:335.142000px;}
.y141{bottom:335.665500px;}
.y122{bottom:342.448500px;}
.yb8{bottom:343.513500px;}
.y25{bottom:345.132000px;}
.y48{bottom:346.458000px;}
.y140{bottom:349.116000px;}
.y7e{bottom:353.074500px;}
.y121{bottom:360.381000px;}
.yb7{bottom:361.446000px;}
.y13f{bottom:362.565000px;}
.y24{bottom:363.064500px;}
.y47{bottom:370.314000px;}
.y7d{bottom:370.621500px;}
.y13e{bottom:376.014000px;}
.y120{bottom:378.313500px;}
.yb6{bottom:379.378500px;}
.y23{bottom:380.997000px;}
.y7c{bottom:388.554000px;}
.y13d{bottom:389.464500px;}
.y11f{bottom:396.246000px;}
.y103{bottom:396.285000px;}
.yb5{bottom:397.311000px;}
.y22{bottom:398.931000px;}
.y46{bottom:400.054500px;}
.y13c{bottom:402.913500px;}
.y7b{bottom:406.486500px;}
.y11e{bottom:414.459000px;}
.yb4{bottom:414.976500px;}
.y13b{bottom:416.362500px;}
.y21{bottom:416.863500px;}
.y45{bottom:417.987000px;}
.yf7{bottom:422.998500px;}
.y7a{bottom:424.419000px;}
.y13a{bottom:429.813000px;}
.y11d{bottom:432.391500px;}
.yb3{bottom:432.909000px;}
.y20{bottom:434.995500px;}
.y44{bottom:435.919500px;}
.yee{bottom:440.932500px;}
.y79{bottom:442.351500px;}
.y139{bottom:443.262000px;}
.y11c{bottom:450.325500px;}
.yb2{bottom:450.841500px;}
.y1f{bottom:452.928000px;}
.y43{bottom:453.852000px;}
.y138{bottom:456.711000px;}
.y78{bottom:460.285500px;}
.y11b{bottom:468.258000px;}
.yb1{bottom:468.774000px;}
.y137{bottom:470.161500px;}
.y1e{bottom:470.862000px;}
.y42{bottom:471.784500px;}
.y77{bottom:478.218000px;}
.y136{bottom:483.610500px;}
.y11a{bottom:486.190500px;}
.yb0{bottom:486.708000px;}
.y1d{bottom:488.794500px;}
.y41{bottom:489.718500px;}
.y76{bottom:496.150500px;}
.y135{bottom:497.061000px;}
.y119{bottom:504.123000px;}
.yaf{bottom:504.640500px;}
.y1c{bottom:506.727000px;}
.y40{bottom:507.651000px;}
.y134{bottom:510.510000px;}
.y75{bottom:514.083000px;}
.y118{bottom:522.055500px;}
.yae{bottom:522.573000px;}
.y133{bottom:523.959000px;}
.y1b{bottom:524.659500px;}
.y3f{bottom:525.583500px;}
.y74{bottom:532.015500px;}
.y132{bottom:537.409500px;}
.y117{bottom:539.988000px;}
.yad{bottom:540.505500px;}
.y1a{bottom:542.592000px;}
.y3e{bottom:543.516000px;}
.y73{bottom:549.948000px;}
.y131{bottom:550.858500px;}
.y116{bottom:557.922000px;}
.yac{bottom:558.169500px;}
.y3d{bottom:561.448500px;}
.y130{bottom:564.307500px;}
.y19{bottom:566.433000px;}
.y72{bottom:572.202000px;}
.y115{bottom:575.854500px;}
.yab{bottom:576.103500px;}
.y12f{bottom:577.758000px;}
.y3c{bottom:579.382500px;}
.y12e{bottom:591.207000px;}
.y114{bottom:593.787000px;}
.yaa{bottom:594.036000px;}
.y3b{bottom:597.517500px;}
.y71{bottom:597.903000px;}
.y18{bottom:600.306000px;}
.y12d{bottom:604.657500px;}
.ya9{bottom:611.968500px;}
.y17{bottom:615.450000px;}
.y70{bottom:615.837000px;}
.y113{bottom:618.106500px;}
.ya8{bottom:629.901000px;}
.y16{bottom:630.394500px;}
.yed{bottom:631.159500px;}
.y3a{bottom:633.382500px;}
.y6f{bottom:633.769500px;}
.y112{bottom:640.911000px;}
.y15{bottom:645.337500px;}
.ya7{bottom:647.833500px;}
.y39{bottom:651.315000px;}
.y6e{bottom:651.702000px;}
.ye2{bottom:658.338000px;}
.y14{bottom:660.282000px;}
.ya6{bottom:665.767500px;}
.y111{bottom:667.810500px;}
.y38{bottom:669.247500px;}
.y6d{bottom:669.634500px;}
.y13{bottom:675.226500px;}
.yda{bottom:676.272000px;}
.ya5{bottom:683.700000px;}
.y37{bottom:687.181500px;}
.y6c{bottom:687.567000px;}
.y12{bottom:690.169500px;}
.ya4{bottom:701.632500px;}
.y11{bottom:705.114000px;}
.y6b{bottom:705.499500px;}
.ya3{bottom:719.565000px;}
.y10{bottom:720.058500px;}
.y36{bottom:723.046500px;}
.y6a{bottom:723.433500px;}
.yf{bottom:735.001500px;}
.ya2{bottom:737.497500px;}
.y35{bottom:740.979000px;}
.y69{bottom:741.366000px;}
.ye{bottom:749.946000px;}
.ya1{bottom:755.430000px;}
.y34{bottom:758.911500px;}
.y68{bottom:759.298500px;}
.yd{bottom:764.889000px;}
.ya0{bottom:773.364000px;}
.y33{bottom:776.844000px;}
.y67{bottom:777.231000px;}
.yc{bottom:779.833500px;}
.y9f{bottom:791.296500px;}
.yb{bottom:794.778000px;}
.y66{bottom:795.163500px;}
.y9e{bottom:808.960500px;}
.y65{bottom:813.096000px;}
.y9d{bottom:826.893000px;}
.y64{bottom:831.030000px;}
.y9c{bottom:844.827000px;}
.ya{bottom:848.503500px;}
.y63{bottom:848.962500px;}
.y9b{bottom:862.759500px;}
.y9{bottom:866.436000px;}
.y62{bottom:866.895000px;}
.y110{bottom:879.651000px;}
.y9a{bottom:880.692000px;}
.y8{bottom:884.368500px;}
.y61{bottom:884.827500px;}
.ycc{bottom:885.142500px;}
.y99{bottom:898.624500px;}
.y7{bottom:902.302500px;}
.y60{bottom:902.760000px;}
.yc3{bottom:903.075000px;}
.y10f{bottom:906.550500px;}
.y98{bottom:918.915000px;}
.y5f{bottom:920.694000px;}
.y97{bottom:932.961000px;}
.y6{bottom:936.534000px;}
.y5e{bottom:938.239500px;}
.y96{bottom:947.008500px;}
.y5{bottom:955.027500px;}
.y5d{bottom:956.172000px;}
.y95{bottom:961.056000px;}
.y4{bottom:973.521000px;}
.y5c{bottom:974.104500px;}
.y94{bottom:975.103500px;}
.y93{bottom:989.151000px;}
.y5b{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y92{bottom:1003.198500px;}
.y5a{bottom:1009.971000px;}
.y91{bottom:1017.246000px;}
.y59{bottom:1027.903500px;}
.y90{bottom:1031.293500px;}
.y2{bottom:1039.309500px;}
.y8f{bottom:1045.341000px;}
.y58{bottom:1045.836000px;}
.y57{bottom:1063.768500px;}
.y8e{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y56{bottom:1081.701000px;}
.y8d{bottom:1086.184500px;}
.y8c{bottom:1099.633500px;}
.y55{bottom:1099.635000px;}
.h10{height:19.509000px;}
.he{height:20.623800px;}
.hb{height:24.675533px;}
.h12{height:26.532797px;}
.h13{height:32.804932px;}
.h8{height:32.900573px;}
.h7{height:33.140573px;}
.hc{height:33.187496px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h3{height:41.006062px;}
.h4{height:41.125613px;}
.h9{height:41.484266px;}
.h2{height:45.238339px;}
.ha{height:50.483846px;}
.h1{height:98.701718px;}
.hf{height:151.200000px;}
.hd{height:191.808000px;}
.h11{height:205.636320px;}
.h0{height:1188.000000px;}
.w1{width:255.744000px;}
.w2{width:264.600000px;}
.w3{width:771.136200px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:9.473156px;}
.x3a{left:11.796094px;}
.x2f{left:13.002609px;}
.x3c{left:15.134766px;}
.x29{left:17.496809px;}
.x38{left:19.386035px;}
.x2a{left:21.026262px;}
.x39{left:22.724707px;}
.x2e{left:24.555715px;}
.x3e{left:26.063379px;}
.x28{left:34.167305px;}
.x45{left:44.021509px;}
.x41{left:46.452468px;}
.x19{left:73.446000px;}
.x27{left:77.080500px;}
.x1{left:78.235500px;}
.x48{left:79.423500px;}
.x37{left:80.791500px;}
.x32{left:81.937500px;}
.x1b{left:85.401000px;}
.x18{left:88.390500px;}
.x21{left:91.447500px;}
.x4{left:94.210500px;}
.x1d{left:98.544000px;}
.x49{left:100.834500px;}
.x6{left:134.409000px;}
.x3{left:136.474500px;}
.x2c{left:161.538000px;}
.x3b{left:169.681500px;}
.x5{left:176.169000px;}
.x13{left:178.249500px;}
.x10{left:180.468000px;}
.x46{left:196.614294px;}
.x1a{left:203.430000px;}
.x47{left:205.260000px;}
.x36{left:206.872500px;}
.x44{left:217.740000px;}
.x42{left:220.522640px;}
.xf{left:226.510500px;}
.x43{left:239.863500px;}
.x12{left:248.739000px;}
.x40{left:257.748000px;}
.x11{left:263.391000px;}
.x8{left:314.011500px;}
.x33{left:331.129500px;}
.x2d{left:335.986500px;}
.x1c{left:355.081500px;}
.x2{left:366.055500px;}
.xa{left:388.207500px;}
.x7{left:410.410500px;}
.x30{left:419.118000px;}
.x9{left:448.506000px;}
.x1e{left:467.967000px;}
.x15{left:470.925000px;}
.x4a{left:473.944500px;}
.x26{left:479.922000px;}
.x1f{left:482.910000px;}
.x4b{left:495.355500px;}
.x23{left:521.163000px;}
.x4c{left:522.366000px;}
.x20{left:527.893500px;}
.x14{left:536.700000px;}
.x4d{left:538.795500px;}
.x25{left:542.584500px;}
.x17{left:557.547000px;}
.x3d{left:572.604000px;}
.x34{left:580.323000px;}
.x31{left:585.180000px;}
.x24{left:594.727500px;}
.x16{left:605.419500px;}
.x22{left:633.474000px;}
.xc{left:645.517500px;}
.x35{left:663.448500px;}
.x3f{left:664.488000px;}
.xe{left:672.723000px;}
.xb{left:707.458500px;}
.xd{left:727.476000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.741348pt;}
.lse{letter-spacing:2.098431pt;}
.lsc{letter-spacing:2.108364pt;}
.lsb{letter-spacing:2.120468pt;}
.lsd{letter-spacing:2.125802pt;}
.ls2{letter-spacing:2.177630pt;}
.ls0{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656015pt;}
.ls4{letter-spacing:2.656693pt;}
.lsa{letter-spacing:2.657067pt;}
.ls6{letter-spacing:2.658422pt;}
.ls12{letter-spacing:2.661867pt;}
.ls10{letter-spacing:12.751502pt;}
.lsf{letter-spacing:12.751769pt;}
.ls8{letter-spacing:21.883200pt;}
.ls9{letter-spacing:31.541867pt;}
.ls11{letter-spacing:128.712468pt;}
.ws83{word-spacing:-139.339268pt;}
.ws3{word-spacing:-13.283467pt;}
.ws16{word-spacing:-13.262246pt;}
.ws44{word-spacing:-10.626800pt;}
.wsa2{word-spacing:-0.850144pt;}
.ws53{word-spacing:-0.637606pt;}
.ws9d{word-spacing:-0.478205pt;}
.wsbf{word-spacing:-0.382565pt;}
.ws34{word-spacing:-0.318803pt;}
.ws2c{word-spacing:-0.170029pt;}
.wsac{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws80{word-spacing:-0.010295pt;}
.ws7c{word-spacing:-0.007624pt;}
.ws64{word-spacing:-0.005379pt;}
.ws50{word-spacing:0.000000pt;}
.ws7a{word-spacing:0.014220pt;}
.ws59{word-spacing:0.212535pt;}
.ws88{word-spacing:0.318803pt;}
.wsb7{word-spacing:0.382565pt;}
.ws18{word-spacing:0.425071pt;}
.ws19{word-spacing:0.478205pt;}
.ws79{word-spacing:0.584473pt;}
.ws61{word-spacing:0.637606pt;}
.ws48{word-spacing:0.850142pt;}
.wsef{word-spacing:0.850144pt;}
.ws17{word-spacing:0.956410pt;}
.ws11{word-spacing:1.099878pt;}
.ws4a{word-spacing:1.115811pt;}
.ws9e{word-spacing:1.168945pt;}
.ws5f{word-spacing:1.328347pt;}
.ws62{word-spacing:1.540882pt;}
.wsd4{word-spacing:1.572766pt;}
.wsd5{word-spacing:1.580520pt;}
.ws76{word-spacing:1.859685pt;}
.ws7b{word-spacing:2.125360pt;}
.wsed{word-spacing:2.167867pt;}
.ws94{word-spacing:2.284756pt;}
.ws3e{word-spacing:2.337890pt;}
.ws36{word-spacing:2.550426pt;}
.ws74{word-spacing:2.603559pt;}
.wsa3{word-spacing:2.677954pt;}
.ws92{word-spacing:2.709827pt;}
.wsc{word-spacing:2.725786pt;}
.ws8b{word-spacing:2.762961pt;}
.ws52{word-spacing:2.816095pt;}
.ws4f{word-spacing:2.869229pt;}
.ws32{word-spacing:2.922363pt;}
.ws2a{word-spacing:3.018011pt;}
.ws1b{word-spacing:3.028630pt;}
.ws33{word-spacing:3.081764pt;}
.wsd2{word-spacing:3.103026pt;}
.ws6{word-spacing:3.108352pt;}
.ws10{word-spacing:3.203994pt;}
.wsaf{word-spacing:3.241166pt;}
.wsa4{word-spacing:3.315562pt;}
.wse{word-spacing:3.395277pt;}
.wse7{word-spacing:3.485590pt;}
.ws6b{word-spacing:3.825638pt;}
.ws27{word-spacing:3.878772pt;}
.ws1a{word-spacing:3.931906pt;}
.wsba{word-spacing:4.038184pt;}
.wscc{word-spacing:4.048218pt;}
.wsce{word-spacing:4.080691pt;}
.ws9b{word-spacing:4.091308pt;}
.wsae{word-spacing:4.144442pt;}
.ws77{word-spacing:4.197575pt;}
.ws7f{word-spacing:4.216727pt;}
.ws7e{word-spacing:4.223314pt;}
.wsd7{word-spacing:4.247647pt;}
.ws2d{word-spacing:4.250720pt;}
.ws7d{word-spacing:4.250733pt;}
.wse6{word-spacing:4.252203pt;}
.ws41{word-spacing:4.303843pt;}
.wsb5{word-spacing:4.356977pt;}
.ws23{word-spacing:4.410111pt;}
.ws8c{word-spacing:4.569513pt;}
.wsc7{word-spacing:4.675792pt;}
.ws26{word-spacing:4.782048pt;}
.wsca{word-spacing:4.803314pt;}
.ws69{word-spacing:4.835182pt;}
.ws37{word-spacing:5.047717pt;}
.ws6f{word-spacing:5.207119pt;}
.ws42{word-spacing:5.266711pt;}
.ws65{word-spacing:5.291598pt;}
.ws43{word-spacing:5.299129pt;}
.ws4{word-spacing:5.313387pt;}
.ws39{word-spacing:5.419654pt;}
.ws12{word-spacing:5.595034pt;}
.wse5{word-spacing:5.780979pt;}
.ws56{word-spacing:5.791591pt;}
.wsb2{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.ws38{word-spacing:5.897859pt;}
.ws68{word-spacing:5.950993pt;}
.ws14{word-spacing:5.977600pt;}
.ws24{word-spacing:6.004127pt;}
.wsc8{word-spacing:6.121037pt;}
.ws8f{word-spacing:6.163529pt;}
.wsb3{word-spacing:6.269796pt;}
.ws6c{word-spacing:6.322930pt;}
.wseb{word-spacing:6.546109pt;}
.wsbd{word-spacing:6.758645pt;}
.ws46{word-spacing:6.801135pt;}
.ws5d{word-spacing:6.854269pt;}
.ws3f{word-spacing:6.960537pt;}
.ws71{word-spacing:7.013670pt;}
.ws8d{word-spacing:7.226206pt;}
.ws73{word-spacing:7.279340pt;}
.wsa1{word-spacing:7.491875pt;}
.wsd9{word-spacing:7.556153pt;}
.wsd8{word-spacing:7.566282pt;}
.ws4b{word-spacing:7.704411pt;}
.ws6a{word-spacing:7.757545pt;}
.ws54{word-spacing:7.810678pt;}
.ws97{word-spacing:7.970080pt;}
.ws3a{word-spacing:8.023214pt;}
.wsad{word-spacing:8.076348pt;}
.ws75{word-spacing:8.129482pt;}
.ws30{word-spacing:8.288883pt;}
.ws6e{word-spacing:8.395151pt;}
.wsc4{word-spacing:8.416426pt;}
.wsb1{word-spacing:8.554553pt;}
.wsb4{word-spacing:8.767088pt;}
.ws3b{word-spacing:8.820222pt;}
.wsab{word-spacing:8.873356pt;}
.ws29{word-spacing:8.926512pt;}
.ws8a{word-spacing:8.979623pt;}
.ws9f{word-spacing:9.298427pt;}
.wsb{word-spacing:9.325056pt;}
.ws5c{word-spacing:9.404694pt;}
.wsb8{word-spacing:9.436598pt;}
.ws95{word-spacing:9.457828pt;}
.ws1d{word-spacing:9.510962pt;}
.wse9{word-spacing:9.521613pt;}
.wsaa{word-spacing:9.564096pt;}
.ws3c{word-spacing:9.617230pt;}
.wsd3{word-spacing:9.649134pt;}
.ws55{word-spacing:9.936033pt;}
.ws87{word-spacing:9.989167pt;}
.wsc2{word-spacing:9.989192pt;}
.ws93{word-spacing:10.042301pt;}
.wsc0{word-spacing:10.201728pt;}
.ws5e{word-spacing:10.307970pt;}
.ws72{word-spacing:10.361104pt;}
.ws45{word-spacing:10.467372pt;}
.ws57{word-spacing:10.475765pt;}
.ws9a{word-spacing:10.520506pt;}
.ws70{word-spacing:10.573639pt;}
.wse2{word-spacing:10.611454pt;}
.ws63{word-spacing:10.626773pt;}
.wse4{word-spacing:10.626800pt;}
.ws5a{word-spacing:10.945577pt;}
.ws51{word-spacing:11.051844pt;}
.ws99{word-spacing:11.104978pt;}
.ws58{word-spacing:11.211246pt;}
.wsee{word-spacing:11.434437pt;}
.ws89{word-spacing:11.583183pt;}
.ws35{word-spacing:11.742585pt;}
.wsdb{word-spacing:11.817002pt;}
.ws25{word-spacing:11.848852pt;}
.wsd1{word-spacing:12.029538pt;}
.wsf{word-spacing:12.098662pt;}
.ws98{word-spacing:12.114522pt;}
.wsd6{word-spacing:12.157059pt;}
.ws4d{word-spacing:12.167655pt;}
.wsa6{word-spacing:12.432000pt;}
.ws60{word-spacing:12.433325pt;}
.ws9c{word-spacing:12.486459pt;}
.ws0{word-spacing:12.752160pt;}
.ws91{word-spacing:12.858396pt;}
.ws20{word-spacing:13.070931pt;}
.ws28{word-spacing:13.124065pt;}
.ws4e{word-spacing:13.230333pt;}
.wscf{word-spacing:13.262246pt;}
.ws4c{word-spacing:13.336601pt;}
.ws1c{word-spacing:13.602270pt;}
.ws2e{word-spacing:13.655404pt;}
.ws22{word-spacing:13.814805pt;}
.ws78{word-spacing:13.974207pt;}
.wse8{word-spacing:14.069883pt;}
.ws90{word-spacing:14.346144pt;}
.ws49{word-spacing:14.399278pt;}
.wsbb{word-spacing:14.622477pt;}
.wsa0{word-spacing:14.664947pt;}
.wscd{word-spacing:14.664984pt;}
.ws5b{word-spacing:14.771215pt;}
.wsbc{word-spacing:14.835013pt;}
.ws9{word-spacing:14.872269pt;}
.ws47{word-spacing:15.090018pt;}
.ws2f{word-spacing:15.249420pt;}
.wsc6{word-spacing:15.260085pt;}
.wscb{word-spacing:15.387606pt;}
.ws6d{word-spacing:15.621357pt;}
.wsa5{word-spacing:15.638272pt;}
.ws15{word-spacing:15.940160pt;}
.wsdd{word-spacing:15.940200pt;}
.wsb6{word-spacing:15.993294pt;}
.wse0{word-spacing:16.110229pt;}
.ws7{word-spacing:16.450355pt;}
.ws1e{word-spacing:16.471499pt;}
.ws21{word-spacing:16.630900pt;}
.ws8{word-spacing:16.641638pt;}
.ws40{word-spacing:16.684034pt;}
.wsc9{word-spacing:16.705330pt;}
.ws67{word-spacing:16.949703pt;}
.wsec{word-spacing:17.130402pt;}
.wsc1{word-spacing:17.257923pt;}
.wsb0{word-spacing:17.321641pt;}
.wsbe{word-spacing:17.342938pt;}
.ws13{word-spacing:17.884979pt;}
.wsa{word-spacing:17.980621pt;}
.ws3d{word-spacing:18.065515pt;}
.wsda{word-spacing:18.150574pt;}
.ws8e{word-spacing:18.224916pt;}
.ws2{word-spacing:18.543719pt;}
.ws31{word-spacing:18.649987pt;}
.wsdf{word-spacing:18.745675pt;}
.wsc5{word-spacing:19.000718pt;}
.ws96{word-spacing:19.234460pt;}
.ws1f{word-spacing:19.553263pt;}
.wsb9{word-spacing:20.020891pt;}
.wsea{word-spacing:20.063398pt;}
.ws66{word-spacing:20.190869pt;}
.wsc3{word-spacing:20.615992pt;}
.wse3{word-spacing:21.211093pt;}
.wsd{word-spacing:22.141030pt;}
.wsdc{word-spacing:22.401294pt;}
.wsd0{word-spacing:23.846539pt;}
.wse1{word-spacing:26.694522pt;}
.wsde{word-spacing:29.329968pt;}
.ws85{word-spacing:53.134667pt;}
.wsa9{word-spacing:54.141589pt;}
.ws82{word-spacing:63.715590pt;}
.wsa7{word-spacing:71.428410pt;}
.ws84{word-spacing:74.388267pt;}
.wsa8{word-spacing:121.845866pt;}
.ws86{word-spacing:134.620969pt;}
.ws81{word-spacing:288.114937pt;}
._11{margin-left:-128.712468pt;}
._8{margin-left:-16.779726pt;}
._0{margin-left:-7.651296pt;}
._10{margin-left:-6.748001pt;}
._7{margin-left:-5.791591pt;}
._2{margin-left:-4.675797pt;}
._3{margin-left:-3.453701pt;}
._5{margin-left:-2.391040pt;}
._1{margin-left:-1.328347pt;}
._b{width:1.013044pt;}
._6{width:2.035156pt;}
._4{width:3.275929pt;}
._23{width:4.195513pt;}
._9{width:5.913652pt;}
._1c{width:9.363689pt;}
._1b{width:11.901986pt;}
._21{width:13.400470pt;}
._22{width:16.205880pt;}
._a{width:17.799845pt;}
._e{width:19.234476pt;}
._20{width:20.456539pt;}
._c{width:22.161189pt;}
._d{width:25.929327pt;}
._f{width:29.223627pt;}
._1f{width:62.215512pt;}
._14{width:63.761467pt;}
._1e{width:70.287848pt;}
._16{width:80.293398pt;}
._17{width:85.015067pt;}
._1d{width:87.574670pt;}
._12{width:92.110400pt;}
._13{width:113.364000pt;}
._18{width:127.518898pt;}
._15{width:134.660107pt;}
._19{width:145.247769pt;}
._1a{width:153.490797pt;}
.fs9{font-size:18.666667pt;}
.fs8{font-size:19.733333pt;}
.fsa{font-size:25.387200pt;}
.fs6{font-size:31.880533pt;}
.fs7{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:7.973583pt;}
.y105{bottom:8.432517pt;}
.yc4{bottom:11.554977pt;}
.yd3{bottom:17.659786pt;}
.yfe{bottom:17.716125pt;}
.ydb{bottom:20.892284pt;}
.y106{bottom:21.598367pt;}
.ycd{bottom:22.848795pt;}
.yf0{bottom:27.124125pt;}
.yf8{bottom:28.169458pt;}
.yc5{bottom:30.805275pt;}
.yff{bottom:36.532125pt;}
.ydc{bottom:40.457398pt;}
.ye3{bottom:41.209903pt;}
.ye9{bottom:41.413915pt;}
.yf1{bottom:42.804125pt;}
.yd4{bottom:43.604830pt;}
.yce{bottom:46.718235pt;}
.y107{bottom:46.851522pt;}
.y10c{bottom:47.572725pt;}
.yf9{bottom:49.076125pt;}
.yc6{bottom:50.696475pt;}
.y100{bottom:55.348125pt;}
.yf2{bottom:58.484125pt;}
.ye4{bottom:59.571010pt;}
.yfd{bottom:59.965500pt;}
.ydd{bottom:60.022513pt;}
.yf6{bottom:60.395708pt;}
.y102{bottom:61.679042pt;}
.yea{bottom:67.935515pt;}
.yd5{bottom:69.549873pt;}
.yfa{bottom:69.982792pt;}
.yc7{bottom:70.587675pt;}
.y108{bottom:72.104678pt;}
.yf3{bottom:74.164125pt;}
.yd2{bottom:77.458020pt;}
.ycb{bottom:77.912812pt;}
.ye5{bottom:77.932118pt;}
.yd9{bottom:79.269478pt;}
.yde{bottom:79.587628pt;}
.yf4{bottom:89.844125pt;}
.yc8{bottom:90.478875pt;}
.yfb{bottom:90.889458pt;}
.y101{bottom:92.980125pt;}
.ycf{bottom:94.457115pt;}
.yd6{bottom:95.494917pt;}
.ye6{bottom:96.293226pt;}
.y109{bottom:97.357833pt;}
.ydf{bottom:99.152743pt;}
.y32{bottom:100.740000pt;}
.y8b{bottom:104.490667pt;}
.yf5{bottom:105.524125pt;}
.y151{bottom:107.086667pt;}
.yc9{bottom:110.370075pt;}
.yfc{bottom:111.796125pt;}
.y31{bottom:112.696000pt;}
.ye7{bottom:114.654333pt;}
.y54{bottom:116.680000pt;}
.y8a{bottom:117.641333pt;}
.yd0{bottom:118.326555pt;}
.y10e{bottom:118.425333pt;}
.ye0{bottom:118.717857pt;}
.y150{bottom:119.042667pt;}
.yeb{bottom:120.978715pt;}
.yd7{bottom:121.439960pt;}
.y10a{bottom:122.610989pt;}
.y30{bottom:124.650667pt;}
.yca{bottom:130.261275pt;}
.y14f{bottom:130.997333pt;}
.y53{bottom:132.620000pt;}
.ye8{bottom:133.015441pt;}
.y12c{bottom:133.914667pt;}
.y2f{bottom:136.605333pt;}
.ye1{bottom:138.282972pt;}
.y89{bottom:138.845333pt;}
.yc2{bottom:140.356000pt;}
.yd1{bottom:142.195995pt;}
.y104{bottom:142.336000pt;}
.y14e{bottom:142.952000pt;}
.yd8{bottom:147.385004pt;}
.yec{bottom:147.500315pt;}
.y10b{bottom:147.864145pt;}
.y52{bottom:148.561333pt;}
.y88{bottom:154.785333pt;}
.y14d{bottom:154.908000pt;}
.y12b{bottom:160.936000pt;}
.yc1{bottom:162.121333pt;}
.y2e{bottom:163.144000pt;}
.y51{bottom:164.501333pt;}
.y14c{bottom:166.862667pt;}
.y10d{bottom:168.278290pt;}
.y87{bottom:170.382667pt;}
.y12a{bottom:176.876000pt;}
.yc0{bottom:178.061333pt;}
.y14b{bottom:178.817333pt;}
.y2d{bottom:179.084000pt;}
.y50{bottom:180.441333pt;}
.y86{bottom:186.322667pt;}
.y14a{bottom:190.773333pt;}
.y129{bottom:192.817333pt;}
.ybf{bottom:194.001333pt;}
.y2c{bottom:195.202667pt;}
.y4f{bottom:196.381333pt;}
.y85{bottom:202.262667pt;}
.y149{bottom:202.728000pt;}
.y128{bottom:208.757333pt;}
.ybe{bottom:209.941333pt;}
.y2b{bottom:211.142667pt;}
.y4e{bottom:212.321333pt;}
.y148{bottom:214.684000pt;}
.y84{bottom:218.202667pt;}
.y127{bottom:224.697333pt;}
.ybd{bottom:225.644000pt;}
.y147{bottom:226.638667pt;}
.y2a{bottom:227.082667pt;}
.y4d{bottom:228.261333pt;}
.y83{bottom:234.142667pt;}
.y146{bottom:238.593333pt;}
.y126{bottom:240.637333pt;}
.ybc{bottom:241.584000pt;}
.y29{bottom:243.022667pt;}
.y4c{bottom:244.202667pt;}
.y82{bottom:250.082667pt;}
.y145{bottom:250.549333pt;}
.y125{bottom:256.577333pt;}
.ybb{bottom:257.524000pt;}
.y28{bottom:258.964000pt;}
.y4b{bottom:260.142667pt;}
.y144{bottom:262.504000pt;}
.y81{bottom:266.024000pt;}
.y124{bottom:272.517333pt;}
.yba{bottom:273.464000pt;}
.y143{bottom:274.458667pt;}
.y27{bottom:274.904000pt;}
.y4a{bottom:276.082667pt;}
.y80{bottom:281.964000pt;}
.y142{bottom:286.414667pt;}
.y123{bottom:288.458667pt;}
.yb9{bottom:289.405333pt;}
.y26{bottom:290.844000pt;}
.y49{bottom:292.022667pt;}
.y7f{bottom:297.904000pt;}
.y141{bottom:298.369333pt;}
.y122{bottom:304.398667pt;}
.yb8{bottom:305.345333pt;}
.y25{bottom:306.784000pt;}
.y48{bottom:307.962667pt;}
.y140{bottom:310.325333pt;}
.y7e{bottom:313.844000pt;}
.y121{bottom:320.338667pt;}
.yb7{bottom:321.285333pt;}
.y13f{bottom:322.280000pt;}
.y24{bottom:322.724000pt;}
.y47{bottom:329.168000pt;}
.y7d{bottom:329.441333pt;}
.y13e{bottom:334.234667pt;}
.y120{bottom:336.278667pt;}
.yb6{bottom:337.225333pt;}
.y23{bottom:338.664000pt;}
.y7c{bottom:345.381333pt;}
.y13d{bottom:346.190667pt;}
.y11f{bottom:352.218667pt;}
.y103{bottom:352.253333pt;}
.yb5{bottom:353.165333pt;}
.y22{bottom:354.605333pt;}
.y46{bottom:355.604000pt;}
.y13c{bottom:358.145333pt;}
.y7b{bottom:361.321333pt;}
.y11e{bottom:368.408000pt;}
.yb4{bottom:368.868000pt;}
.y13b{bottom:370.100000pt;}
.y21{bottom:370.545333pt;}
.y45{bottom:371.544000pt;}
.yf7{bottom:375.998667pt;}
.y7a{bottom:377.261333pt;}
.y13a{bottom:382.056000pt;}
.y11d{bottom:384.348000pt;}
.yb3{bottom:384.808000pt;}
.y20{bottom:386.662667pt;}
.y44{bottom:387.484000pt;}
.yee{bottom:391.940000pt;}
.y79{bottom:393.201333pt;}
.y139{bottom:394.010667pt;}
.y11c{bottom:400.289333pt;}
.yb2{bottom:400.748000pt;}
.y1f{bottom:402.602667pt;}
.y43{bottom:403.424000pt;}
.y138{bottom:405.965333pt;}
.y78{bottom:409.142667pt;}
.y11b{bottom:416.229333pt;}
.yb1{bottom:416.688000pt;}
.y137{bottom:417.921333pt;}
.y1e{bottom:418.544000pt;}
.y42{bottom:419.364000pt;}
.y77{bottom:425.082667pt;}
.y136{bottom:429.876000pt;}
.y11a{bottom:432.169333pt;}
.yb0{bottom:432.629333pt;}
.y1d{bottom:434.484000pt;}
.y41{bottom:435.305333pt;}
.y76{bottom:441.022667pt;}
.y135{bottom:441.832000pt;}
.y119{bottom:448.109333pt;}
.yaf{bottom:448.569333pt;}
.y1c{bottom:450.424000pt;}
.y40{bottom:451.245333pt;}
.y134{bottom:453.786667pt;}
.y75{bottom:456.962667pt;}
.y118{bottom:464.049333pt;}
.yae{bottom:464.509333pt;}
.y133{bottom:465.741333pt;}
.y1b{bottom:466.364000pt;}
.y3f{bottom:467.185333pt;}
.y74{bottom:472.902667pt;}
.y132{bottom:477.697333pt;}
.y117{bottom:479.989333pt;}
.yad{bottom:480.449333pt;}
.y1a{bottom:482.304000pt;}
.y3e{bottom:483.125333pt;}
.y73{bottom:488.842667pt;}
.y131{bottom:489.652000pt;}
.y116{bottom:495.930667pt;}
.yac{bottom:496.150667pt;}
.y3d{bottom:499.065333pt;}
.y130{bottom:501.606667pt;}
.y19{bottom:503.496000pt;}
.y72{bottom:508.624000pt;}
.y115{bottom:511.870667pt;}
.yab{bottom:512.092000pt;}
.y12f{bottom:513.562667pt;}
.y3c{bottom:515.006667pt;}
.y12e{bottom:525.517333pt;}
.y114{bottom:527.810667pt;}
.yaa{bottom:528.032000pt;}
.y3b{bottom:531.126667pt;}
.y71{bottom:531.469333pt;}
.y18{bottom:533.605333pt;}
.y12d{bottom:537.473333pt;}
.ya9{bottom:543.972000pt;}
.y17{bottom:547.066667pt;}
.y70{bottom:547.410667pt;}
.y113{bottom:549.428000pt;}
.ya8{bottom:559.912000pt;}
.y16{bottom:560.350667pt;}
.yed{bottom:561.030667pt;}
.y3a{bottom:563.006667pt;}
.y6f{bottom:563.350667pt;}
.y112{bottom:569.698667pt;}
.y15{bottom:573.633333pt;}
.ya7{bottom:575.852000pt;}
.y39{bottom:578.946667pt;}
.y6e{bottom:579.290667pt;}
.ye2{bottom:585.189333pt;}
.y14{bottom:586.917333pt;}
.ya6{bottom:591.793333pt;}
.y111{bottom:593.609333pt;}
.y38{bottom:594.886667pt;}
.y6d{bottom:595.230667pt;}
.y13{bottom:600.201333pt;}
.yda{bottom:601.130667pt;}
.ya5{bottom:607.733333pt;}
.y37{bottom:610.828000pt;}
.y6c{bottom:611.170667pt;}
.y12{bottom:613.484000pt;}
.ya4{bottom:623.673333pt;}
.y11{bottom:626.768000pt;}
.y6b{bottom:627.110667pt;}
.ya3{bottom:639.613333pt;}
.y10{bottom:640.052000pt;}
.y36{bottom:642.708000pt;}
.y6a{bottom:643.052000pt;}
.yf{bottom:653.334667pt;}
.ya2{bottom:655.553333pt;}
.y35{bottom:658.648000pt;}
.y69{bottom:658.992000pt;}
.ye{bottom:666.618667pt;}
.ya1{bottom:671.493333pt;}
.y34{bottom:674.588000pt;}
.y68{bottom:674.932000pt;}
.yd{bottom:679.901333pt;}
.ya0{bottom:687.434667pt;}
.y33{bottom:690.528000pt;}
.y67{bottom:690.872000pt;}
.yc{bottom:693.185333pt;}
.y9f{bottom:703.374667pt;}
.yb{bottom:706.469333pt;}
.y66{bottom:706.812000pt;}
.y9e{bottom:719.076000pt;}
.y65{bottom:722.752000pt;}
.y9d{bottom:735.016000pt;}
.y64{bottom:738.693333pt;}
.y9c{bottom:750.957333pt;}
.ya{bottom:754.225333pt;}
.y63{bottom:754.633333pt;}
.y9b{bottom:766.897333pt;}
.y9{bottom:770.165333pt;}
.y62{bottom:770.573333pt;}
.y110{bottom:781.912000pt;}
.y9a{bottom:782.837333pt;}
.y8{bottom:786.105333pt;}
.y61{bottom:786.513333pt;}
.ycc{bottom:786.793333pt;}
.y99{bottom:798.777333pt;}
.y7{bottom:802.046667pt;}
.y60{bottom:802.453333pt;}
.yc3{bottom:802.733333pt;}
.y10f{bottom:805.822667pt;}
.y98{bottom:816.813333pt;}
.y5f{bottom:818.394667pt;}
.y97{bottom:829.298667pt;}
.y6{bottom:832.474667pt;}
.y5e{bottom:833.990667pt;}
.y96{bottom:841.785333pt;}
.y5{bottom:848.913333pt;}
.y5d{bottom:849.930667pt;}
.y95{bottom:854.272000pt;}
.y4{bottom:865.352000pt;}
.y5c{bottom:865.870667pt;}
.y94{bottom:866.758667pt;}
.y93{bottom:879.245333pt;}
.y5b{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y92{bottom:891.732000pt;}
.y5a{bottom:897.752000pt;}
.y91{bottom:904.218667pt;}
.y59{bottom:913.692000pt;}
.y90{bottom:916.705333pt;}
.y2{bottom:923.830667pt;}
.y8f{bottom:929.192000pt;}
.y58{bottom:929.632000pt;}
.y57{bottom:945.572000pt;}
.y8e{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y56{bottom:961.512000pt;}
.y8d{bottom:965.497333pt;}
.y8c{bottom:977.452000pt;}
.y55{bottom:977.453333pt;}
.h10{height:17.341333pt;}
.he{height:18.332267pt;}
.hb{height:21.933807pt;}
.h12{height:23.584709pt;}
.h13{height:29.159939pt;}
.h8{height:29.244954pt;}
.h7{height:29.458287pt;}
.hc{height:29.499997pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h3{height:36.449833pt;}
.h4{height:36.556100pt;}
.h9{height:36.874903pt;}
.h2{height:40.211857pt;}
.ha{height:44.874530pt;}
.h1{height:87.734861pt;}
.hf{height:134.400000pt;}
.hd{height:170.496000pt;}
.h11{height:182.787840pt;}
.h0{height:1056.000000pt;}
.w1{width:227.328000pt;}
.w2{width:235.200000pt;}
.w3{width:685.454400pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:8.420583pt;}
.x3a{left:10.485417pt;}
.x2f{left:11.557875pt;}
.x3c{left:13.453125pt;}
.x29{left:15.552719pt;}
.x38{left:17.232031pt;}
.x2a{left:18.690010pt;}
.x39{left:20.199740pt;}
.x2e{left:21.827302pt;}
.x3e{left:23.167448pt;}
.x28{left:30.370938pt;}
.x45{left:39.130230pt;}
.x41{left:41.291083pt;}
.x19{left:65.285333pt;}
.x27{left:68.516000pt;}
.x1{left:69.542667pt;}
.x48{left:70.598667pt;}
.x37{left:71.814667pt;}
.x32{left:72.833333pt;}
.x1b{left:75.912000pt;}
.x18{left:78.569333pt;}
.x21{left:81.286667pt;}
.x4{left:83.742667pt;}
.x1d{left:87.594667pt;}
.x49{left:89.630667pt;}
.x6{left:119.474667pt;}
.x3{left:121.310667pt;}
.x2c{left:143.589333pt;}
.x3b{left:150.828000pt;}
.x5{left:156.594667pt;}
.x13{left:158.444000pt;}
.x10{left:160.416000pt;}
.x46{left:174.768262pt;}
.x1a{left:180.826667pt;}
.x47{left:182.453333pt;}
.x36{left:183.886667pt;}
.x44{left:193.546667pt;}
.x42{left:196.020125pt;}
.xf{left:201.342667pt;}
.x43{left:213.212000pt;}
.x12{left:221.101333pt;}
.x40{left:229.109333pt;}
.x11{left:234.125333pt;}
.x8{left:279.121333pt;}
.x33{left:294.337333pt;}
.x2d{left:298.654667pt;}
.x1c{left:315.628000pt;}
.x2{left:325.382667pt;}
.xa{left:345.073333pt;}
.x7{left:364.809333pt;}
.x30{left:372.549333pt;}
.x9{left:398.672000pt;}
.x1e{left:415.970667pt;}
.x15{left:418.600000pt;}
.x4a{left:421.284000pt;}
.x26{left:426.597333pt;}
.x1f{left:429.253333pt;}
.x4b{left:440.316000pt;}
.x23{left:463.256000pt;}
.x4c{left:464.325333pt;}
.x20{left:469.238667pt;}
.x14{left:477.066667pt;}
.x4d{left:478.929333pt;}
.x25{left:482.297333pt;}
.x17{left:495.597333pt;}
.x3d{left:508.981333pt;}
.x34{left:515.842667pt;}
.x31{left:520.160000pt;}
.x24{left:528.646667pt;}
.x16{left:538.150667pt;}
.x22{left:563.088000pt;}
.xc{left:573.793333pt;}
.x35{left:589.732000pt;}
.x3f{left:590.656000pt;}
.xe{left:597.976000pt;}
.xb{left:628.852000pt;}
.xd{left:646.645333pt;}
}




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