
    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_129b26e33478bd409591aca9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.161621;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_3d297d75b36c1911b2903ea5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_b748d48a6c97b1750b94d046.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;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_a5f49fdb543efbd91e20c028.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.161621;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_301c743dba651f9d5de4b4b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043457;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_2bc772621c555b7985ba42de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912598;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a5f49fdb543efbd91e20c028.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.161621;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6fde7150e85298bf4d82af7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937012;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2{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);}
.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);}
.m4{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);}
.m3{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:-18.900600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.906600px;}
.v1{vertical-align:23.100000px;}
.lse{letter-spacing:-0.600000px;}
.ls21{letter-spacing:-0.504000px;}
.ls17{letter-spacing:-0.480000px;}
.lsa{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.001200px;}
.ls29{letter-spacing:0.001800px;}
.ls2a{letter-spacing:0.033600px;}
.ls3{letter-spacing:0.052200px;}
.ls0{letter-spacing:0.052800px;}
.ls2b{letter-spacing:0.073200px;}
.ls1a{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.129000px;}
.ls2{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.138600px;}
.ls22{letter-spacing:0.157500px;}
.lsc{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.ls2c{letter-spacing:0.251400px;}
.ls2e{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.300000px;}
.ls28{letter-spacing:0.313200px;}
.ls27{letter-spacing:0.313800px;}
.ls15{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.375000px;}
.ls1f{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.385200px;}
.ls6{letter-spacing:0.427200px;}
.ls12{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.462000px;}
.ls24{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.486000px;}
.ls5{letter-spacing:0.547800px;}
.ls11{letter-spacing:0.594000px;}
.ls20{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.743400px;}
.ls1c{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.882000px;}
.lsb{letter-spacing:0.900000px;}
.ls4{letter-spacing:0.914400px;}
.ls2d{letter-spacing:0.966000px;}
.ls23{letter-spacing:1.020000px;}
.ls19{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.098600px;}
.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;}
}
.ws0{word-spacing:-32.520000px;}
.ws6{word-spacing:-17.640000px;}
.ws73{word-spacing:-17.580000px;}
.wscd{word-spacing:-17.280000px;}
.ws23{word-spacing:-17.160000px;}
.ws5{word-spacing:-16.080000px;}
.ws3{word-spacing:-15.444000px;}
.ws2{word-spacing:-15.228000px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:-12.658800px;}
.ws7{word-spacing:-12.348000px;}
.wsce{word-spacing:-11.220000px;}
.ws91{word-spacing:-8.694000px;}
.wsa9{word-spacing:-6.741000px;}
.wsb{word-spacing:-6.534000px;}
.wsad{word-spacing:-5.796000px;}
.ws2c{word-spacing:-5.607000px;}
.ws92{word-spacing:-5.166000px;}
.ws7c{word-spacing:-5.103000px;}
.ws32{word-spacing:-4.725000px;}
.wsba{word-spacing:-4.536000px;}
.wsa4{word-spacing:-4.473000px;}
.ws9d{word-spacing:-4.284000px;}
.ws2f{word-spacing:-4.095000px;}
.ws41{word-spacing:-4.032000px;}
.ws9e{word-spacing:-3.906000px;}
.wsb6{word-spacing:-3.843000px;}
.ws8e{word-spacing:-3.717000px;}
.ws5b{word-spacing:-3.087000px;}
.wsd5{word-spacing:-3.060000px;}
.wsb7{word-spacing:-2.772000px;}
.ws5e{word-spacing:-2.709000px;}
.ws79{word-spacing:-2.583000px;}
.ws30{word-spacing:-2.520000px;}
.ws88{word-spacing:-2.467500px;}
.ws8a{word-spacing:-2.457000px;}
.wsa6{word-spacing:-2.205000px;}
.ws2b{word-spacing:-2.142000px;}
.wsd8{word-spacing:-2.091000px;}
.wsaa{word-spacing:-2.079000px;}
.ws89{word-spacing:-2.052000px;}
.wse0{word-spacing:-2.040000px;}
.ws45{word-spacing:-2.016000px;}
.ws17{word-spacing:-1.980000px;}
.wse2{word-spacing:-1.938000px;}
.ws2e{word-spacing:-1.890000px;}
.wsa8{word-spacing:-1.827000px;}
.ws60{word-spacing:-1.701000px;}
.ws3f{word-spacing:-1.638000px;}
.ws82{word-spacing:-1.575000px;}
.wsdf{word-spacing:-1.377000px;}
.wsd6{word-spacing:-1.275000px;}
.ws18{word-spacing:-1.260000px;}
.ws9f{word-spacing:-1.134000px;}
.ws37{word-spacing:-1.071000px;}
.ws58{word-spacing:-1.008000px;}
.wsbd{word-spacing:-0.945000px;}
.ws16{word-spacing:-0.900000px;}
.ws11{word-spacing:-0.864000px;}
.ws1e{word-spacing:-0.840000px;}
.ws27{word-spacing:-0.819000px;}
.ws6e{word-spacing:-0.787500px;}
.ws1c{word-spacing:-0.756000px;}
.ws21{word-spacing:-0.750000px;}
.ws9{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.714000px;}
.wsbb{word-spacing:-0.693000px;}
.ws6f{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.630000px;}
.ws8c{word-spacing:-0.567000px;}
.ws84{word-spacing:-0.504000px;}
.ws10{word-spacing:-0.486000px;}
.ws1b{word-spacing:-0.480000px;}
.wsc{word-spacing:-0.432000px;}
.wscf{word-spacing:-0.420000px;}
.wse{word-spacing:-0.324000px;}
.wscc{word-spacing:-0.300000px;}
.wsf{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.252000px;}
.ws55{word-spacing:-0.189000px;}
.ws15{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.162000px;}
.wscb{word-spacing:-0.120000px;}
.ws8{word-spacing:0.000000px;}
.ws24{word-spacing:0.063000px;}
.ws81{word-spacing:0.189000px;}
.wsd7{word-spacing:0.255000px;}
.ws78{word-spacing:0.315000px;}
.ws19{word-spacing:0.360000px;}
.ws8d{word-spacing:0.441000px;}
.ws3a{word-spacing:0.504000px;}
.ws44{word-spacing:0.567000px;}
.wsd9{word-spacing:0.612000px;}
.ws3c{word-spacing:0.693000px;}
.wsde{word-spacing:0.714000px;}
.ws94{word-spacing:0.756000px;}
.ws3e{word-spacing:0.819000px;}
.wsa3{word-spacing:0.882000px;}
.ws93{word-spacing:0.892500px;}
.ws5f{word-spacing:1.008000px;}
.ws1f{word-spacing:1.012500px;}
.ws7a{word-spacing:1.071000px;}
.ws39{word-spacing:1.197000px;}
.wsd2{word-spacing:1.323000px;}
.wsa7{word-spacing:1.386000px;}
.wsc7{word-spacing:1.575000px;}
.wsc1{word-spacing:1.638000px;}
.ws7b{word-spacing:1.701000px;}
.ws20{word-spacing:1.725000px;}
.ws56{word-spacing:1.764000px;}
.ws5d{word-spacing:1.827000px;}
.wsb8{word-spacing:1.890000px;}
.ws3b{word-spacing:1.953000px;}
.ws14{word-spacing:1.980000px;}
.wsda{word-spacing:2.040000px;}
.ws8f{word-spacing:2.142000px;}
.ws13{word-spacing:2.160000px;}
.ws33{word-spacing:2.268000px;}
.ws7d{word-spacing:2.394000px;}
.wse1{word-spacing:2.448000px;}
.ws25{word-spacing:2.457000px;}
.wsbf{word-spacing:2.520000px;}
.ws1a{word-spacing:2.580000px;}
.wsa1{word-spacing:2.583000px;}
.ws6a{word-spacing:2.625000px;}
.ws7e{word-spacing:2.646000px;}
.wsd4{word-spacing:2.652000px;}
.wse3{word-spacing:2.703000px;}
.wsa0{word-spacing:2.772000px;}
.ws4c{word-spacing:2.808000px;}
.wsc8{word-spacing:2.898000px;}
.wsc4{word-spacing:2.961000px;}
.ws6b{word-spacing:3.186000px;}
.wsd3{word-spacing:3.264000px;}
.ws4b{word-spacing:3.412500px;}
.ws43{word-spacing:3.465000px;}
.ws49{word-spacing:3.510000px;}
.ws9c{word-spacing:3.717000px;}
.ws69{word-spacing:3.834000px;}
.ws85{word-spacing:3.843000px;}
.wsaf{word-spacing:3.969000px;}
.ws5a{word-spacing:4.095000px;}
.ws97{word-spacing:4.221000px;}
.ws48{word-spacing:4.305000px;}
.ws90{word-spacing:4.347000px;}
.ws42{word-spacing:4.473000px;}
.ws61{word-spacing:4.536000px;}
.wsb1{word-spacing:4.599000px;}
.ws47{word-spacing:4.725000px;}
.ws3d{word-spacing:4.788000px;}
.wsd0{word-spacing:4.914000px;}
.wsc3{word-spacing:5.040000px;}
.wsb4{word-spacing:5.103000px;}
.ws35{word-spacing:5.166000px;}
.ws57{word-spacing:5.229000px;}
.ws9a{word-spacing:5.355000px;}
.wsc6{word-spacing:5.481000px;}
.wsac{word-spacing:5.670000px;}
.ws34{word-spacing:5.859000px;}
.ws29{word-spacing:5.922000px;}
.ws26{word-spacing:6.048000px;}
.ws80{word-spacing:6.111000px;}
.ws70{word-spacing:6.156000px;}
.wsae{word-spacing:6.174000px;}
.wsa2{word-spacing:6.300000px;}
.ws95{word-spacing:6.318000px;}
.ws59{word-spacing:6.426000px;}
.ws6d{word-spacing:6.642000px;}
.wsd1{word-spacing:6.678000px;}
.ws74{word-spacing:6.741000px;}
.ws64{word-spacing:6.804000px;}
.ws77{word-spacing:6.867000px;}
.ws99{word-spacing:6.930000px;}
.ws83{word-spacing:6.993000px;}
.ws4a{word-spacing:7.074000px;}
.ws12{word-spacing:7.080000px;}
.wsb9{word-spacing:7.119000px;}
.wsc9{word-spacing:7.497000px;}
.wsc5{word-spacing:7.623000px;}
.wsdd{word-spacing:7.803000px;}
.wsb3{word-spacing:7.875000px;}
.wsdc{word-spacing:8.211000px;}
.ws28{word-spacing:8.379000px;}
.ws36{word-spacing:8.442000px;}
.wsb0{word-spacing:8.505000px;}
.ws67{word-spacing:8.802000px;}
.wsbc{word-spacing:8.883000px;}
.ws76{word-spacing:9.009000px;}
.ws86{word-spacing:9.261000px;}
.wsb2{word-spacing:9.450000px;}
.ws9b{word-spacing:9.576000px;}
.wsbe{word-spacing:9.639000px;}
.ws72{word-spacing:9.666000px;}
.ws5c{word-spacing:9.891000px;}
.ws6c{word-spacing:9.990000px;}
.ws87{word-spacing:10.521000px;}
.wsc2{word-spacing:10.647000px;}
.ws96{word-spacing:10.854000px;}
.wsc0{word-spacing:10.899000px;}
.ws65{word-spacing:11.178000px;}
.ws2a{word-spacing:11.340000px;}
.wsa5{word-spacing:11.466000px;}
.ws75{word-spacing:11.592000px;}
.ws66{word-spacing:11.880000px;}
.wsb5{word-spacing:12.159000px;}
.ws98{word-spacing:12.915000px;}
.ws71{word-spacing:13.878000px;}
.wsdb{word-spacing:14.637000px;}
.ws40{word-spacing:14.679000px;}
.wsca{word-spacing:15.246000px;}
.ws46{word-spacing:15.624000px;}
.ws8b{word-spacing:15.876000px;}
.ws68{word-spacing:15.930000px;}
.ws2d{word-spacing:16.128000px;}
.ws31{word-spacing:16.254000px;}
.ws7f{word-spacing:16.821000px;}
.wsab{word-spacing:18.963000px;}
.ws63{word-spacing:20.142000px;}
.ws62{word-spacing:21.384000px;}
.ws50{word-spacing:564.300000px;}
.ws4f{word-spacing:613.656000px;}
.ws54{word-spacing:623.538000px;}
.ws51{word-spacing:632.178000px;}
.ws53{word-spacing:684.990000px;}
.ws4e{word-spacing:711.288000px;}
.ws52{word-spacing:776.088000px;}
.ws4d{word-spacing:778.302000px;}
._f{margin-left:-26.163000px;}
._6{margin-left:-9.061200px;}
._4{margin-left:-5.256000px;}
._b{margin-left:-3.870300px;}
._2{margin-left:-2.776200px;}
._1{margin-left:-1.536000px;}
._0{width:1.285200px;}
._5{width:2.621400px;}
._3{width:3.950400px;}
._10{width:5.727300px;}
._e{width:32.436000px;}
._11{width:39.270000px;}
._d{width:44.931000px;}
._c{width:47.073000px;}
._12{width:48.450000px;}
._a{width:550.152000px;}
._7{width:588.168000px;}
._8{width:603.990000px;}
._9{width:746.442000px;}
.fc2{color:rgb(0,133,188);}
.fc1{color:rgb(38,129,107);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:6.000000px;}
.fs5{font-size:18.000000px;}
.fs9{font-size:37.500000px;}
.fs7{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:46.200000px;}
.fsc{font-size:51.000000px;}
.fsb{font-size:52.500000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:73.545750px;}
.y27{bottom:85.547250px;}
.y60{bottom:87.038250px;}
.y6a{bottom:87.054750px;}
.y108{bottom:87.060750px;}
.yac{bottom:87.070500px;}
.y26{bottom:97.548750px;}
.yab{bottom:104.512500px;}
.y5f{bottom:106.584000px;}
.y88{bottom:106.588500px;}
.yd3{bottom:106.590000px;}
.y69{bottom:106.600500px;}
.y107{bottom:106.606500px;}
.y158{bottom:109.037550px;}
.y25{bottom:109.550250px;}
.y24{bottom:121.551750px;}
.yaa{bottom:121.954500px;}
.y157{bottom:124.037550px;}
.y5e{bottom:126.129750px;}
.y87{bottom:126.134250px;}
.yd2{bottom:126.135750px;}
.y68{bottom:126.146250px;}
.y106{bottom:126.150750px;}
.y156{bottom:139.037550px;}
.ya9{bottom:139.396500px;}
.y5d{bottom:145.675500px;}
.y86{bottom:145.680000px;}
.yd1{bottom:145.681500px;}
.y67{bottom:145.692000px;}
.y105{bottom:145.696500px;}
.y155{bottom:154.037550px;}
.y5c{bottom:165.221250px;}
.y85{bottom:165.225750px;}
.yd0{bottom:165.227250px;}
.y66{bottom:165.237750px;}
.y104{bottom:165.241500px;}
.y154{bottom:169.037550px;}
.y153{bottom:184.037550px;}
.y5b{bottom:184.767000px;}
.y84{bottom:184.771500px;}
.ycf{bottom:184.773000px;}
.y65{bottom:184.783500px;}
.y103{bottom:184.785750px;}
.y122{bottom:184.786500px;}
.y152{bottom:199.037550px;}
.y5a{bottom:204.312750px;}
.y83{bottom:204.317250px;}
.yce{bottom:204.318750px;}
.y64{bottom:204.329250px;}
.y102{bottom:204.331500px;}
.y151{bottom:214.037550px;}
.y101{bottom:223.845000px;}
.y59{bottom:223.858500px;}
.y82{bottom:223.863000px;}
.ycd{bottom:223.864500px;}
.y63{bottom:223.875000px;}
.y20{bottom:228.375000px;}
.y150{bottom:229.037550px;}
.y100{bottom:243.390750px;}
.y58{bottom:243.404250px;}
.y81{bottom:243.408750px;}
.ycc{bottom:243.410250px;}
.y62{bottom:243.420750px;}
.y1f{bottom:243.421500px;}
.y14f{bottom:244.043550px;}
.y14e{bottom:259.037550px;}
.yff{bottom:262.936500px;}
.y57{bottom:262.950000px;}
.y80{bottom:262.954500px;}
.ycb{bottom:262.956000px;}
.y1e{bottom:262.966500px;}
.y14d{bottom:274.037550px;}
.yfe{bottom:282.482250px;}
.y56{bottom:282.495750px;}
.y7f{bottom:282.500250px;}
.yca{bottom:282.501750px;}
.y1d{bottom:282.511500px;}
.y14c{bottom:289.043550px;}
.yfd{bottom:302.028000px;}
.y55{bottom:302.041500px;}
.y7e{bottom:302.046000px;}
.yc9{bottom:302.047500px;}
.y1c{bottom:302.056500px;}
.y14b{bottom:304.037550px;}
.y14a{bottom:319.037550px;}
.yfc{bottom:321.573750px;}
.y54{bottom:321.587250px;}
.y7d{bottom:321.591750px;}
.yc8{bottom:321.593250px;}
.y1b{bottom:321.601500px;}
.y149{bottom:334.043550px;}
.y6f{bottom:340.978650px;}
.yfb{bottom:341.119500px;}
.y53{bottom:341.133000px;}
.y7c{bottom:341.137500px;}
.yc7{bottom:341.139000px;}
.y121{bottom:341.145750px;}
.y1a{bottom:341.146500px;}
.y148{bottom:349.037550px;}
.y6e{bottom:358.420650px;}
.yfa{bottom:360.665250px;}
.y52{bottom:360.678750px;}
.ybc{bottom:360.680250px;}
.y7b{bottom:360.683250px;}
.yc6{bottom:360.684750px;}
.y19{bottom:360.691500px;}
.y147{bottom:364.037550px;}
.y146{bottom:379.043550px;}
.yf9{bottom:380.211000px;}
.ybb{bottom:380.226000px;}
.y7a{bottom:380.229000px;}
.yc5{bottom:380.230500px;}
.y18{bottom:380.236500px;}
.y145{bottom:394.037550px;}
.yf8{bottom:399.756750px;}
.y51{bottom:399.770250px;}
.yba{bottom:399.771750px;}
.y79{bottom:399.774750px;}
.yc4{bottom:399.776250px;}
.y17{bottom:399.781500px;}
.y144{bottom:409.037550px;}
.yf7{bottom:419.302500px;}
.y50{bottom:419.316000px;}
.yb9{bottom:419.317500px;}
.y78{bottom:419.320500px;}
.yc3{bottom:419.322000px;}
.y16{bottom:419.326500px;}
.y143{bottom:424.043550px;}
.yf6{bottom:438.848250px;}
.y4f{bottom:438.861750px;}
.yb8{bottom:438.863250px;}
.y77{bottom:438.866250px;}
.yc2{bottom:438.867750px;}
.y15{bottom:438.871500px;}
.y142{bottom:439.037550px;}
.ya8{bottom:450.532500px;}
.y141{bottom:454.037550px;}
.yf5{bottom:458.394000px;}
.y120{bottom:458.400750px;}
.y4e{bottom:458.407500px;}
.yb7{bottom:458.409000px;}
.y76{bottom:458.412000px;}
.yc1{bottom:458.413500px;}
.y14{bottom:458.416500px;}
.ya7{bottom:467.974500px;}
.y140{bottom:469.037550px;}
.yf4{bottom:477.939750px;}
.y11f{bottom:477.946500px;}
.y4d{bottom:477.953250px;}
.yb6{bottom:477.954750px;}
.y75{bottom:477.957750px;}
.yc0{bottom:477.959250px;}
.y13{bottom:477.961500px;}
.y13f{bottom:484.037550px;}
.ya6{bottom:485.416500px;}
.yf3{bottom:497.485500px;}
.y11e{bottom:497.492250px;}
.y4c{bottom:497.499000px;}
.yb5{bottom:497.500500px;}
.y74{bottom:497.503500px;}
.ybf{bottom:497.505000px;}
.y13e{bottom:499.049550px;}
.y13d{bottom:514.043550px;}
.yf2{bottom:517.031250px;}
.y11d{bottom:517.038000px;}
.y4b{bottom:517.044750px;}
.yb4{bottom:517.046250px;}
.y73{bottom:517.049250px;}
.ybe{bottom:517.050750px;}
.y12{bottom:517.051500px;}
.y13c{bottom:529.037550px;}
.yf1{bottom:536.577000px;}
.y11c{bottom:536.583750px;}
.y4a{bottom:536.590500px;}
.yb3{bottom:536.592000px;}
.y72{bottom:536.595000px;}
.y11{bottom:536.596500px;}
.y13b{bottom:544.037550px;}
.yf0{bottom:556.122750px;}
.y11b{bottom:556.129500px;}
.y49{bottom:556.136250px;}
.yb2{bottom:556.137750px;}
.y71{bottom:556.140750px;}
.y13a{bottom:559.043550px;}
.y139{bottom:574.037550px;}
.yef{bottom:575.668500px;}
.y11a{bottom:575.675250px;}
.y48{bottom:575.682000px;}
.yb1{bottom:575.683500px;}
.y70{bottom:575.686500px;}
.y138{bottom:589.037550px;}
.yee{bottom:595.214250px;}
.y119{bottom:595.221000px;}
.y47{bottom:595.227750px;}
.yb0{bottom:595.229250px;}
.y137{bottom:604.031550px;}
.yd7{bottom:612.395850px;}
.yed{bottom:614.760000px;}
.y118{bottom:614.766750px;}
.y46{bottom:614.773500px;}
.yaf{bottom:614.775000px;}
.y136{bottom:619.037550px;}
.yd6{bottom:629.837850px;}
.y135{bottom:634.043550px;}
.yec{bottom:634.305750px;}
.y117{bottom:634.312500px;}
.y45{bottom:634.319250px;}
.yae{bottom:634.320750px;}
.yd5{bottom:647.279850px;}
.y134{bottom:649.037550px;}
.yeb{bottom:653.851500px;}
.y116{bottom:653.858250px;}
.y44{bottom:653.865000px;}
.yad{bottom:653.866500px;}
.y9e{bottom:657.282600px;}
.y133{bottom:664.049550px;}
.yd4{bottom:664.721850px;}
.yea{bottom:673.397250px;}
.y115{bottom:673.404000px;}
.y43{bottom:673.410750px;}
.y9d{bottom:674.724600px;}
.y132{bottom:679.043550px;}
.ybd{bottom:682.227000px;}
.y10{bottom:689.386950px;}
.y9c{bottom:692.166600px;}
.ye9{bottom:692.943000px;}
.y114{bottom:692.949750px;}
.y42{bottom:692.956500px;}
.y131{bottom:694.037550px;}
.yf{bottom:706.786950px;}
.y130{bottom:709.031550px;}
.y9b{bottom:709.608600px;}
.ye8{bottom:712.488750px;}
.y113{bottom:712.495500px;}
.y12f{bottom:724.049550px;}
.ye{bottom:724.185450px;}
.y9a{bottom:727.050600px;}
.y6d{bottom:729.033000px;}
.ye7{bottom:732.034500px;}
.y112{bottom:732.041250px;}
.y41{bottom:732.046500px;}
.y12e{bottom:739.043550px;}
.yd{bottom:741.586950px;}
.y99{bottom:744.492600px;}
.ya5{bottom:744.519000px;}
.y6c{bottom:746.475000px;}
.ye6{bottom:751.580250px;}
.y111{bottom:751.587000px;}
.y12d{bottom:754.037550px;}
.yc{bottom:758.985450px;}
.y98{bottom:761.934600px;}
.ya4{bottom:761.961000px;}
.y6b{bottom:763.917000px;}
.y12c{bottom:769.043550px;}
.ye5{bottom:771.126000px;}
.y110{bottom:771.132750px;}
.yb{bottom:776.386950px;}
.y97{bottom:779.376600px;}
.ya3{bottom:779.403000px;}
.y12b{bottom:784.037550px;}
.ye4{bottom:790.671750px;}
.y40{bottom:790.673250px;}
.y10f{bottom:790.678500px;}
.ya{bottom:793.786800px;}
.y96{bottom:796.818600px;}
.ya2{bottom:796.845000px;}
.y12a{bottom:799.037550px;}
.ye3{bottom:810.217500px;}
.y3f{bottom:810.219000px;}
.y10e{bottom:810.224250px;}
.y129{bottom:814.037550px;}
.ya1{bottom:814.287000px;}
.y9{bottom:815.913450px;}
.y95{bottom:828.476100px;}
.y128{bottom:829.031550px;}
.ye2{bottom:829.763250px;}
.y3e{bottom:829.764750px;}
.y10d{bottom:829.770000px;}
.y8{bottom:841.339800px;}
.y94{bottom:844.446600px;}
.ye1{bottom:849.309000px;}
.y3d{bottom:849.310500px;}
.y10c{bottom:849.315750px;}
.y127{bottom:857.941200px;}
.y93{bottom:860.417100px;}
.y7{bottom:862.344300px;}
.ye0{bottom:868.854750px;}
.y3c{bottom:868.856250px;}
.y10b{bottom:868.861500px;}
.y92{bottom:876.387600px;}
.ydf{bottom:888.400500px;}
.y3b{bottom:888.402000px;}
.y10a{bottom:888.405750px;}
.y91{bottom:892.358100px;}
.y6{bottom:904.604100px;}
.yde{bottom:907.946250px;}
.y3a{bottom:907.947750px;}
.y126{bottom:907.949250px;}
.y109{bottom:907.951500px;}
.y90{bottom:908.328600px;}
.y8f{bottom:924.299100px;}
.ydd{bottom:927.492000px;}
.y39{bottom:927.493500px;}
.y125{bottom:927.495000px;}
.y5{bottom:939.104100px;}
.y8e{bottom:940.269600px;}
.y160{bottom:942.614550px;}
.ydc{bottom:947.037750px;}
.y38{bottom:947.039250px;}
.y124{bottom:947.040750px;}
.y8d{bottom:956.240100px;}
.y15f{bottom:957.608550px;}
.ydb{bottom:966.583500px;}
.y37{bottom:966.585000px;}
.y123{bottom:966.586500px;}
.y8c{bottom:972.210600px;}
.y15e{bottom:972.614550px;}
.yda{bottom:986.129250px;}
.y36{bottom:986.130750px;}
.y15d{bottom:987.608550px;}
.y8b{bottom:988.181100px;}
.y15c{bottom:1002.602550px;}
.y8a{bottom:1004.151600px;}
.yd9{bottom:1005.675000px;}
.y35{bottom:1005.676500px;}
.y3{bottom:1015.014900px;}
.y15b{bottom:1017.608550px;}
.yd8{bottom:1025.220750px;}
.ya0{bottom:1029.764250px;}
.y15a{bottom:1032.608550px;}
.y89{bottom:1035.809100px;}
.y34{bottom:1044.766500px;}
.y9f{bottom:1047.206250px;}
.y159{bottom:1047.602550px;}
.y2c{bottom:1051.006200px;}
.y2b{bottom:1061.881200px;}
.y2a{bottom:1072.756200px;}
.y23{bottom:1090.656000px;}
.y30{bottom:1095.716100px;}
.y22{bottom:1102.657500px;}
.y29{bottom:1103.018400px;}
.y21{bottom:1114.659000px;}
.y2{bottom:1114.905150px;}
.y31{bottom:1115.421450px;}
.y33{bottom:1126.780950px;}
.y2d{bottom:1126.906500px;}
.y1{bottom:1126.906650px;}
.y61{bottom:1127.631300px;}
.y32{bottom:1128.177300px;}
.y4{bottom:1144.050150px;}
.y2f{bottom:1146.579750px;}
.y2e{bottom:1149.445350px;}
.hf{height:27.037500px;}
.h8{height:35.012988px;}
.he{height:36.124512px;}
.h18{height:36.656250px;}
.h2{height:38.903320px;}
.hd{height:38.927320px;}
.h19{height:42.036961px;}
.h17{height:42.060961px;}
.h16{height:42.084961px;}
.h11{height:43.989258px;}
.h12{height:44.560547px;}
.h3{height:45.117188px;}
.h15{height:45.281250px;}
.h4{height:50.018555px;}
.h10{height:51.987305px;}
.h13{height:51.990305px;}
.h14{height:52.005305px;}
.hb{height:53.918988px;}
.h9{height:53.919588px;}
.ha{height:53.924988px;}
.hc{height:55.576172px;}
.h6{height:65.893652px;}
.h7{height:65.911652px;}
.h5{height:90.234375px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:138.189000px;}
.x7{left:166.889700px;}
.x3{left:350.787450px;}
.x8{left:369.208200px;}
.x6{left:489.427050px;}
.x1{left:586.771650px;}
.x4{left:599.527500px;}
.x5{left:783.964500px;}
@media print{
.v2{vertical-align:-16.800533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.805867pt;}
.v1{vertical-align:20.533333pt;}
.lse{letter-spacing:-0.533333pt;}
.ls21{letter-spacing:-0.448000pt;}
.ls17{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.001067pt;}
.ls29{letter-spacing:0.001600pt;}
.ls2a{letter-spacing:0.029867pt;}
.ls3{letter-spacing:0.046400pt;}
.ls0{letter-spacing:0.046933pt;}
.ls2b{letter-spacing:0.065067pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.114667pt;}
.ls2{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.123200pt;}
.ls22{letter-spacing:0.140000pt;}
.lsc{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls2c{letter-spacing:0.223467pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls28{letter-spacing:0.278400pt;}
.ls27{letter-spacing:0.278933pt;}
.ls15{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.333333pt;}
.ls1f{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.342400pt;}
.ls6{letter-spacing:0.379733pt;}
.ls12{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.410667pt;}
.ls24{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.432000pt;}
.ls5{letter-spacing:0.486933pt;}
.ls11{letter-spacing:0.528000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.660800pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.784000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls4{letter-spacing:0.812800pt;}
.ls2d{letter-spacing:0.858667pt;}
.ls23{letter-spacing:0.906667pt;}
.ls19{letter-spacing:0.960000pt;}
.ls8{letter-spacing:0.976533pt;}
.ws0{word-spacing:-28.906667pt;}
.ws6{word-spacing:-15.680000pt;}
.ws73{word-spacing:-15.626667pt;}
.wscd{word-spacing:-15.360000pt;}
.ws23{word-spacing:-15.253333pt;}
.ws5{word-spacing:-14.293333pt;}
.ws3{word-spacing:-13.728000pt;}
.ws2{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.252267pt;}
.ws7{word-spacing:-10.976000pt;}
.wsce{word-spacing:-9.973333pt;}
.ws91{word-spacing:-7.728000pt;}
.wsa9{word-spacing:-5.992000pt;}
.wsb{word-spacing:-5.808000pt;}
.wsad{word-spacing:-5.152000pt;}
.ws2c{word-spacing:-4.984000pt;}
.ws92{word-spacing:-4.592000pt;}
.ws7c{word-spacing:-4.536000pt;}
.ws32{word-spacing:-4.200000pt;}
.wsba{word-spacing:-4.032000pt;}
.wsa4{word-spacing:-3.976000pt;}
.ws9d{word-spacing:-3.808000pt;}
.ws2f{word-spacing:-3.640000pt;}
.ws41{word-spacing:-3.584000pt;}
.ws9e{word-spacing:-3.472000pt;}
.wsb6{word-spacing:-3.416000pt;}
.ws8e{word-spacing:-3.304000pt;}
.ws5b{word-spacing:-2.744000pt;}
.wsd5{word-spacing:-2.720000pt;}
.wsb7{word-spacing:-2.464000pt;}
.ws5e{word-spacing:-2.408000pt;}
.ws79{word-spacing:-2.296000pt;}
.ws30{word-spacing:-2.240000pt;}
.ws88{word-spacing:-2.193333pt;}
.ws8a{word-spacing:-2.184000pt;}
.wsa6{word-spacing:-1.960000pt;}
.ws2b{word-spacing:-1.904000pt;}
.wsd8{word-spacing:-1.858667pt;}
.wsaa{word-spacing:-1.848000pt;}
.ws89{word-spacing:-1.824000pt;}
.wse0{word-spacing:-1.813333pt;}
.ws45{word-spacing:-1.792000pt;}
.ws17{word-spacing:-1.760000pt;}
.wse2{word-spacing:-1.722667pt;}
.ws2e{word-spacing:-1.680000pt;}
.wsa8{word-spacing:-1.624000pt;}
.ws60{word-spacing:-1.512000pt;}
.ws3f{word-spacing:-1.456000pt;}
.ws82{word-spacing:-1.400000pt;}
.wsdf{word-spacing:-1.224000pt;}
.wsd6{word-spacing:-1.133333pt;}
.ws18{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-1.008000pt;}
.ws37{word-spacing:-0.952000pt;}
.ws58{word-spacing:-0.896000pt;}
.wsbd{word-spacing:-0.840000pt;}
.ws16{word-spacing:-0.800000pt;}
.ws11{word-spacing:-0.768000pt;}
.ws1e{word-spacing:-0.746667pt;}
.ws27{word-spacing:-0.728000pt;}
.ws6e{word-spacing:-0.700000pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws21{word-spacing:-0.666667pt;}
.ws9{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.634667pt;}
.wsbb{word-spacing:-0.616000pt;}
.ws6f{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.560000pt;}
.ws8c{word-spacing:-0.504000pt;}
.ws84{word-spacing:-0.448000pt;}
.ws10{word-spacing:-0.432000pt;}
.ws1b{word-spacing:-0.426667pt;}
.wsc{word-spacing:-0.384000pt;}
.wscf{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.288000pt;}
.wscc{word-spacing:-0.266667pt;}
.wsf{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.224000pt;}
.ws55{word-spacing:-0.168000pt;}
.ws15{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.144000pt;}
.wscb{word-spacing:-0.106667pt;}
.ws8{word-spacing:0.000000pt;}
.ws24{word-spacing:0.056000pt;}
.ws81{word-spacing:0.168000pt;}
.wsd7{word-spacing:0.226667pt;}
.ws78{word-spacing:0.280000pt;}
.ws19{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.392000pt;}
.ws3a{word-spacing:0.448000pt;}
.ws44{word-spacing:0.504000pt;}
.wsd9{word-spacing:0.544000pt;}
.ws3c{word-spacing:0.616000pt;}
.wsde{word-spacing:0.634667pt;}
.ws94{word-spacing:0.672000pt;}
.ws3e{word-spacing:0.728000pt;}
.wsa3{word-spacing:0.784000pt;}
.ws93{word-spacing:0.793333pt;}
.ws5f{word-spacing:0.896000pt;}
.ws1f{word-spacing:0.900000pt;}
.ws7a{word-spacing:0.952000pt;}
.ws39{word-spacing:1.064000pt;}
.wsd2{word-spacing:1.176000pt;}
.wsa7{word-spacing:1.232000pt;}
.wsc7{word-spacing:1.400000pt;}
.wsc1{word-spacing:1.456000pt;}
.ws7b{word-spacing:1.512000pt;}
.ws20{word-spacing:1.533333pt;}
.ws56{word-spacing:1.568000pt;}
.ws5d{word-spacing:1.624000pt;}
.wsb8{word-spacing:1.680000pt;}
.ws3b{word-spacing:1.736000pt;}
.ws14{word-spacing:1.760000pt;}
.wsda{word-spacing:1.813333pt;}
.ws8f{word-spacing:1.904000pt;}
.ws13{word-spacing:1.920000pt;}
.ws33{word-spacing:2.016000pt;}
.ws7d{word-spacing:2.128000pt;}
.wse1{word-spacing:2.176000pt;}
.ws25{word-spacing:2.184000pt;}
.wsbf{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.293333pt;}
.wsa1{word-spacing:2.296000pt;}
.ws6a{word-spacing:2.333333pt;}
.ws7e{word-spacing:2.352000pt;}
.wsd4{word-spacing:2.357333pt;}
.wse3{word-spacing:2.402667pt;}
.wsa0{word-spacing:2.464000pt;}
.ws4c{word-spacing:2.496000pt;}
.wsc8{word-spacing:2.576000pt;}
.wsc4{word-spacing:2.632000pt;}
.ws6b{word-spacing:2.832000pt;}
.wsd3{word-spacing:2.901333pt;}
.ws4b{word-spacing:3.033333pt;}
.ws43{word-spacing:3.080000pt;}
.ws49{word-spacing:3.120000pt;}
.ws9c{word-spacing:3.304000pt;}
.ws69{word-spacing:3.408000pt;}
.ws85{word-spacing:3.416000pt;}
.wsaf{word-spacing:3.528000pt;}
.ws5a{word-spacing:3.640000pt;}
.ws97{word-spacing:3.752000pt;}
.ws48{word-spacing:3.826667pt;}
.ws90{word-spacing:3.864000pt;}
.ws42{word-spacing:3.976000pt;}
.ws61{word-spacing:4.032000pt;}
.wsb1{word-spacing:4.088000pt;}
.ws47{word-spacing:4.200000pt;}
.ws3d{word-spacing:4.256000pt;}
.wsd0{word-spacing:4.368000pt;}
.wsc3{word-spacing:4.480000pt;}
.wsb4{word-spacing:4.536000pt;}
.ws35{word-spacing:4.592000pt;}
.ws57{word-spacing:4.648000pt;}
.ws9a{word-spacing:4.760000pt;}
.wsc6{word-spacing:4.872000pt;}
.wsac{word-spacing:5.040000pt;}
.ws34{word-spacing:5.208000pt;}
.ws29{word-spacing:5.264000pt;}
.ws26{word-spacing:5.376000pt;}
.ws80{word-spacing:5.432000pt;}
.ws70{word-spacing:5.472000pt;}
.wsae{word-spacing:5.488000pt;}
.wsa2{word-spacing:5.600000pt;}
.ws95{word-spacing:5.616000pt;}
.ws59{word-spacing:5.712000pt;}
.ws6d{word-spacing:5.904000pt;}
.wsd1{word-spacing:5.936000pt;}
.ws74{word-spacing:5.992000pt;}
.ws64{word-spacing:6.048000pt;}
.ws77{word-spacing:6.104000pt;}
.ws99{word-spacing:6.160000pt;}
.ws83{word-spacing:6.216000pt;}
.ws4a{word-spacing:6.288000pt;}
.ws12{word-spacing:6.293333pt;}
.wsb9{word-spacing:6.328000pt;}
.wsc9{word-spacing:6.664000pt;}
.wsc5{word-spacing:6.776000pt;}
.wsdd{word-spacing:6.936000pt;}
.wsb3{word-spacing:7.000000pt;}
.wsdc{word-spacing:7.298667pt;}
.ws28{word-spacing:7.448000pt;}
.ws36{word-spacing:7.504000pt;}
.wsb0{word-spacing:7.560000pt;}
.ws67{word-spacing:7.824000pt;}
.wsbc{word-spacing:7.896000pt;}
.ws76{word-spacing:8.008000pt;}
.ws86{word-spacing:8.232000pt;}
.wsb2{word-spacing:8.400000pt;}
.ws9b{word-spacing:8.512000pt;}
.wsbe{word-spacing:8.568000pt;}
.ws72{word-spacing:8.592000pt;}
.ws5c{word-spacing:8.792000pt;}
.ws6c{word-spacing:8.880000pt;}
.ws87{word-spacing:9.352000pt;}
.wsc2{word-spacing:9.464000pt;}
.ws96{word-spacing:9.648000pt;}
.wsc0{word-spacing:9.688000pt;}
.ws65{word-spacing:9.936000pt;}
.ws2a{word-spacing:10.080000pt;}
.wsa5{word-spacing:10.192000pt;}
.ws75{word-spacing:10.304000pt;}
.ws66{word-spacing:10.560000pt;}
.wsb5{word-spacing:10.808000pt;}
.ws98{word-spacing:11.480000pt;}
.ws71{word-spacing:12.336000pt;}
.wsdb{word-spacing:13.010667pt;}
.ws40{word-spacing:13.048000pt;}
.wsca{word-spacing:13.552000pt;}
.ws46{word-spacing:13.888000pt;}
.ws8b{word-spacing:14.112000pt;}
.ws68{word-spacing:14.160000pt;}
.ws2d{word-spacing:14.336000pt;}
.ws31{word-spacing:14.448000pt;}
.ws7f{word-spacing:14.952000pt;}
.wsab{word-spacing:16.856000pt;}
.ws63{word-spacing:17.904000pt;}
.ws62{word-spacing:19.008000pt;}
.ws50{word-spacing:501.600000pt;}
.ws4f{word-spacing:545.472000pt;}
.ws54{word-spacing:554.256000pt;}
.ws51{word-spacing:561.936000pt;}
.ws53{word-spacing:608.880000pt;}
.ws4e{word-spacing:632.256000pt;}
.ws52{word-spacing:689.856000pt;}
.ws4d{word-spacing:691.824000pt;}
._f{margin-left:-23.256000pt;}
._6{margin-left:-8.054400pt;}
._4{margin-left:-4.672000pt;}
._b{margin-left:-3.440267pt;}
._2{margin-left:-2.467733pt;}
._1{margin-left:-1.365333pt;}
._0{width:1.142400pt;}
._5{width:2.330133pt;}
._3{width:3.511467pt;}
._10{width:5.090933pt;}
._e{width:28.832000pt;}
._11{width:34.906667pt;}
._d{width:39.938667pt;}
._c{width:41.842667pt;}
._12{width:43.066667pt;}
._a{width:489.024000pt;}
._7{width:522.816000pt;}
._8{width:536.880000pt;}
._9{width:663.504000pt;}
.fsd{font-size:5.333333pt;}
.fs5{font-size:16.000000pt;}
.fs9{font-size:33.333333pt;}
.fs7{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:41.066667pt;}
.fsc{font-size:45.333333pt;}
.fsb{font-size:46.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:65.374000pt;}
.y27{bottom:76.042000pt;}
.y60{bottom:77.367333pt;}
.y6a{bottom:77.382000pt;}
.y108{bottom:77.387333pt;}
.yac{bottom:77.396000pt;}
.y26{bottom:86.710000pt;}
.yab{bottom:92.900000pt;}
.y5f{bottom:94.741333pt;}
.y88{bottom:94.745333pt;}
.yd3{bottom:94.746667pt;}
.y69{bottom:94.756000pt;}
.y107{bottom:94.761333pt;}
.y158{bottom:96.922267pt;}
.y25{bottom:97.378000pt;}
.y24{bottom:108.046000pt;}
.yaa{bottom:108.404000pt;}
.y157{bottom:110.255600pt;}
.y5e{bottom:112.115333pt;}
.y87{bottom:112.119333pt;}
.yd2{bottom:112.120667pt;}
.y68{bottom:112.130000pt;}
.y106{bottom:112.134000pt;}
.y156{bottom:123.588933pt;}
.ya9{bottom:123.908000pt;}
.y5d{bottom:129.489333pt;}
.y86{bottom:129.493333pt;}
.yd1{bottom:129.494667pt;}
.y67{bottom:129.504000pt;}
.y105{bottom:129.508000pt;}
.y155{bottom:136.922267pt;}
.y5c{bottom:146.863333pt;}
.y85{bottom:146.867333pt;}
.yd0{bottom:146.868667pt;}
.y66{bottom:146.878000pt;}
.y104{bottom:146.881333pt;}
.y154{bottom:150.255600pt;}
.y153{bottom:163.588933pt;}
.y5b{bottom:164.237333pt;}
.y84{bottom:164.241333pt;}
.ycf{bottom:164.242667pt;}
.y65{bottom:164.252000pt;}
.y103{bottom:164.254000pt;}
.y122{bottom:164.254667pt;}
.y152{bottom:176.922267pt;}
.y5a{bottom:181.611333pt;}
.y83{bottom:181.615333pt;}
.yce{bottom:181.616667pt;}
.y64{bottom:181.626000pt;}
.y102{bottom:181.628000pt;}
.y151{bottom:190.255600pt;}
.y101{bottom:198.973333pt;}
.y59{bottom:198.985333pt;}
.y82{bottom:198.989333pt;}
.ycd{bottom:198.990667pt;}
.y63{bottom:199.000000pt;}
.y20{bottom:203.000000pt;}
.y150{bottom:203.588933pt;}
.y100{bottom:216.347333pt;}
.y58{bottom:216.359333pt;}
.y81{bottom:216.363333pt;}
.ycc{bottom:216.364667pt;}
.y62{bottom:216.374000pt;}
.y1f{bottom:216.374667pt;}
.y14f{bottom:216.927600pt;}
.y14e{bottom:230.255600pt;}
.yff{bottom:233.721333pt;}
.y57{bottom:233.733333pt;}
.y80{bottom:233.737333pt;}
.ycb{bottom:233.738667pt;}
.y1e{bottom:233.748000pt;}
.y14d{bottom:243.588933pt;}
.yfe{bottom:251.095333pt;}
.y56{bottom:251.107333pt;}
.y7f{bottom:251.111333pt;}
.yca{bottom:251.112667pt;}
.y1d{bottom:251.121333pt;}
.y14c{bottom:256.927600pt;}
.yfd{bottom:268.469333pt;}
.y55{bottom:268.481333pt;}
.y7e{bottom:268.485333pt;}
.yc9{bottom:268.486667pt;}
.y1c{bottom:268.494667pt;}
.y14b{bottom:270.255600pt;}
.y14a{bottom:283.588933pt;}
.yfc{bottom:285.843333pt;}
.y54{bottom:285.855333pt;}
.y7d{bottom:285.859333pt;}
.yc8{bottom:285.860667pt;}
.y1b{bottom:285.868000pt;}
.y149{bottom:296.927600pt;}
.y6f{bottom:303.092133pt;}
.yfb{bottom:303.217333pt;}
.y53{bottom:303.229333pt;}
.y7c{bottom:303.233333pt;}
.yc7{bottom:303.234667pt;}
.y121{bottom:303.240667pt;}
.y1a{bottom:303.241333pt;}
.y148{bottom:310.255600pt;}
.y6e{bottom:318.596133pt;}
.yfa{bottom:320.591333pt;}
.y52{bottom:320.603333pt;}
.ybc{bottom:320.604667pt;}
.y7b{bottom:320.607333pt;}
.yc6{bottom:320.608667pt;}
.y19{bottom:320.614667pt;}
.y147{bottom:323.588933pt;}
.y146{bottom:336.927600pt;}
.yf9{bottom:337.965333pt;}
.ybb{bottom:337.978667pt;}
.y7a{bottom:337.981333pt;}
.yc5{bottom:337.982667pt;}
.y18{bottom:337.988000pt;}
.y145{bottom:350.255600pt;}
.yf8{bottom:355.339333pt;}
.y51{bottom:355.351333pt;}
.yba{bottom:355.352667pt;}
.y79{bottom:355.355333pt;}
.yc4{bottom:355.356667pt;}
.y17{bottom:355.361333pt;}
.y144{bottom:363.588933pt;}
.yf7{bottom:372.713333pt;}
.y50{bottom:372.725333pt;}
.yb9{bottom:372.726667pt;}
.y78{bottom:372.729333pt;}
.yc3{bottom:372.730667pt;}
.y16{bottom:372.734667pt;}
.y143{bottom:376.927600pt;}
.yf6{bottom:390.087333pt;}
.y4f{bottom:390.099333pt;}
.yb8{bottom:390.100667pt;}
.y77{bottom:390.103333pt;}
.yc2{bottom:390.104667pt;}
.y15{bottom:390.108000pt;}
.y142{bottom:390.255600pt;}
.ya8{bottom:400.473333pt;}
.y141{bottom:403.588933pt;}
.yf5{bottom:407.461333pt;}
.y120{bottom:407.467333pt;}
.y4e{bottom:407.473333pt;}
.yb7{bottom:407.474667pt;}
.y76{bottom:407.477333pt;}
.yc1{bottom:407.478667pt;}
.y14{bottom:407.481333pt;}
.ya7{bottom:415.977333pt;}
.y140{bottom:416.922267pt;}
.yf4{bottom:424.835333pt;}
.y11f{bottom:424.841333pt;}
.y4d{bottom:424.847333pt;}
.yb6{bottom:424.848667pt;}
.y75{bottom:424.851333pt;}
.yc0{bottom:424.852667pt;}
.y13{bottom:424.854667pt;}
.y13f{bottom:430.255600pt;}
.ya6{bottom:431.481333pt;}
.yf3{bottom:442.209333pt;}
.y11e{bottom:442.215333pt;}
.y4c{bottom:442.221333pt;}
.yb5{bottom:442.222667pt;}
.y74{bottom:442.225333pt;}
.ybf{bottom:442.226667pt;}
.y13e{bottom:443.599600pt;}
.y13d{bottom:456.927600pt;}
.yf2{bottom:459.583333pt;}
.y11d{bottom:459.589333pt;}
.y4b{bottom:459.595333pt;}
.yb4{bottom:459.596667pt;}
.y73{bottom:459.599333pt;}
.ybe{bottom:459.600667pt;}
.y12{bottom:459.601333pt;}
.y13c{bottom:470.255600pt;}
.yf1{bottom:476.957333pt;}
.y11c{bottom:476.963333pt;}
.y4a{bottom:476.969333pt;}
.yb3{bottom:476.970667pt;}
.y72{bottom:476.973333pt;}
.y11{bottom:476.974667pt;}
.y13b{bottom:483.588933pt;}
.yf0{bottom:494.331333pt;}
.y11b{bottom:494.337333pt;}
.y49{bottom:494.343333pt;}
.yb2{bottom:494.344667pt;}
.y71{bottom:494.347333pt;}
.y13a{bottom:496.927600pt;}
.y139{bottom:510.255600pt;}
.yef{bottom:511.705333pt;}
.y11a{bottom:511.711333pt;}
.y48{bottom:511.717333pt;}
.yb1{bottom:511.718667pt;}
.y70{bottom:511.721333pt;}
.y138{bottom:523.588933pt;}
.yee{bottom:529.079333pt;}
.y119{bottom:529.085333pt;}
.y47{bottom:529.091333pt;}
.yb0{bottom:529.092667pt;}
.y137{bottom:536.916933pt;}
.yd7{bottom:544.351867pt;}
.yed{bottom:546.453333pt;}
.y118{bottom:546.459333pt;}
.y46{bottom:546.465333pt;}
.yaf{bottom:546.466667pt;}
.y136{bottom:550.255600pt;}
.yd6{bottom:559.855867pt;}
.y135{bottom:563.594267pt;}
.yec{bottom:563.827333pt;}
.y117{bottom:563.833333pt;}
.y45{bottom:563.839333pt;}
.yae{bottom:563.840667pt;}
.yd5{bottom:575.359867pt;}
.y134{bottom:576.922267pt;}
.yeb{bottom:581.201333pt;}
.y116{bottom:581.207333pt;}
.y44{bottom:581.213333pt;}
.yad{bottom:581.214667pt;}
.y9e{bottom:584.251200pt;}
.y133{bottom:590.266267pt;}
.yd4{bottom:590.863867pt;}
.yea{bottom:598.575333pt;}
.y115{bottom:598.581333pt;}
.y43{bottom:598.587333pt;}
.y9d{bottom:599.755200pt;}
.y132{bottom:603.594267pt;}
.ybd{bottom:606.424000pt;}
.y10{bottom:612.788400pt;}
.y9c{bottom:615.259200pt;}
.ye9{bottom:615.949333pt;}
.y114{bottom:615.955333pt;}
.y42{bottom:615.961333pt;}
.y131{bottom:616.922267pt;}
.yf{bottom:628.255067pt;}
.y130{bottom:630.250267pt;}
.y9b{bottom:630.763200pt;}
.ye8{bottom:633.323333pt;}
.y113{bottom:633.329333pt;}
.y12f{bottom:643.599600pt;}
.ye{bottom:643.720400pt;}
.y9a{bottom:646.267200pt;}
.y6d{bottom:648.029333pt;}
.ye7{bottom:650.697333pt;}
.y112{bottom:650.703333pt;}
.y41{bottom:650.708000pt;}
.y12e{bottom:656.927600pt;}
.yd{bottom:659.188400pt;}
.y99{bottom:661.771200pt;}
.ya5{bottom:661.794667pt;}
.y6c{bottom:663.533333pt;}
.ye6{bottom:668.071333pt;}
.y111{bottom:668.077333pt;}
.y12d{bottom:670.255600pt;}
.yc{bottom:674.653733pt;}
.y98{bottom:677.275200pt;}
.ya4{bottom:677.298667pt;}
.y6b{bottom:679.037333pt;}
.y12c{bottom:683.594267pt;}
.ye5{bottom:685.445333pt;}
.y110{bottom:685.451333pt;}
.yb{bottom:690.121733pt;}
.y97{bottom:692.779200pt;}
.ya3{bottom:692.802667pt;}
.y12b{bottom:696.922267pt;}
.ye4{bottom:702.819333pt;}
.y40{bottom:702.820667pt;}
.y10f{bottom:702.825333pt;}
.ya{bottom:705.588267pt;}
.y96{bottom:708.283200pt;}
.ya2{bottom:708.306667pt;}
.y12a{bottom:710.255600pt;}
.ye3{bottom:720.193333pt;}
.y3f{bottom:720.194667pt;}
.y10e{bottom:720.199333pt;}
.y129{bottom:723.588933pt;}
.ya1{bottom:723.810667pt;}
.y9{bottom:725.256400pt;}
.y95{bottom:736.423200pt;}
.y128{bottom:736.916933pt;}
.ye2{bottom:737.567333pt;}
.y3e{bottom:737.568667pt;}
.y10d{bottom:737.573333pt;}
.y8{bottom:747.857600pt;}
.y94{bottom:750.619200pt;}
.ye1{bottom:754.941333pt;}
.y3d{bottom:754.942667pt;}
.y10c{bottom:754.947333pt;}
.y127{bottom:762.614400pt;}
.y93{bottom:764.815200pt;}
.y7{bottom:766.528267pt;}
.ye0{bottom:772.315333pt;}
.y3c{bottom:772.316667pt;}
.y10b{bottom:772.321333pt;}
.y92{bottom:779.011200pt;}
.ydf{bottom:789.689333pt;}
.y3b{bottom:789.690667pt;}
.y10a{bottom:789.694000pt;}
.y91{bottom:793.207200pt;}
.y6{bottom:804.092533pt;}
.yde{bottom:807.063333pt;}
.y3a{bottom:807.064667pt;}
.y126{bottom:807.066000pt;}
.y109{bottom:807.068000pt;}
.y90{bottom:807.403200pt;}
.y8f{bottom:821.599200pt;}
.ydd{bottom:824.437333pt;}
.y39{bottom:824.438667pt;}
.y125{bottom:824.440000pt;}
.y5{bottom:834.759200pt;}
.y8e{bottom:835.795200pt;}
.y160{bottom:837.879600pt;}
.ydc{bottom:841.811333pt;}
.y38{bottom:841.812667pt;}
.y124{bottom:841.814000pt;}
.y8d{bottom:849.991200pt;}
.y15f{bottom:851.207600pt;}
.ydb{bottom:859.185333pt;}
.y37{bottom:859.186667pt;}
.y123{bottom:859.188000pt;}
.y8c{bottom:864.187200pt;}
.y15e{bottom:864.546267pt;}
.yda{bottom:876.559333pt;}
.y36{bottom:876.560667pt;}
.y15d{bottom:877.874267pt;}
.y8b{bottom:878.383200pt;}
.y15c{bottom:891.202267pt;}
.y8a{bottom:892.579200pt;}
.yd9{bottom:893.933333pt;}
.y35{bottom:893.934667pt;}
.y3{bottom:902.235467pt;}
.y15b{bottom:904.540933pt;}
.yd8{bottom:911.307333pt;}
.ya0{bottom:915.346000pt;}
.y15a{bottom:917.874267pt;}
.y89{bottom:920.719200pt;}
.y34{bottom:928.681333pt;}
.y9f{bottom:930.850000pt;}
.y159{bottom:931.202267pt;}
.y2c{bottom:934.227733pt;}
.y2b{bottom:943.894400pt;}
.y2a{bottom:953.561067pt;}
.y23{bottom:969.472000pt;}
.y30{bottom:973.969867pt;}
.y22{bottom:980.140000pt;}
.y29{bottom:980.460800pt;}
.y21{bottom:990.808000pt;}
.y2{bottom:991.026800pt;}
.y31{bottom:991.485733pt;}
.y33{bottom:1001.583067pt;}
.y2d{bottom:1001.694667pt;}
.y1{bottom:1001.694800pt;}
.y61{bottom:1002.338933pt;}
.y32{bottom:1002.824267pt;}
.y4{bottom:1016.933467pt;}
.y2f{bottom:1019.182000pt;}
.y2e{bottom:1021.729200pt;}
.hf{height:24.033333pt;}
.h8{height:31.122656pt;}
.he{height:32.110677pt;}
.h18{height:32.583333pt;}
.h2{height:34.580729pt;}
.hd{height:34.602062pt;}
.h19{height:37.366188pt;}
.h17{height:37.387521pt;}
.h16{height:37.408854pt;}
.h11{height:39.101562pt;}
.h12{height:39.609375pt;}
.h3{height:40.104167pt;}
.h15{height:40.250000pt;}
.h4{height:44.460938pt;}
.h10{height:46.210938pt;}
.h13{height:46.213604pt;}
.h14{height:46.226937pt;}
.hb{height:47.927990pt;}
.h9{height:47.928523pt;}
.ha{height:47.933323pt;}
.hc{height:49.401042pt;}
.h6{height:58.572135pt;}
.h7{height:58.588135pt;}
.h5{height:80.208333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:122.834667pt;}
.x7{left:148.346400pt;}
.x3{left:311.811067pt;}
.x8{left:328.185067pt;}
.x6{left:435.046267pt;}
.x1{left:521.574800pt;}
.x4{left:532.913333pt;}
.x5{left:696.857333pt;}
}




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