
    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_9f6f257cd8d3ccb404346e3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_e481a65c13adce35ee3a8b92.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_446c404e763fdb52ca074d5b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_707ccccca29b1c156227d477.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_01596963d338a57886432c44.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_8767a5a5ee284237f81fcfef.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_9c4b8f5831275c5a1d00f199.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.732000;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_f773872169899f732bfc2ca5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;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_e5f046da5b0871b562a49a7d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.954000;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_ff235b0d0e9255e9e5939038.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_1c082f378459b19555764c77.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls23{letter-spacing:-0.300000px;}
.ls22{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls55{letter-spacing:-0.048000px;}
.ls17{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.048000px;}
.ls1d{letter-spacing:0.060000px;}
.ls52{letter-spacing:0.096000px;}
.ls56{letter-spacing:0.108000px;}
.ls27{letter-spacing:0.120000px;}
.ls54{letter-spacing:0.135000px;}
.ls10{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.180000px;}
.ls50{letter-spacing:0.192000px;}
.ls28{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.270000px;}
.ls42{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.330000px;}
.ls4b{letter-spacing:0.336000px;}
.ls19{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.396000px;}
.lsa{letter-spacing:0.420000px;}
.ls4e{letter-spacing:0.432000px;}
.ls51{letter-spacing:0.461400px;}
.ls34{letter-spacing:0.471000px;}
.ls33{letter-spacing:0.471600px;}
.ls1a{letter-spacing:0.480000px;}
.ls41{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls4a{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.600000px;}
.ls47{letter-spacing:0.600600px;}
.ls44{letter-spacing:0.624000px;}
.lse{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.672000px;}
.ls1{letter-spacing:0.675000px;}
.ls13{letter-spacing:0.702000px;}
.ls9{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.738000px;}
.ls36{letter-spacing:0.741000px;}
.lsb{letter-spacing:0.750000px;}
.ls32{letter-spacing:0.756000px;}
.ls53{letter-spacing:0.768000px;}
.ls35{letter-spacing:0.772200px;}
.ls16{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.810000px;}
.ls46{letter-spacing:0.816000px;}
.lsd{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.900000px;}
.ls49{letter-spacing:0.912000px;}
.ls30{letter-spacing:0.960000px;}
.ls6{letter-spacing:0.972000px;}
.ls48{letter-spacing:1.008000px;}
.ls3c{letter-spacing:1.012200px;}
.ls21{letter-spacing:1.020000px;}
.ls40{letter-spacing:1.038000px;}
.ls3d{letter-spacing:1.056000px;}
.ls1e{letter-spacing:1.080000px;}
.ls38{letter-spacing:1.096200px;}
.ls2e{letter-spacing:1.101600px;}
.ls0{letter-spacing:1.134000px;}
.ls1b{letter-spacing:1.140000px;}
.ls43{letter-spacing:1.152000px;}
.ls26{letter-spacing:1.200000px;}
.ls25{letter-spacing:1.260000px;}
.ls45{letter-spacing:1.296000px;}
.ls2a{letter-spacing:1.320000px;}
.lsf{letter-spacing:1.350000px;}
.ls20{letter-spacing:1.380000px;}
.ls15{letter-spacing:1.440000px;}
.ls24{letter-spacing:1.500000px;}
.ls2d{letter-spacing:1.560000px;}
.ls31{letter-spacing:1.620000px;}
.ls37{letter-spacing:1.680000px;}
.ls4c{letter-spacing:1.816200px;}
.lsc{letter-spacing:1.860000px;}
.ls2f{letter-spacing:1.920000px;}
.ls2{letter-spacing:1.950000px;}
.ls2b{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.100000px;}
.ls3f{letter-spacing:2.245200px;}
.ls3e{letter-spacing:2.245800px;}
.ls2c{letter-spacing:2.520000px;}
.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;}
}
.ws1{word-spacing:-18.216000px;}
.ws23{word-spacing:-16.698000px;}
.ws14{word-spacing:-16.380000px;}
.ws2b{word-spacing:-16.080000px;}
.ws3d{word-spacing:-15.780000px;}
.ws3e{word-spacing:-15.750000px;}
.ws46{word-spacing:-15.738000px;}
.ws2c{word-spacing:-15.540000px;}
.ws41{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.180000px;}
.ws60{word-spacing:-13.635000px;}
.ws48{word-spacing:-12.624000px;}
.ws47{word-spacing:-12.600000px;}
.ws5f{word-spacing:-12.480000px;}
.ws5e{word-spacing:-11.952000px;}
.ws13{word-spacing:-8.700000px;}
.ws62{word-spacing:-3.888000px;}
.ws57{word-spacing:-2.688000px;}
.ws61{word-spacing:-2.064000px;}
.ws11{word-spacing:-1.860000px;}
.ws35{word-spacing:-1.620000px;}
.ws10{word-spacing:-1.500000px;}
.ws2e{word-spacing:-1.440000px;}
.ws18{word-spacing:-1.380000px;}
.ws2{word-spacing:-1.350000px;}
.ws26{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.296000px;}
.ws16{word-spacing:-1.260000px;}
.ws39{word-spacing:-1.200000px;}
.ws4f{word-spacing:-1.152000px;}
.ws3c{word-spacing:-1.140000px;}
.ws5a{word-spacing:-1.104000px;}
.ws3f{word-spacing:-1.080000px;}
.ws4c{word-spacing:-1.056000px;}
.ws25{word-spacing:-1.020000px;}
.ws55{word-spacing:-1.008000px;}
.wsd{word-spacing:-0.972000px;}
.ws19{word-spacing:-0.960000px;}
.ws52{word-spacing:-0.912000px;}
.ws22{word-spacing:-0.900000px;}
.ws50{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.840000px;}
.ws53{word-spacing:-0.816000px;}
.ws12{word-spacing:-0.780000px;}
.ws21{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.660000px;}
.ws4a{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.576000px;}
.ws5{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.528000px;}
.ws17{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.ws5b{word-spacing:-0.384000px;}
.ws1c{word-spacing:-0.360000px;}
.ws56{word-spacing:-0.336000px;}
.ws30{word-spacing:-0.300000px;}
.ws4e{word-spacing:-0.288000px;}
.ws33{word-spacing:-0.240000px;}
.ws5c{word-spacing:-0.192000px;}
.ws20{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.162000px;}
.ws2a{word-spacing:-0.120000px;}
.ws67{word-spacing:-0.096000px;}
.ws1e{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.054000px;}
.ws58{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws51{word-spacing:0.048000px;}
.ws40{word-spacing:0.060000px;}
.ws5d{word-spacing:0.096000px;}
.ws45{word-spacing:0.120000px;}
.ws66{word-spacing:0.144000px;}
.ws32{word-spacing:0.180000px;}
.ws34{word-spacing:0.240000px;}
.ws64{word-spacing:0.288000px;}
.ws28{word-spacing:0.300000px;}
.ws42{word-spacing:0.360000px;}
.ws1b{word-spacing:0.480000px;}
.ws4b{word-spacing:0.528000px;}
.ws2f{word-spacing:0.540000px;}
.ws38{word-spacing:0.600000px;}
.wsb{word-spacing:0.648000px;}
.ws36{word-spacing:0.660000px;}
.ws63{word-spacing:0.672000px;}
.ws44{word-spacing:0.780000px;}
.ws65{word-spacing:0.816000px;}
.ws43{word-spacing:0.840000px;}
.ws7{word-spacing:0.864000px;}
.wsf{word-spacing:0.900000px;}
.ws1d{word-spacing:0.960000px;}
.ws27{word-spacing:1.020000px;}
.ws1a{word-spacing:1.080000px;}
.ws29{word-spacing:1.140000px;}
.ws8{word-spacing:1.188000px;}
.ws3b{word-spacing:1.200000px;}
.ws2d{word-spacing:1.260000px;}
.ws37{word-spacing:1.320000px;}
.ws3{word-spacing:1.350000px;}
.ws3a{word-spacing:1.380000px;}
.wse{word-spacing:1.500000px;}
.ws68{word-spacing:1.584000px;}
.ws6{word-spacing:9.750000px;}
.ws49{word-spacing:22.176000px;}
._a{margin-left:-16.063200px;}
._9{margin-left:-14.823000px;}
._3{margin-left:-8.298000px;}
._8{margin-left:-7.080000px;}
._4{margin-left:-5.727000px;}
._0{margin-left:-4.725000px;}
._1{margin-left:-2.964600px;}
._2{margin-left:-1.144800px;}
._7{width:1.231200px;}
._5{width:2.327400px;}
._6{width:4.233000px;}
._b{width:33.787800px;}
._12{width:43.840800px;}
._f{width:85.104000px;}
._16{width:98.544000px;}
._13{width:138.528000px;}
._d{width:154.560000px;}
._e{width:203.704800px;}
._c{width:210.852600px;}
._14{width:221.280000px;}
._17{width:229.248000px;}
._10{width:234.624000px;}
._11{width:290.592000px;}
._15{width:354.528000px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:34.800000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.689700px;}
.y11f{bottom:85.824600px;}
.y146{bottom:87.324600px;}
.y182{bottom:87.892950px;}
.y9e{bottom:89.268450px;}
.y1bb{bottom:89.789700px;}
.y51{bottom:91.824600px;}
.y3{bottom:93.317700px;}
.ydd{bottom:93.324600px;}
.y10a{bottom:94.810050px;}
.y12e{bottom:94.824600px;}
.y70{bottom:100.824600px;}
.y136{bottom:102.324600px;}
.y181{bottom:102.892950px;}
.y11e{bottom:105.324600px;}
.y1ba{bottom:106.289700px;}
.y9d{bottom:108.768450px;}
.y2{bottom:109.814700px;}
.y50{bottom:111.324600px;}
.ydc{bottom:112.824600px;}
.y109{bottom:114.310050px;}
.y12d{bottom:114.324600px;}
.y145{bottom:117.324600px;}
.y180{bottom:117.892950px;}
.y6f{bottom:120.324600px;}
.y135{bottom:121.824600px;}
.y1b9{bottom:125.789700px;}
.y9c{bottom:128.268450px;}
.y4f{bottom:130.824600px;}
.ydb{bottom:132.324600px;}
.y17f{bottom:132.892950px;}
.y108{bottom:133.810050px;}
.y11d{bottom:133.824600px;}
.y24{bottom:138.969150px;}
.y6e{bottom:139.824600px;}
.y134{bottom:141.324600px;}
.y1b8{bottom:142.289700px;}
.y144{bottom:147.324600px;}
.y9b{bottom:147.768450px;}
.y17e{bottom:147.892950px;}
.y4e{bottom:150.324600px;}
.yda{bottom:151.824600px;}
.y107{bottom:153.310050px;}
.y11c{bottom:153.324600px;}
.y23{bottom:158.469150px;}
.y6d{bottom:159.324600px;}
.y133{bottom:160.824600px;}
.y143{bottom:162.324600px;}
.y17d{bottom:162.892950px;}
.y9a{bottom:167.268450px;}
.y4d{bottom:169.824600px;}
.yd9{bottom:171.324600px;}
.y106{bottom:172.810050px;}
.y11b{bottom:172.824600px;}
.y142{bottom:177.324600px;}
.y17c{bottom:177.892950px;}
.y22{bottom:177.969150px;}
.y6c{bottom:178.824600px;}
.y132{bottom:180.324600px;}
.y99{bottom:186.768450px;}
.y4c{bottom:189.324600px;}
.yd8{bottom:190.824600px;}
.y105{bottom:192.310050px;}
.y11a{bottom:192.324600px;}
.y17b{bottom:192.892950px;}
.y1b7{bottom:192.904650px;}
.y21{bottom:197.469150px;}
.y6b{bottom:198.324600px;}
.y131{bottom:199.824600px;}
.y98{bottom:206.268450px;}
.y141{bottom:207.324600px;}
.y17a{bottom:207.892950px;}
.y1b6{bottom:207.904650px;}
.y4b{bottom:208.824600px;}
.yd7{bottom:210.324600px;}
.y104{bottom:211.810050px;}
.y119{bottom:211.824600px;}
.y20{bottom:216.969150px;}
.y6a{bottom:217.824600px;}
.y130{bottom:219.324600px;}
.y140{bottom:222.324600px;}
.y179{bottom:222.892950px;}
.y1b5{bottom:222.904650px;}
.y97{bottom:225.768450px;}
.y4a{bottom:228.324600px;}
.y103{bottom:231.310050px;}
.y118{bottom:231.324600px;}
.y1f{bottom:236.469150px;}
.y69{bottom:237.324600px;}
.y178{bottom:237.892950px;}
.y1b4{bottom:237.904650px;}
.yd6{bottom:238.824600px;}
.y96{bottom:245.268450px;}
.y49{bottom:247.824600px;}
.y102{bottom:250.810050px;}
.y117{bottom:250.824600px;}
.y13f{bottom:252.324600px;}
.y177{bottom:252.892950px;}
.y1b3{bottom:252.904650px;}
.y1e{bottom:255.969150px;}
.y68{bottom:256.824600px;}
.yd5{bottom:258.324600px;}
.y12c{bottom:259.824600px;}
.y95{bottom:264.768450px;}
.y48{bottom:267.324600px;}
.y176{bottom:267.892950px;}
.y1b2{bottom:267.904650px;}
.y101{bottom:270.310050px;}
.y116{bottom:270.324600px;}
.y1d{bottom:275.469150px;}
.y67{bottom:276.324600px;}
.yd4{bottom:277.824600px;}
.y12b{bottom:279.324600px;}
.y13e{bottom:282.324600px;}
.y175{bottom:282.892950px;}
.y1b1{bottom:282.904650px;}
.y94{bottom:284.268450px;}
.y47{bottom:286.824600px;}
.y100{bottom:289.810050px;}
.y115{bottom:289.824600px;}
.y1c{bottom:294.969150px;}
.y66{bottom:295.824600px;}
.yd3{bottom:297.324600px;}
.y174{bottom:297.892950px;}
.y1b0{bottom:297.904650px;}
.y12a{bottom:298.824600px;}
.y93{bottom:303.768450px;}
.y46{bottom:306.324600px;}
.yff{bottom:309.310050px;}
.y114{bottom:309.324600px;}
.y13d{bottom:312.324600px;}
.y173{bottom:312.892950px;}
.y1af{bottom:312.904650px;}
.y1b{bottom:314.469150px;}
.y65{bottom:315.324600px;}
.yd2{bottom:316.824600px;}
.y129{bottom:318.324600px;}
.y12f{bottom:319.824600px;}
.y92{bottom:323.268450px;}
.y45{bottom:325.824600px;}
.y13c{bottom:327.324600px;}
.y172{bottom:327.892950px;}
.y1ae{bottom:327.904650px;}
.y113{bottom:328.824600px;}
.y1a{bottom:333.969150px;}
.y64{bottom:334.824600px;}
.yd1{bottom:336.324600px;}
.yfe{bottom:337.810050px;}
.y128{bottom:337.824600px;}
.y13b{bottom:342.324600px;}
.y91{bottom:342.768450px;}
.y171{bottom:342.892950px;}
.y1ad{bottom:342.904650px;}
.y44{bottom:345.324600px;}
.y112{bottom:348.324600px;}
.y19{bottom:353.469150px;}
.y63{bottom:354.324600px;}
.yd0{bottom:355.824600px;}
.yfd{bottom:357.310050px;}
.y127{bottom:357.324600px;}
.y170{bottom:357.892950px;}
.y1ac{bottom:357.904650px;}
.y90{bottom:362.268450px;}
.y43{bottom:364.824600px;}
.y111{bottom:367.824600px;}
.y13a{bottom:372.324600px;}
.y16f{bottom:372.892950px;}
.y1ab{bottom:372.904650px;}
.y18{bottom:372.969150px;}
.y62{bottom:373.824600px;}
.ycf{bottom:375.324600px;}
.yfc{bottom:376.810050px;}
.y126{bottom:376.824600px;}
.y8f{bottom:381.768450px;}
.y42{bottom:384.324600px;}
.y110{bottom:387.324600px;}
.y16e{bottom:387.892950px;}
.y1aa{bottom:387.904650px;}
.y17{bottom:392.469150px;}
.y61{bottom:393.324600px;}
.yce{bottom:394.824600px;}
.yfb{bottom:396.310050px;}
.y125{bottom:396.324600px;}
.y8e{bottom:401.268450px;}
.y16d{bottom:402.892950px;}
.y1a9{bottom:402.904650px;}
.y41{bottom:403.824600px;}
.y139{bottom:405.324600px;}
.y10f{bottom:406.824600px;}
.y16{bottom:411.969150px;}
.y60{bottom:412.824600px;}
.ycd{bottom:414.324600px;}
.yfa{bottom:415.810050px;}
.y124{bottom:415.824600px;}
.y16c{bottom:417.892950px;}
.y1a8{bottom:417.904650px;}
.y8d{bottom:420.768450px;}
.yb7{bottom:423.324600px;}
.y40{bottom:426.324600px;}
.y5f{bottom:432.324600px;}
.y16b{bottom:432.892950px;}
.y1a7{bottom:432.904650px;}
.ycc{bottom:433.824600px;}
.y15{bottom:434.469150px;}
.yf9{bottom:435.310050px;}
.y123{bottom:435.324600px;}
.y8c{bottom:440.268450px;}
.yb6{bottom:442.824600px;}
.y10e{bottom:445.824600px;}
.y16a{bottom:447.892950px;}
.y1a6{bottom:447.904650px;}
.y5e{bottom:451.824600px;}
.ycb{bottom:453.324600px;}
.yf8{bottom:454.810050px;}
.y122{bottom:454.824600px;}
.y138{bottom:459.324600px;}
.y8b{bottom:459.768450px;}
.yb5{bottom:462.324600px;}
.y169{bottom:462.892950px;}
.y1a5{bottom:462.904650px;}
.y10d{bottom:465.324600px;}
.y5d{bottom:471.324600px;}
.yf7{bottom:474.310050px;}
.y121{bottom:474.324600px;}
.yca{bottom:475.824600px;}
.y168{bottom:477.892950px;}
.y1a4{bottom:477.904650px;}
.y8a{bottom:479.268450px;}
.yb4{bottom:481.824600px;}
.y3f{bottom:483.324600px;}
.y10c{bottom:484.824600px;}
.y5c{bottom:490.824600px;}
.y137{bottom:492.324600px;}
.y167{bottom:492.892950px;}
.y1a3{bottom:492.904650px;}
.yf6{bottom:493.810050px;}
.y120{bottom:493.824600px;}
.y14{bottom:494.437650px;}
.y89{bottom:498.768450px;}
.yb3{bottom:501.324600px;}
.y3e{bottom:502.824600px;}
.y166{bottom:507.892950px;}
.y1a2{bottom:507.904650px;}
.y5b{bottom:510.324600px;}
.yf5{bottom:513.310050px;}
.y10b{bottom:513.324600px;}
.y13{bottom:516.186150px;}
.y88{bottom:518.268450px;}
.yb2{bottom:520.824600px;}
.y3d{bottom:522.324600px;}
.y165{bottom:522.892950px;}
.y1a1{bottom:522.904650px;}
.y5a{bottom:529.824600px;}
.yf4{bottom:532.810050px;}
.yc9{bottom:532.824600px;}
.y12{bottom:533.439150px;}
.y87{bottom:537.768450px;}
.y164{bottom:537.892950px;}
.y1a0{bottom:537.904650px;}
.yb1{bottom:540.324600px;}
.y3c{bottom:541.824600px;}
.y59{bottom:549.324600px;}
.y11{bottom:550.692150px;}
.yf3{bottom:552.310050px;}
.yc8{bottom:552.324600px;}
.y163{bottom:552.892950px;}
.y19f{bottom:552.904650px;}
.y86{bottom:557.268450px;}
.yb0{bottom:559.824600px;}
.y3b{bottom:561.324600px;}
.y162{bottom:567.892950px;}
.y19e{bottom:567.904650px;}
.y10{bottom:567.945150px;}
.y58{bottom:568.824600px;}
.yf2{bottom:571.810050px;}
.yc7{bottom:571.824600px;}
.y85{bottom:576.768450px;}
.yaf{bottom:579.324600px;}
.y3a{bottom:580.824600px;}
.y161{bottom:582.892950px;}
.y19d{bottom:582.904650px;}
.yf{bottom:585.198150px;}
.y57{bottom:588.324600px;}
.yf1{bottom:591.310050px;}
.yc6{bottom:591.324600px;}
.y84{bottom:596.268450px;}
.y160{bottom:597.892950px;}
.y19c{bottom:597.904650px;}
.yae{bottom:598.824600px;}
.y39{bottom:600.324600px;}
.ye{bottom:602.451150px;}
.y56{bottom:607.824600px;}
.yf0{bottom:610.810050px;}
.yc5{bottom:610.824600px;}
.y15f{bottom:612.892950px;}
.y19b{bottom:612.904650px;}
.y83{bottom:615.768450px;}
.yad{bottom:618.324600px;}
.yd{bottom:619.704150px;}
.y38{bottom:619.824600px;}
.y55{bottom:627.324600px;}
.y15e{bottom:627.892950px;}
.y19a{bottom:627.904650px;}
.yef{bottom:630.310050px;}
.yc4{bottom:630.324600px;}
.y82{bottom:635.268450px;}
.yc{bottom:636.957150px;}
.yac{bottom:637.824600px;}
.y37{bottom:639.324600px;}
.y15d{bottom:642.892950px;}
.y199{bottom:642.904650px;}
.y54{bottom:646.824600px;}
.yee{bottom:649.810050px;}
.yc3{bottom:649.824600px;}
.yb{bottom:654.210150px;}
.y81{bottom:654.768450px;}
.yab{bottom:657.324600px;}
.y15c{bottom:657.892950px;}
.y198{bottom:657.904650px;}
.y36{bottom:658.824600px;}
.yed{bottom:669.310050px;}
.y53{bottom:669.324600px;}
.ya{bottom:671.463150px;}
.y15b{bottom:672.892950px;}
.y197{bottom:672.904650px;}
.y80{bottom:674.268450px;}
.yaa{bottom:676.824600px;}
.y35{bottom:678.324600px;}
.y15a{bottom:687.892950px;}
.y196{bottom:687.904650px;}
.y9{bottom:688.716150px;}
.yec{bottom:688.810050px;}
.yc2{bottom:688.824600px;}
.y7f{bottom:693.768450px;}
.ya9{bottom:696.324600px;}
.y34{bottom:697.824600px;}
.y159{bottom:702.892950px;}
.y195{bottom:702.904650px;}
.y8{bottom:705.969150px;}
.yeb{bottom:708.310050px;}
.yc1{bottom:708.324600px;}
.y7e{bottom:713.268450px;}
.ya8{bottom:715.824600px;}
.y33{bottom:717.324600px;}
.y158{bottom:717.892950px;}
.y194{bottom:717.904650px;}
.y7{bottom:726.219150px;}
.yea{bottom:727.810050px;}
.yc0{bottom:727.824600px;}
.y7d{bottom:732.768450px;}
.y157{bottom:732.892950px;}
.y193{bottom:732.904650px;}
.ya7{bottom:735.324600px;}
.y32{bottom:736.824600px;}
.ye9{bottom:747.310050px;}
.ybf{bottom:747.324600px;}
.y156{bottom:747.892950px;}
.y192{bottom:747.904650px;}
.y7c{bottom:752.268450px;}
.ya6{bottom:754.824600px;}
.y31{bottom:756.324600px;}
.y155{bottom:762.892950px;}
.y191{bottom:762.904650px;}
.ye8{bottom:766.810050px;}
.ybe{bottom:766.824600px;}
.y7b{bottom:771.768450px;}
.ya5{bottom:774.324600px;}
.y30{bottom:775.824600px;}
.y154{bottom:777.892950px;}
.y190{bottom:777.904650px;}
.ybd{bottom:786.324600px;}
.y7a{bottom:791.268450px;}
.y153{bottom:792.892950px;}
.y18f{bottom:792.904650px;}
.ya4{bottom:793.824600px;}
.ye7{bottom:795.310050px;}
.y2f{bottom:795.324600px;}
.y6{bottom:796.719150px;}
.y152{bottom:807.892950px;}
.y18e{bottom:807.904650px;}
.y79{bottom:810.768450px;}
.ya3{bottom:813.324600px;}
.ye6{bottom:814.810050px;}
.y2e{bottom:814.824600px;}
.y151{bottom:822.892950px;}
.y18d{bottom:822.904650px;}
.ybc{bottom:823.824600px;}
.y78{bottom:830.268450px;}
.ya2{bottom:832.824600px;}
.ye5{bottom:834.310050px;}
.y2d{bottom:834.324600px;}
.y150{bottom:837.892950px;}
.y18c{bottom:837.904650px;}
.ybb{bottom:841.824600px;}
.y77{bottom:849.768450px;}
.ya1{bottom:852.324600px;}
.y14f{bottom:852.892950px;}
.y18b{bottom:852.904650px;}
.ye4{bottom:853.810050px;}
.y2c{bottom:853.824600px;}
.yba{bottom:859.824600px;}
.y14e{bottom:867.892950px;}
.y18a{bottom:867.904650px;}
.y76{bottom:869.268450px;}
.ya0{bottom:871.824600px;}
.y5{bottom:873.219150px;}
.ye3{bottom:873.310050px;}
.y2b{bottom:873.324600px;}
.y14d{bottom:882.892950px;}
.y189{bottom:882.904650px;}
.yb9{bottom:883.824600px;}
.y75{bottom:888.768450px;}
.ye2{bottom:892.810050px;}
.y2a{bottom:892.824600px;}
.y9f{bottom:894.324600px;}
.y14c{bottom:897.892950px;}
.y188{bottom:897.904650px;}
.y4{bottom:907.719150px;}
.y74{bottom:908.268450px;}
.ye1{bottom:912.310050px;}
.y29{bottom:912.324600px;}
.y14b{bottom:912.892950px;}
.y187{bottom:912.904650px;}
.yb8{bottom:916.824600px;}
.y73{bottom:927.768450px;}
.y14a{bottom:927.892950px;}
.y186{bottom:927.904650px;}
.ye0{bottom:931.810050px;}
.y28{bottom:931.824600px;}
.y149{bottom:942.892950px;}
.y185{bottom:942.904650px;}
.y72{bottom:947.268450px;}
.ydf{bottom:951.310050px;}
.y27{bottom:951.324600px;}
.y148{bottom:957.892950px;}
.y184{bottom:957.904650px;}
.y71{bottom:969.768450px;}
.yde{bottom:970.810050px;}
.y26{bottom:970.824600px;}
.y147{bottom:972.892950px;}
.y183{bottom:972.904650px;}
.y25{bottom:1004.527200px;}
.y52{bottom:1004.864700px;}
.hf{height:33.351562px;}
.hd{height:35.376000px;}
.h7{height:37.520508px;}
.hc{height:39.312000px;}
.he{height:40.031250px;}
.h6{height:40.664062px;}
.ha{height:41.689453px;}
.h2{height:45.035156px;}
.hb{height:45.826172px;}
.h8{height:48.796875px;}
.h9{height:50.039062px;}
.h4{height:62.490234px;}
.h5{height:65.050781px;}
.h3{height:110.085938px;}
.h1{height:1062.750000px;}
.h0{height:1062.975000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:90.750000px;}
.x2{left:99.000000px;}
.x8{left:108.750000px;}
.x6{left:117.000000px;}
.xa{left:126.000000px;}
.x4{left:193.877850px;}
.x3{left:211.681050px;}
.x5{left:229.888800px;}
.x9{left:503.507250px;}
.x1{left:618.262500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls22{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls55{letter-spacing:-0.042667pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.042667pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls52{letter-spacing:0.085333pt;}
.ls56{letter-spacing:0.096000pt;}
.ls27{letter-spacing:0.106667pt;}
.ls54{letter-spacing:0.120000pt;}
.ls10{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls50{letter-spacing:0.170667pt;}
.ls28{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.240000pt;}
.ls42{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.293333pt;}
.ls4b{letter-spacing:0.298667pt;}
.ls19{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.352000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls4e{letter-spacing:0.384000pt;}
.ls51{letter-spacing:0.410133pt;}
.ls34{letter-spacing:0.418667pt;}
.ls33{letter-spacing:0.419200pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls41{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls4a{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls47{letter-spacing:0.533867pt;}
.ls44{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.597333pt;}
.ls1{letter-spacing:0.600000pt;}
.ls13{letter-spacing:0.624000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.656000pt;}
.ls36{letter-spacing:0.658667pt;}
.lsb{letter-spacing:0.666667pt;}
.ls32{letter-spacing:0.672000pt;}
.ls53{letter-spacing:0.682667pt;}
.ls35{letter-spacing:0.686400pt;}
.ls16{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.720000pt;}
.ls46{letter-spacing:0.725333pt;}
.lsd{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls49{letter-spacing:0.810667pt;}
.ls30{letter-spacing:0.853333pt;}
.ls6{letter-spacing:0.864000pt;}
.ls48{letter-spacing:0.896000pt;}
.ls3c{letter-spacing:0.899733pt;}
.ls21{letter-spacing:0.906667pt;}
.ls40{letter-spacing:0.922667pt;}
.ls3d{letter-spacing:0.938667pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls38{letter-spacing:0.974400pt;}
.ls2e{letter-spacing:0.979200pt;}
.ls0{letter-spacing:1.008000pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls43{letter-spacing:1.024000pt;}
.ls26{letter-spacing:1.066667pt;}
.ls25{letter-spacing:1.120000pt;}
.ls45{letter-spacing:1.152000pt;}
.ls2a{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1.200000pt;}
.ls20{letter-spacing:1.226667pt;}
.ls15{letter-spacing:1.280000pt;}
.ls24{letter-spacing:1.333333pt;}
.ls2d{letter-spacing:1.386667pt;}
.ls31{letter-spacing:1.440000pt;}
.ls37{letter-spacing:1.493333pt;}
.ls4c{letter-spacing:1.614400pt;}
.lsc{letter-spacing:1.653333pt;}
.ls2f{letter-spacing:1.706667pt;}
.ls2{letter-spacing:1.733333pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.866667pt;}
.ls3f{letter-spacing:1.995733pt;}
.ls3e{letter-spacing:1.996267pt;}
.ls2c{letter-spacing:2.240000pt;}
.ws1{word-spacing:-16.192000pt;}
.ws23{word-spacing:-14.842667pt;}
.ws14{word-spacing:-14.560000pt;}
.ws2b{word-spacing:-14.293333pt;}
.ws3d{word-spacing:-14.026667pt;}
.ws3e{word-spacing:-14.000000pt;}
.ws46{word-spacing:-13.989333pt;}
.ws2c{word-spacing:-13.813333pt;}
.ws41{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.493333pt;}
.ws60{word-spacing:-12.120000pt;}
.ws48{word-spacing:-11.221333pt;}
.ws47{word-spacing:-11.200000pt;}
.ws5f{word-spacing:-11.093333pt;}
.ws5e{word-spacing:-10.624000pt;}
.ws13{word-spacing:-7.733333pt;}
.ws62{word-spacing:-3.456000pt;}
.ws57{word-spacing:-2.389333pt;}
.ws61{word-spacing:-1.834667pt;}
.ws11{word-spacing:-1.653333pt;}
.ws35{word-spacing:-1.440000pt;}
.ws10{word-spacing:-1.333333pt;}
.ws2e{word-spacing:-1.280000pt;}
.ws18{word-spacing:-1.226667pt;}
.ws2{word-spacing:-1.200000pt;}
.ws26{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.152000pt;}
.ws16{word-spacing:-1.120000pt;}
.ws39{word-spacing:-1.066667pt;}
.ws4f{word-spacing:-1.024000pt;}
.ws3c{word-spacing:-1.013333pt;}
.ws5a{word-spacing:-0.981333pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws4c{word-spacing:-0.938667pt;}
.ws25{word-spacing:-0.906667pt;}
.ws55{word-spacing:-0.896000pt;}
.wsd{word-spacing:-0.864000pt;}
.ws19{word-spacing:-0.853333pt;}
.ws52{word-spacing:-0.810667pt;}
.ws22{word-spacing:-0.800000pt;}
.ws50{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.746667pt;}
.ws53{word-spacing:-0.725333pt;}
.ws12{word-spacing:-0.693333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.586667pt;}
.ws4a{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.512000pt;}
.ws5{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.469333pt;}
.ws17{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.ws5b{word-spacing:-0.341333pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws56{word-spacing:-0.298667pt;}
.ws30{word-spacing:-0.266667pt;}
.ws4e{word-spacing:-0.256000pt;}
.ws33{word-spacing:-0.213333pt;}
.ws5c{word-spacing:-0.170667pt;}
.ws20{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.144000pt;}
.ws2a{word-spacing:-0.106667pt;}
.ws67{word-spacing:-0.085333pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.048000pt;}
.ws58{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws51{word-spacing:0.042667pt;}
.ws40{word-spacing:0.053333pt;}
.ws5d{word-spacing:0.085333pt;}
.ws45{word-spacing:0.106667pt;}
.ws66{word-spacing:0.128000pt;}
.ws32{word-spacing:0.160000pt;}
.ws34{word-spacing:0.213333pt;}
.ws64{word-spacing:0.256000pt;}
.ws28{word-spacing:0.266667pt;}
.ws42{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.469333pt;}
.ws2f{word-spacing:0.480000pt;}
.ws38{word-spacing:0.533333pt;}
.wsb{word-spacing:0.576000pt;}
.ws36{word-spacing:0.586667pt;}
.ws63{word-spacing:0.597333pt;}
.ws44{word-spacing:0.693333pt;}
.ws65{word-spacing:0.725333pt;}
.ws43{word-spacing:0.746667pt;}
.ws7{word-spacing:0.768000pt;}
.wsf{word-spacing:0.800000pt;}
.ws1d{word-spacing:0.853333pt;}
.ws27{word-spacing:0.906667pt;}
.ws1a{word-spacing:0.960000pt;}
.ws29{word-spacing:1.013333pt;}
.ws8{word-spacing:1.056000pt;}
.ws3b{word-spacing:1.066667pt;}
.ws2d{word-spacing:1.120000pt;}
.ws37{word-spacing:1.173333pt;}
.ws3{word-spacing:1.200000pt;}
.ws3a{word-spacing:1.226667pt;}
.wse{word-spacing:1.333333pt;}
.ws68{word-spacing:1.408000pt;}
.ws6{word-spacing:8.666667pt;}
.ws49{word-spacing:19.712000pt;}
._a{margin-left:-14.278400pt;}
._9{margin-left:-13.176000pt;}
._3{margin-left:-7.376000pt;}
._8{margin-left:-6.293333pt;}
._4{margin-left:-5.090667pt;}
._0{margin-left:-4.200000pt;}
._1{margin-left:-2.635200pt;}
._2{margin-left:-1.017600pt;}
._7{width:1.094400pt;}
._5{width:2.068800pt;}
._6{width:3.762667pt;}
._b{width:30.033600pt;}
._12{width:38.969600pt;}
._f{width:75.648000pt;}
._16{width:87.594667pt;}
._13{width:123.136000pt;}
._d{width:137.386667pt;}
._e{width:181.070933pt;}
._c{width:187.424533pt;}
._14{width:196.693333pt;}
._17{width:203.776000pt;}
._10{width:208.554667pt;}
._11{width:258.304000pt;}
._15{width:315.136000pt;}
.fs6{font-size:30.933333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.946400pt;}
.y11f{bottom:76.288533pt;}
.y146{bottom:77.621867pt;}
.y182{bottom:78.127067pt;}
.y9e{bottom:79.349733pt;}
.y1bb{bottom:79.813067pt;}
.y51{bottom:81.621867pt;}
.y3{bottom:82.949067pt;}
.ydd{bottom:82.955200pt;}
.y10a{bottom:84.275600pt;}
.y12e{bottom:84.288533pt;}
.y70{bottom:89.621867pt;}
.y136{bottom:90.955200pt;}
.y181{bottom:91.460400pt;}
.y11e{bottom:93.621867pt;}
.y1ba{bottom:94.479733pt;}
.y9d{bottom:96.683067pt;}
.y2{bottom:97.613067pt;}
.y50{bottom:98.955200pt;}
.ydc{bottom:100.288533pt;}
.y109{bottom:101.608933pt;}
.y12d{bottom:101.621867pt;}
.y145{bottom:104.288533pt;}
.y180{bottom:104.793733pt;}
.y6f{bottom:106.955200pt;}
.y135{bottom:108.288533pt;}
.y1b9{bottom:111.813067pt;}
.y9c{bottom:114.016400pt;}
.y4f{bottom:116.288533pt;}
.ydb{bottom:117.621867pt;}
.y17f{bottom:118.127067pt;}
.y108{bottom:118.942267pt;}
.y11d{bottom:118.955200pt;}
.y24{bottom:123.528133pt;}
.y6e{bottom:124.288533pt;}
.y134{bottom:125.621867pt;}
.y1b8{bottom:126.479733pt;}
.y144{bottom:130.955200pt;}
.y9b{bottom:131.349733pt;}
.y17e{bottom:131.460400pt;}
.y4e{bottom:133.621867pt;}
.yda{bottom:134.955200pt;}
.y107{bottom:136.275600pt;}
.y11c{bottom:136.288533pt;}
.y23{bottom:140.861467pt;}
.y6d{bottom:141.621867pt;}
.y133{bottom:142.955200pt;}
.y143{bottom:144.288533pt;}
.y17d{bottom:144.793733pt;}
.y9a{bottom:148.683067pt;}
.y4d{bottom:150.955200pt;}
.yd9{bottom:152.288533pt;}
.y106{bottom:153.608933pt;}
.y11b{bottom:153.621867pt;}
.y142{bottom:157.621867pt;}
.y17c{bottom:158.127067pt;}
.y22{bottom:158.194800pt;}
.y6c{bottom:158.955200pt;}
.y132{bottom:160.288533pt;}
.y99{bottom:166.016400pt;}
.y4c{bottom:168.288533pt;}
.yd8{bottom:169.621867pt;}
.y105{bottom:170.942267pt;}
.y11a{bottom:170.955200pt;}
.y17b{bottom:171.460400pt;}
.y1b7{bottom:171.470800pt;}
.y21{bottom:175.528133pt;}
.y6b{bottom:176.288533pt;}
.y131{bottom:177.621867pt;}
.y98{bottom:183.349733pt;}
.y141{bottom:184.288533pt;}
.y17a{bottom:184.793733pt;}
.y1b6{bottom:184.804133pt;}
.y4b{bottom:185.621867pt;}
.yd7{bottom:186.955200pt;}
.y104{bottom:188.275600pt;}
.y119{bottom:188.288533pt;}
.y20{bottom:192.861467pt;}
.y6a{bottom:193.621867pt;}
.y130{bottom:194.955200pt;}
.y140{bottom:197.621867pt;}
.y179{bottom:198.127067pt;}
.y1b5{bottom:198.137467pt;}
.y97{bottom:200.683067pt;}
.y4a{bottom:202.955200pt;}
.y103{bottom:205.608933pt;}
.y118{bottom:205.621867pt;}
.y1f{bottom:210.194800pt;}
.y69{bottom:210.955200pt;}
.y178{bottom:211.460400pt;}
.y1b4{bottom:211.470800pt;}
.yd6{bottom:212.288533pt;}
.y96{bottom:218.016400pt;}
.y49{bottom:220.288533pt;}
.y102{bottom:222.942267pt;}
.y117{bottom:222.955200pt;}
.y13f{bottom:224.288533pt;}
.y177{bottom:224.793733pt;}
.y1b3{bottom:224.804133pt;}
.y1e{bottom:227.528133pt;}
.y68{bottom:228.288533pt;}
.yd5{bottom:229.621867pt;}
.y12c{bottom:230.955200pt;}
.y95{bottom:235.349733pt;}
.y48{bottom:237.621867pt;}
.y176{bottom:238.127067pt;}
.y1b2{bottom:238.137467pt;}
.y101{bottom:240.275600pt;}
.y116{bottom:240.288533pt;}
.y1d{bottom:244.861467pt;}
.y67{bottom:245.621867pt;}
.yd4{bottom:246.955200pt;}
.y12b{bottom:248.288533pt;}
.y13e{bottom:250.955200pt;}
.y175{bottom:251.460400pt;}
.y1b1{bottom:251.470800pt;}
.y94{bottom:252.683067pt;}
.y47{bottom:254.955200pt;}
.y100{bottom:257.608933pt;}
.y115{bottom:257.621867pt;}
.y1c{bottom:262.194800pt;}
.y66{bottom:262.955200pt;}
.yd3{bottom:264.288533pt;}
.y174{bottom:264.793733pt;}
.y1b0{bottom:264.804133pt;}
.y12a{bottom:265.621867pt;}
.y93{bottom:270.016400pt;}
.y46{bottom:272.288533pt;}
.yff{bottom:274.942267pt;}
.y114{bottom:274.955200pt;}
.y13d{bottom:277.621867pt;}
.y173{bottom:278.127067pt;}
.y1af{bottom:278.137467pt;}
.y1b{bottom:279.528133pt;}
.y65{bottom:280.288533pt;}
.yd2{bottom:281.621867pt;}
.y129{bottom:282.955200pt;}
.y12f{bottom:284.288533pt;}
.y92{bottom:287.349733pt;}
.y45{bottom:289.621867pt;}
.y13c{bottom:290.955200pt;}
.y172{bottom:291.460400pt;}
.y1ae{bottom:291.470800pt;}
.y113{bottom:292.288533pt;}
.y1a{bottom:296.861467pt;}
.y64{bottom:297.621867pt;}
.yd1{bottom:298.955200pt;}
.yfe{bottom:300.275600pt;}
.y128{bottom:300.288533pt;}
.y13b{bottom:304.288533pt;}
.y91{bottom:304.683067pt;}
.y171{bottom:304.793733pt;}
.y1ad{bottom:304.804133pt;}
.y44{bottom:306.955200pt;}
.y112{bottom:309.621867pt;}
.y19{bottom:314.194800pt;}
.y63{bottom:314.955200pt;}
.yd0{bottom:316.288533pt;}
.yfd{bottom:317.608933pt;}
.y127{bottom:317.621867pt;}
.y170{bottom:318.127067pt;}
.y1ac{bottom:318.137467pt;}
.y90{bottom:322.016400pt;}
.y43{bottom:324.288533pt;}
.y111{bottom:326.955200pt;}
.y13a{bottom:330.955200pt;}
.y16f{bottom:331.460400pt;}
.y1ab{bottom:331.470800pt;}
.y18{bottom:331.528133pt;}
.y62{bottom:332.288533pt;}
.ycf{bottom:333.621867pt;}
.yfc{bottom:334.942267pt;}
.y126{bottom:334.955200pt;}
.y8f{bottom:339.349733pt;}
.y42{bottom:341.621867pt;}
.y110{bottom:344.288533pt;}
.y16e{bottom:344.793733pt;}
.y1aa{bottom:344.804133pt;}
.y17{bottom:348.861467pt;}
.y61{bottom:349.621867pt;}
.yce{bottom:350.955200pt;}
.yfb{bottom:352.275600pt;}
.y125{bottom:352.288533pt;}
.y8e{bottom:356.683067pt;}
.y16d{bottom:358.127067pt;}
.y1a9{bottom:358.137467pt;}
.y41{bottom:358.955200pt;}
.y139{bottom:360.288533pt;}
.y10f{bottom:361.621867pt;}
.y16{bottom:366.194800pt;}
.y60{bottom:366.955200pt;}
.ycd{bottom:368.288533pt;}
.yfa{bottom:369.608933pt;}
.y124{bottom:369.621867pt;}
.y16c{bottom:371.460400pt;}
.y1a8{bottom:371.470800pt;}
.y8d{bottom:374.016400pt;}
.yb7{bottom:376.288533pt;}
.y40{bottom:378.955200pt;}
.y5f{bottom:384.288533pt;}
.y16b{bottom:384.793733pt;}
.y1a7{bottom:384.804133pt;}
.ycc{bottom:385.621867pt;}
.y15{bottom:386.194800pt;}
.yf9{bottom:386.942267pt;}
.y123{bottom:386.955200pt;}
.y8c{bottom:391.349733pt;}
.yb6{bottom:393.621867pt;}
.y10e{bottom:396.288533pt;}
.y16a{bottom:398.127067pt;}
.y1a6{bottom:398.137467pt;}
.y5e{bottom:401.621867pt;}
.ycb{bottom:402.955200pt;}
.yf8{bottom:404.275600pt;}
.y122{bottom:404.288533pt;}
.y138{bottom:408.288533pt;}
.y8b{bottom:408.683067pt;}
.yb5{bottom:410.955200pt;}
.y169{bottom:411.460400pt;}
.y1a5{bottom:411.470800pt;}
.y10d{bottom:413.621867pt;}
.y5d{bottom:418.955200pt;}
.yf7{bottom:421.608933pt;}
.y121{bottom:421.621867pt;}
.yca{bottom:422.955200pt;}
.y168{bottom:424.793733pt;}
.y1a4{bottom:424.804133pt;}
.y8a{bottom:426.016400pt;}
.yb4{bottom:428.288533pt;}
.y3f{bottom:429.621867pt;}
.y10c{bottom:430.955200pt;}
.y5c{bottom:436.288533pt;}
.y137{bottom:437.621867pt;}
.y167{bottom:438.127067pt;}
.y1a3{bottom:438.137467pt;}
.yf6{bottom:438.942267pt;}
.y120{bottom:438.955200pt;}
.y14{bottom:439.500133pt;}
.y89{bottom:443.349733pt;}
.yb3{bottom:445.621867pt;}
.y3e{bottom:446.955200pt;}
.y166{bottom:451.460400pt;}
.y1a2{bottom:451.470800pt;}
.y5b{bottom:453.621867pt;}
.yf5{bottom:456.275600pt;}
.y10b{bottom:456.288533pt;}
.y13{bottom:458.832133pt;}
.y88{bottom:460.683067pt;}
.yb2{bottom:462.955200pt;}
.y3d{bottom:464.288533pt;}
.y165{bottom:464.793733pt;}
.y1a1{bottom:464.804133pt;}
.y5a{bottom:470.955200pt;}
.yf4{bottom:473.608933pt;}
.yc9{bottom:473.621867pt;}
.y12{bottom:474.168133pt;}
.y87{bottom:478.016400pt;}
.y164{bottom:478.127067pt;}
.y1a0{bottom:478.137467pt;}
.yb1{bottom:480.288533pt;}
.y3c{bottom:481.621867pt;}
.y59{bottom:488.288533pt;}
.y11{bottom:489.504133pt;}
.yf3{bottom:490.942267pt;}
.yc8{bottom:490.955200pt;}
.y163{bottom:491.460400pt;}
.y19f{bottom:491.470800pt;}
.y86{bottom:495.349733pt;}
.yb0{bottom:497.621867pt;}
.y3b{bottom:498.955200pt;}
.y162{bottom:504.793733pt;}
.y19e{bottom:504.804133pt;}
.y10{bottom:504.840133pt;}
.y58{bottom:505.621867pt;}
.yf2{bottom:508.275600pt;}
.yc7{bottom:508.288533pt;}
.y85{bottom:512.683067pt;}
.yaf{bottom:514.955200pt;}
.y3a{bottom:516.288533pt;}
.y161{bottom:518.127067pt;}
.y19d{bottom:518.137467pt;}
.yf{bottom:520.176133pt;}
.y57{bottom:522.955200pt;}
.yf1{bottom:525.608933pt;}
.yc6{bottom:525.621867pt;}
.y84{bottom:530.016400pt;}
.y160{bottom:531.460400pt;}
.y19c{bottom:531.470800pt;}
.yae{bottom:532.288533pt;}
.y39{bottom:533.621867pt;}
.ye{bottom:535.512133pt;}
.y56{bottom:540.288533pt;}
.yf0{bottom:542.942267pt;}
.yc5{bottom:542.955200pt;}
.y15f{bottom:544.793733pt;}
.y19b{bottom:544.804133pt;}
.y83{bottom:547.349733pt;}
.yad{bottom:549.621867pt;}
.yd{bottom:550.848133pt;}
.y38{bottom:550.955200pt;}
.y55{bottom:557.621867pt;}
.y15e{bottom:558.127067pt;}
.y19a{bottom:558.137467pt;}
.yef{bottom:560.275600pt;}
.yc4{bottom:560.288533pt;}
.y82{bottom:564.683067pt;}
.yc{bottom:566.184133pt;}
.yac{bottom:566.955200pt;}
.y37{bottom:568.288533pt;}
.y15d{bottom:571.460400pt;}
.y199{bottom:571.470800pt;}
.y54{bottom:574.955200pt;}
.yee{bottom:577.608933pt;}
.yc3{bottom:577.621867pt;}
.yb{bottom:581.520133pt;}
.y81{bottom:582.016400pt;}
.yab{bottom:584.288533pt;}
.y15c{bottom:584.793733pt;}
.y198{bottom:584.804133pt;}
.y36{bottom:585.621867pt;}
.yed{bottom:594.942267pt;}
.y53{bottom:594.955200pt;}
.ya{bottom:596.856133pt;}
.y15b{bottom:598.127067pt;}
.y197{bottom:598.137467pt;}
.y80{bottom:599.349733pt;}
.yaa{bottom:601.621867pt;}
.y35{bottom:602.955200pt;}
.y15a{bottom:611.460400pt;}
.y196{bottom:611.470800pt;}
.y9{bottom:612.192133pt;}
.yec{bottom:612.275600pt;}
.yc2{bottom:612.288533pt;}
.y7f{bottom:616.683067pt;}
.ya9{bottom:618.955200pt;}
.y34{bottom:620.288533pt;}
.y159{bottom:624.793733pt;}
.y195{bottom:624.804133pt;}
.y8{bottom:627.528133pt;}
.yeb{bottom:629.608933pt;}
.yc1{bottom:629.621867pt;}
.y7e{bottom:634.016400pt;}
.ya8{bottom:636.288533pt;}
.y33{bottom:637.621867pt;}
.y158{bottom:638.127067pt;}
.y194{bottom:638.137467pt;}
.y7{bottom:645.528133pt;}
.yea{bottom:646.942267pt;}
.yc0{bottom:646.955200pt;}
.y7d{bottom:651.349733pt;}
.y157{bottom:651.460400pt;}
.y193{bottom:651.470800pt;}
.ya7{bottom:653.621867pt;}
.y32{bottom:654.955200pt;}
.ye9{bottom:664.275600pt;}
.ybf{bottom:664.288533pt;}
.y156{bottom:664.793733pt;}
.y192{bottom:664.804133pt;}
.y7c{bottom:668.683067pt;}
.ya6{bottom:670.955200pt;}
.y31{bottom:672.288533pt;}
.y155{bottom:678.127067pt;}
.y191{bottom:678.137467pt;}
.ye8{bottom:681.608933pt;}
.ybe{bottom:681.621867pt;}
.y7b{bottom:686.016400pt;}
.ya5{bottom:688.288533pt;}
.y30{bottom:689.621867pt;}
.y154{bottom:691.460400pt;}
.y190{bottom:691.470800pt;}
.ybd{bottom:698.955200pt;}
.y7a{bottom:703.349733pt;}
.y153{bottom:704.793733pt;}
.y18f{bottom:704.804133pt;}
.ya4{bottom:705.621867pt;}
.ye7{bottom:706.942267pt;}
.y2f{bottom:706.955200pt;}
.y6{bottom:708.194800pt;}
.y152{bottom:718.127067pt;}
.y18e{bottom:718.137467pt;}
.y79{bottom:720.683067pt;}
.ya3{bottom:722.955200pt;}
.ye6{bottom:724.275600pt;}
.y2e{bottom:724.288533pt;}
.y151{bottom:731.460400pt;}
.y18d{bottom:731.470800pt;}
.ybc{bottom:732.288533pt;}
.y78{bottom:738.016400pt;}
.ya2{bottom:740.288533pt;}
.ye5{bottom:741.608933pt;}
.y2d{bottom:741.621867pt;}
.y150{bottom:744.793733pt;}
.y18c{bottom:744.804133pt;}
.ybb{bottom:748.288533pt;}
.y77{bottom:755.349733pt;}
.ya1{bottom:757.621867pt;}
.y14f{bottom:758.127067pt;}
.y18b{bottom:758.137467pt;}
.ye4{bottom:758.942267pt;}
.y2c{bottom:758.955200pt;}
.yba{bottom:764.288533pt;}
.y14e{bottom:771.460400pt;}
.y18a{bottom:771.470800pt;}
.y76{bottom:772.683067pt;}
.ya0{bottom:774.955200pt;}
.y5{bottom:776.194800pt;}
.ye3{bottom:776.275600pt;}
.y2b{bottom:776.288533pt;}
.y14d{bottom:784.793733pt;}
.y189{bottom:784.804133pt;}
.yb9{bottom:785.621867pt;}
.y75{bottom:790.016400pt;}
.ye2{bottom:793.608933pt;}
.y2a{bottom:793.621867pt;}
.y9f{bottom:794.955200pt;}
.y14c{bottom:798.127067pt;}
.y188{bottom:798.137467pt;}
.y4{bottom:806.861467pt;}
.y74{bottom:807.349733pt;}
.ye1{bottom:810.942267pt;}
.y29{bottom:810.955200pt;}
.y14b{bottom:811.460400pt;}
.y187{bottom:811.470800pt;}
.yb8{bottom:814.955200pt;}
.y73{bottom:824.683067pt;}
.y14a{bottom:824.793733pt;}
.y186{bottom:824.804133pt;}
.ye0{bottom:828.275600pt;}
.y28{bottom:828.288533pt;}
.y149{bottom:838.127067pt;}
.y185{bottom:838.137467pt;}
.y72{bottom:842.016400pt;}
.ydf{bottom:845.608933pt;}
.y27{bottom:845.621867pt;}
.y148{bottom:851.460400pt;}
.y184{bottom:851.470800pt;}
.y71{bottom:862.016400pt;}
.yde{bottom:862.942267pt;}
.y26{bottom:862.955200pt;}
.y147{bottom:864.793733pt;}
.y183{bottom:864.804133pt;}
.y25{bottom:892.913067pt;}
.y52{bottom:893.213067pt;}
.hf{height:29.645833pt;}
.hd{height:31.445333pt;}
.h7{height:33.351562pt;}
.hc{height:34.944000pt;}
.he{height:35.583333pt;}
.h6{height:36.145833pt;}
.ha{height:37.057292pt;}
.h2{height:40.031250pt;}
.hb{height:40.734375pt;}
.h8{height:43.375000pt;}
.h9{height:44.479167pt;}
.h4{height:55.546875pt;}
.h5{height:57.822917pt;}
.h3{height:97.854167pt;}
.h1{height:944.666667pt;}
.h0{height:944.866667pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:80.666667pt;}
.x2{left:88.000000pt;}
.x8{left:96.666667pt;}
.x6{left:104.000000pt;}
.xa{left:112.000000pt;}
.x4{left:172.335867pt;}
.x3{left:188.160933pt;}
.x5{left:204.345600pt;}
.x9{left:447.562000pt;}
.x1{left:549.566667pt;}
}




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