
    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_c35e9165505a17218973963e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_9e77c472476fd760dc460988.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_e0dd58b53666db1c4187aa9f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_762d6df6c44cd79e5e036c4a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48a055d04367951e8dc3e456.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_b81a3d3d573ba8652c3a3d91.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714000;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_dc2d657b59fd76b7ef01d0ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.899000;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_9a0a7db81d8069945c1d3890.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.710000;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_46817d4d390989d2ef657af5.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_2b8130857e35438d7c65b47b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.725000;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_92482d1ee4da047747829753.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708000;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_e927deaace38b207485aeb3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.399000;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_4ea9d1ad93a3ba41bd89a9b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_d4cca62b36a0a7b5129ca5a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.705000;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:fff;src:url('chunks/assets/font_0755be91cc3cbf1cae723bbe.woff2')format("woff");}.fff{font-family:fff;line-height:0.389000;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);}
.m1{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);}
.vc{vertical-align:-92.292000px;}
.v5{vertical-align:-23.754000px;}
.v8{vertical-align:-15.720000px;}
.v2{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:10.662000px;}
.v12{vertical-align:16.542000px;}
.v10{vertical-align:19.926000px;}
.v6{vertical-align:23.748000px;}
.ve{vertical-align:31.062000px;}
.v4{vertical-align:34.416000px;}
.vd{vertical-align:41.724000px;}
.v11{vertical-align:43.152000px;}
.va{vertical-align:44.280000px;}
.vf{vertical-align:54.150000px;}
.v9{vertical-align:92.292000px;}
.v7{vertical-align:134.184000px;}
.vb{vertical-align:147.858000px;}
.ls10{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000613px;}
.ls3e{letter-spacing:0.001585px;}
.ls2d{letter-spacing:0.002682px;}
.ls15{letter-spacing:0.004202px;}
.ls33{letter-spacing:0.008615px;}
.ls45{letter-spacing:0.008848px;}
.ls0{letter-spacing:0.008865px;}
.ls37{letter-spacing:0.013520px;}
.ls43{letter-spacing:0.013852px;}
.ls42{letter-spacing:0.014038px;}
.ls27{letter-spacing:0.014642px;}
.ls17{letter-spacing:0.015908px;}
.ls39{letter-spacing:0.017543px;}
.ls30{letter-spacing:0.020541px;}
.ls13{letter-spacing:0.021671px;}
.ls4d{letter-spacing:0.026433px;}
.ls4b{letter-spacing:0.026721px;}
.ls3{letter-spacing:0.028943px;}
.ls4{letter-spacing:0.028980px;}
.lsd{letter-spacing:0.029015px;}
.ls1e{letter-spacing:0.030939px;}
.ls52{letter-spacing:0.065455px;}
.ls1b{letter-spacing:0.196364px;}
.lsa{letter-spacing:0.261818px;}
.ls29{letter-spacing:0.458182px;}
.ls50{letter-spacing:0.523637px;}
.ls2a{letter-spacing:1.832729px;}
.ls51{letter-spacing:2.421820px;}
.ls24{letter-spacing:2.981971px;}
.ls31{letter-spacing:2.984915px;}
.ls38{letter-spacing:2.985056px;}
.ls49{letter-spacing:2.989289px;}
.ls35{letter-spacing:2.990915px;}
.lse{letter-spacing:2.991056px;}
.ls32{letter-spacing:5.344571px;}
.ls4f{letter-spacing:7.003642px;}
.ls28{letter-spacing:7.069097px;}
.ls25{letter-spacing:10.906339px;}
.ls2e{letter-spacing:10.930918px;}
.ls21{letter-spacing:11.192737px;}
.ls48{letter-spacing:12.960011px;}
.ls7{letter-spacing:13.680011px;}
.ls8{letter-spacing:13.745466px;}
.ls18{letter-spacing:14.400012px;}
.ls19{letter-spacing:14.465467px;}
.ls20{letter-spacing:14.530921px;}
.ls2{letter-spacing:17.454475px;}
.ls14{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.lsb{letter-spacing:18.392743px;}
.ls1d{letter-spacing:18.458197px;}
.lsf{letter-spacing:19.701835px;}
.ls3b{letter-spacing:20.029108px;}
.ls47{letter-spacing:20.487290px;}
.ls55{letter-spacing:20.814563px;}
.ls5{letter-spacing:20.880017px;}
.ls9{letter-spacing:21.035971px;}
.ls4c{letter-spacing:21.175289px;}
.ls11{letter-spacing:22.516382px;}
.ls40{letter-spacing:22.778201px;}
.ls56{letter-spacing:24.104915px;}
.lsc{letter-spacing:24.414566px;}
.ls1a{letter-spacing:24.755971px;}
.ls34{letter-spacing:24.804960px;}
.ls53{letter-spacing:25.134566px;}
.ls54{letter-spacing:25.200021px;}
.ls26{letter-spacing:26.050931px;}
.ls16{letter-spacing:26.116385px;}
.ls12{letter-spacing:26.705477px;}
.ls57{letter-spacing:27.294568px;}
.ls1{letter-spacing:27.437000px;}
.ls1f{letter-spacing:28.800024px;}
.ls3d{letter-spacing:29.061842px;}
.ls3c{letter-spacing:29.127297px;}
.ls3f{letter-spacing:29.912752px;}
.ls3a{letter-spacing:31.287299px;}
.ls41{letter-spacing:32.727300px;}
.ls1c{letter-spacing:32.989118px;}
.ls23{letter-spacing:65.452869px;}
.ls36{letter-spacing:79.920067px;}
.ls22{letter-spacing:88.432869px;}
.ls46{letter-spacing:169.789232px;}
.ls44{letter-spacing:195.251072px;}
.ls4a{letter-spacing:398.618514px;}
.ls2b{letter-spacing:403.810180px;}
.ls2f{letter-spacing:448.508915px;}
.ls2c{letter-spacing:497.600915px;}
.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;}
}
.ws5c{word-spacing:-60.833505px;}
.ws1a{word-spacing:-42.637126px;}
.ws6e{word-spacing:-31.771663px;}
.wsb3{word-spacing:-26.899125px;}
.ws81{word-spacing:-24.506202px;}
.ws68{word-spacing:-24.440748px;}
.wsc5{word-spacing:-20.906199px;}
.ws24{word-spacing:-18.183288px;}
.ws58{word-spacing:-14.111859px;}
.ws5b{word-spacing:-3.973291px;}
.ws8f{word-spacing:-3.652367px;}
.wsb6{word-spacing:-3.390548px;}
.ws39{word-spacing:-3.194184px;}
.ws6b{word-spacing:-2.932366px;}
.wsb5{word-spacing:-2.277820px;}
.ws4b{word-spacing:-1.754183px;}
.ws48{word-spacing:-1.531638px;}
.ws31{word-spacing:-1.361456px;}
.ws49{word-spacing:-1.296001px;}
.wsc1{word-spacing:-1.230546px;}
.wsbc{word-spacing:-1.099637px;}
.wsba{word-spacing:-1.034183px;}
.ws12{word-spacing:-0.884679px;}
.ws44{word-spacing:-0.746182px;}
.ws45{word-spacing:-0.641455px;}
.ws87{word-spacing:-0.576000px;}
.wsbd{word-spacing:-0.510546px;}
.wsaa{word-spacing:-0.445091px;}
.ws5a{word-spacing:-0.222029px;}
.wsc7{word-spacing:-0.183273px;}
.wsd{word-spacing:-0.167372px;}
.ws26{word-spacing:-0.117818px;}
.ws51{word-spacing:-0.052364px;}
.ws59{word-spacing:-0.014871px;}
.ws30{word-spacing:0.000000px;}
.ws23{word-spacing:0.013091px;}
.ws86{word-spacing:0.274909px;}
.ws42{word-spacing:0.405819px;}
.ws41{word-spacing:0.432000px;}
.wsa3{word-spacing:0.798546px;}
.wsb{word-spacing:0.848814px;}
.ws11{word-spacing:0.908589px;}
.ws9a{word-spacing:0.955637px;}
.wsad{word-spacing:1.125819px;}
.wsbe{word-spacing:1.191274px;}
.ws98{word-spacing:1.322183px;}
.ws2b{word-spacing:1.387638px;}
.ws3f{word-spacing:1.453092px;}
.ws57{word-spacing:1.518547px;}
.wsa0{word-spacing:1.544729px;}
.ws2f{word-spacing:1.649456px;}
.wsc9{word-spacing:1.780365px;}
.ws65{word-spacing:2.173093px;}
.ws17{word-spacing:2.238547px;}
.ws91{word-spacing:2.369457px;}
.ws67{word-spacing:2.434911px;}
.ws64{word-spacing:2.461093px;}
.wsa6{word-spacing:2.893093px;}
.ws6a{word-spacing:2.958548px;}
.ws75{word-spacing:3.089457px;}
.ws21{word-spacing:3.220366px;}
.ws2{word-spacing:3.299613px;}
.ws4c{word-spacing:3.547639px;}
.ws1e{word-spacing:3.613094px;}
.ws43{word-spacing:3.678549px;}
.wsab{word-spacing:3.744003px;}
.wsa{word-spacing:3.837594px;}
.wsc8{word-spacing:4.005822px;}
.wsb0{word-spacing:4.136731px;}
.ws6c{word-spacing:4.162913px;}
.ws18{word-spacing:4.202185px;}
.ws80{word-spacing:4.228367px;}
.ws33{word-spacing:4.267640px;}
.ws2c{word-spacing:4.398549px;}
.ws2a{word-spacing:4.464004px;}
.ws15{word-spacing:4.483200px;}
.ws20{word-spacing:4.529458px;}
.ws7f{word-spacing:4.725822px;}
.ws92{word-spacing:4.791277px;}
.wsa5{word-spacing:4.856731px;}
.ws2e{word-spacing:4.922186px;}
.ws6{word-spacing:4.973330px;}
.ws99{word-spacing:4.987641px;}
.wsa8{word-spacing:5.053095px;}
.ws1c{word-spacing:5.184004px;}
.ws19{word-spacing:5.249459px;}
.ws9b{word-spacing:5.275641px;}
.ws38{word-spacing:5.314914px;}
.ws56{word-spacing:5.379825px;}
.ws7d{word-spacing:5.406550px;}
.wsc3{word-spacing:5.511277px;}
.wsaf{word-spacing:5.707641px;}
.ws66{word-spacing:5.773096px;}
.wsb2{word-spacing:5.838550px;}
.ws28{word-spacing:5.969460px;}
.ws90{word-spacing:6.034914px;}
.ws97{word-spacing:6.100369px;}
.ws85{word-spacing:6.362187px;}
.ws83{word-spacing:6.427642px;}
.ws3{word-spacing:6.467720px;}
.ws52{word-spacing:6.558551px;}
.wsc{word-spacing:6.931399px;}
.wse{word-spacing:6.945925px;}
.ws35{word-spacing:7.016733px;}
.ws22{word-spacing:7.036709px;}
.ws9e{word-spacing:7.060007px;}
.ws1f{word-spacing:7.060046px;}
.ws89{word-spacing:7.062634px;}
.ws4d{word-spacing:7.078530px;}
.ws37{word-spacing:7.082188px;}
.ws27{word-spacing:7.213097px;}
.ws82{word-spacing:7.370188px;}
.ws16{word-spacing:7.605825px;}
.ws9c{word-spacing:7.802188px;}
.ws61{word-spacing:7.867643px;}
.ws5f{word-spacing:7.933098px;}
.ws96{word-spacing:8.032046px;}
.ws3c{word-spacing:8.064007px;}
.ws5e{word-spacing:8.325825px;}
.ws13{word-spacing:8.380539px;}
.ws46{word-spacing:8.391280px;}
.ws95{word-spacing:8.522189px;}
.ws34{word-spacing:8.718553px;}
.ws7e{word-spacing:8.878046px;}
.wsb7{word-spacing:8.914917px;}
.ws9{word-spacing:8.918520px;}
.wsa9{word-spacing:9.111280px;}
.wsa1{word-spacing:9.504008px;}
.ws2d{word-spacing:9.634917px;}
.ws1d{word-spacing:9.730046px;}
.ws94{word-spacing:9.765826px;}
.ws4{word-spacing:9.815154px;}
.ws53{word-spacing:9.962190px;}
.wsa7{word-spacing:9.989971px;}
.ws55{word-spacing:10.027645px;}
.ws10{word-spacing:10.114032px;}
.ws7{word-spacing:10.173807px;}
.wsac{word-spacing:10.224009px;}
.ws25{word-spacing:10.277971px;}
.ws93{word-spacing:10.420372px;}
.ws3a{word-spacing:10.551282px;}
.ws4e{word-spacing:10.643971px;}
.ws5d{word-spacing:10.691971px;}
.ws8b{word-spacing:10.694943px;}
.ws8d{word-spacing:10.695090px;}
.ws8e{word-spacing:10.696743px;}
.ws62{word-spacing:10.747645px;}
.wsf{word-spacing:10.891114px;}
.ws3b{word-spacing:10.944009px;}
.wsc4{word-spacing:11.074918px;}
.wsa4{word-spacing:11.533101px;}
.wsae{word-spacing:11.860374px;}
.ws3d{word-spacing:12.122192px;}
.wsb8{word-spacing:12.187647px;}
.ws1b{word-spacing:12.298046px;}
.ws4f{word-spacing:12.318556px;}
.ws4a{word-spacing:12.384010px;}
.ws63{word-spacing:12.410192px;}
.wsb1{word-spacing:12.645829px;}
.ws36{word-spacing:12.754046px;}
.wsc6{word-spacing:12.973102px;}
.ws84{word-spacing:13.446904px;}
.wsa2{word-spacing:14.085830px;}
.ws3e{word-spacing:14.216739px;}
.wsb4{word-spacing:14.347648px;}
.ws40{word-spacing:14.544012px;}
.ws50{word-spacing:14.609467px;}
.ws60{word-spacing:14.950046px;}
.ws47{word-spacing:14.998046px;}
.ws5{word-spacing:16.921399px;}
.wsbb{word-spacing:17.083651px;}
.ws54{word-spacing:17.662046px;}
.wsc0{word-spacing:19.505471px;}
.ws9f{word-spacing:21.646007px;}
.ws29{word-spacing:21.678564px;}
.wsc2{word-spacing:23.301838px;}
.ws1{word-spacing:23.312640px;}
.ws32{word-spacing:23.956384px;}
.wsbf{word-spacing:25.920022px;}
.ws8{word-spacing:26.480591px;}
.wsb9{word-spacing:30.109116px;}
.ws0{word-spacing:31.091012px;}
.ws8a{word-spacing:50.832042px;}
.ws8c{word-spacing:53.554954px;}
.ws88{word-spacing:53.638007px;}
.ws9d{word-spacing:58.281600px;}
.ws14{word-spacing:69.937725px;}
.ws79{word-spacing:74.827699px;}
.ws7a{word-spacing:87.419971px;}
.ws7b{word-spacing:96.493171px;}
.ws77{word-spacing:98.758046px;}
.ws7c{word-spacing:134.129566px;}
.ws78{word-spacing:162.550046px;}
.ws6d{word-spacing:290.264887px;}
.ws72{word-spacing:311.448634px;}
.ws70{word-spacing:322.868887px;}
.ws74{word-spacing:372.777038px;}
.ws6f{word-spacing:449.817102px;}
.ws71{word-spacing:451.518922px;}
.ws76{word-spacing:525.705165px;}
.ws73{word-spacing:591.264493px;}
.ws69{word-spacing:902.304752px;}
._43{margin-left:-43.200036px;}
._1e{margin-left:-17.979261px;}
._1{margin-left:-8.160100px;}
._17{margin-left:-6.478042px;}
._5{margin-left:-4.551545px;}
._0{margin-left:-2.685602px;}
._3{margin-left:-1.613941px;}
._2{width:1.673717px;}
._4{width:2.685602px;}
._9{width:4.542946px;}
._2a{width:7.817200px;}
._4f{width:13.747430px;}
._4e{width:16.401002px;}
._1a{width:17.477408px;}
._d{width:18.526136px;}
._20{width:19.771217px;}
._1b{width:20.849740px;}
._4c{width:21.994709px;}
._14{width:23.041983px;}
._b{width:24.567772px;}
._12{width:26.445622px;}
._6{width:28.094532px;}
._11{width:29.817020px;}
._10{width:30.963953px;}
._16{width:32.428130px;}
._3d{width:33.482478px;}
._18{width:35.120807px;}
._49{width:36.574340px;}
._a{width:37.778179px;}
._15{width:39.338215px;}
._13{width:40.387013px;}
._e{width:41.663593px;}
._19{width:43.371802px;}
._7{width:46.027212px;}
._8{width:47.043397px;}
._c{width:48.905040px;}
._4a{width:52.821862px;}
._4b{width:54.269506px;}
._4d{width:56.160047px;}
._21{width:65.825238px;}
._23{width:71.738242px;}
._f{width:80.697600px;}
._1c{width:96.836850px;}
._31{width:100.669175px;}
._39{width:102.632813px;}
._2e{width:103.649809px;}
._3c{width:118.145553px;}
._32{width:129.605787px;}
._36{width:133.527384px;}
._2b{width:155.023515px;}
._44{width:162.131044px;}
._2f{width:165.600138px;}
._34{width:171.621961px;}
._30{width:180.392878px;}
._3a{width:183.731062px;}
._29{width:192.728409px;}
._3f{width:194.312982px;}
._40{width:196.887437px;}
._3b{width:213.905633px;}
._2c{width:219.667601px;}
._46{width:252.946641px;}
._45{width:254.358539px;}
._38{width:275.171138px;}
._37{width:282.502054px;}
._41{width:286.104020px;}
._3e{width:298.209194px;}
._48{width:322.820123px;}
._33{width:356.989388px;}
._35{width:377.869406px;}
._42{width:382.718725px;}
._22{width:408.210063px;}
._47{width:447.253246px;}
._2d{width:450.460521px;}
._26{width:452.489614px;}
._27{width:465.780613px;}
._28{width:468.624659px;}
._25{width:505.309512px;}
._24{width:562.582287px;}
._1d{width:654.807818px;}
._1f{width:1066.887890px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y29{bottom:63.168000px;}
.y98{bottom:108.000000px;}
.y102{bottom:109.006500px;}
.y129{bottom:110.251500px;}
.y28{bottom:119.376000px;}
.y128{bottom:130.575000px;}
.yb9{bottom:132.096000px;}
.y27{bottom:139.699500px;}
.yd8{bottom:140.535000px;}
.y97{bottom:141.448500px;}
.y101{bottom:142.779000px;}
.yb8{bottom:152.419500px;}
.y26{bottom:160.024500px;}
.yd7{bottom:160.858500px;}
.y127{bottom:164.349000px;}
.y96{bottom:170.047500px;}
.yb7{bottom:172.743000px;}
.y95{bottom:174.897000px;}
.y100{bottom:179.307000px;}
.y126{bottom:184.672500px;}
.y51{bottom:189.780000px;}
.y78{bottom:190.038000px;}
.y25{bottom:190.915500px;}
.yd6{bottom:191.749500px;}
.yb6{bottom:193.066500px;}
.y125{bottom:204.996000px;}
.y94{bottom:207.858000px;}
.y50{bottom:210.103500px;}
.y77{bottom:214.426500px;}
.yb5{bottom:223.959000px;}
.y93{bottom:228.181500px;}
.y4f{bottom:230.427000px;}
.yff{bottom:230.866500px;}
.y24{bottom:234.735000px;}
.yd5{bottom:235.335000px;}
.y124{bottom:238.770000px;}
.y76{bottom:238.815000px;}
.y92{bottom:248.506500px;}
.y4e{bottom:250.750500px;}
.yfe{bottom:251.190000px;}
.y23{bottom:255.058500px;}
.yd4{bottom:255.660000px;}
.y123{bottom:259.093500px;}
.y75{bottom:263.203500px;}
.yb4{bottom:267.778500px;}
.y4d{bottom:271.075500px;}
.yfd{bottom:271.513500px;}
.y22{bottom:275.382000px;}
.yd3{bottom:275.983500px;}
.y91{bottom:279.397500px;}
.y74{bottom:287.592000px;}
.yb3{bottom:288.102000px;}
.y4c{bottom:291.399000px;}
.y122{bottom:292.867500px;}
.y21{bottom:295.707000px;}
.yfc{bottom:308.041500px;}
.yb2{bottom:308.425500px;}
.yd2{bottom:308.517000px;}
.y4b{bottom:311.722500px;}
.y73{bottom:311.979000px;}
.y121{bottom:313.191000px;}
.y20{bottom:316.030500px;}
.y90{bottom:316.524000px;}
.yb1{bottom:328.749000px;}
.yd1{bottom:328.842000px;}
.y4a{bottom:332.046000px;}
.y1f{bottom:336.354000px;}
.y72{bottom:336.367500px;}
.y120{bottom:346.963500px;}
.yb0{bottom:349.074000px;}
.y1e{bottom:356.677500px;}
.yfb{bottom:359.599500px;}
.y71{bottom:360.756000px;}
.yd0{bottom:362.119500px;}
.y49{bottom:362.938500px;}
.y11f{bottom:367.288500px;}
.y8f{bottom:367.929000px;}
.y1d{bottom:377.001000px;}
.yfa{bottom:379.923000px;}
.yaf{bottom:379.965000px;}
.y70{bottom:385.144500px;}
.y11e{bottom:387.612000px;}
.ycf{bottom:394.653000px;}
.y1c{bottom:397.326000px;}
.yf9{bottom:400.248000px;}
.y8e{bottom:400.890000px;}
.y48{bottom:406.756500px;}
.y1b{bottom:417.649500px;}
.y6f{bottom:417.750000px;}
.yf8{bottom:420.571500px;}
.y11d{bottom:421.384500px;}
.yae{bottom:423.186000px;}
.yce{bottom:425.545500px;}
.y47{bottom:427.081500px;}
.y8d{bottom:434.338500px;}
.y1a{bottom:437.973000px;}
.yf7{bottom:440.895000px;}
.y11c{bottom:441.709500px;}
.yad{bottom:443.511000px;}
.y6e{bottom:445.386000px;}
.y46{bottom:447.405000px;}
.y19{bottom:458.296500px;}
.yf6{bottom:461.218500px;}
.y8c{bottom:467.787000px;}
.ycd{bottom:469.131000px;}
.y11b{bottom:475.482000px;}
.y18{bottom:478.620000px;}
.y45{bottom:481.177500px;}
.yf5{bottom:481.542000px;}
.yac{bottom:490.029000px;}
.y6d{bottom:492.808500px;}
.y11a{bottom:495.805500px;}
.y8b{bottom:501.235500px;}
.y44{bottom:501.502500px;}
.yf4{bottom:501.867000px;}
.ycc{bottom:502.408500px;}
.y17{bottom:509.512500px;}
.y6c{bottom:513.132000px;}
.yab{bottom:514.417500px;}
.y119{bottom:516.129000px;}
.yf3{bottom:522.190500px;}
.y8a{bottom:534.196500px;}
.y43{bottom:535.275000px;}
.ycb{bottom:535.686000px;}
.yf2{bottom:542.514000px;}
.y16{bottom:546.639000px;}
.yaa{bottom:547.021500px;}
.y6b{bottom:549.894000px;}
.y118{bottom:549.903000px;}
.y89{bottom:554.521500px;}
.y42{bottom:555.598500px;}
.yf1{bottom:562.837500px;}
.yca{bottom:568.221000px;}
.y117{bottom:570.226500px;}
.ya9{bottom:574.659000px;}
.y41{bottom:575.923500px;}
.yf0{bottom:583.161000px;}
.y88{bottom:585.412500px;}
.y6a{bottom:586.656000px;}
.yc9{bottom:588.544500px;}
.y116{bottom:590.550000px;}
.y15{bottom:598.197000px;}
.yef{bottom:603.486000px;}
.yc8{bottom:608.868000px;}
.y40{bottom:609.696000px;}
.y14{bottom:616.129500px;}
.y69{bottom:617.548500px;}
.ya8{bottom:622.080000px;}
.yee{bottom:623.809500px;}
.y115{bottom:624.324000px;}
.y87{bottom:629.079000px;}
.yc7{bottom:629.191500px;}
.y3f{bottom:630.019500px;}
.y13{bottom:634.062000px;}
.yed{bottom:644.133000px;}
.y114{bottom:644.647500px;}
.y86{bottom:649.402500px;}
.y12{bottom:651.994500px;}
.ya7{bottom:652.972500px;}
.yc6{bottom:660.084000px;}
.y68{bottom:661.368000px;}
.y3e{bottom:663.793500px;}
.yec{bottom:664.456500px;}
.y11{bottom:669.927000px;}
.y113{bottom:678.421500px;}
.y67{bottom:681.691500px;}
.y85{bottom:682.851000px;}
.yeb{bottom:684.780000px;}
.y10{bottom:687.861000px;}
.ya6{bottom:690.099000px;}
.y3d{bottom:694.686000px;}
.y112{bottom:698.745000px;}
.y66{bottom:702.015000px;}
.yc5{bottom:703.669500px;}
.yea{bottom:705.105000px;}
.yf{bottom:705.793500px;}
.y84{bottom:716.299500px;}
.y111{bottom:719.068500px;}
.y65{bottom:722.338500px;}
.ye{bottom:723.726000px;}
.yc4{bottom:723.993000px;}
.ye9{bottom:725.428500px;}
.y3c{bottom:738.504000px;}
.ya5{bottom:741.657000px;}
.yd{bottom:741.658500px;}
.y64{bottom:742.662000px;}
.yc3{bottom:744.316500px;}
.ye8{bottom:745.752000px;}
.y83{bottom:749.748000px;}
.y110{bottom:752.842500px;}
.y3b{bottom:758.829000px;}
.yc{bottom:759.591000px;}
.ya4{bottom:761.980500px;}
.y63{bottom:762.987000px;}
.yc2{bottom:764.640000px;}
.ye7{bottom:766.075500px;}
.y82{bottom:770.071500px;}
.y10f{bottom:773.166000px;}
.yb{bottom:777.523500px;}
.y3a{bottom:779.152500px;}
.y62{bottom:783.310500px;}
.yc1{bottom:784.965000px;}
.ye6{bottom:786.399000px;}
.y10e{bottom:793.489500px;}
.ya{bottom:795.457500px;}
.ya3{bottom:795.754500px;}
.y39{bottom:799.476000px;}
.y81{bottom:803.034000px;}
.yc0{bottom:805.288500px;}
.ye5{bottom:806.724000px;}
.y9{bottom:813.390000px;}
.y61{bottom:814.201500px;}
.y38{bottom:819.799500px;}
.ybf{bottom:825.612000px;}
.ye4{bottom:827.047500px;}
.y10d{bottom:827.263500px;}
.ya2{bottom:829.527000px;}
.y8{bottom:831.322500px;}
.y37{bottom:840.123000px;}
.ybe{bottom:845.935500px;}
.ye3{bottom:847.371000px;}
.y10c{bottom:847.587000px;}
.y80{bottom:848.317500px;}
.y7{bottom:849.255000px;}
.y60{bottom:858.021000px;}
.y36{bottom:860.448000px;}
.ya1{bottom:863.301000px;}
.ye2{bottom:867.694500px;}
.y7f{bottom:872.706000px;}
.y6{bottom:876.528000px;}
.ybd{bottom:876.828000px;}
.y5f{bottom:878.344500px;}
.y35{bottom:880.771500px;}
.y10b{bottom:881.359500px;}
.ye1{bottom:888.018000px;}
.ya0{bottom:897.073500px;}
.y7e{bottom:897.094500px;}
.y34{bottom:901.095000px;}
.y10a{bottom:901.684500px;}
.y5e{bottom:905.787000px;}
.ye0{bottom:908.343000px;}
.ybc{bottom:913.953000px;}
.y5d{bottom:916.218000px;}
.y33{bottom:921.418500px;}
.y7d{bottom:921.483000px;}
.ydf{bottom:928.666500px;}
.y9f{bottom:930.847500px;}
.y109{bottom:935.457000px;}
.y5c{bottom:936.543000px;}
.y5{bottom:936.939000px;}
.y32{bottom:941.742000px;}
.y7c{bottom:949.105500px;}
.y7b{bottom:954.087000px;}
.y108{bottom:955.780500px;}
.y5b{bottom:956.866500px;}
.y9e{bottom:961.738500px;}
.yde{bottom:965.194500px;}
.ybb{bottom:970.732500px;}
.y31{bottom:972.634500px;}
.y4{bottom:973.527000px;}
.y107{bottom:976.105500px;}
.y7a{bottom:981.724500px;}
.y5a{bottom:986.038500px;}
.y3{bottom:994.449000px;}
.yba{bottom:995.121000px;}
.y59{bottom:997.263000px;}
.y57{bottom:998.820000px;}
.y55{bottom:1009.456500px;}
.y106{bottom:1009.878000px;}
.y30{bottom:1016.454000px;}
.ydd{bottom:1016.752500px;}
.y9d{bottom:1019.509500px;}
.y56{bottom:1028.275500px;}
.y58{bottom:1028.307000px;}
.y79{bottom:1029.730500px;}
.y105{bottom:1030.201500px;}
.y2f{bottom:1036.777500px;}
.ydc{bottom:1037.076000px;}
.y2{bottom:1039.915500px;}
.y9c{bottom:1043.898000px;}
.y54{bottom:1050.054000px;}
.y2e{bottom:1057.101000px;}
.y104{bottom:1063.975500px;}
.y9b{bottom:1068.286500px;}
.y53{bottom:1070.379000px;}
.ydb{bottom:1070.850000px;}
.y1{bottom:1072.792500px;}
.y2d{bottom:1077.424500px;}
.y103{bottom:1084.299000px;}
.y2c{bottom:1097.748000px;}
.y9a{bottom:1100.890500px;}
.y52{bottom:1101.270000px;}
.yda{bottom:1104.622500px;}
.y2b{bottom:1118.073000px;}
.y99{bottom:1128.526500px;}
.yd9{bottom:1133.547000px;}
.y2a{bottom:1138.396500px;}
.hc{height:2.618184px;}
.h13{height:33.665702px;}
.h5{height:41.842920px;}
.h4{height:44.831700px;}
.h10{height:45.818220px;}
.h8{height:49.090950px;}
.h7{height:50.211840px;}
.h3{height:50.498765px;}
.ha{height:57.413702px;}
.h9{height:57.419702px;}
.h6{height:60.254040px;}
.h16{height:65.632950px;}
.h15{height:68.488950px;}
.h2{height:71.684926px;}
.h14{height:76.817702px;}
.h12{height:77.345702px;}
.hf{height:90.814950px;}
.hd{height:94.910184px;}
.h11{height:103.240950px;}
.hb{height:136.802184px;}
.he{height:139.808184px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x24{left:116.182500px;}
.xb{left:127.999500px;}
.xc{left:133.405500px;}
.x25{left:141.636000px;}
.x8{left:148.909500px;}
.x7{left:171.325500px;}
.x4{left:174.570000px;}
.x1e{left:178.501500px;}
.x2{left:188.269500px;}
.x16{left:190.047000px;}
.x15{left:194.437500px;}
.x21{left:196.603500px;}
.x22{left:211.110000px;}
.x17{left:219.700500px;}
.x1f{left:241.297500px;}
.x1{left:258.492000px;}
.x14{left:259.660500px;}
.xd{left:272.500500px;}
.x26{left:279.865500px;}
.x20{left:282.397500px;}
.x1d{left:301.548000px;}
.xe{left:337.825500px;}
.xf{left:352.371000px;}
.x3{left:359.838000px;}
.x5{left:373.905000px;}
.x13{left:395.560500px;}
.x12{left:396.976500px;}
.x23{left:406.683000px;}
.x6{left:413.578500px;}
.xa{left:442.366500px;}
.x10{left:444.960000px;}
.x1b{left:499.045500px;}
.x18{left:514.222500px;}
.x1c{left:561.190500px;}
.x19{left:564.012000px;}
.x1a{left:629.749500px;}
.x11{left:764.004000px;}
@media print{
.vc{vertical-align:-82.037333pt;}
.v5{vertical-align:-21.114667pt;}
.v8{vertical-align:-13.973333pt;}
.v2{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.477333pt;}
.v12{vertical-align:14.704000pt;}
.v10{vertical-align:17.712000pt;}
.v6{vertical-align:21.109333pt;}
.ve{vertical-align:27.610667pt;}
.v4{vertical-align:30.592000pt;}
.vd{vertical-align:37.088000pt;}
.v11{vertical-align:38.357333pt;}
.va{vertical-align:39.360000pt;}
.vf{vertical-align:48.133333pt;}
.v9{vertical-align:82.037333pt;}
.v7{vertical-align:119.274667pt;}
.vb{vertical-align:131.429333pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000544pt;}
.ls3e{letter-spacing:0.001409pt;}
.ls2d{letter-spacing:0.002384pt;}
.ls15{letter-spacing:0.003735pt;}
.ls33{letter-spacing:0.007658pt;}
.ls45{letter-spacing:0.007865pt;}
.ls0{letter-spacing:0.007880pt;}
.ls37{letter-spacing:0.012018pt;}
.ls43{letter-spacing:0.012313pt;}
.ls42{letter-spacing:0.012478pt;}
.ls27{letter-spacing:0.013015pt;}
.ls17{letter-spacing:0.014140pt;}
.ls39{letter-spacing:0.015594pt;}
.ls30{letter-spacing:0.018259pt;}
.ls13{letter-spacing:0.019264pt;}
.ls4d{letter-spacing:0.023496pt;}
.ls4b{letter-spacing:0.023752pt;}
.ls3{letter-spacing:0.025727pt;}
.ls4{letter-spacing:0.025760pt;}
.lsd{letter-spacing:0.025791pt;}
.ls1e{letter-spacing:0.027501pt;}
.ls52{letter-spacing:0.058182pt;}
.ls1b{letter-spacing:0.174546pt;}
.lsa{letter-spacing:0.232727pt;}
.ls29{letter-spacing:0.407273pt;}
.ls50{letter-spacing:0.465455pt;}
.ls2a{letter-spacing:1.629092pt;}
.ls51{letter-spacing:2.152729pt;}
.ls24{letter-spacing:2.650641pt;}
.ls31{letter-spacing:2.653258pt;}
.ls38{letter-spacing:2.653383pt;}
.ls49{letter-spacing:2.657146pt;}
.ls35{letter-spacing:2.658591pt;}
.lse{letter-spacing:2.658717pt;}
.ls32{letter-spacing:4.750730pt;}
.ls4f{letter-spacing:6.225460pt;}
.ls28{letter-spacing:6.283642pt;}
.ls25{letter-spacing:9.694524pt;}
.ls2e{letter-spacing:9.716372pt;}
.ls21{letter-spacing:9.949099pt;}
.ls48{letter-spacing:11.520010pt;}
.ls7{letter-spacing:12.160010pt;}
.ls8{letter-spacing:12.218192pt;}
.ls18{letter-spacing:12.800011pt;}
.ls19{letter-spacing:12.858193pt;}
.ls20{letter-spacing:12.916374pt;}
.ls2{letter-spacing:15.515089pt;}
.ls14{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.lsb{letter-spacing:16.349105pt;}
.ls1d{letter-spacing:16.407286pt;}
.lsf{letter-spacing:17.512742pt;}
.ls3b{letter-spacing:17.803651pt;}
.ls47{letter-spacing:18.210924pt;}
.ls55{letter-spacing:18.501834pt;}
.ls5{letter-spacing:18.560015pt;}
.ls9{letter-spacing:18.698641pt;}
.ls4c{letter-spacing:18.822479pt;}
.ls11{letter-spacing:20.014562pt;}
.ls40{letter-spacing:20.247290pt;}
.ls56{letter-spacing:21.426591pt;}
.lsc{letter-spacing:21.701836pt;}
.ls1a{letter-spacing:22.005308pt;}
.ls34{letter-spacing:22.048853pt;}
.ls53{letter-spacing:22.341837pt;}
.ls54{letter-spacing:22.400019pt;}
.ls26{letter-spacing:23.156383pt;}
.ls16{letter-spacing:23.214565pt;}
.ls12{letter-spacing:23.738202pt;}
.ls57{letter-spacing:24.261838pt;}
.ls1{letter-spacing:24.388445pt;}
.ls1f{letter-spacing:25.600021pt;}
.ls3d{letter-spacing:25.832749pt;}
.ls3c{letter-spacing:25.890931pt;}
.ls3f{letter-spacing:26.589113pt;}
.ls3a{letter-spacing:27.810932pt;}
.ls41{letter-spacing:29.090933pt;}
.ls1c{letter-spacing:29.323661pt;}
.ls23{letter-spacing:58.180328pt;}
.ls36{letter-spacing:71.040059pt;}
.ls22{letter-spacing:78.606995pt;}
.ls46{letter-spacing:150.923762pt;}
.ls44{letter-spacing:173.556508pt;}
.ls4a{letter-spacing:354.327568pt;}
.ls2b{letter-spacing:358.942383pt;}
.ls2f{letter-spacing:398.674591pt;}
.ls2c{letter-spacing:442.311925pt;}
.ws5c{word-spacing:-54.074227pt;}
.ws1a{word-spacing:-37.899668pt;}
.ws6e{word-spacing:-28.241478pt;}
.wsb3{word-spacing:-23.910333pt;}
.ws81{word-spacing:-21.783291pt;}
.ws68{word-spacing:-21.725109pt;}
.wsc5{word-spacing:-18.583288pt;}
.ws24{word-spacing:-16.162923pt;}
.ws58{word-spacing:-12.543875pt;}
.ws5b{word-spacing:-3.531814pt;}
.ws8f{word-spacing:-3.246548pt;}
.wsb6{word-spacing:-3.013821pt;}
.ws39{word-spacing:-2.839275pt;}
.ws6b{word-spacing:-2.606548pt;}
.wsb5{word-spacing:-2.024729pt;}
.ws4b{word-spacing:-1.559274pt;}
.ws48{word-spacing:-1.361456pt;}
.ws31{word-spacing:-1.210183pt;}
.ws49{word-spacing:-1.152001pt;}
.wsc1{word-spacing:-1.093819pt;}
.wsbc{word-spacing:-0.977455pt;}
.wsba{word-spacing:-0.919273pt;}
.ws12{word-spacing:-0.786381pt;}
.ws44{word-spacing:-0.663273pt;}
.ws45{word-spacing:-0.570182pt;}
.ws87{word-spacing:-0.512000pt;}
.wsbd{word-spacing:-0.453819pt;}
.wsaa{word-spacing:-0.395637pt;}
.ws5a{word-spacing:-0.197359pt;}
.wsc7{word-spacing:-0.162909pt;}
.wsd{word-spacing:-0.148775pt;}
.ws26{word-spacing:-0.104727pt;}
.ws51{word-spacing:-0.046545pt;}
.ws59{word-spacing:-0.013218pt;}
.ws30{word-spacing:0.000000pt;}
.ws23{word-spacing:0.011636pt;}
.ws86{word-spacing:0.244364pt;}
.ws42{word-spacing:0.360728pt;}
.ws41{word-spacing:0.384000pt;}
.wsa3{word-spacing:0.709819pt;}
.wsb{word-spacing:0.754501pt;}
.ws11{word-spacing:0.807635pt;}
.ws9a{word-spacing:0.849455pt;}
.wsad{word-spacing:1.000728pt;}
.wsbe{word-spacing:1.058910pt;}
.ws98{word-spacing:1.175274pt;}
.ws2b{word-spacing:1.233456pt;}
.ws3f{word-spacing:1.291637pt;}
.ws57{word-spacing:1.349819pt;}
.wsa0{word-spacing:1.373092pt;}
.ws2f{word-spacing:1.466183pt;}
.wsc9{word-spacing:1.582547pt;}
.ws65{word-spacing:1.931638pt;}
.ws17{word-spacing:1.989820pt;}
.ws91{word-spacing:2.106184pt;}
.ws67{word-spacing:2.164365pt;}
.ws64{word-spacing:2.187638pt;}
.wsa6{word-spacing:2.571639pt;}
.ws6a{word-spacing:2.629820pt;}
.ws75{word-spacing:2.746184pt;}
.ws21{word-spacing:2.862548pt;}
.ws2{word-spacing:2.932989pt;}
.ws4c{word-spacing:3.153457pt;}
.ws1e{word-spacing:3.211639pt;}
.ws43{word-spacing:3.269821pt;}
.wsab{word-spacing:3.328003pt;}
.wsa{word-spacing:3.411194pt;}
.wsc8{word-spacing:3.560730pt;}
.wsb0{word-spacing:3.677094pt;}
.ws6c{word-spacing:3.700367pt;}
.ws18{word-spacing:3.735276pt;}
.ws80{word-spacing:3.758549pt;}
.ws33{word-spacing:3.793458pt;}
.ws2c{word-spacing:3.909821pt;}
.ws2a{word-spacing:3.968003pt;}
.ws15{word-spacing:3.985067pt;}
.ws20{word-spacing:4.026185pt;}
.ws7f{word-spacing:4.200731pt;}
.ws92{word-spacing:4.258913pt;}
.wsa5{word-spacing:4.317095pt;}
.ws2e{word-spacing:4.375276pt;}
.ws6{word-spacing:4.420738pt;}
.ws99{word-spacing:4.433458pt;}
.wsa8{word-spacing:4.491640pt;}
.ws1c{word-spacing:4.608004pt;}
.ws19{word-spacing:4.666186pt;}
.ws9b{word-spacing:4.689458pt;}
.ws38{word-spacing:4.724368pt;}
.ws56{word-spacing:4.782067pt;}
.ws7d{word-spacing:4.805822pt;}
.wsc3{word-spacing:4.898913pt;}
.wsaf{word-spacing:5.073459pt;}
.ws66{word-spacing:5.131641pt;}
.wsb2{word-spacing:5.189823pt;}
.ws28{word-spacing:5.306186pt;}
.ws90{word-spacing:5.364368pt;}
.ws97{word-spacing:5.422550pt;}
.ws85{word-spacing:5.655277pt;}
.ws83{word-spacing:5.713459pt;}
.ws3{word-spacing:5.749084pt;}
.ws52{word-spacing:5.829823pt;}
.wsc{word-spacing:6.161244pt;}
.wse{word-spacing:6.174155pt;}
.ws35{word-spacing:6.237096pt;}
.ws22{word-spacing:6.254852pt;}
.ws9e{word-spacing:6.275562pt;}
.ws1f{word-spacing:6.275596pt;}
.ws89{word-spacing:6.277897pt;}
.ws4d{word-spacing:6.292026pt;}
.ws37{word-spacing:6.295278pt;}
.ws27{word-spacing:6.411642pt;}
.ws82{word-spacing:6.551278pt;}
.ws16{word-spacing:6.760733pt;}
.ws9c{word-spacing:6.935279pt;}
.ws61{word-spacing:6.993460pt;}
.ws5f{word-spacing:7.051642pt;}
.ws96{word-spacing:7.139596pt;}
.ws3c{word-spacing:7.168006pt;}
.ws5e{word-spacing:7.400733pt;}
.ws13{word-spacing:7.449368pt;}
.ws46{word-spacing:7.458915pt;}
.ws95{word-spacing:7.575279pt;}
.ws34{word-spacing:7.749825pt;}
.ws7e{word-spacing:7.891596pt;}
.wsb7{word-spacing:7.924370pt;}
.ws9{word-spacing:7.927573pt;}
.wsa9{word-spacing:8.098916pt;}
.wsa1{word-spacing:8.448007pt;}
.ws2d{word-spacing:8.564371pt;}
.ws1d{word-spacing:8.648930pt;}
.ws94{word-spacing:8.680735pt;}
.ws4{word-spacing:8.724581pt;}
.ws53{word-spacing:8.855280pt;}
.wsa7{word-spacing:8.879975pt;}
.ws55{word-spacing:8.913462pt;}
.ws10{word-spacing:8.990250pt;}
.ws7{word-spacing:9.043384pt;}
.wsac{word-spacing:9.088008pt;}
.ws25{word-spacing:9.135975pt;}
.ws93{word-spacing:9.262553pt;}
.ws3a{word-spacing:9.378917pt;}
.ws4e{word-spacing:9.461308pt;}
.ws5d{word-spacing:9.503975pt;}
.ws8b{word-spacing:9.506616pt;}
.ws8d{word-spacing:9.506747pt;}
.ws8e{word-spacing:9.508216pt;}
.ws62{word-spacing:9.553463pt;}
.wsf{word-spacing:9.680991pt;}
.ws3b{word-spacing:9.728008pt;}
.wsc4{word-spacing:9.844372pt;}
.wsa4{word-spacing:10.251645pt;}
.wsae{word-spacing:10.542554pt;}
.ws3d{word-spacing:10.775282pt;}
.wsb8{word-spacing:10.833464pt;}
.ws1b{word-spacing:10.931596pt;}
.ws4f{word-spacing:10.949827pt;}
.ws4a{word-spacing:11.008009pt;}
.ws63{word-spacing:11.031282pt;}
.wsb1{word-spacing:11.240737pt;}
.ws36{word-spacing:11.336930pt;}
.wsc6{word-spacing:11.531646pt;}
.ws84{word-spacing:11.952804pt;}
.wsa2{word-spacing:12.520738pt;}
.ws3e{word-spacing:12.637101pt;}
.wsb4{word-spacing:12.753465pt;}
.ws40{word-spacing:12.928011pt;}
.ws50{word-spacing:12.986193pt;}
.ws60{word-spacing:13.288930pt;}
.ws47{word-spacing:13.331596pt;}
.ws5{word-spacing:15.041244pt;}
.wsbb{word-spacing:15.185467pt;}
.ws54{word-spacing:15.699596pt;}
.wsc0{word-spacing:17.338196pt;}
.ws9f{word-spacing:19.240895pt;}
.ws29{word-spacing:19.269834pt;}
.wsc2{word-spacing:20.712745pt;}
.ws1{word-spacing:20.722347pt;}
.ws32{word-spacing:21.294563pt;}
.wsbf{word-spacing:23.040019pt;}
.ws8{word-spacing:23.538303pt;}
.wsb9{word-spacing:26.763659pt;}
.ws0{word-spacing:27.636455pt;}
.ws8a{word-spacing:45.184038pt;}
.ws8c{word-spacing:47.604403pt;}
.ws88{word-spacing:47.678229pt;}
.ws9d{word-spacing:51.805867pt;}
.ws14{word-spacing:62.166867pt;}
.ws79{word-spacing:66.513510pt;}
.ws7a{word-spacing:77.706641pt;}
.ws7b{word-spacing:85.771708pt;}
.ws77{word-spacing:87.784930pt;}
.ws7c{word-spacing:119.226281pt;}
.ws78{word-spacing:144.488930pt;}
.ws6d{word-spacing:258.013233pt;}
.ws72{word-spacing:276.843230pt;}
.ws70{word-spacing:286.994566pt;}
.ws74{word-spacing:331.357367pt;}
.ws6f{word-spacing:399.837424pt;}
.ws71{word-spacing:401.350153pt;}
.ws76{word-spacing:467.293480pt;}
.ws73{word-spacing:525.568438pt;}
.ws69{word-spacing:802.048668pt;}
._43{margin-left:-38.400032pt;}
._1e{margin-left:-15.981565pt;}
._1{margin-left:-7.253422pt;}
._17{margin-left:-5.758259pt;}
._5{margin-left:-4.045818pt;}
._0{margin-left:-2.387202pt;}
._3{margin-left:-1.434614pt;}
._2{width:1.487748pt;}
._4{width:2.387202pt;}
._9{width:4.038174pt;}
._2a{width:6.948622pt;}
._4f{width:12.219938pt;}
._4e{width:14.578668pt;}
._1a{width:15.535474pt;}
._d{width:16.467677pt;}
._20{width:17.574415pt;}
._1b{width:18.533102pt;}
._4c{width:19.550853pt;}
._14{width:20.481763pt;}
._b{width:21.838019pt;}
._12{width:23.507220pt;}
._6{width:24.972917pt;}
._11{width:26.504018pt;}
._10{width:27.523514pt;}
._16{width:28.825004pt;}
._3d{width:29.762203pt;}
._18{width:31.218495pt;}
._49{width:32.510525pt;}
._a{width:33.580604pt;}
._15{width:34.967302pt;}
._13{width:35.899567pt;}
._e{width:37.034305pt;}
._19{width:38.552713pt;}
._7{width:40.913077pt;}
._8{width:41.816353pt;}
._c{width:43.471147pt;}
._4a{width:46.952766pt;}
._4b{width:48.239561pt;}
._4d{width:49.920042pt;}
._21{width:58.511322pt;}
._23{width:63.767326pt;}
._f{width:71.731200pt;}
._1c{width:86.077200pt;}
._31{width:89.483711pt;}
._39{width:91.229167pt;}
._2e{width:92.133164pt;}
._3c{width:105.018269pt;}
._32{width:115.205144pt;}
._36{width:118.691008pt;}
._2b{width:137.798680pt;}
._44{width:144.116484pt;}
._2f{width:147.200123pt;}
._34{width:152.552854pt;}
._30{width:160.349225pt;}
._3a{width:163.316500pt;}
._29{width:171.314141pt;}
._3f{width:172.722651pt;}
._40{width:175.011055pt;}
._3b{width:190.138340pt;}
._2c{width:195.260090pt;}
._46{width:224.841459pt;}
._45{width:226.096479pt;}
._38{width:244.596567pt;}
._37{width:251.112937pt;}
._41{width:254.314685pt;}
._3e{width:265.074839pt;}
._48{width:286.951221pt;}
._33{width:317.323901pt;}
._35{width:335.883916pt;}
._42{width:340.194422pt;}
._22{width:362.853389pt;}
._47{width:397.558441pt;}
._2d{width:400.409352pt;}
._26{width:402.212990pt;}
._27{width:414.027211pt;}
._28{width:416.555252pt;}
._25{width:449.164011pt;}
._24{width:500.073144pt;}
._1d{width:582.051394pt;}
._1f{width:948.344791pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:56.149333pt;}
.y98{bottom:96.000000pt;}
.y102{bottom:96.894667pt;}
.y129{bottom:98.001333pt;}
.y28{bottom:106.112000pt;}
.y128{bottom:116.066667pt;}
.yb9{bottom:117.418667pt;}
.y27{bottom:124.177333pt;}
.yd8{bottom:124.920000pt;}
.y97{bottom:125.732000pt;}
.y101{bottom:126.914667pt;}
.yb8{bottom:135.484000pt;}
.y26{bottom:142.244000pt;}
.yd7{bottom:142.985333pt;}
.y127{bottom:146.088000pt;}
.y96{bottom:151.153333pt;}
.yb7{bottom:153.549333pt;}
.y95{bottom:155.464000pt;}
.y100{bottom:159.384000pt;}
.y126{bottom:164.153333pt;}
.y51{bottom:168.693333pt;}
.y78{bottom:168.922667pt;}
.y25{bottom:169.702667pt;}
.yd6{bottom:170.444000pt;}
.yb6{bottom:171.614667pt;}
.y125{bottom:182.218667pt;}
.y94{bottom:184.762667pt;}
.y50{bottom:186.758667pt;}
.y77{bottom:190.601333pt;}
.yb5{bottom:199.074667pt;}
.y93{bottom:202.828000pt;}
.y4f{bottom:204.824000pt;}
.yff{bottom:205.214667pt;}
.y24{bottom:208.653333pt;}
.yd5{bottom:209.186667pt;}
.y124{bottom:212.240000pt;}
.y76{bottom:212.280000pt;}
.y92{bottom:220.894667pt;}
.y4e{bottom:222.889333pt;}
.yfe{bottom:223.280000pt;}
.y23{bottom:226.718667pt;}
.yd4{bottom:227.253333pt;}
.y123{bottom:230.305333pt;}
.y75{bottom:233.958667pt;}
.yb4{bottom:238.025333pt;}
.y4d{bottom:240.956000pt;}
.yfd{bottom:241.345333pt;}
.y22{bottom:244.784000pt;}
.yd3{bottom:245.318667pt;}
.y91{bottom:248.353333pt;}
.y74{bottom:255.637333pt;}
.yb3{bottom:256.090667pt;}
.y4c{bottom:259.021333pt;}
.y122{bottom:260.326667pt;}
.y21{bottom:262.850667pt;}
.yfc{bottom:273.814667pt;}
.yb2{bottom:274.156000pt;}
.yd2{bottom:274.237333pt;}
.y4b{bottom:277.086667pt;}
.y73{bottom:277.314667pt;}
.y121{bottom:278.392000pt;}
.y20{bottom:280.916000pt;}
.y90{bottom:281.354667pt;}
.yb1{bottom:292.221333pt;}
.yd1{bottom:292.304000pt;}
.y4a{bottom:295.152000pt;}
.y1f{bottom:298.981333pt;}
.y72{bottom:298.993333pt;}
.y120{bottom:308.412000pt;}
.yb0{bottom:310.288000pt;}
.y1e{bottom:317.046667pt;}
.yfb{bottom:319.644000pt;}
.y71{bottom:320.672000pt;}
.yd0{bottom:321.884000pt;}
.y49{bottom:322.612000pt;}
.y11f{bottom:326.478667pt;}
.y8f{bottom:327.048000pt;}
.y1d{bottom:335.112000pt;}
.yfa{bottom:337.709333pt;}
.yaf{bottom:337.746667pt;}
.y70{bottom:342.350667pt;}
.y11e{bottom:344.544000pt;}
.ycf{bottom:350.802667pt;}
.y1c{bottom:353.178667pt;}
.yf9{bottom:355.776000pt;}
.y8e{bottom:356.346667pt;}
.y48{bottom:361.561333pt;}
.y1b{bottom:371.244000pt;}
.y6f{bottom:371.333333pt;}
.yf8{bottom:373.841333pt;}
.y11d{bottom:374.564000pt;}
.yae{bottom:376.165333pt;}
.yce{bottom:378.262667pt;}
.y47{bottom:379.628000pt;}
.y8d{bottom:386.078667pt;}
.y1a{bottom:389.309333pt;}
.yf7{bottom:391.906667pt;}
.y11c{bottom:392.630667pt;}
.yad{bottom:394.232000pt;}
.y6e{bottom:395.898667pt;}
.y46{bottom:397.693333pt;}
.y19{bottom:407.374667pt;}
.yf6{bottom:409.972000pt;}
.y8c{bottom:415.810667pt;}
.ycd{bottom:417.005333pt;}
.y11b{bottom:422.650667pt;}
.y18{bottom:425.440000pt;}
.y45{bottom:427.713333pt;}
.yf5{bottom:428.037333pt;}
.yac{bottom:435.581333pt;}
.y6d{bottom:438.052000pt;}
.y11a{bottom:440.716000pt;}
.y8b{bottom:445.542667pt;}
.y44{bottom:445.780000pt;}
.yf4{bottom:446.104000pt;}
.ycc{bottom:446.585333pt;}
.y17{bottom:452.900000pt;}
.y6c{bottom:456.117333pt;}
.yab{bottom:457.260000pt;}
.y119{bottom:458.781333pt;}
.yf3{bottom:464.169333pt;}
.y8a{bottom:474.841333pt;}
.y43{bottom:475.800000pt;}
.ycb{bottom:476.165333pt;}
.yf2{bottom:482.234667pt;}
.y16{bottom:485.901333pt;}
.yaa{bottom:486.241333pt;}
.y6b{bottom:488.794667pt;}
.y118{bottom:488.802667pt;}
.y89{bottom:492.908000pt;}
.y42{bottom:493.865333pt;}
.yf1{bottom:500.300000pt;}
.yca{bottom:505.085333pt;}
.y117{bottom:506.868000pt;}
.ya9{bottom:510.808000pt;}
.y41{bottom:511.932000pt;}
.yf0{bottom:518.365333pt;}
.y88{bottom:520.366667pt;}
.y6a{bottom:521.472000pt;}
.yc9{bottom:523.150667pt;}
.y116{bottom:524.933333pt;}
.y15{bottom:531.730667pt;}
.yef{bottom:536.432000pt;}
.yc8{bottom:541.216000pt;}
.y40{bottom:541.952000pt;}
.y14{bottom:547.670667pt;}
.y69{bottom:548.932000pt;}
.ya8{bottom:552.960000pt;}
.yee{bottom:554.497333pt;}
.y115{bottom:554.954667pt;}
.y87{bottom:559.181333pt;}
.yc7{bottom:559.281333pt;}
.y3f{bottom:560.017333pt;}
.y13{bottom:563.610667pt;}
.yed{bottom:572.562667pt;}
.y114{bottom:573.020000pt;}
.y86{bottom:577.246667pt;}
.y12{bottom:579.550667pt;}
.ya7{bottom:580.420000pt;}
.yc6{bottom:586.741333pt;}
.y68{bottom:587.882667pt;}
.y3e{bottom:590.038667pt;}
.yec{bottom:590.628000pt;}
.y11{bottom:595.490667pt;}
.y113{bottom:603.041333pt;}
.y67{bottom:605.948000pt;}
.y85{bottom:606.978667pt;}
.yeb{bottom:608.693333pt;}
.y10{bottom:611.432000pt;}
.ya6{bottom:613.421333pt;}
.y3d{bottom:617.498667pt;}
.y112{bottom:621.106667pt;}
.y66{bottom:624.013333pt;}
.yc5{bottom:625.484000pt;}
.yea{bottom:626.760000pt;}
.yf{bottom:627.372000pt;}
.y84{bottom:636.710667pt;}
.y111{bottom:639.172000pt;}
.y65{bottom:642.078667pt;}
.ye{bottom:643.312000pt;}
.yc4{bottom:643.549333pt;}
.ye9{bottom:644.825333pt;}
.y3c{bottom:656.448000pt;}
.ya5{bottom:659.250667pt;}
.yd{bottom:659.252000pt;}
.y64{bottom:660.144000pt;}
.yc3{bottom:661.614667pt;}
.ye8{bottom:662.890667pt;}
.y83{bottom:666.442667pt;}
.y110{bottom:669.193333pt;}
.y3b{bottom:674.514667pt;}
.yc{bottom:675.192000pt;}
.ya4{bottom:677.316000pt;}
.y63{bottom:678.210667pt;}
.yc2{bottom:679.680000pt;}
.ye7{bottom:680.956000pt;}
.y82{bottom:684.508000pt;}
.y10f{bottom:687.258667pt;}
.yb{bottom:691.132000pt;}
.y3a{bottom:692.580000pt;}
.y62{bottom:696.276000pt;}
.yc1{bottom:697.746667pt;}
.ye6{bottom:699.021333pt;}
.y10e{bottom:705.324000pt;}
.ya{bottom:707.073333pt;}
.ya3{bottom:707.337333pt;}
.y39{bottom:710.645333pt;}
.y81{bottom:713.808000pt;}
.yc0{bottom:715.812000pt;}
.ye5{bottom:717.088000pt;}
.y9{bottom:723.013333pt;}
.y61{bottom:723.734667pt;}
.y38{bottom:728.710667pt;}
.ybf{bottom:733.877333pt;}
.ye4{bottom:735.153333pt;}
.y10d{bottom:735.345333pt;}
.ya2{bottom:737.357333pt;}
.y8{bottom:738.953333pt;}
.y37{bottom:746.776000pt;}
.ybe{bottom:751.942667pt;}
.ye3{bottom:753.218667pt;}
.y10c{bottom:753.410667pt;}
.y80{bottom:754.060000pt;}
.y7{bottom:754.893333pt;}
.y60{bottom:762.685333pt;}
.y36{bottom:764.842667pt;}
.ya1{bottom:767.378667pt;}
.ye2{bottom:771.284000pt;}
.y7f{bottom:775.738667pt;}
.y6{bottom:779.136000pt;}
.ybd{bottom:779.402667pt;}
.y5f{bottom:780.750667pt;}
.y35{bottom:782.908000pt;}
.y10b{bottom:783.430667pt;}
.ye1{bottom:789.349333pt;}
.ya0{bottom:797.398667pt;}
.y7e{bottom:797.417333pt;}
.y34{bottom:800.973333pt;}
.y10a{bottom:801.497333pt;}
.y5e{bottom:805.144000pt;}
.ye0{bottom:807.416000pt;}
.ybc{bottom:812.402667pt;}
.y5d{bottom:814.416000pt;}
.y33{bottom:819.038667pt;}
.y7d{bottom:819.096000pt;}
.ydf{bottom:825.481333pt;}
.y9f{bottom:827.420000pt;}
.y109{bottom:831.517333pt;}
.y5c{bottom:832.482667pt;}
.y5{bottom:832.834667pt;}
.y32{bottom:837.104000pt;}
.y7c{bottom:843.649333pt;}
.y7b{bottom:848.077333pt;}
.y108{bottom:849.582667pt;}
.y5b{bottom:850.548000pt;}
.y9e{bottom:854.878667pt;}
.yde{bottom:857.950667pt;}
.ybb{bottom:862.873333pt;}
.y31{bottom:864.564000pt;}
.y4{bottom:865.357333pt;}
.y107{bottom:867.649333pt;}
.y7a{bottom:872.644000pt;}
.y5a{bottom:876.478667pt;}
.y3{bottom:883.954667pt;}
.yba{bottom:884.552000pt;}
.y59{bottom:886.456000pt;}
.y57{bottom:887.840000pt;}
.y55{bottom:897.294667pt;}
.y106{bottom:897.669333pt;}
.y30{bottom:903.514667pt;}
.ydd{bottom:903.780000pt;}
.y9d{bottom:906.230667pt;}
.y56{bottom:914.022667pt;}
.y58{bottom:914.050667pt;}
.y79{bottom:915.316000pt;}
.y105{bottom:915.734667pt;}
.y2f{bottom:921.580000pt;}
.ydc{bottom:921.845333pt;}
.y2{bottom:924.369333pt;}
.y9c{bottom:927.909333pt;}
.y54{bottom:933.381333pt;}
.y2e{bottom:939.645333pt;}
.y104{bottom:945.756000pt;}
.y9b{bottom:949.588000pt;}
.y53{bottom:951.448000pt;}
.ydb{bottom:951.866667pt;}
.y1{bottom:953.593333pt;}
.y2d{bottom:957.710667pt;}
.y103{bottom:963.821333pt;}
.y2c{bottom:975.776000pt;}
.y9a{bottom:978.569333pt;}
.y52{bottom:978.906667pt;}
.yda{bottom:981.886667pt;}
.y2b{bottom:993.842667pt;}
.y99{bottom:1003.134667pt;}
.yd9{bottom:1007.597333pt;}
.y2a{bottom:1011.908000pt;}
.hc{height:2.327275pt;}
.h13{height:29.925069pt;}
.h5{height:37.193707pt;}
.h4{height:39.850400pt;}
.h10{height:40.727307pt;}
.h8{height:43.636400pt;}
.h7{height:44.632747pt;}
.h3{height:44.887791pt;}
.ha{height:51.034402pt;}
.h9{height:51.039735pt;}
.h6{height:53.559147pt;}
.h16{height:58.340400pt;}
.h15{height:60.879067pt;}
.h2{height:63.719934pt;}
.h14{height:68.282402pt;}
.h12{height:68.751735pt;}
.hf{height:80.724400pt;}
.hd{height:84.364608pt;}
.h11{height:91.769733pt;}
.hb{height:121.601941pt;}
.he{height:124.273941pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x24{left:103.273333pt;}
.xb{left:113.777333pt;}
.xc{left:118.582667pt;}
.x25{left:125.898667pt;}
.x8{left:132.364000pt;}
.x7{left:152.289333pt;}
.x4{left:155.173333pt;}
.x1e{left:158.668000pt;}
.x2{left:167.350667pt;}
.x16{left:168.930667pt;}
.x15{left:172.833333pt;}
.x21{left:174.758667pt;}
.x22{left:187.653333pt;}
.x17{left:195.289333pt;}
.x1f{left:214.486667pt;}
.x1{left:229.770667pt;}
.x14{left:230.809333pt;}
.xd{left:242.222667pt;}
.x26{left:248.769333pt;}
.x20{left:251.020000pt;}
.x1d{left:268.042667pt;}
.xe{left:300.289333pt;}
.xf{left:313.218667pt;}
.x3{left:319.856000pt;}
.x5{left:332.360000pt;}
.x13{left:351.609333pt;}
.x12{left:352.868000pt;}
.x23{left:361.496000pt;}
.x6{left:367.625333pt;}
.xa{left:393.214667pt;}
.x10{left:395.520000pt;}
.x1b{left:443.596000pt;}
.x18{left:457.086667pt;}
.x1c{left:498.836000pt;}
.x19{left:501.344000pt;}
.x1a{left:559.777333pt;}
.x11{left:679.114667pt;}
}




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