
    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_b37699f1134364c372db2c33.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b6aa1a3fadfc7d59972940c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4cada216d57caad4809716ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2e27686b7d9796aae17bb850.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_c0fa35486bede96ec77491f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,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);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.184800px;}
.v1{vertical-align:19.628400px;}
.ls5{letter-spacing:-0.456000px;}
.lsa{letter-spacing:-0.235200px;}
.ls7{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.137122px;}
.lsc{letter-spacing:-0.117600px;}
.lsd{letter-spacing:-0.068561px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000124px;}
.ls6{letter-spacing:0.016188px;}
.ls1{letter-spacing:1.320000px;}
.ls9{letter-spacing:2.106000px;}
.ls8{letter-spacing:7.488000px;}
.ls3{letter-spacing:1221.935400px;}
.ls0{letter-spacing:2288.719200px;}
.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;}
}
.ws89{word-spacing:-17.404800px;}
.wse1{word-spacing:-12.000000px;}
.wsd4{word-spacing:-9.600000px;}
.ws19{word-spacing:-9.360000px;}
.ws1{word-spacing:-9.120000px;}
.ws62{word-spacing:-8.892000px;}
.ws2{word-spacing:-8.664000px;}
.ws0{word-spacing:-6.856080px;}
.wsa0{word-spacing:-5.056800px;}
.wsc8{word-spacing:-4.704000px;}
.ws51{word-spacing:-3.704400px;}
.ws12{word-spacing:-3.586800px;}
.ws4e{word-spacing:-3.410400px;}
.ws4b{word-spacing:-3.351600px;}
.ws48{word-spacing:-3.057600px;}
.ws8{word-spacing:-2.998800px;}
.ws92{word-spacing:-2.881200px;}
.ws40{word-spacing:-2.822400px;}
.ws50{word-spacing:-2.763600px;}
.ws8d{word-spacing:-2.646000px;}
.wsc3{word-spacing:-2.587200px;}
.ws98{word-spacing:-2.528400px;}
.ws9b{word-spacing:-2.469600px;}
.ws52{word-spacing:-2.352000px;}
.ws14{word-spacing:-2.293200px;}
.ws39{word-spacing:-2.234400px;}
.wsc6{word-spacing:-1.999200px;}
.wsd{word-spacing:-1.940400px;}
.ws4a{word-spacing:-1.881600px;}
.wsa1{word-spacing:-1.822800px;}
.wsa5{word-spacing:-1.764000px;}
.ws28{word-spacing:-1.732800px;}
.ws7e{word-spacing:-1.731600px;}
.ws8b{word-spacing:-1.705200px;}
.wsd7{word-spacing:-1.632000px;}
.wsb3{word-spacing:-1.587600px;}
.wsa9{word-spacing:-1.550400px;}
.wsc2{word-spacing:-1.528800px;}
.wsa3{word-spacing:-1.470000px;}
.wse4{word-spacing:-1.459200px;}
.ws32{word-spacing:-1.411200px;}
.ws44{word-spacing:-1.368000px;}
.ws9{word-spacing:-1.352400px;}
.wsc{word-spacing:-1.293600px;}
.wsd0{word-spacing:-1.185600px;}
.ws4c{word-spacing:-1.117200px;}
.ws2a{word-spacing:-1.094400px;}
.wsc4{word-spacing:-1.058400px;}
.wsbe{word-spacing:-1.048800px;}
.ws2d{word-spacing:-1.029600px;}
.wsbf{word-spacing:-1.003200px;}
.ws61{word-spacing:-0.957600px;}
.wsb5{word-spacing:-0.940800px;}
.wscd{word-spacing:-0.866400px;}
.ws84{word-spacing:-0.823200px;}
.ws69{word-spacing:-0.795600px;}
.ws82{word-spacing:-0.764400px;}
.wsaa{word-spacing:-0.684000px;}
.wse2{word-spacing:-0.638400px;}
.wsb2{word-spacing:-0.588000px;}
.ws16{word-spacing:-0.547200px;}
.ws90{word-spacing:-0.529200px;}
.ws33{word-spacing:-0.470400px;}
.ws41{word-spacing:-0.411600px;}
.wsb6{word-spacing:-0.352800px;}
.ws18{word-spacing:-0.319200px;}
.wsa2{word-spacing:-0.294000px;}
.ws6e{word-spacing:-0.176400px;}
.ws4{word-spacing:-0.168000px;}
.ws36{word-spacing:-0.117600px;}
.ws6b{word-spacing:-0.058800px;}
.ws3{word-spacing:0.000000px;}
.wsb9{word-spacing:0.068561px;}
.ws23{word-spacing:0.117600px;}
.ws9e{word-spacing:0.137122px;}
.ws72{word-spacing:0.176400px;}
.ws6c{word-spacing:0.294000px;}
.wse3{word-spacing:0.364800px;}
.ws2b{word-spacing:0.410400px;}
.ws3e{word-spacing:0.411600px;}
.ws2f{word-spacing:0.468000px;}
.ws22{word-spacing:0.470400px;}
.ws17{word-spacing:0.501600px;}
.ws87{word-spacing:0.514800px;}
.wsb0{word-spacing:0.646800px;}
.ws13{word-spacing:0.705600px;}
.wsd9{word-spacing:0.720000px;}
.ws5c{word-spacing:0.729600px;}
.ws3d{word-spacing:0.764400px;}
.ws37{word-spacing:0.823200px;}
.ws5a{word-spacing:0.999600px;}
.ws25{word-spacing:1.003200px;}
.wse5{word-spacing:1.048800px;}
.wsb{word-spacing:1.058400px;}
.ws27{word-spacing:1.231200px;}
.wsdd{word-spacing:1.248000px;}
.ws99{word-spacing:1.352400px;}
.ws7b{word-spacing:1.368000px;}
.ws45{word-spacing:1.459200px;}
.ws85{word-spacing:1.504800px;}
.ws10{word-spacing:1.528800px;}
.wsd6{word-spacing:1.587600px;}
.ws5e{word-spacing:1.641600px;}
.ws43{word-spacing:1.646400px;}
.wsc7{word-spacing:1.705200px;}
.ws11{word-spacing:1.764000px;}
.wsa6{word-spacing:1.822800px;}
.ws9d{word-spacing:1.881600px;}
.ws9a{word-spacing:1.940400px;}
.ws47{word-spacing:1.999200px;}
.wscc{word-spacing:2.052000px;}
.ws6d{word-spacing:2.058000px;}
.ws7d{word-spacing:2.097600px;}
.ws96{word-spacing:2.106000px;}
.ws1e{word-spacing:2.116800px;}
.wsd8{word-spacing:2.160000px;}
.ws6f{word-spacing:2.175600px;}
.ws65{word-spacing:2.234400px;}
.ws86{word-spacing:2.280000px;}
.ws60{word-spacing:2.325600px;}
.ws15{word-spacing:2.352000px;}
.wse0{word-spacing:2.433600px;}
.ws34{word-spacing:2.469600px;}
.wsdc{word-spacing:2.496000px;}
.wsc1{word-spacing:2.508000px;}
.ws73{word-spacing:2.528400px;}
.ws24{word-spacing:2.553600px;}
.ws46{word-spacing:2.599200px;}
.ws31{word-spacing:2.822400px;}
.ws26{word-spacing:2.827200px;}
.ws56{word-spacing:2.881200px;}
.wsa{word-spacing:2.940000px;}
.ws54{word-spacing:2.998800px;}
.wsbc{word-spacing:3.057600px;}
.wsb7{word-spacing:3.116400px;}
.ws68{word-spacing:3.146400px;}
.ws93{word-spacing:3.192000px;}
.wsa7{word-spacing:3.234000px;}
.wsd2{word-spacing:3.283200px;}
.ws83{word-spacing:3.469200px;}
.ws7c{word-spacing:3.511200px;}
.wsf{word-spacing:3.528000px;}
.ws3b{word-spacing:3.586800px;}
.ws1c{word-spacing:3.645600px;}
.ws38{word-spacing:3.704400px;}
.wsc0{word-spacing:3.739200px;}
.ws81{word-spacing:3.763200px;}
.ws5b{word-spacing:3.822000px;}
.ws63{word-spacing:3.880800px;}
.wse7{word-spacing:3.967200px;}
.ws1b{word-spacing:3.998400px;}
.wsce{word-spacing:4.104000px;}
.ws67{word-spacing:4.116000px;}
.ws2e{word-spacing:4.118400px;}
.ws57{word-spacing:4.174800px;}
.ws55{word-spacing:4.292400px;}
.ws3c{word-spacing:4.351200px;}
.wsd3{word-spacing:4.377600px;}
.ws4f{word-spacing:4.410000px;}
.ws4d{word-spacing:4.527600px;}
.wsbd{word-spacing:4.560000px;}
.ws91{word-spacing:4.586400px;}
.ws49{word-spacing:4.645200px;}
.ws59{word-spacing:4.762800px;}
.wsd1{word-spacing:4.833600px;}
.wscf{word-spacing:4.879200px;}
.ws77{word-spacing:4.880400px;}
.ws78{word-spacing:4.939200px;}
.ws6{word-spacing:4.998000px;}
.wsde{word-spacing:5.054400px;}
.ws7{word-spacing:5.056800px;}
.ws42{word-spacing:5.115600px;}
.wsb8{word-spacing:5.174400px;}
.ws95{word-spacing:5.198400px;}
.wse{word-spacing:5.233200px;}
.ws29{word-spacing:5.380800px;}
.ws1f{word-spacing:5.586000px;}
.ws7f{word-spacing:5.616000px;}
.ws8c{word-spacing:5.762400px;}
.ws70{word-spacing:5.880000px;}
.wsc9{word-spacing:5.938800px;}
.ws9f{word-spacing:5.997600px;}
.ws94{word-spacing:6.019200px;}
.ws8a{word-spacing:6.056400px;}
.ws30{word-spacing:6.350400px;}
.ws53{word-spacing:6.409200px;}
.wsba{word-spacing:6.468000px;}
.ws3f{word-spacing:6.526800px;}
.wsc5{word-spacing:6.585600px;}
.wsa4{word-spacing:6.703200px;}
.ws74{word-spacing:6.938400px;}
.ws21{word-spacing:7.114800px;}
.wsb4{word-spacing:7.467600px;}
.wse6{word-spacing:7.478400px;}
.ws71{word-spacing:7.488000px;}
.wsbb{word-spacing:7.526400px;}
.ws76{word-spacing:7.644000px;}
.wsd5{word-spacing:7.702800px;}
.ws3a{word-spacing:7.761600px;}
.ws66{word-spacing:7.879200px;}
.wsaf{word-spacing:8.173200px;}
.ws9c{word-spacing:8.290800px;}
.ws58{word-spacing:8.584800px;}
.ws88{word-spacing:8.611200px;}
.ws8f{word-spacing:9.114000px;}
.ws1d{word-spacing:9.231600px;}
.ws5d{word-spacing:9.348000px;}
.wsca{word-spacing:9.702000px;}
.ws6a{word-spacing:9.819600px;}
.wsb1{word-spacing:9.937200px;}
.ws5f{word-spacing:9.986400px;}
.ws35{word-spacing:9.996000px;}
.ws5{word-spacing:10.113600px;}
.ws64{word-spacing:10.231200px;}
.wscb{word-spacing:10.466400px;}
.ws8e{word-spacing:10.525200px;}
.ws79{word-spacing:10.819200px;}
.ws97{word-spacing:11.278800px;}
.ws20{word-spacing:11.936400px;}
.wsdb{word-spacing:12.096000px;}
.ws75{word-spacing:12.406800px;}
.ws80{word-spacing:12.916800px;}
.wsdf{word-spacing:14.320800px;}
.ws2c{word-spacing:14.648400px;}
.wsac{word-spacing:15.048000px;}
.wsda{word-spacing:17.472000px;}
.ws7a{word-spacing:20.748000px;}
.wsa8{word-spacing:23.210400px;}
.wsab{word-spacing:26.493600px;}
.wsad{word-spacing:27.040800px;}
.wsae{word-spacing:41.085600px;}
.ws1a{word-spacing:1608.129600px;}
._7{margin-left:-1608.112800px;}
._b{margin-left:-7.585200px;}
._4{margin-left:-6.403320px;}
._3{margin-left:-5.012280px;}
._6{margin-left:-3.059040px;}
._2{margin-left:-1.789200px;}
._0{width:1.848000px;}
._1{width:3.420000px;}
._10{width:7.659918px;}
._15{width:15.048000px;}
._d{width:21.386021px;}
._13{width:23.225829px;}
._12{width:25.215918px;}
._11{width:27.042024px;}
._c{width:28.407918px;}
._f{width:30.140718px;}
._e{width:31.828421px;}
._14{width:33.561221px;}
._16{width:49.132440px;}
._8{width:52.303025px;}
._9{width:54.765453px;}
._5{width:57.182426px;}
._a{width:1305.420000px;}
.fc3{color:rgb(0,80,152);}
.fc4{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fsa{font-size:26.584800px;}
.fs5{font-size:34.280400px;}
.fs6{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs7{font-size:46.800000px;}
.fs9{font-size:48.000000px;}
.fs4{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:77.698800px;}
.y85{bottom:142.866300px;}
.y116{bottom:142.928700px;}
.ye5{bottom:142.929750px;}
.y36{bottom:142.934550px;}
.ybb{bottom:142.939350px;}
.y95{bottom:142.944150px;}
.y1f{bottom:142.948950px;}
.ye4{bottom:158.684550px;}
.yc8{bottom:158.688300px;}
.y35{bottom:158.689350px;}
.yba{bottom:158.694150px;}
.yaf{bottom:158.697900px;}
.y94{bottom:158.698950px;}
.y84{bottom:164.126250px;}
.y115{bottom:164.189700px;}
.y63{bottom:164.193600px;}
.y1e{bottom:164.199300px;}
.ye3{bottom:174.439350px;}
.y34{bottom:174.444150px;}
.y93{bottom:174.448950px;}
.y114{bottom:179.944500px;}
.yc7{bottom:179.949300px;}
.y1d{bottom:179.954100px;}
.yae{bottom:179.958900px;}
.y83{bottom:185.376600px;}
.y62{bottom:185.454600px;}
.ye2{bottom:190.194150px;}
.y33{bottom:190.198950px;}
.y113{bottom:195.699300px;}
.yad{bottom:195.704100px;}
.y1c{bottom:195.708900px;}
.y82{bottom:201.131400px;}
.y61{bottom:201.209400px;}
.y32{bottom:205.943100px;}
.ye1{bottom:205.948950px;}
.ya5{bottom:208.120800px;}
.y112{bottom:211.454100px;}
.yac{bottom:211.458000px;}
.yc6{bottom:211.458900px;}
.y121{bottom:213.873000px;}
.y122{bottom:213.881100px;}
.y81{bottom:216.886200px;}
.y60{bottom:216.964200px;}
.y1b{bottom:216.969000px;}
.y111{bottom:227.193600px;}
.y31{bottom:227.204100px;}
.ye0{bottom:227.208900px;}
.y120{bottom:227.673000px;}
.ya4{bottom:229.876800px;}
.y80{bottom:232.636200px;}
.y5f{bottom:232.719000px;}
.y92{bottom:238.228950px;}
.y11f{bottom:241.473000px;}
.y30{bottom:242.958900px;}
.y110{bottom:248.454600px;}
.yab{bottom:248.469000px;}
.ya3{bottom:251.632800px;}
.yc5{bottom:251.686800px;}
.y7f{bottom:253.896300px;}
.yfc{bottom:253.973100px;}
.yfd{bottom:253.978950px;}
.y11e{bottom:255.273000px;}
.y2f{bottom:264.209400px;}
.ydf{bottom:264.219000px;}
.y11d{bottom:269.073000px;}
.y5e{bottom:273.364800px;}
.ya2{bottom:273.388800px;}
.y19{bottom:273.406800px;}
.yc4{bottom:273.442800px;}
.y1a{bottom:273.448800px;}
.y7e{bottom:275.156250px;}
.yfb{bottom:275.234100px;}
.y2e{bottom:279.964200px;}
.yde{bottom:285.474150px;}
.yfa{bottom:290.988900px;}
.y11c{bottom:291.381000px;}
.y5d{bottom:295.120800px;}
.ya1{bottom:295.144800px;}
.y18{bottom:295.162800px;}
.yc1{bottom:295.168800px;}
.yb9{bottom:295.180800px;}
.y91{bottom:295.192800px;}
.yc3{bottom:295.198800px;}
.y2d{bottom:295.719000px;}
.y7d{bottom:296.397000px;}
.yc2{bottom:300.093900px;}
.ydc{bottom:301.223100px;}
.ydd{bottom:301.228950px;}
.y11b{bottom:305.181000px;}
.yf9{bottom:306.738900px;}
.y2c{bottom:311.469000px;}
.y7c{bottom:312.151800px;}
.y5c{bottom:316.876800px;}
.ya0{bottom:316.900800px;}
.y17{bottom:316.918800px;}
.yc0{bottom:316.924800px;}
.y8e{bottom:316.930800px;}
.yb8{bottom:316.936800px;}
.y8f{bottom:316.948800px;}
.y10f{bottom:316.974150px;}
.y11a{bottom:318.981000px;}
.y90{bottom:321.843900px;}
.ydb{bottom:322.484100px;}
.y7b{bottom:327.906600px;}
.yf8{bottom:327.998850px;}
.y10e{bottom:332.728950px;}
.y119{bottom:332.781000px;}
.yda{bottom:338.238900px;}
.y5b{bottom:338.632800px;}
.y9f{bottom:338.656800px;}
.y16{bottom:338.674800px;}
.ybf{bottom:338.680800px;}
.y8d{bottom:338.686800px;}
.yb7{bottom:338.692800px;}
.y7a{bottom:343.661400px;}
.y10d{bottom:353.979300px;}
.y118{bottom:355.089000px;}
.y79{bottom:359.416200px;}
.yd9{bottom:359.498850px;}
.y5a{bottom:360.388800px;}
.y9e{bottom:360.412800px;}
.y15{bottom:360.430800px;}
.y2a{bottom:360.436800px;}
.y8c{bottom:360.442800px;}
.y2b{bottom:360.448800px;}
.y117{bottom:368.889000px;}
.y10c{bottom:369.734100px;}
.y59{bottom:382.144800px;}
.y9d{bottom:382.168800px;}
.yf7{bottom:382.174800px;}
.y14{bottom:382.186800px;}
.y29{bottom:382.192800px;}
.y8b{bottom:382.198800px;}
.y10b{bottom:385.488900px;}
.y8a{bottom:387.093900px;}
.y10a{bottom:401.238900px;}
.y58{bottom:403.900800px;}
.yb6{bottom:403.918800px;}
.y9c{bottom:403.924800px;}
.y28{bottom:403.930800px;}
.ya8{bottom:403.936800px;}
.y13{bottom:403.942800px;}
.yaa{bottom:403.948800px;}
.ya9{bottom:408.843900px;}
.y109{bottom:422.498850px;}
.y57{bottom:425.656800px;}
.yb5{bottom:425.674800px;}
.y9b{bottom:425.680800px;}
.y11{bottom:425.686800px;}
.y88{bottom:425.692800px;}
.y89{bottom:425.698800px;}
.y12{bottom:430.593900px;}
.y56{bottom:447.412800px;}
.yb4{bottom:447.430800px;}
.y9a{bottom:447.436800px;}
.y10{bottom:447.442800px;}
.y86{bottom:447.448800px;}
.y87{bottom:452.343900px;}
.y55{bottom:469.168800px;}
.y27{bottom:469.174800px;}
.y78{bottom:469.186800px;}
.y99{bottom:469.192800px;}
.ye{bottom:469.198800px;}
.yf{bottom:474.093900px;}
.y54{bottom:490.924800px;}
.y26{bottom:490.930800px;}
.yd{bottom:490.936800px;}
.y77{bottom:490.942800px;}
.y98{bottom:490.948800px;}
.y74{bottom:512.662800px;}
.y53{bottom:512.680800px;}
.y25{bottom:512.686800px;}
.yc{bottom:512.692800px;}
.y76{bottom:512.698800px;}
.y97{bottom:513.487050px;}
.y75{bottom:517.593900px;}
.y96{bottom:529.691550px;}
.yf6{bottom:534.412800px;}
.y73{bottom:534.418800px;}
.y52{bottom:534.436800px;}
.y24{bottom:534.442800px;}
.yb{bottom:534.448800px;}
.yf5{bottom:556.168800px;}
.y72{bottom:556.174800px;}
.ya{bottom:556.180800px;}
.y21{bottom:556.192800px;}
.y23{bottom:556.198800px;}
.y22{bottom:561.093900px;}
.y50{bottom:577.918800px;}
.yf4{bottom:577.924800px;}
.y71{bottom:577.930800px;}
.y9{bottom:577.936800px;}
.y20{bottom:577.948800px;}
.y51{bottom:582.843900px;}
.y4f{bottom:599.674800px;}
.yf3{bottom:599.680800px;}
.y70{bottom:599.686800px;}
.y8{bottom:599.692800px;}
.y4e{bottom:621.430800px;}
.yf2{bottom:621.436800px;}
.y6f{bottom:621.442800px;}
.y7{bottom:621.448800px;}
.y3b{bottom:643.180800px;}
.yb3{bottom:643.185300px;}
.y4d{bottom:643.186800px;}
.ybe{bottom:643.189800px;}
.yd7{bottom:643.192800px;}
.ya7{bottom:643.194300px;}
.y6{bottom:643.198800px;}
.yd8{bottom:648.093900px;}
.y12d{bottom:648.203250px;}
.y3a{bottom:659.385300px;}
.yb2{bottom:659.389800px;}
.ybd{bottom:659.394300px;}
.ya6{bottom:659.398800px;}
.y12c{bottom:664.699050px;}
.y6c{bottom:664.912800px;}
.y4c{bottom:664.942800px;}
.y6e{bottom:664.948800px;}
.y6d{bottom:669.843900px;}
.y39{bottom:675.589800px;}
.yb1{bottom:675.594300px;}
.ybc{bottom:675.598800px;}
.y12b{bottom:681.194850px;}
.y12a{bottom:681.199050px;}
.y49{bottom:686.656800px;}
.y6b{bottom:686.668800px;}
.y108{bottom:686.680800px;}
.yd6{bottom:686.686800px;}
.y4b{bottom:686.698800px;}
.y4a{bottom:691.593900px;}
.y38{bottom:691.794300px;}
.yb0{bottom:691.798800px;}
.y129{bottom:693.898650px;}
.y37{bottom:707.998800px;}
.y48{bottom:708.412800px;}
.y6a{bottom:708.424800px;}
.yf1{bottom:708.436800px;}
.yd5{bottom:708.442800px;}
.yd2{bottom:730.150800px;}
.y47{bottom:730.168800px;}
.y69{bottom:730.180800px;}
.yf0{bottom:730.192800px;}
.yd4{bottom:730.198800px;}
.yd3{bottom:735.093900px;}
.yd1{bottom:751.906800px;}
.yed{bottom:751.912800px;}
.y46{bottom:751.924800px;}
.y107{bottom:751.930800px;}
.y68{bottom:751.936800px;}
.yef{bottom:751.948800px;}
.yee{bottom:756.843900px;}
.yd0{bottom:773.662800px;}
.yec{bottom:773.668800px;}
.y45{bottom:773.680800px;}
.y106{bottom:773.686800px;}
.y67{bottom:773.692800px;}
.y5{bottom:790.192800px;}
.ycf{bottom:795.418800px;}
.yeb{bottom:795.424800px;}
.y44{bottom:795.436800px;}
.y105{bottom:795.442800px;}
.y66{bottom:795.448800px;}
.y65{bottom:800.343900px;}
.y128{bottom:800.946750px;}
.y103{bottom:817.168800px;}
.yce{bottom:817.174800px;}
.yea{bottom:817.180800px;}
.y43{bottom:817.192800px;}
.y4{bottom:817.198800px;}
.y127{bottom:817.463550px;}
.y104{bottom:822.093900px;}
.y126{bottom:833.959350px;}
.y40{bottom:838.918800px;}
.y102{bottom:838.924800px;}
.ycd{bottom:838.930800px;}
.ye9{bottom:838.936800px;}
.y42{bottom:838.948800px;}
.y41{bottom:843.843900px;}
.y125{bottom:850.455150px;}
.y3f{bottom:860.674800px;}
.y101{bottom:860.680800px;}
.ycc{bottom:860.686800px;}
.ye8{bottom:860.692800px;}
.y3{bottom:860.698800px;}
.y64{bottom:865.593900px;}
.y124{bottom:866.950950px;}
.y3e{bottom:882.430800px;}
.y100{bottom:882.436800px;}
.ycb{bottom:882.442800px;}
.ye7{bottom:882.448800px;}
.y123{bottom:883.446750px;}
.ye6{bottom:887.343900px;}
.y3d{bottom:904.186800px;}
.yff{bottom:904.192800px;}
.yca{bottom:904.198800px;}
.y3c{bottom:925.942800px;}
.yfe{bottom:925.948800px;}
.y2{bottom:947.698800px;}
.yc9{bottom:952.593900px;}
.h8{height:24.819010px;}
.h9{height:30.340800px;}
.ha{height:33.014400px;}
.h10{height:34.351200px;}
.h2{height:36.799200px;}
.h11{height:36.802800px;}
.h12{height:36.803400px;}
.hd{height:36.822600px;}
.h14{height:36.841800px;}
.hf{height:36.860400px;}
.h15{height:36.880200px;}
.he{height:37.767600px;}
.h17{height:38.880000px;}
.h16{height:44.040000px;}
.h6{height:49.921200px;}
.h13{height:49.945200px;}
.h7{height:49.969200px;}
.hc{height:49.993200px;}
.hb{height:50.017200px;}
.h18{height:51.984000px;}
.h3{height:53.460000px;}
.h5{height:67.788000px;}
.h4{height:86.880000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x27{left:111.614250px;}
.x8{left:116.291100px;}
.x40{left:122.616750px;}
.x28{left:125.952450px;}
.x3{left:131.811000px;}
.x2{left:144.567000px;}
.x4f{left:148.501950px;}
.x17{left:161.734650px;}
.x18{left:170.805150px;}
.x6{left:191.737800px;}
.x1f{left:193.196850px;}
.x4b{left:198.613950px;}
.x20{left:202.267350px;}
.x47{left:207.680850px;}
.x48{left:216.809850px;}
.x3a{left:231.160650px;}
.x3e{left:234.700200px;}
.x3b{left:240.323700px;}
.x3f{left:243.863100px;}
.x49{left:250.447800px;}
.x2e{left:264.300000px;}
.x50{left:287.785650px;}
.x4a{left:291.447300px;}
.xd{left:292.740300px;}
.xe{left:297.275550px;}
.x30{left:300.716850px;}
.x31{left:309.787350px;}
.x4d{left:324.505950px;}
.x19{left:343.888800px;}
.x3c{left:347.665950px;}
.x1a{left:352.959300px;}
.x3d{left:356.829000px;}
.x2f{left:361.417350px;}
.x4e{left:365.669250px;}
.x33{left:369.921300px;}
.x37{left:371.012400px;}
.x2a{left:378.425250px;}
.x36{left:384.370650px;}
.x2c{left:386.901900px;}
.x1d{left:389.332200px;}
.xc{left:393.732300px;}
.x2d{left:395.972400px;}
.x1e{left:398.402550px;}
.x43{left:408.234000px;}
.x9{left:415.460850px;}
.x44{left:416.994300px;}
.xa{left:419.996100px;}
.x14{left:438.558300px;}
.x15{left:447.443550px;}
.x32{left:452.298900px;}
.x29{left:461.893350px;}
.x11{left:495.228450px;}
.x12{left:499.763700px;}
.x4{left:502.805250px;}
.x5{left:507.247950px;}
.x41{left:511.301400px;}
.x42{left:520.464300px;}
.xf{left:521.892450px;}
.x10{left:526.427550px;}
.x38{left:553.052550px;}
.x23{left:558.637500px;}
.x39{left:561.871950px;}
.x45{left:578.198700px;}
.x46{left:587.327700px;}
.x7{left:591.658050px;}
.x24{left:602.786550px;}
.x2b{left:607.506600px;}
.x25{left:612.654300px;}
.xb{left:619.900650px;}
.x26{left:621.724800px;}
.x16{left:628.731150px;}
.x1b{left:630.499950px;}
.x34{left:634.866150px;}
.x4c{left:637.210350px;}
.x1c{left:639.570450px;}
.x35{left:644.029200px;}
.x13{left:654.397650px;}
.x21{left:688.252350px;}
.x22{left:697.322850px;}
@media print{
.v2{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.497600pt;}
.v1{vertical-align:17.447467pt;}
.ls5{letter-spacing:-0.405333pt;}
.lsa{letter-spacing:-0.209067pt;}
.ls7{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.121886pt;}
.lsc{letter-spacing:-0.104533pt;}
.lsd{letter-spacing:-0.060943pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000110pt;}
.ls6{letter-spacing:0.014389pt;}
.ls1{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.872000pt;}
.ls8{letter-spacing:6.656000pt;}
.ls3{letter-spacing:1086.164800pt;}
.ls0{letter-spacing:2034.417067pt;}
.ws89{word-spacing:-15.470933pt;}
.wse1{word-spacing:-10.666667pt;}
.wsd4{word-spacing:-8.533333pt;}
.ws19{word-spacing:-8.320000pt;}
.ws1{word-spacing:-8.106667pt;}
.ws62{word-spacing:-7.904000pt;}
.ws2{word-spacing:-7.701333pt;}
.ws0{word-spacing:-6.094293pt;}
.wsa0{word-spacing:-4.494933pt;}
.wsc8{word-spacing:-4.181333pt;}
.ws51{word-spacing:-3.292800pt;}
.ws12{word-spacing:-3.188267pt;}
.ws4e{word-spacing:-3.031467pt;}
.ws4b{word-spacing:-2.979200pt;}
.ws48{word-spacing:-2.717867pt;}
.ws8{word-spacing:-2.665600pt;}
.ws92{word-spacing:-2.561067pt;}
.ws40{word-spacing:-2.508800pt;}
.ws50{word-spacing:-2.456533pt;}
.ws8d{word-spacing:-2.352000pt;}
.wsc3{word-spacing:-2.299733pt;}
.ws98{word-spacing:-2.247467pt;}
.ws9b{word-spacing:-2.195200pt;}
.ws52{word-spacing:-2.090667pt;}
.ws14{word-spacing:-2.038400pt;}
.ws39{word-spacing:-1.986133pt;}
.wsc6{word-spacing:-1.777067pt;}
.wsd{word-spacing:-1.724800pt;}
.ws4a{word-spacing:-1.672533pt;}
.wsa1{word-spacing:-1.620267pt;}
.wsa5{word-spacing:-1.568000pt;}
.ws28{word-spacing:-1.540267pt;}
.ws7e{word-spacing:-1.539200pt;}
.ws8b{word-spacing:-1.515733pt;}
.wsd7{word-spacing:-1.450667pt;}
.wsb3{word-spacing:-1.411200pt;}
.wsa9{word-spacing:-1.378133pt;}
.wsc2{word-spacing:-1.358933pt;}
.wsa3{word-spacing:-1.306667pt;}
.wse4{word-spacing:-1.297067pt;}
.ws32{word-spacing:-1.254400pt;}
.ws44{word-spacing:-1.216000pt;}
.ws9{word-spacing:-1.202133pt;}
.wsc{word-spacing:-1.149867pt;}
.wsd0{word-spacing:-1.053867pt;}
.ws4c{word-spacing:-0.993067pt;}
.ws2a{word-spacing:-0.972800pt;}
.wsc4{word-spacing:-0.940800pt;}
.wsbe{word-spacing:-0.932267pt;}
.ws2d{word-spacing:-0.915200pt;}
.wsbf{word-spacing:-0.891733pt;}
.ws61{word-spacing:-0.851200pt;}
.wsb5{word-spacing:-0.836267pt;}
.wscd{word-spacing:-0.770133pt;}
.ws84{word-spacing:-0.731733pt;}
.ws69{word-spacing:-0.707200pt;}
.ws82{word-spacing:-0.679467pt;}
.wsaa{word-spacing:-0.608000pt;}
.wse2{word-spacing:-0.567467pt;}
.wsb2{word-spacing:-0.522667pt;}
.ws16{word-spacing:-0.486400pt;}
.ws90{word-spacing:-0.470400pt;}
.ws33{word-spacing:-0.418133pt;}
.ws41{word-spacing:-0.365867pt;}
.wsb6{word-spacing:-0.313600pt;}
.ws18{word-spacing:-0.283733pt;}
.wsa2{word-spacing:-0.261333pt;}
.ws6e{word-spacing:-0.156800pt;}
.ws4{word-spacing:-0.149333pt;}
.ws36{word-spacing:-0.104533pt;}
.ws6b{word-spacing:-0.052267pt;}
.ws3{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.060943pt;}
.ws23{word-spacing:0.104533pt;}
.ws9e{word-spacing:0.121886pt;}
.ws72{word-spacing:0.156800pt;}
.ws6c{word-spacing:0.261333pt;}
.wse3{word-spacing:0.324267pt;}
.ws2b{word-spacing:0.364800pt;}
.ws3e{word-spacing:0.365867pt;}
.ws2f{word-spacing:0.416000pt;}
.ws22{word-spacing:0.418133pt;}
.ws17{word-spacing:0.445867pt;}
.ws87{word-spacing:0.457600pt;}
.wsb0{word-spacing:0.574933pt;}
.ws13{word-spacing:0.627200pt;}
.wsd9{word-spacing:0.640000pt;}
.ws5c{word-spacing:0.648533pt;}
.ws3d{word-spacing:0.679467pt;}
.ws37{word-spacing:0.731733pt;}
.ws5a{word-spacing:0.888533pt;}
.ws25{word-spacing:0.891733pt;}
.wse5{word-spacing:0.932267pt;}
.wsb{word-spacing:0.940800pt;}
.ws27{word-spacing:1.094400pt;}
.wsdd{word-spacing:1.109333pt;}
.ws99{word-spacing:1.202133pt;}
.ws7b{word-spacing:1.216000pt;}
.ws45{word-spacing:1.297067pt;}
.ws85{word-spacing:1.337600pt;}
.ws10{word-spacing:1.358933pt;}
.wsd6{word-spacing:1.411200pt;}
.ws5e{word-spacing:1.459200pt;}
.ws43{word-spacing:1.463467pt;}
.wsc7{word-spacing:1.515733pt;}
.ws11{word-spacing:1.568000pt;}
.wsa6{word-spacing:1.620267pt;}
.ws9d{word-spacing:1.672533pt;}
.ws9a{word-spacing:1.724800pt;}
.ws47{word-spacing:1.777067pt;}
.wscc{word-spacing:1.824000pt;}
.ws6d{word-spacing:1.829333pt;}
.ws7d{word-spacing:1.864533pt;}
.ws96{word-spacing:1.872000pt;}
.ws1e{word-spacing:1.881600pt;}
.wsd8{word-spacing:1.920000pt;}
.ws6f{word-spacing:1.933867pt;}
.ws65{word-spacing:1.986133pt;}
.ws86{word-spacing:2.026667pt;}
.ws60{word-spacing:2.067200pt;}
.ws15{word-spacing:2.090667pt;}
.wse0{word-spacing:2.163200pt;}
.ws34{word-spacing:2.195200pt;}
.wsdc{word-spacing:2.218667pt;}
.wsc1{word-spacing:2.229333pt;}
.ws73{word-spacing:2.247467pt;}
.ws24{word-spacing:2.269867pt;}
.ws46{word-spacing:2.310400pt;}
.ws31{word-spacing:2.508800pt;}
.ws26{word-spacing:2.513067pt;}
.ws56{word-spacing:2.561067pt;}
.wsa{word-spacing:2.613333pt;}
.ws54{word-spacing:2.665600pt;}
.wsbc{word-spacing:2.717867pt;}
.wsb7{word-spacing:2.770133pt;}
.ws68{word-spacing:2.796800pt;}
.ws93{word-spacing:2.837333pt;}
.wsa7{word-spacing:2.874667pt;}
.wsd2{word-spacing:2.918400pt;}
.ws83{word-spacing:3.083733pt;}
.ws7c{word-spacing:3.121067pt;}
.wsf{word-spacing:3.136000pt;}
.ws3b{word-spacing:3.188267pt;}
.ws1c{word-spacing:3.240533pt;}
.ws38{word-spacing:3.292800pt;}
.wsc0{word-spacing:3.323733pt;}
.ws81{word-spacing:3.345067pt;}
.ws5b{word-spacing:3.397333pt;}
.ws63{word-spacing:3.449600pt;}
.wse7{word-spacing:3.526400pt;}
.ws1b{word-spacing:3.554133pt;}
.wsce{word-spacing:3.648000pt;}
.ws67{word-spacing:3.658667pt;}
.ws2e{word-spacing:3.660800pt;}
.ws57{word-spacing:3.710933pt;}
.ws55{word-spacing:3.815467pt;}
.ws3c{word-spacing:3.867733pt;}
.wsd3{word-spacing:3.891200pt;}
.ws4f{word-spacing:3.920000pt;}
.ws4d{word-spacing:4.024533pt;}
.wsbd{word-spacing:4.053333pt;}
.ws91{word-spacing:4.076800pt;}
.ws49{word-spacing:4.129067pt;}
.ws59{word-spacing:4.233600pt;}
.wsd1{word-spacing:4.296533pt;}
.wscf{word-spacing:4.337067pt;}
.ws77{word-spacing:4.338133pt;}
.ws78{word-spacing:4.390400pt;}
.ws6{word-spacing:4.442667pt;}
.wsde{word-spacing:4.492800pt;}
.ws7{word-spacing:4.494933pt;}
.ws42{word-spacing:4.547200pt;}
.wsb8{word-spacing:4.599467pt;}
.ws95{word-spacing:4.620800pt;}
.wse{word-spacing:4.651733pt;}
.ws29{word-spacing:4.782933pt;}
.ws1f{word-spacing:4.965333pt;}
.ws7f{word-spacing:4.992000pt;}
.ws8c{word-spacing:5.122133pt;}
.ws70{word-spacing:5.226667pt;}
.wsc9{word-spacing:5.278933pt;}
.ws9f{word-spacing:5.331200pt;}
.ws94{word-spacing:5.350400pt;}
.ws8a{word-spacing:5.383467pt;}
.ws30{word-spacing:5.644800pt;}
.ws53{word-spacing:5.697067pt;}
.wsba{word-spacing:5.749333pt;}
.ws3f{word-spacing:5.801600pt;}
.wsc5{word-spacing:5.853867pt;}
.wsa4{word-spacing:5.958400pt;}
.ws74{word-spacing:6.167467pt;}
.ws21{word-spacing:6.324267pt;}
.wsb4{word-spacing:6.637867pt;}
.wse6{word-spacing:6.647467pt;}
.ws71{word-spacing:6.656000pt;}
.wsbb{word-spacing:6.690133pt;}
.ws76{word-spacing:6.794667pt;}
.wsd5{word-spacing:6.846933pt;}
.ws3a{word-spacing:6.899200pt;}
.ws66{word-spacing:7.003733pt;}
.wsaf{word-spacing:7.265067pt;}
.ws9c{word-spacing:7.369600pt;}
.ws58{word-spacing:7.630933pt;}
.ws88{word-spacing:7.654400pt;}
.ws8f{word-spacing:8.101333pt;}
.ws1d{word-spacing:8.205867pt;}
.ws5d{word-spacing:8.309333pt;}
.wsca{word-spacing:8.624000pt;}
.ws6a{word-spacing:8.728533pt;}
.wsb1{word-spacing:8.833067pt;}
.ws5f{word-spacing:8.876800pt;}
.ws35{word-spacing:8.885333pt;}
.ws5{word-spacing:8.989867pt;}
.ws64{word-spacing:9.094400pt;}
.wscb{word-spacing:9.303467pt;}
.ws8e{word-spacing:9.355733pt;}
.ws79{word-spacing:9.617067pt;}
.ws97{word-spacing:10.025600pt;}
.ws20{word-spacing:10.610133pt;}
.wsdb{word-spacing:10.752000pt;}
.ws75{word-spacing:11.028267pt;}
.ws80{word-spacing:11.481600pt;}
.wsdf{word-spacing:12.729600pt;}
.ws2c{word-spacing:13.020800pt;}
.wsac{word-spacing:13.376000pt;}
.wsda{word-spacing:15.530667pt;}
.ws7a{word-spacing:18.442667pt;}
.wsa8{word-spacing:20.631467pt;}
.wsab{word-spacing:23.549867pt;}
.wsad{word-spacing:24.036267pt;}
.wsae{word-spacing:36.520533pt;}
.ws1a{word-spacing:1429.448533pt;}
._7{margin-left:-1429.433600pt;}
._b{margin-left:-6.742400pt;}
._4{margin-left:-5.691840pt;}
._3{margin-left:-4.455360pt;}
._6{margin-left:-2.719147pt;}
._2{margin-left:-1.590400pt;}
._0{width:1.642667pt;}
._1{width:3.040000pt;}
._10{width:6.808816pt;}
._15{width:13.376000pt;}
._d{width:19.009796pt;}
._13{width:20.645181pt;}
._12{width:22.414150pt;}
._11{width:24.037355pt;}
._c{width:25.251483pt;}
._f{width:26.791750pt;}
._e{width:28.291930pt;}
._14{width:29.832196pt;}
._16{width:43.673280pt;}
._8{width:46.491578pt;}
._9{width:48.680403pt;}
._5{width:50.828823pt;}
._a{width:1160.373333pt;}
.fsa{font-size:23.630933pt;}
.fs5{font-size:30.471467pt;}
.fs6{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs7{font-size:41.600000pt;}
.fs9{font-size:42.666667pt;}
.fs4{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:69.065600pt;}
.y85{bottom:126.992267pt;}
.y116{bottom:127.047733pt;}
.ye5{bottom:127.048667pt;}
.y36{bottom:127.052933pt;}
.ybb{bottom:127.057200pt;}
.y95{bottom:127.061467pt;}
.y1f{bottom:127.065733pt;}
.ye4{bottom:141.052933pt;}
.yc8{bottom:141.056267pt;}
.y35{bottom:141.057200pt;}
.yba{bottom:141.061467pt;}
.yaf{bottom:141.064800pt;}
.y94{bottom:141.065733pt;}
.y84{bottom:145.890000pt;}
.y115{bottom:145.946400pt;}
.y63{bottom:145.949867pt;}
.y1e{bottom:145.954933pt;}
.ye3{bottom:155.057200pt;}
.y34{bottom:155.061467pt;}
.y93{bottom:155.065733pt;}
.y114{bottom:159.950667pt;}
.yc7{bottom:159.954933pt;}
.y1d{bottom:159.959200pt;}
.yae{bottom:159.963467pt;}
.y83{bottom:164.779200pt;}
.y62{bottom:164.848533pt;}
.ye2{bottom:169.061467pt;}
.y33{bottom:169.065733pt;}
.y113{bottom:173.954933pt;}
.yad{bottom:173.959200pt;}
.y1c{bottom:173.963467pt;}
.y82{bottom:178.783467pt;}
.y61{bottom:178.852800pt;}
.y32{bottom:183.060533pt;}
.ye1{bottom:183.065733pt;}
.ya5{bottom:184.996267pt;}
.y112{bottom:187.959200pt;}
.yac{bottom:187.962667pt;}
.yc6{bottom:187.963467pt;}
.y121{bottom:190.109333pt;}
.y122{bottom:190.116533pt;}
.y81{bottom:192.787733pt;}
.y60{bottom:192.857067pt;}
.y1b{bottom:192.861333pt;}
.y111{bottom:201.949867pt;}
.y31{bottom:201.959200pt;}
.ye0{bottom:201.963467pt;}
.y120{bottom:202.376000pt;}
.ya4{bottom:204.334933pt;}
.y80{bottom:206.787733pt;}
.y5f{bottom:206.861333pt;}
.y92{bottom:211.759067pt;}
.y11f{bottom:214.642667pt;}
.y30{bottom:215.963467pt;}
.y110{bottom:220.848533pt;}
.yab{bottom:220.861333pt;}
.ya3{bottom:223.673600pt;}
.yc5{bottom:223.721600pt;}
.y7f{bottom:225.685600pt;}
.yfc{bottom:225.753867pt;}
.yfd{bottom:225.759067pt;}
.y11e{bottom:226.909333pt;}
.y2f{bottom:234.852800pt;}
.ydf{bottom:234.861333pt;}
.y11d{bottom:239.176000pt;}
.y5e{bottom:242.990933pt;}
.ya2{bottom:243.012267pt;}
.y19{bottom:243.028267pt;}
.yc4{bottom:243.060267pt;}
.y1a{bottom:243.065600pt;}
.y7e{bottom:244.583333pt;}
.yfb{bottom:244.652533pt;}
.y2e{bottom:248.857067pt;}
.yde{bottom:253.754800pt;}
.yfa{bottom:258.656800pt;}
.y11c{bottom:259.005333pt;}
.y5d{bottom:262.329600pt;}
.ya1{bottom:262.350933pt;}
.y18{bottom:262.366933pt;}
.yc1{bottom:262.372267pt;}
.yb9{bottom:262.382933pt;}
.y91{bottom:262.393600pt;}
.yc3{bottom:262.398933pt;}
.y2d{bottom:262.861333pt;}
.y7d{bottom:263.464000pt;}
.yc2{bottom:266.750133pt;}
.ydc{bottom:267.753867pt;}
.ydd{bottom:267.759067pt;}
.y11b{bottom:271.272000pt;}
.yf9{bottom:272.656800pt;}
.y2c{bottom:276.861333pt;}
.y7c{bottom:277.468267pt;}
.y5c{bottom:281.668267pt;}
.ya0{bottom:281.689600pt;}
.y17{bottom:281.705600pt;}
.yc0{bottom:281.710933pt;}
.y8e{bottom:281.716267pt;}
.yb8{bottom:281.721600pt;}
.y8f{bottom:281.732267pt;}
.y10f{bottom:281.754800pt;}
.y11a{bottom:283.538667pt;}
.y90{bottom:286.083467pt;}
.ydb{bottom:286.652533pt;}
.y7b{bottom:291.472533pt;}
.yf8{bottom:291.554533pt;}
.y10e{bottom:295.759067pt;}
.y119{bottom:295.805333pt;}
.yda{bottom:300.656800pt;}
.y5b{bottom:301.006933pt;}
.y9f{bottom:301.028267pt;}
.y16{bottom:301.044267pt;}
.ybf{bottom:301.049600pt;}
.y8d{bottom:301.054933pt;}
.yb7{bottom:301.060267pt;}
.y7a{bottom:305.476800pt;}
.y10d{bottom:314.648267pt;}
.y118{bottom:315.634667pt;}
.y79{bottom:319.481067pt;}
.yd9{bottom:319.554533pt;}
.y5a{bottom:320.345600pt;}
.y9e{bottom:320.366933pt;}
.y15{bottom:320.382933pt;}
.y2a{bottom:320.388267pt;}
.y8c{bottom:320.393600pt;}
.y2b{bottom:320.398933pt;}
.y117{bottom:327.901333pt;}
.y10c{bottom:328.652533pt;}
.y59{bottom:339.684267pt;}
.y9d{bottom:339.705600pt;}
.yf7{bottom:339.710933pt;}
.y14{bottom:339.721600pt;}
.y29{bottom:339.726933pt;}
.y8b{bottom:339.732267pt;}
.y10b{bottom:342.656800pt;}
.y8a{bottom:344.083467pt;}
.y10a{bottom:356.656800pt;}
.y58{bottom:359.022933pt;}
.yb6{bottom:359.038933pt;}
.y9c{bottom:359.044267pt;}
.y28{bottom:359.049600pt;}
.ya8{bottom:359.054933pt;}
.y13{bottom:359.060267pt;}
.yaa{bottom:359.065600pt;}
.ya9{bottom:363.416800pt;}
.y109{bottom:375.554533pt;}
.y57{bottom:378.361600pt;}
.yb5{bottom:378.377600pt;}
.y9b{bottom:378.382933pt;}
.y11{bottom:378.388267pt;}
.y88{bottom:378.393600pt;}
.y89{bottom:378.398933pt;}
.y12{bottom:382.750133pt;}
.y56{bottom:397.700267pt;}
.yb4{bottom:397.716267pt;}
.y9a{bottom:397.721600pt;}
.y10{bottom:397.726933pt;}
.y86{bottom:397.732267pt;}
.y87{bottom:402.083467pt;}
.y55{bottom:417.038933pt;}
.y27{bottom:417.044267pt;}
.y78{bottom:417.054933pt;}
.y99{bottom:417.060267pt;}
.ye{bottom:417.065600pt;}
.yf{bottom:421.416800pt;}
.y54{bottom:436.377600pt;}
.y26{bottom:436.382933pt;}
.yd{bottom:436.388267pt;}
.y77{bottom:436.393600pt;}
.y98{bottom:436.398933pt;}
.y74{bottom:455.700267pt;}
.y53{bottom:455.716267pt;}
.y25{bottom:455.721600pt;}
.yc{bottom:455.726933pt;}
.y76{bottom:455.732267pt;}
.y97{bottom:456.432933pt;}
.y75{bottom:460.083467pt;}
.y96{bottom:470.836933pt;}
.yf6{bottom:475.033600pt;}
.y73{bottom:475.038933pt;}
.y52{bottom:475.054933pt;}
.y24{bottom:475.060267pt;}
.yb{bottom:475.065600pt;}
.yf5{bottom:494.372267pt;}
.y72{bottom:494.377600pt;}
.ya{bottom:494.382933pt;}
.y21{bottom:494.393600pt;}
.y23{bottom:494.398933pt;}
.y22{bottom:498.750133pt;}
.y50{bottom:513.705600pt;}
.yf4{bottom:513.710933pt;}
.y71{bottom:513.716267pt;}
.y9{bottom:513.721600pt;}
.y20{bottom:513.732267pt;}
.y51{bottom:518.083467pt;}
.y4f{bottom:533.044267pt;}
.yf3{bottom:533.049600pt;}
.y70{bottom:533.054933pt;}
.y8{bottom:533.060267pt;}
.y4e{bottom:552.382933pt;}
.yf2{bottom:552.388267pt;}
.y6f{bottom:552.393600pt;}
.y7{bottom:552.398933pt;}
.y3b{bottom:571.716267pt;}
.yb3{bottom:571.720267pt;}
.y4d{bottom:571.721600pt;}
.ybe{bottom:571.724267pt;}
.yd7{bottom:571.726933pt;}
.ya7{bottom:571.728267pt;}
.y6{bottom:571.732267pt;}
.yd8{bottom:576.083467pt;}
.y12d{bottom:576.180667pt;}
.y3a{bottom:586.120267pt;}
.yb2{bottom:586.124267pt;}
.ybd{bottom:586.128267pt;}
.ya6{bottom:586.132267pt;}
.y12c{bottom:590.843600pt;}
.y6c{bottom:591.033600pt;}
.y4c{bottom:591.060267pt;}
.y6e{bottom:591.065600pt;}
.y6d{bottom:595.416800pt;}
.y39{bottom:600.524267pt;}
.yb1{bottom:600.528267pt;}
.ybc{bottom:600.532267pt;}
.y12b{bottom:605.506533pt;}
.y12a{bottom:605.510267pt;}
.y49{bottom:610.361600pt;}
.y6b{bottom:610.372267pt;}
.y108{bottom:610.382933pt;}
.yd6{bottom:610.388267pt;}
.y4b{bottom:610.398933pt;}
.y4a{bottom:614.750133pt;}
.y38{bottom:614.928267pt;}
.yb0{bottom:614.932267pt;}
.y129{bottom:616.798800pt;}
.y37{bottom:629.332267pt;}
.y48{bottom:629.700267pt;}
.y6a{bottom:629.710933pt;}
.yf1{bottom:629.721600pt;}
.yd5{bottom:629.726933pt;}
.yd2{bottom:649.022933pt;}
.y47{bottom:649.038933pt;}
.y69{bottom:649.049600pt;}
.yf0{bottom:649.060267pt;}
.yd4{bottom:649.065600pt;}
.yd3{bottom:653.416800pt;}
.yd1{bottom:668.361600pt;}
.yed{bottom:668.366933pt;}
.y46{bottom:668.377600pt;}
.y107{bottom:668.382933pt;}
.y68{bottom:668.388267pt;}
.yef{bottom:668.398933pt;}
.yee{bottom:672.750133pt;}
.yd0{bottom:687.700267pt;}
.yec{bottom:687.705600pt;}
.y45{bottom:687.716267pt;}
.y106{bottom:687.721600pt;}
.y67{bottom:687.726933pt;}
.y5{bottom:702.393600pt;}
.ycf{bottom:707.038933pt;}
.yeb{bottom:707.044267pt;}
.y44{bottom:707.054933pt;}
.y105{bottom:707.060267pt;}
.y66{bottom:707.065600pt;}
.y65{bottom:711.416800pt;}
.y128{bottom:711.952667pt;}
.y103{bottom:726.372267pt;}
.yce{bottom:726.377600pt;}
.yea{bottom:726.382933pt;}
.y43{bottom:726.393600pt;}
.y4{bottom:726.398933pt;}
.y127{bottom:726.634267pt;}
.y104{bottom:730.750133pt;}
.y126{bottom:741.297200pt;}
.y40{bottom:745.705600pt;}
.y102{bottom:745.710933pt;}
.ycd{bottom:745.716267pt;}
.ye9{bottom:745.721600pt;}
.y42{bottom:745.732267pt;}
.y41{bottom:750.083467pt;}
.y125{bottom:755.960133pt;}
.y3f{bottom:765.044267pt;}
.y101{bottom:765.049600pt;}
.ycc{bottom:765.054933pt;}
.ye8{bottom:765.060267pt;}
.y3{bottom:765.065600pt;}
.y64{bottom:769.416800pt;}
.y124{bottom:770.623067pt;}
.y3e{bottom:784.382933pt;}
.y100{bottom:784.388267pt;}
.ycb{bottom:784.393600pt;}
.ye7{bottom:784.398933pt;}
.y123{bottom:785.286000pt;}
.ye6{bottom:788.750133pt;}
.y3d{bottom:803.721600pt;}
.yff{bottom:803.726933pt;}
.yca{bottom:803.732267pt;}
.y3c{bottom:823.060267pt;}
.yfe{bottom:823.065600pt;}
.y2{bottom:842.398933pt;}
.yc9{bottom:846.750133pt;}
.h8{height:22.061342pt;}
.h9{height:26.969600pt;}
.ha{height:29.346133pt;}
.h10{height:30.534400pt;}
.h2{height:32.710400pt;}
.h11{height:32.713600pt;}
.h12{height:32.714133pt;}
.hd{height:32.731200pt;}
.h14{height:32.748267pt;}
.hf{height:32.764800pt;}
.h15{height:32.782400pt;}
.he{height:33.571200pt;}
.h17{height:34.560000pt;}
.h16{height:39.146667pt;}
.h6{height:44.374400pt;}
.h13{height:44.395733pt;}
.h7{height:44.417067pt;}
.hc{height:44.438400pt;}
.hb{height:44.459733pt;}
.h18{height:46.208000pt;}
.h3{height:47.520000pt;}
.h5{height:60.256000pt;}
.h4{height:77.226667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x27{left:99.212667pt;}
.x8{left:103.369867pt;}
.x40{left:108.992667pt;}
.x28{left:111.957733pt;}
.x3{left:117.165333pt;}
.x2{left:128.504000pt;}
.x4f{left:132.001733pt;}
.x17{left:143.764133pt;}
.x18{left:151.826800pt;}
.x6{left:170.433600pt;}
.x1f{left:171.730533pt;}
.x4b{left:176.545733pt;}
.x20{left:179.793200pt;}
.x47{left:184.605200pt;}
.x48{left:192.719867pt;}
.x3a{left:205.476133pt;}
.x3e{left:208.622400pt;}
.x3b{left:213.621067pt;}
.x3f{left:216.767200pt;}
.x49{left:222.620267pt;}
.x2e{left:234.933333pt;}
.x50{left:255.809467pt;}
.x4a{left:259.064267pt;}
.xd{left:260.213600pt;}
.xe{left:264.244933pt;}
.x30{left:267.303867pt;}
.x31{left:275.366533pt;}
.x4d{left:288.449733pt;}
.x19{left:305.678933pt;}
.x3c{left:309.036400pt;}
.x1a{left:313.741600pt;}
.x3d{left:317.181333pt;}
.x2f{left:321.259867pt;}
.x4e{left:325.039333pt;}
.x33{left:328.818933pt;}
.x37{left:329.788800pt;}
.x2a{left:336.378000pt;}
.x36{left:341.662800pt;}
.x2c{left:343.912800pt;}
.x1d{left:346.073067pt;}
.xc{left:349.984267pt;}
.x2d{left:351.975467pt;}
.x1e{left:354.135600pt;}
.x43{left:362.874667pt;}
.x9{left:369.298533pt;}
.x44{left:370.661600pt;}
.xa{left:373.329867pt;}
.x14{left:389.829600pt;}
.x15{left:397.727600pt;}
.x32{left:402.043467pt;}
.x29{left:410.571867pt;}
.x11{left:440.203067pt;}
.x12{left:444.234400pt;}
.x4{left:446.938000pt;}
.x5{left:450.887067pt;}
.x41{left:454.490133pt;}
.x42{left:462.634933pt;}
.xf{left:463.904400pt;}
.x10{left:467.935600pt;}
.x38{left:491.602267pt;}
.x23{left:496.566667pt;}
.x39{left:499.441733pt;}
.x45{left:513.954400pt;}
.x46{left:522.069067pt;}
.x7{left:525.918267pt;}
.x24{left:535.810267pt;}
.x2b{left:540.005867pt;}
.x25{left:544.581600pt;}
.xb{left:551.022800pt;}
.x26{left:552.644267pt;}
.x16{left:558.872133pt;}
.x1b{left:560.444400pt;}
.x34{left:564.325467pt;}
.x4c{left:566.409200pt;}
.x1c{left:568.507067pt;}
.x35{left:572.470400pt;}
.x13{left:581.686800pt;}
.x21{left:611.779867pt;}
.x22{left:619.842533pt;}
}




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