
    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_42c2077ea95bdfb9cd4e630b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.365723;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_93ae73e0834a321229b2c847.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_0fa063278ca13da5b053c756.woff')format("woff");}.ff3{font-family:ff3;line-height:1.365723;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_e5cc9d2a57929be08755ef1a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_8bbb5523879839adddfd142f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.295898;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_f09a349fcd9d508c26726b62.woff')format("woff");}.ff8{font-family:ff8;line-height:1.295898;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_30e33895d22181f94ed9be2a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls5d{letter-spacing:-20.220000px;}
.ls67{letter-spacing:-1.872000px;}
.ls65{letter-spacing:-1.440000px;}
.ls63{letter-spacing:-1.224000px;}
.ls61{letter-spacing:-1.152000px;}
.ls70{letter-spacing:-1.008000px;}
.ls64{letter-spacing:-0.822000px;}
.ls4a{letter-spacing:-0.720000px;}
.ls53{letter-spacing:-0.654000px;}
.ls48{letter-spacing:-0.576000px;}
.ls49{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls69{letter-spacing:-0.363000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.325200px;}
.ls1d{letter-spacing:-0.297600px;}
.ls52{letter-spacing:-0.295200px;}
.ls47{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.285600px;}
.ls11{letter-spacing:-0.256800px;}
.ls51{letter-spacing:-0.240600px;}
.ls50{letter-spacing:-0.232800px;}
.ls4c{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.207600px;}
.ls13{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.072000px;}
.ls4b{letter-spacing:-0.000003px;}
.lsa{letter-spacing:0.000000px;}
.ls7e{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.015840px;}
.ls5{letter-spacing:0.063360px;}
.lsb{letter-spacing:0.063600px;}
.ls24{letter-spacing:0.072000px;}
.ls59{letter-spacing:0.097800px;}
.ls9{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.154800px;}
.ls4e{letter-spacing:0.172200px;}
.ls10{letter-spacing:0.178800px;}
.ls7b{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.205800px;}
.ls86{letter-spacing:0.211800px;}
.ls17{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.264000px;}
.ls7d{letter-spacing:0.265200px;}
.ls1e{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.298800px;}
.ls68{letter-spacing:0.359280px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.360720px;}
.ls1c{letter-spacing:0.379200px;}
.ls81{letter-spacing:0.408000px;}
.ls58{letter-spacing:0.432000px;}
.ls4d{letter-spacing:0.479400px;}
.ls40{letter-spacing:0.648000px;}
.ls5b{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.783360px;}
.lsc{letter-spacing:0.786000px;}
.ls62{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.828000px;}
.ls5a{letter-spacing:0.846000px;}
.ls66{letter-spacing:0.864000px;}
.ls3e{letter-spacing:0.936000px;}
.ls3f{letter-spacing:1.116000px;}
.ls30{letter-spacing:1.368000px;}
.ls5c{letter-spacing:1.584000px;}
.ls2d{letter-spacing:1.632000px;}
.ls2e{letter-spacing:1.656000px;}
.ls2f{letter-spacing:1.776000px;}
.ls83{letter-spacing:2.016720px;}
.ls41{letter-spacing:2.088000px;}
.ls4f{letter-spacing:2.148000px;}
.ls57{letter-spacing:2.376000px;}
.ls26{letter-spacing:2.808000px;}
.ls29{letter-spacing:3.072000px;}
.ls2a{letter-spacing:3.096000px;}
.ls27{letter-spacing:3.528000px;}
.ls36{letter-spacing:3.816000px;}
.ls8{letter-spacing:3.959280px;}
.ls75{letter-spacing:4.248000px;}
.ls35{letter-spacing:4.536000px;}
.ls60{letter-spacing:4.608000px;}
.ls55{letter-spacing:4.656000px;}
.ls37{letter-spacing:4.716000px;}
.ls16{letter-spacing:4.968000px;}
.ls56{letter-spacing:5.256000px;}
.ls6a{letter-spacing:5.688000px;}
.ls31{letter-spacing:5.976000px;}
.ls14{letter-spacing:6.247440px;}
.ls5e{letter-spacing:6.696000px;}
.ls5f{letter-spacing:7.128000px;}
.ls3b{letter-spacing:7.416000px;}
.ls23{letter-spacing:7.848000px;}
.ls3{letter-spacing:8.407440px;}
.ls21{letter-spacing:8.568000px;}
.ls33{letter-spacing:8.856000px;}
.ls80{letter-spacing:9.288000px;}
.ls32{letter-spacing:9.576000px;}
.ls1f{letter-spacing:10.008000px;}
.ls39{letter-spacing:10.296000px;}
.ls38{letter-spacing:11.016000px;}
.ls6b{letter-spacing:11.448000px;}
.ls7{letter-spacing:12.727440px;}
.ls78{letter-spacing:14.328000px;}
.ls22{letter-spacing:16.488000px;}
.ls6d{letter-spacing:17.208000px;}
.ls18{letter-spacing:17.928000px;}
.ls54{letter-spacing:18.000000px;}
.ls2c{letter-spacing:18.216000px;}
.ls28{letter-spacing:18.936000px;}
.ls7c{letter-spacing:19.548000px;}
.ls7a{letter-spacing:20.808000px;}
.ls20{letter-spacing:21.528000px;}
.ls72{letter-spacing:21.816000px;}
.ls71{letter-spacing:22.536000px;}
.ls3c{letter-spacing:25.416000px;}
.ls79{letter-spacing:26.028000px;}
.ls7f{letter-spacing:26.568000px;}
.ls6f{letter-spacing:31.176000px;}
.ls2b{letter-spacing:31.356000px;}
.ls3a{letter-spacing:31.392000px;}
.ls76{letter-spacing:31.896000px;}
.ls3d{letter-spacing:32.832000px;}
.ls6c{letter-spacing:33.120000px;}
.ls73{letter-spacing:33.768000px;}
.ls34{letter-spacing:34.704000px;}
.ls74{letter-spacing:35.928000px;}
.ls43{letter-spacing:36.000000px;}
.ls6e{letter-spacing:37.368000px;}
.ls77{letter-spacing:44.568000px;}
.ls82{letter-spacing:50.328000px;}
.ls42{letter-spacing:68.400000px;}
.ls84{letter-spacing:159.768000px;}
.ls85{letter-spacing:259.848000px;}
.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;}
}
.ws3{word-spacing:-22.744800px;}
.ws16{word-spacing:-20.304000px;}
.ws81{word-spacing:-20.232001px;}
.ws6{word-spacing:-20.232000px;}
.ws7f{word-spacing:-20.088000px;}
.ws45{word-spacing:-20.016000px;}
.ws82{word-spacing:-19.944000px;}
.ws71{word-spacing:-19.152000px;}
.ws6f{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.613440px;}
.ws5e{word-spacing:-18.576000px;}
.ws4c{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.288240px;}
.ws1f{word-spacing:-18.072000px;}
.ws62{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws32{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws39{word-spacing:-17.783997px;}
.ws29{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.352000px;}
.ws35{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.208000px;}
.ws14{word-spacing:-17.171760px;}
.ws0{word-spacing:-17.152560px;}
.wsb{word-spacing:-17.091360px;}
.ws2b{word-spacing:-17.064000px;}
.wse{word-spacing:-17.052360px;}
.ws7{word-spacing:-16.947360px;}
.ws1{word-spacing:-16.792560px;}
.ws5b{word-spacing:-16.632000px;}
.ws4b{word-spacing:-16.497360px;}
.ws15{word-spacing:-16.494960px;}
.ws2{word-spacing:-16.432560px;}
.ws8{word-spacing:-16.314000px;}
.wsf{word-spacing:-16.135200px;}
.ws68{word-spacing:-15.970560px;}
.ws9{word-spacing:-15.878400px;}
.ws17{word-spacing:-14.760720px;}
.ws7a{word-spacing:-14.328000px;}
.ws79{word-spacing:-12.888720px;}
.ws80{word-spacing:-11.999760px;}
.ws85{word-spacing:-11.946360px;}
.wsc{word-spacing:-9.972000px;}
.ws64{word-spacing:-2.304000px;}
.ws67{word-spacing:-0.936000px;}
.ws31{word-spacing:-0.864000px;}
.ws78{word-spacing:-0.720000px;}
.ws84{word-spacing:-0.540000px;}
.wsa{word-spacing:-0.454320px;}
.ws55{word-spacing:-0.360000px;}
.ws2f{word-spacing:-0.216000px;}
.ws28{word-spacing:-0.144000px;}
.ws70{word-spacing:-0.072000px;}
.wsd{word-spacing:0.000000px;}
.ws1c{word-spacing:0.072000px;}
.ws30{word-spacing:0.144000px;}
.ws72{word-spacing:0.180000px;}
.ws34{word-spacing:0.216000px;}
.ws19{word-spacing:0.576000px;}
.ws2e{word-spacing:1.008000px;}
.ws3e{word-spacing:1.224009px;}
.ws77{word-spacing:1.296000px;}
.ws40{word-spacing:1.944000px;}
.ws46{word-spacing:2.484000px;}
.ws4a{word-spacing:3.684240px;}
.ws83{word-spacing:4.068000px;}
.ws59{word-spacing:4.896000px;}
.ws54{word-spacing:5.616000px;}
.ws49{word-spacing:5.640120px;}
.ws56{word-spacing:5.976000px;}
.ws4e{word-spacing:6.696000px;}
.ws66{word-spacing:6.876000px;}
.ws58{word-spacing:6.912000px;}
.ws73{word-spacing:7.056000px;}
.ws52{word-spacing:7.119120px;}
.ws2c{word-spacing:7.128000px;}
.ws37{word-spacing:7.272000px;}
.ws1e{word-spacing:7.848000px;}
.ws2a{word-spacing:7.896000px;}
.ws18{word-spacing:7.992000px;}
.ws48{word-spacing:8.064000px;}
.ws53{word-spacing:8.136000px;}
.ws25{word-spacing:8.280000px;}
.ws5c{word-spacing:8.424009px;}
.ws1b{word-spacing:8.496000px;}
.ws23{word-spacing:8.568000px;}
.ws22{word-spacing:8.688000px;}
.ws36{word-spacing:8.856000px;}
.ws3d{word-spacing:8.904000px;}
.ws51{word-spacing:9.216000px;}
.ws6c{word-spacing:9.264000px;}
.ws65{word-spacing:9.288000px;}
.ws26{word-spacing:9.360000px;}
.ws43{word-spacing:9.432000px;}
.ws1d{word-spacing:9.576000px;}
.ws69{word-spacing:9.792000px;}
.ws38{word-spacing:9.864009px;}
.ws61{word-spacing:10.728000px;}
.ws7e{word-spacing:10.872000px;}
.ws33{word-spacing:11.016000px;}
.ws10{word-spacing:12.360000px;}
.ws76{word-spacing:13.872000px;}
.ws63{word-spacing:14.472000px;}
.ws3b{word-spacing:14.616000px;}
.ws60{word-spacing:14.760009px;}
.ws20{word-spacing:14.832000px;}
.ws7d{word-spacing:14.976000px;}
.ws50{word-spacing:15.192000px;}
.ws75{word-spacing:15.624000px;}
.ws2d{word-spacing:16.992000px;}
.ws42{word-spacing:17.208000px;}
.ws21{word-spacing:17.280000px;}
.ws41{word-spacing:17.388000px;}
.ws3c{word-spacing:17.784000px;}
.ws44{word-spacing:18.072000px;}
.ws6a{word-spacing:18.216000px;}
.ws3f{word-spacing:18.504009px;}
.ws6e{word-spacing:18.552000px;}
.ws24{word-spacing:28.764000px;}
.ws57{word-spacing:34.920000px;}
.ws3a{word-spacing:35.316000px;}
.ws5d{word-spacing:35.640000px;}
.ws5a{word-spacing:35.784000px;}
.ws6d{word-spacing:36.036000px;}
.ws6b{word-spacing:36.360000px;}
.ws74{word-spacing:38.088000px;}
.ws7c{word-spacing:42.840000px;}
.ws5f{word-spacing:42.912009px;}
.ws47{word-spacing:48.168000px;}
.ws4d{word-spacing:53.064009px;}
.ws7b{word-spacing:70.056000px;}
.ws27{word-spacing:73.368000px;}
.ws4f{word-spacing:75.648000px;}
._2f{margin-left:-18.072000px;}
._26{margin-left:-7.228320px;}
._f{margin-left:-5.472000px;}
._d{margin-left:-4.370640px;}
._c{margin-left:-3.227040px;}
._1{margin-left:-1.284240px;}
._0{width:1.314720px;}
._5{width:2.442720px;}
._b{width:3.593040px;}
._2{width:4.661280px;}
._6{width:6.095520px;}
._e{width:7.171200px;}
._9{width:8.270400px;}
._7{width:9.740880px;}
._8{width:11.095680px;}
._a{width:12.609360px;}
._3{width:13.983840px;}
._4{width:15.641760px;}
._1d{width:16.830240px;}
._13{width:17.856000px;}
._1e{width:19.008000px;}
._33{width:20.591520px;}
._17{width:21.593760px;}
._14{width:22.752000px;}
._1c{width:23.794560px;}
._19{width:25.344000px;}
._11{width:27.000000px;}
._12{width:28.102560px;}
._15{width:29.880000px;}
._16{width:30.888000px;}
._1b{width:32.036400px;}
._10{width:33.285120px;}
._32{width:34.347840px;}
._1a{width:35.352000px;}
._18{width:37.296000px;}
._23{width:39.117840px;}
._27{width:40.910880px;}
._1f{width:43.873920px;}
._20{width:45.033360px;}
._28{width:46.411680px;}
._39{width:48.672000px;}
._34{width:50.400000px;}
._21{width:53.568000px;}
._31{width:54.858000px;}
._22{width:57.745080px;}
._2d{width:62.405280px;}
._2e{width:63.730320px;}
._2a{width:65.362560px;}
._24{width:68.520240px;}
._2c{width:71.294880px;}
._25{width:86.488080px;}
._2b{width:88.229280px;}
._30{width:99.408000px;}
._29{width:104.463360px;}
._36{width:158.892000px;}
._35{width:160.140000px;}
._38{width:258.528000px;}
._37{width:259.644000px;}
.fc3{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.990000px;}
.y2{bottom:4.350000px;}
.y5{bottom:25.410000px;}
.y4{bottom:47.010000px;}
.y3{bottom:68.430000px;}
.y11{bottom:76.176000px;}
.y10{bottom:95.256000px;}
.yf{bottom:116.136000px;}
.y85{bottom:122.076000px;}
.y15b{bottom:131.976000px;}
.ye{bottom:137.736000px;}
.yb4{bottom:143.676000px;}
.y13e{bottom:151.770000px;}
.y15a{bottom:157.710000px;}
.yd{bottom:159.150000px;}
.yb3{bottom:160.230000px;}
.y5e{bottom:165.090000px;}
.y13d{bottom:177.510000px;}
.yc{bottom:180.750000px;}
.yb1{bottom:182.910000px;}
.y159{bottom:183.630000px;}
.y125{bottom:186.510000px;}
.y5d{bottom:186.690000px;}
.yb2{bottom:190.470000px;}
.y105{bottom:195.870000px;}
.yb{bottom:202.350000px;}
.y84{bottom:203.430000px;}
.y13c{bottom:207.930000px;}
.y5c{bottom:208.290000px;}
.yb0{bottom:208.650000px;}
.y124{bottom:212.430000px;}
.y158{bottom:221.430000px;}
.y104{bottom:221.610000px;}
.yda{bottom:223.590000px;}
.ya{bottom:223.770000px;}
.y5b{bottom:224.850000px;}
.yc0{bottom:229.710000px;}
.y82{bottom:233.310000px;}
.y13b{bottom:233.670000px;}
.yaf{bottom:234.570000px;}
.y123{bottom:238.170000px;}
.y83{bottom:240.870000px;}
.y9{bottom:245.370000px;}
.yc9{bottom:246.450000px;}
.y103{bottom:247.530000px;}
.y59{bottom:248.070000px;}
.yd8{bottom:249.330000px;}
.y160{bottom:249.690000px;}
.ya1{bottom:251.310000px;}
.y5a{bottom:255.630000px;}
.yd9{bottom:256.890000px;}
.y81{bottom:259.230000px;}
.yae{bottom:260.310000px;}
.y122{bottom:264.090000px;}
.ya0{bottom:266.790000px;}
.y58{bottom:273.810000px;}
.yd7{bottom:275.250000px;}
.y102{bottom:277.770000px;}
.y8{bottom:284.070000px;}
.y80{bottom:284.970000px;}
.yad{bottom:286.230000px;}
.y15f{bottom:286.590000px;}
.y9f{bottom:288.390000px;}
.y121{bottom:289.830000px;}
.y9e{bottom:294.330000px;}
.y56{bottom:299.730000px;}
.yd6{bottom:300.990000px;}
.y101{bottom:303.690000px;}
.y57{bottom:307.290000px;}
.y34{bottom:307.650000px;}
.y15e{bottom:309.090000px;}
.y9d{bottom:309.810000px;}
.y7f{bottom:310.890000px;}
.yac{bottom:311.970000px;}
.yc5{bottom:315.750000px;}
.y120{bottom:320.070000px;}
.y157{bottom:322.770000px;}
.y55{bottom:325.470000px;}
.yd5{bottom:326.910000px;}
.y33{bottom:329.250000px;}
.y9c{bottom:331.410000px;}
.yc4{bottom:332.490000px;}
.y100{bottom:333.930000px;}
.y15d{bottom:334.830000px;}
.y7e{bottom:336.675000px;}
.yab{bottom:337.935000px;}
.y11f{bottom:346.035000px;}
.y156{bottom:348.735000px;}
.y32{bottom:350.715000px;}
.y54{bottom:351.435000px;}
.yd4{bottom:352.695000px;}
.y9b{bottom:352.875000px;}
.y9a{bottom:358.815000px;}
.yff{bottom:359.895000px;}
.y15c{bottom:360.615000px;}
.y7d{bottom:362.595000px;}
.yaa{bottom:363.675000px;}
.y11e{bottom:371.775000px;}
.y31{bottom:372.315000px;}
.y99{bottom:374.475000px;}
.ybf{bottom:375.555000px;}
.y53{bottom:377.175000px;}
.yd3{bottom:378.435000px;}
.y98{bottom:380.415000px;}
.yc3{bottom:386.535000px;}
.y7c{bottom:388.335000px;}
.ya9{bottom:389.595000px;}
.yfe{bottom:390.135000px;}
.y30{bottom:393.735000px;}
.y97{bottom:395.895000px;}
.y11d{bottom:397.695000px;}
.y155{bottom:400.395000px;}
.y96{bottom:401.835000px;}
.y13a{bottom:402.195000px;}
.y52{bottom:403.095000px;}
.yd2{bottom:404.355000px;}
.ybd{bottom:412.275000px;}
.y7b{bottom:414.075000px;}
.y2f{bottom:415.335000px;}
.yfd{bottom:416.055000px;}
.y95{bottom:417.495000px;}
.ybe{bottom:419.835000px;}
.y11c{bottom:423.435000px;}
.y154{bottom:426.135000px;}
.y139{bottom:427.935000px;}
.y51{bottom:428.835000px;}
.yd1{bottom:430.095000px;}
.y2e{bottom:436.755000px;}
.ybc{bottom:438.195000px;}
.y94{bottom:439.095000px;}
.y7a{bottom:439.995000px;}
.ya8{bottom:441.255000px;}
.y93{bottom:445.035000px;}
.yfc{bottom:446.295000px;}
.y153{bottom:452.055000px;}
.y11b{bottom:453.855000px;}
.y50{bottom:454.755000px;}
.yd0{bottom:456.015000px;}
.y2d{bottom:458.355000px;}
.y92{bottom:460.515000px;}
.yba{bottom:463.935000px;}
.y79{bottom:465.735000px;}
.ya7{bottom:466.995000px;}
.ybb{bottom:471.495000px;}
.yfb{bottom:472.215000px;}
.y152{bottom:477.795000px;}
.y11a{bottom:479.595000px;}
.y2c{bottom:479.955000px;}
.y4f{bottom:480.495000px;}
.ycf{bottom:481.755000px;}
.y91{bottom:482.115000px;}
.y138{bottom:484.095000px;}
.y90{bottom:488.055000px;}
.yb8{bottom:489.855000px;}
.y78{bottom:491.655000px;}
.ya6{bottom:492.735000px;}
.yb9{bottom:497.415000px;}
.y2b{bottom:501.375000px;}
.yfa{bottom:502.455000px;}
.y151{bottom:503.715000px;}
.y8f{bottom:504.615000px;}
.y119{bottom:505.515000px;}
.y4e{bottom:506.415000px;}
.yce{bottom:507.675000px;}
.y137{bottom:510.015000px;}
.yb7{bottom:515.595000px;}
.y77{bottom:517.395000px;}
.ya5{bottom:518.655000px;}
.y2a{bottom:522.975000px;}
.yf9{bottom:528.195000px;}
.y150{bottom:529.455000px;}
.y118{bottom:531.255000px;}
.y4d{bottom:532.155000px;}
.ycd{bottom:533.415000px;}
.y136{bottom:535.755000px;}
.yb6{bottom:541.515000px;}
.y76{bottom:543.315000px;}
.y29{bottom:544.395000px;}
.yc2{bottom:549.075000px;}
.yf8{bottom:554.115000px;}
.y14f{bottom:555.195000px;}
.y4c{bottom:557.895000px;}
.y117{bottom:561.675000px;}
.y28{bottom:565.995000px;}
.y8e{bottom:567.255000px;}
.y75{bottom:569.055000px;}
.ya4{bottom:570.315000px;}
.ycc{bottom:572.115000px;}
.yc1{bottom:574.815000px;}
.y14e{bottom:581.115000px;}
.y4b{bottom:583.815000px;}
.yf7{bottom:584.355000px;}
.y27{bottom:587.415000px;}
.y135{bottom:591.915000px;}
.y8c{bottom:593.175000px;}
.y74{bottom:594.975000px;}
.ycb{bottom:597.135000px;}
.y8d{bottom:600.735000px;}
.y14d{bottom:606.885000px;}
.y26{bottom:609.045000px;}
.y4a{bottom:609.585000px;}
.yf6{bottom:610.305000px;}
.y116{bottom:613.185000px;}
.y134{bottom:617.685000px;}
.y8b{bottom:618.945000px;}
.y73{bottom:620.745000px;}
.yca{bottom:627.585000px;}
.y25{bottom:630.465000px;}
.y14c{bottom:632.805000px;}
.ya3{bottom:634.065000px;}
.y49{bottom:635.505000px;}
.yf5{bottom:636.045000px;}
.y115{bottom:639.105000px;}
.y133{bottom:643.605000px;}
.y89{bottom:644.685000px;}
.ye3{bottom:646.665000px;}
.ya2{bottom:651.705000px;}
.y24{bottom:652.065000px;}
.y8a{bottom:652.245000px;}
.y72{bottom:658.545000px;}
.y48{bottom:661.245000px;}
.yf4{bottom:666.465000px;}
.y114{bottom:669.345000px;}
.y88{bottom:670.605000px;}
.ye2{bottom:672.405000px;}
.y23{bottom:673.485000px;}
.y132{bottom:673.845000px;}
.yc8{bottom:678.165000px;}
.y14b{bottom:684.465000px;}
.y47{bottom:687.165000px;}
.yf3{bottom:692.205000px;}
.y22{bottom:695.085000px;}
.y113{bottom:695.265000px;}
.y71{bottom:696.345000px;}
.ye1{bottom:698.325000px;}
.y131{bottom:699.765000px;}
.y87{bottom:703.905000px;}
.y14a{bottom:710.205000px;}
.y46{bottom:712.905000px;}
.y21{bottom:716.685000px;}
.y112{bottom:721.005000px;}
.y70{bottom:722.265000px;}
.yf2{bottom:722.625000px;}
.ye0{bottom:724.065000px;}
.y130{bottom:725.505000px;}
.y149{bottom:736.125000px;}
.y20{bottom:738.105000px;}
.y45{bottom:738.825000px;}
.y111{bottom:746.925000px;}
.y6f{bottom:748.005000px;}
.yf1{bottom:748.365000px;}
.ydf{bottom:749.805000px;}
.y12f{bottom:755.925000px;}
.y1f{bottom:760.425000px;}
.y148{bottom:761.865000px;}
.y44{bottom:764.565000px;}
.y6e{bottom:773.925000px;}
.yde{bottom:775.725000px;}
.y110{bottom:777.165000px;}
.yf0{bottom:778.785000px;}
.y12e{bottom:781.665000px;}
.y1e{bottom:785.805000px;}
.y147{bottom:787.785000px;}
.y43{bottom:790.485000px;}
.y6d{bottom:799.665000px;}
.y10f{bottom:803.085000px;}
.yef{bottom:804.525000px;}
.y12d{bottom:807.585000px;}
.y1d{bottom:809.565000px;}
.ydd{bottom:813.525000px;}
.y42{bottom:816.225000px;}
.y6c{bottom:825.585000px;}
.yee{bottom:830.265000px;}
.y1c{bottom:833.145000px;}
.y10e{bottom:833.325000px;}
.y12c{bottom:837.825000px;}
.y146{bottom:839.265000px;}
.y41{bottom:841.965000px;}
.y6b{bottom:851.325000px;}
.yed{bottom:856.185000px;}
.y1b{bottom:856.905000px;}
.y10d{bottom:859.245000px;}
.y12b{bottom:863.745000px;}
.y145{bottom:865.185000px;}
.y6a{bottom:877.290000px;}
.y40{bottom:879.990000px;}
.y1a{bottom:880.530000px;}
.yc7{bottom:884.850000px;}
.y10c{bottom:885.030000px;}
.yec{bottom:886.470000px;}
.y144{bottom:890.970000px;}
.y12a{bottom:894.030000px;}
.y69{bottom:903.030000px;}
.y19{bottom:904.290000px;}
.y86{bottom:910.590000px;}
.yeb{bottom:912.390000px;}
.y10b{bottom:915.450000px;}
.y143{bottom:916.890000px;}
.y129{bottom:919.950000px;}
.y3f{bottom:920.310000px;}
.y18{bottom:927.510000px;}
.y68{bottom:928.950000px;}
.yc6{bottom:936.510000px;}
.yea{bottom:938.130000px;}
.y10a{bottom:941.190000px;}
.y142{bottom:942.630000px;}
.y3e{bottom:945.150000px;}
.y17{bottom:949.830000px;}
.y128{bottom:950.190000px;}
.y67{bottom:954.690000px;}
.ye9{bottom:964.050000px;}
.y3d{bottom:966.750000px;}
.y141{bottom:968.550000px;}
.y109{bottom:971.430000px;}
.y16{bottom:975.750000px;}
.y127{bottom:975.930000px;}
.y66{bottom:980.430000px;}
.y3c{bottom:988.350000px;}
.ye8{bottom:989.790000px;}
.y140{bottom:994.290000px;}
.y108{bottom:997.350000px;}
.y126{bottom:1001.850000px;}
.y15{bottom:1002.210000px;}
.y65{bottom:1006.350000px;}
.y3b{bottom:1009.770000px;}
.yb5{bottom:1013.910000px;}
.ye7{bottom:1015.710000px;}
.y13f{bottom:1020.210000px;}
.y107{bottom:1027.590000px;}
.y3a{bottom:1031.370000px;}
.y64{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.ye6{bottom:1045.950000px;}
.y39{bottom:1052.790000px;}
.y106{bottom:1053.510000px;}
.y63{bottom:1058.010000px;}
.y13{bottom:1062.510000px;}
.ydc{bottom:1065.570000px;}
.ye5{bottom:1071.870000px;}
.y38{bottom:1074.390000px;}
.y62{bottom:1083.750000px;}
.y12{bottom:1091.490000px;}
.y37{bottom:1095.990000px;}
.ye4{bottom:1097.610000px;}
.y60{bottom:1109.670000px;}
.y7{bottom:1115.790000px;}
.y61{bottom:1117.230000px;}
.y36{bottom:1117.410000px;}
.y1{bottom:1134.330000px;}
.y5f{bottom:1135.410000px;}
.y35{bottom:1139.040000px;}
.ydb{bottom:1143.000000px;}
.hd{height:40.781250px;}
.h7{height:43.506914px;}
.hc{height:47.306250px;}
.h4{height:51.618867px;}
.h6{height:61.171875px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:67.696875px;}
.h9{height:72.763945px;}
.h8{height:75.037500px;}
.he{height:76.324219px;}
.hb{height:81.562500px;}
.h2{height:86.076000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.x11{left:110.915987px;}
.x2c{left:113.255987px;}
.x26{left:115.415987px;}
.x1b{left:139.715973px;}
.x1c{left:145.295987px;}
.x25{left:148.895987px;}
.x12{left:158.789973px;}
.x9{left:160.409987px;}
.x13{left:164.009987px;}
.x31{left:169.589987px;}
.x2{left:176.799000px;}
.x2f{left:180.209973px;}
.x30{left:190.649987px;}
.xc{left:239.069973px;}
.xd{left:244.289987px;}
.x3d{left:263.189973px;}
.x35{left:266.429973px;}
.x3e{left:273.629987px;}
.x36{left:276.869987px;}
.x10{left:322.454987px;}
.x2d{left:362.594973px;}
.x2e{left:373.034987px;}
.x40{left:380.054973px;}
.x41{left:390.854987px;}
.x43{left:404.714973px;}
.x44{left:415.154987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x34{left:457.454987px;}
.x28{left:467.744987px;}
.x5{left:489.165000px;}
.x32{left:504.824973px;}
.x45{left:509.144973px;}
.x33{left:515.264987px;}
.x46{left:519.584987px;}
.xe{left:559.004973px;}
.xf{left:564.224987px;}
.x3b{left:574.484973px;}
.x29{left:579.344973px;}
.x3c{left:584.924987px;}
.x2a{left:589.784987px;}
.x1d{left:595.004973px;}
.xa{left:599.324973px;}
.xb{left:604.544987px;}
.x1e{left:605.804987px;}
.x23{left:614.624973px;}
.x24{left:625.064987px;}
.x21{left:642.704973px;}
.x22{left:653.144987px;}
.x16{left:667.949973px;}
.x17{left:673.169987px;}
.x39{left:679.469973px;}
.x1f{left:682.709973px;}
.x3a{left:689.909987px;}
.x20{left:693.149987px;}
.x14{left:699.809973px;}
.x15{left:705.029987px;}
.x18{left:717.629973px;}
.x19{left:722.849987px;}
.x37{left:752.729973px;}
.x38{left:763.169987px;}
.x42{left:767.489987px;}
.x2b{left:771.449973px;}
.x6{left:777.209987px;}
.x1a{left:782.069987px;}
.x3f{left:784.409987px;}
.x27{left:786.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls5d{letter-spacing:-17.973333pt;}
.ls67{letter-spacing:-1.664000pt;}
.ls65{letter-spacing:-1.280000pt;}
.ls63{letter-spacing:-1.088000pt;}
.ls61{letter-spacing:-1.024000pt;}
.ls70{letter-spacing:-0.896000pt;}
.ls64{letter-spacing:-0.730667pt;}
.ls4a{letter-spacing:-0.640000pt;}
.ls53{letter-spacing:-0.581333pt;}
.ls48{letter-spacing:-0.512000pt;}
.ls49{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls69{letter-spacing:-0.322667pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.289067pt;}
.ls1d{letter-spacing:-0.264533pt;}
.ls52{letter-spacing:-0.262400pt;}
.ls47{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.253867pt;}
.ls11{letter-spacing:-0.228267pt;}
.ls51{letter-spacing:-0.213867pt;}
.ls50{letter-spacing:-0.206933pt;}
.ls4c{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.184533pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.064000pt;}
.ls4b{letter-spacing:-0.000003pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7e{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.014080pt;}
.ls5{letter-spacing:0.056320pt;}
.lsb{letter-spacing:0.056533pt;}
.ls24{letter-spacing:0.064000pt;}
.ls59{letter-spacing:0.086933pt;}
.ls9{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.137600pt;}
.ls4e{letter-spacing:0.153067pt;}
.ls10{letter-spacing:0.158933pt;}
.ls7b{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.182933pt;}
.ls86{letter-spacing:0.188267pt;}
.ls17{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.234667pt;}
.ls7d{letter-spacing:0.235733pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.265600pt;}
.ls68{letter-spacing:0.319360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.320640pt;}
.ls1c{letter-spacing:0.337067pt;}
.ls81{letter-spacing:0.362667pt;}
.ls58{letter-spacing:0.384000pt;}
.ls4d{letter-spacing:0.426133pt;}
.ls40{letter-spacing:0.576000pt;}
.ls5b{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.696320pt;}
.lsc{letter-spacing:0.698667pt;}
.ls62{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.736000pt;}
.ls5a{letter-spacing:0.752000pt;}
.ls66{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:0.832000pt;}
.ls3f{letter-spacing:0.992000pt;}
.ls30{letter-spacing:1.216000pt;}
.ls5c{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:1.450667pt;}
.ls2e{letter-spacing:1.472000pt;}
.ls2f{letter-spacing:1.578667pt;}
.ls83{letter-spacing:1.792640pt;}
.ls41{letter-spacing:1.856000pt;}
.ls4f{letter-spacing:1.909333pt;}
.ls57{letter-spacing:2.112000pt;}
.ls26{letter-spacing:2.496000pt;}
.ls29{letter-spacing:2.730667pt;}
.ls2a{letter-spacing:2.752000pt;}
.ls27{letter-spacing:3.136000pt;}
.ls36{letter-spacing:3.392000pt;}
.ls8{letter-spacing:3.519360pt;}
.ls75{letter-spacing:3.776000pt;}
.ls35{letter-spacing:4.032000pt;}
.ls60{letter-spacing:4.096000pt;}
.ls55{letter-spacing:4.138667pt;}
.ls37{letter-spacing:4.192000pt;}
.ls16{letter-spacing:4.416000pt;}
.ls56{letter-spacing:4.672000pt;}
.ls6a{letter-spacing:5.056000pt;}
.ls31{letter-spacing:5.312000pt;}
.ls14{letter-spacing:5.553280pt;}
.ls5e{letter-spacing:5.952000pt;}
.ls5f{letter-spacing:6.336000pt;}
.ls3b{letter-spacing:6.592000pt;}
.ls23{letter-spacing:6.976000pt;}
.ls3{letter-spacing:7.473280pt;}
.ls21{letter-spacing:7.616000pt;}
.ls33{letter-spacing:7.872000pt;}
.ls80{letter-spacing:8.256000pt;}
.ls32{letter-spacing:8.512000pt;}
.ls1f{letter-spacing:8.896000pt;}
.ls39{letter-spacing:9.152000pt;}
.ls38{letter-spacing:9.792000pt;}
.ls6b{letter-spacing:10.176000pt;}
.ls7{letter-spacing:11.313280pt;}
.ls78{letter-spacing:12.736000pt;}
.ls22{letter-spacing:14.656000pt;}
.ls6d{letter-spacing:15.296000pt;}
.ls18{letter-spacing:15.936000pt;}
.ls54{letter-spacing:16.000000pt;}
.ls2c{letter-spacing:16.192000pt;}
.ls28{letter-spacing:16.832000pt;}
.ls7c{letter-spacing:17.376000pt;}
.ls7a{letter-spacing:18.496000pt;}
.ls20{letter-spacing:19.136000pt;}
.ls72{letter-spacing:19.392000pt;}
.ls71{letter-spacing:20.032000pt;}
.ls3c{letter-spacing:22.592000pt;}
.ls79{letter-spacing:23.136000pt;}
.ls7f{letter-spacing:23.616000pt;}
.ls6f{letter-spacing:27.712000pt;}
.ls2b{letter-spacing:27.872000pt;}
.ls3a{letter-spacing:27.904000pt;}
.ls76{letter-spacing:28.352000pt;}
.ls3d{letter-spacing:29.184000pt;}
.ls6c{letter-spacing:29.440000pt;}
.ls73{letter-spacing:30.016000pt;}
.ls34{letter-spacing:30.848000pt;}
.ls74{letter-spacing:31.936000pt;}
.ls43{letter-spacing:32.000000pt;}
.ls6e{letter-spacing:33.216000pt;}
.ls77{letter-spacing:39.616000pt;}
.ls82{letter-spacing:44.736000pt;}
.ls42{letter-spacing:60.800000pt;}
.ls84{letter-spacing:142.016000pt;}
.ls85{letter-spacing:230.976000pt;}
.ws3{word-spacing:-20.217600pt;}
.ws16{word-spacing:-18.048000pt;}
.ws81{word-spacing:-17.984001pt;}
.ws6{word-spacing:-17.984000pt;}
.ws7f{word-spacing:-17.856000pt;}
.ws45{word-spacing:-17.792000pt;}
.ws82{word-spacing:-17.728000pt;}
.ws71{word-spacing:-17.024000pt;}
.ws6f{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.545280pt;}
.ws5e{word-spacing:-16.512000pt;}
.ws4c{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.256213pt;}
.ws1f{word-spacing:-16.064000pt;}
.ws62{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws32{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws39{word-spacing:-15.807997pt;}
.ws29{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.424000pt;}
.ws35{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws14{word-spacing:-15.263787pt;}
.ws0{word-spacing:-15.246720pt;}
.wsb{word-spacing:-15.192320pt;}
.ws2b{word-spacing:-15.168000pt;}
.wse{word-spacing:-15.157653pt;}
.ws7{word-spacing:-15.064320pt;}
.ws1{word-spacing:-14.926720pt;}
.ws5b{word-spacing:-14.784000pt;}
.ws4b{word-spacing:-14.664320pt;}
.ws15{word-spacing:-14.662187pt;}
.ws2{word-spacing:-14.606720pt;}
.ws8{word-spacing:-14.501333pt;}
.wsf{word-spacing:-14.342400pt;}
.ws68{word-spacing:-14.196053pt;}
.ws9{word-spacing:-14.114133pt;}
.ws17{word-spacing:-13.120640pt;}
.ws7a{word-spacing:-12.736000pt;}
.ws79{word-spacing:-11.456640pt;}
.ws80{word-spacing:-10.666453pt;}
.ws85{word-spacing:-10.618987pt;}
.wsc{word-spacing:-8.864000pt;}
.ws64{word-spacing:-2.048000pt;}
.ws67{word-spacing:-0.832000pt;}
.ws31{word-spacing:-0.768000pt;}
.ws78{word-spacing:-0.640000pt;}
.ws84{word-spacing:-0.480000pt;}
.wsa{word-spacing:-0.403840pt;}
.ws55{word-spacing:-0.320000pt;}
.ws2f{word-spacing:-0.192000pt;}
.ws28{word-spacing:-0.128000pt;}
.ws70{word-spacing:-0.064000pt;}
.wsd{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.064000pt;}
.ws30{word-spacing:0.128000pt;}
.ws72{word-spacing:0.160000pt;}
.ws34{word-spacing:0.192000pt;}
.ws19{word-spacing:0.512000pt;}
.ws2e{word-spacing:0.896000pt;}
.ws3e{word-spacing:1.088008pt;}
.ws77{word-spacing:1.152000pt;}
.ws40{word-spacing:1.728000pt;}
.ws46{word-spacing:2.208000pt;}
.ws4a{word-spacing:3.274880pt;}
.ws83{word-spacing:3.616000pt;}
.ws59{word-spacing:4.352000pt;}
.ws54{word-spacing:4.992000pt;}
.ws49{word-spacing:5.013440pt;}
.ws56{word-spacing:5.312000pt;}
.ws4e{word-spacing:5.952000pt;}
.ws66{word-spacing:6.112000pt;}
.ws58{word-spacing:6.144000pt;}
.ws73{word-spacing:6.272000pt;}
.ws52{word-spacing:6.328107pt;}
.ws2c{word-spacing:6.336000pt;}
.ws37{word-spacing:6.464000pt;}
.ws1e{word-spacing:6.976000pt;}
.ws2a{word-spacing:7.018667pt;}
.ws18{word-spacing:7.104000pt;}
.ws48{word-spacing:7.168000pt;}
.ws53{word-spacing:7.232000pt;}
.ws25{word-spacing:7.360000pt;}
.ws5c{word-spacing:7.488008pt;}
.ws1b{word-spacing:7.552000pt;}
.ws23{word-spacing:7.616000pt;}
.ws22{word-spacing:7.722667pt;}
.ws36{word-spacing:7.872000pt;}
.ws3d{word-spacing:7.914667pt;}
.ws51{word-spacing:8.192000pt;}
.ws6c{word-spacing:8.234667pt;}
.ws65{word-spacing:8.256000pt;}
.ws26{word-spacing:8.320000pt;}
.ws43{word-spacing:8.384000pt;}
.ws1d{word-spacing:8.512000pt;}
.ws69{word-spacing:8.704000pt;}
.ws38{word-spacing:8.768008pt;}
.ws61{word-spacing:9.536000pt;}
.ws7e{word-spacing:9.664000pt;}
.ws33{word-spacing:9.792000pt;}
.ws10{word-spacing:10.986667pt;}
.ws76{word-spacing:12.330667pt;}
.ws63{word-spacing:12.864000pt;}
.ws3b{word-spacing:12.992000pt;}
.ws60{word-spacing:13.120008pt;}
.ws20{word-spacing:13.184000pt;}
.ws7d{word-spacing:13.312000pt;}
.ws50{word-spacing:13.504000pt;}
.ws75{word-spacing:13.888000pt;}
.ws2d{word-spacing:15.104000pt;}
.ws42{word-spacing:15.296000pt;}
.ws21{word-spacing:15.360000pt;}
.ws41{word-spacing:15.456000pt;}
.ws3c{word-spacing:15.808000pt;}
.ws44{word-spacing:16.064000pt;}
.ws6a{word-spacing:16.192000pt;}
.ws3f{word-spacing:16.448008pt;}
.ws6e{word-spacing:16.490667pt;}
.ws24{word-spacing:25.568000pt;}
.ws57{word-spacing:31.040000pt;}
.ws3a{word-spacing:31.392000pt;}
.ws5d{word-spacing:31.680000pt;}
.ws5a{word-spacing:31.808000pt;}
.ws6d{word-spacing:32.032000pt;}
.ws6b{word-spacing:32.320000pt;}
.ws74{word-spacing:33.856000pt;}
.ws7c{word-spacing:38.080000pt;}
.ws5f{word-spacing:38.144008pt;}
.ws47{word-spacing:42.816000pt;}
.ws4d{word-spacing:47.168008pt;}
.ws7b{word-spacing:62.272000pt;}
.ws27{word-spacing:65.216000pt;}
.ws4f{word-spacing:67.242667pt;}
._2f{margin-left:-16.064000pt;}
._26{margin-left:-6.425173pt;}
._f{margin-left:-4.864000pt;}
._d{margin-left:-3.885013pt;}
._c{margin-left:-2.868480pt;}
._1{margin-left:-1.141547pt;}
._0{width:1.168640pt;}
._5{width:2.171307pt;}
._b{width:3.193813pt;}
._2{width:4.143360pt;}
._6{width:5.418240pt;}
._e{width:6.374400pt;}
._9{width:7.351467pt;}
._7{width:8.658560pt;}
._8{width:9.862827pt;}
._a{width:11.208320pt;}
._3{width:12.430080pt;}
._4{width:13.903787pt;}
._1d{width:14.960213pt;}
._13{width:15.872000pt;}
._1e{width:16.896000pt;}
._33{width:18.303573pt;}
._17{width:19.194453pt;}
._14{width:20.224000pt;}
._1c{width:21.150720pt;}
._19{width:22.528000pt;}
._11{width:24.000000pt;}
._12{width:24.980053pt;}
._15{width:26.560000pt;}
._16{width:27.456000pt;}
._1b{width:28.476800pt;}
._10{width:29.586773pt;}
._32{width:30.531413pt;}
._1a{width:31.424000pt;}
._18{width:33.152000pt;}
._23{width:34.771413pt;}
._27{width:36.365227pt;}
._1f{width:38.999040pt;}
._20{width:40.029653pt;}
._28{width:41.254827pt;}
._39{width:43.264000pt;}
._34{width:44.800000pt;}
._21{width:47.616000pt;}
._31{width:48.762667pt;}
._22{width:51.328960pt;}
._2d{width:55.471360pt;}
._2e{width:56.649173pt;}
._2a{width:58.100053pt;}
._24{width:60.906880pt;}
._2c{width:63.373227pt;}
._25{width:76.878293pt;}
._2b{width:78.426027pt;}
._30{width:88.362667pt;}
._29{width:92.856320pt;}
._36{width:141.237333pt;}
._35{width:142.346667pt;}
._38{width:229.802667pt;}
._37{width:230.794667pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.546667pt;}
.y2{bottom:3.866667pt;}
.y5{bottom:22.586667pt;}
.y4{bottom:41.786667pt;}
.y3{bottom:60.826667pt;}
.y11{bottom:67.712000pt;}
.y10{bottom:84.672000pt;}
.yf{bottom:103.232000pt;}
.y85{bottom:108.512000pt;}
.y15b{bottom:117.312000pt;}
.ye{bottom:122.432000pt;}
.yb4{bottom:127.712000pt;}
.y13e{bottom:134.906667pt;}
.y15a{bottom:140.186667pt;}
.yd{bottom:141.466667pt;}
.yb3{bottom:142.426667pt;}
.y5e{bottom:146.746667pt;}
.y13d{bottom:157.786667pt;}
.yc{bottom:160.666667pt;}
.yb1{bottom:162.586667pt;}
.y159{bottom:163.226667pt;}
.y125{bottom:165.786667pt;}
.y5d{bottom:165.946667pt;}
.yb2{bottom:169.306667pt;}
.y105{bottom:174.106667pt;}
.yb{bottom:179.866667pt;}
.y84{bottom:180.826667pt;}
.y13c{bottom:184.826667pt;}
.y5c{bottom:185.146667pt;}
.yb0{bottom:185.466667pt;}
.y124{bottom:188.826667pt;}
.y158{bottom:196.826667pt;}
.y104{bottom:196.986667pt;}
.yda{bottom:198.746667pt;}
.ya{bottom:198.906667pt;}
.y5b{bottom:199.866667pt;}
.yc0{bottom:204.186667pt;}
.y82{bottom:207.386667pt;}
.y13b{bottom:207.706667pt;}
.yaf{bottom:208.506667pt;}
.y123{bottom:211.706667pt;}
.y83{bottom:214.106667pt;}
.y9{bottom:218.106667pt;}
.yc9{bottom:219.066667pt;}
.y103{bottom:220.026667pt;}
.y59{bottom:220.506667pt;}
.yd8{bottom:221.626667pt;}
.y160{bottom:221.946667pt;}
.ya1{bottom:223.386667pt;}
.y5a{bottom:227.226667pt;}
.yd9{bottom:228.346667pt;}
.y81{bottom:230.426667pt;}
.yae{bottom:231.386667pt;}
.y122{bottom:234.746667pt;}
.ya0{bottom:237.146667pt;}
.y58{bottom:243.386667pt;}
.yd7{bottom:244.666667pt;}
.y102{bottom:246.906667pt;}
.y8{bottom:252.506667pt;}
.y80{bottom:253.306667pt;}
.yad{bottom:254.426667pt;}
.y15f{bottom:254.746667pt;}
.y9f{bottom:256.346667pt;}
.y121{bottom:257.626667pt;}
.y9e{bottom:261.626667pt;}
.y56{bottom:266.426667pt;}
.yd6{bottom:267.546667pt;}
.y101{bottom:269.946667pt;}
.y57{bottom:273.146667pt;}
.y34{bottom:273.466667pt;}
.y15e{bottom:274.746667pt;}
.y9d{bottom:275.386667pt;}
.y7f{bottom:276.346667pt;}
.yac{bottom:277.306667pt;}
.yc5{bottom:280.666667pt;}
.y120{bottom:284.506667pt;}
.y157{bottom:286.906667pt;}
.y55{bottom:289.306667pt;}
.yd5{bottom:290.586667pt;}
.y33{bottom:292.666667pt;}
.y9c{bottom:294.586667pt;}
.yc4{bottom:295.546667pt;}
.y100{bottom:296.826667pt;}
.y15d{bottom:297.626667pt;}
.y7e{bottom:299.266667pt;}
.yab{bottom:300.386667pt;}
.y11f{bottom:307.586667pt;}
.y156{bottom:309.986667pt;}
.y32{bottom:311.746667pt;}
.y54{bottom:312.386667pt;}
.yd4{bottom:313.506667pt;}
.y9b{bottom:313.666667pt;}
.y9a{bottom:318.946667pt;}
.yff{bottom:319.906667pt;}
.y15c{bottom:320.546667pt;}
.y7d{bottom:322.306667pt;}
.yaa{bottom:323.266667pt;}
.y11e{bottom:330.466667pt;}
.y31{bottom:330.946667pt;}
.y99{bottom:332.866667pt;}
.ybf{bottom:333.826667pt;}
.y53{bottom:335.266667pt;}
.yd3{bottom:336.386667pt;}
.y98{bottom:338.146667pt;}
.yc3{bottom:343.586667pt;}
.y7c{bottom:345.186667pt;}
.ya9{bottom:346.306667pt;}
.yfe{bottom:346.786667pt;}
.y30{bottom:349.986667pt;}
.y97{bottom:351.906667pt;}
.y11d{bottom:353.506667pt;}
.y155{bottom:355.906667pt;}
.y96{bottom:357.186667pt;}
.y13a{bottom:357.506667pt;}
.y52{bottom:358.306667pt;}
.yd2{bottom:359.426667pt;}
.ybd{bottom:366.466667pt;}
.y7b{bottom:368.066667pt;}
.y2f{bottom:369.186667pt;}
.yfd{bottom:369.826667pt;}
.y95{bottom:371.106667pt;}
.ybe{bottom:373.186667pt;}
.y11c{bottom:376.386667pt;}
.y154{bottom:378.786667pt;}
.y139{bottom:380.386667pt;}
.y51{bottom:381.186667pt;}
.yd1{bottom:382.306667pt;}
.y2e{bottom:388.226667pt;}
.ybc{bottom:389.506667pt;}
.y94{bottom:390.306667pt;}
.y7a{bottom:391.106667pt;}
.ya8{bottom:392.226667pt;}
.y93{bottom:395.586667pt;}
.yfc{bottom:396.706667pt;}
.y153{bottom:401.826667pt;}
.y11b{bottom:403.426667pt;}
.y50{bottom:404.226667pt;}
.yd0{bottom:405.346667pt;}
.y2d{bottom:407.426667pt;}
.y92{bottom:409.346667pt;}
.yba{bottom:412.386667pt;}
.y79{bottom:413.986667pt;}
.ya7{bottom:415.106667pt;}
.ybb{bottom:419.106667pt;}
.yfb{bottom:419.746667pt;}
.y152{bottom:424.706667pt;}
.y11a{bottom:426.306667pt;}
.y2c{bottom:426.626667pt;}
.y4f{bottom:427.106667pt;}
.ycf{bottom:428.226667pt;}
.y91{bottom:428.546667pt;}
.y138{bottom:430.306667pt;}
.y90{bottom:433.826667pt;}
.yb8{bottom:435.426667pt;}
.y78{bottom:437.026667pt;}
.ya6{bottom:437.986667pt;}
.yb9{bottom:442.146667pt;}
.y2b{bottom:445.666667pt;}
.yfa{bottom:446.626667pt;}
.y151{bottom:447.746667pt;}
.y8f{bottom:448.546667pt;}
.y119{bottom:449.346667pt;}
.y4e{bottom:450.146667pt;}
.yce{bottom:451.266667pt;}
.y137{bottom:453.346667pt;}
.yb7{bottom:458.306667pt;}
.y77{bottom:459.906667pt;}
.ya5{bottom:461.026667pt;}
.y2a{bottom:464.866667pt;}
.yf9{bottom:469.506667pt;}
.y150{bottom:470.626667pt;}
.y118{bottom:472.226667pt;}
.y4d{bottom:473.026667pt;}
.ycd{bottom:474.146667pt;}
.y136{bottom:476.226667pt;}
.yb6{bottom:481.346667pt;}
.y76{bottom:482.946667pt;}
.y29{bottom:483.906667pt;}
.yc2{bottom:488.066667pt;}
.yf8{bottom:492.546667pt;}
.y14f{bottom:493.506667pt;}
.y4c{bottom:495.906667pt;}
.y117{bottom:499.266667pt;}
.y28{bottom:503.106667pt;}
.y8e{bottom:504.226667pt;}
.y75{bottom:505.826667pt;}
.ya4{bottom:506.946667pt;}
.ycc{bottom:508.546667pt;}
.yc1{bottom:510.946667pt;}
.y14e{bottom:516.546667pt;}
.y4b{bottom:518.946667pt;}
.yf7{bottom:519.426667pt;}
.y27{bottom:522.146667pt;}
.y135{bottom:526.146667pt;}
.y8c{bottom:527.266667pt;}
.y74{bottom:528.866667pt;}
.ycb{bottom:530.786667pt;}
.y8d{bottom:533.986667pt;}
.y14d{bottom:539.453333pt;}
.y26{bottom:541.373333pt;}
.y4a{bottom:541.853333pt;}
.yf6{bottom:542.493333pt;}
.y116{bottom:545.053333pt;}
.y134{bottom:549.053333pt;}
.y8b{bottom:550.173333pt;}
.y73{bottom:551.773333pt;}
.yca{bottom:557.853333pt;}
.y25{bottom:560.413333pt;}
.y14c{bottom:562.493333pt;}
.ya3{bottom:563.613333pt;}
.y49{bottom:564.893333pt;}
.yf5{bottom:565.373333pt;}
.y115{bottom:568.093333pt;}
.y133{bottom:572.093333pt;}
.y89{bottom:573.053333pt;}
.ye3{bottom:574.813333pt;}
.ya2{bottom:579.293333pt;}
.y24{bottom:579.613333pt;}
.y8a{bottom:579.773333pt;}
.y72{bottom:585.373333pt;}
.y48{bottom:587.773333pt;}
.yf4{bottom:592.413333pt;}
.y114{bottom:594.973333pt;}
.y88{bottom:596.093333pt;}
.ye2{bottom:597.693333pt;}
.y23{bottom:598.653333pt;}
.y132{bottom:598.973333pt;}
.yc8{bottom:602.813333pt;}
.y14b{bottom:608.413333pt;}
.y47{bottom:610.813333pt;}
.yf3{bottom:615.293333pt;}
.y22{bottom:617.853333pt;}
.y113{bottom:618.013333pt;}
.y71{bottom:618.973333pt;}
.ye1{bottom:620.733333pt;}
.y131{bottom:622.013333pt;}
.y87{bottom:625.693333pt;}
.y14a{bottom:631.293333pt;}
.y46{bottom:633.693333pt;}
.y21{bottom:637.053333pt;}
.y112{bottom:640.893333pt;}
.y70{bottom:642.013333pt;}
.yf2{bottom:642.333333pt;}
.ye0{bottom:643.613333pt;}
.y130{bottom:644.893333pt;}
.y149{bottom:654.333333pt;}
.y20{bottom:656.093333pt;}
.y45{bottom:656.733333pt;}
.y111{bottom:663.933333pt;}
.y6f{bottom:664.893333pt;}
.yf1{bottom:665.213333pt;}
.ydf{bottom:666.493333pt;}
.y12f{bottom:671.933333pt;}
.y1f{bottom:675.933333pt;}
.y148{bottom:677.213333pt;}
.y44{bottom:679.613333pt;}
.y6e{bottom:687.933333pt;}
.yde{bottom:689.533333pt;}
.y110{bottom:690.813333pt;}
.yf0{bottom:692.253333pt;}
.y12e{bottom:694.813333pt;}
.y1e{bottom:698.493333pt;}
.y147{bottom:700.253333pt;}
.y43{bottom:702.653333pt;}
.y6d{bottom:710.813333pt;}
.y10f{bottom:713.853333pt;}
.yef{bottom:715.133333pt;}
.y12d{bottom:717.853333pt;}
.y1d{bottom:719.613333pt;}
.ydd{bottom:723.133333pt;}
.y42{bottom:725.533333pt;}
.y6c{bottom:733.853333pt;}
.yee{bottom:738.013333pt;}
.y1c{bottom:740.573333pt;}
.y10e{bottom:740.733333pt;}
.y12c{bottom:744.733333pt;}
.y146{bottom:746.013333pt;}
.y41{bottom:748.413333pt;}
.y6b{bottom:756.733333pt;}
.yed{bottom:761.053333pt;}
.y1b{bottom:761.693333pt;}
.y10d{bottom:763.773333pt;}
.y12b{bottom:767.773333pt;}
.y145{bottom:769.053333pt;}
.y6a{bottom:779.813333pt;}
.y40{bottom:782.213333pt;}
.y1a{bottom:782.693333pt;}
.yc7{bottom:786.533333pt;}
.y10c{bottom:786.693333pt;}
.yec{bottom:787.973333pt;}
.y144{bottom:791.973333pt;}
.y12a{bottom:794.693333pt;}
.y69{bottom:802.693333pt;}
.y19{bottom:803.813333pt;}
.y86{bottom:809.413333pt;}
.yeb{bottom:811.013333pt;}
.y10b{bottom:813.733333pt;}
.y143{bottom:815.013333pt;}
.y129{bottom:817.733333pt;}
.y3f{bottom:818.053333pt;}
.y18{bottom:824.453333pt;}
.y68{bottom:825.733333pt;}
.yc6{bottom:832.453333pt;}
.yea{bottom:833.893333pt;}
.y10a{bottom:836.613333pt;}
.y142{bottom:837.893333pt;}
.y3e{bottom:840.133333pt;}
.y17{bottom:844.293333pt;}
.y128{bottom:844.613333pt;}
.y67{bottom:848.613333pt;}
.ye9{bottom:856.933333pt;}
.y3d{bottom:859.333333pt;}
.y141{bottom:860.933333pt;}
.y109{bottom:863.493333pt;}
.y16{bottom:867.333333pt;}
.y127{bottom:867.493333pt;}
.y66{bottom:871.493333pt;}
.y3c{bottom:878.533333pt;}
.ye8{bottom:879.813333pt;}
.y140{bottom:883.813333pt;}
.y108{bottom:886.533333pt;}
.y126{bottom:890.533333pt;}
.y15{bottom:890.853333pt;}
.y65{bottom:894.533333pt;}
.y3b{bottom:897.573333pt;}
.yb5{bottom:901.253333pt;}
.ye7{bottom:902.853333pt;}
.y13f{bottom:906.853333pt;}
.y107{bottom:913.413333pt;}
.y3a{bottom:916.773333pt;}
.y64{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.ye6{bottom:929.733333pt;}
.y39{bottom:935.813333pt;}
.y106{bottom:936.453333pt;}
.y63{bottom:940.453333pt;}
.y13{bottom:944.453333pt;}
.ydc{bottom:947.173333pt;}
.ye5{bottom:952.773333pt;}
.y38{bottom:955.013333pt;}
.y62{bottom:963.333333pt;}
.y12{bottom:970.213333pt;}
.y37{bottom:974.213333pt;}
.ye4{bottom:975.653333pt;}
.y60{bottom:986.373333pt;}
.y7{bottom:991.813333pt;}
.y61{bottom:993.093333pt;}
.y36{bottom:993.253333pt;}
.y1{bottom:1008.293333pt;}
.y5f{bottom:1009.253333pt;}
.y35{bottom:1012.480000pt;}
.ydb{bottom:1016.000000pt;}
.hd{height:36.250000pt;}
.h7{height:38.672812pt;}
.hc{height:42.050000pt;}
.h4{height:45.883437pt;}
.h6{height:54.375000pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:60.175000pt;}
.h9{height:64.679063pt;}
.h8{height:66.700000pt;}
.he{height:67.843750pt;}
.hb{height:72.500000pt;}
.h2{height:76.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.x11{left:98.591988pt;}
.x2c{left:100.671988pt;}
.x26{left:102.591988pt;}
.x1b{left:124.191976pt;}
.x1c{left:129.151988pt;}
.x25{left:132.351988pt;}
.x12{left:141.146643pt;}
.x9{left:142.586655pt;}
.x13{left:145.786655pt;}
.x31{left:150.746655pt;}
.x2{left:157.154667pt;}
.x2f{left:160.186643pt;}
.x30{left:169.466655pt;}
.xc{left:212.506643pt;}
.xd{left:217.146655pt;}
.x3d{left:233.946643pt;}
.x35{left:236.826643pt;}
.x3e{left:243.226655pt;}
.x36{left:246.106655pt;}
.x10{left:286.626655pt;}
.x2d{left:322.306643pt;}
.x2e{left:331.586655pt;}
.x40{left:337.826643pt;}
.x41{left:347.426655pt;}
.x43{left:359.746643pt;}
.x44{left:369.026655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x34{left:406.626655pt;}
.x28{left:415.773322pt;}
.x5{left:434.813333pt;}
.x32{left:448.733310pt;}
.x45{left:452.573310pt;}
.x33{left:458.013322pt;}
.x46{left:461.853322pt;}
.xe{left:496.893310pt;}
.xf{left:501.533322pt;}
.x3b{left:510.653310pt;}
.x29{left:514.973310pt;}
.x3c{left:519.933322pt;}
.x2a{left:524.253322pt;}
.x1d{left:528.893310pt;}
.xa{left:532.733310pt;}
.xb{left:537.373322pt;}
.x1e{left:538.493322pt;}
.x23{left:546.333310pt;}
.x24{left:555.613322pt;}
.x21{left:571.293310pt;}
.x22{left:580.573322pt;}
.x16{left:593.733310pt;}
.x17{left:598.373322pt;}
.x39{left:603.973310pt;}
.x1f{left:606.853310pt;}
.x3a{left:613.253322pt;}
.x20{left:616.133322pt;}
.x14{left:622.053310pt;}
.x15{left:626.693322pt;}
.x18{left:637.893310pt;}
.x19{left:642.533322pt;}
.x37{left:669.093310pt;}
.x38{left:678.373322pt;}
.x42{left:682.213322pt;}
.x2b{left:685.733310pt;}
.x6{left:690.853322pt;}
.x1a{left:695.173322pt;}
.x3f{left:697.253322pt;}
.x27{left:698.693322pt;}
}




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