
    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_74d267dcab4aeeee7f2b15e3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_88473f9bc421c56592da85ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_9a32c561c42dff4329dcc91f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ffa4d297d5cda2e1193c04a3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895508;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_27e153795c542bc081cd111d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.903320;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_90c3d027ded8be16e272ca60.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_32c5fe23cf9da679adce73d5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_5a91fcd5f33a2f7909a9827b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.095703;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_74d267dcab4aeeee7f2b15e3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_88473f9bc421c56592da85ea.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_2cdb7772826e45ccfebbec0f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900391;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_ab216615c10d20c3be996ba5.woff')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_88473f9bc421c56592da85ea.woff')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_40395011a23ec3a04d3ccc36.woff')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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_3f84d1f222db50b95045ceb9.woff')format("woff");}.fff{font-family:fff;line-height:0.900391;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);}
.v3{vertical-align:-15.984000px;}
.v7{vertical-align:-11.988000px;}
.v4{vertical-align:-7.218000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.996000px;}
.v5{vertical-align:20.579400px;}
.v2{vertical-align:27.972000px;}
.v1{vertical-align:35.964000px;}
.ls4{letter-spacing:-2.520000px;}
.lsb{letter-spacing:-1.236000px;}
.ls5{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.972794px;}
.ls14{letter-spacing:-0.776556px;}
.ls10{letter-spacing:-0.618000px;}
.ls13{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.279840px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000300px;}
.lsc{letter-spacing:0.009000px;}
.ls0{letter-spacing:0.165000px;}
.ls9{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.252000px;}
.ls1b{letter-spacing:0.319800px;}
.ls19{letter-spacing:0.360294px;}
.ls2{letter-spacing:0.600000px;}
.lse{letter-spacing:0.618000px;}
.ls1c{letter-spacing:1.725000px;}
.ls1{letter-spacing:1.755000px;}
.lsa{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.121000px;}
.ls18{letter-spacing:2.308800px;}
.ls16{letter-spacing:2.579592px;}
.ls7{letter-spacing:2.772000px;}
.ls1a{letter-spacing:3.412200px;}
.ls1d{letter-spacing:3.525000px;}
.ls15{letter-spacing:3.996000px;}
.ls17{letter-spacing:9.496800px;}
.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:-16.665000px;}
.wsde{word-spacing:-16.500000px;}
.ws35{word-spacing:-15.450000px;}
.ws69{word-spacing:-14.832000px;}
.ws51{word-spacing:-12.000000px;}
.wseb{word-spacing:-9.367644px;}
.ws34{word-spacing:-9.007350px;}
.ws6a{word-spacing:-8.034556px;}
.ws2a{word-spacing:-6.859800px;}
.wsb8{word-spacing:-6.674400px;}
.wsfc{word-spacing:-6.365400px;}
.wsce{word-spacing:-6.303600px;}
.wse3{word-spacing:-5.747400px;}
.wsf1{word-spacing:-5.685600px;}
.ws100{word-spacing:-5.623800px;}
.ws57{word-spacing:-4.882200px;}
.ws31{word-spacing:-4.758600px;}
.wsda{word-spacing:-4.696800px;}
.wsbe{word-spacing:-4.202400px;}
.ws106{word-spacing:-4.140600px;}
.ws96{word-spacing:-4.017000px;}
.wsef{word-spacing:-3.893400px;}
.ws44{word-spacing:-3.708000px;}
.wsee{word-spacing:-3.646200px;}
.wsff{word-spacing:-3.584400px;}
.wsdc{word-spacing:-3.399000px;}
.wsbc{word-spacing:-2.966400px;}
.wsf9{word-spacing:-2.904600px;}
.ws5b{word-spacing:-2.781000px;}
.wsb7{word-spacing:-2.719200px;}
.ws5a{word-spacing:-2.657400px;}
.wsed{word-spacing:-2.595600px;}
.ws8d{word-spacing:-2.533800px;}
.wsd4{word-spacing:-2.410200px;}
.wsb{word-spacing:-2.280000px;}
.wsd1{word-spacing:-2.224800px;}
.wsc3{word-spacing:-2.163000px;}
.ws117{word-spacing:-2.101200px;}
.ws2c{word-spacing:-2.039400px;}
.ws66{word-spacing:-1.854000px;}
.ws74{word-spacing:-1.730400px;}
.ws24{word-spacing:-1.668600px;}
.ws2d{word-spacing:-1.606800px;}
.ws52{word-spacing:-1.545000px;}
.ws71{word-spacing:-1.483200px;}
.ws9f{word-spacing:-1.421400px;}
.ws55{word-spacing:-1.297800px;}
.ws32{word-spacing:-1.236000px;}
.ws7a{word-spacing:-1.174200px;}
.wse7{word-spacing:-1.112400px;}
.ws40{word-spacing:-1.050600px;}
.wsfb{word-spacing:-0.972000px;}
.wsd2{word-spacing:-0.927000px;}
.wsea{word-spacing:-0.864000px;}
.ws10c{word-spacing:-0.741600px;}
.ws15{word-spacing:-0.720000px;}
.ws94{word-spacing:-0.679800px;}
.ws16{word-spacing:-0.624000px;}
.ws7f{word-spacing:-0.618000px;}
.wse{word-spacing:-0.600000px;}
.ws45{word-spacing:-0.370800px;}
.ws116{word-spacing:-0.309000px;}
.wsbd{word-spacing:-0.247200px;}
.wsf{word-spacing:-0.240000px;}
.ws53{word-spacing:-0.185400px;}
.ws1{word-spacing:-0.061800px;}
.ws2{word-spacing:0.000000px;}
.ws70{word-spacing:0.061800px;}
.wsdb{word-spacing:0.123600px;}
.ws17{word-spacing:0.144000px;}
.wscd{word-spacing:0.185400px;}
.ws11d{word-spacing:0.247200px;}
.ws10e{word-spacing:0.309000px;}
.ws38{word-spacing:0.370800px;}
.ws7d{word-spacing:0.432600px;}
.ws83{word-spacing:0.480000px;}
.wsaf{word-spacing:0.494400px;}
.ws101{word-spacing:0.556200px;}
.ws82{word-spacing:0.576000px;}
.wsae{word-spacing:0.618000px;}
.ws18{word-spacing:0.720000px;}
.ws7c{word-spacing:0.741600px;}
.ws84{word-spacing:0.776556px;}
.ws27{word-spacing:0.803400px;}
.wsec{word-spacing:0.865200px;}
.ws68{word-spacing:0.960000px;}
.wsc2{word-spacing:0.988800px;}
.ws50{word-spacing:1.152000px;}
.ws3a{word-spacing:1.174200px;}
.ws87{word-spacing:1.236000px;}
.ws61{word-spacing:1.297800px;}
.wscc{word-spacing:1.359600px;}
.ws3b{word-spacing:1.421400px;}
.wsd3{word-spacing:1.483200px;}
.ws47{word-spacing:1.545000px;}
.ws8b{word-spacing:1.606800px;}
.wsf6{word-spacing:1.668600px;}
.ws12{word-spacing:1.728000px;}
.ws4a{word-spacing:1.730400px;}
.wsd5{word-spacing:1.792200px;}
.ws10d{word-spacing:1.854000px;}
.ws11{word-spacing:1.872000px;}
.wsb0{word-spacing:1.915800px;}
.wsa9{word-spacing:1.977600px;}
.wsc1{word-spacing:2.101200px;}
.wsb6{word-spacing:2.224800px;}
.ws107{word-spacing:2.286600px;}
.ws6b{word-spacing:2.410200px;}
.ws7b{word-spacing:2.472000px;}
.ws9a{word-spacing:2.533800px;}
.wsc5{word-spacing:2.595600px;}
.ws1c{word-spacing:2.657400px;}
.wsbf{word-spacing:2.719200px;}
.ws23{word-spacing:2.781000px;}
.ws3e{word-spacing:2.842800px;}
.wsb1{word-spacing:2.904600px;}
.ws127{word-spacing:2.966400px;}
.wsca{word-spacing:3.028200px;}
.ws49{word-spacing:3.090000px;}
.ws75{word-spacing:3.151800px;}
.ws7e{word-spacing:3.213600px;}
.ws6f{word-spacing:3.275400px;}
.ws39{word-spacing:3.399000px;}
.ws19{word-spacing:3.456000px;}
.wsd8{word-spacing:3.460800px;}
.ws11e{word-spacing:3.522600px;}
.ws5c{word-spacing:3.584400px;}
.ws9c{word-spacing:3.646200px;}
.ws85{word-spacing:3.648000px;}
.ws1e{word-spacing:3.708000px;}
.wsc{word-spacing:3.720000px;}
.ws73{word-spacing:3.769800px;}
.ws5e{word-spacing:3.831600px;}
.wsa3{word-spacing:3.893400px;}
.ws11c{word-spacing:3.955200px;}
.wsc4{word-spacing:4.017000px;}
.ws67{word-spacing:4.078800px;}
.ws89{word-spacing:4.140600px;}
.ws1d{word-spacing:4.202400px;}
.wsaa{word-spacing:4.264200px;}
.ws22{word-spacing:4.326000px;}
.ws5d{word-spacing:4.387800px;}
.wsd7{word-spacing:4.449600px;}
.ws54{word-spacing:4.511400px;}
.ws92{word-spacing:4.573200px;}
.ws4e{word-spacing:4.696800px;}
.ws11a{word-spacing:4.758600px;}
.wse2{word-spacing:4.820400px;}
.ws8f{word-spacing:4.882200px;}
.wsf0{word-spacing:4.944000px;}
.wsad{word-spacing:5.005800px;}
.ws10b{word-spacing:5.191200px;}
.wsd6{word-spacing:5.253000px;}
.ws28{word-spacing:5.314800px;}
.ws10f{word-spacing:5.376600px;}
.ws111{word-spacing:5.438400px;}
.ws43{word-spacing:5.500200px;}
.wse9{word-spacing:5.520000px;}
.ws25{word-spacing:5.623800px;}
.wsfd{word-spacing:5.685600px;}
.wsd9{word-spacing:5.747400px;}
.wsa8{word-spacing:5.808000px;}
.ws3d{word-spacing:5.809200px;}
.ws20{word-spacing:5.871000px;}
.ws58{word-spacing:5.932800px;}
.ws4{word-spacing:5.940000px;}
.wsb5{word-spacing:5.994600px;}
.ws105{word-spacing:6.056400px;}
.wsb2{word-spacing:6.180000px;}
.ws120{word-spacing:6.365400px;}
.ws8e{word-spacing:6.427200px;}
.ws13{word-spacing:6.528000px;}
.ws108{word-spacing:6.550800px;}
.wsd{word-spacing:6.660000px;}
.ws2b{word-spacing:6.674400px;}
.ws102{word-spacing:6.736200px;}
.ws104{word-spacing:6.798000px;}
.ws9b{word-spacing:6.859800px;}
.ws62{word-spacing:6.983400px;}
.ws4f{word-spacing:6.996000px;}
.ws48{word-spacing:7.045200px;}
.ws118{word-spacing:7.107000px;}
.ws14{word-spacing:7.152000px;}
.wsa4{word-spacing:7.292400px;}
.wsf7{word-spacing:7.354200px;}
.wsb4{word-spacing:7.416000px;}
.ws4c{word-spacing:7.477800px;}
.wsdf{word-spacing:7.539600px;}
.ws8c{word-spacing:7.601400px;}
.wsc9{word-spacing:7.663200px;}
.wsdd{word-spacing:7.725000px;}
.ws29{word-spacing:7.972200px;}
.ws80{word-spacing:8.016000px;}
.ws95{word-spacing:8.034000px;}
.ws119{word-spacing:8.095800px;}
.wsab{word-spacing:8.157600px;}
.ws30{word-spacing:8.219400px;}
.ws88{word-spacing:8.343000px;}
.ws11f{word-spacing:8.404800px;}
.wsbb{word-spacing:8.466600px;}
.ws6{word-spacing:8.580000px;}
.wsfa{word-spacing:8.590200px;}
.ws115{word-spacing:8.652000px;}
.ws59{word-spacing:8.713800px;}
.ws3f{word-spacing:8.775600px;}
.wsf2{word-spacing:8.899200px;}
.ws36{word-spacing:8.961000px;}
.ws7{word-spacing:9.000000px;}
.ws42{word-spacing:9.084600px;}
.ws6c{word-spacing:9.146400px;}
.wscf{word-spacing:9.208200px;}
.ws10{word-spacing:9.216000px;}
.wsc0{word-spacing:9.270000px;}
.wsf3{word-spacing:9.331800px;}
.wscb{word-spacing:9.517200px;}
.wsa7{word-spacing:9.579000px;}
.ws125{word-spacing:9.640800px;}
.wsd0{word-spacing:9.702600px;}
.ws77{word-spacing:9.764400px;}
.wsb9{word-spacing:9.888000px;}
.ws9e{word-spacing:9.949800px;}
.wse1{word-spacing:10.197000px;}
.ws10a{word-spacing:10.258800px;}
.wse6{word-spacing:10.629600px;}
.wsb3{word-spacing:10.691400px;}
.ws46{word-spacing:10.753200px;}
.ws91{word-spacing:10.815000px;}
.ws1f{word-spacing:10.876800px;}
.ws4d{word-spacing:10.938600px;}
.ws122{word-spacing:11.000400px;}
.ws99{word-spacing:11.062200px;}
.ws97{word-spacing:11.185800px;}
.ws21{word-spacing:11.433000px;}
.ws65{word-spacing:11.494800px;}
.ws98{word-spacing:11.618400px;}
.wsa{word-spacing:11.760000px;}
.ws2e{word-spacing:11.803800px;}
.ws6e{word-spacing:11.865600px;}
.ws78{word-spacing:12.051000px;}
.ws37{word-spacing:12.174600px;}
.ws3c{word-spacing:12.236400px;}
.ws81{word-spacing:12.288000px;}
.wsac{word-spacing:12.298200px;}
.wsf8{word-spacing:12.360000px;}
.wse8{word-spacing:12.792600px;}
.ws56{word-spacing:12.978000px;}
.ws114{word-spacing:13.039800px;}
.ws79{word-spacing:13.410600px;}
.ws3{word-spacing:13.500000px;}
.ws26{word-spacing:13.534200px;}
.wse5{word-spacing:13.596000px;}
.wse4{word-spacing:13.657800px;}
.wsba{word-spacing:13.719600px;}
.wsa6{word-spacing:13.781400px;}
.ws9d{word-spacing:13.905000px;}
.ws121{word-spacing:13.966800px;}
.ws123{word-spacing:14.028600px;}
.ws126{word-spacing:14.214000px;}
.ws33{word-spacing:14.275800px;}
.ws110{word-spacing:14.337600px;}
.ws8{word-spacing:14.520000px;}
.ws4b{word-spacing:14.832000px;}
.ws8a{word-spacing:14.893800px;}
.ws124{word-spacing:15.079200px;}
.wse0{word-spacing:15.141000px;}
.ws63{word-spacing:15.264600px;}
.ws2f{word-spacing:15.450000px;}
.ws9{word-spacing:15.480000px;}
.ws41{word-spacing:15.759000px;}
.wsc7{word-spacing:15.944400px;}
.ws5{word-spacing:15.960000px;}
.ws112{word-spacing:16.500600px;}
.ws72{word-spacing:16.747800px;}
.ws5f{word-spacing:16.933200px;}
.ws60{word-spacing:17.056800px;}
.ws6d{word-spacing:17.118600px;}
.wsa2{word-spacing:17.242200px;}
.ws90{word-spacing:17.365800px;}
.wsf5{word-spacing:17.551200px;}
.wsa1{word-spacing:17.613000px;}
.ws1b{word-spacing:17.736600px;}
.ws11b{word-spacing:17.798400px;}
.wsfe{word-spacing:17.922000px;}
.wsc6{word-spacing:18.540000px;}
.ws76{word-spacing:18.612000px;}
.wsf4{word-spacing:18.663600px;}
.ws113{word-spacing:18.725400px;}
.ws93{word-spacing:18.849000px;}
.ws103{word-spacing:18.972600px;}
.ws128{word-spacing:19.837800px;}
.ws109{word-spacing:20.085000px;}
.ws86{word-spacing:20.332200px;}
.ws64{word-spacing:22.124400px;}
.wsc8{word-spacing:28.366200px;}
.wsa5{word-spacing:28.489800px;}
.wsa0{word-spacing:37.759800px;}
.ws1a{word-spacing:466.225800px;}
._16{margin-left:-15.437640px;}
._14{margin-left:-7.904220px;}
._a{margin-left:-6.841260px;}
._e{margin-left:-5.182860px;}
._2{margin-left:-3.724200px;}
._4{margin-left:-2.659200px;}
._0{margin-left:-1.549800px;}
._1{width:1.058400px;}
._7{width:2.499660px;}
._3{width:3.648000px;}
._5{width:5.524920px;}
._c{width:6.977220px;}
._f{width:8.143380px;}
._d{width:9.344160px;}
._15{width:10.555440px;}
._11{width:11.556600px;}
._b{width:12.897660px;}
._6{width:14.170740px;}
._8{width:17.371980px;}
._12{width:18.823200px;}
._10{width:20.321340px;}
._13{width:24.491340px;}
._17{width:35.436120px;}
._9{width:68.137740px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:20.988000px;}
.fs9{font-size:27.984000px;}
.fsb{font-size:36.029400px;}
.fs0{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs4{font-size:48.972000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs2{font-size:62.964000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:46.483800px;}
.y1{bottom:56.983800px;}
.y28{bottom:76.500000px;}
.yb6{bottom:76.500150px;}
.y122{bottom:79.497150px;}
.y88{bottom:80.496000px;}
.yb5{bottom:80.496150px;}
.y27{bottom:90.000000px;}
.yb4{bottom:90.000150px;}
.y4e{bottom:90.628650px;}
.y87{bottom:92.997000px;}
.y77{bottom:93.996000px;}
.yb3{bottom:93.996150px;}
.y26{bottom:103.500000px;}
.yb2{bottom:103.500150px;}
.y121{bottom:104.501100px;}
.y7a{bottom:107.496000px;}
.yb1{bottom:107.496150px;}
.y4d{bottom:109.168650px;}
.y10b{bottom:116.128200px;}
.ye1{bottom:116.396100px;}
.y25{bottom:117.000000px;}
.yb0{bottom:117.000150px;}
.y79{bottom:120.996000px;}
.yaf{bottom:120.996150px;}
.y120{bottom:123.041100px;}
.y4c{bottom:127.708650px;}
.y76{bottom:129.716100px;}
.y24{bottom:130.500000px;}
.ye0{bottom:132.596100px;}
.yb7{bottom:134.496000px;}
.y10a{bottom:134.668200px;}
.y11f{bottom:141.581100px;}
.y123{bottom:142.046100px;}
.y23{bottom:144.000000px;}
.y4b{bottom:146.248650px;}
.y78{bottom:147.996000px;}
.yae{bottom:148.241100px;}
.y75{bottom:148.256100px;}
.ydf{bottom:148.796100px;}
.y109{bottom:153.208200px;}
.y22{bottom:157.500000px;}
.y11e{bottom:160.121100px;}
.y4a{bottom:164.788650px;}
.yde{bottom:164.996100px;}
.yad{bottom:166.781100px;}
.y74{bottom:166.796100px;}
.y21{bottom:171.000000px;}
.y108{bottom:171.748200px;}
.yc7{bottom:175.166100px;}
.y11d{bottom:178.661100px;}
.ydd{bottom:181.196100px;}
.y49{bottom:183.328650px;}
.yac{bottom:185.321100px;}
.y73{bottom:185.336100px;}
.y20{bottom:188.496000px;}
.y107{bottom:190.288200px;}
.yc6{bottom:193.706100px;}
.y11c{bottom:197.201100px;}
.ydc{bottom:197.396100px;}
.y1f{bottom:198.000000px;}
.y48{bottom:201.868650px;}
.yab{bottom:203.861100px;}
.y72{bottom:203.876100px;}
.y106{bottom:208.828200px;}
.y1e{bottom:211.500000px;}
.yc5{bottom:212.246100px;}
.ydb{bottom:213.596100px;}
.y11b{bottom:215.741100px;}
.y86{bottom:219.896100px;}
.y47{bottom:220.408650px;}
.yaa{bottom:222.401100px;}
.y71{bottom:222.416100px;}
.y1d{bottom:225.000000px;}
.y105{bottom:227.368200px;}
.yda{bottom:229.796100px;}
.yc4{bottom:230.786100px;}
.y11a{bottom:234.281100px;}
.y85{bottom:238.436100px;}
.y46{bottom:238.948650px;}
.ya9{bottom:240.941100px;}
.y70{bottom:240.956100px;}
.y1c{bottom:242.496000px;}
.y104{bottom:245.908200px;}
.yd9{bottom:245.996100px;}
.yc3{bottom:249.326100px;}
.y119{bottom:252.821100px;}
.y84{bottom:256.976100px;}
.y45{bottom:257.488650px;}
.ya8{bottom:259.481100px;}
.y6f{bottom:259.496100px;}
.yd8{bottom:262.196100px;}
.y103{bottom:264.448200px;}
.yc2{bottom:267.866100px;}
.y1b{bottom:273.128400px;}
.y83{bottom:275.516100px;}
.y44{bottom:276.028650px;}
.ya7{bottom:278.021100px;}
.y13e{bottom:278.023800px;}
.y6e{bottom:278.036100px;}
.yd7{bottom:278.396100px;}
.y102{bottom:282.988200px;}
.yc1{bottom:286.406100px;}
.y118{bottom:289.901100px;}
.y82{bottom:294.056100px;}
.y43{bottom:294.568650px;}
.yd6{bottom:294.596100px;}
.ya6{bottom:296.561100px;}
.y13d{bottom:296.563800px;}
.y6d{bottom:296.576100px;}
.y101{bottom:301.528200px;}
.yc0{bottom:304.946100px;}
.y117{bottom:306.101100px;}
.y1a{bottom:309.668400px;}
.yd5{bottom:310.796100px;}
.y81{bottom:312.596100px;}
.y42{bottom:313.108650px;}
.ya5{bottom:315.101100px;}
.y13c{bottom:315.103800px;}
.y6c{bottom:315.116100px;}
.y100{bottom:320.068200px;}
.y116{bottom:322.301100px;}
.ybf{bottom:323.486100px;}
.yd4{bottom:326.996100px;}
.y19{bottom:327.668400px;}
.y80{bottom:331.136100px;}
.y41{bottom:331.648650px;}
.ya4{bottom:333.641100px;}
.y13b{bottom:333.643800px;}
.y6b{bottom:333.656100px;}
.y115{bottom:338.501100px;}
.yff{bottom:338.608200px;}
.ybe{bottom:342.026100px;}
.yd3{bottom:343.196100px;}
.y18{bottom:345.668400px;}
.y7f{bottom:349.676100px;}
.y40{bottom:350.188650px;}
.ya3{bottom:352.181100px;}
.y13a{bottom:352.183800px;}
.y6a{bottom:352.196100px;}
.y114{bottom:354.701100px;}
.yfe{bottom:357.148200px;}
.yd2{bottom:359.396100px;}
.ybd{bottom:360.566100px;}
.y17{bottom:363.668400px;}
.y7e{bottom:368.216100px;}
.y3f{bottom:368.728650px;}
.ya2{bottom:370.721100px;}
.y139{bottom:370.723800px;}
.y69{bottom:370.736100px;}
.y113{bottom:370.901100px;}
.yd1{bottom:375.596100px;}
.ybc{bottom:379.106100px;}
.y16{bottom:381.668400px;}
.y7d{bottom:386.756100px;}
.y112{bottom:387.101100px;}
.y3e{bottom:387.268650px;}
.ya1{bottom:389.261100px;}
.y138{bottom:389.263800px;}
.y68{bottom:389.276100px;}
.yd0{bottom:391.796100px;}
.ybb{bottom:397.646100px;}
.yfd{bottom:398.188200px;}
.y15{bottom:399.668400px;}
.y111{bottom:403.301100px;}
.y3d{bottom:405.808650px;}
.ya0{bottom:407.801100px;}
.y137{bottom:407.803800px;}
.y67{bottom:407.816100px;}
.ycf{bottom:407.996100px;}
.yfc{bottom:414.388200px;}
.yba{bottom:416.186100px;}
.y14{bottom:417.668400px;}
.y110{bottom:419.501100px;}
.y7c{bottom:423.836100px;}
.yce{bottom:424.196100px;}
.y3c{bottom:424.348650px;}
.y9f{bottom:426.341100px;}
.y136{bottom:426.343800px;}
.y66{bottom:426.356100px;}
.yfb{bottom:430.588200px;}
.yb9{bottom:434.726100px;}
.y13{bottom:435.668400px;}
.y10f{bottom:435.701100px;}
.ycd{bottom:440.396100px;}
.y3b{bottom:442.888650px;}
.y7b{bottom:443.636100px;}
.y9e{bottom:444.881100px;}
.y135{bottom:444.883800px;}
.y65{bottom:444.896100px;}
.yfa{bottom:446.788200px;}
.y10e{bottom:451.901100px;}
.y12{bottom:453.668400px;}
.ycc{bottom:456.596100px;}
.y3a{bottom:461.428650px;}
.yf9{bottom:462.988200px;}
.y9d{bottom:463.421100px;}
.y134{bottom:463.423800px;}
.y64{bottom:463.436100px;}
.y10d{bottom:468.101100px;}
.y11{bottom:471.668400px;}
.ycb{bottom:472.796100px;}
.yb8{bottom:475.766100px;}
.yf8{bottom:479.188200px;}
.y39{bottom:479.968650px;}
.y9c{bottom:481.961100px;}
.y133{bottom:481.963950px;}
.y63{bottom:481.976100px;}
.y10c{bottom:484.301100px;}
.yca{bottom:488.996100px;}
.y10{bottom:489.668400px;}
.yf7{bottom:495.388200px;}
.y9b{bottom:500.501100px;}
.y132{bottom:500.503950px;}
.y62{bottom:500.516100px;}
.yc9{bottom:505.196100px;}
.yf{bottom:507.668400px;}
.yf6{bottom:511.588200px;}
.y38{bottom:517.048650px;}
.y9a{bottom:519.041100px;}
.y131{bottom:519.043800px;}
.y61{bottom:519.056100px;}
.yc8{bottom:521.396100px;}
.ye{bottom:525.668400px;}
.yf5{bottom:527.788200px;}
.y99{bottom:537.581100px;}
.y130{bottom:537.583800px;}
.y60{bottom:537.596100px;}
.yd{bottom:543.668400px;}
.yf4{bottom:543.988200px;}
.y98{bottom:556.121100px;}
.y12f{bottom:556.123800px;}
.y5f{bottom:556.136100px;}
.yf3{bottom:560.188200px;}
.yc{bottom:569.168400px;}
.y37{bottom:573.388650px;}
.y97{bottom:574.661100px;}
.y12e{bottom:574.663950px;}
.y5e{bottom:574.676100px;}
.yf2{bottom:576.388200px;}
.yf1{bottom:592.588200px;}
.y96{bottom:593.201100px;}
.y5d{bottom:593.216100px;}
.yf0{bottom:608.788200px;}
.y36{bottom:610.468650px;}
.y95{bottom:611.741100px;}
.y5c{bottom:611.756100px;}
.y12d{bottom:615.703800px;}
.yef{bottom:624.988200px;}
.yb{bottom:627.968400px;}
.y35{bottom:629.008650px;}
.y94{bottom:630.281100px;}
.y5b{bottom:630.296100px;}
.yee{bottom:641.188200px;}
.y34{bottom:647.548650px;}
.y93{bottom:648.821100px;}
.y5a{bottom:648.836100px;}
.ya{bottom:649.568400px;}
.yed{bottom:657.388200px;}
.y12c{bottom:662.953800px;}
.y33{bottom:666.088650px;}
.y92{bottom:667.361100px;}
.y59{bottom:667.376100px;}
.yec{bottom:673.588200px;}
.y12b{bottom:681.493950px;}
.y32{bottom:684.628650px;}
.y9{bottom:685.268400px;}
.y91{bottom:685.901100px;}
.y58{bottom:685.916100px;}
.yeb{bottom:689.788200px;}
.y12a{bottom:700.033800px;}
.y31{bottom:703.168650px;}
.y90{bottom:704.441100px;}
.y57{bottom:704.456100px;}
.yea{bottom:705.988200px;}
.y8{bottom:710.820300px;}
.y129{bottom:718.573950px;}
.y30{bottom:721.708650px;}
.ye9{bottom:722.188200px;}
.y8f{bottom:722.981100px;}
.y56{bottom:722.996100px;}
.y128{bottom:737.113800px;}
.y7{bottom:737.520300px;}
.ye8{bottom:738.388200px;}
.y2f{bottom:740.248650px;}
.y8e{bottom:741.521100px;}
.y55{bottom:741.536100px;}
.ye7{bottom:754.588200px;}
.y127{bottom:755.653800px;}
.y2e{bottom:758.788650px;}
.y8d{bottom:760.061100px;}
.y54{bottom:760.076100px;}
.ye6{bottom:770.788200px;}
.y126{bottom:774.193950px;}
.y2d{bottom:777.328650px;}
.y8c{bottom:778.601100px;}
.y53{bottom:778.616100px;}
.y6{bottom:780.720300px;}
.ye5{bottom:786.988200px;}
.y125{bottom:792.733950px;}
.y2c{bottom:795.868650px;}
.y8b{bottom:797.141100px;}
.y52{bottom:797.156100px;}
.ye4{bottom:803.188200px;}
.y5{bottom:807.720300px;}
.y2b{bottom:814.408650px;}
.y8a{bottom:815.681100px;}
.y51{bottom:815.696100px;}
.ye3{bottom:819.388200px;}
.y2a{bottom:832.948650px;}
.y124{bottom:833.773950px;}
.y89{bottom:834.220950px;}
.y50{bottom:834.236100px;}
.ye2{bottom:835.588200px;}
.y4{bottom:861.720300px;}
.y3{bottom:888.720300px;}
.y4f{bottom:905.470500px;}
.y29{bottom:906.525150px;}
.h18{height:24.554320px;}
.he{height:26.133188px;}
.h19{height:26.250375px;}
.h1a{height:30.246375px;}
.h3{height:36.852539px;}
.h2{height:36.955078px;}
.h9{height:37.098633px;}
.hc{height:41.132812px;}
.hb{height:41.220703px;}
.hf{height:42.117188px;}
.h10{height:42.234375px;}
.h13{height:42.366797px;}
.h12{height:42.457324px;}
.hd{height:42.608203px;}
.h14{height:45.181641px;}
.h8{height:45.342773px;}
.ha{height:45.503906px;}
.h11{height:47.381836px;}
.h16{height:52.792969px;}
.h15{height:54.225879px;}
.h17{height:54.376758px;}
.h7{height:57.708984px;}
.h1b{height:57.911133px;}
.h6{height:61.616338px;}
.h4{height:74.197266px;}
.h5{height:79.221006px;}
.h0{height:970.948500px;}
.h1{height:971.250000px;}
.w1{width:616.500000px;}
.w0{width:616.536000px;}
.x0{left:0.000000px;}
.x5{left:55.062900px;}
.x6{left:56.976450px;}
.xa{left:69.094500px;}
.x2{left:76.663050px;}
.x1{left:78.236250px;}
.xc{left:81.337500px;}
.x7{left:85.062900px;}
.x4{left:90.694500px;}
.x9{left:99.609450px;}
.xb{left:102.937500px;}
.x3{left:106.662900px;}
.x8{left:541.222350px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v7{vertical-align:-10.656000pt;}
.v4{vertical-align:-6.416000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:3.552000pt;}
.v5{vertical-align:18.292800pt;}
.v2{vertical-align:24.864000pt;}
.v1{vertical-align:31.968000pt;}
.ls4{letter-spacing:-2.240000pt;}
.lsb{letter-spacing:-1.098667pt;}
.ls5{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.864706pt;}
.ls14{letter-spacing:-0.690272pt;}
.ls10{letter-spacing:-0.549333pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.248747pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000267pt;}
.lsc{letter-spacing:0.008000pt;}
.ls0{letter-spacing:0.146667pt;}
.ls9{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.224000pt;}
.ls1b{letter-spacing:0.284267pt;}
.ls19{letter-spacing:0.320261pt;}
.ls2{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.549333pt;}
.ls1c{letter-spacing:1.533333pt;}
.ls1{letter-spacing:1.560000pt;}
.lsa{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.885333pt;}
.ls18{letter-spacing:2.052267pt;}
.ls16{letter-spacing:2.292971pt;}
.ls7{letter-spacing:2.464000pt;}
.ls1a{letter-spacing:3.033067pt;}
.ls1d{letter-spacing:3.133333pt;}
.ls15{letter-spacing:3.552000pt;}
.ls17{letter-spacing:8.441600pt;}
.ws0{word-spacing:-14.813333pt;}
.wsde{word-spacing:-14.666667pt;}
.ws35{word-spacing:-13.733333pt;}
.ws69{word-spacing:-13.184000pt;}
.ws51{word-spacing:-10.666667pt;}
.wseb{word-spacing:-8.326795pt;}
.ws34{word-spacing:-8.006533pt;}
.ws6a{word-spacing:-7.141828pt;}
.ws2a{word-spacing:-6.097600pt;}
.wsb8{word-spacing:-5.932800pt;}
.wsfc{word-spacing:-5.658133pt;}
.wsce{word-spacing:-5.603200pt;}
.wse3{word-spacing:-5.108800pt;}
.wsf1{word-spacing:-5.053867pt;}
.ws100{word-spacing:-4.998933pt;}
.ws57{word-spacing:-4.339733pt;}
.ws31{word-spacing:-4.229867pt;}
.wsda{word-spacing:-4.174933pt;}
.wsbe{word-spacing:-3.735467pt;}
.ws106{word-spacing:-3.680533pt;}
.ws96{word-spacing:-3.570667pt;}
.wsef{word-spacing:-3.460800pt;}
.ws44{word-spacing:-3.296000pt;}
.wsee{word-spacing:-3.241067pt;}
.wsff{word-spacing:-3.186133pt;}
.wsdc{word-spacing:-3.021333pt;}
.wsbc{word-spacing:-2.636800pt;}
.wsf9{word-spacing:-2.581867pt;}
.ws5b{word-spacing:-2.472000pt;}
.wsb7{word-spacing:-2.417067pt;}
.ws5a{word-spacing:-2.362133pt;}
.wsed{word-spacing:-2.307200pt;}
.ws8d{word-spacing:-2.252267pt;}
.wsd4{word-spacing:-2.142400pt;}
.wsb{word-spacing:-2.026667pt;}
.wsd1{word-spacing:-1.977600pt;}
.wsc3{word-spacing:-1.922667pt;}
.ws117{word-spacing:-1.867733pt;}
.ws2c{word-spacing:-1.812800pt;}
.ws66{word-spacing:-1.648000pt;}
.ws74{word-spacing:-1.538133pt;}
.ws24{word-spacing:-1.483200pt;}
.ws2d{word-spacing:-1.428267pt;}
.ws52{word-spacing:-1.373333pt;}
.ws71{word-spacing:-1.318400pt;}
.ws9f{word-spacing:-1.263467pt;}
.ws55{word-spacing:-1.153600pt;}
.ws32{word-spacing:-1.098667pt;}
.ws7a{word-spacing:-1.043733pt;}
.wse7{word-spacing:-0.988800pt;}
.ws40{word-spacing:-0.933867pt;}
.wsfb{word-spacing:-0.864000pt;}
.wsd2{word-spacing:-0.824000pt;}
.wsea{word-spacing:-0.768000pt;}
.ws10c{word-spacing:-0.659200pt;}
.ws15{word-spacing:-0.640000pt;}
.ws94{word-spacing:-0.604267pt;}
.ws16{word-spacing:-0.554667pt;}
.ws7f{word-spacing:-0.549333pt;}
.wse{word-spacing:-0.533333pt;}
.ws45{word-spacing:-0.329600pt;}
.ws116{word-spacing:-0.274667pt;}
.wsbd{word-spacing:-0.219733pt;}
.wsf{word-spacing:-0.213333pt;}
.ws53{word-spacing:-0.164800pt;}
.ws1{word-spacing:-0.054933pt;}
.ws2{word-spacing:0.000000pt;}
.ws70{word-spacing:0.054933pt;}
.wsdb{word-spacing:0.109867pt;}
.ws17{word-spacing:0.128000pt;}
.wscd{word-spacing:0.164800pt;}
.ws11d{word-spacing:0.219733pt;}
.ws10e{word-spacing:0.274667pt;}
.ws38{word-spacing:0.329600pt;}
.ws7d{word-spacing:0.384533pt;}
.ws83{word-spacing:0.426667pt;}
.wsaf{word-spacing:0.439467pt;}
.ws101{word-spacing:0.494400pt;}
.ws82{word-spacing:0.512000pt;}
.wsae{word-spacing:0.549333pt;}
.ws18{word-spacing:0.640000pt;}
.ws7c{word-spacing:0.659200pt;}
.ws84{word-spacing:0.690272pt;}
.ws27{word-spacing:0.714133pt;}
.wsec{word-spacing:0.769067pt;}
.ws68{word-spacing:0.853333pt;}
.wsc2{word-spacing:0.878933pt;}
.ws50{word-spacing:1.024000pt;}
.ws3a{word-spacing:1.043733pt;}
.ws87{word-spacing:1.098667pt;}
.ws61{word-spacing:1.153600pt;}
.wscc{word-spacing:1.208533pt;}
.ws3b{word-spacing:1.263467pt;}
.wsd3{word-spacing:1.318400pt;}
.ws47{word-spacing:1.373333pt;}
.ws8b{word-spacing:1.428267pt;}
.wsf6{word-spacing:1.483200pt;}
.ws12{word-spacing:1.536000pt;}
.ws4a{word-spacing:1.538133pt;}
.wsd5{word-spacing:1.593067pt;}
.ws10d{word-spacing:1.648000pt;}
.ws11{word-spacing:1.664000pt;}
.wsb0{word-spacing:1.702933pt;}
.wsa9{word-spacing:1.757867pt;}
.wsc1{word-spacing:1.867733pt;}
.wsb6{word-spacing:1.977600pt;}
.ws107{word-spacing:2.032533pt;}
.ws6b{word-spacing:2.142400pt;}
.ws7b{word-spacing:2.197333pt;}
.ws9a{word-spacing:2.252267pt;}
.wsc5{word-spacing:2.307200pt;}
.ws1c{word-spacing:2.362133pt;}
.wsbf{word-spacing:2.417067pt;}
.ws23{word-spacing:2.472000pt;}
.ws3e{word-spacing:2.526933pt;}
.wsb1{word-spacing:2.581867pt;}
.ws127{word-spacing:2.636800pt;}
.wsca{word-spacing:2.691733pt;}
.ws49{word-spacing:2.746667pt;}
.ws75{word-spacing:2.801600pt;}
.ws7e{word-spacing:2.856533pt;}
.ws6f{word-spacing:2.911467pt;}
.ws39{word-spacing:3.021333pt;}
.ws19{word-spacing:3.072000pt;}
.wsd8{word-spacing:3.076267pt;}
.ws11e{word-spacing:3.131200pt;}
.ws5c{word-spacing:3.186133pt;}
.ws9c{word-spacing:3.241067pt;}
.ws85{word-spacing:3.242667pt;}
.ws1e{word-spacing:3.296000pt;}
.wsc{word-spacing:3.306667pt;}
.ws73{word-spacing:3.350933pt;}
.ws5e{word-spacing:3.405867pt;}
.wsa3{word-spacing:3.460800pt;}
.ws11c{word-spacing:3.515733pt;}
.wsc4{word-spacing:3.570667pt;}
.ws67{word-spacing:3.625600pt;}
.ws89{word-spacing:3.680533pt;}
.ws1d{word-spacing:3.735467pt;}
.wsaa{word-spacing:3.790400pt;}
.ws22{word-spacing:3.845333pt;}
.ws5d{word-spacing:3.900267pt;}
.wsd7{word-spacing:3.955200pt;}
.ws54{word-spacing:4.010133pt;}
.ws92{word-spacing:4.065067pt;}
.ws4e{word-spacing:4.174933pt;}
.ws11a{word-spacing:4.229867pt;}
.wse2{word-spacing:4.284800pt;}
.ws8f{word-spacing:4.339733pt;}
.wsf0{word-spacing:4.394667pt;}
.wsad{word-spacing:4.449600pt;}
.ws10b{word-spacing:4.614400pt;}
.wsd6{word-spacing:4.669333pt;}
.ws28{word-spacing:4.724267pt;}
.ws10f{word-spacing:4.779200pt;}
.ws111{word-spacing:4.834133pt;}
.ws43{word-spacing:4.889067pt;}
.wse9{word-spacing:4.906667pt;}
.ws25{word-spacing:4.998933pt;}
.wsfd{word-spacing:5.053867pt;}
.wsd9{word-spacing:5.108800pt;}
.wsa8{word-spacing:5.162667pt;}
.ws3d{word-spacing:5.163733pt;}
.ws20{word-spacing:5.218667pt;}
.ws58{word-spacing:5.273600pt;}
.ws4{word-spacing:5.280000pt;}
.wsb5{word-spacing:5.328533pt;}
.ws105{word-spacing:5.383467pt;}
.wsb2{word-spacing:5.493333pt;}
.ws120{word-spacing:5.658133pt;}
.ws8e{word-spacing:5.713067pt;}
.ws13{word-spacing:5.802667pt;}
.ws108{word-spacing:5.822933pt;}
.wsd{word-spacing:5.920000pt;}
.ws2b{word-spacing:5.932800pt;}
.ws102{word-spacing:5.987733pt;}
.ws104{word-spacing:6.042667pt;}
.ws9b{word-spacing:6.097600pt;}
.ws62{word-spacing:6.207467pt;}
.ws4f{word-spacing:6.218667pt;}
.ws48{word-spacing:6.262400pt;}
.ws118{word-spacing:6.317333pt;}
.ws14{word-spacing:6.357333pt;}
.wsa4{word-spacing:6.482133pt;}
.wsf7{word-spacing:6.537067pt;}
.wsb4{word-spacing:6.592000pt;}
.ws4c{word-spacing:6.646933pt;}
.wsdf{word-spacing:6.701867pt;}
.ws8c{word-spacing:6.756800pt;}
.wsc9{word-spacing:6.811733pt;}
.wsdd{word-spacing:6.866667pt;}
.ws29{word-spacing:7.086400pt;}
.ws80{word-spacing:7.125333pt;}
.ws95{word-spacing:7.141333pt;}
.ws119{word-spacing:7.196267pt;}
.wsab{word-spacing:7.251200pt;}
.ws30{word-spacing:7.306133pt;}
.ws88{word-spacing:7.416000pt;}
.ws11f{word-spacing:7.470933pt;}
.wsbb{word-spacing:7.525867pt;}
.ws6{word-spacing:7.626667pt;}
.wsfa{word-spacing:7.635733pt;}
.ws115{word-spacing:7.690667pt;}
.ws59{word-spacing:7.745600pt;}
.ws3f{word-spacing:7.800533pt;}
.wsf2{word-spacing:7.910400pt;}
.ws36{word-spacing:7.965333pt;}
.ws7{word-spacing:8.000000pt;}
.ws42{word-spacing:8.075200pt;}
.ws6c{word-spacing:8.130133pt;}
.wscf{word-spacing:8.185067pt;}
.ws10{word-spacing:8.192000pt;}
.wsc0{word-spacing:8.240000pt;}
.wsf3{word-spacing:8.294933pt;}
.wscb{word-spacing:8.459733pt;}
.wsa7{word-spacing:8.514667pt;}
.ws125{word-spacing:8.569600pt;}
.wsd0{word-spacing:8.624533pt;}
.ws77{word-spacing:8.679467pt;}
.wsb9{word-spacing:8.789333pt;}
.ws9e{word-spacing:8.844267pt;}
.wse1{word-spacing:9.064000pt;}
.ws10a{word-spacing:9.118933pt;}
.wse6{word-spacing:9.448533pt;}
.wsb3{word-spacing:9.503467pt;}
.ws46{word-spacing:9.558400pt;}
.ws91{word-spacing:9.613333pt;}
.ws1f{word-spacing:9.668267pt;}
.ws4d{word-spacing:9.723200pt;}
.ws122{word-spacing:9.778133pt;}
.ws99{word-spacing:9.833067pt;}
.ws97{word-spacing:9.942933pt;}
.ws21{word-spacing:10.162667pt;}
.ws65{word-spacing:10.217600pt;}
.ws98{word-spacing:10.327467pt;}
.wsa{word-spacing:10.453333pt;}
.ws2e{word-spacing:10.492267pt;}
.ws6e{word-spacing:10.547200pt;}
.ws78{word-spacing:10.712000pt;}
.ws37{word-spacing:10.821867pt;}
.ws3c{word-spacing:10.876800pt;}
.ws81{word-spacing:10.922667pt;}
.wsac{word-spacing:10.931733pt;}
.wsf8{word-spacing:10.986667pt;}
.wse8{word-spacing:11.371200pt;}
.ws56{word-spacing:11.536000pt;}
.ws114{word-spacing:11.590933pt;}
.ws79{word-spacing:11.920533pt;}
.ws3{word-spacing:12.000000pt;}
.ws26{word-spacing:12.030400pt;}
.wse5{word-spacing:12.085333pt;}
.wse4{word-spacing:12.140267pt;}
.wsba{word-spacing:12.195200pt;}
.wsa6{word-spacing:12.250133pt;}
.ws9d{word-spacing:12.360000pt;}
.ws121{word-spacing:12.414933pt;}
.ws123{word-spacing:12.469867pt;}
.ws126{word-spacing:12.634667pt;}
.ws33{word-spacing:12.689600pt;}
.ws110{word-spacing:12.744533pt;}
.ws8{word-spacing:12.906667pt;}
.ws4b{word-spacing:13.184000pt;}
.ws8a{word-spacing:13.238933pt;}
.ws124{word-spacing:13.403733pt;}
.wse0{word-spacing:13.458667pt;}
.ws63{word-spacing:13.568533pt;}
.ws2f{word-spacing:13.733333pt;}
.ws9{word-spacing:13.760000pt;}
.ws41{word-spacing:14.008000pt;}
.wsc7{word-spacing:14.172800pt;}
.ws5{word-spacing:14.186667pt;}
.ws112{word-spacing:14.667200pt;}
.ws72{word-spacing:14.886933pt;}
.ws5f{word-spacing:15.051733pt;}
.ws60{word-spacing:15.161600pt;}
.ws6d{word-spacing:15.216533pt;}
.wsa2{word-spacing:15.326400pt;}
.ws90{word-spacing:15.436267pt;}
.wsf5{word-spacing:15.601067pt;}
.wsa1{word-spacing:15.656000pt;}
.ws1b{word-spacing:15.765867pt;}
.ws11b{word-spacing:15.820800pt;}
.wsfe{word-spacing:15.930667pt;}
.wsc6{word-spacing:16.480000pt;}
.ws76{word-spacing:16.544000pt;}
.wsf4{word-spacing:16.589867pt;}
.ws113{word-spacing:16.644800pt;}
.ws93{word-spacing:16.754667pt;}
.ws103{word-spacing:16.864533pt;}
.ws128{word-spacing:17.633600pt;}
.ws109{word-spacing:17.853333pt;}
.ws86{word-spacing:18.073067pt;}
.ws64{word-spacing:19.666133pt;}
.wsc8{word-spacing:25.214400pt;}
.wsa5{word-spacing:25.324267pt;}
.wsa0{word-spacing:33.564267pt;}
.ws1a{word-spacing:414.422933pt;}
._16{margin-left:-13.722347pt;}
._14{margin-left:-7.025973pt;}
._a{margin-left:-6.081120pt;}
._e{margin-left:-4.606987pt;}
._2{margin-left:-3.310400pt;}
._4{margin-left:-2.363733pt;}
._0{margin-left:-1.377600pt;}
._1{width:0.940800pt;}
._7{width:2.221920pt;}
._3{width:3.242667pt;}
._5{width:4.911040pt;}
._c{width:6.201973pt;}
._f{width:7.238560pt;}
._d{width:8.305920pt;}
._15{width:9.382613pt;}
._11{width:10.272533pt;}
._b{width:11.464587pt;}
._6{width:12.596213pt;}
._8{width:15.441760pt;}
._12{width:16.731733pt;}
._10{width:18.063413pt;}
._13{width:21.770080pt;}
._17{width:31.498773pt;}
._9{width:60.566880pt;}
.fsc{font-size:18.656000pt;}
.fs9{font-size:24.874667pt;}
.fsb{font-size:32.026133pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs4{font-size:43.530667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs2{font-size:55.968000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:41.318933pt;}
.y1{bottom:50.652267pt;}
.y28{bottom:68.000000pt;}
.yb6{bottom:68.000133pt;}
.y122{bottom:70.664133pt;}
.y88{bottom:71.552000pt;}
.yb5{bottom:71.552133pt;}
.y27{bottom:80.000000pt;}
.yb4{bottom:80.000133pt;}
.y4e{bottom:80.558800pt;}
.y87{bottom:82.664000pt;}
.y77{bottom:83.552000pt;}
.yb3{bottom:83.552133pt;}
.y26{bottom:92.000000pt;}
.yb2{bottom:92.000133pt;}
.y121{bottom:92.889867pt;}
.y7a{bottom:95.552000pt;}
.yb1{bottom:95.552133pt;}
.y4d{bottom:97.038800pt;}
.y10b{bottom:103.225067pt;}
.ye1{bottom:103.463200pt;}
.y25{bottom:104.000000pt;}
.yb0{bottom:104.000133pt;}
.y79{bottom:107.552000pt;}
.yaf{bottom:107.552133pt;}
.y120{bottom:109.369867pt;}
.y4c{bottom:113.518800pt;}
.y76{bottom:115.303200pt;}
.y24{bottom:116.000000pt;}
.ye0{bottom:117.863200pt;}
.yb7{bottom:119.552000pt;}
.y10a{bottom:119.705067pt;}
.y11f{bottom:125.849867pt;}
.y123{bottom:126.263200pt;}
.y23{bottom:128.000000pt;}
.y4b{bottom:129.998800pt;}
.y78{bottom:131.552000pt;}
.yae{bottom:131.769867pt;}
.y75{bottom:131.783200pt;}
.ydf{bottom:132.263200pt;}
.y109{bottom:136.185067pt;}
.y22{bottom:140.000000pt;}
.y11e{bottom:142.329867pt;}
.y4a{bottom:146.478800pt;}
.yde{bottom:146.663200pt;}
.yad{bottom:148.249867pt;}
.y74{bottom:148.263200pt;}
.y21{bottom:152.000000pt;}
.y108{bottom:152.665067pt;}
.yc7{bottom:155.703200pt;}
.y11d{bottom:158.809867pt;}
.ydd{bottom:161.063200pt;}
.y49{bottom:162.958800pt;}
.yac{bottom:164.729867pt;}
.y73{bottom:164.743200pt;}
.y20{bottom:167.552000pt;}
.y107{bottom:169.145067pt;}
.yc6{bottom:172.183200pt;}
.y11c{bottom:175.289867pt;}
.ydc{bottom:175.463200pt;}
.y1f{bottom:176.000000pt;}
.y48{bottom:179.438800pt;}
.yab{bottom:181.209867pt;}
.y72{bottom:181.223200pt;}
.y106{bottom:185.625067pt;}
.y1e{bottom:188.000000pt;}
.yc5{bottom:188.663200pt;}
.ydb{bottom:189.863200pt;}
.y11b{bottom:191.769867pt;}
.y86{bottom:195.463200pt;}
.y47{bottom:195.918800pt;}
.yaa{bottom:197.689867pt;}
.y71{bottom:197.703200pt;}
.y1d{bottom:200.000000pt;}
.y105{bottom:202.105067pt;}
.yda{bottom:204.263200pt;}
.yc4{bottom:205.143200pt;}
.y11a{bottom:208.249867pt;}
.y85{bottom:211.943200pt;}
.y46{bottom:212.398800pt;}
.ya9{bottom:214.169867pt;}
.y70{bottom:214.183200pt;}
.y1c{bottom:215.552000pt;}
.y104{bottom:218.585067pt;}
.yd9{bottom:218.663200pt;}
.yc3{bottom:221.623200pt;}
.y119{bottom:224.729867pt;}
.y84{bottom:228.423200pt;}
.y45{bottom:228.878800pt;}
.ya8{bottom:230.649867pt;}
.y6f{bottom:230.663200pt;}
.yd8{bottom:233.063200pt;}
.y103{bottom:235.065067pt;}
.yc2{bottom:238.103200pt;}
.y1b{bottom:242.780800pt;}
.y83{bottom:244.903200pt;}
.y44{bottom:245.358800pt;}
.ya7{bottom:247.129867pt;}
.y13e{bottom:247.132267pt;}
.y6e{bottom:247.143200pt;}
.yd7{bottom:247.463200pt;}
.y102{bottom:251.545067pt;}
.yc1{bottom:254.583200pt;}
.y118{bottom:257.689867pt;}
.y82{bottom:261.383200pt;}
.y43{bottom:261.838800pt;}
.yd6{bottom:261.863200pt;}
.ya6{bottom:263.609867pt;}
.y13d{bottom:263.612267pt;}
.y6d{bottom:263.623200pt;}
.y101{bottom:268.025067pt;}
.yc0{bottom:271.063200pt;}
.y117{bottom:272.089867pt;}
.y1a{bottom:275.260800pt;}
.yd5{bottom:276.263200pt;}
.y81{bottom:277.863200pt;}
.y42{bottom:278.318800pt;}
.ya5{bottom:280.089867pt;}
.y13c{bottom:280.092267pt;}
.y6c{bottom:280.103200pt;}
.y100{bottom:284.505067pt;}
.y116{bottom:286.489867pt;}
.ybf{bottom:287.543200pt;}
.yd4{bottom:290.663200pt;}
.y19{bottom:291.260800pt;}
.y80{bottom:294.343200pt;}
.y41{bottom:294.798800pt;}
.ya4{bottom:296.569867pt;}
.y13b{bottom:296.572267pt;}
.y6b{bottom:296.583200pt;}
.y115{bottom:300.889867pt;}
.yff{bottom:300.985067pt;}
.ybe{bottom:304.023200pt;}
.yd3{bottom:305.063200pt;}
.y18{bottom:307.260800pt;}
.y7f{bottom:310.823200pt;}
.y40{bottom:311.278800pt;}
.ya3{bottom:313.049867pt;}
.y13a{bottom:313.052267pt;}
.y6a{bottom:313.063200pt;}
.y114{bottom:315.289867pt;}
.yfe{bottom:317.465067pt;}
.yd2{bottom:319.463200pt;}
.ybd{bottom:320.503200pt;}
.y17{bottom:323.260800pt;}
.y7e{bottom:327.303200pt;}
.y3f{bottom:327.758800pt;}
.ya2{bottom:329.529867pt;}
.y139{bottom:329.532267pt;}
.y69{bottom:329.543200pt;}
.y113{bottom:329.689867pt;}
.yd1{bottom:333.863200pt;}
.ybc{bottom:336.983200pt;}
.y16{bottom:339.260800pt;}
.y7d{bottom:343.783200pt;}
.y112{bottom:344.089867pt;}
.y3e{bottom:344.238800pt;}
.ya1{bottom:346.009867pt;}
.y138{bottom:346.012267pt;}
.y68{bottom:346.023200pt;}
.yd0{bottom:348.263200pt;}
.ybb{bottom:353.463200pt;}
.yfd{bottom:353.945067pt;}
.y15{bottom:355.260800pt;}
.y111{bottom:358.489867pt;}
.y3d{bottom:360.718800pt;}
.ya0{bottom:362.489867pt;}
.y137{bottom:362.492267pt;}
.y67{bottom:362.503200pt;}
.ycf{bottom:362.663200pt;}
.yfc{bottom:368.345067pt;}
.yba{bottom:369.943200pt;}
.y14{bottom:371.260800pt;}
.y110{bottom:372.889867pt;}
.y7c{bottom:376.743200pt;}
.yce{bottom:377.063200pt;}
.y3c{bottom:377.198800pt;}
.y9f{bottom:378.969867pt;}
.y136{bottom:378.972267pt;}
.y66{bottom:378.983200pt;}
.yfb{bottom:382.745067pt;}
.yb9{bottom:386.423200pt;}
.y13{bottom:387.260800pt;}
.y10f{bottom:387.289867pt;}
.ycd{bottom:391.463200pt;}
.y3b{bottom:393.678800pt;}
.y7b{bottom:394.343200pt;}
.y9e{bottom:395.449867pt;}
.y135{bottom:395.452267pt;}
.y65{bottom:395.463200pt;}
.yfa{bottom:397.145067pt;}
.y10e{bottom:401.689867pt;}
.y12{bottom:403.260800pt;}
.ycc{bottom:405.863200pt;}
.y3a{bottom:410.158800pt;}
.yf9{bottom:411.545067pt;}
.y9d{bottom:411.929867pt;}
.y134{bottom:411.932267pt;}
.y64{bottom:411.943200pt;}
.y10d{bottom:416.089867pt;}
.y11{bottom:419.260800pt;}
.ycb{bottom:420.263200pt;}
.yb8{bottom:422.903200pt;}
.yf8{bottom:425.945067pt;}
.y39{bottom:426.638800pt;}
.y9c{bottom:428.409867pt;}
.y133{bottom:428.412400pt;}
.y63{bottom:428.423200pt;}
.y10c{bottom:430.489867pt;}
.yca{bottom:434.663200pt;}
.y10{bottom:435.260800pt;}
.yf7{bottom:440.345067pt;}
.y9b{bottom:444.889867pt;}
.y132{bottom:444.892400pt;}
.y62{bottom:444.903200pt;}
.yc9{bottom:449.063200pt;}
.yf{bottom:451.260800pt;}
.yf6{bottom:454.745067pt;}
.y38{bottom:459.598800pt;}
.y9a{bottom:461.369867pt;}
.y131{bottom:461.372267pt;}
.y61{bottom:461.383200pt;}
.yc8{bottom:463.463200pt;}
.ye{bottom:467.260800pt;}
.yf5{bottom:469.145067pt;}
.y99{bottom:477.849867pt;}
.y130{bottom:477.852267pt;}
.y60{bottom:477.863200pt;}
.yd{bottom:483.260800pt;}
.yf4{bottom:483.545067pt;}
.y98{bottom:494.329867pt;}
.y12f{bottom:494.332267pt;}
.y5f{bottom:494.343200pt;}
.yf3{bottom:497.945067pt;}
.yc{bottom:505.927467pt;}
.y37{bottom:509.678800pt;}
.y97{bottom:510.809867pt;}
.y12e{bottom:510.812400pt;}
.y5e{bottom:510.823200pt;}
.yf2{bottom:512.345067pt;}
.yf1{bottom:526.745067pt;}
.y96{bottom:527.289867pt;}
.y5d{bottom:527.303200pt;}
.yf0{bottom:541.145067pt;}
.y36{bottom:542.638800pt;}
.y95{bottom:543.769867pt;}
.y5c{bottom:543.783200pt;}
.y12d{bottom:547.292267pt;}
.yef{bottom:555.545067pt;}
.yb{bottom:558.194133pt;}
.y35{bottom:559.118800pt;}
.y94{bottom:560.249867pt;}
.y5b{bottom:560.263200pt;}
.yee{bottom:569.945067pt;}
.y34{bottom:575.598800pt;}
.y93{bottom:576.729867pt;}
.y5a{bottom:576.743200pt;}
.ya{bottom:577.394133pt;}
.yed{bottom:584.345067pt;}
.y12c{bottom:589.292267pt;}
.y33{bottom:592.078800pt;}
.y92{bottom:593.209867pt;}
.y59{bottom:593.223200pt;}
.yec{bottom:598.745067pt;}
.y12b{bottom:605.772400pt;}
.y32{bottom:608.558800pt;}
.y9{bottom:609.127467pt;}
.y91{bottom:609.689867pt;}
.y58{bottom:609.703200pt;}
.yeb{bottom:613.145067pt;}
.y12a{bottom:622.252267pt;}
.y31{bottom:625.038800pt;}
.y90{bottom:626.169867pt;}
.y57{bottom:626.183200pt;}
.yea{bottom:627.545067pt;}
.y8{bottom:631.840267pt;}
.y129{bottom:638.732400pt;}
.y30{bottom:641.518800pt;}
.ye9{bottom:641.945067pt;}
.y8f{bottom:642.649867pt;}
.y56{bottom:642.663200pt;}
.y128{bottom:655.212267pt;}
.y7{bottom:655.573600pt;}
.ye8{bottom:656.345067pt;}
.y2f{bottom:657.998800pt;}
.y8e{bottom:659.129867pt;}
.y55{bottom:659.143200pt;}
.ye7{bottom:670.745067pt;}
.y127{bottom:671.692267pt;}
.y2e{bottom:674.478800pt;}
.y8d{bottom:675.609867pt;}
.y54{bottom:675.623200pt;}
.ye6{bottom:685.145067pt;}
.y126{bottom:688.172400pt;}
.y2d{bottom:690.958800pt;}
.y8c{bottom:692.089867pt;}
.y53{bottom:692.103200pt;}
.y6{bottom:693.973600pt;}
.ye5{bottom:699.545067pt;}
.y125{bottom:704.652400pt;}
.y2c{bottom:707.438800pt;}
.y8b{bottom:708.569867pt;}
.y52{bottom:708.583200pt;}
.ye4{bottom:713.945067pt;}
.y5{bottom:717.973600pt;}
.y2b{bottom:723.918800pt;}
.y8a{bottom:725.049867pt;}
.y51{bottom:725.063200pt;}
.ye3{bottom:728.345067pt;}
.y2a{bottom:740.398800pt;}
.y124{bottom:741.132400pt;}
.y89{bottom:741.529733pt;}
.y50{bottom:741.543200pt;}
.ye2{bottom:742.745067pt;}
.y4{bottom:765.973600pt;}
.y3{bottom:789.973600pt;}
.y4f{bottom:804.862667pt;}
.y29{bottom:805.800133pt;}
.h18{height:21.826062pt;}
.he{height:23.229500pt;}
.h19{height:23.333667pt;}
.h1a{height:26.885667pt;}
.h3{height:32.757812pt;}
.h2{height:32.848958pt;}
.h9{height:32.976562pt;}
.hc{height:36.562500pt;}
.hb{height:36.640625pt;}
.hf{height:37.437500pt;}
.h10{height:37.541667pt;}
.h13{height:37.659375pt;}
.h12{height:37.739844pt;}
.hd{height:37.873958pt;}
.h14{height:40.161458pt;}
.h8{height:40.304688pt;}
.ha{height:40.447917pt;}
.h11{height:42.117188pt;}
.h16{height:46.927083pt;}
.h15{height:48.200781pt;}
.h17{height:48.334896pt;}
.h7{height:51.296875pt;}
.h1b{height:51.476562pt;}
.h6{height:54.770078pt;}
.h4{height:65.953125pt;}
.h5{height:70.418672pt;}
.h0{height:863.065333pt;}
.h1{height:863.333333pt;}
.w1{width:548.000000pt;}
.w0{width:548.032000pt;}
.x0{left:0.000000pt;}
.x5{left:48.944800pt;}
.x6{left:50.645733pt;}
.xa{left:61.417333pt;}
.x2{left:68.144933pt;}
.x1{left:69.543333pt;}
.xc{left:72.300000pt;}
.x7{left:75.611467pt;}
.x4{left:80.617333pt;}
.x9{left:88.541733pt;}
.xb{left:91.500000pt;}
.x3{left:94.811467pt;}
.x8{left:481.086533pt;}
}




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