
    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_ffc608722f0faa489d6ce658.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.738000;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_e6e5b4264730803be34290b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_887ed5c4143158ff8d3a73eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_8d6df41c092d4c0cbe33270b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_07387c360ba8f03c32b69b4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ff2e870e3f709ea48b7ffe1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.999000;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_dbe3b16e95c08de12f23f091.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0fc289d59a09e320307e4593.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f1bb59c554d21fdf7a3dbdaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_86d5debcb0105ead5d9aa98e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.429000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_46a975c62b6ac74a7e2cf79b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.388000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_13ed58a64610a855f69d369f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fca76a23ba808417e1c96727.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_04f2d7f6eb94d5a278942dac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.897000;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:fff;src:url('chunks/assets/font_fcf18b16b799ed6804ce8ae3.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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:ff10;src:url('chunks/assets/font_121a6cf447d04f55c3fc6148.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.964000px;}
.v3{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.690000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000255px;}
.ls5{letter-spacing:0.000493px;}
.lsc{letter-spacing:0.000612px;}
.ls4{letter-spacing:2.984525px;}
.ls7{letter-spacing:2.989409px;}
.lsa{letter-spacing:2.990525px;}
.lsd{letter-spacing:2.995409px;}
.ls2{letter-spacing:8.470613px;}
.ls0{letter-spacing:16.932141px;}
.ls1{letter-spacing:16.938141px;}
.lsb{letter-spacing:18.416525px;}
.lse{letter-spacing:20.946532px;}
.lsf{letter-spacing:27.842525px;}
.ls8{letter-spacing:29.884200px;}
.ls6{letter-spacing:32.234525px;}
.ls11{letter-spacing:40.506493px;}
.ls10{letter-spacing:43.922525px;}
.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;}
}
.wsd9{word-spacing:-30.545332px;}
.ws54{word-spacing:-29.881822px;}
.wsfe{word-spacing:-16.312761px;}
.ws2e{word-spacing:-16.193210px;}
.ws7c{word-spacing:-15.894332px;}
.wsc6{word-spacing:-15.715005px;}
.ws2f{word-spacing:-15.655230px;}
.ws7e{word-spacing:-15.535678px;}
.ws6e{word-spacing:-15.475903px;}
.ws5f{word-spacing:-15.356352px;}
.ws4e{word-spacing:-15.296576px;}
.wsa2{word-spacing:-15.177025px;}
.ws3e{word-spacing:-15.117249px;}
.ws55{word-spacing:-14.937922px;}
.ws118{word-spacing:-14.818371px;}
.ws88{word-spacing:-14.758596px;}
.ws39{word-spacing:-14.639044px;}
.ws2d{word-spacing:-14.519493px;}
.ws5e{word-spacing:-14.459718px;}
.ws6f{word-spacing:-14.399942px;}
.ws8d{word-spacing:-14.280391px;}
.ws70{word-spacing:-14.101064px;}
.ws58{word-spacing:-14.041288px;}
.ws65{word-spacing:-13.861962px;}
.ws91{word-spacing:-13.802186px;}
.ws9c{word-spacing:-13.563084px;}
.wsd6{word-spacing:-13.323981px;}
.wsb7{word-spacing:-13.264206px;}
.ws8b{word-spacing:-13.144654px;}
.ws5b{word-spacing:-13.084879px;}
.ws6c{word-spacing:-13.025103px;}
.ws26{word-spacing:-12.965328px;}
.wsc3{word-spacing:-12.905552px;}
.ws3f{word-spacing:-12.726225px;}
.ws75{word-spacing:-12.666450px;}
.ws1d{word-spacing:-12.606674px;}
.wsc2{word-spacing:-12.546898px;}
.wsa5{word-spacing:-12.533779px;}
.wsb6{word-spacing:-12.487123px;}
.ws25{word-spacing:-12.367572px;}
.ws4c{word-spacing:-12.307796px;}
.ws8a{word-spacing:-12.188245px;}
.ws100{word-spacing:-12.128469px;}
.wsa3{word-spacing:-11.949142px;}
.wsa1{word-spacing:-11.889367px;}
.ws4d{word-spacing:-11.829591px;}
.wsb8{word-spacing:-11.710040px;}
.wsc{word-spacing:-11.656242px;}
.wscf{word-spacing:-11.590489px;}
.wsfc{word-spacing:-11.536691px;}
.ws4b{word-spacing:-11.411162px;}
.ws66{word-spacing:-11.351386px;}
.ws9e{word-spacing:-11.112284px;}
.ws29{word-spacing:-11.052508px;}
.ws92{word-spacing:-10.992733px;}
.ws99{word-spacing:-10.813406px;}
.ws8c{word-spacing:-10.693855px;}
.wsbf{word-spacing:-10.634079px;}
.ws89{word-spacing:-10.574304px;}
.ws31{word-spacing:-10.514528px;}
.ws9f{word-spacing:-10.394977px;}
.ws60{word-spacing:-10.335201px;}
.ws7d{word-spacing:-10.275426px;}
.ws7f{word-spacing:-10.215650px;}
.wsad{word-spacing:-10.155874px;}
.ws6{word-spacing:-10.102076px;}
.ws87{word-spacing:-10.096099px;}
.wsa9{word-spacing:-10.047108px;}
.ws15{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.976548px;}
.wsd8{word-spacing:-9.922750px;}
.wsce{word-spacing:-9.856996px;}
.ws7a{word-spacing:-9.737445px;}
.wsd4{word-spacing:-9.677670px;}
.ws8f{word-spacing:-9.664543px;}
.ws7{word-spacing:-9.623872px;}
.wsb4{word-spacing:-9.617894px;}
.ws13{word-spacing:-9.444545px;}
.wsb0{word-spacing:-9.438567px;}
.wsc4{word-spacing:-9.378792px;}
.ws49{word-spacing:-9.199465px;}
.ws18{word-spacing:-9.145667px;}
.ws9b{word-spacing:-9.020138px;}
.ws9{word-spacing:-8.966340px;}
.ws32{word-spacing:-8.840811px;}
.wsd1{word-spacing:-8.781036px;}
.ws47{word-spacing:-8.541933px;}
.wsa6{word-spacing:-8.516849px;}
.ws84{word-spacing:-8.469028px;}
.wsb2{word-spacing:-8.422382px;}
.ws71{word-spacing:-8.362606px;}
.ws64{word-spacing:-8.243055px;}
.ws6a{word-spacing:-8.182105px;}
.wsb9{word-spacing:-8.123504px;}
.wsb{word-spacing:-8.069706px;}
.wsac{word-spacing:-8.003953px;}
.wsdd{word-spacing:-7.890379px;}
.wsc5{word-spacing:-7.884402px;}
.wsb1{word-spacing:-7.824626px;}
.ws76{word-spacing:-7.764850px;}
.ws9a{word-spacing:-7.705075px;}
.wsff{word-spacing:-7.645299px;}
.wsca{word-spacing:-7.585524px;}
.wsaa{word-spacing:-7.464796px;}
.wsab{word-spacing:-7.416975px;}
.ws86{word-spacing:-7.406197px;}
.ws85{word-spacing:-7.346421px;}
.ws11e{word-spacing:-7.286646px;}
.ws2c{word-spacing:-7.226870px;}
.ws98{word-spacing:-7.167094px;}
.ws3c{word-spacing:-7.047543px;}
.wsb3{word-spacing:-6.987768px;}
.wse{word-spacing:-6.933970px;}
.ws9d{word-spacing:-6.868216px;}
.ws3b{word-spacing:-6.808441px;}
.wsbc{word-spacing:-6.748665px;}
.ws5d{word-spacing:-6.449787px;}
.ws3a{word-spacing:-6.390012px;}
.ws17{word-spacing:-6.336214px;}
.ws95{word-spacing:-6.330236px;}
.ws34{word-spacing:-6.270460px;}
.ws53{word-spacing:-6.091134px;}
.ws6b{word-spacing:-6.077998px;}
.ws82{word-spacing:-6.030178px;}
.wsc1{word-spacing:-5.971582px;}
.ws90{word-spacing:-5.934536px;}
.wsd7{word-spacing:-5.852031px;}
.ws14{word-spacing:-5.738458px;}
.wscc{word-spacing:-5.732480px;}
.ws79{word-spacing:-5.672704px;}
.wsc9{word-spacing:-5.612929px;}
.ws12{word-spacing:-5.439580px;}
.ws50{word-spacing:-5.433602px;}
.ws97{word-spacing:-5.314051px;}
.ws61{word-spacing:-5.194500px;}
.ws16{word-spacing:-5.080926px;}
.wscd{word-spacing:-5.015173px;}
.ws51{word-spacing:-4.955397px;}
.ws10{word-spacing:-4.901599px;}
.wsd5{word-spacing:-4.895622px;}
.wsfb{word-spacing:-4.835846px;}
.ws62{word-spacing:-4.776070px;}
.ws48{word-spacing:-4.716295px;}
.wscb{word-spacing:-4.477192px;}
.ws38{word-spacing:-4.357641px;}
.ws80{word-spacing:-4.238090px;}
.wsf{word-spacing:-4.184292px;}
.ws7b{word-spacing:-4.178314px;}
.wsa4{word-spacing:-4.165174px;}
.ws72{word-spacing:-3.939212px;}
.ws36{word-spacing:-3.879436px;}
.ws4f{word-spacing:-3.819661px;}
.ws56{word-spacing:-3.759885px;}
.wsa{word-spacing:-3.706087px;}
.wsae{word-spacing:-3.700110px;}
.ws24{word-spacing:-3.640334px;}
.wsd{word-spacing:-3.586536px;}
.ws8{word-spacing:-3.407209px;}
.ws94{word-spacing:-3.401232px;}
.ws83{word-spacing:-3.256583px;}
.ws6d{word-spacing:-3.221905px;}
.wsc0{word-spacing:-3.162129px;}
.ws77{word-spacing:-3.042578px;}
.ws2b{word-spacing:-2.982802px;}
.ws101{word-spacing:-2.749678px;}
.wsbe{word-spacing:-2.743700px;}
.ws20{word-spacing:-2.624149px;}
.ws52{word-spacing:-2.444822px;}
.wsbd{word-spacing:-2.385046px;}
.ws22{word-spacing:-2.265495px;}
.ws74{word-spacing:-2.145944px;}
.ws73{word-spacing:-2.086168px;}
.ws23{word-spacing:-2.026393px;}
.wsde{word-spacing:-1.847066px;}
.ws5a{word-spacing:-1.787290px;}
.wsb5{word-spacing:-1.727515px;}
.ws10a{word-spacing:-1.548188px;}
.ws11{word-spacing:-1.494390px;}
.ws2a{word-spacing:-1.488412px;}
.ws3d{word-spacing:-1.368861px;}
.ws93{word-spacing:-1.309086px;}
.ws46{word-spacing:-1.249310px;}
.wsdc{word-spacing:-1.195512px;}
.ws28{word-spacing:-1.129759px;}
.ws44{word-spacing:-0.651554px;}
.wsaf{word-spacing:-0.591778px;}
.ws78{word-spacing:-0.532003px;}
.wsc7{word-spacing:-0.352676px;}
.wsd2{word-spacing:-0.233125px;}
.ws19{word-spacing:-0.086077px;}
.ws43{word-spacing:0.000000px;}
.wse2{word-spacing:0.005978px;}
.wsa0{word-spacing:0.663509px;}
.ws11a{word-spacing:0.723285px;}
.ws35{word-spacing:1.022163px;}
.ws117{word-spacing:1.261265px;}
.ws33{word-spacing:1.380816px;}
.ws30{word-spacing:1.440592px;}
.ws107{word-spacing:1.560143px;}
.ws1e{word-spacing:1.679694px;}
.ws1f{word-spacing:1.739470px;}
.ws81{word-spacing:1.799246px;}
.wsc8{word-spacing:2.038348px;}
.ws59{word-spacing:2.217675px;}
.wsf8{word-spacing:2.397002px;}
.ws27{word-spacing:2.456777px;}
.ws116{word-spacing:2.576328px;}
.ws96{word-spacing:2.636104px;}
.wsd3{word-spacing:2.994758px;}
.ws42{word-spacing:3.054533px;}
.ws37{word-spacing:3.174084px;}
.ws45{word-spacing:4.369596px;}
.ws11f{word-spacing:4.907577px;}
.wsba{word-spacing:5.027128px;}
.ws5c{word-spacing:5.146679px;}
.wsd0{word-spacing:5.385782px;}
.wsf7{word-spacing:5.505333px;}
.wsed{word-spacing:5.977560px;}
.wse7{word-spacing:6.103089px;}
.ws57{word-spacing:6.222640px;}
.ws109{word-spacing:6.276438px;}
.wsfd{word-spacing:6.342191px;}
.wsee{word-spacing:6.521518px;}
.wsec{word-spacing:6.525551px;}
.ws108{word-spacing:6.820396px;}
.ws10e{word-spacing:6.939947px;}
.ws21{word-spacing:7.418152px;}
.wseb{word-spacing:7.836581px;}
.wsbb{word-spacing:7.837796px;}
.ws63{word-spacing:8.075684px;}
.wse9{word-spacing:8.553888px;}
.wse1{word-spacing:8.733215px;}
.wsfa{word-spacing:9.384769px;}
.wse8{word-spacing:9.689625px;}
.ws102{word-spacing:9.803198px;}
.ws4a{word-spacing:9.809176px;}
.ws110{word-spacing:10.161852px;}
.wsf9{word-spacing:10.167830px;}
.ws103{word-spacing:10.586259px;}
.ws10f{word-spacing:11.043948px;}
.wsea{word-spacing:11.064464px;}
.ws115{word-spacing:11.602444px;}
.ws11b{word-spacing:11.721995px;}
.wsf2{word-spacing:14.113019px;}
.ws0{word-spacing:16.880672px;}
.ws1{word-spacing:16.886097px;}
.ws10b{word-spacing:17.460453px;}
.ws41{word-spacing:17.878882px;}
.wsf3{word-spacing:17.938658px;}
.wse6{word-spacing:18.769538px;}
.ws69{word-spacing:19.462984px;}
.wsdb{word-spacing:20.084602px;}
.wsf4{word-spacing:20.150355px;}
.ws5{word-spacing:20.346369px;}
.wse5{word-spacing:20.387544px;}
.ws106{word-spacing:21.286091px;}
.wsa8{word-spacing:21.418847px;}
.wsda{word-spacing:21.883847px;}
.wsdf{word-spacing:22.176748px;}
.wsf0{word-spacing:22.182725px;}
.ws104{word-spacing:22.421828px;}
.ws40{word-spacing:22.541379px;}
.wse0{word-spacing:24.095544px;}
.wse4{word-spacing:24.454198px;}
.ws3{word-spacing:25.034189px;}
.wsa7{word-spacing:25.053212px;}
.ws113{word-spacing:25.948588px;}
.wsf1{word-spacing:26.367017px;}
.ws10d{word-spacing:27.203876px;}
.ws10c{word-spacing:28.698266px;}
.wsef{word-spacing:29.355797px;}
.ws114{word-spacing:29.714451px;}
.ws111{word-spacing:31.504255px;}
.ws1b{word-spacing:33.653663px;}
.ws119{word-spacing:35.137254px;}
.ws11d{word-spacing:35.273582px;}
.ws2{word-spacing:39.974159px;}
.wsf5{word-spacing:42.799330px;}
.wse3{word-spacing:44.120370px;}
.wsf6{word-spacing:46.511394px;}
.ws112{word-spacing:64.112517px;}
.ws105{word-spacing:69.644552px;}
.ws11c{word-spacing:74.885798px;}
.ws1c{word-spacing:136.604516px;}
.ws1a{word-spacing:183.989297px;}
.ws67{word-spacing:509.383579px;}
.ws68{word-spacing:510.794994px;}
.ws8e{word-spacing:515.252994px;}
._3{margin-left:-12.808258px;}
._4{margin-left:-9.606193px;}
._1d{margin-left:-7.833025px;}
._5{margin-left:-6.122998px;}
._6{margin-left:-4.401449px;}
._2{margin-left:-3.202064px;}
._1{margin-left:-1.434618px;}
._7{width:1.494394px;}
._f{width:3.048556px;}
._8{width:4.076756px;}
._20{width:10.185108px;}
._18{width:15.242771px;}
._21{width:17.552160px;}
._16{width:18.687817px;}
._22{width:20.419396px;}
._1a{width:22.057193px;}
._25{width:23.541218px;}
._19{width:24.806874px;}
._a{width:26.118065px;}
._9{width:27.837751px;}
._14{width:29.409602px;}
._c{width:31.278918px;}
._26{width:33.115693px;}
._d{width:34.438885px;}
._11{width:36.475128px;}
._1b{width:37.778179px;}
._e{width:40.262936px;}
._13{width:41.663593px;}
._24{width:43.098215px;}
._b{width:44.746106px;}
._29{width:46.131612px;}
._23{width:47.282500px;}
._15{width:50.390831px;}
._1c{width:52.482973px;}
._1f{width:54.784909px;}
._2a{width:60.433132px;}
._12{width:61.688419px;}
._17{width:63.900116px;}
._28{width:68.959090px;}
._27{width:70.893865px;}
._2b{width:84.761804px;}
._2c{width:101.259866px;}
._10{width:224.648717px;}
._1e{width:1203.933379px;}
._0{width:1533.080615px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y42{bottom:58.093500px;}
.y41{bottom:58.453500px;}
.y28{bottom:121.180500px;}
.y94{bottom:125.440500px;}
.y27{bottom:139.113000px;}
.y93{bottom:139.636500px;}
.y92{bottom:153.834000px;}
.y40{bottom:157.045500px;}
.y26{bottom:157.047000px;}
.yab{bottom:168.030000px;}
.y113{bottom:174.978000px;}
.y25{bottom:174.979500px;}
.y91{bottom:189.175500px;}
.y24{bottom:192.912000px;}
.y3f{bottom:200.953500px;}
.yaa{bottom:203.371500px;}
.ye5{bottom:209.589000px;}
.y23{bottom:210.844500px;}
.ycd{bottom:216.211500px;}
.yb9{bottom:219.348000px;}
.ye4{bottom:227.521500px;}
.y22{bottom:228.777000px;}
.yb8{bottom:237.282000px;}
.ye3{bottom:245.454000px;}
.y112{bottom:246.709500px;}
.y6e{bottom:255.214500px;}
.ye2{bottom:263.388000px;}
.y21{bottom:271.266000px;}
.y3e{bottom:272.253000px;}
.y6d{bottom:273.147000px;}
.y111{bottom:273.727500px;}
.ycc{bottom:273.963000px;}
.ye1{bottom:281.320500px;}
.y3d{bottom:290.185500px;}
.y6c{bottom:291.079500px;}
.y110{bottom:291.660000px;}
.ycb{bottom:291.897000px;}
.y3c{bottom:308.118000px;}
.y6b{bottom:309.012000px;}
.y10f{bottom:309.592500px;}
.ye0{bottom:315.930000px;}
.yca{bottom:318.333000px;}
.y3b{bottom:326.050500px;}
.y6a{bottom:326.944500px;}
.y10e{bottom:327.526500px;}
.y90{bottom:331.770000px;}
.ydf{bottom:333.862500px;}
.y20{bottom:335.464500px;}
.yc9{bottom:336.265500px;}
.y3a{bottom:343.983000px;}
.y69{bottom:344.877000px;}
.y80{bottom:344.878500px;}
.y10d{bottom:345.459000px;}
.yde{bottom:351.796500px;}
.y1f{bottom:353.397000px;}
.yc8{bottom:354.198000px;}
.y39{bottom:361.917000px;}
.y68{bottom:362.811000px;}
.y10c{bottom:363.391500px;}
.ydd{bottom:369.729000px;}
.y1e{bottom:371.329500px;}
.yc7{bottom:372.132000px;}
.y38{bottom:379.849500px;}
.y67{bottom:380.743500px;}
.y10b{bottom:381.324000px;}
.ydc{bottom:387.661500px;}
.yc6{bottom:390.064500px;}
.y37{bottom:397.782000px;}
.y66{bottom:398.676000px;}
.y10a{bottom:399.256500px;}
.ydb{bottom:405.594000px;}
.yc5{bottom:407.997000px;}
.y1d{bottom:413.818500px;}
.y36{bottom:415.714500px;}
.y65{bottom:416.608500px;}
.y109{bottom:417.189000px;}
.yb7{bottom:425.113500px;}
.yc4{bottom:425.929500px;}
.y35{bottom:433.647000px;}
.y64{bottom:434.541000px;}
.ya9{bottom:436.623000px;}
.yb6{bottom:443.046000px;}
.y108{bottom:444.207000px;}
.yda{bottom:447.843000px;}
.y34{bottom:451.581000px;}
.yc3{bottom:452.367000px;}
.y7f{bottom:452.475000px;}
.y63{bottom:460.978500px;}
.y107{bottom:462.141000px;}
.y33{bottom:469.513500px;}
.yc2{bottom:470.299500px;}
.y7e{bottom:470.407500px;}
.y8f{bottom:474.364500px;}
.y1c{bottom:478.017000px;}
.y62{bottom:478.911000px;}
.y106{bottom:480.073500px;}
.y32{bottom:487.446000px;}
.yc1{bottom:488.232000px;}
.y7d{bottom:488.340000px;}
.y1b{bottom:495.949500px;}
.y61{bottom:496.843500px;}
.y105{bottom:498.006000px;}
.y31{bottom:505.378500px;}
.yc0{bottom:506.164500px;}
.y7c{bottom:506.272500px;}
.yd9{bottom:510.841500px;}
.y1a{bottom:513.882000px;}
.y60{bottom:514.776000px;}
.y104{bottom:515.938500px;}
.y30{bottom:523.311000px;}
.ybf{bottom:524.097000px;}
.y7b{bottom:524.205000px;}
.yd8{bottom:528.774000px;}
.y19{bottom:531.816000px;}
.y5f{bottom:532.708500px;}
.yb5{bottom:532.710000px;}
.y103{bottom:533.871000px;}
.y2f{bottom:541.243500px;}
.y7a{bottom:542.139000px;}
.yd7{bottom:546.706500px;}
.y18{bottom:549.748500px;}
.ybe{bottom:550.534500px;}
.y5e{bottom:550.642500px;}
.y2e{bottom:559.177500px;}
.y79{bottom:560.071500px;}
.y102{bottom:560.889000px;}
.yd6{bottom:564.639000px;}
.y17{bottom:567.681000px;}
.ybd{bottom:568.467000px;}
.y5d{bottom:568.575000px;}
.y2d{bottom:577.110000px;}
.y78{bottom:578.004000px;}
.y101{bottom:578.823000px;}
.yd5{bottom:582.573000px;}
.y16{bottom:585.613500px;}
.ybc{bottom:586.399500px;}
.yb4{bottom:586.507500px;}
.y2c{bottom:595.042500px;}
.y77{bottom:595.936500px;}
.y100{bottom:596.755500px;}
.yd4{bottom:600.505500px;}
.y15{bottom:603.546000px;}
.ybb{bottom:604.332000px;}
.y5c{bottom:607.791000px;}
.y2b{bottom:612.975000px;}
.y76{bottom:613.869000px;}
.yff{bottom:614.688000px;}
.yd3{bottom:618.438000px;}
.y14{bottom:621.480000px;}
.yba{bottom:622.264500px;}
.y2a{bottom:630.907500px;}
.yfe{bottom:632.620500px;}
.yd2{bottom:636.370500px;}
.y5b{bottom:639.328500px;}
.y13{bottom:639.412500px;}
.yb3{bottom:642.198000px;}
.y8e{bottom:644.058000px;}
.yfd{bottom:650.553000px;}
.yd1{bottom:654.303000px;}
.y75{bottom:656.026500px;}
.yb2{bottom:656.395500px;}
.y5a{bottom:657.261000px;}
.y12{bottom:657.345000px;}
.ya8{bottom:661.383000px;}
.y8d{bottom:661.990500px;}
.yb1{bottom:670.591500px;}
.yd0{bottom:672.235500px;}
.y11{bottom:675.277500px;}
.yfc{bottom:677.571000px;}
.ya7{bottom:679.315500px;}
.yb0{bottom:684.789000px;}
.y8c{bottom:688.428000px;}
.y59{bottom:688.797000px;}
.y10{bottom:693.210000px;}
.yfb{bottom:695.503500px;}
.ya6{bottom:697.248000px;}
.yaf{bottom:698.985000px;}
.y8b{bottom:706.360500px;}
.y74{bottom:707.268000px;}
.yf{bottom:711.142500px;}
.yfa{bottom:713.437500px;}
.ycf{bottom:714.484500px;}
.ya5{bottom:715.180500px;}
.y58{bottom:720.334500px;}
.y73{bottom:721.464000px;}
.y8a{bottom:724.293000px;}
.y29{bottom:729.075000px;}
.ye{bottom:729.076500px;}
.yf9{bottom:731.370000px;}
.ya4{bottom:733.114500px;}
.yae{bottom:734.328000px;}
.y72{bottom:735.661500px;}
.y89{bottom:742.225500px;}
.yd{bottom:747.009000px;}
.yf8{bottom:749.302500px;}
.y57{bottom:759.550500px;}
.y88{bottom:760.159500px;}
.yc{bottom:764.941500px;}
.yf7{bottom:767.235000px;}
.y71{bottom:771.003000px;}
.y56{bottom:777.483000px;}
.y87{bottom:778.092000px;}
.yb{bottom:782.874000px;}
.yf6{bottom:785.167500px;}
.y55{bottom:795.415500px;}
.y86{bottom:796.024500px;}
.ya{bottom:800.806500px;}
.y11c{bottom:802.938000px;}
.yf5{bottom:803.100000px;}
.y54{bottom:813.349500px;}
.y85{bottom:813.957000px;}
.y9{bottom:818.739000px;}
.y11b{bottom:820.872000px;}
.yf4{bottom:821.034000px;}
.y126{bottom:830.356500px;}
.ya3{bottom:831.282000px;}
.y84{bottom:831.889500px;}
.y11a{bottom:838.804500px;}
.y53{bottom:839.785500px;}
.yf3{bottom:848.052000px;}
.y125{bottom:848.289000px;}
.ya2{bottom:849.214500px;}
.y119{bottom:856.737000px;}
.y52{bottom:857.718000px;}
.yf2{bottom:865.984500px;}
.y124{bottom:866.221500px;}
.ya1{bottom:867.147000px;}
.y118{bottom:874.669500px;}
.y8{bottom:874.773000px;}
.y51{bottom:875.650500px;}
.yad{bottom:876.922500px;}
.yf1{bottom:883.917000px;}
.y123{bottom:884.155500px;}
.ya0{bottom:885.079500px;}
.y83{bottom:886.411500px;}
.y117{bottom:892.602000px;}
.yce{bottom:893.583000px;}
.y50{bottom:893.584500px;}
.y82{bottom:900.607500px;}
.y70{bottom:901.297500px;}
.yf0{bottom:901.849500px;}
.y122{bottom:902.088000px;}
.y9f{bottom:903.012000px;}
.y116{bottom:910.536000px;}
.y7{bottom:910.638000px;}
.y4f{bottom:911.517000px;}
.y81{bottom:914.805000px;}
.yef{bottom:919.782000px;}
.y121{bottom:920.020500px;}
.y9e{bottom:920.946000px;}
.y4e{bottom:929.449500px;}
.yee{bottom:937.714500px;}
.y120{bottom:937.953000px;}
.y9d{bottom:938.878500px;}
.y6{bottom:946.504500px;}
.y4d{bottom:947.382000px;}
.y115{bottom:951.766500px;}
.yed{bottom:955.648500px;}
.y11f{bottom:955.885500px;}
.y9c{bottom:956.811000px;}
.y5{bottom:964.437000px;}
.y4c{bottom:965.314500px;}
.yec{bottom:973.581000px;}
.y9b{bottom:974.743500px;}
.y4b{bottom:983.247000px;}
.y11e{bottom:991.752000px;}
.y9a{bottom:992.676000px;}
.yeb{bottom:1000.599000px;}
.y4a{bottom:1001.181000px;}
.y114{bottom:1009.684500px;}
.y4{bottom:1012.134000px;}
.yea{bottom:1018.531500px;}
.y99{bottom:1019.113500px;}
.yac{bottom:1019.517000px;}
.y49{bottom:1027.617000px;}
.y6f{bottom:1031.704500px;}
.ye9{bottom:1036.464000px;}
.y98{bottom:1037.046000px;}
.y48{bottom:1045.549500px;}
.ye8{bottom:1054.396500px;}
.y97{bottom:1054.978500px;}
.y47{bottom:1063.482000px;}
.ye7{bottom:1072.329000px;}
.y96{bottom:1072.911000px;}
.y3{bottom:1078.083000px;}
.y11d{bottom:1081.414500px;}
.y46{bottom:1081.416000px;}
.ye6{bottom:1090.263000px;}
.y95{bottom:1090.843500px;}
.y45{bottom:1099.348500px;}
.y2{bottom:1110.960000px;}
.y44{bottom:1117.281000px;}
.y43{bottom:1135.213500px;}
.y1{bottom:1189.350000px;}
.h8{height:34.287370px;}
.h2{height:35.865450px;}
.h9{height:35.913271px;}
.h7{height:44.831700px;}
.h5{height:44.891476px;}
.h4{height:51.287808px;}
.h6{height:60.426194px;}
.h3{height:77.572592px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039500px;}
.xd{left:88.569000px;}
.x9{left:92.928000px;}
.xe{left:99.984000px;}
.x5{left:104.178000px;}
.xf{left:114.927000px;}
.x7{left:120.633000px;}
.x13{left:132.459000px;}
.x4{left:140.242500px;}
.x2{left:159.892500px;}
.x6{left:177.136500px;}
.x3{left:235.758000px;}
.x8{left:345.714000px;}
.xa{left:453.928500px;}
.xc{left:461.817000px;}
.xb{left:468.873000px;}
.x14{left:484.641000px;}
.x12{left:501.348000px;}
.x10{left:545.185500px;}
.x11{left:620.676000px;}
@media print{
.v1{vertical-align:-7.968000pt;}
.v3{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.280000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000227pt;}
.ls5{letter-spacing:0.000439pt;}
.lsc{letter-spacing:0.000544pt;}
.ls4{letter-spacing:2.652911pt;}
.ls7{letter-spacing:2.657253pt;}
.lsa{letter-spacing:2.658245pt;}
.lsd{letter-spacing:2.662586pt;}
.ls2{letter-spacing:7.529433pt;}
.ls0{letter-spacing:15.050792pt;}
.ls1{letter-spacing:15.056125pt;}
.lsb{letter-spacing:16.370245pt;}
.lse{letter-spacing:18.619139pt;}
.lsf{letter-spacing:24.748911pt;}
.ls8{letter-spacing:26.563733pt;}
.ls6{letter-spacing:28.652911pt;}
.ls11{letter-spacing:36.005772pt;}
.ls10{letter-spacing:39.042245pt;}
.wsd9{word-spacing:-27.151406pt;}
.ws54{word-spacing:-26.561620pt;}
.wsfe{word-spacing:-14.500232pt;}
.ws2e{word-spacing:-14.393964pt;}
.ws7c{word-spacing:-14.128295pt;}
.wsc6{word-spacing:-13.968894pt;}
.ws2f{word-spacing:-13.915760pt;}
.ws7e{word-spacing:-13.809492pt;}
.ws6e{word-spacing:-13.756358pt;}
.ws5f{word-spacing:-13.650090pt;}
.ws4e{word-spacing:-13.596956pt;}
.wsa2{word-spacing:-13.490689pt;}
.ws3e{word-spacing:-13.437555pt;}
.ws55{word-spacing:-13.278153pt;}
.ws118{word-spacing:-13.171886pt;}
.ws88{word-spacing:-13.118752pt;}
.ws39{word-spacing:-13.012484pt;}
.ws2d{word-spacing:-12.906216pt;}
.ws5e{word-spacing:-12.853082pt;}
.ws6f{word-spacing:-12.799948pt;}
.ws8d{word-spacing:-12.693681pt;}
.ws70{word-spacing:-12.534279pt;}
.ws58{word-spacing:-12.481145pt;}
.ws65{word-spacing:-12.321744pt;}
.ws91{word-spacing:-12.268610pt;}
.ws9c{word-spacing:-12.056074pt;}
.wsd6{word-spacing:-11.843539pt;}
.wsb7{word-spacing:-11.790405pt;}
.ws8b{word-spacing:-11.684137pt;}
.ws5b{word-spacing:-11.631003pt;}
.ws6c{word-spacing:-11.577870pt;}
.ws26{word-spacing:-11.524736pt;}
.wsc3{word-spacing:-11.471602pt;}
.ws3f{word-spacing:-11.312200pt;}
.ws75{word-spacing:-11.259066pt;}
.ws1d{word-spacing:-11.205932pt;}
.wsc2{word-spacing:-11.152799pt;}
.wsa5{word-spacing:-11.141137pt;}
.wsb6{word-spacing:-11.099665pt;}
.ws25{word-spacing:-10.993397pt;}
.ws4c{word-spacing:-10.940263pt;}
.ws8a{word-spacing:-10.833995pt;}
.ws100{word-spacing:-10.780862pt;}
.wsa3{word-spacing:-10.621460pt;}
.wsa1{word-spacing:-10.568326pt;}
.ws4d{word-spacing:-10.515192pt;}
.wsb8{word-spacing:-10.408924pt;}
.wsc{word-spacing:-10.361104pt;}
.wscf{word-spacing:-10.302657pt;}
.wsfc{word-spacing:-10.254836pt;}
.ws4b{word-spacing:-10.143255pt;}
.ws66{word-spacing:-10.090121pt;}
.ws9e{word-spacing:-9.877586pt;}
.ws29{word-spacing:-9.824452pt;}
.ws92{word-spacing:-9.771318pt;}
.ws99{word-spacing:-9.611916pt;}
.ws8c{word-spacing:-9.505649pt;}
.wsbf{word-spacing:-9.452515pt;}
.ws89{word-spacing:-9.399381pt;}
.ws31{word-spacing:-9.346247pt;}
.ws9f{word-spacing:-9.239979pt;}
.ws60{word-spacing:-9.186846pt;}
.ws7d{word-spacing:-9.133712pt;}
.ws7f{word-spacing:-9.080578pt;}
.wsad{word-spacing:-9.027444pt;}
.ws6{word-spacing:-8.979623pt;}
.ws87{word-spacing:-8.974310pt;}
.wsa9{word-spacing:-8.930763pt;}
.ws15{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.868042pt;}
.wsd8{word-spacing:-8.820222pt;}
.wsce{word-spacing:-8.761775pt;}
.ws7a{word-spacing:-8.655507pt;}
.wsd4{word-spacing:-8.602373pt;}
.ws8f{word-spacing:-8.590705pt;}
.ws7{word-spacing:-8.554553pt;}
.wsb4{word-spacing:-8.549239pt;}
.ws13{word-spacing:-8.395151pt;}
.wsb0{word-spacing:-8.389838pt;}
.wsc4{word-spacing:-8.336704pt;}
.ws49{word-spacing:-8.177302pt;}
.ws18{word-spacing:-8.129482pt;}
.ws9b{word-spacing:-8.017900pt;}
.ws9{word-spacing:-7.970080pt;}
.ws32{word-spacing:-7.858499pt;}
.wsd1{word-spacing:-7.805365pt;}
.ws47{word-spacing:-7.592830pt;}
.wsa6{word-spacing:-7.570532pt;}
.ws84{word-spacing:-7.528025pt;}
.wsb2{word-spacing:-7.486562pt;}
.ws71{word-spacing:-7.433428pt;}
.ws64{word-spacing:-7.327160pt;}
.ws6a{word-spacing:-7.272982pt;}
.wsb9{word-spacing:-7.220892pt;}
.wsb{word-spacing:-7.173072pt;}
.wsac{word-spacing:-7.114625pt;}
.wsdd{word-spacing:-7.013670pt;}
.wsc5{word-spacing:-7.008357pt;}
.wsb1{word-spacing:-6.955223pt;}
.ws76{word-spacing:-6.902089pt;}
.ws9a{word-spacing:-6.848955pt;}
.wsff{word-spacing:-6.795822pt;}
.wsca{word-spacing:-6.742688pt;}
.wsaa{word-spacing:-6.635374pt;}
.wsab{word-spacing:-6.592867pt;}
.ws86{word-spacing:-6.583286pt;}
.ws85{word-spacing:-6.530152pt;}
.ws11e{word-spacing:-6.477018pt;}
.ws2c{word-spacing:-6.423884pt;}
.ws98{word-spacing:-6.370751pt;}
.ws3c{word-spacing:-6.264483pt;}
.wsb3{word-spacing:-6.211349pt;}
.wse{word-spacing:-6.163529pt;}
.ws9d{word-spacing:-6.105081pt;}
.ws3b{word-spacing:-6.051947pt;}
.wsbc{word-spacing:-5.998814pt;}
.ws5d{word-spacing:-5.733144pt;}
.ws3a{word-spacing:-5.680010pt;}
.ws17{word-spacing:-5.632190pt;}
.ws95{word-spacing:-5.626876pt;}
.ws34{word-spacing:-5.573743pt;}
.ws53{word-spacing:-5.414341pt;}
.ws6b{word-spacing:-5.402665pt;}
.ws82{word-spacing:-5.360158pt;}
.wsc1{word-spacing:-5.308073pt;}
.ws90{word-spacing:-5.275144pt;}
.wsd7{word-spacing:-5.201806pt;}
.ws14{word-spacing:-5.100851pt;}
.wscc{word-spacing:-5.095538pt;}
.ws79{word-spacing:-5.042404pt;}
.wsc9{word-spacing:-4.989270pt;}
.ws12{word-spacing:-4.835182pt;}
.ws50{word-spacing:-4.829868pt;}
.ws97{word-spacing:-4.723601pt;}
.ws61{word-spacing:-4.617333pt;}
.ws16{word-spacing:-4.516379pt;}
.wscd{word-spacing:-4.457931pt;}
.ws51{word-spacing:-4.404798pt;}
.ws10{word-spacing:-4.356977pt;}
.wsd5{word-spacing:-4.351664pt;}
.wsfb{word-spacing:-4.298530pt;}
.ws62{word-spacing:-4.245396pt;}
.ws48{word-spacing:-4.192262pt;}
.wscb{word-spacing:-3.979727pt;}
.ws38{word-spacing:-3.873459pt;}
.ws80{word-spacing:-3.767191pt;}
.wsf{word-spacing:-3.719371pt;}
.ws7b{word-spacing:-3.714057pt;}
.wsa4{word-spacing:-3.702377pt;}
.ws72{word-spacing:-3.501522pt;}
.ws36{word-spacing:-3.448388pt;}
.ws4f{word-spacing:-3.395254pt;}
.ws56{word-spacing:-3.342120pt;}
.wsa{word-spacing:-3.294300pt;}
.wsae{word-spacing:-3.288986pt;}
.ws24{word-spacing:-3.235852pt;}
.wsd{word-spacing:-3.188032pt;}
.ws8{word-spacing:-3.028630pt;}
.ws94{word-spacing:-3.023317pt;}
.ws83{word-spacing:-2.894740pt;}
.ws6d{word-spacing:-2.863915pt;}
.wsc0{word-spacing:-2.810782pt;}
.ws77{word-spacing:-2.704514pt;}
.ws2b{word-spacing:-2.651380pt;}
.ws101{word-spacing:-2.444158pt;}
.wsbe{word-spacing:-2.438844pt;}
.ws20{word-spacing:-2.332577pt;}
.ws52{word-spacing:-2.173175pt;}
.wsbd{word-spacing:-2.120041pt;}
.ws22{word-spacing:-2.013774pt;}
.ws74{word-spacing:-1.907506pt;}
.ws73{word-spacing:-1.854372pt;}
.ws23{word-spacing:-1.801238pt;}
.wsde{word-spacing:-1.641836pt;}
.ws5a{word-spacing:-1.588703pt;}
.wsb5{word-spacing:-1.535569pt;}
.ws10a{word-spacing:-1.376167pt;}
.ws11{word-spacing:-1.328347pt;}
.ws2a{word-spacing:-1.323033pt;}
.ws3d{word-spacing:-1.216766pt;}
.ws93{word-spacing:-1.163632pt;}
.ws46{word-spacing:-1.110498pt;}
.wsdc{word-spacing:-1.062677pt;}
.ws28{word-spacing:-1.004230pt;}
.ws44{word-spacing:-0.579159pt;}
.wsaf{word-spacing:-0.526025pt;}
.ws78{word-spacing:-0.472891pt;}
.wsc7{word-spacing:-0.313490pt;}
.wsd2{word-spacing:-0.207222pt;}
.ws19{word-spacing:-0.076513pt;}
.ws43{word-spacing:0.000000pt;}
.wse2{word-spacing:0.005313pt;}
.wsa0{word-spacing:0.589786pt;}
.ws11a{word-spacing:0.642920pt;}
.ws35{word-spacing:0.908589pt;}
.ws117{word-spacing:1.121125pt;}
.ws33{word-spacing:1.227392pt;}
.ws30{word-spacing:1.280526pt;}
.ws107{word-spacing:1.386794pt;}
.ws1e{word-spacing:1.493062pt;}
.ws1f{word-spacing:1.546196pt;}
.ws81{word-spacing:1.599329pt;}
.wsc8{word-spacing:1.811865pt;}
.ws59{word-spacing:1.971266pt;}
.wsf8{word-spacing:2.130668pt;}
.ws27{word-spacing:2.183802pt;}
.ws116{word-spacing:2.290070pt;}
.ws96{word-spacing:2.343204pt;}
.wsd3{word-spacing:2.662007pt;}
.ws42{word-spacing:2.715141pt;}
.ws37{word-spacing:2.821408pt;}
.ws45{word-spacing:3.884086pt;}
.ws11f{word-spacing:4.362290pt;}
.wsba{word-spacing:4.468558pt;}
.ws5c{word-spacing:4.574826pt;}
.wsd0{word-spacing:4.787361pt;}
.wsf7{word-spacing:4.893629pt;}
.wsed{word-spacing:5.313387pt;}
.wse7{word-spacing:5.424968pt;}
.ws57{word-spacing:5.531236pt;}
.ws109{word-spacing:5.579056pt;}
.wsfd{word-spacing:5.637503pt;}
.wsee{word-spacing:5.796905pt;}
.wsec{word-spacing:5.800490pt;}
.ws108{word-spacing:6.062574pt;}
.ws10e{word-spacing:6.168842pt;}
.ws21{word-spacing:6.593913pt;}
.wseb{word-spacing:6.965850pt;}
.wsbb{word-spacing:6.966930pt;}
.ws63{word-spacing:7.178385pt;}
.wse9{word-spacing:7.603456pt;}
.wse1{word-spacing:7.762858pt;}
.wsfa{word-spacing:8.342017pt;}
.wse8{word-spacing:8.613000pt;}
.ws102{word-spacing:8.713954pt;}
.ws4a{word-spacing:8.719268pt;}
.ws110{word-spacing:9.032757pt;}
.wsf9{word-spacing:9.038071pt;}
.ws103{word-spacing:9.410008pt;}
.ws10f{word-spacing:9.816843pt;}
.wsea{word-spacing:9.835079pt;}
.ws115{word-spacing:10.313284pt;}
.ws11b{word-spacing:10.419551pt;}
.wsf2{word-spacing:12.544906pt;}
.ws0{word-spacing:15.005042pt;}
.ws1{word-spacing:15.009864pt;}
.ws10b{word-spacing:15.520402pt;}
.ws41{word-spacing:15.892340pt;}
.wsf3{word-spacing:15.945473pt;}
.wse6{word-spacing:16.684034pt;}
.ws69{word-spacing:17.300430pt;}
.wsdb{word-spacing:17.852979pt;}
.wsf4{word-spacing:17.911426pt;}
.ws5{word-spacing:18.085662pt;}
.wse5{word-spacing:18.122261pt;}
.ws106{word-spacing:18.920970pt;}
.wsa8{word-spacing:19.038975pt;}
.wsda{word-spacing:19.452309pt;}
.wsdf{word-spacing:19.712665pt;}
.wsf0{word-spacing:19.717978pt;}
.ws104{word-spacing:19.930513pt;}
.ws40{word-spacing:20.036781pt;}
.wse0{word-spacing:21.418262pt;}
.wse4{word-spacing:21.737065pt;}
.ws3{word-spacing:22.252612pt;}
.wsa7{word-spacing:22.269522pt;}
.ws113{word-spacing:23.065412pt;}
.wsf1{word-spacing:23.437349pt;}
.ws10d{word-spacing:24.181223pt;}
.ws10c{word-spacing:25.509569pt;}
.wsef{word-spacing:26.094042pt;}
.ws114{word-spacing:26.412845pt;}
.ws111{word-spacing:28.003782pt;}
.ws1b{word-spacing:29.914367pt;}
.ws119{word-spacing:31.233115pt;}
.ws11d{word-spacing:31.354295pt;}
.ws2{word-spacing:35.532586pt;}
.wsf5{word-spacing:38.043849pt;}
.wse3{word-spacing:39.218107pt;}
.wsf6{word-spacing:41.343462pt;}
.ws112{word-spacing:56.988904pt;}
.ws105{word-spacing:61.906268pt;}
.ws11c{word-spacing:66.565154pt;}
.ws1c{word-spacing:121.426237pt;}
.ws1a{word-spacing:163.546042pt;}
.ws67{word-spacing:452.785404pt;}
.ws68{word-spacing:454.039995pt;}
.ws8e{word-spacing:458.002662pt;}
._3{margin-left:-11.385118pt;}
._4{margin-left:-8.538838pt;}
._1d{margin-left:-6.962689pt;}
._5{margin-left:-5.442665pt;}
._6{margin-left:-3.912399pt;}
._2{margin-left:-2.846279pt;}
._1{margin-left:-1.275216pt;}
._7{width:1.328350pt;}
._f{width:2.709827pt;}
._8{width:3.623783pt;}
._20{width:9.053430pt;}
._18{width:13.549130pt;}
._21{width:15.601920pt;}
._16{width:16.611393pt;}
._22{width:18.150574pt;}
._1a{width:19.606394pt;}
._25{width:20.925527pt;}
._19{width:22.050555pt;}
._a{width:23.216058pt;}
._9{width:24.744668pt;}
._14{width:26.141869pt;}
._c{width:27.803483pt;}
._26{width:29.436172pt;}
._d{width:30.612342pt;}
._11{width:32.422336pt;}
._1b{width:33.580604pt;}
._e{width:35.789277pt;}
._13{width:37.034305pt;}
._24{width:38.309524pt;}
._b{width:39.774317pt;}
._29{width:41.005877pt;}
._23{width:42.028889pt;}
._15{width:44.791850pt;}
._1c{width:46.651532pt;}
._1f{width:48.697697pt;}
._2a{width:53.718339pt;}
._12{width:54.834150pt;}
._17{width:56.800103pt;}
._28{width:61.296969pt;}
._27{width:63.016769pt;}
._2b{width:75.343826pt;}
._2c{width:90.008770pt;}
._10{width:199.687748pt;}
._1e{width:1070.163004pt;}
._0{width:1362.738325pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:51.638667pt;}
.y41{bottom:51.958667pt;}
.y28{bottom:107.716000pt;}
.y94{bottom:111.502667pt;}
.y27{bottom:123.656000pt;}
.y93{bottom:124.121333pt;}
.y92{bottom:136.741333pt;}
.y40{bottom:139.596000pt;}
.y26{bottom:139.597333pt;}
.yab{bottom:149.360000pt;}
.y113{bottom:155.536000pt;}
.y25{bottom:155.537333pt;}
.y91{bottom:168.156000pt;}
.y24{bottom:171.477333pt;}
.y3f{bottom:178.625333pt;}
.yaa{bottom:180.774667pt;}
.ye5{bottom:186.301333pt;}
.y23{bottom:187.417333pt;}
.ycd{bottom:192.188000pt;}
.yb9{bottom:194.976000pt;}
.ye4{bottom:202.241333pt;}
.y22{bottom:203.357333pt;}
.yb8{bottom:210.917333pt;}
.ye3{bottom:218.181333pt;}
.y112{bottom:219.297333pt;}
.y6e{bottom:226.857333pt;}
.ye2{bottom:234.122667pt;}
.y21{bottom:241.125333pt;}
.y3e{bottom:242.002667pt;}
.y6d{bottom:242.797333pt;}
.y111{bottom:243.313333pt;}
.ycc{bottom:243.522667pt;}
.ye1{bottom:250.062667pt;}
.y3d{bottom:257.942667pt;}
.y6c{bottom:258.737333pt;}
.y110{bottom:259.253333pt;}
.ycb{bottom:259.464000pt;}
.y3c{bottom:273.882667pt;}
.y6b{bottom:274.677333pt;}
.y10f{bottom:275.193333pt;}
.ye0{bottom:280.826667pt;}
.yca{bottom:282.962667pt;}
.y3b{bottom:289.822667pt;}
.y6a{bottom:290.617333pt;}
.y10e{bottom:291.134667pt;}
.y90{bottom:294.906667pt;}
.ydf{bottom:296.766667pt;}
.y20{bottom:298.190667pt;}
.yc9{bottom:298.902667pt;}
.y3a{bottom:305.762667pt;}
.y69{bottom:306.557333pt;}
.y80{bottom:306.558667pt;}
.y10d{bottom:307.074667pt;}
.yde{bottom:312.708000pt;}
.y1f{bottom:314.130667pt;}
.yc8{bottom:314.842667pt;}
.y39{bottom:321.704000pt;}
.y68{bottom:322.498667pt;}
.y10c{bottom:323.014667pt;}
.ydd{bottom:328.648000pt;}
.y1e{bottom:330.070667pt;}
.yc7{bottom:330.784000pt;}
.y38{bottom:337.644000pt;}
.y67{bottom:338.438667pt;}
.y10b{bottom:338.954667pt;}
.ydc{bottom:344.588000pt;}
.yc6{bottom:346.724000pt;}
.y37{bottom:353.584000pt;}
.y66{bottom:354.378667pt;}
.y10a{bottom:354.894667pt;}
.ydb{bottom:360.528000pt;}
.yc5{bottom:362.664000pt;}
.y1d{bottom:367.838667pt;}
.y36{bottom:369.524000pt;}
.y65{bottom:370.318667pt;}
.y109{bottom:370.834667pt;}
.yb7{bottom:377.878667pt;}
.yc4{bottom:378.604000pt;}
.y35{bottom:385.464000pt;}
.y64{bottom:386.258667pt;}
.ya9{bottom:388.109333pt;}
.yb6{bottom:393.818667pt;}
.y108{bottom:394.850667pt;}
.yda{bottom:398.082667pt;}
.y34{bottom:401.405333pt;}
.yc3{bottom:402.104000pt;}
.y7f{bottom:402.200000pt;}
.y63{bottom:409.758667pt;}
.y107{bottom:410.792000pt;}
.y33{bottom:417.345333pt;}
.yc2{bottom:418.044000pt;}
.y7e{bottom:418.140000pt;}
.y8f{bottom:421.657333pt;}
.y1c{bottom:424.904000pt;}
.y62{bottom:425.698667pt;}
.y106{bottom:426.732000pt;}
.y32{bottom:433.285333pt;}
.yc1{bottom:433.984000pt;}
.y7d{bottom:434.080000pt;}
.y1b{bottom:440.844000pt;}
.y61{bottom:441.638667pt;}
.y105{bottom:442.672000pt;}
.y31{bottom:449.225333pt;}
.yc0{bottom:449.924000pt;}
.y7c{bottom:450.020000pt;}
.yd9{bottom:454.081333pt;}
.y1a{bottom:456.784000pt;}
.y60{bottom:457.578667pt;}
.y104{bottom:458.612000pt;}
.y30{bottom:465.165333pt;}
.ybf{bottom:465.864000pt;}
.y7b{bottom:465.960000pt;}
.yd8{bottom:470.021333pt;}
.y19{bottom:472.725333pt;}
.y5f{bottom:473.518667pt;}
.yb5{bottom:473.520000pt;}
.y103{bottom:474.552000pt;}
.y2f{bottom:481.105333pt;}
.y7a{bottom:481.901333pt;}
.yd7{bottom:485.961333pt;}
.y18{bottom:488.665333pt;}
.ybe{bottom:489.364000pt;}
.y5e{bottom:489.460000pt;}
.y2e{bottom:497.046667pt;}
.y79{bottom:497.841333pt;}
.y102{bottom:498.568000pt;}
.yd6{bottom:501.901333pt;}
.y17{bottom:504.605333pt;}
.ybd{bottom:505.304000pt;}
.y5d{bottom:505.400000pt;}
.y2d{bottom:512.986667pt;}
.y78{bottom:513.781333pt;}
.y101{bottom:514.509333pt;}
.yd5{bottom:517.842667pt;}
.y16{bottom:520.545333pt;}
.ybc{bottom:521.244000pt;}
.yb4{bottom:521.340000pt;}
.y2c{bottom:528.926667pt;}
.y77{bottom:529.721333pt;}
.y100{bottom:530.449333pt;}
.yd4{bottom:533.782667pt;}
.y15{bottom:536.485333pt;}
.ybb{bottom:537.184000pt;}
.y5c{bottom:540.258667pt;}
.y2b{bottom:544.866667pt;}
.y76{bottom:545.661333pt;}
.yff{bottom:546.389333pt;}
.yd3{bottom:549.722667pt;}
.y14{bottom:552.426667pt;}
.yba{bottom:553.124000pt;}
.y2a{bottom:560.806667pt;}
.yfe{bottom:562.329333pt;}
.yd2{bottom:565.662667pt;}
.y5b{bottom:568.292000pt;}
.y13{bottom:568.366667pt;}
.yb3{bottom:570.842667pt;}
.y8e{bottom:572.496000pt;}
.yfd{bottom:578.269333pt;}
.yd1{bottom:581.602667pt;}
.y75{bottom:583.134667pt;}
.yb2{bottom:583.462667pt;}
.y5a{bottom:584.232000pt;}
.y12{bottom:584.306667pt;}
.ya8{bottom:587.896000pt;}
.y8d{bottom:588.436000pt;}
.yb1{bottom:596.081333pt;}
.yd0{bottom:597.542667pt;}
.y11{bottom:600.246667pt;}
.yfc{bottom:602.285333pt;}
.ya7{bottom:603.836000pt;}
.yb0{bottom:608.701333pt;}
.y8c{bottom:611.936000pt;}
.y59{bottom:612.264000pt;}
.y10{bottom:616.186667pt;}
.yfb{bottom:618.225333pt;}
.ya6{bottom:619.776000pt;}
.yaf{bottom:621.320000pt;}
.y8b{bottom:627.876000pt;}
.y74{bottom:628.682667pt;}
.yf{bottom:632.126667pt;}
.yfa{bottom:634.166667pt;}
.ycf{bottom:635.097333pt;}
.ya5{bottom:635.716000pt;}
.y58{bottom:640.297333pt;}
.y73{bottom:641.301333pt;}
.y8a{bottom:643.816000pt;}
.y29{bottom:648.066667pt;}
.ye{bottom:648.068000pt;}
.yf9{bottom:650.106667pt;}
.ya4{bottom:651.657333pt;}
.yae{bottom:652.736000pt;}
.y72{bottom:653.921333pt;}
.y89{bottom:659.756000pt;}
.yd{bottom:664.008000pt;}
.yf8{bottom:666.046667pt;}
.y57{bottom:675.156000pt;}
.y88{bottom:675.697333pt;}
.yc{bottom:679.948000pt;}
.yf7{bottom:681.986667pt;}
.y71{bottom:685.336000pt;}
.y56{bottom:691.096000pt;}
.y87{bottom:691.637333pt;}
.yb{bottom:695.888000pt;}
.yf6{bottom:697.926667pt;}
.y55{bottom:707.036000pt;}
.y86{bottom:707.577333pt;}
.ya{bottom:711.828000pt;}
.y11c{bottom:713.722667pt;}
.yf5{bottom:713.866667pt;}
.y54{bottom:722.977333pt;}
.y85{bottom:723.517333pt;}
.y9{bottom:727.768000pt;}
.y11b{bottom:729.664000pt;}
.yf4{bottom:729.808000pt;}
.y126{bottom:738.094667pt;}
.ya3{bottom:738.917333pt;}
.y84{bottom:739.457333pt;}
.y11a{bottom:745.604000pt;}
.y53{bottom:746.476000pt;}
.yf3{bottom:753.824000pt;}
.y125{bottom:754.034667pt;}
.ya2{bottom:754.857333pt;}
.y119{bottom:761.544000pt;}
.y52{bottom:762.416000pt;}
.yf2{bottom:769.764000pt;}
.y124{bottom:769.974667pt;}
.ya1{bottom:770.797333pt;}
.y118{bottom:777.484000pt;}
.y8{bottom:777.576000pt;}
.y51{bottom:778.356000pt;}
.yad{bottom:779.486667pt;}
.yf1{bottom:785.704000pt;}
.y123{bottom:785.916000pt;}
.ya0{bottom:786.737333pt;}
.y83{bottom:787.921333pt;}
.y117{bottom:793.424000pt;}
.yce{bottom:794.296000pt;}
.y50{bottom:794.297333pt;}
.y82{bottom:800.540000pt;}
.y70{bottom:801.153333pt;}
.yf0{bottom:801.644000pt;}
.y122{bottom:801.856000pt;}
.y9f{bottom:802.677333pt;}
.y116{bottom:809.365333pt;}
.y7{bottom:809.456000pt;}
.y4f{bottom:810.237333pt;}
.y81{bottom:813.160000pt;}
.yef{bottom:817.584000pt;}
.y121{bottom:817.796000pt;}
.y9e{bottom:818.618667pt;}
.y4e{bottom:826.177333pt;}
.yee{bottom:833.524000pt;}
.y120{bottom:833.736000pt;}
.y9d{bottom:834.558667pt;}
.y6{bottom:841.337333pt;}
.y4d{bottom:842.117333pt;}
.y115{bottom:846.014667pt;}
.yed{bottom:849.465333pt;}
.y11f{bottom:849.676000pt;}
.y9c{bottom:850.498667pt;}
.y5{bottom:857.277333pt;}
.y4c{bottom:858.057333pt;}
.yec{bottom:865.405333pt;}
.y9b{bottom:866.438667pt;}
.y4b{bottom:873.997333pt;}
.y11e{bottom:881.557333pt;}
.y9a{bottom:882.378667pt;}
.yeb{bottom:889.421333pt;}
.y4a{bottom:889.938667pt;}
.y114{bottom:897.497333pt;}
.y4{bottom:899.674667pt;}
.yea{bottom:905.361333pt;}
.y99{bottom:905.878667pt;}
.yac{bottom:906.237333pt;}
.y49{bottom:913.437333pt;}
.y6f{bottom:917.070667pt;}
.ye9{bottom:921.301333pt;}
.y98{bottom:921.818667pt;}
.y48{bottom:929.377333pt;}
.ye8{bottom:937.241333pt;}
.y97{bottom:937.758667pt;}
.y47{bottom:945.317333pt;}
.ye7{bottom:953.181333pt;}
.y96{bottom:953.698667pt;}
.y3{bottom:958.296000pt;}
.y11d{bottom:961.257333pt;}
.y46{bottom:961.258667pt;}
.ye6{bottom:969.122667pt;}
.y95{bottom:969.638667pt;}
.y45{bottom:977.198667pt;}
.y2{bottom:987.520000pt;}
.y44{bottom:993.138667pt;}
.y43{bottom:1009.078667pt;}
.y1{bottom:1057.200000pt;}
.h8{height:30.477662pt;}
.h2{height:31.880400pt;}
.h9{height:31.922907pt;}
.h7{height:39.850400pt;}
.h5{height:39.903534pt;}
.h4{height:45.589163pt;}
.h6{height:53.712173pt;}
.h3{height:68.953415pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590667pt;}
.xd{left:78.728000pt;}
.x9{left:82.602667pt;}
.xe{left:88.874667pt;}
.x5{left:92.602667pt;}
.xf{left:102.157333pt;}
.x7{left:107.229333pt;}
.x13{left:117.741333pt;}
.x4{left:124.660000pt;}
.x2{left:142.126667pt;}
.x6{left:157.454667pt;}
.x3{left:209.562667pt;}
.x8{left:307.301333pt;}
.xa{left:403.492000pt;}
.xc{left:410.504000pt;}
.xb{left:416.776000pt;}
.x14{left:430.792000pt;}
.x12{left:445.642667pt;}
.x10{left:484.609333pt;}
.x11{left:551.712000pt;}
}




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