
    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_33f086abe0729016babbd689.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.044000;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_8c43caddd14217feb8d8041c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_1b4f5384aaa2b8b78de610de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040000;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_c441ee7da9d881bc0b95e004.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_639fdbf8431b86eac084308d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_1cd2ce6665c64e77531eba96.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_bcb305fe7d38558f606be72d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.752000;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_058c964a3b6ee3c9a1b7b11e.woff2')format("woff");}.ff8{font-family:ff8;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;}
.mb{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237501,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242499,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.778400px;}
.ls3{letter-spacing:-1.026000px;}
.ls8{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.405000px;}
.ls2{letter-spacing:-0.234000px;}
.lsc{letter-spacing:-0.228000px;}
.lsa{letter-spacing:-0.225000px;}
.ls1{letter-spacing:-0.222000px;}
.ls5{letter-spacing:-0.166155px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.262350px;}
.ls6{letter-spacing:7.425000px;}
.ls4{letter-spacing:31.281649px;}
.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;}
}
.ws2{word-spacing:-16.872000px;}
.wsb1{word-spacing:-15.846000px;}
.ws0{word-spacing:-11.054400px;}
.ws1{word-spacing:-9.996000px;}
.wsc8{word-spacing:-9.000000px;}
.wse4{word-spacing:-8.892000px;}
.ws98{word-spacing:-8.880000px;}
.ws97{word-spacing:-8.658000px;}
.wsca{word-spacing:-8.595000px;}
.wsc9{word-spacing:-8.370000px;}
.ws37{word-spacing:-3.363000px;}
.wsab{word-spacing:-3.306000px;}
.ws4e{word-spacing:-3.249000px;}
.ws65{word-spacing:-3.192000px;}
.ws2c{word-spacing:-3.135000px;}
.ws4d{word-spacing:-3.078000px;}
.ws6a{word-spacing:-3.021000px;}
.ws1d{word-spacing:-2.907000px;}
.ws87{word-spacing:-2.793000px;}
.ws6d{word-spacing:-2.736000px;}
.wsc2{word-spacing:-2.679000px;}
.ws94{word-spacing:-2.622000px;}
.ws35{word-spacing:-2.565000px;}
.ws3d{word-spacing:-2.451000px;}
.ws5e{word-spacing:-2.394000px;}
.ws88{word-spacing:-2.337000px;}
.ws63{word-spacing:-2.280000px;}
.wsbe{word-spacing:-2.223000px;}
.ws9c{word-spacing:-2.166000px;}
.ws51{word-spacing:-2.109000px;}
.ws1a{word-spacing:-2.052000px;}
.ws6b{word-spacing:-1.995000px;}
.ws5c{word-spacing:-1.938000px;}
.ws36{word-spacing:-1.881000px;}
.ws6e{word-spacing:-1.767000px;}
.ws7a{word-spacing:-1.710000px;}
.wsb4{word-spacing:-1.653000px;}
.wsae{word-spacing:-1.642800px;}
.ws9e{word-spacing:-1.596000px;}
.wscb{word-spacing:-1.539000px;}
.ws71{word-spacing:-1.482000px;}
.ws8d{word-spacing:-1.425000px;}
.wsa5{word-spacing:-1.376400px;}
.ws62{word-spacing:-1.368000px;}
.ws48{word-spacing:-1.197000px;}
.ws95{word-spacing:-1.140000px;}
.ws4a{word-spacing:-1.083000px;}
.ws39{word-spacing:-1.026000px;}
.ws1f{word-spacing:-0.969000px;}
.wsd1{word-spacing:-0.945000px;}
.ws50{word-spacing:-0.932400px;}
.ws42{word-spacing:-0.912000px;}
.wsce{word-spacing:-0.900000px;}
.wsa7{word-spacing:-0.843600px;}
.wsb{word-spacing:-0.799680px;}
.ws49{word-spacing:-0.798000px;}
.ws33{word-spacing:-0.741000px;}
.ws21{word-spacing:-0.684000px;}
.wscf{word-spacing:-0.675000px;}
.ws4b{word-spacing:-0.627000px;}
.wsd3{word-spacing:-0.585000px;}
.wsb6{word-spacing:-0.570000px;}
.ws84{word-spacing:-0.513000px;}
.wscc{word-spacing:-0.488400px;}
.ws6c{word-spacing:-0.456000px;}
.wsd{word-spacing:-0.399840px;}
.ws25{word-spacing:-0.399000px;}
.ws58{word-spacing:-0.342000px;}
.ws76{word-spacing:-0.285000px;}
.wsa6{word-spacing:-0.266400px;}
.wse2{word-spacing:-0.262350px;}
.ws59{word-spacing:-0.228000px;}
.ws4c{word-spacing:-0.171000px;}
.wsa4{word-spacing:-0.133200px;}
.wsb3{word-spacing:-0.114000px;}
.ws72{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws41{word-spacing:0.057000px;}
.wsb0{word-spacing:0.088800px;}
.wsb5{word-spacing:0.114000px;}
.wsc{word-spacing:0.149940px;}
.wsc1{word-spacing:0.166155px;}
.ws92{word-spacing:0.171000px;}
.ws4{word-spacing:0.222000px;}
.ws46{word-spacing:0.228000px;}
.ws44{word-spacing:0.285000px;}
.ws1b{word-spacing:0.399000px;}
.wse{word-spacing:0.449820px;}
.ws22{word-spacing:0.456000px;}
.ws7f{word-spacing:0.513000px;}
.wsba{word-spacing:0.570000px;}
.ws61{word-spacing:0.627000px;}
.ws52{word-spacing:0.684000px;}
.ws54{word-spacing:0.741000px;}
.ws5f{word-spacing:0.798000px;}
.ws10{word-spacing:0.849660px;}
.ws3c{word-spacing:0.855000px;}
.ws27{word-spacing:0.912000px;}
.ws8b{word-spacing:1.026000px;}
.wse7{word-spacing:1.048800px;}
.ws3e{word-spacing:1.083000px;}
.ws99{word-spacing:1.140000px;}
.ws28{word-spacing:1.197000px;}
.ws2b{word-spacing:1.254000px;}
.ws73{word-spacing:1.311000px;}
.ws7c{word-spacing:1.368000px;}
.ws69{word-spacing:1.425000px;}
.ws66{word-spacing:1.482000px;}
.wsd8{word-spacing:1.530000px;}
.ws5b{word-spacing:1.539000px;}
.wsd2{word-spacing:1.575000px;}
.ws79{word-spacing:1.596000px;}
.ws13{word-spacing:1.599360px;}
.ws20{word-spacing:1.653000px;}
.ws2e{word-spacing:1.710000px;}
.wse6{word-spacing:1.732800px;}
.ws3b{word-spacing:1.767000px;}
.wsa3{word-spacing:1.776000px;}
.ws86{word-spacing:1.824000px;}
.ws7b{word-spacing:1.881000px;}
.ws60{word-spacing:1.938000px;}
.ws8a{word-spacing:1.995000px;}
.wsa1{word-spacing:2.052000px;}
.ws11{word-spacing:2.099160px;}
.ws56{word-spacing:2.109000px;}
.ws6f{word-spacing:2.166000px;}
.ws81{word-spacing:2.223000px;}
.ws55{word-spacing:2.280000px;}
.ws1e{word-spacing:2.337000px;}
.ws38{word-spacing:2.394000px;}
.wsf{word-spacing:2.399040px;}
.ws32{word-spacing:2.451000px;}
.ws67{word-spacing:2.508000px;}
.wsa9{word-spacing:2.565000px;}
.ws30{word-spacing:2.622000px;}
.wsc4{word-spacing:2.679000px;}
.wsaa{word-spacing:2.736000px;}
.ws70{word-spacing:2.793000px;}
.ws2a{word-spacing:2.850000px;}
.wsc0{word-spacing:2.907000px;}
.wsc5{word-spacing:2.964000px;}
.ws83{word-spacing:3.021000px;}
.wsd5{word-spacing:3.060000px;}
.ws91{word-spacing:3.078000px;}
.ws24{word-spacing:3.135000px;}
.wsc6{word-spacing:3.192000px;}
.wse5{word-spacing:3.237600px;}
.ws6{word-spacing:3.241200px;}
.ws3f{word-spacing:3.249000px;}
.wsbf{word-spacing:3.306000px;}
.ws29{word-spacing:3.363000px;}
.wsa8{word-spacing:3.477000px;}
.ws5d{word-spacing:3.591000px;}
.ws47{word-spacing:3.648000px;}
.wsdd{word-spacing:3.690000px;}
.wsbc{word-spacing:3.705000px;}
.ws89{word-spacing:3.819000px;}
.wsac{word-spacing:3.876000px;}
.wsaf{word-spacing:3.907200px;}
.ws68{word-spacing:3.933000px;}
.ws16{word-spacing:3.948420px;}
.wsa2{word-spacing:3.951600px;}
.ws45{word-spacing:3.990000px;}
.ws82{word-spacing:4.047000px;}
.ws9f{word-spacing:4.104000px;}
.ws1c{word-spacing:4.218000px;}
.ws12{word-spacing:4.248300px;}
.ws80{word-spacing:4.275000px;}
.ws3a{word-spacing:4.332000px;}
.ws75{word-spacing:4.389000px;}
.wsd4{word-spacing:4.410000px;}
.ws2f{word-spacing:4.446000px;}
.ws40{word-spacing:4.503000px;}
.wsad{word-spacing:4.617000px;}
.wscd{word-spacing:4.635000px;}
.ws53{word-spacing:4.674000px;}
.ws90{word-spacing:4.731000px;}
.wsb9{word-spacing:4.788000px;}
.ws8c{word-spacing:4.902000px;}
.ws43{word-spacing:4.959000px;}
.ws23{word-spacing:5.016000px;}
.wse8{word-spacing:5.061600px;}
.ws26{word-spacing:5.073000px;}
.wsa0{word-spacing:5.187000px;}
.ws18{word-spacing:5.197920px;}
.wsda{word-spacing:5.220000px;}
.ws8e{word-spacing:5.244000px;}
.wsb7{word-spacing:5.301000px;}
.ws31{word-spacing:5.358000px;}
.wsc7{word-spacing:5.415000px;}
.wsd7{word-spacing:5.445000px;}
.wsb2{word-spacing:5.472000px;}
.ws17{word-spacing:5.497800px;}
.ws2d{word-spacing:5.529000px;}
.ws5a{word-spacing:5.586000px;}
.wse3{word-spacing:5.670000px;}
.wsc3{word-spacing:5.700000px;}
.wsdb{word-spacing:5.760000px;}
.wse1{word-spacing:5.895000px;}
.ws9a{word-spacing:5.928000px;}
.wsb8{word-spacing:5.985000px;}
.ws5{word-spacing:6.127200px;}
.ws7e{word-spacing:6.213000px;}
.ws8f{word-spacing:6.327000px;}
.ws64{word-spacing:6.384000px;}
.ws78{word-spacing:6.441000px;}
.ws74{word-spacing:6.669000px;}
.wsd6{word-spacing:6.705000px;}
.ws9b{word-spacing:6.783000px;}
.ws57{word-spacing:6.897000px;}
.ws4f{word-spacing:7.011000px;}
.ws93{word-spacing:7.125000px;}
.ws19{word-spacing:7.347060px;}
.ws9d{word-spacing:7.353000px;}
.ws34{word-spacing:7.410000px;}
.wsd0{word-spacing:7.425000px;}
.wsde{word-spacing:7.470000px;}
.ws85{word-spacing:7.866000px;}
.wsbb{word-spacing:8.094000px;}
.wsdc{word-spacing:8.325000px;}
.ws8{word-spacing:8.646540px;}
.ws96{word-spacing:9.063000px;}
.ws77{word-spacing:9.462000px;}
.wsbd{word-spacing:9.576000px;}
.ws7{word-spacing:9.746100px;}
.ws7d{word-spacing:9.747000px;}
.ws15{word-spacing:10.945620px;}
.ws9{word-spacing:12.694920px;}
.wse0{word-spacing:14.715000px;}
.wsd9{word-spacing:15.750000px;}
.ws14{word-spacing:16.493400px;}
.wsa{word-spacing:18.142740px;}
.wsdf{word-spacing:25.920000px;}
._10{margin-left:-17.093280px;}
._12{margin-left:-14.215200px;}
._7{margin-left:-7.901940px;}
._a{margin-left:-6.856260px;}
._6{margin-left:-5.767200px;}
._8{margin-left:-4.181040px;}
._5{margin-left:-3.135360px;}
._3{margin-left:-1.528800px;}
._2{width:1.536000px;}
._1{width:3.036000px;}
._f{width:4.047000px;}
._d{width:6.611878px;}
._b{width:8.837878px;}
._c{width:10.301878px;}
._11{width:14.715000px;}
._e{width:23.483878px;}
._4{width:55.035278px;}
._9{width:925.189200px;}
._0{width:2076.081000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:26.235000px;}
.fs6{font-size:29.733000px;}
.fs9{font-size:33.231000px;}
.fs4{font-size:44.400000px;}
.fsa{font-size:45.000000px;}
.fsd{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fse{font-size:47.040000px;}
.fsc{font-size:48.000000px;}
.fs5{font-size:49.980000px;}
.fs3{font-size:55.272000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:76.440000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:58.827450px;}
.y68{bottom:112.677150px;}
.ybf{bottom:112.677300px;}
.y8{bottom:112.679700px;}
.y11e{bottom:112.684500px;}
.ya4{bottom:112.686150px;}
.y4c{bottom:112.699650px;}
.ycc{bottom:112.706400px;}
.y7{bottom:126.177300px;}
.y11d{bottom:126.182100px;}
.y67{bottom:132.927150px;}
.ya3{bottom:132.935400px;}
.y4b{bottom:132.948900px;}
.ycb{bottom:132.955650px;}
.y11c{bottom:139.679700px;}
.y6{bottom:147.439650px;}
.yf7{bottom:147.451650px;}
.y66{bottom:153.177150px;}
.y11b{bottom:153.177300px;}
.y12f{bottom:153.177900px;}
.ya2{bottom:153.184650px;}
.ybe{bottom:153.194400px;}
.y4a{bottom:153.198150px;}
.yca{bottom:153.204900px;}
.y5{bottom:160.937250px;}
.yf6{bottom:160.949250px;}
.y12e{bottom:173.427150px;}
.y65{bottom:173.428650px;}
.y8c{bottom:173.433900px;}
.y12c{bottom:173.436150px;}
.ybd{bottom:173.443650px;}
.yc9{bottom:173.454150px;}
.yf5{bottom:174.446850px;}
.y12d{bottom:178.172400px;}
.yf4{bottom:187.944450px;}
.y64{bottom:193.677900px;}
.y8b{bottom:193.683150px;}
.y12b{bottom:193.685400px;}
.ybc{bottom:193.692900px;}
.y49{bottom:193.696650px;}
.yc8{bottom:193.703400px;}
.yf3{bottom:201.442050px;}
.y63{bottom:213.927150px;}
.y8a{bottom:213.932400px;}
.y12a{bottom:213.934650px;}
.y11a{bottom:213.935400px;}
.ybb{bottom:213.942150px;}
.y48{bottom:213.945900px;}
.yc7{bottom:213.952650px;}
.yf2{bottom:214.939650px;}
.yf1{bottom:228.437250px;}
.y29{bottom:234.180150px;}
.y89{bottom:234.181650px;}
.y129{bottom:234.183900px;}
.y119{bottom:234.184650px;}
.yba{bottom:234.191400px;}
.y47{bottom:234.195150px;}
.yc6{bottom:234.201900px;}
.y62{bottom:254.427150px;}
.y28{bottom:254.429400px;}
.y88{bottom:254.430900px;}
.y128{bottom:254.433150px;}
.y118{bottom:254.433900px;}
.ydf{bottom:254.439150px;}
.yb9{bottom:254.440650px;}
.y46{bottom:254.444400px;}
.yc5{bottom:254.451150px;}
.y146{bottom:260.094450px;}
.y15d{bottom:264.397800px;}
.y145{bottom:274.348200px;}
.y27{bottom:274.678650px;}
.y87{bottom:274.680150px;}
.y127{bottom:274.682400px;}
.y117{bottom:274.683150px;}
.yf0{bottom:274.687650px;}
.yde{bottom:274.688400px;}
.yb8{bottom:274.689900px;}
.y45{bottom:274.693650px;}
.yc4{bottom:274.700400px;}
.y15a{bottom:278.521950px;}
.y15c{bottom:278.651550px;}
.y15b{bottom:282.397800px;}
.y144{bottom:288.601950px;}
.y159{bottom:292.775700px;}
.y26{bottom:294.927900px;}
.y86{bottom:294.929400px;}
.y126{bottom:294.931650px;}
.y116{bottom:294.932400px;}
.yef{bottom:294.936900px;}
.ydd{bottom:294.937650px;}
.yb7{bottom:294.939150px;}
.y44{bottom:294.942900px;}
.yc3{bottom:294.949650px;}
.y158{bottom:307.029450px;}
.y143{bottom:307.108200px;}
.y25{bottom:315.177150px;}
.y85{bottom:315.178650px;}
.y125{bottom:315.180900px;}
.y115{bottom:315.181650px;}
.yee{bottom:315.186150px;}
.ydc{bottom:315.186900px;}
.yb6{bottom:315.188400px;}
.y43{bottom:315.192150px;}
.y61{bottom:315.198900px;}
.y142{bottom:321.361950px;}
.y157{bottom:325.535700px;}
.y84{bottom:335.427900px;}
.y124{bottom:335.430150px;}
.y114{bottom:335.430900px;}
.yed{bottom:335.435400px;}
.ydb{bottom:335.436150px;}
.yb5{bottom:335.437650px;}
.y42{bottom:335.441400px;}
.y60{bottom:335.448150px;}
.y141{bottom:335.615700px;}
.y156{bottom:339.789450px;}
.y140{bottom:354.121950px;}
.y83{bottom:355.677150px;}
.y23{bottom:355.677900px;}
.y123{bottom:355.679400px;}
.y113{bottom:355.680150px;}
.y82{bottom:355.682400px;}
.yec{bottom:355.684650px;}
.yda{bottom:355.685400px;}
.yb4{bottom:355.686900px;}
.y41{bottom:355.690650px;}
.yc2{bottom:355.697400px;}
.y155{bottom:358.295700px;}
.y24{bottom:360.422400px;}
.y13f{bottom:368.375700px;}
.y154{bottom:372.549450px;}
.y22{bottom:375.927150px;}
.y21{bottom:375.927900px;}
.y122{bottom:375.928650px;}
.y112{bottom:375.929400px;}
.y81{bottom:375.931650px;}
.y10c{bottom:375.933150px;}
.yeb{bottom:375.933900px;}
.yd9{bottom:375.934650px;}
.yb3{bottom:375.936150px;}
.y40{bottom:375.939900px;}
.ya1{bottom:375.942150px;}
.y5f{bottom:375.946650px;}
.y153{bottom:386.803200px;}
.y13e{bottom:386.881950px;}
.y20{bottom:396.177150px;}
.y121{bottom:396.177900px;}
.y111{bottom:396.178650px;}
.y80{bottom:396.180900px;}
.y10b{bottom:396.182400px;}
.yea{bottom:396.183150px;}
.yd8{bottom:396.183900px;}
.yb2{bottom:396.185400px;}
.y3f{bottom:396.189150px;}
.ya0{bottom:396.191400px;}
.yc1{bottom:396.195900px;}
.y13d{bottom:401.135700px;}
.y152{bottom:405.309450px;}
.y120{bottom:416.427150px;}
.y7f{bottom:416.430150px;}
.y10a{bottom:416.431650px;}
.ye9{bottom:416.432400px;}
.yd7{bottom:416.433150px;}
.yb1{bottom:416.434650px;}
.y3e{bottom:416.438400px;}
.y9f{bottom:416.440650px;}
.y5e{bottom:416.445150px;}
.y151{bottom:419.563200px;}
.y13c{bottom:419.641950px;}
.y13b{bottom:433.895700px;}
.y1f{bottom:436.677150px;}
.y10f{bottom:436.678650px;}
.y7e{bottom:436.679400px;}
.y109{bottom:436.680900px;}
.ye8{bottom:436.681650px;}
.yd6{bottom:436.682400px;}
.yb0{bottom:436.683900px;}
.y3d{bottom:436.687650px;}
.y9e{bottom:436.689900px;}
.y5d{bottom:436.694400px;}
.y150{bottom:438.069450px;}
.y110{bottom:441.422400px;}
.y14f{bottom:452.323200px;}
.y13a{bottom:452.401950px;}
.y11f{bottom:456.927150px;}
.y10e{bottom:456.927900px;}
.y7d{bottom:456.928650px;}
.y108{bottom:456.930150px;}
.ye7{bottom:456.930900px;}
.yd5{bottom:456.931650px;}
.yaf{bottom:456.933150px;}
.y3c{bottom:456.936900px;}
.y9d{bottom:456.939150px;}
.ycd{bottom:456.943650px;}
.y14e{bottom:466.576950px;}
.y139{bottom:466.655700px;}
.y10d{bottom:477.177150px;}
.y7c{bottom:477.177900px;}
.y107{bottom:477.179400px;}
.ye6{bottom:477.180150px;}
.yd4{bottom:477.180900px;}
.yae{bottom:477.182400px;}
.y3b{bottom:477.186150px;}
.y9c{bottom:477.188400px;}
.y5c{bottom:477.192900px;}
.y138{bottom:480.909450px;}
.y14d{bottom:485.083200px;}
.y7b{bottom:497.427150px;}
.y106{bottom:497.428650px;}
.ye5{bottom:497.429400px;}
.yd3{bottom:497.430150px;}
.yad{bottom:497.431650px;}
.y3a{bottom:497.435400px;}
.y9b{bottom:497.437650px;}
.y5b{bottom:497.442150px;}
.y14c{bottom:499.336950px;}
.y137{bottom:499.403400px;}
.y14b{bottom:513.590700px;}
.y136{bottom:513.657150px;}
.y105{bottom:517.677900px;}
.ye4{bottom:517.678650px;}
.yd2{bottom:517.679400px;}
.yac{bottom:517.680900px;}
.y39{bottom:517.684650px;}
.y9a{bottom:517.686900px;}
.y7a{bottom:517.689900px;}
.y5a{bottom:517.691400px;}
.y14a{bottom:532.096950px;}
.y133{bottom:532.159650px;}
.y135{bottom:532.163400px;}
.y134{bottom:535.909650px;}
.y1e{bottom:537.854505px;}
.y14{bottom:537.891990px;}
.y104{bottom:537.927150px;}
.ye3{bottom:537.927900px;}
.yd1{bottom:537.928650px;}
.yab{bottom:537.930150px;}
.y38{bottom:537.933900px;}
.y99{bottom:537.936150px;}
.y79{bottom:537.939150px;}
.yc0{bottom:537.940650px;}
.y149{bottom:546.350700px;}
.y132{bottom:546.413400px;}
.y1d{bottom:558.108900px;}
.y13{bottom:558.146385px;}
.ye2{bottom:558.177150px;}
.yd0{bottom:558.177900px;}
.yaa{bottom:558.179400px;}
.y103{bottom:558.181650px;}
.y37{bottom:558.183150px;}
.y98{bottom:558.185400px;}
.y78{bottom:558.188400px;}
.y59{bottom:558.189900px;}
.ye1{bottom:562.922400px;}
.y148{bottom:564.856950px;}
.y131{bottom:564.911550px;}
.y1c{bottom:578.363295px;}
.y12{bottom:578.400780px;}
.ycf{bottom:578.427150px;}
.ya9{bottom:578.428650px;}
.y102{bottom:578.430900px;}
.y36{bottom:578.432400px;}
.y97{bottom:578.434650px;}
.y77{bottom:578.437650px;}
.y58{bottom:578.439150px;}
.y147{bottom:579.110700px;}
.y130{bottom:579.165300px;}
.yce{bottom:583.172400px;}
.y1b{bottom:598.617690px;}
.y11{bottom:598.655175px;}
.ya8{bottom:598.677900px;}
.y101{bottom:598.680150px;}
.y35{bottom:598.681650px;}
.y96{bottom:598.683900px;}
.y76{bottom:598.686900px;}
.y57{bottom:598.688400px;}
.y1a{bottom:618.872085px;}
.y10{bottom:618.909570px;}
.ya7{bottom:618.927150px;}
.y100{bottom:618.929400px;}
.y95{bottom:618.933150px;}
.y75{bottom:618.936150px;}
.y56{bottom:618.937650px;}
.ya6{bottom:623.672400px;}
.y19{bottom:639.126480px;}
.yf{bottom:639.163965px;}
.yff{bottom:639.178650px;}
.y34{bottom:639.180150px;}
.y94{bottom:639.182400px;}
.y74{bottom:639.185400px;}
.y55{bottom:639.186900px;}
.y18{bottom:659.380875px;}
.ye{bottom:659.418360px;}
.yfe{bottom:659.427900px;}
.y33{bottom:659.429400px;}
.y93{bottom:659.431650px;}
.y73{bottom:659.434650px;}
.ya5{bottom:659.436150px;}
.y17{bottom:679.635270px;}
.yd{bottom:679.672755px;}
.yfd{bottom:679.677150px;}
.y32{bottom:679.678650px;}
.yfb{bottom:679.680150px;}
.y92{bottom:679.680900px;}
.y72{bottom:679.683900px;}
.y54{bottom:679.685400px;}
.yfc{bottom:684.422400px;}
.y163{bottom:698.291550px;}
.y16{bottom:699.889665px;}
.ya{bottom:699.922755px;}
.yc{bottom:699.927150px;}
.y31{bottom:699.927900px;}
.yfa{bottom:699.929400px;}
.y91{bottom:699.930150px;}
.y71{bottom:699.933150px;}
.y53{bottom:699.934650px;}
.yb{bottom:704.172900px;}
.y162{bottom:713.886750px;}
.y15{bottom:720.144060px;}
.y9{bottom:720.177150px;}
.yf9{bottom:720.178650px;}
.y90{bottom:720.179400px;}
.y70{bottom:720.182400px;}
.y52{bottom:720.183900px;}
.y161{bottom:729.481950px;}
.yf8{bottom:740.427900px;}
.y8f{bottom:740.428650px;}
.y6f{bottom:740.431650px;}
.y51{bottom:740.433150px;}
.y160{bottom:745.077150px;}
.y15f{bottom:745.081950px;}
.y4{bottom:760.677150px;}
.y8e{bottom:760.677900px;}
.y30{bottom:760.678650px;}
.y6e{bottom:760.680900px;}
.y50{bottom:760.682400px;}
.y8d{bottom:780.927150px;}
.y2f{bottom:780.927900px;}
.y6d{bottom:780.930150px;}
.y4f{bottom:780.931650px;}
.y15e{bottom:781.977150px;}
.y2e{bottom:801.177150px;}
.y6c{bottom:801.179400px;}
.y4e{bottom:801.180900px;}
.y6b{bottom:821.428650px;}
.y4d{bottom:821.430150px;}
.y3{bottom:841.677150px;}
.y2d{bottom:841.679400px;}
.y6a{bottom:861.927150px;}
.y2c{bottom:861.928650px;}
.y69{bottom:882.177150px;}
.y2b{bottom:882.177900px;}
.y2{bottom:902.427150px;}
.ye0{bottom:907.172400px;}
.y1{bottom:954.717300px;}
.hf{height:21.250350px;}
.h8{height:23.399871px;}
.hb{height:26.152797px;}
.h10{height:32.535000px;}
.h6{height:35.830800px;}
.he{height:36.450000px;}
.hc{height:36.831600px;}
.h12{height:36.936000px;}
.h13{height:37.020480px;}
.hd{height:37.767600px;}
.h11{height:37.776000px;}
.h2{height:37.908000px;}
.h7{height:40.483800px;}
.ha{height:41.439000px;}
.h5{height:43.499064px;}
.h3{height:53.460000px;}
.h9{height:60.158280px;}
.h4{height:75.552000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x9{left:69.094500px;}
.x1{left:76.535400px;}
.x21{left:86.314950px;}
.x1b{left:89.292112px;}
.xb{left:93.541095px;}
.x2{left:97.795200px;}
.x15{left:100.568700px;}
.x16{left:105.013200px;}
.x23{left:108.637800px;}
.xa{left:117.514500px;}
.x8{left:119.055150px;}
.x17{left:145.541700px;}
.x18{left:154.430850px;}
.x1c{left:178.765350px;}
.x10{left:182.753190px;}
.x1d{left:185.806050px;}
.x3{left:211.303200px;}
.x4{left:215.280000px;}
.x6{left:249.319800px;}
.x19{left:317.637600px;}
.x13{left:324.662850px;}
.x1a{left:326.568300px;}
.x14{left:328.974150px;}
.xe{left:335.851500px;}
.xf{left:340.296000px;}
.x5{left:359.291250px;}
.x1e{left:372.034987px;}
.x1f{left:400.121850px;}
.x20{left:406.165500px;}
.x11{left:518.455500px;}
.x12{left:522.900150px;}
.x7{left:575.621550px;}
.x22{left:588.938100px;}
.xc{left:620.687850px;}
.xd{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.580800pt;}
.ls3{letter-spacing:-0.912000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.360000pt;}
.ls2{letter-spacing:-0.208000pt;}
.lsc{letter-spacing:-0.202667pt;}
.lsa{letter-spacing:-0.200000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls5{letter-spacing:-0.147693pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.233200pt;}
.ls6{letter-spacing:6.600000pt;}
.ls4{letter-spacing:27.805911pt;}
.ws2{word-spacing:-14.997333pt;}
.wsb1{word-spacing:-14.085333pt;}
.ws0{word-spacing:-9.826133pt;}
.ws1{word-spacing:-8.885333pt;}
.wsc8{word-spacing:-8.000000pt;}
.wse4{word-spacing:-7.904000pt;}
.ws98{word-spacing:-7.893333pt;}
.ws97{word-spacing:-7.696000pt;}
.wsca{word-spacing:-7.640000pt;}
.wsc9{word-spacing:-7.440000pt;}
.ws37{word-spacing:-2.989333pt;}
.wsab{word-spacing:-2.938667pt;}
.ws4e{word-spacing:-2.888000pt;}
.ws65{word-spacing:-2.837333pt;}
.ws2c{word-spacing:-2.786667pt;}
.ws4d{word-spacing:-2.736000pt;}
.ws6a{word-spacing:-2.685333pt;}
.ws1d{word-spacing:-2.584000pt;}
.ws87{word-spacing:-2.482667pt;}
.ws6d{word-spacing:-2.432000pt;}
.wsc2{word-spacing:-2.381333pt;}
.ws94{word-spacing:-2.330667pt;}
.ws35{word-spacing:-2.280000pt;}
.ws3d{word-spacing:-2.178667pt;}
.ws5e{word-spacing:-2.128000pt;}
.ws88{word-spacing:-2.077333pt;}
.ws63{word-spacing:-2.026667pt;}
.wsbe{word-spacing:-1.976000pt;}
.ws9c{word-spacing:-1.925333pt;}
.ws51{word-spacing:-1.874667pt;}
.ws1a{word-spacing:-1.824000pt;}
.ws6b{word-spacing:-1.773333pt;}
.ws5c{word-spacing:-1.722667pt;}
.ws36{word-spacing:-1.672000pt;}
.ws6e{word-spacing:-1.570667pt;}
.ws7a{word-spacing:-1.520000pt;}
.wsb4{word-spacing:-1.469333pt;}
.wsae{word-spacing:-1.460267pt;}
.ws9e{word-spacing:-1.418667pt;}
.wscb{word-spacing:-1.368000pt;}
.ws71{word-spacing:-1.317333pt;}
.ws8d{word-spacing:-1.266667pt;}
.wsa5{word-spacing:-1.223467pt;}
.ws62{word-spacing:-1.216000pt;}
.ws48{word-spacing:-1.064000pt;}
.ws95{word-spacing:-1.013333pt;}
.ws4a{word-spacing:-0.962667pt;}
.ws39{word-spacing:-0.912000pt;}
.ws1f{word-spacing:-0.861333pt;}
.wsd1{word-spacing:-0.840000pt;}
.ws50{word-spacing:-0.828800pt;}
.ws42{word-spacing:-0.810667pt;}
.wsce{word-spacing:-0.800000pt;}
.wsa7{word-spacing:-0.749867pt;}
.wsb{word-spacing:-0.710827pt;}
.ws49{word-spacing:-0.709333pt;}
.ws33{word-spacing:-0.658667pt;}
.ws21{word-spacing:-0.608000pt;}
.wscf{word-spacing:-0.600000pt;}
.ws4b{word-spacing:-0.557333pt;}
.wsd3{word-spacing:-0.520000pt;}
.wsb6{word-spacing:-0.506667pt;}
.ws84{word-spacing:-0.456000pt;}
.wscc{word-spacing:-0.434133pt;}
.ws6c{word-spacing:-0.405333pt;}
.wsd{word-spacing:-0.355413pt;}
.ws25{word-spacing:-0.354667pt;}
.ws58{word-spacing:-0.304000pt;}
.ws76{word-spacing:-0.253333pt;}
.wsa6{word-spacing:-0.236800pt;}
.wse2{word-spacing:-0.233200pt;}
.ws59{word-spacing:-0.202667pt;}
.ws4c{word-spacing:-0.152000pt;}
.wsa4{word-spacing:-0.118400pt;}
.wsb3{word-spacing:-0.101333pt;}
.ws72{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws41{word-spacing:0.050667pt;}
.wsb0{word-spacing:0.078933pt;}
.wsb5{word-spacing:0.101333pt;}
.wsc{word-spacing:0.133280pt;}
.wsc1{word-spacing:0.147693pt;}
.ws92{word-spacing:0.152000pt;}
.ws4{word-spacing:0.197333pt;}
.ws46{word-spacing:0.202667pt;}
.ws44{word-spacing:0.253333pt;}
.ws1b{word-spacing:0.354667pt;}
.wse{word-spacing:0.399840pt;}
.ws22{word-spacing:0.405333pt;}
.ws7f{word-spacing:0.456000pt;}
.wsba{word-spacing:0.506667pt;}
.ws61{word-spacing:0.557333pt;}
.ws52{word-spacing:0.608000pt;}
.ws54{word-spacing:0.658667pt;}
.ws5f{word-spacing:0.709333pt;}
.ws10{word-spacing:0.755253pt;}
.ws3c{word-spacing:0.760000pt;}
.ws27{word-spacing:0.810667pt;}
.ws8b{word-spacing:0.912000pt;}
.wse7{word-spacing:0.932267pt;}
.ws3e{word-spacing:0.962667pt;}
.ws99{word-spacing:1.013333pt;}
.ws28{word-spacing:1.064000pt;}
.ws2b{word-spacing:1.114667pt;}
.ws73{word-spacing:1.165333pt;}
.ws7c{word-spacing:1.216000pt;}
.ws69{word-spacing:1.266667pt;}
.ws66{word-spacing:1.317333pt;}
.wsd8{word-spacing:1.360000pt;}
.ws5b{word-spacing:1.368000pt;}
.wsd2{word-spacing:1.400000pt;}
.ws79{word-spacing:1.418667pt;}
.ws13{word-spacing:1.421653pt;}
.ws20{word-spacing:1.469333pt;}
.ws2e{word-spacing:1.520000pt;}
.wse6{word-spacing:1.540267pt;}
.ws3b{word-spacing:1.570667pt;}
.wsa3{word-spacing:1.578667pt;}
.ws86{word-spacing:1.621333pt;}
.ws7b{word-spacing:1.672000pt;}
.ws60{word-spacing:1.722667pt;}
.ws8a{word-spacing:1.773333pt;}
.wsa1{word-spacing:1.824000pt;}
.ws11{word-spacing:1.865920pt;}
.ws56{word-spacing:1.874667pt;}
.ws6f{word-spacing:1.925333pt;}
.ws81{word-spacing:1.976000pt;}
.ws55{word-spacing:2.026667pt;}
.ws1e{word-spacing:2.077333pt;}
.ws38{word-spacing:2.128000pt;}
.wsf{word-spacing:2.132480pt;}
.ws32{word-spacing:2.178667pt;}
.ws67{word-spacing:2.229333pt;}
.wsa9{word-spacing:2.280000pt;}
.ws30{word-spacing:2.330667pt;}
.wsc4{word-spacing:2.381333pt;}
.wsaa{word-spacing:2.432000pt;}
.ws70{word-spacing:2.482667pt;}
.ws2a{word-spacing:2.533333pt;}
.wsc0{word-spacing:2.584000pt;}
.wsc5{word-spacing:2.634667pt;}
.ws83{word-spacing:2.685333pt;}
.wsd5{word-spacing:2.720000pt;}
.ws91{word-spacing:2.736000pt;}
.ws24{word-spacing:2.786667pt;}
.wsc6{word-spacing:2.837333pt;}
.wse5{word-spacing:2.877867pt;}
.ws6{word-spacing:2.881067pt;}
.ws3f{word-spacing:2.888000pt;}
.wsbf{word-spacing:2.938667pt;}
.ws29{word-spacing:2.989333pt;}
.wsa8{word-spacing:3.090667pt;}
.ws5d{word-spacing:3.192000pt;}
.ws47{word-spacing:3.242667pt;}
.wsdd{word-spacing:3.280000pt;}
.wsbc{word-spacing:3.293333pt;}
.ws89{word-spacing:3.394667pt;}
.wsac{word-spacing:3.445333pt;}
.wsaf{word-spacing:3.473067pt;}
.ws68{word-spacing:3.496000pt;}
.ws16{word-spacing:3.509707pt;}
.wsa2{word-spacing:3.512533pt;}
.ws45{word-spacing:3.546667pt;}
.ws82{word-spacing:3.597333pt;}
.ws9f{word-spacing:3.648000pt;}
.ws1c{word-spacing:3.749333pt;}
.ws12{word-spacing:3.776267pt;}
.ws80{word-spacing:3.800000pt;}
.ws3a{word-spacing:3.850667pt;}
.ws75{word-spacing:3.901333pt;}
.wsd4{word-spacing:3.920000pt;}
.ws2f{word-spacing:3.952000pt;}
.ws40{word-spacing:4.002667pt;}
.wsad{word-spacing:4.104000pt;}
.wscd{word-spacing:4.120000pt;}
.ws53{word-spacing:4.154667pt;}
.ws90{word-spacing:4.205333pt;}
.wsb9{word-spacing:4.256000pt;}
.ws8c{word-spacing:4.357333pt;}
.ws43{word-spacing:4.408000pt;}
.ws23{word-spacing:4.458667pt;}
.wse8{word-spacing:4.499200pt;}
.ws26{word-spacing:4.509333pt;}
.wsa0{word-spacing:4.610667pt;}
.ws18{word-spacing:4.620373pt;}
.wsda{word-spacing:4.640000pt;}
.ws8e{word-spacing:4.661333pt;}
.wsb7{word-spacing:4.712000pt;}
.ws31{word-spacing:4.762667pt;}
.wsc7{word-spacing:4.813333pt;}
.wsd7{word-spacing:4.840000pt;}
.wsb2{word-spacing:4.864000pt;}
.ws17{word-spacing:4.886933pt;}
.ws2d{word-spacing:4.914667pt;}
.ws5a{word-spacing:4.965333pt;}
.wse3{word-spacing:5.040000pt;}
.wsc3{word-spacing:5.066667pt;}
.wsdb{word-spacing:5.120000pt;}
.wse1{word-spacing:5.240000pt;}
.ws9a{word-spacing:5.269333pt;}
.wsb8{word-spacing:5.320000pt;}
.ws5{word-spacing:5.446400pt;}
.ws7e{word-spacing:5.522667pt;}
.ws8f{word-spacing:5.624000pt;}
.ws64{word-spacing:5.674667pt;}
.ws78{word-spacing:5.725333pt;}
.ws74{word-spacing:5.928000pt;}
.wsd6{word-spacing:5.960000pt;}
.ws9b{word-spacing:6.029333pt;}
.ws57{word-spacing:6.130667pt;}
.ws4f{word-spacing:6.232000pt;}
.ws93{word-spacing:6.333333pt;}
.ws19{word-spacing:6.530720pt;}
.ws9d{word-spacing:6.536000pt;}
.ws34{word-spacing:6.586667pt;}
.wsd0{word-spacing:6.600000pt;}
.wsde{word-spacing:6.640000pt;}
.ws85{word-spacing:6.992000pt;}
.wsbb{word-spacing:7.194667pt;}
.wsdc{word-spacing:7.400000pt;}
.ws8{word-spacing:7.685813pt;}
.ws96{word-spacing:8.056000pt;}
.ws77{word-spacing:8.410667pt;}
.wsbd{word-spacing:8.512000pt;}
.ws7{word-spacing:8.663200pt;}
.ws7d{word-spacing:8.664000pt;}
.ws15{word-spacing:9.729440pt;}
.ws9{word-spacing:11.284373pt;}
.wse0{word-spacing:13.080000pt;}
.wsd9{word-spacing:14.000000pt;}
.ws14{word-spacing:14.660800pt;}
.wsa{word-spacing:16.126880pt;}
.wsdf{word-spacing:23.040000pt;}
._10{margin-left:-15.194027pt;}
._12{margin-left:-12.635733pt;}
._7{margin-left:-7.023947pt;}
._a{margin-left:-6.094453pt;}
._6{margin-left:-5.126400pt;}
._8{margin-left:-3.716480pt;}
._5{margin-left:-2.786987pt;}
._3{margin-left:-1.358933pt;}
._2{width:1.365333pt;}
._1{width:2.698667pt;}
._f{width:3.597333pt;}
._d{width:5.877224pt;}
._b{width:7.855891pt;}
._c{width:9.157224pt;}
._11{width:13.080000pt;}
._e{width:20.874558pt;}
._4{width:48.920247pt;}
._9{width:822.390400pt;}
._0{width:1845.405333pt;}
.fsb{font-size:23.320000pt;}
.fs6{font-size:26.429333pt;}
.fs9{font-size:29.538667pt;}
.fs4{font-size:39.466667pt;}
.fsa{font-size:40.000000pt;}
.fsd{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fse{font-size:41.813333pt;}
.fsc{font-size:42.666667pt;}
.fs5{font-size:44.426667pt;}
.fs3{font-size:49.130667pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:67.946667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:52.291067pt;}
.y68{bottom:100.157467pt;}
.ybf{bottom:100.157600pt;}
.y8{bottom:100.159733pt;}
.y11e{bottom:100.164000pt;}
.ya4{bottom:100.165467pt;}
.y4c{bottom:100.177467pt;}
.ycc{bottom:100.183467pt;}
.y7{bottom:112.157600pt;}
.y11d{bottom:112.161867pt;}
.y67{bottom:118.157467pt;}
.ya3{bottom:118.164800pt;}
.y4b{bottom:118.176800pt;}
.ycb{bottom:118.182800pt;}
.y11c{bottom:124.159733pt;}
.y6{bottom:131.057467pt;}
.yf7{bottom:131.068133pt;}
.y66{bottom:136.157467pt;}
.y11b{bottom:136.157600pt;}
.y12f{bottom:136.158133pt;}
.ya2{bottom:136.164133pt;}
.ybe{bottom:136.172800pt;}
.y4a{bottom:136.176133pt;}
.yca{bottom:136.182133pt;}
.y5{bottom:143.055333pt;}
.yf6{bottom:143.066000pt;}
.y12e{bottom:154.157467pt;}
.y65{bottom:154.158800pt;}
.y8c{bottom:154.163467pt;}
.y12c{bottom:154.165467pt;}
.ybd{bottom:154.172133pt;}
.yc9{bottom:154.181467pt;}
.yf5{bottom:155.063867pt;}
.y12d{bottom:158.375467pt;}
.yf4{bottom:167.061733pt;}
.y64{bottom:172.158133pt;}
.y8b{bottom:172.162800pt;}
.y12b{bottom:172.164800pt;}
.ybc{bottom:172.171467pt;}
.y49{bottom:172.174800pt;}
.yc8{bottom:172.180800pt;}
.yf3{bottom:179.059600pt;}
.y63{bottom:190.157467pt;}
.y8a{bottom:190.162133pt;}
.y12a{bottom:190.164133pt;}
.y11a{bottom:190.164800pt;}
.ybb{bottom:190.170800pt;}
.y48{bottom:190.174133pt;}
.yc7{bottom:190.180133pt;}
.yf2{bottom:191.057467pt;}
.yf1{bottom:203.055333pt;}
.y29{bottom:208.160133pt;}
.y89{bottom:208.161467pt;}
.y129{bottom:208.163467pt;}
.y119{bottom:208.164133pt;}
.yba{bottom:208.170133pt;}
.y47{bottom:208.173467pt;}
.yc6{bottom:208.179467pt;}
.y62{bottom:226.157467pt;}
.y28{bottom:226.159467pt;}
.y88{bottom:226.160800pt;}
.y128{bottom:226.162800pt;}
.y118{bottom:226.163467pt;}
.ydf{bottom:226.168133pt;}
.yb9{bottom:226.169467pt;}
.y46{bottom:226.172800pt;}
.yc5{bottom:226.178800pt;}
.y146{bottom:231.195067pt;}
.y15d{bottom:235.020267pt;}
.y145{bottom:243.865067pt;}
.y27{bottom:244.158800pt;}
.y87{bottom:244.160133pt;}
.y127{bottom:244.162133pt;}
.y117{bottom:244.162800pt;}
.yf0{bottom:244.166800pt;}
.yde{bottom:244.167467pt;}
.yb8{bottom:244.168800pt;}
.y45{bottom:244.172133pt;}
.yc4{bottom:244.178133pt;}
.y15a{bottom:247.575067pt;}
.y15c{bottom:247.690267pt;}
.y15b{bottom:251.020267pt;}
.y144{bottom:256.535067pt;}
.y159{bottom:260.245067pt;}
.y26{bottom:262.158133pt;}
.y86{bottom:262.159467pt;}
.y126{bottom:262.161467pt;}
.y116{bottom:262.162133pt;}
.yef{bottom:262.166133pt;}
.ydd{bottom:262.166800pt;}
.yb7{bottom:262.168133pt;}
.y44{bottom:262.171467pt;}
.yc3{bottom:262.177467pt;}
.y158{bottom:272.915067pt;}
.y143{bottom:272.985067pt;}
.y25{bottom:280.157467pt;}
.y85{bottom:280.158800pt;}
.y125{bottom:280.160800pt;}
.y115{bottom:280.161467pt;}
.yee{bottom:280.165467pt;}
.ydc{bottom:280.166133pt;}
.yb6{bottom:280.167467pt;}
.y43{bottom:280.170800pt;}
.y61{bottom:280.176800pt;}
.y142{bottom:285.655067pt;}
.y157{bottom:289.365067pt;}
.y84{bottom:298.158133pt;}
.y124{bottom:298.160133pt;}
.y114{bottom:298.160800pt;}
.yed{bottom:298.164800pt;}
.ydb{bottom:298.165467pt;}
.yb5{bottom:298.166800pt;}
.y42{bottom:298.170133pt;}
.y60{bottom:298.176133pt;}
.y141{bottom:298.325067pt;}
.y156{bottom:302.035067pt;}
.y140{bottom:314.775067pt;}
.y83{bottom:316.157467pt;}
.y23{bottom:316.158133pt;}
.y123{bottom:316.159467pt;}
.y113{bottom:316.160133pt;}
.y82{bottom:316.162133pt;}
.yec{bottom:316.164133pt;}
.yda{bottom:316.164800pt;}
.yb4{bottom:316.166133pt;}
.y41{bottom:316.169467pt;}
.yc2{bottom:316.175467pt;}
.y155{bottom:318.485067pt;}
.y24{bottom:320.375467pt;}
.y13f{bottom:327.445067pt;}
.y154{bottom:331.155067pt;}
.y22{bottom:334.157467pt;}
.y21{bottom:334.158133pt;}
.y122{bottom:334.158800pt;}
.y112{bottom:334.159467pt;}
.y81{bottom:334.161467pt;}
.y10c{bottom:334.162800pt;}
.yeb{bottom:334.163467pt;}
.yd9{bottom:334.164133pt;}
.yb3{bottom:334.165467pt;}
.y40{bottom:334.168800pt;}
.ya1{bottom:334.170800pt;}
.y5f{bottom:334.174800pt;}
.y153{bottom:343.825067pt;}
.y13e{bottom:343.895067pt;}
.y20{bottom:352.157467pt;}
.y121{bottom:352.158133pt;}
.y111{bottom:352.158800pt;}
.y80{bottom:352.160800pt;}
.y10b{bottom:352.162133pt;}
.yea{bottom:352.162800pt;}
.yd8{bottom:352.163467pt;}
.yb2{bottom:352.164800pt;}
.y3f{bottom:352.168133pt;}
.ya0{bottom:352.170133pt;}
.yc1{bottom:352.174133pt;}
.y13d{bottom:356.565067pt;}
.y152{bottom:360.275067pt;}
.y120{bottom:370.157467pt;}
.y7f{bottom:370.160133pt;}
.y10a{bottom:370.161467pt;}
.ye9{bottom:370.162133pt;}
.yd7{bottom:370.162800pt;}
.yb1{bottom:370.164133pt;}
.y3e{bottom:370.167467pt;}
.y9f{bottom:370.169467pt;}
.y5e{bottom:370.173467pt;}
.y151{bottom:372.945067pt;}
.y13c{bottom:373.015067pt;}
.y13b{bottom:385.685067pt;}
.y1f{bottom:388.157467pt;}
.y10f{bottom:388.158800pt;}
.y7e{bottom:388.159467pt;}
.y109{bottom:388.160800pt;}
.ye8{bottom:388.161467pt;}
.yd6{bottom:388.162133pt;}
.yb0{bottom:388.163467pt;}
.y3d{bottom:388.166800pt;}
.y9e{bottom:388.168800pt;}
.y5d{bottom:388.172800pt;}
.y150{bottom:389.395067pt;}
.y110{bottom:392.375467pt;}
.y14f{bottom:402.065067pt;}
.y13a{bottom:402.135067pt;}
.y11f{bottom:406.157467pt;}
.y10e{bottom:406.158133pt;}
.y7d{bottom:406.158800pt;}
.y108{bottom:406.160133pt;}
.ye7{bottom:406.160800pt;}
.yd5{bottom:406.161467pt;}
.yaf{bottom:406.162800pt;}
.y3c{bottom:406.166133pt;}
.y9d{bottom:406.168133pt;}
.ycd{bottom:406.172133pt;}
.y14e{bottom:414.735067pt;}
.y139{bottom:414.805067pt;}
.y10d{bottom:424.157467pt;}
.y7c{bottom:424.158133pt;}
.y107{bottom:424.159467pt;}
.ye6{bottom:424.160133pt;}
.yd4{bottom:424.160800pt;}
.yae{bottom:424.162133pt;}
.y3b{bottom:424.165467pt;}
.y9c{bottom:424.167467pt;}
.y5c{bottom:424.171467pt;}
.y138{bottom:427.475067pt;}
.y14d{bottom:431.185067pt;}
.y7b{bottom:442.157467pt;}
.y106{bottom:442.158800pt;}
.ye5{bottom:442.159467pt;}
.yd3{bottom:442.160133pt;}
.yad{bottom:442.161467pt;}
.y3a{bottom:442.164800pt;}
.y9b{bottom:442.166800pt;}
.y5b{bottom:442.170800pt;}
.y14c{bottom:443.855067pt;}
.y137{bottom:443.914133pt;}
.y14b{bottom:456.525067pt;}
.y136{bottom:456.584133pt;}
.y105{bottom:460.158133pt;}
.ye4{bottom:460.158800pt;}
.yd2{bottom:460.159467pt;}
.yac{bottom:460.160800pt;}
.y39{bottom:460.164133pt;}
.y9a{bottom:460.166133pt;}
.y7a{bottom:460.168800pt;}
.y5a{bottom:460.170133pt;}
.y14a{bottom:472.975067pt;}
.y133{bottom:473.030800pt;}
.y135{bottom:473.034133pt;}
.y134{bottom:476.364133pt;}
.y1e{bottom:478.092893pt;}
.y14{bottom:478.126213pt;}
.y104{bottom:478.157467pt;}
.ye3{bottom:478.158133pt;}
.yd1{bottom:478.158800pt;}
.yab{bottom:478.160133pt;}
.y38{bottom:478.163467pt;}
.y99{bottom:478.165467pt;}
.y79{bottom:478.168133pt;}
.yc0{bottom:478.169467pt;}
.y149{bottom:485.645067pt;}
.y132{bottom:485.700800pt;}
.y1d{bottom:496.096800pt;}
.y13{bottom:496.130120pt;}
.ye2{bottom:496.157467pt;}
.yd0{bottom:496.158133pt;}
.yaa{bottom:496.159467pt;}
.y103{bottom:496.161467pt;}
.y37{bottom:496.162800pt;}
.y98{bottom:496.164800pt;}
.y78{bottom:496.167467pt;}
.y59{bottom:496.168800pt;}
.ye1{bottom:500.375467pt;}
.y148{bottom:502.095067pt;}
.y131{bottom:502.143600pt;}
.y1c{bottom:514.100707pt;}
.y12{bottom:514.134027pt;}
.ycf{bottom:514.157467pt;}
.ya9{bottom:514.158800pt;}
.y102{bottom:514.160800pt;}
.y36{bottom:514.162133pt;}
.y97{bottom:514.164133pt;}
.y77{bottom:514.166800pt;}
.y58{bottom:514.168133pt;}
.y147{bottom:514.765067pt;}
.y130{bottom:514.813600pt;}
.yce{bottom:518.375467pt;}
.y1b{bottom:532.104613pt;}
.y11{bottom:532.137933pt;}
.ya8{bottom:532.158133pt;}
.y101{bottom:532.160133pt;}
.y35{bottom:532.161467pt;}
.y96{bottom:532.163467pt;}
.y76{bottom:532.166133pt;}
.y57{bottom:532.167467pt;}
.y1a{bottom:550.108520pt;}
.y10{bottom:550.141840pt;}
.ya7{bottom:550.157467pt;}
.y100{bottom:550.159467pt;}
.y95{bottom:550.162800pt;}
.y75{bottom:550.165467pt;}
.y56{bottom:550.166800pt;}
.ya6{bottom:554.375467pt;}
.y19{bottom:568.112427pt;}
.yf{bottom:568.145747pt;}
.yff{bottom:568.158800pt;}
.y34{bottom:568.160133pt;}
.y94{bottom:568.162133pt;}
.y74{bottom:568.164800pt;}
.y55{bottom:568.166133pt;}
.y18{bottom:586.116333pt;}
.ye{bottom:586.149653pt;}
.yfe{bottom:586.158133pt;}
.y33{bottom:586.159467pt;}
.y93{bottom:586.161467pt;}
.y73{bottom:586.164133pt;}
.ya5{bottom:586.165467pt;}
.y17{bottom:604.120240pt;}
.yd{bottom:604.153560pt;}
.yfd{bottom:604.157467pt;}
.y32{bottom:604.158800pt;}
.yfb{bottom:604.160133pt;}
.y92{bottom:604.160800pt;}
.y72{bottom:604.163467pt;}
.y54{bottom:604.164800pt;}
.yfc{bottom:608.375467pt;}
.y163{bottom:620.703600pt;}
.y16{bottom:622.124147pt;}
.ya{bottom:622.153560pt;}
.yc{bottom:622.157467pt;}
.y31{bottom:622.158133pt;}
.yfa{bottom:622.159467pt;}
.y91{bottom:622.160133pt;}
.y71{bottom:622.162800pt;}
.y53{bottom:622.164133pt;}
.yb{bottom:625.931467pt;}
.y162{bottom:634.566000pt;}
.y15{bottom:640.128053pt;}
.y9{bottom:640.157467pt;}
.yf9{bottom:640.158800pt;}
.y90{bottom:640.159467pt;}
.y70{bottom:640.162133pt;}
.y52{bottom:640.163467pt;}
.y161{bottom:648.428400pt;}
.yf8{bottom:658.158133pt;}
.y8f{bottom:658.158800pt;}
.y6f{bottom:658.161467pt;}
.y51{bottom:658.162800pt;}
.y160{bottom:662.290800pt;}
.y15f{bottom:662.295067pt;}
.y4{bottom:676.157467pt;}
.y8e{bottom:676.158133pt;}
.y30{bottom:676.158800pt;}
.y6e{bottom:676.160800pt;}
.y50{bottom:676.162133pt;}
.y8d{bottom:694.157467pt;}
.y2f{bottom:694.158133pt;}
.y6d{bottom:694.160133pt;}
.y4f{bottom:694.161467pt;}
.y15e{bottom:695.090800pt;}
.y2e{bottom:712.157467pt;}
.y6c{bottom:712.159467pt;}
.y4e{bottom:712.160800pt;}
.y6b{bottom:730.158800pt;}
.y4d{bottom:730.160133pt;}
.y3{bottom:748.157467pt;}
.y2d{bottom:748.159467pt;}
.y6a{bottom:766.157467pt;}
.y2c{bottom:766.158800pt;}
.y69{bottom:784.157467pt;}
.y2b{bottom:784.158133pt;}
.y2{bottom:802.157467pt;}
.ye0{bottom:806.375467pt;}
.y1{bottom:848.637600pt;}
.hf{height:18.889200pt;}
.h8{height:20.799885pt;}
.hb{height:23.246931pt;}
.h10{height:28.920000pt;}
.h6{height:31.849600pt;}
.he{height:32.400000pt;}
.hc{height:32.739200pt;}
.h12{height:32.832000pt;}
.h13{height:32.907093pt;}
.hd{height:33.571200pt;}
.h11{height:33.578667pt;}
.h2{height:33.696000pt;}
.h7{height:35.985600pt;}
.ha{height:36.834667pt;}
.h5{height:38.665835pt;}
.h3{height:47.520000pt;}
.h9{height:53.474027pt;}
.h4{height:67.157333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x9{left:61.417333pt;}
.x1{left:68.031467pt;}
.x21{left:76.724400pt;}
.x1b{left:79.370767pt;}
.xb{left:83.147640pt;}
.x2{left:86.929067pt;}
.x15{left:89.394400pt;}
.x16{left:93.345067pt;}
.x23{left:96.566933pt;}
.xa{left:104.457333pt;}
.x8{left:105.826800pt;}
.x17{left:129.370400pt;}
.x18{left:137.271867pt;}
.x1c{left:158.902533pt;}
.x10{left:162.447280pt;}
.x1d{left:165.160933pt;}
.x3{left:187.825067pt;}
.x4{left:191.360000pt;}
.x6{left:221.617600pt;}
.x19{left:282.344533pt;}
.x13{left:288.589200pt;}
.x1a{left:290.282933pt;}
.x14{left:292.421467pt;}
.xe{left:298.534667pt;}
.xf{left:302.485333pt;}
.x5{left:319.370000pt;}
.x1e{left:330.697767pt;}
.x1f{left:355.663867pt;}
.x20{left:361.036000pt;}
.x11{left:460.849333pt;}
.x12{left:464.800133pt;}
.x7{left:511.663600pt;}
.x22{left:523.500533pt;}
.xc{left:551.722533pt;}
.xd{left:555.590533pt;}
}




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