
    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_bd3eb8ee375a0d748d1de8aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_a55db8f4dbcac4a42212b5c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b932b75c655c6aa50f951c0e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_bc55f2edc1459cb56623b2e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.020020;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_c4aa7557fcbe500506da0ecf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.020020;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_b50b7fcac45fe5466add6ea2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:36.000000px;}
.ls62{letter-spacing:-1.059840px;}
.ls68{letter-spacing:-1.008000px;}
.ls45{letter-spacing:-0.993600px;}
.ls26{letter-spacing:-0.927360px;}
.ls19{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.861120px;}
.ls5b{letter-spacing:-0.794880px;}
.ls21{letter-spacing:-0.728640px;}
.ls40{letter-spacing:-0.720000px;}
.ls46{letter-spacing:-0.662400px;}
.ls43{letter-spacing:-0.648000px;}
.ls1e{letter-spacing:-0.596160px;}
.ls44{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.529920px;}
.ls53{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.463680px;}
.ls5c{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.397440px;}
.ls2d{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.331200px;}
.ls69{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.264960px;}
.ls6e{letter-spacing:-0.255600px;}
.ls42{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.198720px;}
.ls63{letter-spacing:-0.162000px;}
.ls2c{letter-spacing:-0.144000px;}
.ls28{letter-spacing:-0.132480px;}
.ls6a{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.072000px;}
.ls47{letter-spacing:-0.066240px;}
.ls65{letter-spacing:-0.059760px;}
.ls17{letter-spacing:0.000000px;}
.ls66{letter-spacing:0.059760px;}
.ls25{letter-spacing:0.066240px;}
.ls1b{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.132480px;}
.ls14{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.198720px;}
.ls2b{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.264960px;}
.ls64{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.331200px;}
.ls41{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls4e{letter-spacing:0.662400px;}
.ls50{letter-spacing:0.720000px;}
.ls51{letter-spacing:0.936000px;}
.ls4b{letter-spacing:1.224000px;}
.ls6{letter-spacing:1.324800px;}
.ls60{letter-spacing:1.856880px;}
.lse{letter-spacing:1.944000px;}
.ls0{letter-spacing:2.053440px;}
.ls31{letter-spacing:2.592000px;}
.lsf{letter-spacing:2.664000px;}
.ls1{letter-spacing:2.782080px;}
.ls3d{letter-spacing:3.296880px;}
.ls13{letter-spacing:3.384000px;}
.ls7{letter-spacing:3.510720px;}
.ls49{letter-spacing:4.104000px;}
.ls48{letter-spacing:4.206960px;}
.ls8{letter-spacing:4.239360px;}
.ls9{letter-spacing:4.371840px;}
.ls52{letter-spacing:4.824000px;}
.lsc{letter-spacing:4.968000px;}
.ls33{letter-spacing:5.544000px;}
.lsd{letter-spacing:5.564160px;}
.ls5{letter-spacing:5.696640px;}
.ls4a{letter-spacing:6.264000px;}
.ls3f{letter-spacing:6.955200px;}
.ls36{letter-spacing:6.984000px;}
.lsb{letter-spacing:7.087680px;}
.ls4c{letter-spacing:7.704000px;}
.ls15{letter-spacing:7.816320px;}
.ls16{letter-spacing:7.948800px;}
.ls12{letter-spacing:8.424000px;}
.ls3e{letter-spacing:8.544960px;}
.ls34{letter-spacing:9.144000px;}
.ls5a{letter-spacing:9.864000px;}
.ls35{letter-spacing:10.584000px;}
.ls3{letter-spacing:10.730880px;}
.ls2f{letter-spacing:11.304000px;}
.ls56{letter-spacing:11.459520px;}
.ls70{letter-spacing:12.024000px;}
.ls55{letter-spacing:12.744000px;}
.ls5d{letter-spacing:13.464000px;}
.ls59{letter-spacing:14.184000px;}
.ls3c{letter-spacing:14.904000px;}
.ls5f{letter-spacing:15.624000px;}
.ls58{letter-spacing:16.344000px;}
.ls4{letter-spacing:16.493760px;}
.ls32{letter-spacing:17.064000px;}
.ls24{letter-spacing:17.222400px;}
.ls61{letter-spacing:17.784000px;}
.ls6d{letter-spacing:18.504000px;}
.ls6c{letter-spacing:19.944000px;}
.ls4f{letter-spacing:20.070720px;}
.ls4d{letter-spacing:20.664000px;}
.ls39{letter-spacing:21.384000px;}
.ls3b{letter-spacing:22.104000px;}
.ls67{letter-spacing:23.544000px;}
.ls30{letter-spacing:27.144000px;}
.ls5e{letter-spacing:29.304000px;}
.ls6b{letter-spacing:31.464000px;}
.ls54{letter-spacing:35.064000px;}
.ls6f{letter-spacing:37.224000px;}
.ls38{letter-spacing:38.088000px;}
.ls2e{letter-spacing:44.424000px;}
.ls57{letter-spacing:44.579520px;}
.ls37{letter-spacing:70.479360px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws3e{word-spacing:-20.016000px;}
.ws11{word-spacing:-19.944000px;}
.wse{word-spacing:-19.872000px;}
.wsf{word-spacing:-19.800000px;}
.ws13{word-spacing:-19.728000px;}
.ws3f{word-spacing:-19.656000px;}
.ws4f{word-spacing:-19.584000px;}
.ws12{word-spacing:-19.512000px;}
.ws50{word-spacing:-19.440000px;}
.ws14{word-spacing:-19.368000px;}
.ws15{word-spacing:-19.296000px;}
.ws5b{word-spacing:-19.152000px;}
.ws41{word-spacing:-19.080000px;}
.ws40{word-spacing:-19.008000px;}
.ws3d{word-spacing:-18.936000px;}
.ws8{word-spacing:-18.414720px;}
.wsc{word-spacing:-18.348480px;}
.wsb{word-spacing:-18.282240px;}
.ws9{word-spacing:-18.149760px;}
.ws3{word-spacing:-18.083520px;}
.ws6{word-spacing:-17.884800px;}
.wsd{word-spacing:-17.818560px;}
.ws6a{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.752320px;}
.wsa{word-spacing:-17.686080px;}
.ws4{word-spacing:-17.619840px;}
.ws51{word-spacing:-17.553600px;}
.ws42{word-spacing:-17.421120px;}
.ws60{word-spacing:-17.288640px;}
.ws2{word-spacing:-17.222400px;}
.ws7{word-spacing:-17.156160px;}
.ws70{word-spacing:-16.374240px;}
.ws6f{word-spacing:-16.254720px;}
.ws78{word-spacing:-15.552000px;}
.ws6e{word-spacing:-15.012000px;}
.ws6d{word-spacing:-14.580000px;}
.ws3c{word-spacing:-13.955760px;}
.ws7c{word-spacing:-13.700160px;}
.ws16{word-spacing:-12.383280px;}
.ws69{word-spacing:-11.459520px;}
.ws1{word-spacing:-11.400480px;}
.ws63{word-spacing:-6.264000px;}
.ws32{word-spacing:-5.696640px;}
.ws68{word-spacing:-4.968000px;}
.ws5d{word-spacing:-4.824000px;}
.ws54{word-spacing:-4.104000px;}
.ws3b{word-spacing:-3.510720px;}
.ws31{word-spacing:-2.782080px;}
.ws8c{word-spacing:-1.944000px;}
.ws86{word-spacing:-1.080000px;}
.ws58{word-spacing:-0.936000px;}
.ws56{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.576000px;}
.ws1a{word-spacing:-0.504000px;}
.ws4c{word-spacing:-0.432000px;}
.ws5c{word-spacing:-0.397440px;}
.ws19{word-spacing:-0.360000px;}
.ws21{word-spacing:-0.331200px;}
.ws35{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.264960px;}
.ws43{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.198720px;}
.ws39{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.132480px;}
.ws1b{word-spacing:-0.072000px;}
.ws26{word-spacing:-0.066240px;}
.ws17{word-spacing:0.000000px;}
.ws4e{word-spacing:0.066240px;}
.ws18{word-spacing:0.072000px;}
.ws7b{word-spacing:0.108000px;}
.ws28{word-spacing:0.132480px;}
.ws36{word-spacing:0.144000px;}
.ws1d{word-spacing:0.198720px;}
.ws44{word-spacing:0.216000px;}
.ws20{word-spacing:0.264960px;}
.ws34{word-spacing:0.288000px;}
.ws7a{word-spacing:0.324000px;}
.ws2e{word-spacing:0.331200px;}
.ws61{word-spacing:0.360000px;}
.ws1f{word-spacing:0.397440px;}
.ws64{word-spacing:0.432000px;}
.ws30{word-spacing:0.463680px;}
.ws73{word-spacing:0.504000px;}
.ws2f{word-spacing:0.529920px;}
.ws7d{word-spacing:0.576000px;}
.ws1e{word-spacing:0.596160px;}
.ws53{word-spacing:0.648000px;}
.ws23{word-spacing:0.728640px;}
.ws0{word-spacing:0.792000px;}
.ws5e{word-spacing:0.861120px;}
.ws4b{word-spacing:0.864000px;}
.ws33{word-spacing:0.927360px;}
.ws4d{word-spacing:0.993600px;}
.ws74{word-spacing:1.008000px;}
.ws6b{word-spacing:1.059840px;}
.ws71{word-spacing:1.080000px;}
.ws5f{word-spacing:1.589760px;}
.ws2b{word-spacing:2.252160px;}
.ws29{word-spacing:2.384640px;}
.ws59{word-spacing:2.583360px;}
.ws79{word-spacing:2.592000px;}
.ws5a{word-spacing:2.980800px;}
.ws3a{word-spacing:3.240000px;}
.ws24{word-spacing:3.709440px;}
.ws25{word-spacing:3.841920px;}
.ws52{word-spacing:3.960000px;}
.ws2c{word-spacing:4.438080px;}
.ws2d{word-spacing:4.504320px;}
.ws8f{word-spacing:4.608000px;}
.ws49{word-spacing:4.680000px;}
.ws48{word-spacing:4.752000px;}
.ws4a{word-spacing:4.968000px;}
.ws6c{word-spacing:5.166720px;}
.ws8e{word-spacing:5.400000px;}
.ws87{word-spacing:6.840000px;}
.ws45{word-spacing:6.912000px;}
.ws88{word-spacing:6.984000px;}
.ws82{word-spacing:7.848000px;}
.ws83{word-spacing:7.992000px;}
.ws37{word-spacing:8.136000px;}
.ws22{word-spacing:8.280000px;}
.ws47{word-spacing:8.352000px;}
.ws38{word-spacing:8.424000px;}
.ws46{word-spacing:8.712000px;}
.ws62{word-spacing:10.152000px;}
.ws8a{word-spacing:10.440000px;}
.ws8d{word-spacing:10.872000px;}
.ws80{word-spacing:11.160000px;}
.ws81{word-spacing:12.672000px;}
.ws90{word-spacing:14.040000px;}
.ws67{word-spacing:14.760000px;}
.ws55{word-spacing:15.480000px;}
.ws7f{word-spacing:15.984000px;}
.ws89{word-spacing:16.200000px;}
.ws7e{word-spacing:16.272000px;}
.ws65{word-spacing:18.360000px;}
.ws77{word-spacing:18.504000px;}
.ws8b{word-spacing:20.520000px;}
.ws75{word-spacing:21.312000px;}
.ws76{word-spacing:21.672000px;}
.ws66{word-spacing:27.000000px;}
.ws57{word-spacing:29.880000px;}
.ws85{word-spacing:37.080000px;}
.ws84{word-spacing:37.152000px;}
._8{margin-left:-18.547200px;}
._6{margin-left:-17.421120px;}
._9{margin-left:-16.030080px;}
._25{margin-left:-11.459520px;}
._12{margin-left:-6.891840px;}
._11{margin-left:-5.247360px;}
._10{margin-left:-3.525120px;}
._f{margin-left:-2.410560px;}
._1{margin-left:-1.224000px;}
._0{width:1.296000px;}
._2{width:2.577600px;}
._5{width:3.772800px;}
._b{width:4.832640px;}
._c{width:6.238080px;}
._d{width:7.369920px;}
._e{width:8.478720px;}
._4{width:10.468800px;}
._3{width:11.554560px;}
._14{width:13.320000px;}
._13{width:14.616000px;}
._a{width:15.753600px;}
._7{width:16.824960px;}
._18{width:17.997120px;}
._20{width:20.197440px;}
._1c{width:21.456000px;}
._1d{width:22.786560px;}
._21{width:24.120000px;}
._17{width:26.712000px;}
._22{width:28.077120px;}
._24{width:29.669760px;}
._1e{width:31.248000px;}
._1f{width:32.578560px;}
._23{width:34.704000px;}
._1b{width:36.642240px;}
._1a{width:37.823040px;}
._29{width:39.456000px;}
._15{width:44.208000px;}
._16{width:45.648000px;}
._19{width:70.280640px;}
._28{width:120.096000px;}
._27{width:132.354000px;}
._26{width:158.274000px;}
.fc2{color:transparent;}
.fc5{color:rgb(217,217,217);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(28,28,28);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs4{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y6b{bottom:5.940000px;}
.y68{bottom:6.120000px;}
.y6a{bottom:6.480000px;}
.yb1{bottom:6.660000px;}
.y134{bottom:19.379250px;}
.y10d{bottom:20.089500px;}
.y107{bottom:24.593550px;}
.y109{bottom:24.633750px;}
.y10b{bottom:24.673800px;}
.y105{bottom:24.733500px;}
.y133{bottom:51.699750px;}
.y2{bottom:53.100000px;}
.y1{bottom:57.240000px;}
.yeb{bottom:110.340000px;}
.y8b{bottom:112.277520px;}
.y2c{bottom:112.296960px;}
.y66{bottom:112.302720px;}
.y55{bottom:112.308480px;}
.y141{bottom:117.720000px;}
.y128{bottom:125.280000px;}
.yb3{bottom:126.900000px;}
.yea{bottom:133.362720px;}
.yfb{bottom:135.360000px;}
.y8a{bottom:136.223280px;}
.y2b{bottom:136.242720px;}
.y65{bottom:136.248480px;}
.y54{bottom:136.254240px;}
.y140{bottom:143.820000px;}
.y127{bottom:151.380000px;}
.yb2{bottom:151.560000px;}
.ye9{bottom:157.308480px;}
.y89{bottom:160.169040px;}
.y2a{bottom:160.188480px;}
.y64{bottom:160.194240px;}
.yfa{bottom:161.460000px;}
.y53{bottom:168.480000px;}
.y13f{bottom:170.100000px;}
.yb0{bottom:176.220000px;}
.y126{bottom:177.480000px;}
.ye8{bottom:181.254240px;}
.y88{bottom:184.114800px;}
.y52{bottom:184.128480px;}
.y29{bottom:184.134240px;}
.yf9{bottom:187.560000px;}
.y63{bottom:192.420000px;}
.y13e{bottom:196.200000px;}
.y125{bottom:203.580000px;}
.y62{bottom:206.100000px;}
.y87{bottom:208.060560px;}
.y51{bottom:208.074240px;}
.ye7{bottom:213.480000px;}
.yf8{bottom:213.660000px;}
.y136{bottom:213.840000px;}
.y28{bottom:216.360000px;}
.yaf{bottom:216.540000px;}
.y13d{bottom:222.300000px;}
.ye6{bottom:227.340000px;}
.y124{bottom:229.860000px;}
.y27{bottom:230.220000px;}
.y86{bottom:232.006320px;}
.y50{bottom:232.012080px;}
.y61{bottom:239.940000px;}
.yae{bottom:242.640000px;}
.y13c{bottom:248.400000px;}
.yd6{bottom:255.600000px;}
.y123{bottom:255.960000px;}
.y4f{bottom:256.134240px;}
.y60{bottom:266.040000px;}
.yad{bottom:268.740000px;}
.ye5{bottom:271.602720px;}
.y13b{bottom:274.500000px;}
.yd5{bottom:281.700000px;}
.y122{bottom:282.060000px;}
.y4e{bottom:288.360000px;}
.y26{bottom:289.260000px;}
.y5f{bottom:292.140000px;}
.yac{bottom:295.020000px;}
.ye4{bottom:295.548480px;}
.y13a{bottom:300.780000px;}
.y4d{bottom:302.040000px;}
.yd4{bottom:307.800000px;}
.y121{bottom:308.160000px;}
.y25{bottom:315.360000px;}
.y5e{bottom:318.240000px;}
.ye3{bottom:319.494240px;}
.yab{bottom:321.120000px;}
.y85{bottom:322.200000px;}
.y139{bottom:326.880000px;}
.y4c{bottom:333.360000px;}
.yd3{bottom:334.080000px;}
.y120{bottom:334.440000px;}
.y24{bottom:341.460000px;}
.ye2{bottom:343.434240px;}
.yf7{bottom:344.340000px;}
.y5d{bottom:344.520000px;}
.y84{bottom:346.140000px;}
.yaa{bottom:347.220000px;}
.y138{bottom:352.980000px;}
.y4b{bottom:359.460000px;}
.yd2{bottom:360.180000px;}
.ye1{bottom:367.380000px;}
.y23{bottom:367.560000px;}
.y11f{bottom:369.000000px;}
.y83{bottom:369.720000px;}
.y5c{bottom:370.620000px;}
.ya9{bottom:373.320000px;}
.y137{bottom:379.080000px;}
.y4a{bottom:385.740000px;}
.yd1{bottom:386.280000px;}
.ye0{bottom:391.308480px;}
.y82{bottom:393.300000px;}
.y22{bottom:393.840000px;}
.y11e{bottom:395.100000px;}
.yf6{bottom:396.720000px;}
.y135{bottom:396.900000px;}
.ya8{bottom:399.420000px;}
.y5b{bottom:405.360000px;}
.y49{bottom:411.840000px;}
.yd0{bottom:412.380000px;}
.ydf{bottom:415.254240px;}
.y81{bottom:416.880000px;}
.y21{bottom:419.940000px;}
.y11d{bottom:421.380000px;}
.yf5{bottom:422.820000px;}
.ya7{bottom:425.700000px;}
.y5a{bottom:431.460000px;}
.y48{bottom:437.940000px;}
.ycf{bottom:438.480000px;}
.yde{bottom:439.192080px;}
.y80{bottom:440.460000px;}
.y20{bottom:446.040000px;}
.y11c{bottom:447.480000px;}
.yf4{bottom:448.920000px;}
.ya6{bottom:451.800000px;}
.y59{bottom:457.560000px;}
.ydd{bottom:463.320000px;}
.y47{bottom:464.040000px;}
.y7f{bottom:464.580000px;}
.yce{bottom:464.760000px;}
.y1f{bottom:472.320000px;}
.y11b{bottom:473.580000px;}
.yf3{bottom:475.020000px;}
.ya5{bottom:477.900000px;}
.y58{bottom:483.660000px;}
.y46{bottom:489.592080px;}
.ycd{bottom:490.860000px;}
.ydc{bottom:496.248480px;}
.y11a{bottom:499.680000px;}
.yf2{bottom:501.300000px;}
.ya4{bottom:504.180000px;}
.y7e{bottom:504.540000px;}
.y1e{bottom:506.214720px;}
.y57{bottom:509.760000px;}
.y45{bottom:513.720000px;}
.ycc{bottom:516.960000px;}
.ydb{bottom:520.194240px;}
.y119{bottom:525.960000px;}
.ya3{bottom:529.740000px;}
.y1d{bottom:530.160480px;}
.y7d{bottom:530.640000px;}
.yf1{bottom:535.860000px;}
.y56{bottom:536.040000px;}
.y44{bottom:537.664320px;}
.ycb{bottom:543.060000px;}
.yda{bottom:544.140000px;}
.y118{bottom:552.060000px;}
.y1c{bottom:554.106240px;}
.y7c{bottom:556.740000px;}
.y43{bottom:562.140000px;}
.ya2{bottom:563.934240px;}
.yd9{bottom:568.068480px;}
.yca{bottom:569.340000px;}
.y1b{bottom:578.052000px;}
.y117{bottom:578.160000px;}
.y7b{bottom:582.840000px;}
.ya1{bottom:587.880000px;}
.y42{bottom:588.240000px;}
.yd8{bottom:592.014240px;}
.yc9{bottom:595.440000px;}
.y1a{bottom:601.997760px;}
.y116{bottom:604.260000px;}
.y7a{bottom:609.120000px;}
.ya0{bottom:611.814240px;}
.y41{bottom:614.340000px;}
.yd7{bottom:615.960000px;}
.yc8{bottom:621.540000px;}
.y19{bottom:625.943520px;}
.y115{bottom:630.360000px;}
.y79{bottom:635.220000px;}
.y9f{bottom:635.760000px;}
.yf0{bottom:640.440000px;}
.y40{bottom:640.620000px;}
.yc7{bottom:647.640000px;}
.y18{bottom:649.889280px;}
.y114{bottom:656.640000px;}
.y9e{bottom:660.240000px;}
.y78{bottom:661.320000px;}
.yef{bottom:666.540000px;}
.y3f{bottom:666.720000px;}
.yc6{bottom:673.740000px;}
.y17{bottom:674.017200px;}
.y113{bottom:682.740000px;}
.y9d{bottom:686.340000px;}
.y77{bottom:687.420000px;}
.y3e{bottom:692.820000px;}
.y16{bottom:697.962960px;}
.yc5{bottom:700.020000px;}
.y112{bottom:708.840000px;}
.y9c{bottom:712.620000px;}
.y76{bottom:713.520000px;}
.y3d{bottom:718.920000px;}
.y15{bottom:721.908720px;}
.yc4{bottom:726.120000px;}
.y111{bottom:734.940000px;}
.y9b{bottom:738.720000px;}
.y75{bottom:739.800000px;}
.y3c{bottom:745.020000px;}
.y14{bottom:745.854480px;}
.yc3{bottom:752.220000px;}
.y110{bottom:761.040000px;}
.y9a{bottom:764.820000px;}
.y74{bottom:765.900000px;}
.y13{bottom:769.800240px;}
.yee{bottom:771.120000px;}
.y3b{bottom:771.300000px;}
.yc2{bottom:778.320000px;}
.y99{bottom:790.920000px;}
.y73{bottom:792.000000px;}
.y12{bottom:793.746000px;}
.y10f{bottom:795.780000px;}
.y3a{bottom:797.400000px;}
.yc1{bottom:804.420000px;}
.y132{bottom:813.240000px;}
.y10e{bottom:813.420000px;}
.y98{bottom:817.020000px;}
.y11{bottom:817.691760px;}
.y72{bottom:818.100000px;}
.y39{bottom:823.500000px;}
.yc0{bottom:830.700000px;}
.y10{bottom:841.637520px;}
.y97{bottom:843.300000px;}
.y38{bottom:849.600000px;}
.y71{bottom:852.840000px;}
.ybf{bottom:856.800000px;}
.yed{bottom:858.060000px;}
.yf{bottom:865.583280px;}
.y96{bottom:869.400000px;}
.y70{bottom:872.640000px;}
.y37{bottom:875.700000px;}
.yec{bottom:876.060000px;}
.y10c{bottom:878.580000px;}
.ybe{bottom:882.900000px;}
.y129{bottom:885.745200px;}
.ye{bottom:889.711200px;}
.y95{bottom:895.500000px;}
.y6f{bottom:896.580000px;}
.y36{bottom:901.980000px;}
.ybd{bottom:909.000000px;}
.yd{bottom:913.656960px;}
.y12a{bottom:917.024700px;}
.y6e{bottom:920.520000px;}
.y94{bottom:921.600000px;}
.y35{bottom:928.080000px;}
.y103{bottom:932.444850px;}
.ybc{bottom:935.280000px;}
.yc{bottom:937.602720px;}
.y6d{bottom:944.460000px;}
.y93{bottom:947.880000px;}
.y104{bottom:948.240000px;}
.y12b{bottom:948.304200px;}
.y34{bottom:954.180000px;}
.ybb{bottom:961.380000px;}
.yb{bottom:961.548480px;}
.yfc{bottom:964.277850px;}
.y6c{bottom:968.400000px;}
.y92{bottom:973.980000px;}
.yff{bottom:979.168350px;}
.y12c{bottom:979.583700px;}
.y33{bottom:980.280000px;}
.ya{bottom:985.494240px;}
.yba{bottom:987.480000px;}
.y106{bottom:987.840000px;}
.y69{bottom:992.340000px;}
.y91{bottom:1000.080000px;}
.yfd{bottom:1003.738350px;}
.y32{bottom:1006.560000px;}
.y9{bottom:1009.440000px;}
.y12d{bottom:1010.863200px;}
.yb9{bottom:1013.580000px;}
.y67{bottom:1017.360000px;}
.y100{bottom:1018.628850px;}
.y90{bottom:1026.180000px;}
.y108{bottom:1027.260000px;}
.y31{bottom:1032.660000px;}
.y8{bottom:1034.100000px;}
.yb8{bottom:1039.140000px;}
.y12e{bottom:1042.142700px;}
.yfe{bottom:1043.198850px;}
.y8f{bottom:1052.280000px;}
.yb7{bottom:1057.860000px;}
.y101{bottom:1058.089350px;}
.y30{bottom:1058.760000px;}
.y7{bottom:1059.660000px;}
.y10a{bottom:1066.680000px;}
.y12f{bottom:1073.422200px;}
.y8e{bottom:1078.560000px;}
.yb6{bottom:1082.700000px;}
.y2f{bottom:1084.860000px;}
.y6{bottom:1085.760000px;}
.y102{bottom:1097.549850px;}
.y8d{bottom:1104.660000px;}
.y130{bottom:1104.701700px;}
.yb5{bottom:1107.360000px;}
.y2e{bottom:1110.960000px;}
.y5{bottom:1112.040000px;}
.yb4{bottom:1132.020000px;}
.y131{bottom:1135.981200px;}
.y2d{bottom:1137.240000px;}
.y4{bottom:1137.780000px;}
.y8c{bottom:1139.400000px;}
.h3{height:21.060000px;}
.h10{height:23.400000px;}
.h11{height:23.578500px;}
.hc{height:23.580000px;}
.he{height:23.940000px;}
.hf{height:23.941500px;}
.h12{height:24.120000px;}
.h8{height:33.887109px;}
.h19{height:34.200000px;}
.h16{height:36.540000px;}
.h13{height:39.260742px;}
.h15{height:39.420000px;}
.h14{height:40.341797px;}
.h17{height:44.644922px;}
.hd{height:48.159844px;}
.h7{height:49.485937px;}
.ha{height:49.508978px;}
.hb{height:49.517618px;}
.h2{height:50.308594px;}
.h4{height:52.347656px;}
.h6{height:53.789062px;}
.h5{height:60.601641px;}
.h18{height:66.420000px;}
.h9{height:74.190234px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:10.080000px;}
.w14{width:19.980000px;}
.w11{width:37.620000px;}
.wb{width:43.921500px;}
.w1a{width:55.620000px;}
.w16{width:58.138500px;}
.wc{width:58.140000px;}
.w18{width:62.458500px;}
.w19{width:63.361500px;}
.w13{width:69.660000px;}
.w15{width:72.001500px;}
.w1c{width:75.418500px;}
.w1d{width:75.420000px;}
.w1b{width:75.600000px;}
.w7{width:78.481500px;}
.w12{width:78.658500px;}
.w6{width:80.460000px;}
.wa{width:83.700000px;}
.w17{width:84.420000px;}
.wf{width:86.220000px;}
.w10{width:86.760000px;}
.wd{width:102.781500px;}
.w5{width:105.480000px;}
.we{width:117.720000px;}
.w4{width:124.380000px;}
.w3{width:162.540000px;}
.w8{width:324.180000px;}
.w9{width:324.181500px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1e{left:10.260000px;}
.x1f{left:11.700000px;}
.x1d{left:18.900000px;}
.xe{left:20.340000px;}
.x11{left:21.960000px;}
.x20{left:23.400000px;}
.x14{left:29.700000px;}
.x21{left:33.840000px;}
.x1a{left:41.940000px;}
.x10{left:46.980000px;}
.x13{left:54.720000px;}
.x8{left:57.240000px;}
.x12{left:65.880000px;}
.xf{left:73.620000px;}
.x16{left:122.040000px;}
.x1{left:127.620000px;}
.x4{left:138.420000px;}
.x7{left:170.112960px;}
.x33{left:176.959500px;}
.x3d{left:180.720000px;}
.x32{left:183.345000px;}
.x3{left:207.180000px;}
.x34{left:210.240000px;}
.x2c{left:213.660000px;}
.x31{left:234.360000px;}
.x22{left:245.520000px;}
.x39{left:248.040000px;}
.x24{left:267.120000px;}
.x18{left:269.100000px;}
.x15{left:292.500000px;}
.x2d{left:293.760000px;}
.x35{left:301.680000px;}
.x9{left:333.000000px;}
.x27{left:345.025950px;}
.x2b{left:347.131950px;}
.x19{left:352.620000px;}
.x2a{left:357.054450px;}
.x28{left:360.888450px;}
.x29{left:367.530450px;}
.x6{left:373.320000px;}
.x2e{left:378.360000px;}
.x5{left:379.620000px;}
.x3a{left:418.860000px;}
.x1b{left:437.040000px;}
.x2{left:441.180000px;}
.x17{left:446.220000px;}
.xb{left:457.380000px;}
.x2f{left:463.860000px;}
.x36{left:468.540000px;}
.x1c{left:481.680000px;}
.x3b{left:504.180000px;}
.x25{left:539.776950px;}
.x37{left:552.600000px;}
.xc{left:562.860000px;}
.x26{left:566.196450px;}
.x3c{left:589.680000px;}
.x38{left:640.980000px;}
.xd{left:643.320000px;}
.x23{left:678.780000px;}
.x30{left:727.560000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:32.000000pt;}
.ls62{letter-spacing:-0.942080pt;}
.ls68{letter-spacing:-0.896000pt;}
.ls45{letter-spacing:-0.883200pt;}
.ls26{letter-spacing:-0.824320pt;}
.ls19{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.765440pt;}
.ls5b{letter-spacing:-0.706560pt;}
.ls21{letter-spacing:-0.647680pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls46{letter-spacing:-0.588800pt;}
.ls43{letter-spacing:-0.576000pt;}
.ls1e{letter-spacing:-0.529920pt;}
.ls44{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.471040pt;}
.ls53{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.412160pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.353280pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.294400pt;}
.ls69{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.235520pt;}
.ls6e{letter-spacing:-0.227200pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.176640pt;}
.ls63{letter-spacing:-0.144000pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls28{letter-spacing:-0.117760pt;}
.ls6a{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls47{letter-spacing:-0.058880pt;}
.ls65{letter-spacing:-0.053120pt;}
.ls17{letter-spacing:0.000000pt;}
.ls66{letter-spacing:0.053120pt;}
.ls25{letter-spacing:0.058880pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.117760pt;}
.ls14{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.176640pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.235520pt;}
.ls64{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.294400pt;}
.ls41{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls4e{letter-spacing:0.588800pt;}
.ls50{letter-spacing:0.640000pt;}
.ls51{letter-spacing:0.832000pt;}
.ls4b{letter-spacing:1.088000pt;}
.ls6{letter-spacing:1.177600pt;}
.ls60{letter-spacing:1.650560pt;}
.lse{letter-spacing:1.728000pt;}
.ls0{letter-spacing:1.825280pt;}
.ls31{letter-spacing:2.304000pt;}
.lsf{letter-spacing:2.368000pt;}
.ls1{letter-spacing:2.472960pt;}
.ls3d{letter-spacing:2.930560pt;}
.ls13{letter-spacing:3.008000pt;}
.ls7{letter-spacing:3.120640pt;}
.ls49{letter-spacing:3.648000pt;}
.ls48{letter-spacing:3.739520pt;}
.ls8{letter-spacing:3.768320pt;}
.ls9{letter-spacing:3.886080pt;}
.ls52{letter-spacing:4.288000pt;}
.lsc{letter-spacing:4.416000pt;}
.ls33{letter-spacing:4.928000pt;}
.lsd{letter-spacing:4.945920pt;}
.ls5{letter-spacing:5.063680pt;}
.ls4a{letter-spacing:5.568000pt;}
.ls3f{letter-spacing:6.182400pt;}
.ls36{letter-spacing:6.208000pt;}
.lsb{letter-spacing:6.300160pt;}
.ls4c{letter-spacing:6.848000pt;}
.ls15{letter-spacing:6.947840pt;}
.ls16{letter-spacing:7.065600pt;}
.ls12{letter-spacing:7.488000pt;}
.ls3e{letter-spacing:7.595520pt;}
.ls34{letter-spacing:8.128000pt;}
.ls5a{letter-spacing:8.768000pt;}
.ls35{letter-spacing:9.408000pt;}
.ls3{letter-spacing:9.538560pt;}
.ls2f{letter-spacing:10.048000pt;}
.ls56{letter-spacing:10.186240pt;}
.ls70{letter-spacing:10.688000pt;}
.ls55{letter-spacing:11.328000pt;}
.ls5d{letter-spacing:11.968000pt;}
.ls59{letter-spacing:12.608000pt;}
.ls3c{letter-spacing:13.248000pt;}
.ls5f{letter-spacing:13.888000pt;}
.ls58{letter-spacing:14.528000pt;}
.ls4{letter-spacing:14.661120pt;}
.ls32{letter-spacing:15.168000pt;}
.ls24{letter-spacing:15.308800pt;}
.ls61{letter-spacing:15.808000pt;}
.ls6d{letter-spacing:16.448000pt;}
.ls6c{letter-spacing:17.728000pt;}
.ls4f{letter-spacing:17.840640pt;}
.ls4d{letter-spacing:18.368000pt;}
.ls39{letter-spacing:19.008000pt;}
.ls3b{letter-spacing:19.648000pt;}
.ls67{letter-spacing:20.928000pt;}
.ls30{letter-spacing:24.128000pt;}
.ls5e{letter-spacing:26.048000pt;}
.ls6b{letter-spacing:27.968000pt;}
.ls54{letter-spacing:31.168000pt;}
.ls6f{letter-spacing:33.088000pt;}
.ls38{letter-spacing:33.856000pt;}
.ls2e{letter-spacing:39.488000pt;}
.ls57{letter-spacing:39.626240pt;}
.ls37{letter-spacing:62.648320pt;}
.ws10{word-spacing:-58.880000pt;}
.ws3e{word-spacing:-17.792000pt;}
.ws11{word-spacing:-17.728000pt;}
.wse{word-spacing:-17.664000pt;}
.wsf{word-spacing:-17.600000pt;}
.ws13{word-spacing:-17.536000pt;}
.ws3f{word-spacing:-17.472000pt;}
.ws4f{word-spacing:-17.408000pt;}
.ws12{word-spacing:-17.344000pt;}
.ws50{word-spacing:-17.280000pt;}
.ws14{word-spacing:-17.216000pt;}
.ws15{word-spacing:-17.152000pt;}
.ws5b{word-spacing:-17.024000pt;}
.ws41{word-spacing:-16.960000pt;}
.ws40{word-spacing:-16.896000pt;}
.ws3d{word-spacing:-16.832000pt;}
.ws8{word-spacing:-16.368640pt;}
.wsc{word-spacing:-16.309760pt;}
.wsb{word-spacing:-16.250880pt;}
.ws9{word-spacing:-16.133120pt;}
.ws3{word-spacing:-16.074240pt;}
.ws6{word-spacing:-15.897600pt;}
.wsd{word-spacing:-15.838720pt;}
.ws6a{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.779840pt;}
.wsa{word-spacing:-15.720960pt;}
.ws4{word-spacing:-15.662080pt;}
.ws51{word-spacing:-15.603200pt;}
.ws42{word-spacing:-15.485440pt;}
.ws60{word-spacing:-15.367680pt;}
.ws2{word-spacing:-15.308800pt;}
.ws7{word-spacing:-15.249920pt;}
.ws70{word-spacing:-14.554880pt;}
.ws6f{word-spacing:-14.448640pt;}
.ws78{word-spacing:-13.824000pt;}
.ws6e{word-spacing:-13.344000pt;}
.ws6d{word-spacing:-12.960000pt;}
.ws3c{word-spacing:-12.405120pt;}
.ws7c{word-spacing:-12.177920pt;}
.ws16{word-spacing:-11.007360pt;}
.ws69{word-spacing:-10.186240pt;}
.ws1{word-spacing:-10.133760pt;}
.ws63{word-spacing:-5.568000pt;}
.ws32{word-spacing:-5.063680pt;}
.ws68{word-spacing:-4.416000pt;}
.ws5d{word-spacing:-4.288000pt;}
.ws54{word-spacing:-3.648000pt;}
.ws3b{word-spacing:-3.120640pt;}
.ws31{word-spacing:-2.472960pt;}
.ws8c{word-spacing:-1.728000pt;}
.ws86{word-spacing:-0.960000pt;}
.ws58{word-spacing:-0.832000pt;}
.ws56{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.512000pt;}
.ws1a{word-spacing:-0.448000pt;}
.ws4c{word-spacing:-0.384000pt;}
.ws5c{word-spacing:-0.353280pt;}
.ws19{word-spacing:-0.320000pt;}
.ws21{word-spacing:-0.294400pt;}
.ws35{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.235520pt;}
.ws43{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.176640pt;}
.ws39{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.117760pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws26{word-spacing:-0.058880pt;}
.ws17{word-spacing:0.000000pt;}
.ws4e{word-spacing:0.058880pt;}
.ws18{word-spacing:0.064000pt;}
.ws7b{word-spacing:0.096000pt;}
.ws28{word-spacing:0.117760pt;}
.ws36{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.176640pt;}
.ws44{word-spacing:0.192000pt;}
.ws20{word-spacing:0.235520pt;}
.ws34{word-spacing:0.256000pt;}
.ws7a{word-spacing:0.288000pt;}
.ws2e{word-spacing:0.294400pt;}
.ws61{word-spacing:0.320000pt;}
.ws1f{word-spacing:0.353280pt;}
.ws64{word-spacing:0.384000pt;}
.ws30{word-spacing:0.412160pt;}
.ws73{word-spacing:0.448000pt;}
.ws2f{word-spacing:0.471040pt;}
.ws7d{word-spacing:0.512000pt;}
.ws1e{word-spacing:0.529920pt;}
.ws53{word-spacing:0.576000pt;}
.ws23{word-spacing:0.647680pt;}
.ws0{word-spacing:0.704000pt;}
.ws5e{word-spacing:0.765440pt;}
.ws4b{word-spacing:0.768000pt;}
.ws33{word-spacing:0.824320pt;}
.ws4d{word-spacing:0.883200pt;}
.ws74{word-spacing:0.896000pt;}
.ws6b{word-spacing:0.942080pt;}
.ws71{word-spacing:0.960000pt;}
.ws5f{word-spacing:1.413120pt;}
.ws2b{word-spacing:2.001920pt;}
.ws29{word-spacing:2.119680pt;}
.ws59{word-spacing:2.296320pt;}
.ws79{word-spacing:2.304000pt;}
.ws5a{word-spacing:2.649600pt;}
.ws3a{word-spacing:2.880000pt;}
.ws24{word-spacing:3.297280pt;}
.ws25{word-spacing:3.415040pt;}
.ws52{word-spacing:3.520000pt;}
.ws2c{word-spacing:3.944960pt;}
.ws2d{word-spacing:4.003840pt;}
.ws8f{word-spacing:4.096000pt;}
.ws49{word-spacing:4.160000pt;}
.ws48{word-spacing:4.224000pt;}
.ws4a{word-spacing:4.416000pt;}
.ws6c{word-spacing:4.592640pt;}
.ws8e{word-spacing:4.800000pt;}
.ws87{word-spacing:6.080000pt;}
.ws45{word-spacing:6.144000pt;}
.ws88{word-spacing:6.208000pt;}
.ws82{word-spacing:6.976000pt;}
.ws83{word-spacing:7.104000pt;}
.ws37{word-spacing:7.232000pt;}
.ws22{word-spacing:7.360000pt;}
.ws47{word-spacing:7.424000pt;}
.ws38{word-spacing:7.488000pt;}
.ws46{word-spacing:7.744000pt;}
.ws62{word-spacing:9.024000pt;}
.ws8a{word-spacing:9.280000pt;}
.ws8d{word-spacing:9.664000pt;}
.ws80{word-spacing:9.920000pt;}
.ws81{word-spacing:11.264000pt;}
.ws90{word-spacing:12.480000pt;}
.ws67{word-spacing:13.120000pt;}
.ws55{word-spacing:13.760000pt;}
.ws7f{word-spacing:14.208000pt;}
.ws89{word-spacing:14.400000pt;}
.ws7e{word-spacing:14.464000pt;}
.ws65{word-spacing:16.320000pt;}
.ws77{word-spacing:16.448000pt;}
.ws8b{word-spacing:18.240000pt;}
.ws75{word-spacing:18.944000pt;}
.ws76{word-spacing:19.264000pt;}
.ws66{word-spacing:24.000000pt;}
.ws57{word-spacing:26.560000pt;}
.ws85{word-spacing:32.960000pt;}
.ws84{word-spacing:33.024000pt;}
._8{margin-left:-16.486400pt;}
._6{margin-left:-15.485440pt;}
._9{margin-left:-14.248960pt;}
._25{margin-left:-10.186240pt;}
._12{margin-left:-6.126080pt;}
._11{margin-left:-4.664320pt;}
._10{margin-left:-3.133440pt;}
._f{margin-left:-2.142720pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.152000pt;}
._2{width:2.291200pt;}
._5{width:3.353600pt;}
._b{width:4.295680pt;}
._c{width:5.544960pt;}
._d{width:6.551040pt;}
._e{width:7.536640pt;}
._4{width:9.305600pt;}
._3{width:10.270720pt;}
._14{width:11.840000pt;}
._13{width:12.992000pt;}
._a{width:14.003200pt;}
._7{width:14.955520pt;}
._18{width:15.997440pt;}
._20{width:17.953280pt;}
._1c{width:19.072000pt;}
._1d{width:20.254720pt;}
._21{width:21.440000pt;}
._17{width:23.744000pt;}
._22{width:24.957440pt;}
._24{width:26.373120pt;}
._1e{width:27.776000pt;}
._1f{width:28.958720pt;}
._23{width:30.848000pt;}
._1b{width:32.570880pt;}
._1a{width:33.620480pt;}
._29{width:35.072000pt;}
._15{width:39.296000pt;}
._16{width:40.576000pt;}
._19{width:62.471680pt;}
._28{width:106.752000pt;}
._27{width:117.648000pt;}
._26{width:140.688000pt;}
.fs1{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs4{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y6b{bottom:5.280000pt;}
.y68{bottom:5.440000pt;}
.y6a{bottom:5.760000pt;}
.yb1{bottom:5.920000pt;}
.y134{bottom:17.226000pt;}
.y10d{bottom:17.857333pt;}
.y107{bottom:21.860933pt;}
.y109{bottom:21.896667pt;}
.y10b{bottom:21.932267pt;}
.y105{bottom:21.985333pt;}
.y133{bottom:45.955333pt;}
.y2{bottom:47.200000pt;}
.y1{bottom:50.880000pt;}
.yeb{bottom:98.080000pt;}
.y8b{bottom:99.802240pt;}
.y2c{bottom:99.819520pt;}
.y66{bottom:99.824640pt;}
.y55{bottom:99.829760pt;}
.y141{bottom:104.640000pt;}
.y128{bottom:111.360000pt;}
.yb3{bottom:112.800000pt;}
.yea{bottom:118.544640pt;}
.yfb{bottom:120.320000pt;}
.y8a{bottom:121.087360pt;}
.y2b{bottom:121.104640pt;}
.y65{bottom:121.109760pt;}
.y54{bottom:121.114880pt;}
.y140{bottom:127.840000pt;}
.y127{bottom:134.560000pt;}
.yb2{bottom:134.720000pt;}
.ye9{bottom:139.829760pt;}
.y89{bottom:142.372480pt;}
.y2a{bottom:142.389760pt;}
.y64{bottom:142.394880pt;}
.yfa{bottom:143.520000pt;}
.y53{bottom:149.760000pt;}
.y13f{bottom:151.200000pt;}
.yb0{bottom:156.640000pt;}
.y126{bottom:157.760000pt;}
.ye8{bottom:161.114880pt;}
.y88{bottom:163.657600pt;}
.y52{bottom:163.669760pt;}
.y29{bottom:163.674880pt;}
.yf9{bottom:166.720000pt;}
.y63{bottom:171.040000pt;}
.y13e{bottom:174.400000pt;}
.y125{bottom:180.960000pt;}
.y62{bottom:183.200000pt;}
.y87{bottom:184.942720pt;}
.y51{bottom:184.954880pt;}
.ye7{bottom:189.760000pt;}
.yf8{bottom:189.920000pt;}
.y136{bottom:190.080000pt;}
.y28{bottom:192.320000pt;}
.yaf{bottom:192.480000pt;}
.y13d{bottom:197.600000pt;}
.ye6{bottom:202.080000pt;}
.y124{bottom:204.320000pt;}
.y27{bottom:204.640000pt;}
.y86{bottom:206.227840pt;}
.y50{bottom:206.232960pt;}
.y61{bottom:213.280000pt;}
.yae{bottom:215.680000pt;}
.y13c{bottom:220.800000pt;}
.yd6{bottom:227.200000pt;}
.y123{bottom:227.520000pt;}
.y4f{bottom:227.674880pt;}
.y60{bottom:236.480000pt;}
.yad{bottom:238.880000pt;}
.ye5{bottom:241.424640pt;}
.y13b{bottom:244.000000pt;}
.yd5{bottom:250.400000pt;}
.y122{bottom:250.720000pt;}
.y4e{bottom:256.320000pt;}
.y26{bottom:257.120000pt;}
.y5f{bottom:259.680000pt;}
.yac{bottom:262.240000pt;}
.ye4{bottom:262.709760pt;}
.y13a{bottom:267.360000pt;}
.y4d{bottom:268.480000pt;}
.yd4{bottom:273.600000pt;}
.y121{bottom:273.920000pt;}
.y25{bottom:280.320000pt;}
.y5e{bottom:282.880000pt;}
.ye3{bottom:283.994880pt;}
.yab{bottom:285.440000pt;}
.y85{bottom:286.400000pt;}
.y139{bottom:290.560000pt;}
.y4c{bottom:296.320000pt;}
.yd3{bottom:296.960000pt;}
.y120{bottom:297.280000pt;}
.y24{bottom:303.520000pt;}
.ye2{bottom:305.274880pt;}
.yf7{bottom:306.080000pt;}
.y5d{bottom:306.240000pt;}
.y84{bottom:307.680000pt;}
.yaa{bottom:308.640000pt;}
.y138{bottom:313.760000pt;}
.y4b{bottom:319.520000pt;}
.yd2{bottom:320.160000pt;}
.ye1{bottom:326.560000pt;}
.y23{bottom:326.720000pt;}
.y11f{bottom:328.000000pt;}
.y83{bottom:328.640000pt;}
.y5c{bottom:329.440000pt;}
.ya9{bottom:331.840000pt;}
.y137{bottom:336.960000pt;}
.y4a{bottom:342.880000pt;}
.yd1{bottom:343.360000pt;}
.ye0{bottom:347.829760pt;}
.y82{bottom:349.600000pt;}
.y22{bottom:350.080000pt;}
.y11e{bottom:351.200000pt;}
.yf6{bottom:352.640000pt;}
.y135{bottom:352.800000pt;}
.ya8{bottom:355.040000pt;}
.y5b{bottom:360.320000pt;}
.y49{bottom:366.080000pt;}
.yd0{bottom:366.560000pt;}
.ydf{bottom:369.114880pt;}
.y81{bottom:370.560000pt;}
.y21{bottom:373.280000pt;}
.y11d{bottom:374.560000pt;}
.yf5{bottom:375.840000pt;}
.ya7{bottom:378.400000pt;}
.y5a{bottom:383.520000pt;}
.y48{bottom:389.280000pt;}
.ycf{bottom:389.760000pt;}
.yde{bottom:390.392960pt;}
.y80{bottom:391.520000pt;}
.y20{bottom:396.480000pt;}
.y11c{bottom:397.760000pt;}
.yf4{bottom:399.040000pt;}
.ya6{bottom:401.600000pt;}
.y59{bottom:406.720000pt;}
.ydd{bottom:411.840000pt;}
.y47{bottom:412.480000pt;}
.y7f{bottom:412.960000pt;}
.yce{bottom:413.120000pt;}
.y1f{bottom:419.840000pt;}
.y11b{bottom:420.960000pt;}
.yf3{bottom:422.240000pt;}
.ya5{bottom:424.800000pt;}
.y58{bottom:429.920000pt;}
.y46{bottom:435.192960pt;}
.ycd{bottom:436.320000pt;}
.ydc{bottom:441.109760pt;}
.y11a{bottom:444.160000pt;}
.yf2{bottom:445.600000pt;}
.ya4{bottom:448.160000pt;}
.y7e{bottom:448.480000pt;}
.y1e{bottom:449.968640pt;}
.y57{bottom:453.120000pt;}
.y45{bottom:456.640000pt;}
.ycc{bottom:459.520000pt;}
.ydb{bottom:462.394880pt;}
.y119{bottom:467.520000pt;}
.ya3{bottom:470.880000pt;}
.y1d{bottom:471.253760pt;}
.y7d{bottom:471.680000pt;}
.yf1{bottom:476.320000pt;}
.y56{bottom:476.480000pt;}
.y44{bottom:477.923840pt;}
.ycb{bottom:482.720000pt;}
.yda{bottom:483.680000pt;}
.y118{bottom:490.720000pt;}
.y1c{bottom:492.538880pt;}
.y7c{bottom:494.880000pt;}
.y43{bottom:499.680000pt;}
.ya2{bottom:501.274880pt;}
.yd9{bottom:504.949760pt;}
.yca{bottom:506.080000pt;}
.y1b{bottom:513.824000pt;}
.y117{bottom:513.920000pt;}
.y7b{bottom:518.080000pt;}
.ya1{bottom:522.560000pt;}
.y42{bottom:522.880000pt;}
.yd8{bottom:526.234880pt;}
.yc9{bottom:529.280000pt;}
.y1a{bottom:535.109120pt;}
.y116{bottom:537.120000pt;}
.y7a{bottom:541.440000pt;}
.ya0{bottom:543.834880pt;}
.y41{bottom:546.080000pt;}
.yd7{bottom:547.520000pt;}
.yc8{bottom:552.480000pt;}
.y19{bottom:556.394240pt;}
.y115{bottom:560.320000pt;}
.y79{bottom:564.640000pt;}
.y9f{bottom:565.120000pt;}
.yf0{bottom:569.280000pt;}
.y40{bottom:569.440000pt;}
.yc7{bottom:575.680000pt;}
.y18{bottom:577.679360pt;}
.y114{bottom:583.680000pt;}
.y9e{bottom:586.880000pt;}
.y78{bottom:587.840000pt;}
.yef{bottom:592.480000pt;}
.y3f{bottom:592.640000pt;}
.yc6{bottom:598.880000pt;}
.y17{bottom:599.126400pt;}
.y113{bottom:606.880000pt;}
.y9d{bottom:610.080000pt;}
.y77{bottom:611.040000pt;}
.y3e{bottom:615.840000pt;}
.y16{bottom:620.411520pt;}
.yc5{bottom:622.240000pt;}
.y112{bottom:630.080000pt;}
.y9c{bottom:633.440000pt;}
.y76{bottom:634.240000pt;}
.y3d{bottom:639.040000pt;}
.y15{bottom:641.696640pt;}
.yc4{bottom:645.440000pt;}
.y111{bottom:653.280000pt;}
.y9b{bottom:656.640000pt;}
.y75{bottom:657.600000pt;}
.y3c{bottom:662.240000pt;}
.y14{bottom:662.981760pt;}
.yc3{bottom:668.640000pt;}
.y110{bottom:676.480000pt;}
.y9a{bottom:679.840000pt;}
.y74{bottom:680.800000pt;}
.y13{bottom:684.266880pt;}
.yee{bottom:685.440000pt;}
.y3b{bottom:685.600000pt;}
.yc2{bottom:691.840000pt;}
.y99{bottom:703.040000pt;}
.y73{bottom:704.000000pt;}
.y12{bottom:705.552000pt;}
.y10f{bottom:707.360000pt;}
.y3a{bottom:708.800000pt;}
.yc1{bottom:715.040000pt;}
.y132{bottom:722.880000pt;}
.y10e{bottom:723.040000pt;}
.y98{bottom:726.240000pt;}
.y11{bottom:726.837120pt;}
.y72{bottom:727.200000pt;}
.y39{bottom:732.000000pt;}
.yc0{bottom:738.400000pt;}
.y10{bottom:748.122240pt;}
.y97{bottom:749.600000pt;}
.y38{bottom:755.200000pt;}
.y71{bottom:758.080000pt;}
.ybf{bottom:761.600000pt;}
.yed{bottom:762.720000pt;}
.yf{bottom:769.407360pt;}
.y96{bottom:772.800000pt;}
.y70{bottom:775.680000pt;}
.y37{bottom:778.400000pt;}
.yec{bottom:778.720000pt;}
.y10c{bottom:780.960000pt;}
.ybe{bottom:784.800000pt;}
.y129{bottom:787.329067pt;}
.ye{bottom:790.854400pt;}
.y95{bottom:796.000000pt;}
.y6f{bottom:796.960000pt;}
.y36{bottom:801.760000pt;}
.ybd{bottom:808.000000pt;}
.yd{bottom:812.139520pt;}
.y12a{bottom:815.133067pt;}
.y6e{bottom:818.240000pt;}
.y94{bottom:819.200000pt;}
.y35{bottom:824.960000pt;}
.y103{bottom:828.839867pt;}
.ybc{bottom:831.360000pt;}
.yc{bottom:833.424640pt;}
.y6d{bottom:839.520000pt;}
.y93{bottom:842.560000pt;}
.y104{bottom:842.880000pt;}
.y12b{bottom:842.937067pt;}
.y34{bottom:848.160000pt;}
.ybb{bottom:854.560000pt;}
.yb{bottom:854.709760pt;}
.yfc{bottom:857.135867pt;}
.y6c{bottom:860.800000pt;}
.y92{bottom:865.760000pt;}
.yff{bottom:870.371867pt;}
.y12c{bottom:870.741067pt;}
.y33{bottom:871.360000pt;}
.ya{bottom:875.994880pt;}
.yba{bottom:877.760000pt;}
.y106{bottom:878.080000pt;}
.y69{bottom:882.080000pt;}
.y91{bottom:888.960000pt;}
.yfd{bottom:892.211867pt;}
.y32{bottom:894.720000pt;}
.y9{bottom:897.280000pt;}
.y12d{bottom:898.545067pt;}
.yb9{bottom:900.960000pt;}
.y67{bottom:904.320000pt;}
.y100{bottom:905.447867pt;}
.y90{bottom:912.160000pt;}
.y108{bottom:913.120000pt;}
.y31{bottom:917.920000pt;}
.y8{bottom:919.200000pt;}
.yb8{bottom:923.680000pt;}
.y12e{bottom:926.349067pt;}
.yfe{bottom:927.287867pt;}
.y8f{bottom:935.360000pt;}
.yb7{bottom:940.320000pt;}
.y101{bottom:940.523867pt;}
.y30{bottom:941.120000pt;}
.y7{bottom:941.920000pt;}
.y10a{bottom:948.160000pt;}
.y12f{bottom:954.153067pt;}
.y8e{bottom:958.720000pt;}
.yb6{bottom:962.400000pt;}
.y2f{bottom:964.320000pt;}
.y6{bottom:965.120000pt;}
.y102{bottom:975.599867pt;}
.y8d{bottom:981.920000pt;}
.y130{bottom:981.957067pt;}
.yb5{bottom:984.320000pt;}
.y2e{bottom:987.520000pt;}
.y5{bottom:988.480000pt;}
.yb4{bottom:1006.240000pt;}
.y131{bottom:1009.761067pt;}
.y2d{bottom:1010.880000pt;}
.y4{bottom:1011.360000pt;}
.y8c{bottom:1012.800000pt;}
.h3{height:18.720000pt;}
.h10{height:20.800000pt;}
.h11{height:20.958667pt;}
.hc{height:20.960000pt;}
.he{height:21.280000pt;}
.hf{height:21.281333pt;}
.h12{height:21.440000pt;}
.h8{height:30.121875pt;}
.h19{height:30.400000pt;}
.h16{height:32.480000pt;}
.h13{height:34.898438pt;}
.h15{height:35.040000pt;}
.h14{height:35.859375pt;}
.h17{height:39.684375pt;}
.hd{height:42.808750pt;}
.h7{height:43.987500pt;}
.ha{height:44.007980pt;}
.hb{height:44.015660pt;}
.h2{height:44.718750pt;}
.h4{height:46.531250pt;}
.h6{height:47.812500pt;}
.h5{height:53.868125pt;}
.h18{height:59.040000pt;}
.h9{height:65.946875pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:8.960000pt;}
.w14{width:17.760000pt;}
.w11{width:33.440000pt;}
.wb{width:39.041333pt;}
.w1a{width:49.440000pt;}
.w16{width:51.678667pt;}
.wc{width:51.680000pt;}
.w18{width:55.518667pt;}
.w19{width:56.321333pt;}
.w13{width:61.920000pt;}
.w15{width:64.001333pt;}
.w1c{width:67.038667pt;}
.w1d{width:67.040000pt;}
.w1b{width:67.200000pt;}
.w7{width:69.761333pt;}
.w12{width:69.918667pt;}
.w6{width:71.520000pt;}
.wa{width:74.400000pt;}
.w17{width:75.040000pt;}
.wf{width:76.640000pt;}
.w10{width:77.120000pt;}
.wd{width:91.361333pt;}
.w5{width:93.760000pt;}
.we{width:104.640000pt;}
.w4{width:110.560000pt;}
.w3{width:144.480000pt;}
.w8{width:288.160000pt;}
.w9{width:288.161333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1e{left:9.120000pt;}
.x1f{left:10.400000pt;}
.x1d{left:16.800000pt;}
.xe{left:18.080000pt;}
.x11{left:19.520000pt;}
.x20{left:20.800000pt;}
.x14{left:26.400000pt;}
.x21{left:30.080000pt;}
.x1a{left:37.280000pt;}
.x10{left:41.760000pt;}
.x13{left:48.640000pt;}
.x8{left:50.880000pt;}
.x12{left:58.560000pt;}
.xf{left:65.440000pt;}
.x16{left:108.480000pt;}
.x1{left:113.440000pt;}
.x4{left:123.040000pt;}
.x7{left:151.211520pt;}
.x33{left:157.297333pt;}
.x3d{left:160.640000pt;}
.x32{left:162.973333pt;}
.x3{left:184.160000pt;}
.x34{left:186.880000pt;}
.x2c{left:189.920000pt;}
.x31{left:208.320000pt;}
.x22{left:218.240000pt;}
.x39{left:220.480000pt;}
.x24{left:237.440000pt;}
.x18{left:239.200000pt;}
.x15{left:260.000000pt;}
.x2d{left:261.120000pt;}
.x35{left:268.160000pt;}
.x9{left:296.000000pt;}
.x27{left:306.689733pt;}
.x2b{left:308.561733pt;}
.x19{left:313.440000pt;}
.x2a{left:317.381733pt;}
.x28{left:320.789733pt;}
.x29{left:326.693733pt;}
.x6{left:331.840000pt;}
.x2e{left:336.320000pt;}
.x5{left:337.440000pt;}
.x3a{left:372.320000pt;}
.x1b{left:388.480000pt;}
.x2{left:392.160000pt;}
.x17{left:396.640000pt;}
.xb{left:406.560000pt;}
.x2f{left:412.320000pt;}
.x36{left:416.480000pt;}
.x1c{left:428.160000pt;}
.x3b{left:448.160000pt;}
.x25{left:479.801733pt;}
.x37{left:491.200000pt;}
.xc{left:500.320000pt;}
.x26{left:503.285733pt;}
.x3c{left:524.160000pt;}
.x38{left:569.760000pt;}
.xd{left:571.840000pt;}
.x23{left:603.360000pt;}
.x30{left:646.720000pt;}
}




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