
    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_931bf54f219a52a75fbbad41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_5e293d70b481f44dbb719225.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_7e02988bf1f0f9d4f794af06.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4808085ff1a4e6a3d6722946.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_be7796ca39b83594003afce9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.575000;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_e320cb5a7749d818af4465bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(-0.000429,-0.250000,0.250000,-0.000429,0,0);-ms-transform:matrix(-0.000429,-0.250000,0.250000,-0.000429,0,0);-webkit-transform:matrix(-0.000429,-0.250000,0.250000,-0.000429,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250293,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-49.320000px;}
.v2{vertical-align:-16.560600px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v7{vertical-align:5.760104px;}
.v8{vertical-align:11.520208px;}
.v5{vertical-align:37.080000px;}
.v1{vertical-align:42.840000px;}
.ls71{letter-spacing:-0.444254px;}
.ls45{letter-spacing:-0.306612px;}
.ls6{letter-spacing:-0.291600px;}
.ls4{letter-spacing:-0.252000px;}
.ls75{letter-spacing:-0.249999px;}
.ls6b{letter-spacing:-0.241163px;}
.ls69{letter-spacing:-0.218729px;}
.ls76{letter-spacing:-0.204391px;}
.lsb{letter-spacing:-0.173016px;}
.ls9{letter-spacing:-0.151200px;}
.ls6a{letter-spacing:-0.125255px;}
.ls33{letter-spacing:-0.118800px;}
.ls36{letter-spacing:-0.113400px;}
.ls68{letter-spacing:-0.108430px;}
.ls20{letter-spacing:-0.108000px;}
.ls2d{letter-spacing:-0.102600px;}
.ls77{letter-spacing:-0.097200px;}
.lsa{letter-spacing:-0.096120px;}
.ls8{letter-spacing:-0.091800px;}
.ls1f{letter-spacing:-0.086400px;}
.ls2f{letter-spacing:-0.081000px;}
.ls22{letter-spacing:-0.075600px;}
.ls47{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.070200px;}
.ls70{letter-spacing:-0.065878px;}
.ls23{letter-spacing:-0.064800px;}
.ls6f{letter-spacing:-0.060810px;}
.ls21{letter-spacing:-0.059400px;}
.ls6d{letter-spacing:-0.059121px;}
.ls27{letter-spacing:-0.054000px;}
.ls7{letter-spacing:-0.048600px;}
.ls72{letter-spacing:-0.045608px;}
.ls1a{letter-spacing:-0.043200px;}
.ls73{letter-spacing:-0.042229px;}
.ls6e{letter-spacing:-0.037162px;}
.ls34{letter-spacing:-0.036000px;}
.ls74{letter-spacing:-0.033784px;}
.ls1d{letter-spacing:-0.032400px;}
.ls35{letter-spacing:-0.028800px;}
.ls2e{letter-spacing:-0.027000px;}
.ls3f{letter-spacing:-0.024048px;}
.ls28{letter-spacing:-0.021600px;}
.ls46{letter-spacing:-0.018036px;}
.ls62{letter-spacing:-0.018000px;}
.ls1c{letter-spacing:-0.016200px;}
.ls25{letter-spacing:-0.014400px;}
.ls44{letter-spacing:-0.012024px;}
.ls15{letter-spacing:-0.010800px;}
.ls29{letter-spacing:-0.007200px;}
.ls1b{letter-spacing:-0.005400px;}
.ls60{letter-spacing:-0.003600px;}
.ls18{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.005400px;}
.ls2c{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.010800px;}
.ls40{letter-spacing:0.012024px;}
.ls43{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.016200px;}
.ls2b{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.021600px;}
.ls42{letter-spacing:0.024048px;}
.ls61{letter-spacing:0.025200px;}
.ls0{letter-spacing:0.025272px;}
.ls2{letter-spacing:0.027000px;}
.ls64{letter-spacing:0.031781px;}
.ls10{letter-spacing:0.032400px;}
.ls56{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.037800px;}
.ls3c{letter-spacing:0.039816px;}
.ls2a{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls3b{letter-spacing:0.045504px;}
.ls63{letter-spacing:0.046737px;}
.ls13{letter-spacing:0.048600px;}
.ls17{letter-spacing:0.054000px;}
.ls41{letter-spacing:0.054108px;}
.ls39{letter-spacing:0.056880px;}
.ls48{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.058968px;}
.lsd{letter-spacing:0.059400px;}
.ls55{letter-spacing:0.061200px;}
.ls3d{letter-spacing:0.062568px;}
.ls14{letter-spacing:0.064800px;}
.ls67{letter-spacing:0.065432px;}
.ls3a{letter-spacing:0.068256px;}
.ls5e{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.070200px;}
.ls5a{letter-spacing:0.071994px;}
.ls3e{letter-spacing:0.073944px;}
.ls59{letter-spacing:0.075594px;}
.ls11{letter-spacing:0.075600px;}
.ls49{letter-spacing:0.079200px;}
.ls66{letter-spacing:0.081000px;}
.ls12{letter-spacing:0.086400px;}
.ls52{letter-spacing:0.090000px;}
.ls30{letter-spacing:0.091800px;}
.ls53{letter-spacing:0.093600px;}
.ls31{letter-spacing:0.097200px;}
.ls24{letter-spacing:0.102600px;}
.ls50{letter-spacing:0.104400px;}
.ls58{letter-spacing:0.107991px;}
.ls26{letter-spacing:0.108000px;}
.ls4c{letter-spacing:0.111600px;}
.ls32{letter-spacing:0.113400px;}
.ls38{letter-spacing:0.113760px;}
.ls6c{letter-spacing:0.115908px;}
.ls5{letter-spacing:0.118800px;}
.ls4a{letter-spacing:0.122400px;}
.ls51{letter-spacing:0.126000px;}
.ls5f{letter-spacing:0.129600px;}
.ls78{letter-spacing:0.135000px;}
.ls4d{letter-spacing:0.140400px;}
.ls5b{letter-spacing:0.143988px;}
.ls5d{letter-spacing:0.287976px;}
.ls5c{letter-spacing:0.291576px;}
.ls54{letter-spacing:1.224000px;}
.ls57{letter-spacing:1.368000px;}
.ls4f{letter-spacing:1.512000px;}
.ls4e{letter-spacing:1.548000px;}
.ls4b{letter-spacing:1.584000px;}
.ls37{letter-spacing:48.054600px;}
.ls65{letter-spacing:62.100000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws45{word-spacing:-19.929600px;}
.ws44{word-spacing:-16.767468px;}
.ws43{word-spacing:-16.406748px;}
.ws6e{word-spacing:-15.147000px;}
.ws1d{word-spacing:-15.130800px;}
.ws7f{word-spacing:-15.017400px;}
.ws36{word-spacing:-14.995800px;}
.ws2b{word-spacing:-14.925600px;}
.ws6d{word-spacing:-14.893200px;}
.ws0{word-spacing:-14.860800px;}
.ws53{word-spacing:-8.348400px;}
.ws55{word-spacing:-8.337600px;}
.ws5e{word-spacing:-8.334000px;}
.ws51{word-spacing:-8.330400px;}
.ws52{word-spacing:-8.319600px;}
.ws61{word-spacing:-8.316000px;}
.ws5f{word-spacing:-8.301600px;}
.ws56{word-spacing:-8.298000px;}
.ws50{word-spacing:-8.287200px;}
.ws58{word-spacing:-8.269200px;}
.ws4f{word-spacing:-8.265600px;}
.ws5a{word-spacing:-8.244000px;}
.ws59{word-spacing:-8.229600px;}
.ws54{word-spacing:-8.208000px;}
.ws5d{word-spacing:-8.207328px;}
.ws57{word-spacing:-8.190000px;}
.ws60{word-spacing:-8.154000px;}
.ws6b{word-spacing:-5.228936px;}
.ws6c{word-spacing:-4.955991px;}
.ws2c{word-spacing:-0.547092px;}
.ws6a{word-spacing:-0.392400px;}
.ws31{word-spacing:-0.334800px;}
.ws7e{word-spacing:-0.324000px;}
.ws19{word-spacing:-0.248400px;}
.ws6f{word-spacing:-0.224338px;}
.ws1b{word-spacing:-0.205200px;}
.ws3a{word-spacing:-0.186372px;}
.ws4a{word-spacing:-0.168336px;}
.ws2d{word-spacing:-0.162324px;}
.ws47{word-spacing:-0.156312px;}
.ws2e{word-spacing:-0.150300px;}
.ws5{word-spacing:-0.147420px;}
.ws48{word-spacing:-0.144288px;}
.ws46{word-spacing:-0.132264px;}
.ws49{word-spacing:-0.126252px;}
.ws3b{word-spacing:-0.120240px;}
.ws4{word-spacing:-0.113724px;}
.ws3c{word-spacing:-0.079632px;}
.ws62{word-spacing:-0.068400px;}
.ws66{word-spacing:-0.054000px;}
.ws64{word-spacing:-0.046800px;}
.ws42{word-spacing:-0.039816px;}
.ws2{word-spacing:-0.039600px;}
.ws63{word-spacing:-0.036000px;}
.ws72{word-spacing:-0.033651px;}
.ws65{word-spacing:-0.032400px;}
.ws69{word-spacing:-0.025200px;}
.ws3d{word-spacing:-0.022752px;}
.ws68{word-spacing:-0.021600px;}
.ws67{word-spacing:-0.018000px;}
.ws40{word-spacing:-0.011376px;}
.ws9{word-spacing:0.000000px;}
.ws35{word-spacing:0.005400px;}
.ws28{word-spacing:0.007200px;}
.ws26{word-spacing:0.010800px;}
.ws77{word-spacing:0.015203px;}
.ws2a{word-spacing:0.016200px;}
.ws74{word-spacing:0.018581px;}
.ws32{word-spacing:0.021600px;}
.ws78{word-spacing:0.023649px;}
.ws79{word-spacing:0.027027px;}
.ws25{word-spacing:0.032400px;}
.ws7d{word-spacing:0.037800px;}
.ws73{word-spacing:0.040540px;}
.ws34{word-spacing:0.043200px;}
.ws75{word-spacing:0.047297px;}
.ws7b{word-spacing:0.048600px;}
.ws29{word-spacing:0.054000px;}
.ws1a{word-spacing:0.059400px;}
.ws24{word-spacing:0.079200px;}
.ws80{word-spacing:0.081000px;}
.ws6{word-spacing:0.091800px;}
.ws13{word-spacing:0.102600px;}
.wsc{word-spacing:0.108000px;}
.ws15{word-spacing:0.113400px;}
.wsd{word-spacing:0.118800px;}
.ws18{word-spacing:0.124200px;}
.ws14{word-spacing:0.129600px;}
.ws10{word-spacing:0.135000px;}
.ws4d{word-spacing:0.136800px;}
.wsa{word-spacing:0.140400px;}
.ws4b{word-spacing:0.144000px;}
.ws12{word-spacing:0.145800px;}
.wsf{word-spacing:0.151200px;}
.ws70{word-spacing:0.153297px;}
.ws16{word-spacing:0.156600px;}
.ws11{word-spacing:0.162000px;}
.ws4c{word-spacing:0.165600px;}
.ws7{word-spacing:0.167400px;}
.ws7a{word-spacing:0.172800px;}
.ws17{word-spacing:0.178200px;}
.ws1c{word-spacing:0.183600px;}
.ws37{word-spacing:0.187200px;}
.wse{word-spacing:0.189000px;}
.ws23{word-spacing:0.194400px;}
.ws30{word-spacing:0.199800px;}
.ws1f{word-spacing:0.205200px;}
.ws8{word-spacing:0.210600px;}
.ws7c{word-spacing:0.216000px;}
.ws2f{word-spacing:0.221400px;}
.ws20{word-spacing:0.226800px;}
.ws38{word-spacing:0.232200px;}
.ws33{word-spacing:0.237600px;}
.wsb{word-spacing:0.275400px;}
.ws4e{word-spacing:0.295200px;}
.ws71{word-spacing:0.308464px;}
.ws3f{word-spacing:0.329904px;}
.ws1{word-spacing:0.331200px;}
.ws3e{word-spacing:0.335592px;}
.ws41{word-spacing:0.358344px;}
.ws3{word-spacing:0.370800px;}
.ws76{word-spacing:0.383444px;}
.ws27{word-spacing:0.529200px;}
.ws39{word-spacing:0.567000px;}
.ws21{word-spacing:250.074000px;}
.ws5c{word-spacing:262.026000px;}
.ws22{word-spacing:262.314000px;}
.ws5b{word-spacing:263.466000px;}
.ws1e{word-spacing:281.034000px;}
._1{margin-left:-1.000800px;}
._0{width:1.137600px;}
._9{width:6.469200px;}
._c{width:14.067491px;}
._5{width:37.751400px;}
._8{width:48.130200px;}
._a{width:57.175595px;}
._4{width:59.909580px;}
._3{width:61.840800px;}
._b{width:84.989799px;}
._d{width:92.337336px;}
._6{width:121.161600px;}
._7{width:379.238400px;}
._2{width:1398.002400px;}
.fc6{color:rgb(204,51,0);}
.fc5{color:rgb(0,101,204);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,154,154);}
.fc8{color:rgb(192,192,192);}
.fc7{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:16.891800px;}
.fs9{font-size:18.694800px;}
.fs8{font-size:22.522800px;}
.fs7{font-size:35.997053px;}
.fs0{font-size:36.000000px;}
.fs1{font-size:42.120000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y110{bottom:0.630450px;}
.yc{bottom:176.250600px;}
.yb{bottom:186.960600px;}
.y7a{bottom:218.190450px;}
.y141{bottom:218.820000px;}
.y50{bottom:223.048800px;}
.y144{bottom:223.320000px;}
.y138{bottom:231.150450px;}
.y140{bottom:235.020000px;}
.yad{bottom:236.552844px;}
.y143{bottom:239.520000px;}
.yd{bottom:240.330450px;}
.y9f{bottom:241.047900px;}
.y137{bottom:247.350450px;}
.yac{bottom:253.562808px;}
.y9e{bottom:260.578350px;}
.y4a{bottom:266.070600px;}
.y13f{bottom:267.510450px;}
.y4f{bottom:267.689250px;}
.ybd{bottom:268.770450px;}
.y142{bottom:272.010450px;}
.y9d{bottom:276.778350px;}
.y136{bottom:279.750450px;}
.y49{bottom:282.180150px;}
.yab{bottom:287.763330px;}
.ybc{bottom:290.280450px;}
.y21{bottom:294.060900px;}
.y135{bottom:295.950450px;}
.y9c{bottom:296.218350px;}
.y48{bottom:298.470600px;}
.y7d{bottom:300.360000px;}
.y12b{bottom:308.370450px;}
.y20{bottom:310.170450px;}
.ybb{bottom:311.880450px;}
.y4e{bottom:312.869700px;}
.y47{bottom:314.670600px;}
.y9b{bottom:315.748800px;}
.y7c{bottom:316.650450px;}
.yaa{bottom:321.872844px;}
.y1f{bottom:326.370450px;}
.y46{bottom:330.870600px;}
.y134{bottom:332.040150px;}
.y9a{bottom:335.279250px;}
.y7b{bottom:336.090450px;}
.ya9{bottom:338.882808px;}
.y1e{bottom:342.570450px;}
.y45{bottom:347.070600px;}
.y133{bottom:348.330600px;}
.y12a{bottom:350.850450px;}
.y99{bottom:354.719250px;}
.ya8{bottom:355.982358px;}
.y1d{bottom:358.860900px;}
.y38{bottom:363.359700px;}
.y4d{bottom:363.990150px;}
.y132{bottom:364.530600px;}
.y79{bottom:367.230150px;}
.ya7{bottom:373.081908px;}
.y98{bottom:374.249700px;}
.y1c{bottom:375.151350px;}
.y37{bottom:379.559700px;}
.y44{bottom:379.650150px;}
.y131{bottom:380.730600px;}
.y78{bottom:383.430150px;}
.yba{bottom:386.670450px;}
.y1b{bottom:391.351350px;}
.y129{bottom:393.420450px;}
.y97{bottom:393.780150px;}
.y36{bottom:395.759700px;}
.y130{bottom:396.930600px;}
.y65{bottom:401.880000px;}
.y60{bottom:402.150450px;}
.y77{bottom:402.960600px;}
.y6f{bottom:403.320450px;}
.ya6{bottom:407.191422px;}
.yb9{bottom:408.270450px;}
.y73{bottom:411.240600px;}
.y96{bottom:413.220150px;}
.y64{bottom:418.170450px;}
.y4c{bottom:419.160600px;}
.y1a{bottom:423.751350px;}
.ya5{bottom:424.201386px;}
.y8d{bottom:425.010450px;}
.y72{bottom:427.440600px;}
.y35{bottom:428.250150px;}
.yb8{bottom:429.780450px;}
.y95{bottom:432.750600px;}
.y12f{bottom:436.980000px;}
.y19{bottom:439.860900px;}
.ya4{bottom:441.300936px;}
.y34{bottom:444.359700px;}
.y5f{bottom:444.540600px;}
.y6e{bottom:445.800450px;}
.y63{bottom:450.570450px;}
.yb7{bottom:451.380450px;}
.y12e{bottom:453.180000px;}
.y18{bottom:456.240450px;}
.y71{bottom:459.840600px;}
.y33{bottom:460.650150px;}
.y94{bottom:466.230450px;}
.y62{bottom:466.770450px;}
.y12d{bottom:469.380000px;}
.y17{bottom:472.440450px;}
.yb6{bottom:472.980450px;}
.ya3{bottom:475.410450px;}
.y8c{bottom:475.950600px;}
.y76{bottom:476.850450px;}
.y32{bottom:476.940600px;}
.y91{bottom:477.390450px;}
.y5b{bottom:479.190600px;}
.y8f{bottom:485.310450px;}
.y12c{bottom:485.670450px;}
.y61{bottom:487.110600px;}
.ye{bottom:487.650450px;}
.y93{bottom:487.740450px;}
.y70{bottom:488.370600px;}
.y16{bottom:488.640450px;}
.y8a{bottom:490.890450px;}
.y75{bottom:493.050450px;}
.y13c{bottom:495.390450px;}
.y13a{bottom:495.570450px;}
.y13e{bottom:528.870252px;}
.y13d{bottom:541.470450px;}
.y2{bottom:702.210450px;}
.y1{bottom:712.920450px;}
.ya2{bottom:744.510450px;}
.y7{bottom:744.780000px;}
.y8e{bottom:744.960450px;}
.y2e{bottom:745.320000px;}
.y58{bottom:748.920450px;}
.ya{bottom:749.280000px;}
.y6{bottom:760.980000px;}
.y2d{bottom:761.520000px;}
.y9{bottom:765.480000px;}
.yf{bottom:765.480450px;}
.yf2{bottom:765.570450px;}
.yf4{bottom:765.840450px;}
.yf3{bottom:765.930450px;}
.y2c{bottom:777.720000px;}
.yb1{bottom:777.900738px;}
.yf6{bottom:780.780450px;}
.yf7{bottom:781.140450px;}
.y115{bottom:785.640450px;}
.y123{bottom:787.081265px;}
.y59{bottom:787.170000px;}
.y11a{bottom:788.880925px;}
.ye0{bottom:789.960450px;}
.y113{bottom:789.960666px;}
.ye1{bottom:790.320450px;}
.y122{bottom:791.221445px;}
.y88{bottom:791.669550px;}
.y5{bottom:793.470450px;}
.y2b{bottom:793.920000px;}
.y112{bottom:795.270457px;}
.yb0{bottom:795.900666px;}
.yc2{bottom:796.530450px;}
.yc3{bottom:796.890450px;}
.y8{bottom:797.970450px;}
.y111{bottom:800.670450px;}
.y114{bottom:800.940450px;}
.y11b{bottom:803.370450px;}
.ye2{bottom:804.630450px;}
.ye3{bottom:804.990450px;}
.y121{bottom:804.991218px;}
.y124{bottom:806.250924px;}
.y120{bottom:806.791040px;}
.yc0{bottom:807.240450px;}
.yc1{bottom:807.600450px;}
.y87{bottom:807.869550px;}
.y43{bottom:808.230450px;}
.y11f{bottom:811.560862px;}
.ybf{bottom:812.100450px;}
.y11e{bottom:816.420632px;}
.yc6{bottom:819.750450px;}
.yc7{bottom:820.110450px;}
.ye4{bottom:822.270450px;}
.ye5{bottom:822.630450px;}
.ybe{bottom:822.900450px;}
.y42{bottom:824.430450px;}
.y4b{bottom:824.520900px;}
.y2a{bottom:826.410450px;}
.y86{bottom:827.400000px;}
.y57{bottom:829.650450px;}
.yc4{bottom:830.550450px;}
.yc5{bottom:830.910450px;}
.yaf{bottom:831.900522px;}
.ye6{bottom:832.260450px;}
.y117{bottom:832.800450px;}
.yca{bottom:836.940450px;}
.ycb{bottom:837.300450px;}
.y41{bottom:840.630450px;}
.y29{bottom:842.610450px;}
.y10f{bottom:843.510000px;}
.y85{bottom:843.600000px;}
.y31{bottom:843.690450px;}
.y10e{bottom:844.140666px;}
.yf5{bottom:846.030450px;}
.y126{bottom:846.840192px;}
.y102{bottom:847.110450px;}
.yc8{bottom:847.650450px;}
.yc9{bottom:848.010450px;}
.y10d{bottom:849.450457px;}
.yae{bottom:849.900450px;}
.ye7{bottom:851.970450px;}
.y125{bottom:852.150450px;}
.ye8{bottom:852.330450px;}
.y118{bottom:852.960391px;}
.y10c{bottom:854.850450px;}
.y128{bottom:855.930628px;}
.y11d{bottom:856.200399px;}
.y40{bottom:856.830450px;}
.y101{bottom:857.910450px;}
.y28{bottom:858.810450px;}
.yce{bottom:860.430450px;}
.y127{bottom:860.700450px;}
.ycf{bottom:860.790450px;}
.y11c{bottom:860.970221px;}
.y119{bottom:860.970483px;}
.y104{bottom:862.410450px;}
.y84{bottom:863.130450px;}
.yeb{bottom:867.000450px;}
.yec{bottom:867.360450px;}
.y116{bottom:871.050450px;}
.ycc{bottom:871.230450px;}
.ycd{bottom:871.590450px;}
.y10b{bottom:871.950450px;}
.y3f{bottom:873.030450px;}
.y103{bottom:873.210450px;}
.ye9{bottom:877.800450px;}
.yea{bottom:878.160450px;}
.y56{bottom:878.610900px;}
.y83{bottom:879.330450px;}
.y27{bottom:891.300900px;}
.yed{bottom:892.200450px;}
.yee{bottom:892.560450px;}
.y108{bottom:895.890450px;}
.y82{bottom:899.220117px;}
.yd2{bottom:900.120450px;}
.yd3{bottom:900.480450px;}
.y14{bottom:904.441800px;}
.y3e{bottom:905.610000px;}
.yff{bottom:906.420450px;}
.y107{bottom:906.600450px;}
.y100{bottom:906.780450px;}
.yd6{bottom:914.160450px;}
.yd7{bottom:914.520450px;}
.yfd{bottom:917.130450px;}
.yfe{bottom:917.490450px;}
.y13{bottom:920.551350px;}
.y3d{bottom:921.719550px;}
.yb5{bottom:924.060738px;}
.y55{bottom:924.510900px;}
.yd4{bottom:924.960450px;}
.yd5{bottom:925.320450px;}
.y6d{bottom:929.100000px;}
.y5e{bottom:929.190450px;}
.y67{bottom:929.370450px;}
.yf1{bottom:929.730450px;}
.y106{bottom:934.680450px;}
.y12{bottom:936.751350px;}
.y26{bottom:939.991350px;}
.yef{bottom:940.170450px;}
.yf0{bottom:940.530450px;}
.y54{bottom:940.620450px;}
.yb4{bottom:942.060666px;}
.y81{bottom:942.330666px;}
.yd8{bottom:944.670450px;}
.yd9{bottom:945.030450px;}
.y6c{bottom:945.300000px;}
.y105{bottom:945.480450px;}
.y10a{bottom:946.920450px;}
.yd1{bottom:951.060450px;}
.y3c{bottom:954.210000px;}
.y25{bottom:956.100900px;}
.yfb{bottom:957.270450px;}
.yfc{bottom:957.630450px;}
.y109{bottom:957.720450px;}
.y80{bottom:960.330594px;}
.y6b{bottom:961.500000px;}
.yd0{bottom:961.860450px;}
.yf9{bottom:968.070450px;}
.yda{bottom:968.160450px;}
.yfa{bottom:968.430450px;}
.ydb{bottom:968.520450px;}
.y11{bottom:969.330900px;}
.y3b{bottom:970.319550px;}
.y5d{bottom:971.670450px;}
.y66{bottom:971.850450px;}
.y24{bottom:972.300900px;}
.y74{bottom:975.540600px;}
.y6a{bottom:977.790450px;}
.ydc{bottom:978.060450px;}
.yb3{bottom:978.060522px;}
.y7f{bottom:978.330522px;}
.ydd{bottom:978.420450px;}
.y53{bottom:984.360450px;}
.y10{bottom:985.440450px;}
.y3a{bottom:986.610000px;}
.y23{bottom:988.500900px;}
.yde{bottom:991.470450px;}
.ydf{bottom:991.830450px;}
.y69{bottom:993.990450px;}
.yf8{bottom:995.700450px;}
.yb2{bottom:996.060450px;}
.y7e{bottom:996.330450px;}
.y30{bottom:996.330900px;}
.ya1{bottom:997.410837px;}
.y52{bottom:1000.560450px;}
.y39{bottom:1002.900450px;}
.y92{bottom:1003.350450px;}
.y13b{bottom:1005.150450px;}
.y2f{bottom:1012.440450px;}
.y90{bottom:1013.160450px;}
.y15{bottom:1013.612250px;}
.y5c{bottom:1014.240450px;}
.y68{bottom:1014.420450px;}
.y51{bottom:1016.760450px;}
.ya0{bottom:1019.010450px;}
.y22{bottom:1021.080450px;}
.y89{bottom:1021.170450px;}
.y139{bottom:1021.350450px;}
.y8b{bottom:1021.440450px;}
.y5a{bottom:1023.600450px;}
.y4{bottom:1054.830252px;}
.y3{bottom:1067.430450px;}
.h12{height:4.950000px;}
.h15{height:17.617620px;}
.h11{height:19.498092px;}
.h10{height:22.104896px;}
.h13{height:22.378092px;}
.h14{height:23.098092px;}
.h16{height:23.377723px;}
.h17{height:29.137827px;}
.h1{height:37.546875px;}
.h3{height:38.130117px;}
.hd{height:38.412000px;}
.hf{height:38.570842px;}
.h9{height:40.500000px;}
.h6{height:48.884766px;}
.h4{height:56.320312px;}
.hc{height:59.324063px;}
.hb{height:62.703281px;}
.ha{height:65.179688px;}
.h5{height:72.090000px;}
.h8{height:75.093750px;}
.he{height:75.492000px;}
.h2{height:80.386875px;}
.h7{height:100.250156px;}
.h0{height:1263.000000px;}
.w1{width:20.430000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6d{left:18.810000px;}
.x1{left:183.690000px;}
.x6c{left:186.660000px;}
.x13{left:192.240000px;}
.x73{left:195.119839px;}
.x2a{left:196.470000px;}
.x2c{left:200.790000px;}
.x7b{left:202.680000px;}
.xb{left:205.020000px;}
.xf{left:207.180000px;}
.x27{left:208.620000px;}
.x11{left:211.410000px;}
.x31{left:216.450000px;}
.xe{left:217.710450px;}
.x72{left:219.689857px;}
.x71{left:222.030000px;}
.x8{left:225.899550px;}
.x10{left:227.430000px;}
.x28{left:228.869919px;}
.x5{left:230.399550px;}
.x29{left:235.620000px;}
.x12{left:241.200000px;}
.x20{left:243.450000px;}
.x78{left:246.690000px;}
.x2f{left:247.950000px;}
.x1b{left:249.120000px;}
.x15{left:252.899550px;}
.x22{left:254.430000px;}
.x1c{left:256.320000px;}
.x7e{left:258.300000px;}
.x23{left:259.830000px;}
.xd{left:261.630000px;}
.x33{left:263.970000px;}
.xa{left:271.440000px;}
.x30{left:276.570702px;}
.x75{left:282.869808px;}
.x32{left:284.850000px;}
.x38{left:287.910000px;}
.xc{left:289.260000px;}
.x76{left:292.679805px;}
.x2e{left:294.390000px;}
.x3c{left:298.620000px;}
.x77{left:299.700210px;}
.x39{left:302.400000px;}
.x6f{left:303.570000px;}
.x3b{left:305.280000px;}
.x9{left:308.249550px;}
.x6{left:312.749550px;}
.x43{left:314.010000px;}
.x42{left:316.260000px;}
.x3f{left:318.510000px;}
.x16{left:319.859550px;}
.x3a{left:321.750000px;}
.x74{left:322.829382px;}
.x45{left:324.630000px;}
.x1a{left:325.710000px;}
.x3{left:330.480180px;}
.x6e{left:333.810000px;}
.x40{left:337.140000px;}
.x41{left:339.210000px;}
.x44{left:340.290000px;}
.x3d{left:349.110000px;}
.x3e{left:353.250000px;}
.x7d{left:354.690000px;}
.x70{left:358.650000px;}
.x21{left:360.540000px;}
.x7{left:363.150000px;}
.x4{left:367.650000px;}
.x17{left:376.918650px;}
.x34{left:382.590000px;}
.x46{left:388.350000px;}
.x68{left:390.150000px;}
.x48{left:391.320000px;}
.x47{left:392.490000px;}
.x2{left:394.650000px;}
.x79{left:396.000000px;}
.x1f{left:397.980000px;}
.x60{left:400.770000px;}
.x1d{left:402.390000px;}
.x7c{left:405.270000px;}
.x2d{left:407.790000px;}
.x49{left:416.790000px;}
.x50{left:420.120000px;}
.x1e{left:421.920000px;}
.x7a{left:427.230450px;}
.x19{left:430.378650px;}
.x4c{left:443.610000px;}
.x67{left:445.590000px;}
.x35{left:449.550000px;}
.x51{left:453.330000px;}
.x25{left:456.480450px;}
.x24{left:468.540000px;}
.x4b{left:471.240000px;}
.x4a{left:475.830000px;}
.x18{left:477.989100px;}
.x26{left:479.430450px;}
.x61{left:484.560000px;}
.x52{left:490.590000px;}
.x69{left:493.380000px;}
.x53{left:506.340000px;}
.x4d{left:508.230000px;}
.x4e{left:512.280000px;}
.x4f{left:518.490000px;}
.x6b{left:521.460000px;}
.x54{left:522.810000px;}
.x6a{left:524.160000px;}
.x36{left:541.350000px;}
.x37{left:545.400000px;}
.x56{left:553.230000px;}
.x55{left:555.660000px;}
.x65{left:563.760000px;}
.x62{left:568.350000px;}
.x66{left:574.200000px;}
.x57{left:575.370000px;}
.x59{left:576.810000px;}
.x58{left:579.510000px;}
.x5c{left:580.770000px;}
.x14{left:584.640000px;}
.x64{left:585.720000px;}
.x63{left:587.070000px;}
.x5a{left:598.140000px;}
.x5b{left:602.280000px;}
.x5d{left:605.430000px;}
.x5e{left:610.020000px;}
.x5f{left:615.330000px;}
.x2b{left:646.650000px;}
@media print{
.v3{vertical-align:-43.840000pt;}
.v2{vertical-align:-14.720533pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v7{vertical-align:5.120092pt;}
.v8{vertical-align:10.240185pt;}
.v5{vertical-align:32.960000pt;}
.v1{vertical-align:38.080000pt;}
.ls71{letter-spacing:-0.394893pt;}
.ls45{letter-spacing:-0.272544pt;}
.ls6{letter-spacing:-0.259200pt;}
.ls4{letter-spacing:-0.224000pt;}
.ls75{letter-spacing:-0.222221pt;}
.ls6b{letter-spacing:-0.214367pt;}
.ls69{letter-spacing:-0.194426pt;}
.ls76{letter-spacing:-0.181681pt;}
.lsb{letter-spacing:-0.153792pt;}
.ls9{letter-spacing:-0.134400pt;}
.ls6a{letter-spacing:-0.111338pt;}
.ls33{letter-spacing:-0.105600pt;}
.ls36{letter-spacing:-0.100800pt;}
.ls68{letter-spacing:-0.096382pt;}
.ls20{letter-spacing:-0.096000pt;}
.ls2d{letter-spacing:-0.091200pt;}
.ls77{letter-spacing:-0.086400pt;}
.lsa{letter-spacing:-0.085440pt;}
.ls8{letter-spacing:-0.081600pt;}
.ls1f{letter-spacing:-0.076800pt;}
.ls2f{letter-spacing:-0.072000pt;}
.ls22{letter-spacing:-0.067200pt;}
.ls47{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.062400pt;}
.ls70{letter-spacing:-0.058558pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls6f{letter-spacing:-0.054054pt;}
.ls21{letter-spacing:-0.052800pt;}
.ls6d{letter-spacing:-0.052552pt;}
.ls27{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:-0.043200pt;}
.ls72{letter-spacing:-0.040540pt;}
.ls1a{letter-spacing:-0.038400pt;}
.ls73{letter-spacing:-0.037537pt;}
.ls6e{letter-spacing:-0.033033pt;}
.ls34{letter-spacing:-0.032000pt;}
.ls74{letter-spacing:-0.030030pt;}
.ls1d{letter-spacing:-0.028800pt;}
.ls35{letter-spacing:-0.025600pt;}
.ls2e{letter-spacing:-0.024000pt;}
.ls3f{letter-spacing:-0.021376pt;}
.ls28{letter-spacing:-0.019200pt;}
.ls46{letter-spacing:-0.016032pt;}
.ls62{letter-spacing:-0.016000pt;}
.ls1c{letter-spacing:-0.014400pt;}
.ls25{letter-spacing:-0.012800pt;}
.ls44{letter-spacing:-0.010688pt;}
.ls15{letter-spacing:-0.009600pt;}
.ls29{letter-spacing:-0.006400pt;}
.ls1b{letter-spacing:-0.004800pt;}
.ls60{letter-spacing:-0.003200pt;}
.ls18{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.004800pt;}
.ls2c{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.009600pt;}
.ls40{letter-spacing:0.010688pt;}
.ls43{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.014400pt;}
.ls2b{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.019200pt;}
.ls42{letter-spacing:0.021376pt;}
.ls61{letter-spacing:0.022400pt;}
.ls0{letter-spacing:0.022464pt;}
.ls2{letter-spacing:0.024000pt;}
.ls64{letter-spacing:0.028250pt;}
.ls10{letter-spacing:0.028800pt;}
.ls56{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.033600pt;}
.ls3c{letter-spacing:0.035392pt;}
.ls2a{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls3b{letter-spacing:0.040448pt;}
.ls63{letter-spacing:0.041544pt;}
.ls13{letter-spacing:0.043200pt;}
.ls17{letter-spacing:0.048000pt;}
.ls41{letter-spacing:0.048096pt;}
.ls39{letter-spacing:0.050560pt;}
.ls48{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.052416pt;}
.lsd{letter-spacing:0.052800pt;}
.ls55{letter-spacing:0.054400pt;}
.ls3d{letter-spacing:0.055616pt;}
.ls14{letter-spacing:0.057600pt;}
.ls67{letter-spacing:0.058162pt;}
.ls3a{letter-spacing:0.060672pt;}
.ls5e{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.062400pt;}
.ls5a{letter-spacing:0.063995pt;}
.ls3e{letter-spacing:0.065728pt;}
.ls59{letter-spacing:0.067194pt;}
.ls11{letter-spacing:0.067200pt;}
.ls49{letter-spacing:0.070400pt;}
.ls66{letter-spacing:0.072000pt;}
.ls12{letter-spacing:0.076800pt;}
.ls52{letter-spacing:0.080000pt;}
.ls30{letter-spacing:0.081600pt;}
.ls53{letter-spacing:0.083200pt;}
.ls31{letter-spacing:0.086400pt;}
.ls24{letter-spacing:0.091200pt;}
.ls50{letter-spacing:0.092800pt;}
.ls58{letter-spacing:0.095992pt;}
.ls26{letter-spacing:0.096000pt;}
.ls4c{letter-spacing:0.099200pt;}
.ls32{letter-spacing:0.100800pt;}
.ls38{letter-spacing:0.101120pt;}
.ls6c{letter-spacing:0.103029pt;}
.ls5{letter-spacing:0.105600pt;}
.ls4a{letter-spacing:0.108800pt;}
.ls51{letter-spacing:0.112000pt;}
.ls5f{letter-spacing:0.115200pt;}
.ls78{letter-spacing:0.120000pt;}
.ls4d{letter-spacing:0.124800pt;}
.ls5b{letter-spacing:0.127990pt;}
.ls5d{letter-spacing:0.255979pt;}
.ls5c{letter-spacing:0.259179pt;}
.ls54{letter-spacing:1.088000pt;}
.ls57{letter-spacing:1.216000pt;}
.ls4f{letter-spacing:1.344000pt;}
.ls4e{letter-spacing:1.376000pt;}
.ls4b{letter-spacing:1.408000pt;}
.ls37{letter-spacing:42.715200pt;}
.ls65{letter-spacing:55.200000pt;}
.ws45{word-spacing:-17.715200pt;}
.ws44{word-spacing:-14.904416pt;}
.ws43{word-spacing:-14.583776pt;}
.ws6e{word-spacing:-13.464000pt;}
.ws1d{word-spacing:-13.449600pt;}
.ws7f{word-spacing:-13.348800pt;}
.ws36{word-spacing:-13.329600pt;}
.ws2b{word-spacing:-13.267200pt;}
.ws6d{word-spacing:-13.238400pt;}
.ws0{word-spacing:-13.209600pt;}
.ws53{word-spacing:-7.420800pt;}
.ws55{word-spacing:-7.411200pt;}
.ws5e{word-spacing:-7.408000pt;}
.ws51{word-spacing:-7.404800pt;}
.ws52{word-spacing:-7.395200pt;}
.ws61{word-spacing:-7.392000pt;}
.ws5f{word-spacing:-7.379200pt;}
.ws56{word-spacing:-7.376000pt;}
.ws50{word-spacing:-7.366400pt;}
.ws58{word-spacing:-7.350400pt;}
.ws4f{word-spacing:-7.347200pt;}
.ws5a{word-spacing:-7.328000pt;}
.ws59{word-spacing:-7.315200pt;}
.ws54{word-spacing:-7.296000pt;}
.ws5d{word-spacing:-7.295403pt;}
.ws57{word-spacing:-7.280000pt;}
.ws60{word-spacing:-7.248000pt;}
.ws6b{word-spacing:-4.647943pt;}
.ws6c{word-spacing:-4.405326pt;}
.ws2c{word-spacing:-0.486304pt;}
.ws6a{word-spacing:-0.348800pt;}
.ws31{word-spacing:-0.297600pt;}
.ws7e{word-spacing:-0.288000pt;}
.ws19{word-spacing:-0.220800pt;}
.ws6f{word-spacing:-0.199411pt;}
.ws1b{word-spacing:-0.182400pt;}
.ws3a{word-spacing:-0.165664pt;}
.ws4a{word-spacing:-0.149632pt;}
.ws2d{word-spacing:-0.144288pt;}
.ws47{word-spacing:-0.138944pt;}
.ws2e{word-spacing:-0.133600pt;}
.ws5{word-spacing:-0.131040pt;}
.ws48{word-spacing:-0.128256pt;}
.ws46{word-spacing:-0.117568pt;}
.ws49{word-spacing:-0.112224pt;}
.ws3b{word-spacing:-0.106880pt;}
.ws4{word-spacing:-0.101088pt;}
.ws3c{word-spacing:-0.070784pt;}
.ws62{word-spacing:-0.060800pt;}
.ws66{word-spacing:-0.048000pt;}
.ws64{word-spacing:-0.041600pt;}
.ws42{word-spacing:-0.035392pt;}
.ws2{word-spacing:-0.035200pt;}
.ws63{word-spacing:-0.032000pt;}
.ws72{word-spacing:-0.029912pt;}
.ws65{word-spacing:-0.028800pt;}
.ws69{word-spacing:-0.022400pt;}
.ws3d{word-spacing:-0.020224pt;}
.ws68{word-spacing:-0.019200pt;}
.ws67{word-spacing:-0.016000pt;}
.ws40{word-spacing:-0.010112pt;}
.ws9{word-spacing:0.000000pt;}
.ws35{word-spacing:0.004800pt;}
.ws28{word-spacing:0.006400pt;}
.ws26{word-spacing:0.009600pt;}
.ws77{word-spacing:0.013513pt;}
.ws2a{word-spacing:0.014400pt;}
.ws74{word-spacing:0.016516pt;}
.ws32{word-spacing:0.019200pt;}
.ws78{word-spacing:0.021021pt;}
.ws79{word-spacing:0.024024pt;}
.ws25{word-spacing:0.028800pt;}
.ws7d{word-spacing:0.033600pt;}
.ws73{word-spacing:0.036036pt;}
.ws34{word-spacing:0.038400pt;}
.ws75{word-spacing:0.042042pt;}
.ws7b{word-spacing:0.043200pt;}
.ws29{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.052800pt;}
.ws24{word-spacing:0.070400pt;}
.ws80{word-spacing:0.072000pt;}
.ws6{word-spacing:0.081600pt;}
.ws13{word-spacing:0.091200pt;}
.wsc{word-spacing:0.096000pt;}
.ws15{word-spacing:0.100800pt;}
.wsd{word-spacing:0.105600pt;}
.ws18{word-spacing:0.110400pt;}
.ws14{word-spacing:0.115200pt;}
.ws10{word-spacing:0.120000pt;}
.ws4d{word-spacing:0.121600pt;}
.wsa{word-spacing:0.124800pt;}
.ws4b{word-spacing:0.128000pt;}
.ws12{word-spacing:0.129600pt;}
.wsf{word-spacing:0.134400pt;}
.ws70{word-spacing:0.136264pt;}
.ws16{word-spacing:0.139200pt;}
.ws11{word-spacing:0.144000pt;}
.ws4c{word-spacing:0.147200pt;}
.ws7{word-spacing:0.148800pt;}
.ws7a{word-spacing:0.153600pt;}
.ws17{word-spacing:0.158400pt;}
.ws1c{word-spacing:0.163200pt;}
.ws37{word-spacing:0.166400pt;}
.wse{word-spacing:0.168000pt;}
.ws23{word-spacing:0.172800pt;}
.ws30{word-spacing:0.177600pt;}
.ws1f{word-spacing:0.182400pt;}
.ws8{word-spacing:0.187200pt;}
.ws7c{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.196800pt;}
.ws20{word-spacing:0.201600pt;}
.ws38{word-spacing:0.206400pt;}
.ws33{word-spacing:0.211200pt;}
.wsb{word-spacing:0.244800pt;}
.ws4e{word-spacing:0.262400pt;}
.ws71{word-spacing:0.274190pt;}
.ws3f{word-spacing:0.293248pt;}
.ws1{word-spacing:0.294400pt;}
.ws3e{word-spacing:0.298304pt;}
.ws41{word-spacing:0.318528pt;}
.ws3{word-spacing:0.329600pt;}
.ws76{word-spacing:0.340839pt;}
.ws27{word-spacing:0.470400pt;}
.ws39{word-spacing:0.504000pt;}
.ws21{word-spacing:222.288000pt;}
.ws5c{word-spacing:232.912000pt;}
.ws22{word-spacing:233.168000pt;}
.ws5b{word-spacing:234.192000pt;}
.ws1e{word-spacing:249.808000pt;}
._1{margin-left:-0.889600pt;}
._0{width:1.011200pt;}
._9{width:5.750400pt;}
._c{width:12.504436pt;}
._5{width:33.556800pt;}
._8{width:42.782400pt;}
._a{width:50.822751pt;}
._4{width:53.252960pt;}
._3{width:54.969600pt;}
._b{width:75.546488pt;}
._d{width:82.077632pt;}
._6{width:107.699200pt;}
._7{width:337.100800pt;}
._2{width:1242.668800pt;}
.fsa{font-size:15.014933pt;}
.fs9{font-size:16.617600pt;}
.fs8{font-size:20.020267pt;}
.fs7{font-size:31.997380pt;}
.fs0{font-size:32.000000pt;}
.fs1{font-size:37.440000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:0.560400pt;}
.yc{bottom:156.667200pt;}
.yb{bottom:166.187200pt;}
.y7a{bottom:193.947067pt;}
.y141{bottom:194.506667pt;}
.y50{bottom:198.265600pt;}
.y144{bottom:198.506667pt;}
.y138{bottom:205.467067pt;}
.y140{bottom:208.906667pt;}
.yad{bottom:210.269195pt;}
.y143{bottom:212.906667pt;}
.yd{bottom:213.627067pt;}
.y9f{bottom:214.264800pt;}
.y137{bottom:219.867067pt;}
.yac{bottom:225.389163pt;}
.y9e{bottom:231.625200pt;}
.y4a{bottom:236.507200pt;}
.y13f{bottom:237.787067pt;}
.y4f{bottom:237.946000pt;}
.ybd{bottom:238.907067pt;}
.y142{bottom:241.787067pt;}
.y9d{bottom:246.025200pt;}
.y136{bottom:248.667067pt;}
.y49{bottom:250.826800pt;}
.yab{bottom:255.789627pt;}
.ybc{bottom:258.027067pt;}
.y21{bottom:261.387467pt;}
.y135{bottom:263.067067pt;}
.y9c{bottom:263.305200pt;}
.y48{bottom:265.307200pt;}
.y7d{bottom:266.986667pt;}
.y12b{bottom:274.107067pt;}
.y20{bottom:275.707067pt;}
.ybb{bottom:277.227067pt;}
.y4e{bottom:278.106400pt;}
.y47{bottom:279.707200pt;}
.y9b{bottom:280.665600pt;}
.y7c{bottom:281.467067pt;}
.yaa{bottom:286.109195pt;}
.y1f{bottom:290.107067pt;}
.y46{bottom:294.107200pt;}
.y134{bottom:295.146800pt;}
.y9a{bottom:298.026000pt;}
.y7b{bottom:298.747067pt;}
.ya9{bottom:301.229163pt;}
.y1e{bottom:304.507067pt;}
.y45{bottom:308.507200pt;}
.y133{bottom:309.627200pt;}
.y12a{bottom:311.867067pt;}
.y99{bottom:315.306000pt;}
.ya8{bottom:316.428763pt;}
.y1d{bottom:318.987467pt;}
.y38{bottom:322.986400pt;}
.y4d{bottom:323.546800pt;}
.y132{bottom:324.027200pt;}
.y79{bottom:326.426800pt;}
.ya7{bottom:331.628363pt;}
.y98{bottom:332.666400pt;}
.y1c{bottom:333.467867pt;}
.y37{bottom:337.386400pt;}
.y44{bottom:337.466800pt;}
.y131{bottom:338.427200pt;}
.y78{bottom:340.826800pt;}
.yba{bottom:343.707067pt;}
.y1b{bottom:347.867867pt;}
.y129{bottom:349.707067pt;}
.y97{bottom:350.026800pt;}
.y36{bottom:351.786400pt;}
.y130{bottom:352.827200pt;}
.y65{bottom:357.226667pt;}
.y60{bottom:357.467067pt;}
.y77{bottom:358.187200pt;}
.y6f{bottom:358.507067pt;}
.ya6{bottom:361.947931pt;}
.yb9{bottom:362.907067pt;}
.y73{bottom:365.547200pt;}
.y96{bottom:367.306800pt;}
.y64{bottom:371.707067pt;}
.y4c{bottom:372.587200pt;}
.y1a{bottom:376.667867pt;}
.ya5{bottom:377.067899pt;}
.y8d{bottom:377.787067pt;}
.y72{bottom:379.947200pt;}
.y35{bottom:380.666800pt;}
.yb8{bottom:382.027067pt;}
.y95{bottom:384.667200pt;}
.y12f{bottom:388.426667pt;}
.y19{bottom:390.987467pt;}
.ya4{bottom:392.267499pt;}
.y34{bottom:394.986400pt;}
.y5f{bottom:395.147200pt;}
.y6e{bottom:396.267067pt;}
.y63{bottom:400.507067pt;}
.yb7{bottom:401.227067pt;}
.y12e{bottom:402.826667pt;}
.y18{bottom:405.547067pt;}
.y71{bottom:408.747200pt;}
.y33{bottom:409.466800pt;}
.y94{bottom:414.427067pt;}
.y62{bottom:414.907067pt;}
.y12d{bottom:417.226667pt;}
.y17{bottom:419.947067pt;}
.yb6{bottom:420.427067pt;}
.ya3{bottom:422.587067pt;}
.y8c{bottom:423.067200pt;}
.y76{bottom:423.867067pt;}
.y32{bottom:423.947200pt;}
.y91{bottom:424.347067pt;}
.y5b{bottom:425.947200pt;}
.y8f{bottom:431.387067pt;}
.y12c{bottom:431.707067pt;}
.y61{bottom:432.987200pt;}
.ye{bottom:433.467067pt;}
.y93{bottom:433.547067pt;}
.y70{bottom:434.107200pt;}
.y16{bottom:434.347067pt;}
.y8a{bottom:436.347067pt;}
.y75{bottom:438.267067pt;}
.y13c{bottom:440.347067pt;}
.y13a{bottom:440.507067pt;}
.y13e{bottom:470.106891pt;}
.y13d{bottom:481.307067pt;}
.y2{bottom:624.187067pt;}
.y1{bottom:633.707067pt;}
.ya2{bottom:661.787067pt;}
.y7{bottom:662.026667pt;}
.y8e{bottom:662.187067pt;}
.y2e{bottom:662.506667pt;}
.y58{bottom:665.707067pt;}
.ya{bottom:666.026667pt;}
.y6{bottom:676.426667pt;}
.y2d{bottom:676.906667pt;}
.y9{bottom:680.426667pt;}
.yf{bottom:680.427067pt;}
.yf2{bottom:680.507067pt;}
.yf4{bottom:680.747067pt;}
.yf3{bottom:680.827067pt;}
.y2c{bottom:691.306667pt;}
.yb1{bottom:691.467323pt;}
.yf6{bottom:694.027067pt;}
.yf7{bottom:694.347067pt;}
.y115{bottom:698.347067pt;}
.y123{bottom:699.627791pt;}
.y59{bottom:699.706667pt;}
.y11a{bottom:701.227489pt;}
.ye0{bottom:702.187067pt;}
.y113{bottom:702.187259pt;}
.ye1{bottom:702.507067pt;}
.y122{bottom:703.307951pt;}
.y88{bottom:703.706267pt;}
.y5{bottom:705.307067pt;}
.y2b{bottom:705.706667pt;}
.y112{bottom:706.907073pt;}
.yb0{bottom:707.467259pt;}
.yc2{bottom:708.027067pt;}
.yc3{bottom:708.347067pt;}
.y8{bottom:709.307067pt;}
.y111{bottom:711.707067pt;}
.y114{bottom:711.947067pt;}
.y11b{bottom:714.107067pt;}
.ye2{bottom:715.227067pt;}
.ye3{bottom:715.547067pt;}
.y121{bottom:715.547750pt;}
.y124{bottom:716.667488pt;}
.y120{bottom:717.147591pt;}
.yc0{bottom:717.547067pt;}
.yc1{bottom:717.867067pt;}
.y87{bottom:718.106267pt;}
.y43{bottom:718.427067pt;}
.y11f{bottom:721.387432pt;}
.ybf{bottom:721.867067pt;}
.y11e{bottom:725.707229pt;}
.yc6{bottom:728.667067pt;}
.yc7{bottom:728.987067pt;}
.ye4{bottom:730.907067pt;}
.ye5{bottom:731.227067pt;}
.ybe{bottom:731.467067pt;}
.y42{bottom:732.827067pt;}
.y4b{bottom:732.907467pt;}
.y2a{bottom:734.587067pt;}
.y86{bottom:735.466667pt;}
.y57{bottom:737.467067pt;}
.yc4{bottom:738.267067pt;}
.yc5{bottom:738.587067pt;}
.yaf{bottom:739.467131pt;}
.ye6{bottom:739.787067pt;}
.y117{bottom:740.267067pt;}
.yca{bottom:743.947067pt;}
.ycb{bottom:744.267067pt;}
.y41{bottom:747.227067pt;}
.y29{bottom:748.987067pt;}
.y10f{bottom:749.786667pt;}
.y85{bottom:749.866667pt;}
.y31{bottom:749.947067pt;}
.y10e{bottom:750.347259pt;}
.yf5{bottom:752.027067pt;}
.y126{bottom:752.746837pt;}
.y102{bottom:752.987067pt;}
.yc8{bottom:753.467067pt;}
.yc9{bottom:753.787067pt;}
.y10d{bottom:755.067073pt;}
.yae{bottom:755.467067pt;}
.ye7{bottom:757.307067pt;}
.y125{bottom:757.467067pt;}
.ye8{bottom:757.627067pt;}
.y118{bottom:758.187014pt;}
.y10c{bottom:759.867067pt;}
.y128{bottom:760.827225pt;}
.y11d{bottom:761.067021pt;}
.y40{bottom:761.627067pt;}
.y101{bottom:762.587067pt;}
.y28{bottom:763.387067pt;}
.yce{bottom:764.827067pt;}
.y127{bottom:765.067067pt;}
.ycf{bottom:765.147067pt;}
.y11c{bottom:765.306863pt;}
.y119{bottom:765.307096pt;}
.y104{bottom:766.587067pt;}
.y84{bottom:767.227067pt;}
.yeb{bottom:770.667067pt;}
.yec{bottom:770.987067pt;}
.y116{bottom:774.267067pt;}
.ycc{bottom:774.427067pt;}
.ycd{bottom:774.747067pt;}
.y10b{bottom:775.067067pt;}
.y3f{bottom:776.027067pt;}
.y103{bottom:776.187067pt;}
.ye9{bottom:780.267067pt;}
.yea{bottom:780.587067pt;}
.y56{bottom:780.987467pt;}
.y83{bottom:781.627067pt;}
.y27{bottom:792.267467pt;}
.yed{bottom:793.067067pt;}
.yee{bottom:793.387067pt;}
.y108{bottom:796.347067pt;}
.y82{bottom:799.306771pt;}
.yd2{bottom:800.107067pt;}
.yd3{bottom:800.427067pt;}
.y14{bottom:803.948267pt;}
.y3e{bottom:804.986667pt;}
.yff{bottom:805.707067pt;}
.y107{bottom:805.867067pt;}
.y100{bottom:806.027067pt;}
.yd6{bottom:812.587067pt;}
.yd7{bottom:812.907067pt;}
.yfd{bottom:815.227067pt;}
.yfe{bottom:815.547067pt;}
.y13{bottom:818.267867pt;}
.y3d{bottom:819.306267pt;}
.yb5{bottom:821.387323pt;}
.y55{bottom:821.787467pt;}
.yd4{bottom:822.187067pt;}
.yd5{bottom:822.507067pt;}
.y6d{bottom:825.866667pt;}
.y5e{bottom:825.947067pt;}
.y67{bottom:826.107067pt;}
.yf1{bottom:826.427067pt;}
.y106{bottom:830.827067pt;}
.y12{bottom:832.667867pt;}
.y26{bottom:835.547867pt;}
.yef{bottom:835.707067pt;}
.yf0{bottom:836.027067pt;}
.y54{bottom:836.107067pt;}
.yb4{bottom:837.387259pt;}
.y81{bottom:837.627259pt;}
.yd8{bottom:839.707067pt;}
.yd9{bottom:840.027067pt;}
.y6c{bottom:840.266667pt;}
.y105{bottom:840.427067pt;}
.y10a{bottom:841.707067pt;}
.yd1{bottom:845.387067pt;}
.y3c{bottom:848.186667pt;}
.y25{bottom:849.867467pt;}
.yfb{bottom:850.907067pt;}
.yfc{bottom:851.227067pt;}
.y109{bottom:851.307067pt;}
.y80{bottom:853.627195pt;}
.y6b{bottom:854.666667pt;}
.yd0{bottom:854.987067pt;}
.yf9{bottom:860.507067pt;}
.yda{bottom:860.587067pt;}
.yfa{bottom:860.827067pt;}
.ydb{bottom:860.907067pt;}
.y11{bottom:861.627467pt;}
.y3b{bottom:862.506267pt;}
.y5d{bottom:863.707067pt;}
.y66{bottom:863.867067pt;}
.y24{bottom:864.267467pt;}
.y74{bottom:867.147200pt;}
.y6a{bottom:869.147067pt;}
.ydc{bottom:869.387067pt;}
.yb3{bottom:869.387131pt;}
.y7f{bottom:869.627131pt;}
.ydd{bottom:869.707067pt;}
.y53{bottom:874.987067pt;}
.y10{bottom:875.947067pt;}
.y3a{bottom:876.986667pt;}
.y23{bottom:878.667467pt;}
.yde{bottom:881.307067pt;}
.ydf{bottom:881.627067pt;}
.y69{bottom:883.547067pt;}
.yf8{bottom:885.067067pt;}
.yb2{bottom:885.387067pt;}
.y7e{bottom:885.627067pt;}
.y30{bottom:885.627467pt;}
.ya1{bottom:886.587411pt;}
.y52{bottom:889.387067pt;}
.y39{bottom:891.467067pt;}
.y92{bottom:891.867067pt;}
.y13b{bottom:893.467067pt;}
.y2f{bottom:899.947067pt;}
.y90{bottom:900.587067pt;}
.y15{bottom:900.988667pt;}
.y5c{bottom:901.547067pt;}
.y68{bottom:901.707067pt;}
.y51{bottom:903.787067pt;}
.ya0{bottom:905.787067pt;}
.y22{bottom:907.627067pt;}
.y89{bottom:907.707067pt;}
.y139{bottom:907.867067pt;}
.y8b{bottom:907.947067pt;}
.y5a{bottom:909.867067pt;}
.y4{bottom:937.626891pt;}
.y3{bottom:948.827067pt;}
.h12{height:4.400000pt;}
.h15{height:15.660106pt;}
.h11{height:17.331637pt;}
.h10{height:19.648797pt;}
.h13{height:19.891638pt;}
.h14{height:20.531637pt;}
.h16{height:20.780199pt;}
.h17{height:25.900291pt;}
.h1{height:33.375000pt;}
.h3{height:33.893437pt;}
.hd{height:34.144000pt;}
.hf{height:34.285193pt;}
.h9{height:36.000000pt;}
.h6{height:43.453125pt;}
.h4{height:50.062500pt;}
.hc{height:52.732500pt;}
.hb{height:55.736250pt;}
.ha{height:57.937500pt;}
.h5{height:64.080000pt;}
.h8{height:66.750000pt;}
.he{height:67.104000pt;}
.h2{height:71.455000pt;}
.h7{height:89.111250pt;}
.h0{height:1122.666667pt;}
.w1{width:18.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6d{left:16.720000pt;}
.x1{left:163.280000pt;}
.x6c{left:165.920000pt;}
.x13{left:170.880000pt;}
.x73{left:173.439857pt;}
.x2a{left:174.640000pt;}
.x2c{left:178.480000pt;}
.x7b{left:180.160000pt;}
.xb{left:182.240000pt;}
.xf{left:184.160000pt;}
.x27{left:185.440000pt;}
.x11{left:187.920000pt;}
.x31{left:192.400000pt;}
.xe{left:193.520400pt;}
.x72{left:195.279873pt;}
.x71{left:197.360000pt;}
.x8{left:200.799600pt;}
.x10{left:202.160000pt;}
.x28{left:203.439928pt;}
.x5{left:204.799600pt;}
.x29{left:209.440000pt;}
.x12{left:214.400000pt;}
.x20{left:216.400000pt;}
.x78{left:219.280000pt;}
.x2f{left:220.400000pt;}
.x1b{left:221.440000pt;}
.x15{left:224.799600pt;}
.x22{left:226.160000pt;}
.x1c{left:227.840000pt;}
.x7e{left:229.600000pt;}
.x23{left:230.960000pt;}
.xd{left:232.560000pt;}
.x33{left:234.640000pt;}
.xa{left:241.280000pt;}
.x30{left:245.840624pt;}
.x75{left:251.439829pt;}
.x32{left:253.200000pt;}
.x38{left:255.920000pt;}
.xc{left:257.120000pt;}
.x76{left:260.159826pt;}
.x2e{left:261.680000pt;}
.x3c{left:265.440000pt;}
.x77{left:266.400187pt;}
.x39{left:268.800000pt;}
.x6f{left:269.840000pt;}
.x3b{left:271.360000pt;}
.x9{left:273.999600pt;}
.x6{left:277.999600pt;}
.x43{left:279.120000pt;}
.x42{left:281.120000pt;}
.x3f{left:283.120000pt;}
.x16{left:284.319600pt;}
.x3a{left:286.000000pt;}
.x74{left:286.959451pt;}
.x45{left:288.560000pt;}
.x1a{left:289.520000pt;}
.x3{left:293.760160pt;}
.x6e{left:296.720000pt;}
.x40{left:299.680000pt;}
.x41{left:301.520000pt;}
.x44{left:302.480000pt;}
.x3d{left:310.320000pt;}
.x3e{left:314.000000pt;}
.x7d{left:315.280000pt;}
.x70{left:318.800000pt;}
.x21{left:320.480000pt;}
.x7{left:322.800000pt;}
.x4{left:326.800000pt;}
.x17{left:335.038800pt;}
.x34{left:340.080000pt;}
.x46{left:345.200000pt;}
.x68{left:346.800000pt;}
.x48{left:347.840000pt;}
.x47{left:348.880000pt;}
.x2{left:350.800000pt;}
.x79{left:352.000000pt;}
.x1f{left:353.760000pt;}
.x60{left:356.240000pt;}
.x1d{left:357.680000pt;}
.x7c{left:360.240000pt;}
.x2d{left:362.480000pt;}
.x49{left:370.480000pt;}
.x50{left:373.440000pt;}
.x1e{left:375.040000pt;}
.x7a{left:379.760400pt;}
.x19{left:382.558800pt;}
.x4c{left:394.320000pt;}
.x67{left:396.080000pt;}
.x35{left:399.600000pt;}
.x51{left:402.960000pt;}
.x25{left:405.760400pt;}
.x24{left:416.480000pt;}
.x4b{left:418.880000pt;}
.x4a{left:422.960000pt;}
.x18{left:424.879200pt;}
.x26{left:426.160400pt;}
.x61{left:430.720000pt;}
.x52{left:436.080000pt;}
.x69{left:438.560000pt;}
.x53{left:450.080000pt;}
.x4d{left:451.760000pt;}
.x4e{left:455.360000pt;}
.x4f{left:460.880000pt;}
.x6b{left:463.520000pt;}
.x54{left:464.720000pt;}
.x6a{left:465.920000pt;}
.x36{left:481.200000pt;}
.x37{left:484.800000pt;}
.x56{left:491.760000pt;}
.x55{left:493.920000pt;}
.x65{left:501.120000pt;}
.x62{left:505.200000pt;}
.x66{left:510.400000pt;}
.x57{left:511.440000pt;}
.x59{left:512.720000pt;}
.x58{left:515.120000pt;}
.x5c{left:516.240000pt;}
.x14{left:519.680000pt;}
.x64{left:520.640000pt;}
.x63{left:521.840000pt;}
.x5a{left:531.680000pt;}
.x5b{left:535.360000pt;}
.x5d{left:538.160000pt;}
.x5e{left:542.240000pt;}
.x5f{left:546.960000pt;}
.x2b{left:574.800000pt;}
}




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