
    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_e0f209c0da9f625d6e70b6aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_6cd2f720ff74bbe8c7840487.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_22706acad950bee37d5df592.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694000;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_74932a02bc7f04ed02762be5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;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_a0fbfe4d884141947b722aee.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_050c8eba1698e5a46afebb67.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e31ce4273e84c2fb97b5eccb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d6df3d039bad3060a70526b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3915109d15fa76f6784a64f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_163044c3cd7f0e2ac0e0ee50.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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:ffb;src:url('chunks/assets/font_ff4332e6b38fba3ad5710e88.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.388000;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:ffc;src:url('chunks/assets/font_4122e6f6b6af88fffab0f876.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.820000;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:ffd;src:url('chunks/assets/font_fb06e99f27744e53de9ea682.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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:ffe;src:url('chunks/assets/font_93555d86703c13feceba53e1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.860000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.640000px;}
.v1{vertical-align:21.660000px;}
.v3{vertical-align:23.520000px;}
.v5{vertical-align:44.160000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.004672px;}
.ls7{letter-spacing:0.025551px;}
.ls0{letter-spacing:2.994026px;}
.ls5{letter-spacing:6.432691px;}
.ls6{letter-spacing:13.264672px;}
.lsb{letter-spacing:13.324672px;}
.ls9{letter-spacing:16.624672px;}
.lse{letter-spacing:20.454026px;}
.lsf{letter-spacing:21.461065px;}
.lsd{letter-spacing:23.146500px;}
.lsc{letter-spacing:24.925551px;}
.ls3{letter-spacing:29.887650px;}
.ls4{letter-spacing:29.931000px;}
.ls1{letter-spacing:30.641065px;}
.lsa{letter-spacing:33.735373px;}
.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;}
}
.wsce{word-spacing:-0.071730px;}
.ws17{word-spacing:-0.059778px;}
.wsc3{word-spacing:-0.053796px;}
.ws92{word-spacing:-0.041844px;}
.ws23{word-spacing:0.000000px;}
.ws94{word-spacing:8.300090px;}
.ws8e{word-spacing:9.863370px;}
.ws8d{word-spacing:9.923148px;}
.wsc6{word-spacing:10.490220px;}
.wsad{word-spacing:10.544016px;}
.wse{word-spacing:12.534468px;}
.wsd6{word-spacing:13.072428px;}
.ws91{word-spacing:13.151160px;}
.ws93{word-spacing:13.276889px;}
.ws41{word-spacing:13.748940px;}
.ws82{word-spacing:14.167386px;}
.ws7f{word-spacing:14.286942px;}
.ws57{word-spacing:14.406498px;}
.ws66{word-spacing:14.466276px;}
.ws9{word-spacing:14.471124px;}
.wsc{word-spacing:14.524920px;}
.ws3e{word-spacing:14.705388px;}
.ws98{word-spacing:14.824944px;}
.ws9a{word-spacing:14.884722px;}
.ws54{word-spacing:14.944500px;}
.ws90{word-spacing:14.944834px;}
.ws99{word-spacing:14.956889px;}
.ws7e{word-spacing:15.004278px;}
.ws8{word-spacing:15.062880px;}
.ws1a{word-spacing:15.064056px;}
.ws8a{word-spacing:15.183612px;}
.ws47{word-spacing:15.243390px;}
.wsd{word-spacing:15.278064px;}
.wsa5{word-spacing:15.422724px;}
.wsa2{word-spacing:15.482502px;}
.ws3a{word-spacing:15.542280px;}
.ws75{word-spacing:15.602058px;}
.wsf{word-spacing:15.816024px;}
.wsb8{word-spacing:16.011416px;}
.ws68{word-spacing:16.020504px;}
.ws81{word-spacing:16.080282px;}
.wsd1{word-spacing:16.138800px;}
.ws32{word-spacing:16.199838px;}
.ws33{word-spacing:16.259616px;}
.ws4b{word-spacing:16.319394px;}
.ws4c{word-spacing:16.379172px;}
.ws9c{word-spacing:16.438950px;}
.ws8f{word-spacing:16.498728px;}
.ws1d{word-spacing:16.618284px;}
.ws24{word-spacing:16.678062px;}
.wsae{word-spacing:16.737840px;}
.ws7d{word-spacing:16.857396px;}
.ws70{word-spacing:16.917174px;}
.ws7a{word-spacing:16.976952px;}
.ws10{word-spacing:16.999536px;}
.ws89{word-spacing:17.036730px;}
.ws3d{word-spacing:17.156286px;}
.ws1e{word-spacing:17.216064px;}
.ws71{word-spacing:17.275842px;}
.wsc8{word-spacing:17.335620px;}
.wsb5{word-spacing:17.395398px;}
.wsbe{word-spacing:17.455176px;}
.wsba{word-spacing:17.514954px;}
.ws6a{word-spacing:17.574732px;}
.wscf{word-spacing:17.634510px;}
.ws5f{word-spacing:17.694288px;}
.wsb3{word-spacing:17.754066px;}
.ws19{word-spacing:17.813844px;}
.ws63{word-spacing:17.873622px;}
.wse2{word-spacing:17.914068px;}
.ws69{word-spacing:17.933400px;}
.wsc1{word-spacing:17.993178px;}
.wsaa{word-spacing:18.052956px;}
.ws95{word-spacing:18.211190px;}
.ws49{word-spacing:18.232290px;}
.wsab{word-spacing:18.250550px;}
.ws5{word-spacing:18.290640px;}
.ws79{word-spacing:18.292068px;}
.ws4{word-spacing:18.344436px;}
.wsd8{word-spacing:18.364018px;}
.wsdd{word-spacing:18.380192px;}
.ws6{word-spacing:18.398232px;}
.wsd2{word-spacing:18.411272px;}
.wsac{word-spacing:18.411624px;}
.ws86{word-spacing:18.531180px;}
.wsc0{word-spacing:18.590958px;}
.ws30{word-spacing:18.650736px;}
.ws4d{word-spacing:18.710514px;}
.wsa9{word-spacing:18.767336px;}
.wsa8{word-spacing:18.770292px;}
.ws46{word-spacing:18.830070px;}
.wsd7{word-spacing:18.882396px;}
.ws4a{word-spacing:18.889848px;}
.ws34{word-spacing:18.949626px;}
.ws6b{word-spacing:19.009404px;}
.ws53{word-spacing:19.069182px;}
.wsd5{word-spacing:19.097580px;}
.wsb2{word-spacing:19.128960px;}
.wsa1{word-spacing:19.248516px;}
.ws58{word-spacing:19.308294px;}
.wsc2{word-spacing:19.368072px;}
.wsc4{word-spacing:19.420356px;}
.ws64{word-spacing:19.427850px;}
.ws9e{word-spacing:19.450550px;}
.wsdc{word-spacing:19.474152px;}
.ws67{word-spacing:19.487628px;}
.ws9b{word-spacing:19.547406px;}
.wsd9{word-spacing:19.581744px;}
.wsaf{word-spacing:19.607184px;}
.ws40{word-spacing:19.666962px;}
.ws2{word-spacing:19.786518px;}
.ws8c{word-spacing:19.829006px;}
.ws3{word-spacing:19.846296px;}
.wsdb{word-spacing:19.850724px;}
.ws8b{word-spacing:19.870550px;}
.ws3f{word-spacing:19.906074px;}
.ws7b{word-spacing:19.965852px;}
.ws6f{word-spacing:20.025630px;}
.ws78{word-spacing:20.085408px;}
.ws18{word-spacing:20.145186px;}
.ws42{word-spacing:20.204964px;}
.wsb1{word-spacing:20.384298px;}
.wsbb{word-spacing:20.444076px;}
.ws39{word-spacing:20.683188px;}
.ws44{word-spacing:20.742966px;}
.wsb6{word-spacing:20.802744px;}
.ws22{word-spacing:20.862522px;}
.ws16{word-spacing:20.922300px;}
.ws13{word-spacing:20.982078px;}
.ws2e{word-spacing:21.101634px;}
.ws6c{word-spacing:21.161412px;}
.ws27{word-spacing:21.221190px;}
.ws60{word-spacing:21.280968px;}
.ws59{word-spacing:21.340746px;}
.wsb{word-spacing:21.357012px;}
.ws2d{word-spacing:21.372965px;}
.ws2c{word-spacing:21.400524px;}
.ws38{word-spacing:21.460302px;}
.ws1b{word-spacing:21.579858px;}
.ws5a{word-spacing:21.759192px;}
.ws20{word-spacing:21.818970px;}
.wscc{word-spacing:21.878748px;}
.ws45{word-spacing:21.998304px;}
.wscd{word-spacing:22.058082px;}
.wsb7{word-spacing:22.117860px;}
.ws7c{word-spacing:22.177638px;}
.wsa{word-spacing:22.271544px;}
.ws85{word-spacing:22.297194px;}
.ws80{word-spacing:22.356972px;}
.ws26{word-spacing:22.416750px;}
.wsda{word-spacing:22.432932px;}
.ws9d{word-spacing:22.476528px;}
.ws1c{word-spacing:22.536306px;}
.wsd4{word-spacing:22.594320px;}
.ws5e{word-spacing:22.715640px;}
.ws36{word-spacing:22.775418px;}
.ws77{word-spacing:22.835196px;}
.ws9f{word-spacing:22.894974px;}
.ws73{word-spacing:22.954752px;}
.wsa7{word-spacing:23.014530px;}
.wsc7{word-spacing:23.074308px;}
.wse3{word-spacing:23.132280px;}
.wsb0{word-spacing:23.253642px;}
.wsdf{word-spacing:23.401260px;}
.wsc5{word-spacing:23.455056px;}
.ws84{word-spacing:23.552532px;}
.wsca{word-spacing:23.612310px;}
.ws2b{word-spacing:23.731866px;}
.ws29{word-spacing:23.791644px;}
.ws55{word-spacing:23.851422px;}
.ws5b{word-spacing:23.911200px;}
.ws31{word-spacing:23.970978px;}
.ws1f{word-spacing:24.030756px;}
.ws83{word-spacing:24.090534px;}
.wsa6{word-spacing:24.210090px;}
.ws5d{word-spacing:24.269868px;}
.wsa3{word-spacing:24.294779px;}
.wsa4{word-spacing:24.295161px;}
.wsb9{word-spacing:24.449202px;}
.wse0{word-spacing:24.477180px;}
.ws3c{word-spacing:24.508980px;}
.wse1{word-spacing:24.530976px;}
.ws15{word-spacing:24.628536px;}
.ws52{word-spacing:24.688314px;}
.ws21{word-spacing:24.720377px;}
.ws14{word-spacing:24.807870px;}
.ws2a{word-spacing:24.867648px;}
.ws96{word-spacing:24.882008px;}
.ws65{word-spacing:24.927426px;}
.ws43{word-spacing:25.046982px;}
.wsb4{word-spacing:25.106760px;}
.ws61{word-spacing:25.166538px;}
.wsc9{word-spacing:25.226316px;}
.ws5c{word-spacing:25.286094px;}
.wsbc{word-spacing:25.345872px;}
.ws28{word-spacing:25.465428px;}
.ws88{word-spacing:25.525206px;}
.ws6d{word-spacing:25.704540px;}
.wsa0{word-spacing:25.764318px;}
.ws11{word-spacing:25.875876px;}
.ws72{word-spacing:25.883874px;}
.ws62{word-spacing:26.182764px;}
.ws37{word-spacing:26.421876px;}
.wsbd{word-spacing:26.481654px;}
.ws97{word-spacing:26.524834px;}
.ws48{word-spacing:26.601210px;}
.ws2f{word-spacing:26.660988px;}
.ws35{word-spacing:26.827020px;}
.ws56{word-spacing:27.139212px;}
.ws25{word-spacing:27.198990px;}
.ws50{word-spacing:27.226072px;}
.ws4f{word-spacing:27.258768px;}
.ws4e{word-spacing:27.318546px;}
.wsd3{word-spacing:27.328368px;}
.wsbf{word-spacing:27.438102px;}
.wscb{word-spacing:27.497880px;}
.ws6e{word-spacing:27.916326px;}
.ws51{word-spacing:28.215216px;}
.ws87{word-spacing:28.394550px;}
.ws74{word-spacing:28.573884px;}
.ws3b{word-spacing:29.171664px;}
.wsd0{word-spacing:29.231442px;}
.ws76{word-spacing:29.769444px;}
.wsde{word-spacing:29.856780px;}
.ws7{word-spacing:29.865106px;}
.ws1{word-spacing:32.106348px;}
.ws0{word-spacing:32.192424px;}
.ws12{word-spacing:80.624520px;}
._20{margin-left:-31.318969px;}
._5{margin-left:-29.889000px;}
._3{margin-left:-28.215216px;}
._a{margin-left:-26.793704px;}
._1f{margin-left:-23.174608px;}
._8{margin-left:-21.518400px;}
._13{margin-left:-15.651830px;}
._1{margin-left:-8.005068px;}
._7{margin-left:-5.899154px;}
._4{margin-left:-4.698532px;}
._17{margin-left:-3.689766px;}
._0{margin-left:-2.668356px;}
._2{margin-left:-1.614006px;}
._9{width:1.613880px;}
._6{width:3.227886px;}
._b{width:4.523671px;}
._1c{width:6.204883px;}
._12{width:7.359457px;}
._19{width:13.522054px;}
._1d{width:15.939198px;}
._16{width:17.789415px;}
._c{width:19.862892px;}
._1a{width:20.921915px;}
._11{width:22.574430px;}
._15{width:23.605735px;}
._22{width:24.638820px;}
._14{width:25.802442px;}
._e{width:27.775242px;}
._21{width:29.895478px;}
._23{width:37.119240px;}
._25{width:38.801278px;}
._18{width:39.824177px;}
._24{width:42.929334px;}
._1b{width:49.531815px;}
._10{width:68.744700px;}
._f{width:80.696250px;}
._1e{width:142.989768px;}
._d{width:170.714236px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.868000px;}
.fs2{font-size:41.844000px;}
.fs4{font-size:53.796000px;}
.fs1{font-size:59.778000px;}
.fs5{font-size:71.730000px;}
.fs0{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y27{bottom:268.620000px;}
.yb2{bottom:271.515000px;}
.y118{bottom:274.335000px;}
.y26{bottom:286.545000px;}
.yb1{bottom:289.125000px;}
.y117{bottom:298.575000px;}
.y13f{bottom:301.365000px;}
.y25{bottom:304.485000px;}
.ydf{bottom:307.035000px;}
.yb0{bottom:307.050000px;}
.y87{bottom:308.385000px;}
.y116{bottom:316.515000px;}
.y128{bottom:318.630000px;}
.y11c{bottom:318.705000px;}
.y13e{bottom:319.305000px;}
.y4e{bottom:322.200000px;}
.y24{bottom:322.410000px;}
.yaf{bottom:324.645000px;}
.yde{bottom:324.975000px;}
.y86{bottom:326.310000px;}
.y115{bottom:334.440000px;}
.y13d{bottom:337.230000px;}
.y4d{bottom:340.140000px;}
.y23{bottom:340.350000px;}
.yae{bottom:342.240000px;}
.ydd{bottom:342.900000px;}
.y85{bottom:344.250000px;}
.y114{bottom:352.380000px;}
.y13c{bottom:355.170000px;}
.y4c{bottom:358.065000px;}
.y22{bottom:358.275000px;}
.yad{bottom:359.850000px;}
.ydc{bottom:360.840000px;}
.y84{bottom:362.175000px;}
.y113{bottom:370.620000px;}
.y13b{bottom:373.095000px;}
.y4b{bottom:375.780000px;}
.y21{bottom:376.215000px;}
.yac{bottom:377.445000px;}
.y83{bottom:380.115000px;}
.yf4{bottom:386.280000px;}
.y112{bottom:388.560000px;}
.y13a{bottom:391.035000px;}
.y20{bottom:394.140000px;}
.yab{bottom:397.020000px;}
.y82{bottom:401.940000px;}
.ydb{bottom:403.485000px;}
.y111{bottom:406.485000px;}
.y4a{bottom:407.385000px;}
.y1f{bottom:412.080000px;}
.yaa{bottom:414.945000px;}
.y81{bottom:419.880000px;}
.y110{bottom:424.425000px;}
.y49{bottom:425.310000px;}
.yf3{bottom:429.225000px;}
.y1e{bottom:430.005000px;}
.ya9{bottom:432.885000px;}
.y139{bottom:436.650000px;}
.y80{bottom:437.805000px;}
.y10f{bottom:442.350000px;}
.y48{bottom:443.250000px;}
.yf2{bottom:447.165000px;}
.y1d{bottom:447.945000px;}
.ya8{bottom:450.810000px;}
.y7f{bottom:455.745000px;}
.y10e{bottom:460.290000px;}
.yda{bottom:461.085000px;}
.y47{bottom:461.175000px;}
.yf1{bottom:465.090000px;}
.y1c{bottom:465.870000px;}
.ya7{bottom:470.730000px;}
.y7e{bottom:473.670000px;}
.y10d{bottom:478.215000px;}
.yd9{bottom:479.010000px;}
.y46{bottom:479.115000px;}
.yf0{bottom:483.030000px;}
.y1b{bottom:483.810000px;}
.ya6{bottom:490.305000px;}
.y7d{bottom:491.610000px;}
.y138{bottom:494.220000px;}
.y10c{bottom:496.155000px;}
.yd8{bottom:496.950000px;}
.y45{bottom:497.040000px;}
.yef{bottom:500.955000px;}
.y1a{bottom:501.735000px;}
.ya5{bottom:508.245000px;}
.y7c{bottom:509.535000px;}
.y137{bottom:512.145000px;}
.y10b{bottom:514.080000px;}
.yd7{bottom:514.875000px;}
.y44{bottom:514.980000px;}
.yee{bottom:518.895000px;}
.y19{bottom:519.675000px;}
.y7b{bottom:527.475000px;}
.ya4{bottom:528.150000px;}
.y136{bottom:530.085000px;}
.y10a{bottom:532.020000px;}
.yd6{bottom:532.815000px;}
.y43{bottom:532.905000px;}
.yed{bottom:536.820000px;}
.y18{bottom:537.615000px;}
.ya3{bottom:545.760000px;}
.y15d{bottom:546.780000px;}
.y135{bottom:548.010000px;}
.y7a{bottom:549.300000px;}
.yd5{bottom:550.740000px;}
.y42{bottom:550.845000px;}
.yec{bottom:554.760000px;}
.y17{bottom:555.540000px;}
.y15c{bottom:563.220000px;}
.ya2{bottom:563.355000px;}
.y109{bottom:563.490000px;}
.y134{bottom:565.950000px;}
.y79{bottom:567.240000px;}
.y41{bottom:568.770000px;}
.yd4{bottom:571.230000px;}
.yeb{bottom:572.685000px;}
.y16{bottom:573.480000px;}
.y15b{bottom:579.660000px;}
.ya1{bottom:580.950000px;}
.y78{bottom:585.165000px;}
.y133{bottom:585.825000px;}
.y40{bottom:586.710000px;}
.yd3{bottom:589.170000px;}
.yea{bottom:590.625000px;}
.y67{bottom:591.405000px;}
.y15a{bottom:596.100000px;}
.ya0{bottom:598.545000px;}
.y127{bottom:598.845000px;}
.y77{bottom:603.105000px;}
.y132{bottom:603.765000px;}
.y3f{bottom:604.635000px;}
.yd2{bottom:607.095000px;}
.ye9{bottom:608.550000px;}
.y15{bottom:608.595000px;}
.y66{bottom:609.345000px;}
.y108{bottom:609.915000px;}
.y159{bottom:612.540000px;}
.y126{bottom:616.785000px;}
.y9f{bottom:618.120000px;}
.y131{bottom:621.690000px;}
.y3e{bottom:622.575000px;}
.y76{bottom:624.930000px;}
.yd1{bottom:625.035000px;}
.ye8{bottom:626.490000px;}
.y65{bottom:627.270000px;}
.y107{bottom:627.840000px;}
.y158{bottom:628.980000px;}
.y125{bottom:634.710000px;}
.y9e{bottom:636.060000px;}
.y130{bottom:639.630000px;}
.y3d{bottom:640.500000px;}
.y75{bottom:642.870000px;}
.yd0{bottom:642.960000px;}
.ye7{bottom:644.415000px;}
.y64{bottom:645.210000px;}
.y157{bottom:645.405000px;}
.y106{bottom:645.780000px;}
.y124{bottom:652.650000px;}
.y9d{bottom:655.965000px;}
.y12f{bottom:657.555000px;}
.y14{bottom:658.410000px;}
.y74{bottom:660.795000px;}
.ycf{bottom:660.900000px;}
.y156{bottom:661.845000px;}
.ye6{bottom:662.355000px;}
.y63{bottom:663.135000px;}
.y105{bottom:664.020000px;}
.y3c{bottom:669.540000px;}
.y11b{bottom:669.825000px;}
.y123{bottom:670.575000px;}
.y9c{bottom:673.905000px;}
.y13{bottom:674.850000px;}
.y12e{bottom:675.495000px;}
.y155{bottom:678.285000px;}
.y73{bottom:678.735000px;}
.ye5{bottom:680.280000px;}
.y62{bottom:681.075000px;}
.yce{bottom:681.375000px;}
.y104{bottom:681.960000px;}
.y11a{bottom:686.250000px;}
.y122{bottom:688.515000px;}
.y12{bottom:691.275000px;}
.y9b{bottom:691.500000px;}
.y12d{bottom:693.420000px;}
.y154{bottom:694.725000px;}
.y72{bottom:696.660000px;}
.ye4{bottom:698.220000px;}
.y61{bottom:699.000000px;}
.ycd{bottom:699.315000px;}
.y103{bottom:699.885000px;}
.y119{bottom:702.690000px;}
.y3b{bottom:704.550000px;}
.y121{bottom:706.440000px;}
.y11{bottom:707.715000px;}
.y9a{bottom:709.440000px;}
.y153{bottom:711.165000px;}
.y12c{bottom:711.360000px;}
.y71{bottom:714.600000px;}
.ycc{bottom:717.255000px;}
.y102{bottom:717.825000px;}
.y60{bottom:723.405000px;}
.y10{bottom:724.155000px;}
.y120{bottom:724.380000px;}
.y152{bottom:727.605000px;}
.y99{bottom:729.015000px;}
.y12b{bottom:729.285000px;}
.y70{bottom:732.525000px;}
.ycb{bottom:735.180000px;}
.y101{bottom:735.750000px;}
.yf{bottom:740.595000px;}
.y11f{bottom:742.305000px;}
.y151{bottom:744.045000px;}
.y98{bottom:746.940000px;}
.ye3{bottom:748.110000px;}
.y3a{bottom:751.515000px;}
.y100{bottom:753.690000px;}
.y6f{bottom:754.365000px;}
.yca{bottom:755.670000px;}
.ye{bottom:757.035000px;}
.y11e{bottom:760.245000px;}
.y150{bottom:760.485000px;}
.y5f{bottom:762.735000px;}
.y97{bottom:764.205000px;}
.y39{bottom:769.440000px;}
.yff{bottom:771.615000px;}
.y6e{bottom:772.290000px;}
.yd{bottom:773.475000px;}
.yc9{bottom:773.595000px;}
.y12a{bottom:774.900000px;}
.y14f{bottom:776.925000px;}
.y5e{bottom:780.675000px;}
.y96{bottom:782.145000px;}
.y38{bottom:787.380000px;}
.yfe{bottom:789.555000px;}
.yc{bottom:789.915000px;}
.y6d{bottom:790.230000px;}
.yc8{bottom:791.535000px;}
.y14e{bottom:793.350000px;}
.y5d{bottom:798.600000px;}
.y95{bottom:799.395000px;}
.y37{bottom:805.305000px;}
.yb{bottom:806.355000px;}
.yfd{bottom:807.480000px;}
.y6c{bottom:808.155000px;}
.yc7{bottom:809.460000px;}
.y14d{bottom:809.790000px;}
.y5c{bottom:816.540000px;}
.y94{bottom:817.335000px;}
.ya{bottom:822.795000px;}
.y36{bottom:823.245000px;}
.yfc{bottom:825.420000px;}
.y6b{bottom:826.095000px;}
.y14c{bottom:826.230000px;}
.yc6{bottom:827.400000px;}
.y129{bottom:831.120000px;}
.y5b{bottom:834.465000px;}
.y93{bottom:835.260000px;}
.y11d{bottom:837.825000px;}
.y35{bottom:841.170000px;}
.y14b{bottom:842.670000px;}
.yfb{bottom:843.345000px;}
.y6a{bottom:844.035000px;}
.yc5{bottom:845.325000px;}
.y5a{bottom:852.405000px;}
.y92{bottom:853.200000px;}
.y34{bottom:859.110000px;}
.yfa{bottom:861.285000px;}
.y69{bottom:861.960000px;}
.yc4{bottom:863.265000px;}
.y59{bottom:870.330000px;}
.y91{bottom:873.105000px;}
.y14a{bottom:875.550000px;}
.y33{bottom:877.035000px;}
.yc3{bottom:881.190000px;}
.y9{bottom:881.940000px;}
.y58{bottom:888.270000px;}
.y90{bottom:891.045000px;}
.y149{bottom:891.990000px;}
.y32{bottom:894.975000px;}
.y8{bottom:898.380000px;}
.yf9{bottom:898.740000px;}
.yc2{bottom:899.130000px;}
.y57{bottom:906.195000px;}
.y148{bottom:908.430000px;}
.y8f{bottom:908.640000px;}
.y31{bottom:912.915000px;}
.y68{bottom:917.325000px;}
.y7{bottom:920.535000px;}
.y56{bottom:924.135000px;}
.y147{bottom:924.870000px;}
.y8e{bottom:926.580000px;}
.y30{bottom:930.840000px;}
.y6{bottom:931.260000px;}
.y146{bottom:941.295000px;}
.yc1{bottom:941.865000px;}
.y55{bottom:942.060000px;}
.y8d{bottom:944.175000px;}
.y5{bottom:947.700000px;}
.yf8{bottom:948.135000px;}
.y2f{bottom:948.780000px;}
.ybb{bottom:950.670000px;}
.yc0{bottom:954.645000px;}
.yba{bottom:955.140000px;}
.y145{bottom:957.735000px;}
.yb9{bottom:959.625000px;}
.y54{bottom:960.000000px;}
.y8c{bottom:963.750000px;}
.yf7{bottom:966.075000px;}
.ybf{bottom:966.465000px;}
.y2e{bottom:966.705000px;}
.yb4{bottom:969.345000px;}
.y4{bottom:969.855000px;}
.y144{bottom:974.175000px;}
.y53{bottom:977.925000px;}
.ybe{bottom:979.110000px;}
.y8b{bottom:981.690000px;}
.yf6{bottom:984.315000px;}
.y2d{bottom:984.645000px;}
.yb8{bottom:986.535000px;}
.y143{bottom:990.615000px;}
.yb7{bottom:991.005000px;}
.ybd{bottom:991.890000px;}
.y3{bottom:995.460000px;}
.yb6{bottom:995.490000px;}
.ybc{bottom:997.050000px;}
.y8a{bottom:999.615000px;}
.yf5{bottom:1002.255000px;}
.y2c{bottom:1002.570000px;}
.y52{bottom:1003.950000px;}
.y142{bottom:1007.055000px;}
.yb5{bottom:1008.945000px;}
.ye2{bottom:1010.430000px;}
.y2b{bottom:1020.510000px;}
.y51{bottom:1021.875000px;}
.y141{bottom:1023.495000px;}
.y89{bottom:1027.830000px;}
.ye1{bottom:1028.370000px;}
.yb3{bottom:1031.655000px;}
.y2a{bottom:1038.435000px;}
.y50{bottom:1039.815000px;}
.y140{bottom:1039.935000px;}
.y88{bottom:1045.755000px;}
.ye0{bottom:1046.295000px;}
.y2{bottom:1047.405000px;}
.y29{bottom:1056.375000px;}
.y4f{bottom:1057.740000px;}
.y1{bottom:1074.300000px;}
.y28{bottom:1113.150000px;}
.h9{height:0.597780px;}
.h3{height:24.210900px;}
.hb{height:28.202856px;}
.hc{height:29.458176px;}
.h5{height:37.334424px;}
.h4{height:40.347000px;}
.h8{height:41.844600px;}
.h7{height:44.833500px;}
.h2{height:49.862856px;}
.he{height:49.922856px;}
.h6{height:50.211000px;}
.ha{height:52.978176px;}
.h1{height:60.253200px;}
.hd{height:73.618176px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:202.770000px;}
.x1a{left:206.250000px;}
.x1d{left:209.055000px;}
.xc{left:211.485000px;}
.xb{left:224.565000px;}
.xd{left:227.550000px;}
.x11{left:229.545000px;}
.xf{left:238.005000px;}
.x3{left:242.985000px;}
.xa{left:244.665000px;}
.x7{left:250.485000px;}
.x10{left:252.960000px;}
.xe{left:266.040000px;}
.x4{left:275.325000px;}
.x1b{left:295.980000px;}
.x8{left:311.175000px;}
.x6{left:330.885000px;}
.x1c{left:353.730000px;}
.x19{left:356.475000px;}
.x5{left:365.460000px;}
.x2{left:368.820000px;}
.x9{left:387.375000px;}
.x12{left:434.070000px;}
.x15{left:447.345000px;}
.x13{left:476.490000px;}
.x16{left:496.920000px;}
.x17{left:500.250000px;}
.x18{left:567.210000px;}
.x14{left:585.855000px;}
@media print{
.v2{vertical-align:-20.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.346667pt;}
.v1{vertical-align:19.253333pt;}
.v3{vertical-align:20.906667pt;}
.v5{vertical-align:39.253333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.004153pt;}
.ls7{letter-spacing:0.022712pt;}
.ls0{letter-spacing:2.661357pt;}
.ls5{letter-spacing:5.717948pt;}
.ls6{letter-spacing:11.790819pt;}
.lsb{letter-spacing:11.844153pt;}
.ls9{letter-spacing:14.777486pt;}
.lse{letter-spacing:18.181357pt;}
.lsf{letter-spacing:19.076502pt;}
.lsd{letter-spacing:20.574667pt;}
.lsc{letter-spacing:22.156045pt;}
.ls3{letter-spacing:26.566800pt;}
.ls4{letter-spacing:26.605333pt;}
.ls1{letter-spacing:27.236502pt;}
.lsa{letter-spacing:29.986998pt;}
.wsce{word-spacing:-0.063760pt;}
.ws17{word-spacing:-0.053136pt;}
.wsc3{word-spacing:-0.047819pt;}
.ws92{word-spacing:-0.037195pt;}
.ws23{word-spacing:0.000000pt;}
.ws94{word-spacing:7.377858pt;}
.ws8e{word-spacing:8.767440pt;}
.ws8d{word-spacing:8.820576pt;}
.wsc6{word-spacing:9.324640pt;}
.wsad{word-spacing:9.372459pt;}
.wse{word-spacing:11.141749pt;}
.wsd6{word-spacing:11.619936pt;}
.ws91{word-spacing:11.689920pt;}
.ws93{word-spacing:11.801679pt;}
.ws41{word-spacing:12.221280pt;}
.ws82{word-spacing:12.593232pt;}
.ws7f{word-spacing:12.699504pt;}
.ws57{word-spacing:12.805776pt;}
.ws66{word-spacing:12.858912pt;}
.ws9{word-spacing:12.863221pt;}
.wsc{word-spacing:12.911040pt;}
.ws3e{word-spacing:13.071456pt;}
.ws98{word-spacing:13.177728pt;}
.ws9a{word-spacing:13.230864pt;}
.ws54{word-spacing:13.284000pt;}
.ws90{word-spacing:13.284297pt;}
.ws99{word-spacing:13.295013pt;}
.ws7e{word-spacing:13.337136pt;}
.ws8{word-spacing:13.389227pt;}
.ws1a{word-spacing:13.390272pt;}
.ws8a{word-spacing:13.496544pt;}
.ws47{word-spacing:13.549680pt;}
.wsd{word-spacing:13.580501pt;}
.wsa5{word-spacing:13.709088pt;}
.wsa2{word-spacing:13.762224pt;}
.ws3a{word-spacing:13.815360pt;}
.ws75{word-spacing:13.868496pt;}
.wsf{word-spacing:14.058688pt;}
.wsb8{word-spacing:14.232370pt;}
.ws68{word-spacing:14.240448pt;}
.ws81{word-spacing:14.293584pt;}
.wsd1{word-spacing:14.345600pt;}
.ws32{word-spacing:14.399856pt;}
.ws33{word-spacing:14.452992pt;}
.ws4b{word-spacing:14.506128pt;}
.ws4c{word-spacing:14.559264pt;}
.ws9c{word-spacing:14.612400pt;}
.ws8f{word-spacing:14.665536pt;}
.ws1d{word-spacing:14.771808pt;}
.ws24{word-spacing:14.824944pt;}
.wsae{word-spacing:14.878080pt;}
.ws7d{word-spacing:14.984352pt;}
.ws70{word-spacing:15.037488pt;}
.ws7a{word-spacing:15.090624pt;}
.ws10{word-spacing:15.110699pt;}
.ws89{word-spacing:15.143760pt;}
.ws3d{word-spacing:15.250032pt;}
.ws1e{word-spacing:15.303168pt;}
.ws71{word-spacing:15.356304pt;}
.wsc8{word-spacing:15.409440pt;}
.wsb5{word-spacing:15.462576pt;}
.wsbe{word-spacing:15.515712pt;}
.wsba{word-spacing:15.568848pt;}
.ws6a{word-spacing:15.621984pt;}
.wscf{word-spacing:15.675120pt;}
.ws5f{word-spacing:15.728256pt;}
.wsb3{word-spacing:15.781392pt;}
.ws19{word-spacing:15.834528pt;}
.ws63{word-spacing:15.887664pt;}
.wse2{word-spacing:15.923616pt;}
.ws69{word-spacing:15.940800pt;}
.wsc1{word-spacing:15.993936pt;}
.wsaa{word-spacing:16.047072pt;}
.ws95{word-spacing:16.187724pt;}
.ws49{word-spacing:16.206480pt;}
.wsab{word-spacing:16.222711pt;}
.ws5{word-spacing:16.258347pt;}
.ws79{word-spacing:16.259616pt;}
.ws4{word-spacing:16.306165pt;}
.wsd8{word-spacing:16.323571pt;}
.wsdd{word-spacing:16.337949pt;}
.ws6{word-spacing:16.353984pt;}
.wsd2{word-spacing:16.365575pt;}
.wsac{word-spacing:16.365888pt;}
.ws86{word-spacing:16.472160pt;}
.wsc0{word-spacing:16.525296pt;}
.ws30{word-spacing:16.578432pt;}
.ws4d{word-spacing:16.631568pt;}
.wsa9{word-spacing:16.682076pt;}
.wsa8{word-spacing:16.684704pt;}
.ws46{word-spacing:16.737840pt;}
.wsd7{word-spacing:16.784352pt;}
.ws4a{word-spacing:16.790976pt;}
.ws34{word-spacing:16.844112pt;}
.ws6b{word-spacing:16.897248pt;}
.ws53{word-spacing:16.950384pt;}
.wsd5{word-spacing:16.975627pt;}
.wsb2{word-spacing:17.003520pt;}
.wsa1{word-spacing:17.109792pt;}
.ws58{word-spacing:17.162928pt;}
.wsc2{word-spacing:17.216064pt;}
.wsc4{word-spacing:17.262539pt;}
.ws64{word-spacing:17.269200pt;}
.ws9e{word-spacing:17.289378pt;}
.wsdc{word-spacing:17.310357pt;}
.ws67{word-spacing:17.322336pt;}
.ws9b{word-spacing:17.375472pt;}
.wsd9{word-spacing:17.405995pt;}
.wsaf{word-spacing:17.428608pt;}
.ws40{word-spacing:17.481744pt;}
.ws2{word-spacing:17.588016pt;}
.ws8c{word-spacing:17.625783pt;}
.ws3{word-spacing:17.641152pt;}
.wsdb{word-spacing:17.645088pt;}
.ws8b{word-spacing:17.662711pt;}
.ws3f{word-spacing:17.694288pt;}
.ws7b{word-spacing:17.747424pt;}
.ws6f{word-spacing:17.800560pt;}
.ws78{word-spacing:17.853696pt;}
.ws18{word-spacing:17.906832pt;}
.ws42{word-spacing:17.959968pt;}
.wsb1{word-spacing:18.119376pt;}
.wsbb{word-spacing:18.172512pt;}
.ws39{word-spacing:18.385056pt;}
.ws44{word-spacing:18.438192pt;}
.wsb6{word-spacing:18.491328pt;}
.ws22{word-spacing:18.544464pt;}
.ws16{word-spacing:18.597600pt;}
.ws13{word-spacing:18.650736pt;}
.ws2e{word-spacing:18.757008pt;}
.ws6c{word-spacing:18.810144pt;}
.ws27{word-spacing:18.863280pt;}
.ws60{word-spacing:18.916416pt;}
.ws59{word-spacing:18.969552pt;}
.wsb{word-spacing:18.984011pt;}
.ws2d{word-spacing:18.998191pt;}
.ws2c{word-spacing:19.022688pt;}
.ws38{word-spacing:19.075824pt;}
.ws1b{word-spacing:19.182096pt;}
.ws5a{word-spacing:19.341504pt;}
.ws20{word-spacing:19.394640pt;}
.wscc{word-spacing:19.447776pt;}
.ws45{word-spacing:19.554048pt;}
.wscd{word-spacing:19.607184pt;}
.wsb7{word-spacing:19.660320pt;}
.ws7c{word-spacing:19.713456pt;}
.wsa{word-spacing:19.796928pt;}
.ws85{word-spacing:19.819728pt;}
.ws80{word-spacing:19.872864pt;}
.ws26{word-spacing:19.926000pt;}
.wsda{word-spacing:19.940384pt;}
.ws9d{word-spacing:19.979136pt;}
.ws1c{word-spacing:20.032272pt;}
.wsd4{word-spacing:20.083840pt;}
.ws5e{word-spacing:20.191680pt;}
.ws36{word-spacing:20.244816pt;}
.ws77{word-spacing:20.297952pt;}
.ws9f{word-spacing:20.351088pt;}
.ws73{word-spacing:20.404224pt;}
.wsa7{word-spacing:20.457360pt;}
.wsc7{word-spacing:20.510496pt;}
.wse3{word-spacing:20.562027pt;}
.wsb0{word-spacing:20.669904pt;}
.wsdf{word-spacing:20.801120pt;}
.wsc5{word-spacing:20.848939pt;}
.ws84{word-spacing:20.935584pt;}
.wsca{word-spacing:20.988720pt;}
.ws2b{word-spacing:21.094992pt;}
.ws29{word-spacing:21.148128pt;}
.ws55{word-spacing:21.201264pt;}
.ws5b{word-spacing:21.254400pt;}
.ws31{word-spacing:21.307536pt;}
.ws1f{word-spacing:21.360672pt;}
.ws83{word-spacing:21.413808pt;}
.wsa6{word-spacing:21.520080pt;}
.ws5d{word-spacing:21.573216pt;}
.wsa3{word-spacing:21.595359pt;}
.wsa4{word-spacing:21.595699pt;}
.wsb9{word-spacing:21.732624pt;}
.wse0{word-spacing:21.757493pt;}
.ws3c{word-spacing:21.785760pt;}
.wse1{word-spacing:21.805312pt;}
.ws15{word-spacing:21.892032pt;}
.ws52{word-spacing:21.945168pt;}
.ws21{word-spacing:21.973668pt;}
.ws14{word-spacing:22.051440pt;}
.ws2a{word-spacing:22.104576pt;}
.ws96{word-spacing:22.117340pt;}
.ws65{word-spacing:22.157712pt;}
.ws43{word-spacing:22.263984pt;}
.wsb4{word-spacing:22.317120pt;}
.ws61{word-spacing:22.370256pt;}
.wsc9{word-spacing:22.423392pt;}
.ws5c{word-spacing:22.476528pt;}
.wsbc{word-spacing:22.529664pt;}
.ws28{word-spacing:22.635936pt;}
.ws88{word-spacing:22.689072pt;}
.ws6d{word-spacing:22.848480pt;}
.wsa0{word-spacing:22.901616pt;}
.ws11{word-spacing:23.000779pt;}
.ws72{word-spacing:23.007888pt;}
.ws62{word-spacing:23.273568pt;}
.ws37{word-spacing:23.486112pt;}
.wsbd{word-spacing:23.539248pt;}
.ws97{word-spacing:23.577630pt;}
.ws48{word-spacing:23.645520pt;}
.ws2f{word-spacing:23.698656pt;}
.ws35{word-spacing:23.846240pt;}
.ws56{word-spacing:24.123744pt;}
.ws25{word-spacing:24.176880pt;}
.ws50{word-spacing:24.200953pt;}
.ws4f{word-spacing:24.230016pt;}
.ws4e{word-spacing:24.283152pt;}
.wsd3{word-spacing:24.291883pt;}
.wsbf{word-spacing:24.389424pt;}
.wscb{word-spacing:24.442560pt;}
.ws6e{word-spacing:24.814512pt;}
.ws51{word-spacing:25.080192pt;}
.ws87{word-spacing:25.239600pt;}
.ws74{word-spacing:25.399008pt;}
.ws3b{word-spacing:25.930368pt;}
.wsd0{word-spacing:25.983504pt;}
.ws76{word-spacing:26.461728pt;}
.wsde{word-spacing:26.539360pt;}
.ws7{word-spacing:26.546761pt;}
.ws1{word-spacing:28.538976pt;}
.ws0{word-spacing:28.615488pt;}
.ws12{word-spacing:71.666240pt;}
._20{margin-left:-27.839083pt;}
._5{margin-left:-26.568000pt;}
._3{margin-left:-25.080192pt;}
._a{margin-left:-23.816626pt;}
._1f{margin-left:-20.599652pt;}
._8{margin-left:-19.127467pt;}
._13{margin-left:-13.912738pt;}
._1{margin-left:-7.115616pt;}
._7{margin-left:-5.243692pt;}
._4{margin-left:-4.176473pt;}
._17{margin-left:-3.279792pt;}
._0{margin-left:-2.371872pt;}
._2{margin-left:-1.434672pt;}
._9{width:1.434560pt;}
._6{width:2.869232pt;}
._b{width:4.021041pt;}
._1c{width:5.515451pt;}
._12{width:6.541739pt;}
._19{width:12.019603pt;}
._1d{width:14.168176pt;}
._16{width:15.812813pt;}
._c{width:17.655904pt;}
._1a{width:18.597258pt;}
._11{width:20.066160pt;}
._15{width:20.982876pt;}
._22{width:21.901173pt;}
._14{width:22.935504pt;}
._e{width:24.689104pt;}
._21{width:26.573758pt;}
._23{width:32.994880pt;}
._25{width:34.490025pt;}
._18{width:35.399269pt;}
._24{width:38.159408pt;}
._1b{width:44.028280pt;}
._10{width:61.106400pt;}
._f{width:71.730000pt;}
._1e{width:127.102016pt;}
._d{width:151.745987pt;}
.fs3{font-size:31.882667pt;}
.fs2{font-size:37.194667pt;}
.fs4{font-size:47.818667pt;}
.fs1{font-size:53.136000pt;}
.fs5{font-size:63.760000pt;}
.fs0{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:238.773333pt;}
.yb2{bottom:241.346667pt;}
.y118{bottom:243.853333pt;}
.y26{bottom:254.706667pt;}
.yb1{bottom:257.000000pt;}
.y117{bottom:265.400000pt;}
.y13f{bottom:267.880000pt;}
.y25{bottom:270.653333pt;}
.ydf{bottom:272.920000pt;}
.yb0{bottom:272.933333pt;}
.y87{bottom:274.120000pt;}
.y116{bottom:281.346667pt;}
.y128{bottom:283.226667pt;}
.y11c{bottom:283.293333pt;}
.y13e{bottom:283.826667pt;}
.y4e{bottom:286.400000pt;}
.y24{bottom:286.586667pt;}
.yaf{bottom:288.573333pt;}
.yde{bottom:288.866667pt;}
.y86{bottom:290.053333pt;}
.y115{bottom:297.280000pt;}
.y13d{bottom:299.760000pt;}
.y4d{bottom:302.346667pt;}
.y23{bottom:302.533333pt;}
.yae{bottom:304.213333pt;}
.ydd{bottom:304.800000pt;}
.y85{bottom:306.000000pt;}
.y114{bottom:313.226667pt;}
.y13c{bottom:315.706667pt;}
.y4c{bottom:318.280000pt;}
.y22{bottom:318.466667pt;}
.yad{bottom:319.866667pt;}
.ydc{bottom:320.746667pt;}
.y84{bottom:321.933333pt;}
.y113{bottom:329.440000pt;}
.y13b{bottom:331.640000pt;}
.y4b{bottom:334.026667pt;}
.y21{bottom:334.413333pt;}
.yac{bottom:335.506667pt;}
.y83{bottom:337.880000pt;}
.yf4{bottom:343.360000pt;}
.y112{bottom:345.386667pt;}
.y13a{bottom:347.586667pt;}
.y20{bottom:350.346667pt;}
.yab{bottom:352.906667pt;}
.y82{bottom:357.280000pt;}
.ydb{bottom:358.653333pt;}
.y111{bottom:361.320000pt;}
.y4a{bottom:362.120000pt;}
.y1f{bottom:366.293333pt;}
.yaa{bottom:368.840000pt;}
.y81{bottom:373.226667pt;}
.y110{bottom:377.266667pt;}
.y49{bottom:378.053333pt;}
.yf3{bottom:381.533333pt;}
.y1e{bottom:382.226667pt;}
.ya9{bottom:384.786667pt;}
.y139{bottom:388.133333pt;}
.y80{bottom:389.160000pt;}
.y10f{bottom:393.200000pt;}
.y48{bottom:394.000000pt;}
.yf2{bottom:397.480000pt;}
.y1d{bottom:398.173333pt;}
.ya8{bottom:400.720000pt;}
.y7f{bottom:405.106667pt;}
.y10e{bottom:409.146667pt;}
.yda{bottom:409.853333pt;}
.y47{bottom:409.933333pt;}
.yf1{bottom:413.413333pt;}
.y1c{bottom:414.106667pt;}
.ya7{bottom:418.426667pt;}
.y7e{bottom:421.040000pt;}
.y10d{bottom:425.080000pt;}
.yd9{bottom:425.786667pt;}
.y46{bottom:425.880000pt;}
.yf0{bottom:429.360000pt;}
.y1b{bottom:430.053333pt;}
.ya6{bottom:435.826667pt;}
.y7d{bottom:436.986667pt;}
.y138{bottom:439.306667pt;}
.y10c{bottom:441.026667pt;}
.yd8{bottom:441.733333pt;}
.y45{bottom:441.813333pt;}
.yef{bottom:445.293333pt;}
.y1a{bottom:445.986667pt;}
.ya5{bottom:451.773333pt;}
.y7c{bottom:452.920000pt;}
.y137{bottom:455.240000pt;}
.y10b{bottom:456.960000pt;}
.yd7{bottom:457.666667pt;}
.y44{bottom:457.760000pt;}
.yee{bottom:461.240000pt;}
.y19{bottom:461.933333pt;}
.y7b{bottom:468.866667pt;}
.ya4{bottom:469.466667pt;}
.y136{bottom:471.186667pt;}
.y10a{bottom:472.906667pt;}
.yd6{bottom:473.613333pt;}
.y43{bottom:473.693333pt;}
.yed{bottom:477.173333pt;}
.y18{bottom:477.880000pt;}
.ya3{bottom:485.120000pt;}
.y15d{bottom:486.026667pt;}
.y135{bottom:487.120000pt;}
.y7a{bottom:488.266667pt;}
.yd5{bottom:489.546667pt;}
.y42{bottom:489.640000pt;}
.yec{bottom:493.120000pt;}
.y17{bottom:493.813333pt;}
.y15c{bottom:500.640000pt;}
.ya2{bottom:500.760000pt;}
.y109{bottom:500.880000pt;}
.y134{bottom:503.066667pt;}
.y79{bottom:504.213333pt;}
.y41{bottom:505.573333pt;}
.yd4{bottom:507.760000pt;}
.yeb{bottom:509.053333pt;}
.y16{bottom:509.760000pt;}
.y15b{bottom:515.253333pt;}
.ya1{bottom:516.400000pt;}
.y78{bottom:520.146667pt;}
.y133{bottom:520.733333pt;}
.y40{bottom:521.520000pt;}
.yd3{bottom:523.706667pt;}
.yea{bottom:525.000000pt;}
.y67{bottom:525.693333pt;}
.y15a{bottom:529.866667pt;}
.ya0{bottom:532.040000pt;}
.y127{bottom:532.306667pt;}
.y77{bottom:536.093333pt;}
.y132{bottom:536.680000pt;}
.y3f{bottom:537.453333pt;}
.yd2{bottom:539.640000pt;}
.ye9{bottom:540.933333pt;}
.y15{bottom:540.973333pt;}
.y66{bottom:541.640000pt;}
.y108{bottom:542.146667pt;}
.y159{bottom:544.480000pt;}
.y126{bottom:548.253333pt;}
.y9f{bottom:549.440000pt;}
.y131{bottom:552.613333pt;}
.y3e{bottom:553.400000pt;}
.y76{bottom:555.493333pt;}
.yd1{bottom:555.586667pt;}
.ye8{bottom:556.880000pt;}
.y65{bottom:557.573333pt;}
.y107{bottom:558.080000pt;}
.y158{bottom:559.093333pt;}
.y125{bottom:564.186667pt;}
.y9e{bottom:565.386667pt;}
.y130{bottom:568.560000pt;}
.y3d{bottom:569.333333pt;}
.y75{bottom:571.440000pt;}
.yd0{bottom:571.520000pt;}
.ye7{bottom:572.813333pt;}
.y64{bottom:573.520000pt;}
.y157{bottom:573.693333pt;}
.y106{bottom:574.026667pt;}
.y124{bottom:580.133333pt;}
.y9d{bottom:583.080000pt;}
.y12f{bottom:584.493333pt;}
.y14{bottom:585.253333pt;}
.y74{bottom:587.373333pt;}
.ycf{bottom:587.466667pt;}
.y156{bottom:588.306667pt;}
.ye6{bottom:588.760000pt;}
.y63{bottom:589.453333pt;}
.y105{bottom:590.240000pt;}
.y3c{bottom:595.146667pt;}
.y11b{bottom:595.400000pt;}
.y123{bottom:596.066667pt;}
.y9c{bottom:599.026667pt;}
.y13{bottom:599.866667pt;}
.y12e{bottom:600.440000pt;}
.y155{bottom:602.920000pt;}
.y73{bottom:603.320000pt;}
.ye5{bottom:604.693333pt;}
.y62{bottom:605.400000pt;}
.yce{bottom:605.666667pt;}
.y104{bottom:606.186667pt;}
.y11a{bottom:610.000000pt;}
.y122{bottom:612.013333pt;}
.y12{bottom:614.466667pt;}
.y9b{bottom:614.666667pt;}
.y12d{bottom:616.373333pt;}
.y154{bottom:617.533333pt;}
.y72{bottom:619.253333pt;}
.ye4{bottom:620.640000pt;}
.y61{bottom:621.333333pt;}
.ycd{bottom:621.613333pt;}
.y103{bottom:622.120000pt;}
.y119{bottom:624.613333pt;}
.y3b{bottom:626.266667pt;}
.y121{bottom:627.946667pt;}
.y11{bottom:629.080000pt;}
.y9a{bottom:630.613333pt;}
.y153{bottom:632.146667pt;}
.y12c{bottom:632.320000pt;}
.y71{bottom:635.200000pt;}
.ycc{bottom:637.560000pt;}
.y102{bottom:638.066667pt;}
.y60{bottom:643.026667pt;}
.y10{bottom:643.693333pt;}
.y120{bottom:643.893333pt;}
.y152{bottom:646.760000pt;}
.y99{bottom:648.013333pt;}
.y12b{bottom:648.253333pt;}
.y70{bottom:651.133333pt;}
.ycb{bottom:653.493333pt;}
.y101{bottom:654.000000pt;}
.yf{bottom:658.306667pt;}
.y11f{bottom:659.826667pt;}
.y151{bottom:661.373333pt;}
.y98{bottom:663.946667pt;}
.ye3{bottom:664.986667pt;}
.y3a{bottom:668.013333pt;}
.y100{bottom:669.946667pt;}
.y6f{bottom:670.546667pt;}
.yca{bottom:671.706667pt;}
.ye{bottom:672.920000pt;}
.y11e{bottom:675.773333pt;}
.y150{bottom:675.986667pt;}
.y5f{bottom:677.986667pt;}
.y97{bottom:679.293333pt;}
.y39{bottom:683.946667pt;}
.yff{bottom:685.880000pt;}
.y6e{bottom:686.480000pt;}
.yd{bottom:687.533333pt;}
.yc9{bottom:687.640000pt;}
.y12a{bottom:688.800000pt;}
.y14f{bottom:690.600000pt;}
.y5e{bottom:693.933333pt;}
.y96{bottom:695.240000pt;}
.y38{bottom:699.893333pt;}
.yfe{bottom:701.826667pt;}
.yc{bottom:702.146667pt;}
.y6d{bottom:702.426667pt;}
.yc8{bottom:703.586667pt;}
.y14e{bottom:705.200000pt;}
.y5d{bottom:709.866667pt;}
.y95{bottom:710.573333pt;}
.y37{bottom:715.826667pt;}
.yb{bottom:716.760000pt;}
.yfd{bottom:717.760000pt;}
.y6c{bottom:718.360000pt;}
.yc7{bottom:719.520000pt;}
.y14d{bottom:719.813333pt;}
.y5c{bottom:725.813333pt;}
.y94{bottom:726.520000pt;}
.ya{bottom:731.373333pt;}
.y36{bottom:731.773333pt;}
.yfc{bottom:733.706667pt;}
.y6b{bottom:734.306667pt;}
.y14c{bottom:734.426667pt;}
.yc6{bottom:735.466667pt;}
.y129{bottom:738.773333pt;}
.y5b{bottom:741.746667pt;}
.y93{bottom:742.453333pt;}
.y11d{bottom:744.733333pt;}
.y35{bottom:747.706667pt;}
.y14b{bottom:749.040000pt;}
.yfb{bottom:749.640000pt;}
.y6a{bottom:750.253333pt;}
.yc5{bottom:751.400000pt;}
.y5a{bottom:757.693333pt;}
.y92{bottom:758.400000pt;}
.y34{bottom:763.653333pt;}
.yfa{bottom:765.586667pt;}
.y69{bottom:766.186667pt;}
.yc4{bottom:767.346667pt;}
.y59{bottom:773.626667pt;}
.y91{bottom:776.093333pt;}
.y14a{bottom:778.266667pt;}
.y33{bottom:779.586667pt;}
.yc3{bottom:783.280000pt;}
.y9{bottom:783.946667pt;}
.y58{bottom:789.573333pt;}
.y90{bottom:792.040000pt;}
.y149{bottom:792.880000pt;}
.y32{bottom:795.533333pt;}
.y8{bottom:798.560000pt;}
.yf9{bottom:798.880000pt;}
.yc2{bottom:799.226667pt;}
.y57{bottom:805.506667pt;}
.y148{bottom:807.493333pt;}
.y8f{bottom:807.680000pt;}
.y31{bottom:811.480000pt;}
.y68{bottom:815.400000pt;}
.y7{bottom:818.253333pt;}
.y56{bottom:821.453333pt;}
.y147{bottom:822.106667pt;}
.y8e{bottom:823.626667pt;}
.y30{bottom:827.413333pt;}
.y6{bottom:827.786667pt;}
.y146{bottom:836.706667pt;}
.yc1{bottom:837.213333pt;}
.y55{bottom:837.386667pt;}
.y8d{bottom:839.266667pt;}
.y5{bottom:842.400000pt;}
.yf8{bottom:842.786667pt;}
.y2f{bottom:843.360000pt;}
.ybb{bottom:845.040000pt;}
.yc0{bottom:848.573333pt;}
.yba{bottom:849.013333pt;}
.y145{bottom:851.320000pt;}
.yb9{bottom:853.000000pt;}
.y54{bottom:853.333333pt;}
.y8c{bottom:856.666667pt;}
.yf7{bottom:858.733333pt;}
.ybf{bottom:859.080000pt;}
.y2e{bottom:859.293333pt;}
.yb4{bottom:861.640000pt;}
.y4{bottom:862.093333pt;}
.y144{bottom:865.933333pt;}
.y53{bottom:869.266667pt;}
.ybe{bottom:870.320000pt;}
.y8b{bottom:872.613333pt;}
.yf6{bottom:874.946667pt;}
.y2d{bottom:875.240000pt;}
.yb8{bottom:876.920000pt;}
.y143{bottom:880.546667pt;}
.yb7{bottom:880.893333pt;}
.ybd{bottom:881.680000pt;}
.y3{bottom:884.853333pt;}
.yb6{bottom:884.880000pt;}
.ybc{bottom:886.266667pt;}
.y8a{bottom:888.546667pt;}
.yf5{bottom:890.893333pt;}
.y2c{bottom:891.173333pt;}
.y52{bottom:892.400000pt;}
.y142{bottom:895.160000pt;}
.yb5{bottom:896.840000pt;}
.ye2{bottom:898.160000pt;}
.y2b{bottom:907.120000pt;}
.y51{bottom:908.333333pt;}
.y141{bottom:909.773333pt;}
.y89{bottom:913.626667pt;}
.ye1{bottom:914.106667pt;}
.yb3{bottom:917.026667pt;}
.y2a{bottom:923.053333pt;}
.y50{bottom:924.280000pt;}
.y140{bottom:924.386667pt;}
.y88{bottom:929.560000pt;}
.ye0{bottom:930.040000pt;}
.y2{bottom:931.026667pt;}
.y29{bottom:939.000000pt;}
.y4f{bottom:940.213333pt;}
.y1{bottom:954.933333pt;}
.y28{bottom:989.466667pt;}
.h9{height:0.531360pt;}
.h3{height:21.520800pt;}
.hb{height:25.069205pt;}
.hc{height:26.185045pt;}
.h5{height:33.186155pt;}
.h4{height:35.864000pt;}
.h8{height:37.195200pt;}
.h7{height:39.852000pt;}
.h2{height:44.322539pt;}
.he{height:44.375872pt;}
.h6{height:44.632000pt;}
.ha{height:47.091712pt;}
.h1{height:53.558400pt;}
.hd{height:65.438379pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:180.240000pt;}
.x1a{left:183.333333pt;}
.x1d{left:185.826667pt;}
.xc{left:187.986667pt;}
.xb{left:199.613333pt;}
.xd{left:202.266667pt;}
.x11{left:204.040000pt;}
.xf{left:211.560000pt;}
.x3{left:215.986667pt;}
.xa{left:217.480000pt;}
.x7{left:222.653333pt;}
.x10{left:224.853333pt;}
.xe{left:236.480000pt;}
.x4{left:244.733333pt;}
.x1b{left:263.093333pt;}
.x8{left:276.600000pt;}
.x6{left:294.120000pt;}
.x1c{left:314.426667pt;}
.x19{left:316.866667pt;}
.x5{left:324.853333pt;}
.x2{left:327.840000pt;}
.x9{left:344.333333pt;}
.x12{left:385.840000pt;}
.x15{left:397.640000pt;}
.x13{left:423.546667pt;}
.x16{left:441.706667pt;}
.x17{left:444.666667pt;}
.x18{left:504.186667pt;}
.x14{left:520.760000pt;}
}




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