
    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_6e0486b539eb354c0db2c6c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.125000;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_5099dd179916a7958d40370a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.125000;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_b187f6d3dd5a9ed0840cf362.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984863;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_620066f1afef214016b7d34f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_c5f306da7ecf01f2cc5cd5ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_aba3ba0852b74b10256ca591.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;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_0e08dfd14b51ac1c960de98c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172444;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_2ba492d89f0945ea37260c05.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da3753ad5b935c2cd4cdd964.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_737d6edc6111fbcdeae23a21.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a01d8c8362aa292b134ba4a5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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:ffc;src:url('chunks/assets/font_ed5dc9e6df723a44067df6de.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895020;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:ffd;src:url('chunks/assets/font_c9766d7a1fd6f500cd2e689e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.905762;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:ffe;src:url('chunks/assets/font_1513523866c21c4059b06372.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.247567,0.000000,-0.034793,0.247567,0,0);-ms-transform:matrix(0.247567,0.000000,-0.034793,0.247567,0,0);-webkit-transform:matrix(0.247567,0.000000,-0.034793,0.247567,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);}
.m2{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);}
.v3{vertical-align:-25.974000px;}
.v1{vertical-align:-4.358400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.154000px;}
.v2{vertical-align:36.000000px;}
.ls1{letter-spacing:-7.800000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsf{word-spacing:-21.684000px;}
.wsa0{word-spacing:-15.000000px;}
.ws2a{word-spacing:-14.508000px;}
.wsa5{word-spacing:-13.950000px;}
.ws0{word-spacing:-12.276000px;}
.ws29{word-spacing:-11.778000px;}
.ws1{word-spacing:-11.160000px;}
.ws88{word-spacing:-8.458164px;}
.wsd{word-spacing:-4.212000px;}
.ws18{word-spacing:-3.900000px;}
.ws25{word-spacing:-3.432000px;}
.ws3e{word-spacing:-3.120000px;}
.ws1e{word-spacing:-3.042000px;}
.ws72{word-spacing:-2.964000px;}
.ws30{word-spacing:-2.886000px;}
.ws4b{word-spacing:-2.808000px;}
.wsaf{word-spacing:-2.775000px;}
.ws9e{word-spacing:-2.730000px;}
.wsa1{word-spacing:-2.652000px;}
.ws93{word-spacing:-2.574000px;}
.ws59{word-spacing:-2.496000px;}
.ws5c{word-spacing:-2.418000px;}
.ws26{word-spacing:-2.340000px;}
.ws82{word-spacing:-2.262000px;}
.ws8d{word-spacing:-2.184000px;}
.ws4e{word-spacing:-2.106000px;}
.ws12{word-spacing:-2.028000px;}
.ws5a{word-spacing:-1.872000px;}
.ws62{word-spacing:-1.848000px;}
.ws3d{word-spacing:-1.794000px;}
.ws4f{word-spacing:-1.716000px;}
.ws7b{word-spacing:-1.560000px;}
.ws94{word-spacing:-1.482000px;}
.wsa4{word-spacing:-1.404000px;}
.ws57{word-spacing:-1.326000px;}
.ws8b{word-spacing:-1.254000px;}
.ws7c{word-spacing:-1.248000px;}
.ws5b{word-spacing:-1.170000px;}
.ws53{word-spacing:-1.092000px;}
.ws17{word-spacing:-1.014000px;}
.ws10{word-spacing:-0.936000px;}
.ws2d{word-spacing:-0.858000px;}
.ws20{word-spacing:-0.780000px;}
.ws3f{word-spacing:-0.702000px;}
.wse{word-spacing:-0.624000px;}
.ws49{word-spacing:-0.468000px;}
.ws4{word-spacing:-0.390000px;}
.ws33{word-spacing:-0.312000px;}
.ws3b{word-spacing:-0.234000px;}
.ws28{word-spacing:-0.156000px;}
.ws9f{word-spacing:-0.120000px;}
.ws2b{word-spacing:-0.078000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.078000px;}
.ws76{word-spacing:0.156000px;}
.ws38{word-spacing:0.234000px;}
.ws66{word-spacing:0.312000px;}
.ws39{word-spacing:0.390000px;}
.ws35{word-spacing:0.546000px;}
.ws89{word-spacing:0.594000px;}
.ws83{word-spacing:0.624000px;}
.ws21{word-spacing:0.702000px;}
.ws1a{word-spacing:0.780000px;}
.ws70{word-spacing:0.858000px;}
.ws8f{word-spacing:0.936000px;}
.ws8c{word-spacing:1.014000px;}
.ws4a{word-spacing:1.092000px;}
.ws45{word-spacing:1.170000px;}
.ws36{word-spacing:1.248000px;}
.ws40{word-spacing:1.326000px;}
.ws19{word-spacing:1.404000px;}
.ws32{word-spacing:1.482000px;}
.ws55{word-spacing:1.560000px;}
.ws63{word-spacing:1.638000px;}
.ws37{word-spacing:1.716000px;}
.ws6b{word-spacing:1.794000px;}
.ws3{word-spacing:1.950000px;}
.ws22{word-spacing:2.028000px;}
.wsa7{word-spacing:2.100000px;}
.ws1c{word-spacing:2.106000px;}
.ws58{word-spacing:2.262000px;}
.wsa3{word-spacing:2.340000px;}
.ws15{word-spacing:2.418000px;}
.ws46{word-spacing:2.574000px;}
.ws42{word-spacing:2.652000px;}
.ws52{word-spacing:2.730000px;}
.ws24{word-spacing:2.808000px;}
.ws14{word-spacing:2.886000px;}
.ws1b{word-spacing:2.964000px;}
.ws11{word-spacing:3.042000px;}
.wsab{word-spacing:3.075000px;}
.ws8{word-spacing:3.120000px;}
.wsb2{word-spacing:3.150000px;}
.ws86{word-spacing:3.198000px;}
.ws3c{word-spacing:3.276000px;}
.ws44{word-spacing:3.432000px;}
.ws61{word-spacing:3.498000px;}
.ws84{word-spacing:3.510000px;}
.ws64{word-spacing:3.588000px;}
.ws85{word-spacing:3.666000px;}
.ws65{word-spacing:3.744000px;}
.ws81{word-spacing:3.822000px;}
.wsc{word-spacing:3.900000px;}
.ws91{word-spacing:3.978000px;}
.ws8a{word-spacing:4.026000px;}
.ws2e{word-spacing:4.056000px;}
.ws99{word-spacing:4.134000px;}
.ws43{word-spacing:4.212000px;}
.ws41{word-spacing:4.290000px;}
.ws51{word-spacing:4.368000px;}
.wsa9{word-spacing:4.425000px;}
.ws27{word-spacing:4.446000px;}
.ws5f{word-spacing:4.554000px;}
.ws68{word-spacing:4.602000px;}
.ws9c{word-spacing:4.680000px;}
.ws31{word-spacing:4.836000px;}
.ws95{word-spacing:4.914000px;}
.ws6c{word-spacing:4.992000px;}
.wsad{word-spacing:5.025000px;}
.ws4c{word-spacing:5.070000px;}
.ws92{word-spacing:5.148000px;}
.ws71{word-spacing:5.226000px;}
.ws7a{word-spacing:5.304000px;}
.ws9b{word-spacing:5.382000px;}
.ws7d{word-spacing:5.460000px;}
.wsac{word-spacing:5.550000px;}
.ws50{word-spacing:5.616000px;}
.ws23{word-spacing:5.694000px;}
.ws6d{word-spacing:5.772000px;}
.ws2c{word-spacing:5.850000px;}
.wsa6{word-spacing:5.925000px;}
.ws67{word-spacing:5.928000px;}
.ws6a{word-spacing:6.006000px;}
.ws1f{word-spacing:6.162000px;}
.ws60{word-spacing:6.204000px;}
.ws2f{word-spacing:6.318000px;}
.ws8e{word-spacing:6.396000px;}
.ws90{word-spacing:6.474000px;}
.ws96{word-spacing:6.552000px;}
.ws69{word-spacing:6.708000px;}
.ws48{word-spacing:6.786000px;}
.ws73{word-spacing:6.942000px;}
.ws9a{word-spacing:7.020000px;}
.ws34{word-spacing:7.254000px;}
.wsa2{word-spacing:7.332000px;}
.ws6e{word-spacing:7.410000px;}
.ws13{word-spacing:7.488000px;}
.ws5e{word-spacing:7.644000px;}
.ws1d{word-spacing:7.800000px;}
.ws97{word-spacing:7.878000px;}
.wsb1{word-spacing:7.950000px;}
.ws87{word-spacing:8.034000px;}
.ws54{word-spacing:8.112000px;}
.ws9d{word-spacing:8.268000px;}
.ws6f{word-spacing:8.346000px;}
.ws3a{word-spacing:8.424000px;}
.ws6{word-spacing:8.502000px;}
.ws7{word-spacing:8.580000px;}
.wsb{word-spacing:8.814000px;}
.ws4d{word-spacing:9.048000px;}
.ws56{word-spacing:9.126000px;}
.wsaa{word-spacing:9.225000px;}
.wsa{word-spacing:9.438000px;}
.ws98{word-spacing:10.062000px;}
.ws9{word-spacing:10.296000px;}
.ws5{word-spacing:10.374000px;}
.ws5d{word-spacing:10.686000px;}
.wsb0{word-spacing:11.325000px;}
.ws7e{word-spacing:11.622000px;}
.ws74{word-spacing:12.870000px;}
.wsa8{word-spacing:13.650000px;}
.ws79{word-spacing:14.196000px;}
.ws78{word-spacing:14.274000px;}
.ws75{word-spacing:14.508000px;}
.ws7f{word-spacing:16.458000px;}
.ws80{word-spacing:17.472000px;}
.ws77{word-spacing:23.790000px;}
.wsae{word-spacing:28.350000px;}
.ws47{word-spacing:201.474000px;}
._13{margin-left:-201.396000px;}
._14{margin-left:-192.426000px;}
._1a{margin-left:-188.526000px;}
._7{margin-left:-9.342000px;}
._8{margin-left:-8.280000px;}
._9{margin-left:-7.186200px;}
._b{margin-left:-6.163200px;}
._11{margin-left:-4.992600px;}
._6{margin-left:-3.906000px;}
._1{margin-left:-2.556000px;}
._4{margin-left:-1.215000px;}
._3{width:1.296000px;}
._2{width:2.493000px;}
._5{width:3.942000px;}
._c{width:5.332200px;}
._a{width:6.497400px;}
._d{width:8.119800px;}
._e{width:9.123600px;}
._f{width:10.873200px;}
._1c{width:140.088000px;}
._1b{width:177.684000px;}
._1e{width:191.412000px;}
._1f{width:193.128000px;}
._12{width:194.220000px;}
._15{width:195.858000px;}
._19{width:197.184000px;}
._16{width:198.744000px;}
._1d{width:200.538000px;}
._10{width:201.552000px;}
._18{width:202.644000px;}
._17{width:203.970000px;}
._0{width:1674.012600px;}
.fc4{color:rgb(148,76,189);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(140,149,156);}
.fc1{color:rgb(137,58,182);}
.fc0{color:rgb(138,148,157);}
.fs6{font-size:45.474000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.000000px;}
.fs5{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fs4{font-size:90.884471px;}
.y0{bottom:0.000000px;}
.y26{bottom:33.670800px;}
.y2{bottom:34.760400px;}
.y11{bottom:83.255250px;}
.y142{bottom:95.063850px;}
.y10{bottom:96.755250px;}
.y175{bottom:101.919750px;}
.ybe{bottom:102.946350px;}
.y97{bottom:104.757150px;}
.y6e{bottom:105.030150px;}
.y16d{bottom:105.820200px;}
.y18e{bottom:105.839700px;}
.yd8{bottom:105.883350px;}
.yf{bottom:116.748750px;}
.y174{bottom:119.919750px;}
.y12a{bottom:125.921400px;}
.ybd{bottom:126.950850px;}
.y96{bottom:128.761650px;}
.y6d{bottom:129.034650px;}
.y102{bottom:129.745950px;}
.y16c{bottom:129.824700px;}
.y18d{bottom:129.844200px;}
.yd7{bottom:129.887850px;}
.y171{bottom:140.833650px;}
.y144{bottom:145.603500px;}
.y129{bottom:149.925900px;}
.ybc{bottom:150.955350px;}
.y95{bottom:152.766150px;}
.y6c{bottom:153.039150px;}
.y101{bottom:153.750450px;}
.y16b{bottom:153.829200px;}
.y18c{bottom:153.848700px;}
.yd6{bottom:153.892350px;}
.y170{bottom:158.833650px;}
.y143{bottom:163.603500px;}
.y128{bottom:173.930400px;}
.ybb{bottom:174.959850px;}
.y94{bottom:176.770650px;}
.y6b{bottom:177.043650px;}
.y100{bottom:177.754950px;}
.y16a{bottom:177.833700px;}
.y18b{bottom:177.853200px;}
.yd5{bottom:177.896850px;}
.y48{bottom:180.516000px;}
.y127{bottom:197.934900px;}
.yba{bottom:198.964350px;}
.y93{bottom:200.775150px;}
.y6a{bottom:201.048150px;}
.yff{bottom:201.759450px;}
.y169{bottom:201.838200px;}
.y18a{bottom:201.857700px;}
.yd4{bottom:201.901350px;}
.y24{bottom:205.262550px;}
.y177{bottom:208.785000px;}
.y126{bottom:221.939400px;}
.yb9{bottom:222.968850px;}
.y92{bottom:224.779650px;}
.y69{bottom:225.052650px;}
.yfe{bottom:225.763950px;}
.y168{bottom:225.842700px;}
.y189{bottom:225.862200px;}
.yd3{bottom:225.905850px;}
.y47{bottom:227.316000px;}
.y125{bottom:245.943900px;}
.yb8{bottom:246.973350px;}
.y91{bottom:248.784150px;}
.y68{bottom:249.057150px;}
.yfd{bottom:249.768450px;}
.y167{bottom:249.847200px;}
.y188{bottom:249.866700px;}
.yd2{bottom:249.910350px;}
.y46{bottom:250.716000px;}
.y23{bottom:252.062550px;}
.y124{bottom:269.948400px;}
.yb7{bottom:270.977850px;}
.y90{bottom:272.788650px;}
.y67{bottom:273.061650px;}
.yfc{bottom:273.772950px;}
.y166{bottom:273.851700px;}
.y187{bottom:273.871200px;}
.yd1{bottom:273.914850px;}
.y45{bottom:274.116000px;}
.y22{bottom:275.462550px;}
.y123{bottom:293.952900px;}
.yb6{bottom:294.982350px;}
.y8f{bottom:296.793150px;}
.y66{bottom:297.066150px;}
.y44{bottom:297.516000px;}
.yfb{bottom:297.777450px;}
.y165{bottom:297.856200px;}
.y186{bottom:297.875700px;}
.yd0{bottom:297.919350px;}
.y21{bottom:298.862550px;}
.y122{bottom:317.957400px;}
.yb5{bottom:318.986850px;}
.y8e{bottom:320.797650px;}
.y43{bottom:320.916000px;}
.y65{bottom:321.070650px;}
.yfa{bottom:321.781950px;}
.y164{bottom:321.860700px;}
.y185{bottom:321.880200px;}
.ycf{bottom:321.923850px;}
.y20{bottom:322.262550px;}
.y1{bottom:325.497600px;}
.y25{bottom:326.737800px;}
.y121{bottom:341.961900px;}
.yb4{bottom:342.991350px;}
.y42{bottom:344.316000px;}
.y8d{bottom:344.802150px;}
.y64{bottom:345.075150px;}
.y1f{bottom:345.662550px;}
.yf9{bottom:345.786450px;}
.y163{bottom:345.865200px;}
.y184{bottom:345.884700px;}
.yce{bottom:345.928350px;}
.y1a7{bottom:346.253700px;}
.y120{bottom:365.966400px;}
.yb3{bottom:366.995850px;}
.y41{bottom:367.716000px;}
.y1a6{bottom:368.753700px;}
.y8c{bottom:368.806650px;}
.y1e{bottom:369.062550px;}
.y63{bottom:369.079650px;}
.yf8{bottom:369.790950px;}
.y162{bottom:369.869700px;}
.y183{bottom:369.889200px;}
.ycd{bottom:369.932850px;}
.y11f{bottom:389.970900px;}
.yb2{bottom:391.000350px;}
.y40{bottom:391.116000px;}
.y1a5{bottom:391.253700px;}
.y1d{bottom:392.462550px;}
.y8b{bottom:392.811150px;}
.y62{bottom:393.084150px;}
.yf7{bottom:393.795450px;}
.y161{bottom:393.874200px;}
.y182{bottom:393.893700px;}
.ycc{bottom:393.937350px;}
.y11e{bottom:413.975400px;}
.y3f{bottom:414.516000px;}
.y1c{bottom:415.862550px;}
.y8a{bottom:416.815650px;}
.y61{bottom:417.088650px;}
.yf6{bottom:417.799950px;}
.y160{bottom:417.878700px;}
.y181{bottom:417.898200px;}
.ycb{bottom:417.941850px;}
.y173{bottom:418.269750px;}
.y1a4{bottom:436.253700px;}
.y172{bottom:436.269750px;}
.y3e{bottom:437.916000px;}
.y11d{bottom:437.979900px;}
.yb1{bottom:439.022850px;}
.y1b{bottom:439.262550px;}
.y89{bottom:440.820150px;}
.y60{bottom:441.093150px;}
.yf5{bottom:441.804450px;}
.y15f{bottom:441.883200px;}
.y180{bottom:441.902700px;}
.yca{bottom:441.946350px;}
.y1a3{bottom:458.753700px;}
.y3d{bottom:461.316000px;}
.y11c{bottom:461.984400px;}
.y1a{bottom:462.662550px;}
.y88{bottom:464.824650px;}
.y5f{bottom:465.097650px;}
.yf4{bottom:465.808950px;}
.y15e{bottom:465.887700px;}
.y17f{bottom:465.907200px;}
.yc9{bottom:465.950850px;}
.yb0{bottom:467.518350px;}
.y1a2{bottom:481.253700px;}
.y16f{bottom:483.643650px;}
.y3c{bottom:484.716000px;}
.y11b{bottom:485.988900px;}
.y19{bottom:486.062550px;}
.y87{bottom:488.829150px;}
.y5e{bottom:489.102150px;}
.yf3{bottom:489.813450px;}
.y15d{bottom:489.892200px;}
.y17e{bottom:489.911700px;}
.yaf{bottom:496.013850px;}
.y16e{bottom:501.643650px;}
.y3b{bottom:508.116000px;}
.y18{bottom:509.462550px;}
.y11a{bottom:509.993400px;}
.y86{bottom:512.833650px;}
.y5d{bottom:513.106650px;}
.yf2{bottom:513.817950px;}
.y15c{bottom:513.896700px;}
.y17d{bottom:513.916200px;}
.yda{bottom:519.253950px;}
.yae{bottom:524.509350px;}
.y1a1{bottom:526.253700px;}
.y106{bottom:526.977750px;}
.y3a{bottom:531.516000px;}
.y17{bottom:532.862550px;}
.y119{bottom:533.997900px;}
.y85{bottom:536.838150px;}
.y5c{bottom:537.111150px;}
.yd9{bottom:537.253950px;}
.yf1{bottom:537.822450px;}
.y15b{bottom:537.901200px;}
.y17c{bottom:537.920700px;}
.y105{bottom:544.977750px;}
.y141{bottom:546.785700px;}
.y1a0{bottom:548.753700px;}
.yad{bottom:553.004850px;}
.y39{bottom:554.916000px;}
.y16{bottom:556.262550px;}
.y118{bottom:558.002400px;}
.y84{bottom:560.842650px;}
.y5b{bottom:561.115650px;}
.yf0{bottom:561.826950px;}
.y15a{bottom:561.905700px;}
.y17b{bottom:561.925200px;}
.y140{bottom:570.790200px;}
.y15{bottom:579.662550px;}
.yac{bottom:581.500350px;}
.y117{bottom:582.006900px;}
.y83{bottom:584.847150px;}
.y5a{bottom:585.120150px;}
.yef{bottom:585.831450px;}
.y159{bottom:585.910200px;}
.y17a{bottom:585.929700px;}
.y176{bottom:587.070000px;}
.y19f{bottom:593.753700px;}
.y13f{bottom:594.794700px;}
.y14{bottom:603.062550px;}
.y116{bottom:606.011400px;}
.y82{bottom:608.851650px;}
.y59{bottom:609.124650px;}
.yee{bottom:609.835950px;}
.y158{bottom:609.914700px;}
.yab{bottom:609.914850px;}
.y179{bottom:609.934200px;}
.y19e{bottom:616.253700px;}
.y13e{bottom:618.799200px;}
.y115{bottom:630.015900px;}
.y81{bottom:632.856150px;}
.y58{bottom:633.129150px;}
.yed{bottom:633.840450px;}
.y157{bottom:633.919200px;}
.yaa{bottom:633.919350px;}
.y19d{bottom:638.753700px;}
.y13d{bottom:642.803700px;}
.y38{bottom:648.516000px;}
.y114{bottom:654.020400px;}
.y80{bottom:656.860650px;}
.yec{bottom:657.844950px;}
.y156{bottom:657.923700px;}
.ya9{bottom:657.923850px;}
.y178{bottom:657.943200px;}
.y19c{bottom:661.253700px;}
.y13c{bottom:666.763200px;}
.y13{bottom:677.223900px;}
.y113{bottom:678.024900px;}
.y7f{bottom:680.865150px;}
.y57{bottom:681.138150px;}
.yeb{bottom:681.849450px;}
.y155{bottom:681.928200px;}
.ya8{bottom:681.928350px;}
.y12{bottom:690.723900px;}
.y13b{bottom:690.767700px;}
.y37{bottom:695.316000px;}
.ye{bottom:696.879450px;}
.y112{bottom:702.029400px;}
.y7e{bottom:704.869650px;}
.yea{bottom:705.853950px;}
.y154{bottom:705.932700px;}
.ya7{bottom:705.932850px;}
.y18f{bottom:705.952200px;}
.y19b{bottom:706.253700px;}
.y13a{bottom:714.772200px;}
.yd{bottom:716.679450px;}
.y36{bottom:718.716000px;}
.y111{bottom:726.033900px;}
.y19a{bottom:728.753700px;}
.y7d{bottom:728.874150px;}
.ye9{bottom:729.858450px;}
.y153{bottom:729.937200px;}
.ya6{bottom:729.937350px;}
.yc{bottom:736.479450px;}
.y139{bottom:738.776700px;}
.y35{bottom:742.116000px;}
.y110{bottom:750.038400px;}
.y7c{bottom:752.878650px;}
.y56{bottom:753.132150px;}
.ye8{bottom:753.862950px;}
.y152{bottom:753.941700px;}
.ya5{bottom:753.941850px;}
.yb{bottom:756.279450px;}
.y138{bottom:762.781200px;}
.y34{bottom:765.516000px;}
.y199{bottom:773.753700px;}
.y10f{bottom:774.042900px;}
.y7b{bottom:776.883150px;}
.y55{bottom:777.136650px;}
.ye7{bottom:777.867450px;}
.y151{bottom:777.946200px;}
.ya4{bottom:777.946350px;}
.ya{bottom:783.271950px;}
.y137{bottom:786.785700px;}
.y33{bottom:788.916000px;}
.y10e{bottom:798.047400px;}
.y7a{bottom:800.887650px;}
.y54{bottom:801.141150px;}
.ye6{bottom:801.871950px;}
.y150{bottom:801.950700px;}
.ya3{bottom:801.950850px;}
.y9{bottom:810.279450px;}
.y136{bottom:810.790200px;}
.y32{bottom:812.316000px;}
.y198{bottom:818.753700px;}
.y10d{bottom:822.051900px;}
.y79{bottom:824.892150px;}
.y53{bottom:825.145650px;}
.ye5{bottom:825.876450px;}
.y14f{bottom:825.955200px;}
.ya2{bottom:825.955350px;}
.yc8{bottom:825.959850px;}
.y104{bottom:826.737750px;}
.y135{bottom:834.794700px;}
.y31{bottom:835.716000px;}
.y103{bottom:844.737750px;}
.y10c{bottom:846.056400px;}
.y78{bottom:848.896650px;}
.y52{bottom:849.150150px;}
.ye4{bottom:849.880950px;}
.y14e{bottom:849.959700px;}
.ya1{bottom:849.959850px;}
.yc7{bottom:849.964350px;}
.y8{bottom:857.898900px;}
.y134{bottom:858.799200px;}
.y30{bottom:859.116000px;}
.y197{bottom:863.753700px;}
.y10b{bottom:870.060900px;}
.y77{bottom:872.901150px;}
.y51{bottom:873.154650px;}
.ye3{bottom:873.885450px;}
.y14d{bottom:873.964200px;}
.ya0{bottom:873.964350px;}
.yc6{bottom:873.968850px;}
.y2f{bottom:882.516000px;}
.y133{bottom:882.803700px;}
.y7{bottom:884.898900px;}
.y196{bottom:886.253700px;}
.y10a{bottom:894.065400px;}
.y76{bottom:896.905650px;}
.y50{bottom:897.159150px;}
.ye2{bottom:897.889950px;}
.y14c{bottom:897.968700px;}
.y9f{bottom:897.968850px;}
.yc5{bottom:897.973350px;}
.y2e{bottom:905.916000px;}
.y132{bottom:906.808200px;}
.y195{bottom:908.753700px;}
.y109{bottom:918.069900px;}
.y6{bottom:919.391400px;}
.y75{bottom:920.910150px;}
.y4f{bottom:921.163650px;}
.ye1{bottom:921.894450px;}
.y14b{bottom:921.973200px;}
.y9e{bottom:921.973350px;}
.yc4{bottom:921.977850px;}
.y2d{bottom:929.316000px;}
.y108{bottom:942.074400px;}
.y74{bottom:944.914650px;}
.y4e{bottom:945.168150px;}
.ye0{bottom:945.898950px;}
.y14a{bottom:945.977700px;}
.y9d{bottom:945.977850px;}
.yc3{bottom:945.982350px;}
.y5{bottom:946.391400px;}
.y2c{bottom:952.716000px;}
.y194{bottom:953.753700px;}
.y131{bottom:954.826200px;}
.y107{bottom:966.078900px;}
.y73{bottom:968.919150px;}
.y4d{bottom:969.172650px;}
.ydf{bottom:969.903450px;}
.y149{bottom:969.982200px;}
.y9c{bottom:969.982350px;}
.yc2{bottom:969.986850px;}
.y2b{bottom:976.116000px;}
.y193{bottom:976.253700px;}
.y130{bottom:983.321700px;}
.y72{bottom:992.923650px;}
.y4c{bottom:993.177150px;}
.yde{bottom:993.907950px;}
.y148{bottom:993.986700px;}
.y9b{bottom:993.986850px;}
.yc1{bottom:993.991350px;}
.y192{bottom:998.753700px;}
.y4{bottom:999.296400px;}
.y2a{bottom:999.516000px;}
.y12f{bottom:1011.817200px;}
.y71{bottom:1016.928150px;}
.y4b{bottom:1017.181650px;}
.ydd{bottom:1017.912450px;}
.y147{bottom:1017.991200px;}
.y9a{bottom:1017.991350px;}
.yc0{bottom:1017.995850px;}
.y191{bottom:1021.253700px;}
.y29{bottom:1022.916000px;}
.y3{bottom:1026.296400px;}
.y12e{bottom:1040.312700px;}
.y70{bottom:1040.932650px;}
.y4a{bottom:1041.186150px;}
.ydc{bottom:1041.916950px;}
.y146{bottom:1041.995700px;}
.y99{bottom:1041.995850px;}
.ybf{bottom:1042.000350px;}
.y28{bottom:1046.316000px;}
.y12c{bottom:1055.002050px;}
.y6f{bottom:1064.937150px;}
.y49{bottom:1065.190650px;}
.ydb{bottom:1065.921450px;}
.y145{bottom:1066.000200px;}
.y98{bottom:1066.000350px;}
.y190{bottom:1066.253700px;}
.y12d{bottom:1068.808200px;}
.y27{bottom:1069.716000px;}
.y12b{bottom:1073.002050px;}
.ha{height:33.923604px;}
.h13{height:41.220703px;}
.h12{height:41.250000px;}
.hc{height:44.760000px;}
.h8{height:49.236000px;}
.hb{height:54.506667px;}
.h15{height:55.950000px;}
.h10{height:58.110000px;}
.h7{height:58.188000px;}
.he{height:58.500000px;}
.hf{height:59.071289px;}
.h9{height:59.957333px;}
.h14{height:60.077604px;}
.h3{height:64.441406px;}
.h4{height:67.500000px;}
.h16{height:68.133333px;}
.h5{height:68.163353px;}
.hd{height:69.811523px;}
.h11{height:70.858667px;}
.h2{height:80.551758px;}
.h6{height:81.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:34.901550px;}
.x14{left:46.151550px;}
.x13{left:83.976300px;}
.x2{left:86.102400px;}
.x3{left:111.530250px;}
.x7{left:122.061900px;}
.x12{left:126.496050px;}
.x16{left:127.559100px;}
.x9{left:135.134400px;}
.x1d{left:150.944850px;}
.x23{left:209.799750px;}
.x4{left:213.860250px;}
.x18{left:238.641750px;}
.x22{left:260.964450px;}
.x21{left:269.997900px;}
.x20{left:271.062900px;}
.x17{left:289.133850px;}
.xa{left:294.074400px;}
.x8{left:310.161900px;}
.xb{left:325.349250px;}
.xc{left:329.385750px;}
.xf{left:354.609300px;}
.x10{left:382.890300px;}
.x5{left:399.996450px;}
.x1c{left:401.279550px;}
.x1b{left:409.557600px;}
.x1a{left:411.059100px;}
.xe{left:427.291800px;}
.xd{left:429.733800px;}
.x6{left:463.574400px;}
.x1e{left:480.464850px;}
.x19{left:543.848100px;}
.x11{left:654.803250px;}
.x15{left:702.081600px;}
.x1{left:836.574900px;}
@media print{
.v3{vertical-align:-23.088000pt;}
.v1{vertical-align:-3.874133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.248000pt;}
.v2{vertical-align:32.000000pt;}
.ls1{letter-spacing:-6.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-19.274667pt;}
.wsa0{word-spacing:-13.333333pt;}
.ws2a{word-spacing:-12.896000pt;}
.wsa5{word-spacing:-12.400000pt;}
.ws0{word-spacing:-10.912000pt;}
.ws29{word-spacing:-10.469333pt;}
.ws1{word-spacing:-9.920000pt;}
.ws88{word-spacing:-7.518368pt;}
.wsd{word-spacing:-3.744000pt;}
.ws18{word-spacing:-3.466667pt;}
.ws25{word-spacing:-3.050667pt;}
.ws3e{word-spacing:-2.773333pt;}
.ws1e{word-spacing:-2.704000pt;}
.ws72{word-spacing:-2.634667pt;}
.ws30{word-spacing:-2.565333pt;}
.ws4b{word-spacing:-2.496000pt;}
.wsaf{word-spacing:-2.466667pt;}
.ws9e{word-spacing:-2.426667pt;}
.wsa1{word-spacing:-2.357333pt;}
.ws93{word-spacing:-2.288000pt;}
.ws59{word-spacing:-2.218667pt;}
.ws5c{word-spacing:-2.149333pt;}
.ws26{word-spacing:-2.080000pt;}
.ws82{word-spacing:-2.010667pt;}
.ws8d{word-spacing:-1.941333pt;}
.ws4e{word-spacing:-1.872000pt;}
.ws12{word-spacing:-1.802667pt;}
.ws5a{word-spacing:-1.664000pt;}
.ws62{word-spacing:-1.642667pt;}
.ws3d{word-spacing:-1.594667pt;}
.ws4f{word-spacing:-1.525333pt;}
.ws7b{word-spacing:-1.386667pt;}
.ws94{word-spacing:-1.317333pt;}
.wsa4{word-spacing:-1.248000pt;}
.ws57{word-spacing:-1.178667pt;}
.ws8b{word-spacing:-1.114667pt;}
.ws7c{word-spacing:-1.109333pt;}
.ws5b{word-spacing:-1.040000pt;}
.ws53{word-spacing:-0.970667pt;}
.ws17{word-spacing:-0.901333pt;}
.ws10{word-spacing:-0.832000pt;}
.ws2d{word-spacing:-0.762667pt;}
.ws20{word-spacing:-0.693333pt;}
.ws3f{word-spacing:-0.624000pt;}
.wse{word-spacing:-0.554667pt;}
.ws49{word-spacing:-0.416000pt;}
.ws4{word-spacing:-0.346667pt;}
.ws33{word-spacing:-0.277333pt;}
.ws3b{word-spacing:-0.208000pt;}
.ws28{word-spacing:-0.138667pt;}
.ws9f{word-spacing:-0.106667pt;}
.ws2b{word-spacing:-0.069333pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.069333pt;}
.ws76{word-spacing:0.138667pt;}
.ws38{word-spacing:0.208000pt;}
.ws66{word-spacing:0.277333pt;}
.ws39{word-spacing:0.346667pt;}
.ws35{word-spacing:0.485333pt;}
.ws89{word-spacing:0.528000pt;}
.ws83{word-spacing:0.554667pt;}
.ws21{word-spacing:0.624000pt;}
.ws1a{word-spacing:0.693333pt;}
.ws70{word-spacing:0.762667pt;}
.ws8f{word-spacing:0.832000pt;}
.ws8c{word-spacing:0.901333pt;}
.ws4a{word-spacing:0.970667pt;}
.ws45{word-spacing:1.040000pt;}
.ws36{word-spacing:1.109333pt;}
.ws40{word-spacing:1.178667pt;}
.ws19{word-spacing:1.248000pt;}
.ws32{word-spacing:1.317333pt;}
.ws55{word-spacing:1.386667pt;}
.ws63{word-spacing:1.456000pt;}
.ws37{word-spacing:1.525333pt;}
.ws6b{word-spacing:1.594667pt;}
.ws3{word-spacing:1.733333pt;}
.ws22{word-spacing:1.802667pt;}
.wsa7{word-spacing:1.866667pt;}
.ws1c{word-spacing:1.872000pt;}
.ws58{word-spacing:2.010667pt;}
.wsa3{word-spacing:2.080000pt;}
.ws15{word-spacing:2.149333pt;}
.ws46{word-spacing:2.288000pt;}
.ws42{word-spacing:2.357333pt;}
.ws52{word-spacing:2.426667pt;}
.ws24{word-spacing:2.496000pt;}
.ws14{word-spacing:2.565333pt;}
.ws1b{word-spacing:2.634667pt;}
.ws11{word-spacing:2.704000pt;}
.wsab{word-spacing:2.733333pt;}
.ws8{word-spacing:2.773333pt;}
.wsb2{word-spacing:2.800000pt;}
.ws86{word-spacing:2.842667pt;}
.ws3c{word-spacing:2.912000pt;}
.ws44{word-spacing:3.050667pt;}
.ws61{word-spacing:3.109333pt;}
.ws84{word-spacing:3.120000pt;}
.ws64{word-spacing:3.189333pt;}
.ws85{word-spacing:3.258667pt;}
.ws65{word-spacing:3.328000pt;}
.ws81{word-spacing:3.397333pt;}
.wsc{word-spacing:3.466667pt;}
.ws91{word-spacing:3.536000pt;}
.ws8a{word-spacing:3.578667pt;}
.ws2e{word-spacing:3.605333pt;}
.ws99{word-spacing:3.674667pt;}
.ws43{word-spacing:3.744000pt;}
.ws41{word-spacing:3.813333pt;}
.ws51{word-spacing:3.882667pt;}
.wsa9{word-spacing:3.933333pt;}
.ws27{word-spacing:3.952000pt;}
.ws5f{word-spacing:4.048000pt;}
.ws68{word-spacing:4.090667pt;}
.ws9c{word-spacing:4.160000pt;}
.ws31{word-spacing:4.298667pt;}
.ws95{word-spacing:4.368000pt;}
.ws6c{word-spacing:4.437333pt;}
.wsad{word-spacing:4.466667pt;}
.ws4c{word-spacing:4.506667pt;}
.ws92{word-spacing:4.576000pt;}
.ws71{word-spacing:4.645333pt;}
.ws7a{word-spacing:4.714667pt;}
.ws9b{word-spacing:4.784000pt;}
.ws7d{word-spacing:4.853333pt;}
.wsac{word-spacing:4.933333pt;}
.ws50{word-spacing:4.992000pt;}
.ws23{word-spacing:5.061333pt;}
.ws6d{word-spacing:5.130667pt;}
.ws2c{word-spacing:5.200000pt;}
.wsa6{word-spacing:5.266667pt;}
.ws67{word-spacing:5.269333pt;}
.ws6a{word-spacing:5.338667pt;}
.ws1f{word-spacing:5.477333pt;}
.ws60{word-spacing:5.514667pt;}
.ws2f{word-spacing:5.616000pt;}
.ws8e{word-spacing:5.685333pt;}
.ws90{word-spacing:5.754667pt;}
.ws96{word-spacing:5.824000pt;}
.ws69{word-spacing:5.962667pt;}
.ws48{word-spacing:6.032000pt;}
.ws73{word-spacing:6.170667pt;}
.ws9a{word-spacing:6.240000pt;}
.ws34{word-spacing:6.448000pt;}
.wsa2{word-spacing:6.517333pt;}
.ws6e{word-spacing:6.586667pt;}
.ws13{word-spacing:6.656000pt;}
.ws5e{word-spacing:6.794667pt;}
.ws1d{word-spacing:6.933333pt;}
.ws97{word-spacing:7.002667pt;}
.wsb1{word-spacing:7.066667pt;}
.ws87{word-spacing:7.141333pt;}
.ws54{word-spacing:7.210667pt;}
.ws9d{word-spacing:7.349333pt;}
.ws6f{word-spacing:7.418667pt;}
.ws3a{word-spacing:7.488000pt;}
.ws6{word-spacing:7.557333pt;}
.ws7{word-spacing:7.626667pt;}
.wsb{word-spacing:7.834667pt;}
.ws4d{word-spacing:8.042667pt;}
.ws56{word-spacing:8.112000pt;}
.wsaa{word-spacing:8.200000pt;}
.wsa{word-spacing:8.389333pt;}
.ws98{word-spacing:8.944000pt;}
.ws9{word-spacing:9.152000pt;}
.ws5{word-spacing:9.221333pt;}
.ws5d{word-spacing:9.498667pt;}
.wsb0{word-spacing:10.066667pt;}
.ws7e{word-spacing:10.330667pt;}
.ws74{word-spacing:11.440000pt;}
.wsa8{word-spacing:12.133333pt;}
.ws79{word-spacing:12.618667pt;}
.ws78{word-spacing:12.688000pt;}
.ws75{word-spacing:12.896000pt;}
.ws7f{word-spacing:14.629333pt;}
.ws80{word-spacing:15.530667pt;}
.ws77{word-spacing:21.146667pt;}
.wsae{word-spacing:25.200000pt;}
.ws47{word-spacing:179.088000pt;}
._13{margin-left:-179.018667pt;}
._14{margin-left:-171.045333pt;}
._1a{margin-left:-167.578667pt;}
._7{margin-left:-8.304000pt;}
._8{margin-left:-7.360000pt;}
._9{margin-left:-6.387733pt;}
._b{margin-left:-5.478400pt;}
._11{margin-left:-4.437867pt;}
._6{margin-left:-3.472000pt;}
._1{margin-left:-2.272000pt;}
._4{margin-left:-1.080000pt;}
._3{width:1.152000pt;}
._2{width:2.216000pt;}
._5{width:3.504000pt;}
._c{width:4.739733pt;}
._a{width:5.775467pt;}
._d{width:7.217600pt;}
._e{width:8.109867pt;}
._f{width:9.665067pt;}
._1c{width:124.522667pt;}
._1b{width:157.941333pt;}
._1e{width:170.144000pt;}
._1f{width:171.669333pt;}
._12{width:172.640000pt;}
._15{width:174.096000pt;}
._19{width:175.274667pt;}
._16{width:176.661333pt;}
._1d{width:178.256000pt;}
._10{width:179.157333pt;}
._18{width:180.128000pt;}
._17{width:181.306667pt;}
._0{width:1488.011200pt;}
.fs6{font-size:40.421333pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:66.666667pt;}
.fs5{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fs4{font-size:80.786197pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:29.929600pt;}
.y2{bottom:30.898133pt;}
.y11{bottom:74.004667pt;}
.y142{bottom:84.501200pt;}
.y10{bottom:86.004667pt;}
.y175{bottom:90.595333pt;}
.ybe{bottom:91.507867pt;}
.y97{bottom:93.117467pt;}
.y6e{bottom:93.360133pt;}
.y16d{bottom:94.062400pt;}
.y18e{bottom:94.079733pt;}
.yd8{bottom:94.118533pt;}
.yf{bottom:103.776667pt;}
.y174{bottom:106.595333pt;}
.y12a{bottom:111.930133pt;}
.ybd{bottom:112.845200pt;}
.y96{bottom:114.454800pt;}
.y6d{bottom:114.697467pt;}
.y102{bottom:115.329733pt;}
.y16c{bottom:115.399733pt;}
.y18d{bottom:115.417067pt;}
.yd7{bottom:115.455867pt;}
.y171{bottom:125.185467pt;}
.y144{bottom:129.425333pt;}
.y129{bottom:133.267467pt;}
.ybc{bottom:134.182533pt;}
.y95{bottom:135.792133pt;}
.y6c{bottom:136.034800pt;}
.y101{bottom:136.667067pt;}
.y16b{bottom:136.737067pt;}
.y18c{bottom:136.754400pt;}
.yd6{bottom:136.793200pt;}
.y170{bottom:141.185467pt;}
.y143{bottom:145.425333pt;}
.y128{bottom:154.604800pt;}
.ybb{bottom:155.519867pt;}
.y94{bottom:157.129467pt;}
.y6b{bottom:157.372133pt;}
.y100{bottom:158.004400pt;}
.y16a{bottom:158.074400pt;}
.y18b{bottom:158.091733pt;}
.yd5{bottom:158.130533pt;}
.y48{bottom:160.458667pt;}
.y127{bottom:175.942133pt;}
.yba{bottom:176.857200pt;}
.y93{bottom:178.466800pt;}
.y6a{bottom:178.709467pt;}
.yff{bottom:179.341733pt;}
.y169{bottom:179.411733pt;}
.y18a{bottom:179.429067pt;}
.yd4{bottom:179.467867pt;}
.y24{bottom:182.455600pt;}
.y177{bottom:185.586667pt;}
.y126{bottom:197.279467pt;}
.yb9{bottom:198.194533pt;}
.y92{bottom:199.804133pt;}
.y69{bottom:200.046800pt;}
.yfe{bottom:200.679067pt;}
.y168{bottom:200.749067pt;}
.y189{bottom:200.766400pt;}
.yd3{bottom:200.805200pt;}
.y47{bottom:202.058667pt;}
.y125{bottom:218.616800pt;}
.yb8{bottom:219.531867pt;}
.y91{bottom:221.141467pt;}
.y68{bottom:221.384133pt;}
.yfd{bottom:222.016400pt;}
.y167{bottom:222.086400pt;}
.y188{bottom:222.103733pt;}
.yd2{bottom:222.142533pt;}
.y46{bottom:222.858667pt;}
.y23{bottom:224.055600pt;}
.y124{bottom:239.954133pt;}
.yb7{bottom:240.869200pt;}
.y90{bottom:242.478800pt;}
.y67{bottom:242.721467pt;}
.yfc{bottom:243.353733pt;}
.y166{bottom:243.423733pt;}
.y187{bottom:243.441067pt;}
.yd1{bottom:243.479867pt;}
.y45{bottom:243.658667pt;}
.y22{bottom:244.855600pt;}
.y123{bottom:261.291467pt;}
.yb6{bottom:262.206533pt;}
.y8f{bottom:263.816133pt;}
.y66{bottom:264.058800pt;}
.y44{bottom:264.458667pt;}
.yfb{bottom:264.691067pt;}
.y165{bottom:264.761067pt;}
.y186{bottom:264.778400pt;}
.yd0{bottom:264.817200pt;}
.y21{bottom:265.655600pt;}
.y122{bottom:282.628800pt;}
.yb5{bottom:283.543867pt;}
.y8e{bottom:285.153467pt;}
.y43{bottom:285.258667pt;}
.y65{bottom:285.396133pt;}
.yfa{bottom:286.028400pt;}
.y164{bottom:286.098400pt;}
.y185{bottom:286.115733pt;}
.ycf{bottom:286.154533pt;}
.y20{bottom:286.455600pt;}
.y1{bottom:289.331200pt;}
.y25{bottom:290.433600pt;}
.y121{bottom:303.966133pt;}
.yb4{bottom:304.881200pt;}
.y42{bottom:306.058667pt;}
.y8d{bottom:306.490800pt;}
.y64{bottom:306.733467pt;}
.y1f{bottom:307.255600pt;}
.yf9{bottom:307.365733pt;}
.y163{bottom:307.435733pt;}
.y184{bottom:307.453067pt;}
.yce{bottom:307.491867pt;}
.y1a7{bottom:307.781067pt;}
.y120{bottom:325.303467pt;}
.yb3{bottom:326.218533pt;}
.y41{bottom:326.858667pt;}
.y1a6{bottom:327.781067pt;}
.y8c{bottom:327.828133pt;}
.y1e{bottom:328.055600pt;}
.y63{bottom:328.070800pt;}
.yf8{bottom:328.703067pt;}
.y162{bottom:328.773067pt;}
.y183{bottom:328.790400pt;}
.ycd{bottom:328.829200pt;}
.y11f{bottom:346.640800pt;}
.yb2{bottom:347.555867pt;}
.y40{bottom:347.658667pt;}
.y1a5{bottom:347.781067pt;}
.y1d{bottom:348.855600pt;}
.y8b{bottom:349.165467pt;}
.y62{bottom:349.408133pt;}
.yf7{bottom:350.040400pt;}
.y161{bottom:350.110400pt;}
.y182{bottom:350.127733pt;}
.ycc{bottom:350.166533pt;}
.y11e{bottom:367.978133pt;}
.y3f{bottom:368.458667pt;}
.y1c{bottom:369.655600pt;}
.y8a{bottom:370.502800pt;}
.y61{bottom:370.745467pt;}
.yf6{bottom:371.377733pt;}
.y160{bottom:371.447733pt;}
.y181{bottom:371.465067pt;}
.ycb{bottom:371.503867pt;}
.y173{bottom:371.795333pt;}
.y1a4{bottom:387.781067pt;}
.y172{bottom:387.795333pt;}
.y3e{bottom:389.258667pt;}
.y11d{bottom:389.315467pt;}
.yb1{bottom:390.242533pt;}
.y1b{bottom:390.455600pt;}
.y89{bottom:391.840133pt;}
.y60{bottom:392.082800pt;}
.yf5{bottom:392.715067pt;}
.y15f{bottom:392.785067pt;}
.y180{bottom:392.802400pt;}
.yca{bottom:392.841200pt;}
.y1a3{bottom:407.781067pt;}
.y3d{bottom:410.058667pt;}
.y11c{bottom:410.652800pt;}
.y1a{bottom:411.255600pt;}
.y88{bottom:413.177467pt;}
.y5f{bottom:413.420133pt;}
.yf4{bottom:414.052400pt;}
.y15e{bottom:414.122400pt;}
.y17f{bottom:414.139733pt;}
.yc9{bottom:414.178533pt;}
.yb0{bottom:415.571867pt;}
.y1a2{bottom:427.781067pt;}
.y16f{bottom:429.905467pt;}
.y3c{bottom:430.858667pt;}
.y11b{bottom:431.990133pt;}
.y19{bottom:432.055600pt;}
.y87{bottom:434.514800pt;}
.y5e{bottom:434.757467pt;}
.yf3{bottom:435.389733pt;}
.y15d{bottom:435.459733pt;}
.y17e{bottom:435.477067pt;}
.yaf{bottom:440.901200pt;}
.y16e{bottom:445.905467pt;}
.y3b{bottom:451.658667pt;}
.y18{bottom:452.855600pt;}
.y11a{bottom:453.327467pt;}
.y86{bottom:455.852133pt;}
.y5d{bottom:456.094800pt;}
.yf2{bottom:456.727067pt;}
.y15c{bottom:456.797067pt;}
.y17d{bottom:456.814400pt;}
.yda{bottom:461.559067pt;}
.yae{bottom:466.230533pt;}
.y1a1{bottom:467.781067pt;}
.y106{bottom:468.424667pt;}
.y3a{bottom:472.458667pt;}
.y17{bottom:473.655600pt;}
.y119{bottom:474.664800pt;}
.y85{bottom:477.189467pt;}
.y5c{bottom:477.432133pt;}
.yd9{bottom:477.559067pt;}
.yf1{bottom:478.064400pt;}
.y15b{bottom:478.134400pt;}
.y17c{bottom:478.151733pt;}
.y105{bottom:484.424667pt;}
.y141{bottom:486.031733pt;}
.y1a0{bottom:487.781067pt;}
.yad{bottom:491.559867pt;}
.y39{bottom:493.258667pt;}
.y16{bottom:494.455600pt;}
.y118{bottom:496.002133pt;}
.y84{bottom:498.526800pt;}
.y5b{bottom:498.769467pt;}
.yf0{bottom:499.401733pt;}
.y15a{bottom:499.471733pt;}
.y17b{bottom:499.489067pt;}
.y140{bottom:507.369067pt;}
.y15{bottom:515.255600pt;}
.yac{bottom:516.889200pt;}
.y117{bottom:517.339467pt;}
.y83{bottom:519.864133pt;}
.y5a{bottom:520.106800pt;}
.yef{bottom:520.739067pt;}
.y159{bottom:520.809067pt;}
.y17a{bottom:520.826400pt;}
.y176{bottom:521.840000pt;}
.y19f{bottom:527.781067pt;}
.y13f{bottom:528.706400pt;}
.y14{bottom:536.055600pt;}
.y116{bottom:538.676800pt;}
.y82{bottom:541.201467pt;}
.y59{bottom:541.444133pt;}
.yee{bottom:542.076400pt;}
.y158{bottom:542.146400pt;}
.yab{bottom:542.146533pt;}
.y179{bottom:542.163733pt;}
.y19e{bottom:547.781067pt;}
.y13e{bottom:550.043733pt;}
.y115{bottom:560.014133pt;}
.y81{bottom:562.538800pt;}
.y58{bottom:562.781467pt;}
.yed{bottom:563.413733pt;}
.y157{bottom:563.483733pt;}
.yaa{bottom:563.483867pt;}
.y19d{bottom:567.781067pt;}
.y13d{bottom:571.381067pt;}
.y38{bottom:576.458667pt;}
.y114{bottom:581.351467pt;}
.y80{bottom:583.876133pt;}
.yec{bottom:584.751067pt;}
.y156{bottom:584.821067pt;}
.ya9{bottom:584.821200pt;}
.y178{bottom:584.838400pt;}
.y19c{bottom:587.781067pt;}
.y13c{bottom:592.678400pt;}
.y13{bottom:601.976800pt;}
.y113{bottom:602.688800pt;}
.y7f{bottom:605.213467pt;}
.y57{bottom:605.456133pt;}
.yeb{bottom:606.088400pt;}
.y155{bottom:606.158400pt;}
.ya8{bottom:606.158533pt;}
.y12{bottom:613.976800pt;}
.y13b{bottom:614.015733pt;}
.y37{bottom:618.058667pt;}
.ye{bottom:619.448400pt;}
.y112{bottom:624.026133pt;}
.y7e{bottom:626.550800pt;}
.yea{bottom:627.425733pt;}
.y154{bottom:627.495733pt;}
.ya7{bottom:627.495867pt;}
.y18f{bottom:627.513067pt;}
.y19b{bottom:627.781067pt;}
.y13a{bottom:635.353067pt;}
.yd{bottom:637.048400pt;}
.y36{bottom:638.858667pt;}
.y111{bottom:645.363467pt;}
.y19a{bottom:647.781067pt;}
.y7d{bottom:647.888133pt;}
.ye9{bottom:648.763067pt;}
.y153{bottom:648.833067pt;}
.ya6{bottom:648.833200pt;}
.yc{bottom:654.648400pt;}
.y139{bottom:656.690400pt;}
.y35{bottom:659.658667pt;}
.y110{bottom:666.700800pt;}
.y7c{bottom:669.225467pt;}
.y56{bottom:669.450800pt;}
.ye8{bottom:670.100400pt;}
.y152{bottom:670.170400pt;}
.ya5{bottom:670.170533pt;}
.yb{bottom:672.248400pt;}
.y138{bottom:678.027733pt;}
.y34{bottom:680.458667pt;}
.y199{bottom:687.781067pt;}
.y10f{bottom:688.038133pt;}
.y7b{bottom:690.562800pt;}
.y55{bottom:690.788133pt;}
.ye7{bottom:691.437733pt;}
.y151{bottom:691.507733pt;}
.ya4{bottom:691.507867pt;}
.ya{bottom:696.241733pt;}
.y137{bottom:699.365067pt;}
.y33{bottom:701.258667pt;}
.y10e{bottom:709.375467pt;}
.y7a{bottom:711.900133pt;}
.y54{bottom:712.125467pt;}
.ye6{bottom:712.775067pt;}
.y150{bottom:712.845067pt;}
.ya3{bottom:712.845200pt;}
.y9{bottom:720.248400pt;}
.y136{bottom:720.702400pt;}
.y32{bottom:722.058667pt;}
.y198{bottom:727.781067pt;}
.y10d{bottom:730.712800pt;}
.y79{bottom:733.237467pt;}
.y53{bottom:733.462800pt;}
.ye5{bottom:734.112400pt;}
.y14f{bottom:734.182400pt;}
.ya2{bottom:734.182533pt;}
.yc8{bottom:734.186533pt;}
.y104{bottom:734.878000pt;}
.y135{bottom:742.039733pt;}
.y31{bottom:742.858667pt;}
.y103{bottom:750.878000pt;}
.y10c{bottom:752.050133pt;}
.y78{bottom:754.574800pt;}
.y52{bottom:754.800133pt;}
.ye4{bottom:755.449733pt;}
.y14e{bottom:755.519733pt;}
.ya1{bottom:755.519867pt;}
.yc7{bottom:755.523867pt;}
.y8{bottom:762.576800pt;}
.y134{bottom:763.377067pt;}
.y30{bottom:763.658667pt;}
.y197{bottom:767.781067pt;}
.y10b{bottom:773.387467pt;}
.y77{bottom:775.912133pt;}
.y51{bottom:776.137467pt;}
.ye3{bottom:776.787067pt;}
.y14d{bottom:776.857067pt;}
.ya0{bottom:776.857200pt;}
.yc6{bottom:776.861200pt;}
.y2f{bottom:784.458667pt;}
.y133{bottom:784.714400pt;}
.y7{bottom:786.576800pt;}
.y196{bottom:787.781067pt;}
.y10a{bottom:794.724800pt;}
.y76{bottom:797.249467pt;}
.y50{bottom:797.474800pt;}
.ye2{bottom:798.124400pt;}
.y14c{bottom:798.194400pt;}
.y9f{bottom:798.194533pt;}
.yc5{bottom:798.198533pt;}
.y2e{bottom:805.258667pt;}
.y132{bottom:806.051733pt;}
.y195{bottom:807.781067pt;}
.y109{bottom:816.062133pt;}
.y6{bottom:817.236800pt;}
.y75{bottom:818.586800pt;}
.y4f{bottom:818.812133pt;}
.ye1{bottom:819.461733pt;}
.y14b{bottom:819.531733pt;}
.y9e{bottom:819.531867pt;}
.yc4{bottom:819.535867pt;}
.y2d{bottom:826.058667pt;}
.y108{bottom:837.399467pt;}
.y74{bottom:839.924133pt;}
.y4e{bottom:840.149467pt;}
.ye0{bottom:840.799067pt;}
.y14a{bottom:840.869067pt;}
.y9d{bottom:840.869200pt;}
.yc3{bottom:840.873200pt;}
.y5{bottom:841.236800pt;}
.y2c{bottom:846.858667pt;}
.y194{bottom:847.781067pt;}
.y131{bottom:848.734400pt;}
.y107{bottom:858.736800pt;}
.y73{bottom:861.261467pt;}
.y4d{bottom:861.486800pt;}
.ydf{bottom:862.136400pt;}
.y149{bottom:862.206400pt;}
.y9c{bottom:862.206533pt;}
.yc2{bottom:862.210533pt;}
.y2b{bottom:867.658667pt;}
.y193{bottom:867.781067pt;}
.y130{bottom:874.063733pt;}
.y72{bottom:882.598800pt;}
.y4c{bottom:882.824133pt;}
.yde{bottom:883.473733pt;}
.y148{bottom:883.543733pt;}
.y9b{bottom:883.543867pt;}
.yc1{bottom:883.547867pt;}
.y192{bottom:887.781067pt;}
.y4{bottom:888.263467pt;}
.y2a{bottom:888.458667pt;}
.y12f{bottom:899.393067pt;}
.y71{bottom:903.936133pt;}
.y4b{bottom:904.161467pt;}
.ydd{bottom:904.811067pt;}
.y147{bottom:904.881067pt;}
.y9a{bottom:904.881200pt;}
.yc0{bottom:904.885200pt;}
.y191{bottom:907.781067pt;}
.y29{bottom:909.258667pt;}
.y3{bottom:912.263467pt;}
.y12e{bottom:924.722400pt;}
.y70{bottom:925.273467pt;}
.y4a{bottom:925.498800pt;}
.ydc{bottom:926.148400pt;}
.y146{bottom:926.218400pt;}
.y99{bottom:926.218533pt;}
.ybf{bottom:926.222533pt;}
.y28{bottom:930.058667pt;}
.y12c{bottom:937.779600pt;}
.y6f{bottom:946.610800pt;}
.y49{bottom:946.836133pt;}
.ydb{bottom:947.485733pt;}
.y145{bottom:947.555733pt;}
.y98{bottom:947.555867pt;}
.y190{bottom:947.781067pt;}
.y12d{bottom:950.051733pt;}
.y27{bottom:950.858667pt;}
.y12b{bottom:953.779600pt;}
.ha{height:30.154315pt;}
.h13{height:36.640625pt;}
.h12{height:36.666667pt;}
.hc{height:39.786667pt;}
.h8{height:43.765333pt;}
.hb{height:48.450370pt;}
.h15{height:49.733333pt;}
.h10{height:51.653333pt;}
.h7{height:51.722667pt;}
.he{height:52.000000pt;}
.hf{height:52.507812pt;}
.h9{height:53.295407pt;}
.h14{height:53.402315pt;}
.h3{height:57.281250pt;}
.h4{height:60.000000pt;}
.h16{height:60.562963pt;}
.h5{height:60.589647pt;}
.hd{height:62.054688pt;}
.h11{height:62.985481pt;}
.h2{height:71.601562pt;}
.h6{height:72.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:31.023600pt;}
.x14{left:41.023600pt;}
.x13{left:74.645600pt;}
.x2{left:76.535467pt;}
.x3{left:99.138000pt;}
.x7{left:108.499467pt;}
.x12{left:112.440933pt;}
.x16{left:113.385867pt;}
.x9{left:120.119467pt;}
.x1d{left:134.173200pt;}
.x23{left:186.488667pt;}
.x4{left:190.098000pt;}
.x18{left:212.126000pt;}
.x22{left:231.968400pt;}
.x21{left:239.998133pt;}
.x20{left:240.944800pt;}
.x17{left:257.007867pt;}
.xa{left:261.399467pt;}
.x8{left:275.699467pt;}
.xb{left:289.199333pt;}
.xc{left:292.787333pt;}
.xf{left:315.208267pt;}
.x10{left:340.346933pt;}
.x5{left:355.552400pt;}
.x1c{left:356.692933pt;}
.x1b{left:364.051200pt;}
.x1a{left:365.385867pt;}
.xe{left:379.814933pt;}
.xd{left:381.985600pt;}
.x6{left:412.066133pt;}
.x1e{left:427.079867pt;}
.x19{left:483.420533pt;}
.x11{left:582.047333pt;}
.x15{left:624.072533pt;}
.x1{left:743.622133pt;}
}




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