
    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_733d4ddcefc03b32c14318ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_312bd91c4774883a2f2aa5a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_7b43e09cff98cab96a3d45c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_4ce90375bd8829915d7b8a5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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;}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls43{letter-spacing:-1.322640px;}
.ls31{letter-spacing:-0.961920px;}
.ls17{letter-spacing:-0.766080px;}
.ls2a{letter-spacing:-0.758160px;}
.ls3a{letter-spacing:-0.756000px;}
.ls1e{letter-spacing:-0.406080px;}
.ls1b{letter-spacing:-0.360720px;}
.ls29{letter-spacing:-0.336960px;}
.ls23{letter-spacing:-0.324000px;}
.ls42{letter-spacing:-0.322560px;}
.ls25{letter-spacing:-0.306720px;}
.ls3f{letter-spacing:-0.287280px;}
.ls13{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.263520px;}
.ls3{letter-spacing:-0.240480px;}
.ls41{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.204480px;}
.ls22{letter-spacing:-0.192960px;}
.ls15{letter-spacing:-0.191520px;}
.ls14{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.162000px;}
.lsc{letter-spacing:-0.149760px;}
.ls2{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.120240px;}
.ls12{letter-spacing:-0.090000px;}
.ls5{letter-spacing:-0.084240px;}
.ls28{letter-spacing:-0.077760px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120240px;}
.lsa{letter-spacing:0.131760px;}
.ls20{letter-spacing:0.135360px;}
.ls2f{letter-spacing:0.144288px;}
.ls2d{letter-spacing:0.149760px;}
.ls3c{letter-spacing:0.153360px;}
.ls11{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.191520px;}
.ls0{letter-spacing:0.204408px;}
.ls27{letter-spacing:0.204480px;}
.ls7{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.240480px;}
.ls44{letter-spacing:0.263520px;}
.ls30{letter-spacing:0.264528px;}
.lsf{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.270720px;}
.ls16{letter-spacing:0.287280px;}
.lsd{letter-spacing:0.299520px;}
.ls26{letter-spacing:0.306720px;}
.ls19{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.336960px;}
.lse{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.360720px;}
.ls8{letter-spacing:0.378000px;}
.ls18{letter-spacing:0.383040px;}
.ls34{letter-spacing:20.891520px;}
.ls36{letter-spacing:22.500000px;}
.ls33{letter-spacing:22.997520px;}
.ls3d{letter-spacing:28.632240px;}
.ls47{letter-spacing:28.729440px;}
.ls46{letter-spacing:28.831680px;}
.ls38{letter-spacing:30.628800px;}
.ls9{letter-spacing:89.201520px;}
.ls2b{letter-spacing:93.306240px;}
.ls2c{letter-spacing:96.768000px;}
.ls39{letter-spacing:97.524000px;}
.ls2e{letter-spacing:98.400960px;}
.ls3e{letter-spacing:98.879040px;}
.ls45{letter-spacing:99.581760px;}
.ls40{letter-spacing:101.888640px;}
.ls35{letter-spacing:105.192000px;}
.ls32{letter-spacing:120.276000px;}
.ls37{letter-spacing:124.199400px;}
.ls3b{letter-spacing:124.200000px;}
.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;}
}
.ws0{word-spacing:-81.665280px;}
.ws72{word-spacing:-44.874000px;}
.ws9c{word-spacing:-41.932800px;}
.ws9b{word-spacing:-41.633280px;}
.wse{word-spacing:-41.483520px;}
.ws1{word-spacing:-39.888000px;}
.wsc{word-spacing:-36.365760px;}
.ws4c{word-spacing:-33.546960px;}
.ws2{word-spacing:-33.426720px;}
.ws98{word-spacing:-33.306480px;}
.ws3{word-spacing:-33.186240px;}
.wsb2{word-spacing:-30.348000px;}
.wsb1{word-spacing:-30.240000px;}
.wsb0{word-spacing:-30.024000px;}
.ws9e{word-spacing:-29.700000px;}
.wsb5{word-spacing:-29.268000px;}
.wsd0{word-spacing:-28.729440px;}
.wsd1{word-spacing:-28.627200px;}
.ws85{word-spacing:-28.422720px;}
.ws73{word-spacing:-28.218240px;}
.wsb8{word-spacing:-28.116000px;}
.ws67{word-spacing:-26.908560px;}
.ws36{word-spacing:-26.621280px;}
.wsbe{word-spacing:-26.429760px;}
.wsbd{word-spacing:-26.334000px;}
.ws17{word-spacing:-25.380000px;}
.ws1c{word-spacing:-25.290000px;}
.ws20{word-spacing:-25.020000px;}
.ws24{word-spacing:-24.930000px;}
.wsac{word-spacing:-24.750000px;}
.ws4{word-spacing:-23.755680px;}
.ws93{word-spacing:-23.418720px;}
.ws92{word-spacing:-23.334480px;}
.ws94{word-spacing:-23.081760px;}
.ws95{word-spacing:-22.660560px;}
.ws88{word-spacing:-21.617280px;}
.ws89{word-spacing:-21.539520px;}
.wsd{word-spacing:-15.390000px;}
.ws70{word-spacing:-3.246480px;}
.wse0{word-spacing:-3.162312px;}
.ws1e{word-spacing:-3.060000px;}
.wsdf{word-spacing:-3.018024px;}
.ws5f{word-spacing:-2.910240px;}
.wsda{word-spacing:-2.849688px;}
.ws4b{word-spacing:-2.837664px;}
.ws9a{word-spacing:-2.765520px;}
.ws52{word-spacing:-2.729448px;}
.wsb9{word-spacing:-2.658240px;}
.wse5{word-spacing:-2.633256px;}
.wse8{word-spacing:-2.609208px;}
.ws62{word-spacing:-2.571840px;}
.wsa7{word-spacing:-2.527200px;}
.ws8{word-spacing:-2.525040px;}
.ws23{word-spacing:-2.520000px;}
.wsf3{word-spacing:-2.453760px;}
.wsa{word-spacing:-2.442960px;}
.ws58{word-spacing:-2.440872px;}
.ws1f{word-spacing:-2.430000px;}
.wse3{word-spacing:-2.368728px;}
.ws15{word-spacing:-2.340000px;}
.wsd2{word-spacing:-2.239056px;}
.ws2a{word-spacing:-2.160000px;}
.ws60{word-spacing:-2.111616px;}
.wsd6{word-spacing:-1.942560px;}
.ws4f{word-spacing:-1.923840px;}
.ws64{word-spacing:-1.895040px;}
.wse4{word-spacing:-1.887768px;}
.ws5c{word-spacing:-1.803600px;}
.ws21{word-spacing:-1.800000px;}
.wse1{word-spacing:-1.791576px;}
.ws4d{word-spacing:-1.767528px;}
.wsd8{word-spacing:-1.738080px;}
.ws96{word-spacing:-1.695384px;}
.wsb{word-spacing:-1.684800px;}
.ws79{word-spacing:-1.635840px;}
.ws14{word-spacing:-1.629000px;}
.wse6{word-spacing:-1.623240px;}
.ws1a{word-spacing:-1.620000px;}
.ws7c{word-spacing:-1.594944px;}
.wsd3{word-spacing:-1.533600px;}
.ws10{word-spacing:-1.512000px;}
.wsde{word-spacing:-1.466928px;}
.ws59{word-spacing:-1.458000px;}
.ws97{word-spacing:-1.442880px;}
.wsad{word-spacing:-1.440000px;}
.wsc5{word-spacing:-1.436400px;}
.wsa9{word-spacing:-1.432080px;}
.ws50{word-spacing:-1.394784px;}
.wsd9{word-spacing:-1.382760px;}
.ws55{word-spacing:-1.262520px;}
.ws16{word-spacing:-1.260000px;}
.wsc3{word-spacing:-1.206576px;}
.ws9{word-spacing:-1.082160px;}
.wsdc{word-spacing:-1.058112px;}
.ws3d{word-spacing:-1.034208px;}
.ws7e{word-spacing:-1.022400px;}
.wsa6{word-spacing:-1.010880px;}
.ws51{word-spacing:-0.997992px;}
.ws28{word-spacing:-0.972000px;}
.wsdb{word-spacing:-0.961920px;}
.ws54{word-spacing:-0.949896px;}
.ws37{word-spacing:-0.948024px;}
.ws7d{word-spacing:-0.920160px;}
.ws30{word-spacing:-0.919296px;}
.ws2f{word-spacing:-0.909720px;}
.ws1d{word-spacing:-0.900000px;}
.wsc1{word-spacing:-0.898560px;}
.ws56{word-spacing:-0.865728px;}
.wsb7{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.861840px;}
.ws4a{word-spacing:-0.841680px;}
.wsf{word-spacing:-0.810000px;}
.wsed{word-spacing:-0.790560px;}
.wsb4{word-spacing:-0.756000px;}
.wsd5{word-spacing:-0.725904px;}
.ws53{word-spacing:-0.721440px;}
.wsaf{word-spacing:-0.720000px;}
.wsbf{word-spacing:-0.670320px;}
.ws61{word-spacing:-0.541440px;}
.ws1b{word-spacing:-0.540000px;}
.wsf1{word-spacing:-0.511200px;}
.ws2c{word-spacing:-0.497952px;}
.wsa3{word-spacing:-0.449280px;}
.wse2{word-spacing:-0.432864px;}
.ws7b{word-spacing:-0.408960px;}
.ws49{word-spacing:-0.396792px;}
.ws5e{word-spacing:-0.360720px;}
.wsae{word-spacing:-0.360000px;}
.ws8d{word-spacing:-0.306720px;}
.wsa5{word-spacing:-0.299520px;}
.ws6{word-spacing:-0.288000px;}
.ws45{word-spacing:-0.287280px;}
.ws63{word-spacing:-0.270720px;}
.ws29{word-spacing:-0.270000px;}
.wsab{word-spacing:-0.252720px;}
.ws47{word-spacing:-0.240480px;}
.wscf{word-spacing:-0.216000px;}
.ws6c{word-spacing:-0.191520px;}
.ws13{word-spacing:-0.180000px;}
.ws41{word-spacing:-0.162000px;}
.ws40{word-spacing:-0.149760px;}
.ws57{word-spacing:-0.144288px;}
.ws76{word-spacing:-0.143136px;}
.ws65{word-spacing:-0.135360px;}
.wsef{word-spacing:-0.131760px;}
.ws5d{word-spacing:-0.120240px;}
.wsb3{word-spacing:-0.108000px;}
.ws83{word-spacing:-0.102240px;}
.ws71{word-spacing:-0.016200px;}
.ws19{word-spacing:-0.009000px;}
.ws7{word-spacing:0.000000px;}
.ws46{word-spacing:0.036072px;}
.wsaa{word-spacing:0.084240px;}
.ws2d{word-spacing:0.095760px;}
.ws66{word-spacing:0.105336px;}
.ws5b{word-spacing:0.120240px;}
.wsee{word-spacing:0.131760px;}
.ws5{word-spacing:0.144000px;}
.wsdd{word-spacing:0.144288px;}
.ws25{word-spacing:0.149760px;}
.ws18{word-spacing:0.180000px;}
.ws43{word-spacing:0.191520px;}
.ws6f{word-spacing:0.192960px;}
.ws68{word-spacing:0.201096px;}
.wsf2{word-spacing:0.204480px;}
.wsce{word-spacing:0.216000px;}
.ws5a{word-spacing:0.240480px;}
.ws78{word-spacing:0.245376px;}
.ws22{word-spacing:0.270000px;}
.wsc2{word-spacing:0.287280px;}
.ws48{word-spacing:0.288576px;}
.wsec{word-spacing:0.303048px;}
.ws8f{word-spacing:0.306720px;}
.wsea{word-spacing:0.322560px;}
.ws8a{word-spacing:0.324000px;}
.wse7{word-spacing:0.324648px;}
.wsa8{word-spacing:0.336960px;}
.ws8b{word-spacing:0.408960px;}
.ws3a{word-spacing:0.411768px;}
.ws2b{word-spacing:0.450000px;}
.ws4e{word-spacing:0.468936px;}
.ws84{word-spacing:0.470304px;}
.ws6e{word-spacing:0.486000px;}
.ws39{word-spacing:0.526680px;}
.ws31{word-spacing:0.536256px;}
.ws9f{word-spacing:0.540000px;}
.ws27{word-spacing:0.599040px;}
.ws8c{word-spacing:0.613440px;}
.ws11{word-spacing:0.658800px;}
.wsbc{word-spacing:0.715680px;}
.ws42{word-spacing:0.766080px;}
.ws90{word-spacing:0.777600px;}
.ws87{word-spacing:0.808704px;}
.ws6a{word-spacing:0.861840px;}
.wsc0{word-spacing:0.890568px;}
.wsc6{word-spacing:0.896400px;}
.ws26{word-spacing:0.898560px;}
.ws3c{word-spacing:0.900144px;}
.wscb{word-spacing:0.939600px;}
.ws3f{word-spacing:0.957600px;}
.wsa4{word-spacing:0.961920px;}
.ws74{word-spacing:0.981504px;}
.ws80{word-spacing:1.032624px;}
.wsca{word-spacing:1.080000px;}
.wsd4{word-spacing:1.104192px;}
.wsd7{word-spacing:1.124640px;}
.ws33{word-spacing:1.149120px;}
.ws7f{word-spacing:1.165536px;}
.ws7a{word-spacing:1.196208px;}
.ws2e{word-spacing:1.206576px;}
.wseb{word-spacing:1.264896px;}
.wsa1{word-spacing:1.296000px;}
.ws44{word-spacing:1.436400px;}
.ws86{word-spacing:1.438560px;}
.wse9{word-spacing:1.449360px;}
.wscc{word-spacing:1.512000px;}
.wsc8{word-spacing:1.544400px;}
.ws91{word-spacing:1.555200px;}
.ws75{word-spacing:1.564272px;}
.ws3e{word-spacing:1.627920px;}
.ws81{word-spacing:1.656288px;}
.wsc7{word-spacing:1.706400px;}
.ws77{word-spacing:1.707408px;}
.wscd{word-spacing:1.717200px;}
.wsbb{word-spacing:1.840320px;}
.ws69{word-spacing:1.876896px;}
.wsa2{word-spacing:2.052000px;}
.ws12{word-spacing:2.108160px;}
.wsba{word-spacing:2.147040px;}
.wsb6{word-spacing:2.160000px;}
.ws38{word-spacing:2.326968px;}
.ws35{word-spacing:2.374848px;}
.ws34{word-spacing:2.403576px;}
.wsa0{word-spacing:2.700000px;}
.ws82{word-spacing:2.740032px;}
.ws8e{word-spacing:2.760480px;}
.ws6b{word-spacing:2.777040px;}
.ws32{word-spacing:2.796192px;}
.ws9d{word-spacing:3.164400px;}
.ws6d{word-spacing:3.638880px;}
.wsc9{word-spacing:4.158000px;}
.ws99{word-spacing:59.879520px;}
.wsf0{word-spacing:71.159040px;}
.wsc4{word-spacing:75.267360px;}
._6{margin-left:-3.732264px;}
._3{margin-left:-2.250000px;}
._1{margin-left:-1.046088px;}
._0{width:1.584000px;}
._2{width:2.813328px;}
._7{width:5.040000px;}
._5{width:23.940000px;}
._4{width:25.998264px;}
._8{width:27.387360px;}
._9{width:28.886832px;}
._a{width:30.846240px;}
._b{width:31.880448px;}
._c{width:33.620616px;}
._d{width:101.888640px;}
.fc4{color:rgb(138,187,223);}
.fc3{color:rgb(207,227,242);}
.fc5{color:rgb(145,145,145);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(184,213,235);}
.fs10{font-size:5.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:90.000000px;}
.fsa{font-size:95.760000px;}
.fsc{font-size:102.240000px;}
.fse{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fsf{font-size:125.280000px;}
.fs5{font-size:131.760000px;}
.fsb{font-size:135.360000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:149.760000px;}
.fs8{font-size:162.000000px;}
.fs0{font-size:293.760000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:26.449950px;}
.y7{bottom:47.052300px;}
.y58{bottom:49.610850px;}
.y9c{bottom:74.005890px;}
.y6a{bottom:79.553520px;}
.yef{bottom:81.220290px;}
.ybd{bottom:81.763950px;}
.y45{bottom:95.542170px;}
.y9b{bottom:99.214710px;}
.y81{bottom:101.232000px;}
.yd3{bottom:104.679660px;}
.yb0{bottom:105.505950px;}
.y57{bottom:108.928080px;}
.yee{bottom:110.020110px;}
.y10e{bottom:110.287950px;}
.y118{bottom:110.491530px;}
.y123{bottom:112.471920px;}
.y69{bottom:115.565400px;}
.y9{bottom:124.133430px;}
.y44{bottom:124.341990px;}
.y9a{bottom:124.423530px;}
.ye1{bottom:129.510630px;}
.y56{bottom:129.981600px;}
.yaf{bottom:133.945950px;}
.yd2{bottom:135.274980px;}
.y80{bottom:137.220120px;}
.y91{bottom:138.070650px;}
.yed{bottom:138.819930px;}
.y117{bottom:141.086850px;}
.ybc{bottom:141.141900px;}
.y10d{bottom:142.687950px;}
.y132{bottom:143.342100px;}
.y122{bottom:148.483800px;}
.y8{bottom:149.342250px;}
.y99{bottom:149.632350px;}
.y55{bottom:151.041600px;}
.y68{bottom:151.577280px;}
.y43{bottom:153.141810px;}
.y26{bottom:153.448950px;}
.ye0{bottom:158.310450px;}
.yae{bottom:160.945950px;}
.y90{bottom:163.270650px;}
.yd1{bottom:165.870300px;}
.yec{bottom:167.619750px;}
.y104{bottom:169.464150px;}
.y75{bottom:171.283200px;}
.y116{bottom:171.686850px;}
.y7f{bottom:173.232000px;}
.ybb{bottom:173.541900px;}
.y131{bottom:173.937420px;}
.y10c{bottom:175.087950px;}
.y42{bottom:181.941630px;}
.y25{bottom:182.248770px;}
.y121{bottom:184.495680px;}
.ydf{bottom:187.110480px;}
.y67{bottom:187.589160px;}
.yad{bottom:187.945950px;}
.y8f{bottom:188.470650px;}
.y1a{bottom:193.455300px;}
.yc5{bottom:195.817050px;}
.yeb{bottom:196.419570px;}
.yd0{bottom:196.479660px;}
.y54{bottom:200.984760px;}
.y103{bottom:201.864150px;}
.y115{bottom:202.296210px;}
.ya1{bottom:202.403130px;}
.y2e{bottom:203.638050px;}
.y74{bottom:203.683050px;}
.y130{bottom:204.532740px;}
.yba{bottom:205.941900px;}
.y10b{bottom:207.487950px;}
.y7e{bottom:209.232000px;}
.y4{bottom:209.655150px;}
.y24{bottom:211.048590px;}
.y38{bottom:211.257930px;}
.y8e{bottom:213.670650px;}
.yac{bottom:214.945950px;}
.y5d{bottom:215.783130px;}
.yde{bottom:215.910300px;}
.yfc{bottom:217.939950px;}
.y19{bottom:220.455300px;}
.y4b{bottom:221.057400px;}
.y66{bottom:223.601040px;}
.yf5{bottom:223.647150px;}
.yea{bottom:225.219390px;}
.ycf{bottom:227.074980px;}
.ya0{bottom:227.611950px;}
.yc4{bottom:228.217050px;}
.y53{bottom:228.512880px;}
.y102{bottom:234.264150px;}
.y12f{bottom:235.128060px;}
.y73{bottom:236.083050px;}
.yb9{bottom:238.341900px;}
.y8d{bottom:238.870650px;}
.y2d{bottom:239.649930px;}
.y23{bottom:239.848410px;}
.y10a{bottom:239.887950px;}
.y41{bottom:240.283410px;}
.yab{bottom:241.945800px;}
.y12{bottom:242.934960px;}
.ydd{bottom:244.710300px;}
.y7d{bottom:245.220120px;}
.y18{bottom:247.455300px;}
.yfb{bottom:250.339950px;}
.y37{bottom:251.764410px;}
.y5c{bottom:251.795010px;}
.y3{bottom:252.855150px;}
.ye9{bottom:254.019210px;}
.y52{bottom:256.041000px;}
.yf4{bottom:256.047150px;}
.y120{bottom:256.489380px;}
.y4a{bottom:257.069280px;}
.yce{bottom:257.670300px;}
.y65{bottom:259.612920px;}
.yc3{bottom:260.617050px;}
.y114{bottom:263.486850px;}
.y8c{bottom:264.070650px;}
.y12e{bottom:265.723380px;}
.y101{bottom:266.664150px;}
.y72{bottom:268.483200px;}
.yaa{bottom:268.945800px;}
.y40{bottom:269.083230px;}
.yb8{bottom:270.741900px;}
.y109{bottom:272.287950px;}
.ydc{bottom:273.510300px;}
.y9f{bottom:274.389360px;}
.y17{bottom:274.455300px;}
.y2c{bottom:275.661810px;}
.y126{bottom:278.512740px;}
.y7c{bottom:281.232000px;}
.y11{bottom:282.528840px;}
.yfa{bottom:282.739950px;}
.ye8{bottom:282.819030px;}
.y51{bottom:283.569120px;}
.y5b{bottom:287.806890px;}
.ycd{bottom:288.289020px;}
.yf3{bottom:288.447150px;}
.y8b{bottom:289.270650px;}
.y33{bottom:290.132430px;}
.y36{bottom:292.270890px;}
.y11f{bottom:292.501260px;}
.y49{bottom:293.081160px;}
.y113{bottom:294.086850px;}
.y64{bottom:295.624800px;}
.ya9{bottom:295.945800px;}
.y2{bottom:296.055150px;}
.y12d{bottom:296.318700px;}
.y22{bottom:297.448050px;}
.y3f{bottom:297.883050px;}
.y100{bottom:299.064150px;}
.y9e{bottom:299.598180px;}
.y71{bottom:300.883050px;}
.ydb{bottom:302.310300px;}
.yb7{bottom:303.141900px;}
.y50{bottom:311.097240px;}
.ye7{bottom:311.618850px;}
.y2b{bottom:311.673690px;}
.y8a{bottom:314.470650px;}
.yf9{bottom:315.139950px;}
.y7b{bottom:317.220120px;}
.y125{bottom:318.106620px;}
.yf2{bottom:320.847150px;}
.y10{bottom:322.122720px;}
.ya8{bottom:322.945800px;}
.y5a{bottom:323.818770px;}
.y112{bottom:324.686850px;}
.y9d{bottom:324.807000px;}
.yc2{bottom:325.417050px;}
.y32{bottom:326.144310px;}
.y21{bottom:326.247870px;}
.y12c{bottom:326.914020px;}
.y16{bottom:328.455300px;}
.y11e{bottom:328.513140px;}
.y48{bottom:329.093040px;}
.yda{bottom:331.110810px;}
.yff{bottom:331.464150px;}
.y63{bottom:331.636680px;}
.y35{bottom:332.777370px;}
.y70{bottom:333.283200px;}
.yb6{bottom:335.541900px;}
.y134{bottom:336.698970px;}
.y108{bottom:337.087950px;}
.y4f{bottom:338.625360px;}
.y89{bottom:339.670650px;}
.ye6{bottom:340.418670px;}
.yf8{bottom:347.539950px;}
.y2a{bottom:347.685570px;}
.y1{bottom:347.895150px;}
.ycc{bottom:349.479660px;}
.ya7{bottom:349.945800px;}
.y7a{bottom:353.232000px;}
.yf1{bottom:353.247150px;}
.y20{bottom:355.047690px;}
.y111{bottom:355.286850px;}
.y15{bottom:355.455300px;}
.y3e{bottom:355.482690px;}
.y12b{bottom:357.509340px;}
.y124{bottom:357.700500px;}
.yc1{bottom:357.817050px;}
.y59{bottom:359.830650px;}
.yf{bottom:361.716600px;}
.y31{bottom:362.156190px;}
.yfe{bottom:363.864150px;}
.y11d{bottom:364.525020px;}
.y88{bottom:364.870650px;}
.y47{bottom:365.104920px;}
.y6f{bottom:365.683050px;}
.y4e{bottom:366.153480px;}
.y62{bottom:367.648560px;}
.yb5{bottom:367.941900px;}
.ye5{bottom:369.218490px;}
.ya{bottom:369.234450px;}
.y107{bottom:369.487950px;}
.yb{bottom:371.574450px;}
.y98{bottom:373.088160px;}
.y34{bottom:373.283850px;}
.ya6{bottom:376.945800px;}
.yf7{bottom:379.939950px;}
.ycb{bottom:380.074980px;}
.yc{bottom:380.578950px;}
.y133{bottom:381.701850px;}
.y14{bottom:382.455300px;}
.y29{bottom:383.697450px;}
.y1f{bottom:383.847510px;}
.y3d{bottom:384.282510px;}
.y110{bottom:385.886850px;}
.y12a{bottom:388.104660px;}
.yd9{bottom:388.710450px;}
.y79{bottom:389.232000px;}
.y87{bottom:390.070650px;}
.yc0{bottom:390.217050px;}
.y4d{bottom:393.681600px;}
.yfd{bottom:396.264150px;}
.ye4{bottom:398.018310px;}
.y6e{bottom:398.083050px;}
.y30{bottom:398.168070px;}
.y97{bottom:398.296980px;}
.yb4{bottom:400.341900px;}
.y11c{bottom:400.536900px;}
.y46{bottom:401.116800px;}
.y106{bottom:401.887950px;}
.y61{bottom:403.660440px;}
.ya5{bottom:403.945800px;}
.yd{bottom:403.974450px;}
.yca{bottom:410.670300px;}
.y1e{bottom:412.647330px;}
.y3c{bottom:413.082330px;}
.y86{bottom:415.270650px;}
.y10f{bottom:416.486850px;}
.yd8{bottom:417.510300px;}
.yf0{bottom:418.047150px;}
.y129{bottom:418.699980px;}
.ybf{bottom:422.617050px;}
.y96{bottom:423.505800px;}
.y78{bottom:425.219970px;}
.ye3{bottom:426.818130px;}
.y6d{bottom:430.483050px;}
.ya4{bottom:430.945800px;}
.yb3{bottom:432.741900px;}
.y2f{bottom:434.179950px;}
.y105{bottom:434.287950px;}
.y60{bottom:439.672320px;}
.y85{bottom:440.470650px;}
.yc9{bottom:441.274980px;}
.y1d{bottom:441.447150px;}
.y3b{bottom:441.882150px;}
.yf6{bottom:444.739950px;}
.yd7{bottom:446.310300px;}
.y4c{bottom:448.176000px;}
.y128{bottom:449.295300px;}
.ybe{bottom:455.017050px;}
.ye2{bottom:455.617950px;}
.ya3{bottom:457.945800px;}
.y13{bottom:459.719850px;}
.y77{bottom:461.231850px;}
.yb2{bottom:465.141900px;}
.y84{bottom:465.670650px;}
.yc8{bottom:471.870300px;}
.yd6{bottom:475.110300px;}
.y5f{bottom:475.684200px;}
.y95{bottom:477.762840px;}
.y11a{bottom:482.519070px;}
.ya2{bottom:484.945800px;}
.y28{bottom:489.673650px;}
.y83{bottom:490.870650px;}
.y1c{bottom:496.418700px;}
.y3a{bottom:496.776000px;}
.y6{bottom:498.153870px;}
.y6c{bottom:500.395170px;}
.yc7{bottom:502.470300px;}
.y94{bottom:502.971660px;}
.yd5{bottom:503.910300px;}
.ye{bottom:507.599700px;}
.y119{bottom:522.112950px;}
.y5{bottom:526.951350px;}
.y93{bottom:528.180480px;}
.y5e{bottom:530.545350px;}
.y27{bottom:537.553650px;}
.y76{bottom:538.007550px;}
.y127{bottom:540.378600px;}
.y82{bottom:542.312400px;}
.y1b{bottom:544.298700px;}
.y39{bottom:544.656000px;}
.y6b{bottom:545.398050px;}
.yd4{bottom:547.083600px;}
.yc6{bottom:550.567500px;}
.y92{bottom:553.389300px;}
.yb1{bottom:554.922900px;}
.h17{height:4.199063px;}
.h5{height:35.167148px;}
.h8{height:39.366211px;}
.h10{height:56.687344px;}
.h6{height:61.411289px;}
.hc{height:65.610352px;}
.h16{height:69.715898px;}
.h13{height:69.808814px;}
.hd{height:69.809414px;}
.h15{height:74.433516px;}
.hf{height:74.533359px;}
.h14{height:78.626953px;}
.h11{height:78.732422px;}
.h4{height:87.538008px;}
.h3{height:87.655430px;}
.h12{height:91.329609px;}
.h7{height:95.924883px;}
.ha{height:96.053555px;}
.he{height:98.677969px;}
.h2{height:104.835938px;}
.h9{height:109.029375px;}
.hb{height:118.098633px;}
.h1{height:213.865312px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1d{left:10.798200px;}
.x2d{left:32.546100px;}
.x33{left:38.322900px;}
.x18{left:40.413150px;}
.x2b{left:42.370500px;}
.x37{left:43.844700px;}
.x2e{left:46.045350px;}
.xd{left:47.613150px;}
.x3a{left:48.919650px;}
.x1e{left:52.554150px;}
.x10{left:54.144900px;}
.x19{left:55.352400px;}
.x12{left:56.387400px;}
.x30{left:58.412850px;}
.x36{left:61.113150px;}
.x1b{left:62.553150px;}
.x11{left:64.367400px;}
.x14{left:67.653000px;}
.x34{left:71.202510px;}
.x2c{left:72.246450px;}
.x3b{left:77.556900px;}
.x5{left:81.039750px;}
.xe{left:86.144700px;}
.x2f{left:88.606350px;}
.x31{left:92.243850px;}
.x3d{left:94.344150px;}
.x1a{left:95.852400px;}
.x35{left:97.869000px;}
.x1c{left:101.613150px;}
.x32{left:103.153050px;}
.x17{left:109.410300px;}
.x3c{left:111.398340px;}
.x8{left:114.604050px;}
.xf{left:119.941140px;}
.x2{left:142.095150px;}
.x39{left:143.650500px;}
.x13{left:163.565400px;}
.x3{left:169.275150px;}
.x1{left:170.715150px;}
.x4{left:234.255150px;}
.x6{left:268.043010px;}
.x15{left:385.504380px;}
.x25{left:703.213050px;}
.x29{left:714.813900px;}
.x2a{left:716.077500px;}
.x23{left:717.276780px;}
.x26{left:719.493750px;}
.x20{left:729.365100px;}
.x22{left:733.113900px;}
.x28{left:739.121670px;}
.x27{left:746.134650px;}
.x1f{left:747.371400px;}
.x21{left:752.594280px;}
.x24{left:775.423440px;}
.x9{left:1020.925500px;}
.x38{left:1040.024100px;}
.xa{left:1041.625500px;}
.x16{left:1055.767950px;}
.xb{left:1057.825500px;}
.x7{left:1062.427950px;}
.xc{left:1074.025500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls43{letter-spacing:-1.175680pt;}
.ls31{letter-spacing:-0.855040pt;}
.ls17{letter-spacing:-0.680960pt;}
.ls2a{letter-spacing:-0.673920pt;}
.ls3a{letter-spacing:-0.672000pt;}
.ls1e{letter-spacing:-0.360960pt;}
.ls1b{letter-spacing:-0.320640pt;}
.ls29{letter-spacing:-0.299520pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls42{letter-spacing:-0.286720pt;}
.ls25{letter-spacing:-0.272640pt;}
.ls3f{letter-spacing:-0.255360pt;}
.ls13{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.234240pt;}
.ls3{letter-spacing:-0.213760pt;}
.ls41{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.181760pt;}
.ls22{letter-spacing:-0.171520pt;}
.ls15{letter-spacing:-0.170240pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.144000pt;}
.lsc{letter-spacing:-0.133120pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.106880pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls5{letter-spacing:-0.074880pt;}
.ls28{letter-spacing:-0.069120pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106880pt;}
.lsa{letter-spacing:0.117120pt;}
.ls20{letter-spacing:0.120320pt;}
.ls2f{letter-spacing:0.128256pt;}
.ls2d{letter-spacing:0.133120pt;}
.ls3c{letter-spacing:0.136320pt;}
.ls11{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.170240pt;}
.ls0{letter-spacing:0.181696pt;}
.ls27{letter-spacing:0.181760pt;}
.ls7{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.213760pt;}
.ls44{letter-spacing:0.234240pt;}
.ls30{letter-spacing:0.235136pt;}
.lsf{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.240640pt;}
.ls16{letter-spacing:0.255360pt;}
.lsd{letter-spacing:0.266240pt;}
.ls26{letter-spacing:0.272640pt;}
.ls19{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.299520pt;}
.lse{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.320640pt;}
.ls8{letter-spacing:0.336000pt;}
.ls18{letter-spacing:0.340480pt;}
.ls34{letter-spacing:18.570240pt;}
.ls36{letter-spacing:20.000000pt;}
.ls33{letter-spacing:20.442240pt;}
.ls3d{letter-spacing:25.450880pt;}
.ls47{letter-spacing:25.537280pt;}
.ls46{letter-spacing:25.628160pt;}
.ls38{letter-spacing:27.225600pt;}
.ls9{letter-spacing:79.290240pt;}
.ls2b{letter-spacing:82.938880pt;}
.ls2c{letter-spacing:86.016000pt;}
.ls39{letter-spacing:86.688000pt;}
.ls2e{letter-spacing:87.467520pt;}
.ls3e{letter-spacing:87.892480pt;}
.ls45{letter-spacing:88.517120pt;}
.ls40{letter-spacing:90.567680pt;}
.ls35{letter-spacing:93.504000pt;}
.ls32{letter-spacing:106.912000pt;}
.ls37{letter-spacing:110.399467pt;}
.ls3b{letter-spacing:110.400000pt;}
.ws0{word-spacing:-72.591360pt;}
.ws72{word-spacing:-39.888000pt;}
.ws9c{word-spacing:-37.273600pt;}
.ws9b{word-spacing:-37.007360pt;}
.wse{word-spacing:-36.874240pt;}
.ws1{word-spacing:-35.456000pt;}
.wsc{word-spacing:-32.325120pt;}
.ws4c{word-spacing:-29.819520pt;}
.ws2{word-spacing:-29.712640pt;}
.ws98{word-spacing:-29.605760pt;}
.ws3{word-spacing:-29.498880pt;}
.wsb2{word-spacing:-26.976000pt;}
.wsb1{word-spacing:-26.880000pt;}
.wsb0{word-spacing:-26.688000pt;}
.ws9e{word-spacing:-26.400000pt;}
.wsb5{word-spacing:-26.016000pt;}
.wsd0{word-spacing:-25.537280pt;}
.wsd1{word-spacing:-25.446400pt;}
.ws85{word-spacing:-25.264640pt;}
.ws73{word-spacing:-25.082880pt;}
.wsb8{word-spacing:-24.992000pt;}
.ws67{word-spacing:-23.918720pt;}
.ws36{word-spacing:-23.663360pt;}
.wsbe{word-spacing:-23.493120pt;}
.wsbd{word-spacing:-23.408000pt;}
.ws17{word-spacing:-22.560000pt;}
.ws1c{word-spacing:-22.480000pt;}
.ws20{word-spacing:-22.240000pt;}
.ws24{word-spacing:-22.160000pt;}
.wsac{word-spacing:-22.000000pt;}
.ws4{word-spacing:-21.116160pt;}
.ws93{word-spacing:-20.816640pt;}
.ws92{word-spacing:-20.741760pt;}
.ws94{word-spacing:-20.517120pt;}
.ws95{word-spacing:-20.142720pt;}
.ws88{word-spacing:-19.215360pt;}
.ws89{word-spacing:-19.146240pt;}
.wsd{word-spacing:-13.680000pt;}
.ws70{word-spacing:-2.885760pt;}
.wse0{word-spacing:-2.810944pt;}
.ws1e{word-spacing:-2.720000pt;}
.wsdf{word-spacing:-2.682688pt;}
.ws5f{word-spacing:-2.586880pt;}
.wsda{word-spacing:-2.533056pt;}
.ws4b{word-spacing:-2.522368pt;}
.ws9a{word-spacing:-2.458240pt;}
.ws52{word-spacing:-2.426176pt;}
.wsb9{word-spacing:-2.362880pt;}
.wse5{word-spacing:-2.340672pt;}
.wse8{word-spacing:-2.319296pt;}
.ws62{word-spacing:-2.286080pt;}
.wsa7{word-spacing:-2.246400pt;}
.ws8{word-spacing:-2.244480pt;}
.ws23{word-spacing:-2.240000pt;}
.wsf3{word-spacing:-2.181120pt;}
.wsa{word-spacing:-2.171520pt;}
.ws58{word-spacing:-2.169664pt;}
.ws1f{word-spacing:-2.160000pt;}
.wse3{word-spacing:-2.105536pt;}
.ws15{word-spacing:-2.080000pt;}
.wsd2{word-spacing:-1.990272pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws60{word-spacing:-1.876992pt;}
.wsd6{word-spacing:-1.726720pt;}
.ws4f{word-spacing:-1.710080pt;}
.ws64{word-spacing:-1.684480pt;}
.wse4{word-spacing:-1.678016pt;}
.ws5c{word-spacing:-1.603200pt;}
.ws21{word-spacing:-1.600000pt;}
.wse1{word-spacing:-1.592512pt;}
.ws4d{word-spacing:-1.571136pt;}
.wsd8{word-spacing:-1.544960pt;}
.ws96{word-spacing:-1.507008pt;}
.wsb{word-spacing:-1.497600pt;}
.ws79{word-spacing:-1.454080pt;}
.ws14{word-spacing:-1.448000pt;}
.wse6{word-spacing:-1.442880pt;}
.ws1a{word-spacing:-1.440000pt;}
.ws7c{word-spacing:-1.417728pt;}
.wsd3{word-spacing:-1.363200pt;}
.ws10{word-spacing:-1.344000pt;}
.wsde{word-spacing:-1.303936pt;}
.ws59{word-spacing:-1.296000pt;}
.ws97{word-spacing:-1.282560pt;}
.wsad{word-spacing:-1.280000pt;}
.wsc5{word-spacing:-1.276800pt;}
.wsa9{word-spacing:-1.272960pt;}
.ws50{word-spacing:-1.239808pt;}
.wsd9{word-spacing:-1.229120pt;}
.ws55{word-spacing:-1.122240pt;}
.ws16{word-spacing:-1.120000pt;}
.wsc3{word-spacing:-1.072512pt;}
.ws9{word-spacing:-0.961920pt;}
.wsdc{word-spacing:-0.940544pt;}
.ws3d{word-spacing:-0.919296pt;}
.ws7e{word-spacing:-0.908800pt;}
.wsa6{word-spacing:-0.898560pt;}
.ws51{word-spacing:-0.887104pt;}
.ws28{word-spacing:-0.864000pt;}
.wsdb{word-spacing:-0.855040pt;}
.ws54{word-spacing:-0.844352pt;}
.ws37{word-spacing:-0.842688pt;}
.ws7d{word-spacing:-0.817920pt;}
.ws30{word-spacing:-0.817152pt;}
.ws2f{word-spacing:-0.808640pt;}
.ws1d{word-spacing:-0.800000pt;}
.wsc1{word-spacing:-0.798720pt;}
.ws56{word-spacing:-0.769536pt;}
.wsb7{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.766080pt;}
.ws4a{word-spacing:-0.748160pt;}
.wsf{word-spacing:-0.720000pt;}
.wsed{word-spacing:-0.702720pt;}
.wsb4{word-spacing:-0.672000pt;}
.wsd5{word-spacing:-0.645248pt;}
.ws53{word-spacing:-0.641280pt;}
.wsaf{word-spacing:-0.640000pt;}
.wsbf{word-spacing:-0.595840pt;}
.ws61{word-spacing:-0.481280pt;}
.ws1b{word-spacing:-0.480000pt;}
.wsf1{word-spacing:-0.454400pt;}
.ws2c{word-spacing:-0.442624pt;}
.wsa3{word-spacing:-0.399360pt;}
.wse2{word-spacing:-0.384768pt;}
.ws7b{word-spacing:-0.363520pt;}
.ws49{word-spacing:-0.352704pt;}
.ws5e{word-spacing:-0.320640pt;}
.wsae{word-spacing:-0.320000pt;}
.ws8d{word-spacing:-0.272640pt;}
.wsa5{word-spacing:-0.266240pt;}
.ws6{word-spacing:-0.256000pt;}
.ws45{word-spacing:-0.255360pt;}
.ws63{word-spacing:-0.240640pt;}
.ws29{word-spacing:-0.240000pt;}
.wsab{word-spacing:-0.224640pt;}
.ws47{word-spacing:-0.213760pt;}
.wscf{word-spacing:-0.192000pt;}
.ws6c{word-spacing:-0.170240pt;}
.ws13{word-spacing:-0.160000pt;}
.ws41{word-spacing:-0.144000pt;}
.ws40{word-spacing:-0.133120pt;}
.ws57{word-spacing:-0.128256pt;}
.ws76{word-spacing:-0.127232pt;}
.ws65{word-spacing:-0.120320pt;}
.wsef{word-spacing:-0.117120pt;}
.ws5d{word-spacing:-0.106880pt;}
.wsb3{word-spacing:-0.096000pt;}
.ws83{word-spacing:-0.090880pt;}
.ws71{word-spacing:-0.014400pt;}
.ws19{word-spacing:-0.008000pt;}
.ws7{word-spacing:0.000000pt;}
.ws46{word-spacing:0.032064pt;}
.wsaa{word-spacing:0.074880pt;}
.ws2d{word-spacing:0.085120pt;}
.ws66{word-spacing:0.093632pt;}
.ws5b{word-spacing:0.106880pt;}
.wsee{word-spacing:0.117120pt;}
.ws5{word-spacing:0.128000pt;}
.wsdd{word-spacing:0.128256pt;}
.ws25{word-spacing:0.133120pt;}
.ws18{word-spacing:0.160000pt;}
.ws43{word-spacing:0.170240pt;}
.ws6f{word-spacing:0.171520pt;}
.ws68{word-spacing:0.178752pt;}
.wsf2{word-spacing:0.181760pt;}
.wsce{word-spacing:0.192000pt;}
.ws5a{word-spacing:0.213760pt;}
.ws78{word-spacing:0.218112pt;}
.ws22{word-spacing:0.240000pt;}
.wsc2{word-spacing:0.255360pt;}
.ws48{word-spacing:0.256512pt;}
.wsec{word-spacing:0.269376pt;}
.ws8f{word-spacing:0.272640pt;}
.wsea{word-spacing:0.286720pt;}
.ws8a{word-spacing:0.288000pt;}
.wse7{word-spacing:0.288576pt;}
.wsa8{word-spacing:0.299520pt;}
.ws8b{word-spacing:0.363520pt;}
.ws3a{word-spacing:0.366016pt;}
.ws2b{word-spacing:0.400000pt;}
.ws4e{word-spacing:0.416832pt;}
.ws84{word-spacing:0.418048pt;}
.ws6e{word-spacing:0.432000pt;}
.ws39{word-spacing:0.468160pt;}
.ws31{word-spacing:0.476672pt;}
.ws9f{word-spacing:0.480000pt;}
.ws27{word-spacing:0.532480pt;}
.ws8c{word-spacing:0.545280pt;}
.ws11{word-spacing:0.585600pt;}
.wsbc{word-spacing:0.636160pt;}
.ws42{word-spacing:0.680960pt;}
.ws90{word-spacing:0.691200pt;}
.ws87{word-spacing:0.718848pt;}
.ws6a{word-spacing:0.766080pt;}
.wsc0{word-spacing:0.791616pt;}
.wsc6{word-spacing:0.796800pt;}
.ws26{word-spacing:0.798720pt;}
.ws3c{word-spacing:0.800128pt;}
.wscb{word-spacing:0.835200pt;}
.ws3f{word-spacing:0.851200pt;}
.wsa4{word-spacing:0.855040pt;}
.ws74{word-spacing:0.872448pt;}
.ws80{word-spacing:0.917888pt;}
.wsca{word-spacing:0.960000pt;}
.wsd4{word-spacing:0.981504pt;}
.wsd7{word-spacing:0.999680pt;}
.ws33{word-spacing:1.021440pt;}
.ws7f{word-spacing:1.036032pt;}
.ws7a{word-spacing:1.063296pt;}
.ws2e{word-spacing:1.072512pt;}
.wseb{word-spacing:1.124352pt;}
.wsa1{word-spacing:1.152000pt;}
.ws44{word-spacing:1.276800pt;}
.ws86{word-spacing:1.278720pt;}
.wse9{word-spacing:1.288320pt;}
.wscc{word-spacing:1.344000pt;}
.wsc8{word-spacing:1.372800pt;}
.ws91{word-spacing:1.382400pt;}
.ws75{word-spacing:1.390464pt;}
.ws3e{word-spacing:1.447040pt;}
.ws81{word-spacing:1.472256pt;}
.wsc7{word-spacing:1.516800pt;}
.ws77{word-spacing:1.517696pt;}
.wscd{word-spacing:1.526400pt;}
.wsbb{word-spacing:1.635840pt;}
.ws69{word-spacing:1.668352pt;}
.wsa2{word-spacing:1.824000pt;}
.ws12{word-spacing:1.873920pt;}
.wsba{word-spacing:1.908480pt;}
.wsb6{word-spacing:1.920000pt;}
.ws38{word-spacing:2.068416pt;}
.ws35{word-spacing:2.110976pt;}
.ws34{word-spacing:2.136512pt;}
.wsa0{word-spacing:2.400000pt;}
.ws82{word-spacing:2.435584pt;}
.ws8e{word-spacing:2.453760pt;}
.ws6b{word-spacing:2.468480pt;}
.ws32{word-spacing:2.485504pt;}
.ws9d{word-spacing:2.812800pt;}
.ws6d{word-spacing:3.234560pt;}
.wsc9{word-spacing:3.696000pt;}
.ws99{word-spacing:53.226240pt;}
.wsf0{word-spacing:63.252480pt;}
.wsc4{word-spacing:66.904320pt;}
._6{margin-left:-3.317568pt;}
._3{margin-left:-2.000000pt;}
._1{margin-left:-0.929856pt;}
._0{width:1.408000pt;}
._2{width:2.500736pt;}
._7{width:4.480000pt;}
._5{width:21.280000pt;}
._4{width:23.109568pt;}
._8{width:24.344320pt;}
._9{width:25.677184pt;}
._a{width:27.418880pt;}
._b{width:28.338176pt;}
._c{width:29.884992pt;}
._d{width:90.567680pt;}
.fs10{font-size:5.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:80.000000pt;}
.fsa{font-size:85.120000pt;}
.fsc{font-size:90.880000pt;}
.fse{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fsf{font-size:111.360000pt;}
.fs5{font-size:117.120000pt;}
.fsb{font-size:120.320000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:133.120000pt;}
.fs8{font-size:144.000000pt;}
.fs0{font-size:261.120000pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:23.511067pt;}
.y7{bottom:41.824267pt;}
.y58{bottom:44.098533pt;}
.y9c{bottom:65.783013pt;}
.y6a{bottom:70.714240pt;}
.yef{bottom:72.195813pt;}
.ybd{bottom:72.679067pt;}
.y45{bottom:84.926373pt;}
.y9b{bottom:88.190853pt;}
.y81{bottom:89.984000pt;}
.yd3{bottom:93.048587pt;}
.yb0{bottom:93.783067pt;}
.y57{bottom:96.824960pt;}
.yee{bottom:97.795653pt;}
.y10e{bottom:98.033733pt;}
.y118{bottom:98.214693pt;}
.y123{bottom:99.975040pt;}
.y69{bottom:102.724800pt;}
.y9{bottom:110.340827pt;}
.y44{bottom:110.526213pt;}
.y9a{bottom:110.598693pt;}
.ye1{bottom:115.120560pt;}
.y56{bottom:115.539200pt;}
.yaf{bottom:119.063067pt;}
.yd2{bottom:120.244427pt;}
.y80{bottom:121.973440pt;}
.y91{bottom:122.729467pt;}
.yed{bottom:123.395493pt;}
.y117{bottom:125.410533pt;}
.ybc{bottom:125.459467pt;}
.y10d{bottom:126.833733pt;}
.y132{bottom:127.415200pt;}
.y122{bottom:131.985600pt;}
.y8{bottom:132.748667pt;}
.y99{bottom:133.006533pt;}
.y55{bottom:134.259200pt;}
.y68{bottom:134.735360pt;}
.y43{bottom:136.126053pt;}
.y26{bottom:136.399067pt;}
.ye0{bottom:140.720400pt;}
.yae{bottom:143.063067pt;}
.y90{bottom:145.129467pt;}
.yd1{bottom:147.440267pt;}
.yec{bottom:148.995333pt;}
.y104{bottom:150.634800pt;}
.y75{bottom:152.251733pt;}
.y116{bottom:152.610533pt;}
.y7f{bottom:153.984000pt;}
.ybb{bottom:154.259467pt;}
.y131{bottom:154.611040pt;}
.y10c{bottom:155.633733pt;}
.y42{bottom:161.725893pt;}
.y25{bottom:161.998907pt;}
.y121{bottom:163.996160pt;}
.ydf{bottom:166.320427pt;}
.y67{bottom:166.745920pt;}
.yad{bottom:167.063067pt;}
.y8f{bottom:167.529467pt;}
.y1a{bottom:171.960267pt;}
.yc5{bottom:174.059600pt;}
.yeb{bottom:174.595173pt;}
.yd0{bottom:174.648587pt;}
.y54{bottom:178.653120pt;}
.y103{bottom:179.434800pt;}
.y115{bottom:179.818853pt;}
.ya1{bottom:179.913893pt;}
.y2e{bottom:181.011600pt;}
.y74{bottom:181.051600pt;}
.y130{bottom:181.806880pt;}
.yba{bottom:183.059467pt;}
.y10b{bottom:184.433733pt;}
.y7e{bottom:185.984000pt;}
.y4{bottom:186.360133pt;}
.y24{bottom:187.598747pt;}
.y38{bottom:187.784827pt;}
.y8e{bottom:189.929467pt;}
.yac{bottom:191.063067pt;}
.y5d{bottom:191.807227pt;}
.yde{bottom:191.920267pt;}
.yfc{bottom:193.724400pt;}
.y19{bottom:195.960267pt;}
.y4b{bottom:196.495467pt;}
.y66{bottom:198.756480pt;}
.yf5{bottom:198.797467pt;}
.yea{bottom:200.195013pt;}
.ycf{bottom:201.844427pt;}
.ya0{bottom:202.321733pt;}
.yc4{bottom:202.859600pt;}
.y53{bottom:203.122560pt;}
.y102{bottom:208.234800pt;}
.y12f{bottom:209.002720pt;}
.y73{bottom:209.851600pt;}
.yb9{bottom:211.859467pt;}
.y8d{bottom:212.329467pt;}
.y2d{bottom:213.022160pt;}
.y23{bottom:213.198587pt;}
.y10a{bottom:213.233733pt;}
.y41{bottom:213.585253pt;}
.yab{bottom:215.062933pt;}
.y12{bottom:215.942187pt;}
.ydd{bottom:217.520267pt;}
.y7d{bottom:217.973440pt;}
.y18{bottom:219.960267pt;}
.yfb{bottom:222.524400pt;}
.y37{bottom:223.790587pt;}
.y5c{bottom:223.817787pt;}
.y3{bottom:224.760133pt;}
.ye9{bottom:225.794853pt;}
.y52{bottom:227.592000pt;}
.yf4{bottom:227.597467pt;}
.y120{bottom:227.990560pt;}
.y4a{bottom:228.506027pt;}
.yce{bottom:229.040267pt;}
.y65{bottom:230.767040pt;}
.yc3{bottom:231.659600pt;}
.y114{bottom:234.210533pt;}
.y8c{bottom:234.729467pt;}
.y12e{bottom:236.198560pt;}
.y101{bottom:237.034800pt;}
.y72{bottom:238.651733pt;}
.yaa{bottom:239.062933pt;}
.y40{bottom:239.185093pt;}
.yb8{bottom:240.659467pt;}
.y109{bottom:242.033733pt;}
.ydc{bottom:243.120267pt;}
.y9f{bottom:243.901653pt;}
.y17{bottom:243.960267pt;}
.y2c{bottom:245.032720pt;}
.y126{bottom:247.566880pt;}
.y7c{bottom:249.984000pt;}
.y11{bottom:251.136747pt;}
.yfa{bottom:251.324400pt;}
.ye8{bottom:251.394693pt;}
.y51{bottom:252.061440pt;}
.y5b{bottom:255.828347pt;}
.ycd{bottom:256.256907pt;}
.yf3{bottom:256.397467pt;}
.y8b{bottom:257.129467pt;}
.y33{bottom:257.895493pt;}
.y36{bottom:259.796347pt;}
.y11f{bottom:260.001120pt;}
.y49{bottom:260.516587pt;}
.y113{bottom:261.410533pt;}
.y64{bottom:262.777600pt;}
.ya9{bottom:263.062933pt;}
.y2{bottom:263.160133pt;}
.y12d{bottom:263.394400pt;}
.y22{bottom:264.398267pt;}
.y3f{bottom:264.784933pt;}
.y100{bottom:265.834800pt;}
.y9e{bottom:266.309493pt;}
.y71{bottom:267.451600pt;}
.ydb{bottom:268.720267pt;}
.yb7{bottom:269.459467pt;}
.y50{bottom:276.530880pt;}
.ye7{bottom:276.994533pt;}
.y2b{bottom:277.043280pt;}
.y8a{bottom:279.529467pt;}
.yf9{bottom:280.124400pt;}
.y7b{bottom:281.973440pt;}
.y125{bottom:282.761440pt;}
.yf2{bottom:285.197467pt;}
.y10{bottom:286.331307pt;}
.ya8{bottom:287.062933pt;}
.y5a{bottom:287.838907pt;}
.y112{bottom:288.610533pt;}
.y9d{bottom:288.717333pt;}
.yc2{bottom:289.259600pt;}
.y32{bottom:289.906053pt;}
.y21{bottom:289.998107pt;}
.y12c{bottom:290.590240pt;}
.y16{bottom:291.960267pt;}
.y11e{bottom:292.011680pt;}
.y48{bottom:292.527147pt;}
.yda{bottom:294.320720pt;}
.yff{bottom:294.634800pt;}
.y63{bottom:294.788160pt;}
.y35{bottom:295.802107pt;}
.y70{bottom:296.251733pt;}
.yb6{bottom:298.259467pt;}
.y134{bottom:299.287973pt;}
.y108{bottom:299.633733pt;}
.y4f{bottom:301.000320pt;}
.y89{bottom:301.929467pt;}
.ye6{bottom:302.594373pt;}
.yf8{bottom:308.924400pt;}
.y2a{bottom:309.053840pt;}
.y1{bottom:309.240133pt;}
.ycc{bottom:310.648587pt;}
.ya7{bottom:311.062933pt;}
.y7a{bottom:313.984000pt;}
.yf1{bottom:313.997467pt;}
.y20{bottom:315.597947pt;}
.y111{bottom:315.810533pt;}
.y15{bottom:315.960267pt;}
.y3e{bottom:315.984613pt;}
.y12b{bottom:317.786080pt;}
.y124{bottom:317.956000pt;}
.yc1{bottom:318.059600pt;}
.y59{bottom:319.849467pt;}
.yf{bottom:321.525867pt;}
.y31{bottom:321.916613pt;}
.yfe{bottom:323.434800pt;}
.y11d{bottom:324.022240pt;}
.y88{bottom:324.329467pt;}
.y47{bottom:324.537707pt;}
.y6f{bottom:325.051600pt;}
.y4e{bottom:325.469760pt;}
.y62{bottom:326.798720pt;}
.yb5{bottom:327.059467pt;}
.ye5{bottom:328.194213pt;}
.ya{bottom:328.208400pt;}
.y107{bottom:328.433733pt;}
.yb{bottom:330.288400pt;}
.y98{bottom:331.633920pt;}
.y34{bottom:331.807867pt;}
.ya6{bottom:335.062933pt;}
.yf7{bottom:337.724400pt;}
.ycb{bottom:337.844427pt;}
.yc{bottom:338.292400pt;}
.y133{bottom:339.290533pt;}
.y14{bottom:339.960267pt;}
.y29{bottom:341.064400pt;}
.y1f{bottom:341.197787pt;}
.y3d{bottom:341.584453pt;}
.y110{bottom:343.010533pt;}
.y12a{bottom:344.981920pt;}
.yd9{bottom:345.520400pt;}
.y79{bottom:345.984000pt;}
.y87{bottom:346.729467pt;}
.yc0{bottom:346.859600pt;}
.y4d{bottom:349.939200pt;}
.yfd{bottom:352.234800pt;}
.ye4{bottom:353.794053pt;}
.y6e{bottom:353.851600pt;}
.y30{bottom:353.927173pt;}
.y97{bottom:354.041760pt;}
.yb4{bottom:355.859467pt;}
.y11c{bottom:356.032800pt;}
.y46{bottom:356.548267pt;}
.y106{bottom:357.233733pt;}
.y61{bottom:358.809280pt;}
.ya5{bottom:359.062933pt;}
.yd{bottom:359.088400pt;}
.yca{bottom:365.040267pt;}
.y1e{bottom:366.797627pt;}
.y3c{bottom:367.184293pt;}
.y86{bottom:369.129467pt;}
.y10f{bottom:370.210533pt;}
.yd8{bottom:371.120267pt;}
.yf0{bottom:371.597467pt;}
.y129{bottom:372.177760pt;}
.ybf{bottom:375.659600pt;}
.y96{bottom:376.449600pt;}
.y78{bottom:377.973307pt;}
.ye3{bottom:379.393893pt;}
.y6d{bottom:382.651600pt;}
.ya4{bottom:383.062933pt;}
.yb3{bottom:384.659467pt;}
.y2f{bottom:385.937733pt;}
.y105{bottom:386.033733pt;}
.y60{bottom:390.819840pt;}
.y85{bottom:391.529467pt;}
.yc9{bottom:392.244427pt;}
.y1d{bottom:392.397467pt;}
.y3b{bottom:392.784133pt;}
.yf6{bottom:395.324400pt;}
.yd7{bottom:396.720267pt;}
.y4c{bottom:398.378667pt;}
.y128{bottom:399.373600pt;}
.ybe{bottom:404.459600pt;}
.ye2{bottom:404.993733pt;}
.ya3{bottom:407.062933pt;}
.y13{bottom:408.639867pt;}
.y77{bottom:409.983867pt;}
.yb2{bottom:413.459467pt;}
.y84{bottom:413.929467pt;}
.yc8{bottom:419.440267pt;}
.yd6{bottom:422.320267pt;}
.y5f{bottom:422.830400pt;}
.y95{bottom:424.678080pt;}
.y11a{bottom:428.905840pt;}
.ya2{bottom:431.062933pt;}
.y28{bottom:435.265467pt;}
.y83{bottom:436.329467pt;}
.y1c{bottom:441.261067pt;}
.y3a{bottom:441.578667pt;}
.y6{bottom:442.803440pt;}
.y6c{bottom:444.795707pt;}
.yc7{bottom:446.640267pt;}
.y94{bottom:447.085920pt;}
.yd5{bottom:447.920267pt;}
.ye{bottom:451.199733pt;}
.y119{bottom:464.100400pt;}
.y5{bottom:468.401200pt;}
.y93{bottom:469.493760pt;}
.y5e{bottom:471.595867pt;}
.y27{bottom:477.825467pt;}
.y76{bottom:478.228933pt;}
.y127{bottom:480.336533pt;}
.y82{bottom:482.055467pt;}
.y1b{bottom:483.821067pt;}
.y39{bottom:484.138667pt;}
.y6b{bottom:484.798267pt;}
.yd4{bottom:486.296533pt;}
.yc6{bottom:489.393333pt;}
.y92{bottom:491.901600pt;}
.yb1{bottom:493.264800pt;}
.h17{height:3.732500pt;}
.h5{height:31.259687pt;}
.h8{height:34.992188pt;}
.h10{height:50.388750pt;}
.h6{height:54.587812pt;}
.hc{height:58.320312pt;}
.h16{height:61.969687pt;}
.h13{height:62.052279pt;}
.hd{height:62.052813pt;}
.h15{height:66.163125pt;}
.hf{height:66.251875pt;}
.h14{height:69.890625pt;}
.h11{height:69.984375pt;}
.h4{height:77.811562pt;}
.h3{height:77.915937pt;}
.h12{height:81.181875pt;}
.h7{height:85.266562pt;}
.ha{height:85.380937pt;}
.he{height:87.713750pt;}
.h2{height:93.187500pt;}
.h9{height:96.915000pt;}
.hb{height:104.976562pt;}
.h1{height:190.102500pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:9.598400pt;}
.x2d{left:28.929867pt;}
.x33{left:34.064800pt;}
.x18{left:35.922800pt;}
.x2b{left:37.662667pt;}
.x37{left:38.973067pt;}
.x2e{left:40.929200pt;}
.xd{left:42.322800pt;}
.x3a{left:43.484133pt;}
.x1e{left:46.714800pt;}
.x10{left:48.128800pt;}
.x19{left:49.202133pt;}
.x12{left:50.122133pt;}
.x30{left:51.922533pt;}
.x36{left:54.322800pt;}
.x1b{left:55.602800pt;}
.x11{left:57.215467pt;}
.x14{left:60.136000pt;}
.x34{left:63.291120pt;}
.x2c{left:64.219067pt;}
.x3b{left:68.939467pt;}
.x5{left:72.035333pt;}
.xe{left:76.573067pt;}
.x2f{left:78.761200pt;}
.x31{left:81.994533pt;}
.x3d{left:83.861467pt;}
.x1a{left:85.202133pt;}
.x35{left:86.994667pt;}
.x1c{left:90.322800pt;}
.x32{left:91.691600pt;}
.x17{left:97.253600pt;}
.x3c{left:99.020747pt;}
.x8{left:101.870267pt;}
.xf{left:106.614347pt;}
.x2{left:126.306800pt;}
.x39{left:127.689333pt;}
.x13{left:145.391467pt;}
.x3{left:150.466800pt;}
.x1{left:151.746800pt;}
.x4{left:208.226800pt;}
.x6{left:238.260453pt;}
.x15{left:342.670560pt;}
.x25{left:625.078267pt;}
.x29{left:635.390133pt;}
.x2a{left:636.513333pt;}
.x23{left:637.579360pt;}
.x26{left:639.550000pt;}
.x20{left:648.324533pt;}
.x22{left:651.656800pt;}
.x28{left:656.997040pt;}
.x27{left:663.230800pt;}
.x1f{left:664.330133pt;}
.x21{left:668.972693pt;}
.x24{left:689.265280pt;}
.x9{left:907.489333pt;}
.x38{left:924.465867pt;}
.xa{left:925.889333pt;}
.x16{left:938.460400pt;}
.xb{left:940.289333pt;}
.x7{left:944.380400pt;}
.xc{left:954.689333pt;}
}




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