
    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_98339282500903b0c8ba787a.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a5d8f97bbd4d0ff91aa77234.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1a57c0aa1ae20b8f56fb8dc4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d41b1739cfffb45870d84fa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.592000;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_255343278dc180a009134351.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.592000;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_daf3f24bccc272075a997d7c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m4{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-29.880000px;}
.v4{vertical-align:-24.120600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.v5{vertical-align:27.005460px;}
.v3{vertical-align:33.120000px;}
.ls15{letter-spacing:-0.162324px;}
.ls4f{letter-spacing:-0.158400px;}
.ls48{letter-spacing:-0.151200px;}
.ls41{letter-spacing:-0.144000px;}
.ls5a{letter-spacing:-0.129600px;}
.ls36{letter-spacing:-0.125172px;}
.ls55{letter-spacing:-0.108216px;}
.ls2e{letter-spacing:-0.100800px;}
.ls2c{letter-spacing:-0.093600px;}
.ls3c{letter-spacing:-0.086400px;}
.ls34{letter-spacing:-0.079200px;}
.ls27{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.070200px;}
.ls2f{letter-spacing:-0.064800px;}
.ls2b{letter-spacing:-0.057600px;}
.ls14{letter-spacing:-0.054000px;}
.ls2a{letter-spacing:-0.050400px;}
.ls18{letter-spacing:-0.048096px;}
.ls1f{letter-spacing:-0.043200px;}
.ls50{letter-spacing:-0.037800px;}
.ls19{letter-spacing:-0.036072px;}
.ls28{letter-spacing:-0.036000px;}
.ls57{letter-spacing:-0.032400px;}
.ls1b{letter-spacing:-0.030060px;}
.ls1d{letter-spacing:-0.028800px;}
.ls3b{letter-spacing:-0.027000px;}
.ls1c{letter-spacing:-0.021600px;}
.ls17{letter-spacing:-0.018036px;}
.ls4c{letter-spacing:-0.016200px;}
.ls26{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.012024px;}
.ls37{letter-spacing:-0.010800px;}
.ls29{letter-spacing:-0.007200px;}
.ls1a{letter-spacing:-0.006012px;}
.ls20{letter-spacing:-0.005400px;}
.ls12{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.005400px;}
.ls7{letter-spacing:0.006012px;}
.ls1e{letter-spacing:0.007200px;}
.lsf{letter-spacing:0.010800px;}
.ls3{letter-spacing:0.012024px;}
.ls23{letter-spacing:0.014400px;}
.ls32{letter-spacing:0.016200px;}
.ls8{letter-spacing:0.018036px;}
.ls24{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.024048px;}
.lsd{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.028800px;}
.ls4{letter-spacing:0.030060px;}
.ls11{letter-spacing:0.032400px;}
.ls0{letter-spacing:0.033552px;}
.ls35{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.036072px;}
.ls10{letter-spacing:0.037800px;}
.ls51{letter-spacing:0.042084px;}
.lse{letter-spacing:0.043200px;}
.ls9{letter-spacing:0.048096px;}
.ls1{letter-spacing:0.048600px;}
.ls21{letter-spacing:0.050400px;}
.ls2{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.057600px;}
.ls33{letter-spacing:0.059400px;}
.lsa{letter-spacing:0.060120px;}
.ls3f{letter-spacing:0.064800px;}
.ls39{letter-spacing:0.070200px;}
.ls4d{letter-spacing:0.072000px;}
.ls49{letter-spacing:0.075600px;}
.ls25{letter-spacing:0.081000px;}
.ls44{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.087840px;}
.ls4e{letter-spacing:0.090972px;}
.ls56{letter-spacing:0.091800px;}
.lsc{letter-spacing:0.092880px;}
.ls52{letter-spacing:0.097200px;}
.ls46{letter-spacing:0.100548px;}
.ls4a{letter-spacing:0.102600px;}
.ls30{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.110880px;}
.ls40{letter-spacing:0.113400px;}
.ls53{letter-spacing:0.118800px;}
.ls3a{letter-spacing:0.124200px;}
.ls42{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.136800px;}
.ls54{letter-spacing:0.139968px;}
.ls45{letter-spacing:0.162000px;}
.ls47{letter-spacing:0.180000px;}
.ls59{letter-spacing:0.201600px;}
.ls4b{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.295200px;}
.ls3d{letter-spacing:0.340200px;}
.ls58{letter-spacing:842.666400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-65.880000px;}
.ws46{word-spacing:-65.754828px;}
.ws8b{word-spacing:-21.715200px;}
.ws61{word-spacing:-21.708000px;}
.ws6e{word-spacing:-21.700800px;}
.ws45{word-spacing:-21.693600px;}
.ws86{word-spacing:-21.686400px;}
.ws85{word-spacing:-21.679200px;}
.ws44{word-spacing:-21.672000px;}
.ws28{word-spacing:-21.664800px;}
.ws64{word-spacing:-21.657600px;}
.ws87{word-spacing:-21.650400px;}
.ws66{word-spacing:-21.643200px;}
.ws8c{word-spacing:-21.636000px;}
.ws26{word-spacing:-21.628800px;}
.ws27{word-spacing:-21.621600px;}
.ws6f{word-spacing:-21.614400px;}
.ws65{word-spacing:-21.607200px;}
.ws53{word-spacing:-21.600000px;}
.ws7c{word-spacing:-21.592800px;}
.ws8a{word-spacing:-21.578400px;}
.ws29{word-spacing:-21.571200px;}
.ws67{word-spacing:-18.126180px;}
.ws5b{word-spacing:-16.389000px;}
.ws78{word-spacing:-16.372800px;}
.ws77{word-spacing:-16.340400px;}
.ws68{word-spacing:-16.329600px;}
.ws5a{word-spacing:-16.324200px;}
.ws54{word-spacing:-16.313400px;}
.ws76{word-spacing:-16.281000px;}
.ws2a{word-spacing:-16.275600px;}
.ws7e{word-spacing:-16.270200px;}
.ws2{word-spacing:-16.264800px;}
.ws43{word-spacing:-16.259400px;}
.ws6d{word-spacing:-14.502852px;}
.ws75{word-spacing:-11.842848px;}
.ws0{word-spacing:-10.836000px;}
.ws70{word-spacing:-10.677600px;}
.ws6a{word-spacing:-0.507600px;}
.ws5c{word-spacing:-0.426600px;}
.ws4e{word-spacing:-0.230400px;}
.ws5f{word-spacing:-0.221400px;}
.ws80{word-spacing:-0.178200px;}
.ws13{word-spacing:-0.174348px;}
.ws7f{word-spacing:-0.167400px;}
.ws73{word-spacing:-0.165600px;}
.ws12{word-spacing:-0.162324px;}
.ws6c{word-spacing:-0.162000px;}
.ws81{word-spacing:-0.156600px;}
.ws42{word-spacing:-0.151200px;}
.wsd{word-spacing:-0.150300px;}
.ws60{word-spacing:-0.145800px;}
.ws9{word-spacing:-0.144288px;}
.ws2f{word-spacing:-0.144000px;}
.ws63{word-spacing:-0.140400px;}
.wsc{word-spacing:-0.138276px;}
.wsf{word-spacing:-0.132264px;}
.ws5e{word-spacing:-0.129600px;}
.wsb{word-spacing:-0.126252px;}
.ws8{word-spacing:-0.124200px;}
.ws83{word-spacing:-0.122400px;}
.wse{word-spacing:-0.120240px;}
.ws7{word-spacing:-0.118800px;}
.ws4a{word-spacing:-0.115200px;}
.ws17{word-spacing:-0.114228px;}
.ws20{word-spacing:-0.113400px;}
.ws16{word-spacing:-0.108216px;}
.ws22{word-spacing:-0.108000px;}
.ws25{word-spacing:-0.102600px;}
.ws10{word-spacing:-0.102204px;}
.ws1c{word-spacing:-0.100800px;}
.ws1f{word-spacing:-0.097200px;}
.ws11{word-spacing:-0.096192px;}
.ws1e{word-spacing:-0.093600px;}
.ws41{word-spacing:-0.091800px;}
.ws33{word-spacing:-0.086400px;}
.ws18{word-spacing:-0.084168px;}
.ws21{word-spacing:-0.081000px;}
.ws2b{word-spacing:-0.079200px;}
.ws15{word-spacing:-0.078156px;}
.ws4b{word-spacing:-0.075600px;}
.ws7a{word-spacing:-0.072144px;}
.ws19{word-spacing:-0.072000px;}
.ws24{word-spacing:-0.070200px;}
.ws14{word-spacing:-0.066132px;}
.ws23{word-spacing:-0.064800px;}
.ws47{word-spacing:-0.059400px;}
.ws48{word-spacing:-0.057600px;}
.ws50{word-spacing:-0.054000px;}
.ws1d{word-spacing:-0.050400px;}
.ws4c{word-spacing:-0.048600px;}
.ws4d{word-spacing:-0.043200px;}
.ws59{word-spacing:-0.037800px;}
.ws32{word-spacing:-0.036000px;}
.ws74{word-spacing:-0.032400px;}
.ws3c{word-spacing:-0.028800px;}
.ws40{word-spacing:-0.027000px;}
.ws30{word-spacing:-0.021600px;}
.ws6{word-spacing:-0.016200px;}
.ws49{word-spacing:-0.014400px;}
.ws2e{word-spacing:-0.007200px;}
.ws3{word-spacing:0.000000px;}
.ws31{word-spacing:0.007200px;}
.ws37{word-spacing:0.014400px;}
.ws3f{word-spacing:0.021600px;}
.ws6b{word-spacing:0.027000px;}
.ws3a{word-spacing:0.028800px;}
.ws1b{word-spacing:0.036000px;}
.ws3e{word-spacing:0.043200px;}
.wsa{word-spacing:0.048096px;}
.ws5{word-spacing:0.050328px;}
.ws3d{word-spacing:0.050400px;}
.ws4f{word-spacing:0.057600px;}
.ws35{word-spacing:0.064800px;}
.ws34{word-spacing:0.072000px;}
.ws2d{word-spacing:0.079200px;}
.ws1a{word-spacing:0.086400px;}
.ws36{word-spacing:0.093600px;}
.ws55{word-spacing:0.100800px;}
.ws39{word-spacing:0.108000px;}
.ws52{word-spacing:0.115200px;}
.ws51{word-spacing:0.122400px;}
.ws3b{word-spacing:0.129600px;}
.ws58{word-spacing:0.136800px;}
.ws84{word-spacing:0.144000px;}
.ws2c{word-spacing:0.158400px;}
.ws57{word-spacing:0.172800px;}
.ws88{word-spacing:0.194400px;}
.ws71{word-spacing:0.223200px;}
.ws8d{word-spacing:0.237600px;}
.ws7d{word-spacing:0.244800px;}
.ws62{word-spacing:0.259200px;}
.ws72{word-spacing:0.273600px;}
.ws5d{word-spacing:0.280800px;}
.ws89{word-spacing:0.288000px;}
.ws4{word-spacing:0.293580px;}
.ws56{word-spacing:0.302400px;}
.ws79{word-spacing:0.309600px;}
.ws7b{word-spacing:0.313200px;}
.ws82{word-spacing:0.351000px;}
.ws38{word-spacing:0.360000px;}
.ws69{word-spacing:0.424800px;}
._3{margin-left:-9.381312px;}
._5{margin-left:-6.844932px;}
._2{margin-left:-5.349456px;}
._1{margin-left:-1.139400px;}
._0{width:1.177200px;}
._4{width:169.264800px;}
.fc3{color:rgb(79,130,189);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720450px;}
.y3b{bottom:110.010000px;}
.y76{bottom:110.010450px;}
.y97{bottom:113.970450px;}
.y75{bottom:116.040600px;}
.y178{bottom:116.580450px;}
.y3a{bottom:125.760450px;}
.y74{bottom:126.570450px;}
.y7c{bottom:130.890450px;}
.y60{bottom:131.790600px;}
.y96{bottom:134.850450px;}
.y177{bottom:137.460450px;}
.y39{bottom:141.420450px;}
.y5f{bottom:142.230450px;}
.yb5{bottom:147.450450px;}
.yf4{bottom:151.410450px;}
.y95{bottom:155.820450px;}
.y38{bottom:157.080450px;}
.yb4{bottom:157.890450px;}
.y176{bottom:158.430450px;}
.yf9{bottom:163.110450px;}
.yf3{bottom:172.290450px;}
.y37{bottom:172.740450px;}
.yf8{bottom:173.640450px;}
.y94{bottom:176.700600px;}
.yd3{bottom:178.770450px;}
.y175{bottom:179.310450px;}
.y36{bottom:188.400450px;}
.yd2{bottom:189.300450px;}
.yf2{bottom:193.170450px;}
.y109{bottom:194.430450px;}
.y93{bottom:197.580450px;}
.y174{bottom:200.190450px;}
.y17d{bottom:200.190600px;}
.y35{bottom:204.060450px;}
.y108{bottom:204.960600px;}
.y9f{bottom:207.930450px;}
.yf1{bottom:214.050450px;}
.y92{bottom:218.460450px;}
.y173{bottom:221.070450px;}
.y17c{bottom:221.070600px;}
.yf7{bottom:221.610450px;}
.y34{bottom:227.730450px;}
.y9e{bottom:228.810450px;}
.yf0{bottom:234.930450px;}
.y33{bottom:238.980450px;}
.y91{bottom:239.340450px;}
.y172{bottom:241.950450px;}
.y17b{bottom:241.950600px;}
.y107{bottom:243.840450px;}
.y9d{bottom:249.780450px;}
.yee{bottom:255.900450px;}
.y32{bottom:259.950450px;}
.y90{bottom:260.310450px;}
.y171{bottom:262.920450px;}
.yd1{bottom:264.000450px;}
.yef{bottom:264.180450px;}
.y106{bottom:264.720450px;}
.y9c{bottom:270.660450px;}
.yed{bottom:276.780450px;}
.y31{bottom:280.830450px;}
.y8f{bottom:281.190450px;}
.y170{bottom:283.800450px;}
.yd0{bottom:284.880450px;}
.y105{bottom:285.600450px;}
.y72{bottom:291.540450px;}
.yec{bottom:297.660450px;}
.y73{bottom:299.820450px;}
.y30{bottom:301.710450px;}
.y8e{bottom:302.070450px;}
.y10f{bottom:304.680450px;}
.ycf{bottom:305.850450px;}
.y103{bottom:306.570450px;}
.yb3{bottom:306.840450px;}
.y71{bottom:312.420450px;}
.y104{bottom:314.850450px;}
.yeb{bottom:318.540450px;}
.y2f{bottom:322.590450px;}
.y8d{bottom:322.950450px;}
.y10e{bottom:325.560450px;}
.yce{bottom:326.730450px;}
.y102{bottom:327.450450px;}
.yb1{bottom:327.810450px;}
.y70{bottom:333.390450px;}
.y155{bottom:334.470450px;}
.yb2{bottom:336.090450px;}
.yea{bottom:339.510450px;}
.y168{bottom:342.120450px;}
.y8c{bottom:342.570450px;}
.y2e{bottom:343.470450px;}
.y10d{bottom:346.530450px;}
.ycc{bottom:347.610450px;}
.y101{bottom:348.330450px;}
.yb0{bottom:348.690450px;}
.y6f{bottom:354.270450px;}
.y8b{bottom:354.720450px;}
.y154{bottom:355.350450px;}
.ycd{bottom:355.890450px;}
.ye9{bottom:360.390450px;}
.y167{bottom:363.000450px;}
.y2d{bottom:363.620703px;}
.y10c{bottom:367.410450px;}
.yca{bottom:368.490450px;}
.y100{bottom:369.210450px;}
.yaf{bottom:369.570450px;}
.y6e{bottom:375.150450px;}
.y153{bottom:376.230450px;}
.ycb{bottom:376.770450px;}
.y2c{bottom:380.990874px;}
.ye8{bottom:381.270450px;}
.y9b{bottom:383.430450px;}
.y166{bottom:383.880450px;}
.y10b{bottom:388.290450px;}
.y17a{bottom:388.290600px;}
.yc9{bottom:389.370450px;}
.yff{bottom:390.090450px;}
.yae{bottom:390.450450px;}
.y120{bottom:394.950600px;}
.y6d{bottom:396.030450px;}
.y152{bottom:397.200450px;}
.y2b{bottom:398.451225px;}
.ye7{bottom:402.150450px;}
.y165{bottom:404.760450px;}
.y10a{bottom:409.170450px;}
.y179{bottom:409.170600px;}
.yc8{bottom:410.340450px;}
.yfe{bottom:411.060450px;}
.yad{bottom:411.420450px;}
.y11f{bottom:415.109235px;}
.y2a{bottom:415.911576px;}
.y6c{bottom:416.910450px;}
.y151{bottom:418.080450px;}
.ye6{bottom:423.030450px;}
.y164{bottom:425.730450px;}
.y5e{bottom:430.050450px;}
.y16f{bottom:430.050600px;}
.yc7{bottom:431.220450px;}
.yfd{bottom:431.940450px;}
.yac{bottom:432.300450px;}
.y11e{bottom:432.479406px;}
.y29{bottom:433.281747px;}
.y6b{bottom:437.880450px;}
.y150{bottom:438.960450px;}
.ye5{bottom:444.000450px;}
.y163{bottom:446.610450px;}
.y11d{bottom:449.939757px;}
.y28{bottom:450.742098px;}
.y12a{bottom:450.840450px;}
.y5d{bottom:451.020450px;}
.y16e{bottom:451.020600px;}
.yfc{bottom:452.010450px;}
.yc6{bottom:452.100450px;}
.yab{bottom:453.180450px;}
.y6a{bottom:458.760450px;}
.y14f{bottom:459.840450px;}
.ye4{bottom:464.880450px;}
.yfb{bottom:465.420450px;}
.y11c{bottom:467.309928px;}
.y162{bottom:467.490450px;}
.y27{bottom:468.112269px;}
.y129{bottom:471.720450px;}
.y5c{bottom:471.900450px;}
.y16d{bottom:471.900600px;}
.yaa{bottom:474.060450px;}
.y69{bottom:479.640450px;}
.y14e{bottom:480.720450px;}
.y133{bottom:483.780450px;}
.y11b{bottom:484.770279px;}
.y26{bottom:485.572620px;}
.ye3{bottom:485.760450px;}
.y161{bottom:488.370450px;}
.yc5{bottom:490.620600px;}
.y128{bottom:492.690450px;}
.y5b{bottom:492.780450px;}
.y16c{bottom:492.780600px;}
.ya9{bottom:494.940450px;}
.y68{bottom:500.520450px;}
.y14d{bottom:501.690450px;}
.y11a{bottom:502.140450px;}
.y25{bottom:502.942791px;}
.y131{bottom:504.660450px;}
.ye2{bottom:506.640450px;}
.y160{bottom:509.250450px;}
.yc4{bottom:511.140450px;}
.y132{bottom:512.940600px;}
.y127{bottom:513.570450px;}
.y5a{bottom:513.660450px;}
.ya8{bottom:515.910450px;}
.y24{bottom:520.403142px;}
.y119{bottom:520.410450px;}
.y67{bottom:521.490450px;}
.y14c{bottom:522.570450px;}
.y130{bottom:525.630450px;}
.ye1{bottom:527.610450px;}
.y15f{bottom:530.220450px;}
.yc3{bottom:532.110450px;}
.y126{bottom:534.450450px;}
.y59{bottom:534.630450px;}
.ya7{bottom:536.790450px;}
.y23{bottom:537.773313px;}
.y9a{bottom:541.110450px;}
.y118{bottom:541.290450px;}
.y66{bottom:542.370450px;}
.y14b{bottom:543.450450px;}
.y12f{bottom:546.510450px;}
.ye0{bottom:548.490450px;}
.y15e{bottom:551.100450px;}
.yc2{bottom:552.990450px;}
.y22{bottom:555.233664px;}
.y125{bottom:555.330450px;}
.y58{bottom:555.510450px;}
.y99{bottom:556.770450px;}
.ya6{bottom:557.670450px;}
.y117{bottom:562.170450px;}
.y65{bottom:563.250450px;}
.y14a{bottom:564.330450px;}
.y12e{bottom:567.390450px;}
.y98{bottom:568.830450px;}
.ydf{bottom:569.370450px;}
.y15d{bottom:571.980450px;}
.y21{bottom:572.603835px;}
.yc1{bottom:573.870450px;}
.y124{bottom:576.300450px;}
.y57{bottom:576.390450px;}
.ya5{bottom:578.550450px;}
.y116{bottom:583.050450px;}
.y64{bottom:584.130450px;}
.y149{bottom:585.300450px;}
.y12d{bottom:588.270450px;}
.y20{bottom:590.064186px;}
.yde{bottom:590.250450px;}
.y15c{bottom:592.860450px;}
.yc0{bottom:594.750450px;}
.y56{bottom:597.270450px;}
.ya4{bottom:599.520450px;}
.y114{bottom:604.020450px;}
.y63{bottom:605.010450px;}
.y1f{bottom:607.434357px;}
.y12c{bottom:609.240450px;}
.ydd{bottom:611.220450px;}
.y115{bottom:612.300450px;}
.y142{bottom:613.740450px;}
.y15b{bottom:613.830450px;}
.y123{bottom:614.820450px;}
.ybf{bottom:615.720450px;}
.y55{bottom:618.240450px;}
.ya3{bottom:620.400450px;}
.y148{bottom:623.820450px;}
.y62{bottom:624.720450px;}
.y1e{bottom:624.894708px;}
.y113{bottom:624.900450px;}
.y12b{bottom:630.120450px;}
.ydc{bottom:632.100450px;}
.y122{bottom:634.080450px;}
.y140{bottom:634.620450px;}
.ybe{bottom:636.600450px;}
.y61{bottom:636.780450px;}
.y54{bottom:639.120450px;}
.ya2{bottom:641.280450px;}
.y1d{bottom:642.264879px;}
.y141{bottom:642.900450px;}
.y147{bottom:643.080450px;}
.y112{bottom:645.780450px;}
.y121{bottom:649.740450px;}
.y15a{bottom:652.350450px;}
.ydb{bottom:652.980450px;}
.y13f{bottom:655.500450px;}
.ybd{bottom:657.480450px;}
.y146{bottom:658.740450px;}
.y1c{bottom:659.725230px;}
.y53{bottom:660.000450px;}
.ya1{bottom:660.900450px;}
.y7b{bottom:660.990450px;}
.y111{bottom:665.400450px;}
.y158{bottom:671.610450px;}
.ya0{bottom:672.960450px;}
.yda{bottom:673.860450px;}
.y144{bottom:674.400450px;}
.y13d{bottom:676.470450px;}
.y1b{bottom:677.095401px;}
.y110{bottom:677.460450px;}
.y159{bottom:677.640450px;}
.ybc{bottom:678.360450px;}
.y145{bottom:680.430450px;}
.y52{bottom:680.880450px;}
.y7a{bottom:681.870450px;}
.y13e{bottom:684.750450px;}
.y143{bottom:686.460450px;}
.y157{bottom:687.270450px;}
.y1a{bottom:694.555752px;}
.yd9{bottom:694.740450px;}
.y13c{bottom:697.350450px;}
.ybb{bottom:699.240450px;}
.y156{bottom:699.330450px;}
.y79{bottom:701.490450px;}
.y51{bottom:701.760450px;}
.y19{bottom:711.925923px;}
.yd8{bottom:715.710450px;}
.y78{bottom:717.150450px;}
.y13b{bottom:718.230450px;}
.yba{bottom:720.210450px;}
.y50{bottom:722.730450px;}
.y77{bottom:729.210450px;}
.y18{bottom:729.386274px;}
.yd7{bottom:735.330450px;}
.y13a{bottom:739.110450px;}
.yb9{bottom:739.830450px;}
.y4f{bottom:743.610450px;}
.y17{bottom:746.756445px;}
.yd6{bottom:750.990450px;}
.yb8{bottom:755.490450px;}
.y139{bottom:759.990450px;}
.y16{bottom:764.216796px;}
.y4e{bottom:764.490450px;}
.yd5{bottom:766.650450px;}
.yb7{bottom:771.150450px;}
.yd4{bottom:778.710450px;}
.y138{bottom:780.960450px;}
.y15{bottom:781.586967px;}
.yb6{bottom:783.210450px;}
.y4d{bottom:785.370450px;}
.y14{bottom:799.047318px;}
.y137{bottom:800.580450px;}
.y4c{bottom:806.340450px;}
.y136{bottom:816.240450px;}
.y13{bottom:816.507669px;}
.y4b{bottom:827.220450px;}
.y135{bottom:831.900450px;}
.y12{bottom:833.877840px;}
.y134{bottom:843.960450px;}
.y4a{bottom:848.100450px;}
.y16b{bottom:848.100600px;}
.y11{bottom:851.338191px;}
.y10{bottom:868.708362px;}
.y49{bottom:868.980450px;}
.y16a{bottom:868.980600px;}
.y8a{bottom:879.420450px;}
.yf{bottom:886.168713px;}
.y48{bottom:889.860450px;}
.y169{bottom:889.860600px;}
.y89{bottom:900.390450px;}
.ye{bottom:903.538884px;}
.y47{bottom:910.830450px;}
.yd{bottom:920.999235px;}
.y88{bottom:921.270450px;}
.y46{bottom:931.710450px;}
.yc{bottom:938.369406px;}
.yfa{bottom:939.990450px;}
.y87{bottom:942.150450px;}
.y45{bottom:952.590450px;}
.yb{bottom:955.829757px;}
.y86{bottom:963.030450px;}
.ya{bottom:973.199928px;}
.y44{bottom:973.470450px;}
.y85{bottom:983.910450px;}
.y9{bottom:990.660279px;}
.y43{bottom:994.440450px;}
.y84{bottom:1004.880450px;}
.y8{bottom:1008.030450px;}
.y42{bottom:1015.320450px;}
.y83{bottom:1025.760450px;}
.y7{bottom:1026.210450px;}
.y41{bottom:1036.200450px;}
.y6{bottom:1045.920450px;}
.y82{bottom:1046.640450px;}
.y40{bottom:1057.080450px;}
.y5{bottom:1061.580450px;}
.yf6{bottom:1065.360450px;}
.y81{bottom:1067.520450px;}
.y4{bottom:1077.240450px;}
.y3f{bottom:1077.960450px;}
.y80{bottom:1088.490450px;}
.y3{bottom:1095.060495px;}
.y3e{bottom:1098.930450px;}
.yf5{bottom:1107.210450px;}
.y7f{bottom:1109.370450px;}
.y3d{bottom:1119.810450px;}
.y7e{bottom:1128.990450px;}
.y2{bottom:1138.080450px;}
.y3c{bottom:1140.690450px;}
.y7d{bottom:1144.650450px;}
.h8{height:27.738000px;}
.hb{height:38.412000px;}
.h1{height:43.909277px;}
.hd{height:51.087960px;}
.hf{height:51.901920px;}
.h4{height:57.618000px;}
.hc{height:58.536000px;}
.h3{height:62.532000px;}
.h6{height:64.148040px;}
.h7{height:65.170080px;}
.h11{height:68.490420px;}
.h5{height:76.824000px;}
.h9{height:78.048000px;}
.h10{height:83.847960px;}
.he{height:84.207960px;}
.ha{height:85.021920px;}
.h2{height:89.499960px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x2{left:127.620000px;}
.xb{left:132.300000px;}
.x1c{left:136.980000px;}
.x11{left:144.629778px;}
.xe{left:163.709657px;}
.x22{left:170.190000px;}
.x23{left:196.470000px;}
.x24{left:209.070000px;}
.x1f{left:233.280000px;}
.x20{left:245.880000px;}
.xc{left:321.570000px;}
.xd{left:327.870000px;}
.x18{left:347.580000px;}
.x14{left:351.090000px;}
.x15{left:357.390000px;}
.x19{left:360.180000px;}
.x1a{left:389.250000px;}
.x1b{left:401.850000px;}
.x27{left:426.600000px;}
.x28{left:439.200000px;}
.x1{left:446.490000px;}
.xf{left:459.450000px;}
.x10{left:465.750000px;}
.x5{left:469.439550px;}
.x16{left:521.460000px;}
.x17{left:527.760000px;}
.x2a{left:546.570000px;}
.x2b{left:555.930000px;}
.x3{left:561.240000px;}
.x29{left:571.590000px;}
.x4{left:579.329550px;}
.x21{left:614.610000px;}
.x12{left:620.010000px;}
.x25{left:623.880000px;}
.x13{left:626.310000px;}
.x26{left:636.480000px;}
.x7{left:688.050000px;}
.x8{left:694.350000px;}
.x9{left:700.920000px;}
.xa{left:704.610000px;}
.x1d{left:717.660000px;}
.x1e{left:730.260000px;}
.x6{left:765.360000px;}
@media print{
.v2{vertical-align:-26.560000pt;}
.v4{vertical-align:-21.440533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.v5{vertical-align:24.004853pt;}
.v3{vertical-align:29.440000pt;}
.ls15{letter-spacing:-0.144288pt;}
.ls4f{letter-spacing:-0.140800pt;}
.ls48{letter-spacing:-0.134400pt;}
.ls41{letter-spacing:-0.128000pt;}
.ls5a{letter-spacing:-0.115200pt;}
.ls36{letter-spacing:-0.111264pt;}
.ls55{letter-spacing:-0.096192pt;}
.ls2e{letter-spacing:-0.089600pt;}
.ls2c{letter-spacing:-0.083200pt;}
.ls3c{letter-spacing:-0.076800pt;}
.ls34{letter-spacing:-0.070400pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.062400pt;}
.ls2f{letter-spacing:-0.057600pt;}
.ls2b{letter-spacing:-0.051200pt;}
.ls14{letter-spacing:-0.048000pt;}
.ls2a{letter-spacing:-0.044800pt;}
.ls18{letter-spacing:-0.042752pt;}
.ls1f{letter-spacing:-0.038400pt;}
.ls50{letter-spacing:-0.033600pt;}
.ls19{letter-spacing:-0.032064pt;}
.ls28{letter-spacing:-0.032000pt;}
.ls57{letter-spacing:-0.028800pt;}
.ls1b{letter-spacing:-0.026720pt;}
.ls1d{letter-spacing:-0.025600pt;}
.ls3b{letter-spacing:-0.024000pt;}
.ls1c{letter-spacing:-0.019200pt;}
.ls17{letter-spacing:-0.016032pt;}
.ls4c{letter-spacing:-0.014400pt;}
.ls26{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.010688pt;}
.ls37{letter-spacing:-0.009600pt;}
.ls29{letter-spacing:-0.006400pt;}
.ls1a{letter-spacing:-0.005344pt;}
.ls20{letter-spacing:-0.004800pt;}
.ls12{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.004800pt;}
.ls7{letter-spacing:0.005344pt;}
.ls1e{letter-spacing:0.006400pt;}
.lsf{letter-spacing:0.009600pt;}
.ls3{letter-spacing:0.010688pt;}
.ls23{letter-spacing:0.012800pt;}
.ls32{letter-spacing:0.014400pt;}
.ls8{letter-spacing:0.016032pt;}
.ls24{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.021376pt;}
.lsd{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.025600pt;}
.ls4{letter-spacing:0.026720pt;}
.ls11{letter-spacing:0.028800pt;}
.ls0{letter-spacing:0.029824pt;}
.ls35{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.032064pt;}
.ls10{letter-spacing:0.033600pt;}
.ls51{letter-spacing:0.037408pt;}
.lse{letter-spacing:0.038400pt;}
.ls9{letter-spacing:0.042752pt;}
.ls1{letter-spacing:0.043200pt;}
.ls21{letter-spacing:0.044800pt;}
.ls2{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.051200pt;}
.ls33{letter-spacing:0.052800pt;}
.lsa{letter-spacing:0.053440pt;}
.ls3f{letter-spacing:0.057600pt;}
.ls39{letter-spacing:0.062400pt;}
.ls4d{letter-spacing:0.064000pt;}
.ls49{letter-spacing:0.067200pt;}
.ls25{letter-spacing:0.072000pt;}
.ls44{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.078080pt;}
.ls4e{letter-spacing:0.080864pt;}
.ls56{letter-spacing:0.081600pt;}
.lsc{letter-spacing:0.082560pt;}
.ls52{letter-spacing:0.086400pt;}
.ls46{letter-spacing:0.089376pt;}
.ls4a{letter-spacing:0.091200pt;}
.ls30{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.098560pt;}
.ls40{letter-spacing:0.100800pt;}
.ls53{letter-spacing:0.105600pt;}
.ls3a{letter-spacing:0.110400pt;}
.ls42{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.121600pt;}
.ls54{letter-spacing:0.124416pt;}
.ls45{letter-spacing:0.144000pt;}
.ls47{letter-spacing:0.160000pt;}
.ls59{letter-spacing:0.179200pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.262400pt;}
.ls3d{letter-spacing:0.302400pt;}
.ls58{letter-spacing:749.036800pt;}
.ws1{word-spacing:-58.560000pt;}
.ws46{word-spacing:-58.448736pt;}
.ws8b{word-spacing:-19.302400pt;}
.ws61{word-spacing:-19.296000pt;}
.ws6e{word-spacing:-19.289600pt;}
.ws45{word-spacing:-19.283200pt;}
.ws86{word-spacing:-19.276800pt;}
.ws85{word-spacing:-19.270400pt;}
.ws44{word-spacing:-19.264000pt;}
.ws28{word-spacing:-19.257600pt;}
.ws64{word-spacing:-19.251200pt;}
.ws87{word-spacing:-19.244800pt;}
.ws66{word-spacing:-19.238400pt;}
.ws8c{word-spacing:-19.232000pt;}
.ws26{word-spacing:-19.225600pt;}
.ws27{word-spacing:-19.219200pt;}
.ws6f{word-spacing:-19.212800pt;}
.ws65{word-spacing:-19.206400pt;}
.ws53{word-spacing:-19.200000pt;}
.ws7c{word-spacing:-19.193600pt;}
.ws8a{word-spacing:-19.180800pt;}
.ws29{word-spacing:-19.174400pt;}
.ws67{word-spacing:-16.112160pt;}
.ws5b{word-spacing:-14.568000pt;}
.ws78{word-spacing:-14.553600pt;}
.ws77{word-spacing:-14.524800pt;}
.ws68{word-spacing:-14.515200pt;}
.ws5a{word-spacing:-14.510400pt;}
.ws54{word-spacing:-14.500800pt;}
.ws76{word-spacing:-14.472000pt;}
.ws2a{word-spacing:-14.467200pt;}
.ws7e{word-spacing:-14.462400pt;}
.ws2{word-spacing:-14.457600pt;}
.ws43{word-spacing:-14.452800pt;}
.ws6d{word-spacing:-12.891424pt;}
.ws75{word-spacing:-10.526976pt;}
.ws0{word-spacing:-9.632000pt;}
.ws70{word-spacing:-9.491200pt;}
.ws6a{word-spacing:-0.451200pt;}
.ws5c{word-spacing:-0.379200pt;}
.ws4e{word-spacing:-0.204800pt;}
.ws5f{word-spacing:-0.196800pt;}
.ws80{word-spacing:-0.158400pt;}
.ws13{word-spacing:-0.154976pt;}
.ws7f{word-spacing:-0.148800pt;}
.ws73{word-spacing:-0.147200pt;}
.ws12{word-spacing:-0.144288pt;}
.ws6c{word-spacing:-0.144000pt;}
.ws81{word-spacing:-0.139200pt;}
.ws42{word-spacing:-0.134400pt;}
.wsd{word-spacing:-0.133600pt;}
.ws60{word-spacing:-0.129600pt;}
.ws9{word-spacing:-0.128256pt;}
.ws2f{word-spacing:-0.128000pt;}
.ws63{word-spacing:-0.124800pt;}
.wsc{word-spacing:-0.122912pt;}
.wsf{word-spacing:-0.117568pt;}
.ws5e{word-spacing:-0.115200pt;}
.wsb{word-spacing:-0.112224pt;}
.ws8{word-spacing:-0.110400pt;}
.ws83{word-spacing:-0.108800pt;}
.wse{word-spacing:-0.106880pt;}
.ws7{word-spacing:-0.105600pt;}
.ws4a{word-spacing:-0.102400pt;}
.ws17{word-spacing:-0.101536pt;}
.ws20{word-spacing:-0.100800pt;}
.ws16{word-spacing:-0.096192pt;}
.ws22{word-spacing:-0.096000pt;}
.ws25{word-spacing:-0.091200pt;}
.ws10{word-spacing:-0.090848pt;}
.ws1c{word-spacing:-0.089600pt;}
.ws1f{word-spacing:-0.086400pt;}
.ws11{word-spacing:-0.085504pt;}
.ws1e{word-spacing:-0.083200pt;}
.ws41{word-spacing:-0.081600pt;}
.ws33{word-spacing:-0.076800pt;}
.ws18{word-spacing:-0.074816pt;}
.ws21{word-spacing:-0.072000pt;}
.ws2b{word-spacing:-0.070400pt;}
.ws15{word-spacing:-0.069472pt;}
.ws4b{word-spacing:-0.067200pt;}
.ws7a{word-spacing:-0.064128pt;}
.ws19{word-spacing:-0.064000pt;}
.ws24{word-spacing:-0.062400pt;}
.ws14{word-spacing:-0.058784pt;}
.ws23{word-spacing:-0.057600pt;}
.ws47{word-spacing:-0.052800pt;}
.ws48{word-spacing:-0.051200pt;}
.ws50{word-spacing:-0.048000pt;}
.ws1d{word-spacing:-0.044800pt;}
.ws4c{word-spacing:-0.043200pt;}
.ws4d{word-spacing:-0.038400pt;}
.ws59{word-spacing:-0.033600pt;}
.ws32{word-spacing:-0.032000pt;}
.ws74{word-spacing:-0.028800pt;}
.ws3c{word-spacing:-0.025600pt;}
.ws40{word-spacing:-0.024000pt;}
.ws30{word-spacing:-0.019200pt;}
.ws6{word-spacing:-0.014400pt;}
.ws49{word-spacing:-0.012800pt;}
.ws2e{word-spacing:-0.006400pt;}
.ws3{word-spacing:0.000000pt;}
.ws31{word-spacing:0.006400pt;}
.ws37{word-spacing:0.012800pt;}
.ws3f{word-spacing:0.019200pt;}
.ws6b{word-spacing:0.024000pt;}
.ws3a{word-spacing:0.025600pt;}
.ws1b{word-spacing:0.032000pt;}
.ws3e{word-spacing:0.038400pt;}
.wsa{word-spacing:0.042752pt;}
.ws5{word-spacing:0.044736pt;}
.ws3d{word-spacing:0.044800pt;}
.ws4f{word-spacing:0.051200pt;}
.ws35{word-spacing:0.057600pt;}
.ws34{word-spacing:0.064000pt;}
.ws2d{word-spacing:0.070400pt;}
.ws1a{word-spacing:0.076800pt;}
.ws36{word-spacing:0.083200pt;}
.ws55{word-spacing:0.089600pt;}
.ws39{word-spacing:0.096000pt;}
.ws52{word-spacing:0.102400pt;}
.ws51{word-spacing:0.108800pt;}
.ws3b{word-spacing:0.115200pt;}
.ws58{word-spacing:0.121600pt;}
.ws84{word-spacing:0.128000pt;}
.ws2c{word-spacing:0.140800pt;}
.ws57{word-spacing:0.153600pt;}
.ws88{word-spacing:0.172800pt;}
.ws71{word-spacing:0.198400pt;}
.ws8d{word-spacing:0.211200pt;}
.ws7d{word-spacing:0.217600pt;}
.ws62{word-spacing:0.230400pt;}
.ws72{word-spacing:0.243200pt;}
.ws5d{word-spacing:0.249600pt;}
.ws89{word-spacing:0.256000pt;}
.ws4{word-spacing:0.260960pt;}
.ws56{word-spacing:0.268800pt;}
.ws79{word-spacing:0.275200pt;}
.ws7b{word-spacing:0.278400pt;}
.ws82{word-spacing:0.312000pt;}
.ws38{word-spacing:0.320000pt;}
.ws69{word-spacing:0.377600pt;}
._3{margin-left:-8.338944pt;}
._5{margin-left:-6.084384pt;}
._2{margin-left:-4.755072pt;}
._1{margin-left:-1.012800pt;}
._0{width:1.046400pt;}
._4{width:150.457600pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.307067pt;}
.y3b{bottom:97.786667pt;}
.y76{bottom:97.787067pt;}
.y97{bottom:101.307067pt;}
.y75{bottom:103.147200pt;}
.y178{bottom:103.627067pt;}
.y3a{bottom:111.787067pt;}
.y74{bottom:112.507067pt;}
.y7c{bottom:116.347067pt;}
.y60{bottom:117.147200pt;}
.y96{bottom:119.867067pt;}
.y177{bottom:122.187067pt;}
.y39{bottom:125.707067pt;}
.y5f{bottom:126.427067pt;}
.yb5{bottom:131.067067pt;}
.yf4{bottom:134.587067pt;}
.y95{bottom:138.507067pt;}
.y38{bottom:139.627067pt;}
.yb4{bottom:140.347067pt;}
.y176{bottom:140.827067pt;}
.yf9{bottom:144.987067pt;}
.yf3{bottom:153.147067pt;}
.y37{bottom:153.547067pt;}
.yf8{bottom:154.347067pt;}
.y94{bottom:157.067200pt;}
.yd3{bottom:158.907067pt;}
.y175{bottom:159.387067pt;}
.y36{bottom:167.467067pt;}
.yd2{bottom:168.267067pt;}
.yf2{bottom:171.707067pt;}
.y109{bottom:172.827067pt;}
.y93{bottom:175.627067pt;}
.y174{bottom:177.947067pt;}
.y17d{bottom:177.947200pt;}
.y35{bottom:181.387067pt;}
.y108{bottom:182.187200pt;}
.y9f{bottom:184.827067pt;}
.yf1{bottom:190.267067pt;}
.y92{bottom:194.187067pt;}
.y173{bottom:196.507067pt;}
.y17c{bottom:196.507200pt;}
.yf7{bottom:196.987067pt;}
.y34{bottom:202.427067pt;}
.y9e{bottom:203.387067pt;}
.yf0{bottom:208.827067pt;}
.y33{bottom:212.427067pt;}
.y91{bottom:212.747067pt;}
.y172{bottom:215.067067pt;}
.y17b{bottom:215.067200pt;}
.y107{bottom:216.747067pt;}
.y9d{bottom:222.027067pt;}
.yee{bottom:227.467067pt;}
.y32{bottom:231.067067pt;}
.y90{bottom:231.387067pt;}
.y171{bottom:233.707067pt;}
.yd1{bottom:234.667067pt;}
.yef{bottom:234.827067pt;}
.y106{bottom:235.307067pt;}
.y9c{bottom:240.587067pt;}
.yed{bottom:246.027067pt;}
.y31{bottom:249.627067pt;}
.y8f{bottom:249.947067pt;}
.y170{bottom:252.267067pt;}
.yd0{bottom:253.227067pt;}
.y105{bottom:253.867067pt;}
.y72{bottom:259.147067pt;}
.yec{bottom:264.587067pt;}
.y73{bottom:266.507067pt;}
.y30{bottom:268.187067pt;}
.y8e{bottom:268.507067pt;}
.y10f{bottom:270.827067pt;}
.ycf{bottom:271.867067pt;}
.y103{bottom:272.507067pt;}
.yb3{bottom:272.747067pt;}
.y71{bottom:277.707067pt;}
.y104{bottom:279.867067pt;}
.yeb{bottom:283.147067pt;}
.y2f{bottom:286.747067pt;}
.y8d{bottom:287.067067pt;}
.y10e{bottom:289.387067pt;}
.yce{bottom:290.427067pt;}
.y102{bottom:291.067067pt;}
.yb1{bottom:291.387067pt;}
.y70{bottom:296.347067pt;}
.y155{bottom:297.307067pt;}
.yb2{bottom:298.747067pt;}
.yea{bottom:301.787067pt;}
.y168{bottom:304.107067pt;}
.y8c{bottom:304.507067pt;}
.y2e{bottom:305.307067pt;}
.y10d{bottom:308.027067pt;}
.ycc{bottom:308.987067pt;}
.y101{bottom:309.627067pt;}
.yb0{bottom:309.947067pt;}
.y6f{bottom:314.907067pt;}
.y8b{bottom:315.307067pt;}
.y154{bottom:315.867067pt;}
.ycd{bottom:316.347067pt;}
.ye9{bottom:320.347067pt;}
.y167{bottom:322.667067pt;}
.y2d{bottom:323.218403pt;}
.y10c{bottom:326.587067pt;}
.yca{bottom:327.547067pt;}
.y100{bottom:328.187067pt;}
.yaf{bottom:328.507067pt;}
.y6e{bottom:333.467067pt;}
.y153{bottom:334.427067pt;}
.ycb{bottom:334.907067pt;}
.y2c{bottom:338.658555pt;}
.ye8{bottom:338.907067pt;}
.y9b{bottom:340.827067pt;}
.y166{bottom:341.227067pt;}
.y10b{bottom:345.147067pt;}
.y17a{bottom:345.147200pt;}
.yc9{bottom:346.107067pt;}
.yff{bottom:346.747067pt;}
.yae{bottom:347.067067pt;}
.y120{bottom:351.067200pt;}
.y6d{bottom:352.027067pt;}
.y152{bottom:353.067067pt;}
.y2b{bottom:354.178867pt;}
.ye7{bottom:357.467067pt;}
.y165{bottom:359.787067pt;}
.y10a{bottom:363.707067pt;}
.y179{bottom:363.707200pt;}
.yc8{bottom:364.747067pt;}
.yfe{bottom:365.387067pt;}
.yad{bottom:365.707067pt;}
.y11f{bottom:368.985987pt;}
.y2a{bottom:369.699179pt;}
.y6c{bottom:370.587067pt;}
.y151{bottom:371.627067pt;}
.ye6{bottom:376.027067pt;}
.y164{bottom:378.427067pt;}
.y5e{bottom:382.267067pt;}
.y16f{bottom:382.267200pt;}
.yc7{bottom:383.307067pt;}
.yfd{bottom:383.947067pt;}
.yac{bottom:384.267067pt;}
.y11e{bottom:384.426139pt;}
.y29{bottom:385.139331pt;}
.y6b{bottom:389.227067pt;}
.y150{bottom:390.187067pt;}
.ye5{bottom:394.667067pt;}
.y163{bottom:396.987067pt;}
.y11d{bottom:399.946451pt;}
.y28{bottom:400.659643pt;}
.y12a{bottom:400.747067pt;}
.y5d{bottom:400.907067pt;}
.y16e{bottom:400.907200pt;}
.yfc{bottom:401.787067pt;}
.yc6{bottom:401.867067pt;}
.yab{bottom:402.827067pt;}
.y6a{bottom:407.787067pt;}
.y14f{bottom:408.747067pt;}
.ye4{bottom:413.227067pt;}
.yfb{bottom:413.707067pt;}
.y11c{bottom:415.386603pt;}
.y162{bottom:415.547067pt;}
.y27{bottom:416.099795pt;}
.y129{bottom:419.307067pt;}
.y5c{bottom:419.467067pt;}
.y16d{bottom:419.467200pt;}
.yaa{bottom:421.387067pt;}
.y69{bottom:426.347067pt;}
.y14e{bottom:427.307067pt;}
.y133{bottom:430.027067pt;}
.y11b{bottom:430.906915pt;}
.y26{bottom:431.620107pt;}
.ye3{bottom:431.787067pt;}
.y161{bottom:434.107067pt;}
.yc5{bottom:436.107200pt;}
.y128{bottom:437.947067pt;}
.y5b{bottom:438.027067pt;}
.y16c{bottom:438.027200pt;}
.ya9{bottom:439.947067pt;}
.y68{bottom:444.907067pt;}
.y14d{bottom:445.947067pt;}
.y11a{bottom:446.347067pt;}
.y25{bottom:447.060259pt;}
.y131{bottom:448.587067pt;}
.ye2{bottom:450.347067pt;}
.y160{bottom:452.667067pt;}
.yc4{bottom:454.347067pt;}
.y132{bottom:455.947200pt;}
.y127{bottom:456.507067pt;}
.y5a{bottom:456.587067pt;}
.ya8{bottom:458.587067pt;}
.y24{bottom:462.580571pt;}
.y119{bottom:462.587067pt;}
.y67{bottom:463.547067pt;}
.y14c{bottom:464.507067pt;}
.y130{bottom:467.227067pt;}
.ye1{bottom:468.987067pt;}
.y15f{bottom:471.307067pt;}
.yc3{bottom:472.987067pt;}
.y126{bottom:475.067067pt;}
.y59{bottom:475.227067pt;}
.ya7{bottom:477.147067pt;}
.y23{bottom:478.020723pt;}
.y9a{bottom:480.987067pt;}
.y118{bottom:481.147067pt;}
.y66{bottom:482.107067pt;}
.y14b{bottom:483.067067pt;}
.y12f{bottom:485.787067pt;}
.ye0{bottom:487.547067pt;}
.y15e{bottom:489.867067pt;}
.yc2{bottom:491.547067pt;}
.y22{bottom:493.541035pt;}
.y125{bottom:493.627067pt;}
.y58{bottom:493.787067pt;}
.y99{bottom:494.907067pt;}
.ya6{bottom:495.707067pt;}
.y117{bottom:499.707067pt;}
.y65{bottom:500.667067pt;}
.y14a{bottom:501.627067pt;}
.y12e{bottom:504.347067pt;}
.y98{bottom:505.627067pt;}
.ydf{bottom:506.107067pt;}
.y15d{bottom:508.427067pt;}
.y21{bottom:508.981187pt;}
.yc1{bottom:510.107067pt;}
.y124{bottom:512.267067pt;}
.y57{bottom:512.347067pt;}
.ya5{bottom:514.267067pt;}
.y116{bottom:518.267067pt;}
.y64{bottom:519.227067pt;}
.y149{bottom:520.267067pt;}
.y12d{bottom:522.907067pt;}
.y20{bottom:524.501499pt;}
.yde{bottom:524.667067pt;}
.y15c{bottom:526.987067pt;}
.yc0{bottom:528.667067pt;}
.y56{bottom:530.907067pt;}
.ya4{bottom:532.907067pt;}
.y114{bottom:536.907067pt;}
.y63{bottom:537.787067pt;}
.y1f{bottom:539.941651pt;}
.y12c{bottom:541.547067pt;}
.ydd{bottom:543.307067pt;}
.y115{bottom:544.267067pt;}
.y142{bottom:545.547067pt;}
.y15b{bottom:545.627067pt;}
.y123{bottom:546.507067pt;}
.ybf{bottom:547.307067pt;}
.y55{bottom:549.547067pt;}
.ya3{bottom:551.467067pt;}
.y148{bottom:554.507067pt;}
.y62{bottom:555.307067pt;}
.y1e{bottom:555.461963pt;}
.y113{bottom:555.467067pt;}
.y12b{bottom:560.107067pt;}
.ydc{bottom:561.867067pt;}
.y122{bottom:563.627067pt;}
.y140{bottom:564.107067pt;}
.ybe{bottom:565.867067pt;}
.y61{bottom:566.027067pt;}
.y54{bottom:568.107067pt;}
.ya2{bottom:570.027067pt;}
.y1d{bottom:570.902115pt;}
.y141{bottom:571.467067pt;}
.y147{bottom:571.627067pt;}
.y112{bottom:574.027067pt;}
.y121{bottom:577.547067pt;}
.y15a{bottom:579.867067pt;}
.ydb{bottom:580.427067pt;}
.y13f{bottom:582.667067pt;}
.ybd{bottom:584.427067pt;}
.y146{bottom:585.547067pt;}
.y1c{bottom:586.422427pt;}
.y53{bottom:586.667067pt;}
.ya1{bottom:587.467067pt;}
.y7b{bottom:587.547067pt;}
.y111{bottom:591.467067pt;}
.y158{bottom:596.987067pt;}
.ya0{bottom:598.187067pt;}
.yda{bottom:598.987067pt;}
.y144{bottom:599.467067pt;}
.y13d{bottom:601.307067pt;}
.y1b{bottom:601.862579pt;}
.y110{bottom:602.187067pt;}
.y159{bottom:602.347067pt;}
.ybc{bottom:602.987067pt;}
.y145{bottom:604.827067pt;}
.y52{bottom:605.227067pt;}
.y7a{bottom:606.107067pt;}
.y13e{bottom:608.667067pt;}
.y143{bottom:610.187067pt;}
.y157{bottom:610.907067pt;}
.y1a{bottom:617.382891pt;}
.yd9{bottom:617.547067pt;}
.y13c{bottom:619.867067pt;}
.ybb{bottom:621.547067pt;}
.y156{bottom:621.627067pt;}
.y79{bottom:623.547067pt;}
.y51{bottom:623.787067pt;}
.y19{bottom:632.823043pt;}
.yd8{bottom:636.187067pt;}
.y78{bottom:637.467067pt;}
.y13b{bottom:638.427067pt;}
.yba{bottom:640.187067pt;}
.y50{bottom:642.427067pt;}
.y77{bottom:648.187067pt;}
.y18{bottom:648.343355pt;}
.yd7{bottom:653.627067pt;}
.y13a{bottom:656.987067pt;}
.yb9{bottom:657.627067pt;}
.y4f{bottom:660.987067pt;}
.y17{bottom:663.783507pt;}
.yd6{bottom:667.547067pt;}
.yb8{bottom:671.547067pt;}
.y139{bottom:675.547067pt;}
.y16{bottom:679.303819pt;}
.y4e{bottom:679.547067pt;}
.yd5{bottom:681.467067pt;}
.yb7{bottom:685.467067pt;}
.yd4{bottom:692.187067pt;}
.y138{bottom:694.187067pt;}
.y15{bottom:694.743971pt;}
.yb6{bottom:696.187067pt;}
.y4d{bottom:698.107067pt;}
.y14{bottom:710.264283pt;}
.y137{bottom:711.627067pt;}
.y4c{bottom:716.747067pt;}
.y136{bottom:725.547067pt;}
.y13{bottom:725.784595pt;}
.y4b{bottom:735.307067pt;}
.y135{bottom:739.467067pt;}
.y12{bottom:741.224747pt;}
.y134{bottom:750.187067pt;}
.y4a{bottom:753.867067pt;}
.y16b{bottom:753.867200pt;}
.y11{bottom:756.745059pt;}
.y10{bottom:772.185211pt;}
.y49{bottom:772.427067pt;}
.y16a{bottom:772.427200pt;}
.y8a{bottom:781.707067pt;}
.yf{bottom:787.705523pt;}
.y48{bottom:790.987067pt;}
.y169{bottom:790.987200pt;}
.y89{bottom:800.347067pt;}
.ye{bottom:803.145675pt;}
.y47{bottom:809.627067pt;}
.yd{bottom:818.665987pt;}
.y88{bottom:818.907067pt;}
.y46{bottom:828.187067pt;}
.yc{bottom:834.106139pt;}
.yfa{bottom:835.547067pt;}
.y87{bottom:837.467067pt;}
.y45{bottom:846.747067pt;}
.yb{bottom:849.626451pt;}
.y86{bottom:856.027067pt;}
.ya{bottom:865.066603pt;}
.y44{bottom:865.307067pt;}
.y85{bottom:874.587067pt;}
.y9{bottom:880.586915pt;}
.y43{bottom:883.947067pt;}
.y84{bottom:893.227067pt;}
.y8{bottom:896.027067pt;}
.y42{bottom:902.507067pt;}
.y83{bottom:911.787067pt;}
.y7{bottom:912.187067pt;}
.y41{bottom:921.067067pt;}
.y6{bottom:929.707067pt;}
.y82{bottom:930.347067pt;}
.y40{bottom:939.627067pt;}
.y5{bottom:943.627067pt;}
.yf6{bottom:946.987067pt;}
.y81{bottom:948.907067pt;}
.y4{bottom:957.547067pt;}
.y3f{bottom:958.187067pt;}
.y80{bottom:967.547067pt;}
.y3{bottom:973.387107pt;}
.y3e{bottom:976.827067pt;}
.yf5{bottom:984.187067pt;}
.y7f{bottom:986.107067pt;}
.y3d{bottom:995.387067pt;}
.y7e{bottom:1003.547067pt;}
.y2{bottom:1011.627067pt;}
.y3c{bottom:1013.947067pt;}
.y7d{bottom:1017.467067pt;}
.h8{height:24.656000pt;}
.hb{height:34.144000pt;}
.h1{height:39.030469pt;}
.hd{height:45.411520pt;}
.hf{height:46.135040pt;}
.h4{height:51.216000pt;}
.hc{height:52.032000pt;}
.h3{height:55.584000pt;}
.h6{height:57.020480pt;}
.h7{height:57.928960pt;}
.h11{height:60.880373pt;}
.h5{height:68.288000pt;}
.h9{height:69.376000pt;}
.h10{height:74.531520pt;}
.he{height:74.851520pt;}
.ha{height:75.575040pt;}
.h2{height:79.555520pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x2{left:113.440000pt;}
.xb{left:117.600000pt;}
.x1c{left:121.760000pt;}
.x11{left:128.559802pt;}
.xe{left:145.519695pt;}
.x22{left:151.280000pt;}
.x23{left:174.640000pt;}
.x24{left:185.840000pt;}
.x1f{left:207.360000pt;}
.x20{left:218.560000pt;}
.xc{left:285.840000pt;}
.xd{left:291.440000pt;}
.x18{left:308.960000pt;}
.x14{left:312.080000pt;}
.x15{left:317.680000pt;}
.x19{left:320.160000pt;}
.x1a{left:346.000000pt;}
.x1b{left:357.200000pt;}
.x27{left:379.200000pt;}
.x28{left:390.400000pt;}
.x1{left:396.880000pt;}
.xf{left:408.400000pt;}
.x10{left:414.000000pt;}
.x5{left:417.279600pt;}
.x16{left:463.520000pt;}
.x17{left:469.120000pt;}
.x2a{left:485.840000pt;}
.x2b{left:494.160000pt;}
.x3{left:498.880000pt;}
.x29{left:508.080000pt;}
.x4{left:514.959600pt;}
.x21{left:546.320000pt;}
.x12{left:551.120000pt;}
.x25{left:554.560000pt;}
.x13{left:556.720000pt;}
.x26{left:565.760000pt;}
.x7{left:611.600000pt;}
.x8{left:617.200000pt;}
.x9{left:623.040000pt;}
.xa{left:626.320000pt;}
.x1d{left:637.920000pt;}
.x1e{left:649.120000pt;}
.x6{left:680.320000pt;}
}




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