
    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_7a361ec1e7b69211cc203fa0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_12268b999ee7d4d086d4bfd9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e646ef12e1184b14b3c7623d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.819400px;}
.v2{vertical-align:21.798000px;}
.lsa1{letter-spacing:-3.613500px;}
.ls56{letter-spacing:-2.130300px;}
.ls6e{letter-spacing:-1.735800px;}
.ls66{letter-spacing:-1.623600px;}
.ls33{letter-spacing:-1.504800px;}
.ls45{letter-spacing:-1.498200px;}
.ls30{letter-spacing:-1.445400px;}
.ls78{letter-spacing:-1.392600px;}
.ls74{letter-spacing:-1.386000px;}
.ls9d{letter-spacing:-1.336500px;}
.ls52{letter-spacing:-1.326600px;}
.ls6d{letter-spacing:-1.267200px;}
.ls5f{letter-spacing:-1.260600px;}
.lsa{letter-spacing:-1.208400px;}
.ls8c{letter-spacing:-1.178550px;}
.ls7c{letter-spacing:-1.148400px;}
.lsc{letter-spacing:-1.145700px;}
.ls3b{letter-spacing:-1.144800px;}
.ls7f{letter-spacing:-1.089000px;}
.ls3f{letter-spacing:-1.082400px;}
.ls95{letter-spacing:-1.029600px;}
.ls80{letter-spacing:-1.023000px;}
.ls6b{letter-spacing:-1.016400px;}
.ls54{letter-spacing:-0.970200px;}
.ls2e{letter-spacing:-0.963600px;}
.ls38{letter-spacing:-0.910800px;}
.ls58{letter-spacing:-0.904200px;}
.ls6c{letter-spacing:-0.851400px;}
.ls42{letter-spacing:-0.844800px;}
.ls72{letter-spacing:-0.838200px;}
.ls32{letter-spacing:-0.792000px;}
.lsa3{letter-spacing:-0.787500px;}
.ls1c{letter-spacing:-0.786600px;}
.ls1d{letter-spacing:-0.785400px;}
.lsa4{letter-spacing:-0.783000px;}
.lsa2{letter-spacing:-0.780000px;}
.ls46{letter-spacing:-0.739200px;}
.ls5c{letter-spacing:-0.726000px;}
.ls51{letter-spacing:-0.673200px;}
.ls65{letter-spacing:-0.666600px;}
.ls9b{letter-spacing:-0.616500px;}
.ls47{letter-spacing:-0.613800px;}
.ls98{letter-spacing:-0.607500px;}
.ls5a{letter-spacing:-0.607200px;}
.ls6{letter-spacing:-0.604200px;}
.ls9a{letter-spacing:-0.603000px;}
.ls99{letter-spacing:-0.600000px;}
.ls85{letter-spacing:-0.567600px;}
.ls60{letter-spacing:-0.561000px;}
.ls79{letter-spacing:-0.554400px;}
.ls35{letter-spacing:-0.547800px;}
.ls53{letter-spacing:-0.541200px;}
.lsa0{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.488400px;}
.ls55{letter-spacing:-0.481800px;}
.ls43{letter-spacing:-0.429000px;}
.ls48{letter-spacing:-0.426600px;}
.ls70{letter-spacing:-0.376200px;}
.ls34{letter-spacing:-0.369600px;}
.lsd{letter-spacing:-0.364800px;}
.ls41{letter-spacing:-0.363000px;}
.ls7e{letter-spacing:-0.360360px;}
.ls40{letter-spacing:-0.310200px;}
.ls1f{letter-spacing:-0.303600px;}
.ls8b{letter-spacing:-0.290400px;}
.ls1a{letter-spacing:-0.250800px;}
.ls7{letter-spacing:-0.245100px;}
.ls5b{letter-spacing:-0.244200px;}
.ls89{letter-spacing:-0.240240px;}
.ls37{letter-spacing:-0.191400px;}
.ls1b{letter-spacing:-0.188100px;}
.ls36{letter-spacing:-0.184800px;}
.ls75{letter-spacing:-0.138600px;}
.ls2d{letter-spacing:-0.132000px;}
.ls8{letter-spacing:-0.125400px;}
.ls86{letter-spacing:-0.120120px;}
.ls69{letter-spacing:-0.072600px;}
.lsb{letter-spacing:-0.068400px;}
.ls31{letter-spacing:-0.066000px;}
.ls59{letter-spacing:-0.019800px;}
.lsf{letter-spacing:-0.019200px;}
.ls9f{letter-spacing:-0.018000px;}
.lsa5{letter-spacing:-0.013500px;}
.ls2f{letter-spacing:-0.013200px;}
.ls39{letter-spacing:-0.012150px;}
.ls9e{letter-spacing:-0.012000px;}
.ls5{letter-spacing:-0.011400px;}
.ls3a{letter-spacing:-0.010800px;}
.ls10{letter-spacing:-0.009600px;}
.ls96{letter-spacing:-0.009000px;}
.ls87{letter-spacing:-0.008100px;}
.ls11{letter-spacing:-0.007200px;}
.ls1e{letter-spacing:-0.006600px;}
.ls97{letter-spacing:-0.006000px;}
.ls4{letter-spacing:-0.005700px;}
.ls12{letter-spacing:-0.005400px;}
.lse{letter-spacing:-0.004800px;}
.ls9c{letter-spacing:-0.004500px;}
.ls81{letter-spacing:-0.004050px;}
.ls9{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.004050px;}
.ls7d{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014400px;}
.ls27{letter-spacing:0.046200px;}
.ls4c{letter-spacing:0.052800px;}
.ls2{letter-spacing:0.057000px;}
.ls77{letter-spacing:0.059400px;}
.ls4d{letter-spacing:0.060000px;}
.ls73{letter-spacing:0.099000px;}
.ls7a{letter-spacing:0.105600px;}
.ls3c{letter-spacing:0.112200px;}
.ls92{letter-spacing:0.162000px;}
.ls6a{letter-spacing:0.165000px;}
.ls50{letter-spacing:0.167400px;}
.ls91{letter-spacing:0.171000px;}
.ls2b{letter-spacing:0.171600px;}
.ls90{letter-spacing:0.174000px;}
.ls8f{letter-spacing:0.175500px;}
.ls3d{letter-spacing:0.178200px;}
.ls8e{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.224400px;}
.ls18{letter-spacing:0.231000px;}
.ls1{letter-spacing:0.233700px;}
.ls82{letter-spacing:0.237600px;}
.ls7b{letter-spacing:0.283800px;}
.ls2c{letter-spacing:0.290400px;}
.ls93{letter-spacing:0.292500px;}
.ls94{letter-spacing:0.294000px;}
.ls15{letter-spacing:0.296400px;}
.ls25{letter-spacing:0.297000px;}
.ls23{letter-spacing:0.300000px;}
.ls16{letter-spacing:0.347700px;}
.ls2a{letter-spacing:0.349800px;}
.ls17{letter-spacing:0.356400px;}
.ls57{letter-spacing:0.409200px;}
.ls4f{letter-spacing:0.413100px;}
.ls26{letter-spacing:0.415800px;}
.ls0{letter-spacing:0.416100px;}
.ls4e{letter-spacing:0.421200px;}
.ls22{letter-spacing:0.468600px;}
.ls24{letter-spacing:0.475200px;}
.ls5d{letter-spacing:0.528000px;}
.ls3e{letter-spacing:0.534600px;}
.ls20{letter-spacing:0.587400px;}
.ls5e{letter-spacing:0.594000px;}
.ls8a{letter-spacing:0.646800px;}
.ls28{letter-spacing:0.653400px;}
.ls13{letter-spacing:0.655500px;}
.ls61{letter-spacing:0.706200px;}
.ls19{letter-spacing:0.712500px;}
.ls21{letter-spacing:0.712800px;}
.ls64{letter-spacing:0.765600px;}
.ls4a{letter-spacing:0.772200px;}
.ls14{letter-spacing:0.775200px;}
.ls8d{letter-spacing:0.825000px;}
.ls49{letter-spacing:0.831600px;}
.ls62{letter-spacing:0.884400px;}
.ls29{letter-spacing:0.891000px;}
.ls4b{letter-spacing:0.950400px;}
.ls84{letter-spacing:0.957000px;}
.ls71{letter-spacing:1.009800px;}
.ls76{letter-spacing:1.016400px;}
.ls63{letter-spacing:1.135200px;}
.ls88{letter-spacing:1.201200px;}
.ls83{letter-spacing:1.425600px;}
.ls67{letter-spacing:1.676400px;}
.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;}
}
.wsba{word-spacing:-16.816800px;}
.ws95{word-spacing:-16.486800px;}
.ws83{word-spacing:-16.480200px;}
.ws61{word-spacing:-15.529800px;}
.wsbb{word-spacing:-15.000000px;}
.wsc5{word-spacing:-14.988000px;}
.ws1{word-spacing:-14.535000px;}
.ws0{word-spacing:-14.529300px;}
.ws1b{word-spacing:-14.523600px;}
.ws1c{word-spacing:-14.238600px;}
.wsad{word-spacing:-13.500000px;}
.ws2e{word-spacing:-11.550000px;}
.wsc7{word-spacing:-11.547000px;}
.wsc8{word-spacing:-11.542500px;}
.wsab{word-spacing:-11.429880px;}
.wsbd{word-spacing:-11.425500px;}
.wsc1{word-spacing:-11.421000px;}
.wsb5{word-spacing:-11.309760px;}
.wsc3{word-spacing:-11.250000px;}
.wsc6{word-spacing:-11.245500px;}
.wsbc{word-spacing:-11.241000px;}
.wsd7{word-spacing:-11.236500px;}
.wsa3{word-spacing:-11.189640px;}
.wsc9{word-spacing:-10.710000px;}
.wsbf{word-spacing:-10.647000px;}
.wsbe{word-spacing:-10.642500px;}
.wsc0{word-spacing:-10.633500px;}
.ws64{word-spacing:-10.546200px;}
.ws63{word-spacing:-10.538100px;}
.wsd6{word-spacing:-10.467000px;}
.wsd5{word-spacing:-10.462500px;}
.ws96{word-spacing:-10.129050px;}
.wsa5{word-spacing:-10.125000px;}
.wsa4{word-spacing:-10.120950px;}
.wsae{word-spacing:-10.116900px;}
.ws2f{word-spacing:-10.112850px;}
.wsc4{word-spacing:-9.913500px;}
.wsb6{word-spacing:-8.946450px;}
.ws62{word-spacing:-7.994700px;}
.wsd4{word-spacing:-7.636500px;}
.ws2c{word-spacing:-0.838200px;}
.ws3e{word-spacing:-0.778800px;}
.ws38{word-spacing:-0.772200px;}
.wsb1{word-spacing:-0.765600px;}
.ws29{word-spacing:-0.719400px;}
.ws30{word-spacing:-0.712800px;}
.ws9e{word-spacing:-0.706200px;}
.wsaa{word-spacing:-0.685800px;}
.wsa{word-spacing:-0.661200px;}
.ws46{word-spacing:-0.660000px;}
.wsa9{word-spacing:-0.658800px;}
.ws11{word-spacing:-0.655500px;}
.ws49{word-spacing:-0.653400px;}
.wse{word-spacing:-0.604200px;}
.ws77{word-spacing:-0.600600px;}
.ws16{word-spacing:-0.598500px;}
.ws5c{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.592800px;}
.ws3f{word-spacing:-0.541200px;}
.ws60{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.535800px;}
.ws50{word-spacing:-0.534600px;}
.ws2b{word-spacing:-0.481800px;}
.wsd{word-spacing:-0.478800px;}
.ws53{word-spacing:-0.475200px;}
.ws20{word-spacing:-0.473100px;}
.ws43{word-spacing:-0.468600px;}
.ws99{word-spacing:-0.462000px;}
.ws31{word-spacing:-0.422400px;}
.ws3a{word-spacing:-0.415800px;}
.ws87{word-spacing:-0.409200px;}
.ws6a{word-spacing:-0.363000px;}
.ws15{word-spacing:-0.359100px;}
.ws58{word-spacing:-0.356400px;}
.wsb3{word-spacing:-0.349800px;}
.ws68{word-spacing:-0.303600px;}
.ws44{word-spacing:-0.297000px;}
.ws8{word-spacing:-0.296400px;}
.ws56{word-spacing:-0.290400px;}
.ws9d{word-spacing:-0.283800px;}
.wsb2{word-spacing:-0.277200px;}
.wsb7{word-spacing:-0.257400px;}
.ws28{word-spacing:-0.237600px;}
.ws5b{word-spacing:-0.231000px;}
.ws7d{word-spacing:-0.224400px;}
.ws1f{word-spacing:-0.182400px;}
.wscc{word-spacing:-0.180000px;}
.ws7b{word-spacing:-0.178200px;}
.ws72{word-spacing:-0.171600px;}
.ws1d{word-spacing:-0.171000px;}
.ws66{word-spacing:-0.165000px;}
.wscb{word-spacing:-0.120000px;}
.ws7a{word-spacing:-0.118800px;}
.ws5a{word-spacing:-0.105600px;}
.wsca{word-spacing:-0.096000px;}
.ws27{word-spacing:-0.059400px;}
.ws5{word-spacing:-0.057000px;}
.ws40{word-spacing:-0.052800px;}
.ws18{word-spacing:-0.014400px;}
.ws98{word-spacing:-0.006600px;}
.ws9b{word-spacing:-0.005400px;}
.ws2d{word-spacing:-0.004800px;}
.ws4{word-spacing:0.000000px;}
.ws4d{word-spacing:0.005400px;}
.ws2{word-spacing:0.005700px;}
.wscd{word-spacing:0.006000px;}
.ws7c{word-spacing:0.006600px;}
.ws17{word-spacing:0.007200px;}
.wsd0{word-spacing:0.012000px;}
.ws74{word-spacing:0.013200px;}
.wsd9{word-spacing:0.018000px;}
.wsa1{word-spacing:0.052800px;}
.ws24{word-spacing:0.057000px;}
.ws55{word-spacing:0.059400px;}
.wsd8{word-spacing:0.060000px;}
.ws21{word-spacing:0.062700px;}
.wsa0{word-spacing:0.066000px;}
.ws37{word-spacing:0.118800px;}
.ws4a{word-spacing:0.125400px;}
.ws8d{word-spacing:0.178200px;}
.ws45{word-spacing:0.184800px;}
.wsb0{word-spacing:0.191400px;}
.ws94{word-spacing:0.231000px;}
.ws92{word-spacing:0.237600px;}
.ws8c{word-spacing:0.244200px;}
.wscf{word-spacing:0.246000px;}
.ws8f{word-spacing:0.290400px;}
.wsa7{word-spacing:0.291600px;}
.ws4f{word-spacing:0.297000px;}
.ws9a{word-spacing:0.303600px;}
.wsa8{word-spacing:0.318600px;}
.ws3{word-spacing:0.359100px;}
.ws76{word-spacing:0.363000px;}
.ws93{word-spacing:0.415800px;}
.ws13{word-spacing:0.421800px;}
.ws78{word-spacing:0.422400px;}
.ws80{word-spacing:0.475200px;}
.ws10{word-spacing:0.478800px;}
.ws4e{word-spacing:0.480600px;}
.ws2a{word-spacing:0.481800px;}
.wsf{word-spacing:0.484500px;}
.wsaf{word-spacing:0.534600px;}
.ws88{word-spacing:0.541200px;}
.ws9f{word-spacing:0.547800px;}
.ws5d{word-spacing:0.594000px;}
.wsd3{word-spacing:0.600000px;}
.ws8a{word-spacing:0.600600px;}
.ws5e{word-spacing:0.604800px;}
.ws8b{word-spacing:0.607200px;}
.ws59{word-spacing:0.653400px;}
.ws9{word-spacing:0.655500px;}
.ws70{word-spacing:0.658800px;}
.ws3b{word-spacing:0.660000px;}
.ws23{word-spacing:0.661200px;}
.ws7f{word-spacing:0.712800px;}
.ws22{word-spacing:0.718200px;}
.ws42{word-spacing:0.719400px;}
.ws7{word-spacing:0.723900px;}
.ws82{word-spacing:0.726000px;}
.ws41{word-spacing:0.778800px;}
.ws79{word-spacing:0.785400px;}
.ws97{word-spacing:0.838200px;}
.wsd1{word-spacing:0.840000px;}
.ws65{word-spacing:0.844800px;}
.ws86{word-spacing:0.851400px;}
.ws6d{word-spacing:0.869400px;}
.ws6e{word-spacing:0.880200px;}
.ws69{word-spacing:0.897600px;}
.ws85{word-spacing:0.904200px;}
.ws81{word-spacing:0.910800px;}
.ws34{word-spacing:0.957000px;}
.ws6f{word-spacing:0.961200px;}
.ws51{word-spacing:0.963600px;}
.ws90{word-spacing:1.016400px;}
.ws6{word-spacing:1.020300px;}
.ws33{word-spacing:1.023000px;}
.ws54{word-spacing:1.075800px;}
.ws7e{word-spacing:1.082400px;}
.ws25{word-spacing:1.083000px;}
.ws84{word-spacing:1.135200px;}
.wsb{word-spacing:1.140000px;}
.ws35{word-spacing:1.141800px;}
.ws71{word-spacing:1.144800px;}
.ws36{word-spacing:1.148400px;}
.ws6b{word-spacing:1.194600px;}
.ws1e{word-spacing:1.197000px;}
.ws19{word-spacing:1.198800px;}
.wsd2{word-spacing:1.200000px;}
.ws6c{word-spacing:1.201200px;}
.ws91{word-spacing:1.214400px;}
.ws3c{word-spacing:1.254000px;}
.ws57{word-spacing:1.260600px;}
.ws89{word-spacing:1.267200px;}
.ws67{word-spacing:1.313400px;}
.ws5f{word-spacing:1.317600px;}
.ws26{word-spacing:1.320000px;}
.wsa2{word-spacing:1.326600px;}
.wsce{word-spacing:1.332000px;}
.wsb4{word-spacing:1.333200px;}
.wsb9{word-spacing:1.372800px;}
.ws12{word-spacing:1.379400px;}
.ws48{word-spacing:1.386000px;}
.ws75{word-spacing:1.438800px;}
.ws73{word-spacing:1.445400px;}
.ws52{word-spacing:1.498200px;}
.ws47{word-spacing:1.504800px;}
.ws9c{word-spacing:1.511400px;}
.ws32{word-spacing:1.557600px;}
.ws3d{word-spacing:1.564200px;}
.wsb8{word-spacing:1.610400px;}
.ws4b{word-spacing:1.617000px;}
.ws39{word-spacing:1.623600px;}
.wsac{word-spacing:3.353400px;}
.wsc2{word-spacing:3.687000px;}
.ws8e{word-spacing:3.960000px;}
.wsa6{word-spacing:9.001800px;}
.ws1a{word-spacing:35.760000px;}
.ws4c{word-spacing:36.001800px;}
._e{margin-left:-11.820600px;}
._12{margin-left:-10.018800px;}
._6{margin-left:-8.632800px;}
._2{margin-left:-7.398600px;}
._9{margin-left:-6.298500px;}
._8{margin-left:-4.757400px;}
._1{margin-left:-3.705000px;}
._3{margin-left:-2.274300px;}
._0{margin-left:-1.254000px;}
._4{width:1.390800px;}
._10{width:2.601750px;}
._f{width:17.173200px;}
._c{width:36.001800px;}
._d{width:37.564800px;}
._11{width:40.504200px;}
._5{width:47.721600px;}
._7{width:49.507200px;}
._b{width:696.537600px;}
._a{width:982.968000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:37.800000px;}
.fs8{font-size:40.500000px;}
.fsa{font-size:45.000000px;}
.fs7{font-size:46.200000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:30.986715px;}
.y9c{bottom:31.674015px;}
.ybc{bottom:31.675215px;}
.y78{bottom:31.675815px;}
.y24{bottom:31.677015px;}
.y190{bottom:31.677615px;}
.y19f{bottom:31.706265px;}
.y164{bottom:31.707915px;}
.y14e{bottom:31.709565px;}
.yde{bottom:31.712865px;}
.y116{bottom:31.722765px;}
.y131{bottom:31.729365px;}
.yf2{bottom:31.739265px;}
.y213{bottom:38.487765px;}
.y9b{bottom:45.924615px;}
.ybb{bottom:45.925815px;}
.y77{bottom:45.926415px;}
.y1e3{bottom:45.927015px;}
.y23{bottom:45.927615px;}
.y44{bottom:48.237465px;}
.y19e{bottom:48.957015px;}
.y163{bottom:48.958665px;}
.y14d{bottom:48.960315px;}
.ydd{bottom:48.963615px;}
.y115{bottom:48.973515px;}
.y130{bottom:48.980115px;}
.yf1{bottom:48.988365px;}
.y212{bottom:54.237765px;}
.y9a{bottom:60.175215px;}
.yba{bottom:60.176415px;}
.y76{bottom:60.177015px;}
.y1e2{bottom:60.177615px;}
.y43{bottom:65.488215px;}
.y19d{bottom:66.207765px;}
.y162{bottom:66.209415px;}
.y16f{bottom:66.211065px;}
.ydc{bottom:66.214365px;}
.y114{bottom:66.224265px;}
.y12f{bottom:66.230865px;}
.y1ee{bottom:66.231915px;}
.y18f{bottom:66.233415px;}
.y1fa{bottom:66.236115px;}
.yf0{bottom:66.237465px;}
.y211{bottom:69.987765px;}
.y99{bottom:74.425815px;}
.yb9{bottom:74.427015px;}
.y75{bottom:74.427615px;}
.y14c{bottom:74.835615px;}
.y42{bottom:82.738965px;}
.y19c{bottom:83.458515px;}
.y161{bottom:83.460165px;}
.y16e{bottom:83.461815px;}
.ydb{bottom:83.465115px;}
.y113{bottom:83.475015px;}
.y12e{bottom:83.481615px;}
.y1ed{bottom:83.482665px;}
.y202{bottom:83.483115px;}
.y18e{bottom:83.484165px;}
.yef{bottom:83.486565px;}
.y1f9{bottom:83.486865px;}
.y1d{bottom:83.596590px;}
.y210{bottom:85.737765px;}
.y98{bottom:88.676415px;}
.yb8{bottom:88.677615px;}
.y14b{bottom:92.086365px;}
.y1c{bottom:98.596140px;}
.y41{bottom:99.989715px;}
.y1f8{bottom:100.707615px;}
.y19b{bottom:100.709265px;}
.y160{bottom:100.710915px;}
.y16d{bottom:100.712565px;}
.y1e1{bottom:100.714665px;}
.yda{bottom:100.715865px;}
.y12d{bottom:100.732365px;}
.y1ec{bottom:100.733415px;}
.y201{bottom:100.733865px;}
.y18d{bottom:100.734915px;}
.yee{bottom:100.735665px;}
.y20f{bottom:101.487765px;}
.y97{bottom:102.927015px;}
.y14a{bottom:109.337115px;}
.y112{bottom:109.350315px;}
.y1b{bottom:113.595690px;}
.y96{bottom:117.177615px;}
.y20e{bottom:117.237765px;}
.y40{bottom:117.240465px;}
.y1f7{bottom:117.958365px;}
.y19a{bottom:117.960015px;}
.y15f{bottom:117.961665px;}
.y16c{bottom:117.963315px;}
.y1e0{bottom:117.965415px;}
.yd9{bottom:117.966615px;}
.y12c{bottom:117.983115px;}
.y200{bottom:117.984615px;}
.yed{bottom:117.984765px;}
.y18c{bottom:117.985665px;}
.y74{bottom:118.007415px;}
.y1eb{bottom:126.608715px;}
.y1a{bottom:128.595240px;}
.y20d{bottom:132.987615px;}
.y3f{bottom:134.491215px;}
.y1f6{bottom:135.209115px;}
.y199{bottom:135.210765px;}
.y149{bottom:135.212415px;}
.y16b{bottom:135.214065px;}
.y1df{bottom:135.216165px;}
.y1c0{bottom:135.217365px;}
.yec{bottom:135.233865px;}
.yb7{bottom:135.234615px;}
.y1ff{bottom:135.235365px;}
.y18b{bottom:135.236415px;}
.y73{bottom:135.256515px;}
.y19{bottom:143.594790px;}
.yd8{bottom:143.841915px;}
.y20c{bottom:148.737615px;}
.y3e{bottom:151.740315px;}
.y1f5{bottom:152.459865px;}
.y198{bottom:152.461515px;}
.y148{bottom:152.463165px;}
.y16a{bottom:152.464815px;}
.y1de{bottom:152.466915px;}
.y1bf{bottom:152.468115px;}
.y111{bottom:152.474715px;}
.y95{bottom:152.481615px;}
.yeb{bottom:152.482965px;}
.y12b{bottom:152.484615px;}
.yb6{bottom:152.485365px;}
.y1fe{bottom:152.486115px;}
.y18a{bottom:152.487165px;}
.y72{bottom:152.505615px;}
.y18{bottom:158.594340px;}
.y20b{bottom:164.487915px;}
.y3d{bottom:168.989415px;}
.y1f4{bottom:169.710615px;}
.y197{bottom:169.712265px;}
.y147{bottom:169.713915px;}
.y169{bottom:169.715565px;}
.y1dd{bottom:169.717665px;}
.y1be{bottom:169.718865px;}
.y110{bottom:169.725465px;}
.yea{bottom:169.732065px;}
.y94{bottom:169.732365px;}
.y1ea{bottom:169.733115px;}
.y12a{bottom:169.735365px;}
.yb5{bottom:169.736115px;}
.y1fd{bottom:169.736865px;}
.y189{bottom:169.737915px;}
.y71{bottom:169.754715px;}
.y17{bottom:173.593890px;}
.y20a{bottom:180.237615px;}
.y3c{bottom:186.238515px;}
.y1f3{bottom:186.961365px;}
.y196{bottom:186.963015px;}
.y146{bottom:186.964665px;}
.yd7{bottom:186.966315px;}
.y1dc{bottom:186.968415px;}
.y1bd{bottom:186.969615px;}
.y10f{bottom:186.976215px;}
.ye9{bottom:186.981165px;}
.y93{bottom:186.983115px;}
.y1e9{bottom:186.983865px;}
.y129{bottom:186.986115px;}
.yb4{bottom:186.986865px;}
.y188{bottom:186.988665px;}
.y70{bottom:187.003815px;}
.y16{bottom:188.593440px;}
.y15e{bottom:195.589215px;}
.y209{bottom:195.987615px;}
.y3b{bottom:203.487615px;}
.y15{bottom:203.592990px;}
.y1f2{bottom:204.212115px;}
.y195{bottom:204.213765px;}
.y145{bottom:204.215415px;}
.yd6{bottom:204.217065px;}
.y1db{bottom:204.219165px;}
.y1bc{bottom:204.220365px;}
.y10e{bottom:204.226965px;}
.ye8{bottom:204.230265px;}
.y92{bottom:204.233865px;}
.y1e8{bottom:204.234615px;}
.y128{bottom:204.236865px;}
.y187{bottom:204.239415px;}
.y6f{bottom:204.252915px;}
.y208{bottom:211.737615px;}
.y15d{bottom:212.839965px;}
.y14{bottom:218.592540px;}
.y1f1{bottom:221.462865px;}
.y194{bottom:221.464515px;}
.y144{bottom:221.466165px;}
.yd5{bottom:221.467815px;}
.y1da{bottom:221.469915px;}
.y1bb{bottom:221.471115px;}
.y10d{bottom:221.477715px;}
.ye7{bottom:221.479365px;}
.y91{bottom:221.484615px;}
.y1e7{bottom:221.485365px;}
.y127{bottom:221.487615px;}
.y186{bottom:221.490165px;}
.y6e{bottom:221.502015px;}
.y207{bottom:227.487615px;}
.y15c{bottom:230.090715px;}
.y13{bottom:233.592090px;}
.y1f0{bottom:238.713615px;}
.y193{bottom:238.715265px;}
.y1a5{bottom:238.716915px;}
.yd4{bottom:238.718565px;}
.y1d9{bottom:238.720665px;}
.y1ba{bottom:238.721865px;}
.ye6{bottom:238.728465px;}
.y90{bottom:238.735365px;}
.y1e6{bottom:238.736115px;}
.y126{bottom:238.738365px;}
.y185{bottom:238.740915px;}
.y6d{bottom:238.751115px;}
.y206{bottom:243.237615px;}
.y143{bottom:247.341465px;}
.y4c{bottom:251.832165px;}
.y1ef{bottom:255.964365px;}
.y192{bottom:255.966015px;}
.y1a4{bottom:255.967665px;}
.yd3{bottom:255.969315px;}
.y1d8{bottom:255.971415px;}
.y1b9{bottom:255.972615px;}
.ye5{bottom:255.977565px;}
.y10c{bottom:255.979215px;}
.y8f{bottom:255.986115px;}
.y1e5{bottom:255.986865px;}
.y125{bottom:255.989115px;}
.y184{bottom:255.991665px;}
.y6c{bottom:256.000215px;}
.y205{bottom:258.987615px;}
.y12{bottom:263.592615px;}
.y15b{bottom:264.592215px;}
.y4b{bottom:272.832390px;}
.y1e4{bottom:273.215115px;}
.y191{bottom:273.216765px;}
.y1a3{bottom:273.218415px;}
.yd2{bottom:273.220065px;}
.y1d7{bottom:273.222165px;}
.y1b8{bottom:273.223365px;}
.ye4{bottom:273.226665px;}
.y10b{bottom:273.229965px;}
.y8e{bottom:273.236865px;}
.y124{bottom:273.238215px;}
.y183{bottom:273.242415px;}
.y6b{bottom:273.249315px;}
.y204{bottom:274.737615px;}
.y168{bottom:281.844615px;}
.y142{bottom:290.465865px;}
.y15a{bottom:290.467515px;}
.y1a2{bottom:290.469165px;}
.yd1{bottom:290.470815px;}
.y1d6{bottom:290.472915px;}
.y1b7{bottom:290.474115px;}
.yb3{bottom:290.475765px;}
.y8d{bottom:290.478165px;}
.y10a{bottom:290.480715px;}
.y123{bottom:290.487315px;}
.y182{bottom:290.493165px;}
.y6a{bottom:290.498415px;}
.y4a{bottom:293.832615px;}
.y203{bottom:299.095365px;}
.y11{bottom:299.598165px;}
.y141{bottom:307.716615px;}
.y159{bottom:307.718265px;}
.y1a1{bottom:307.719915px;}
.yd0{bottom:307.721565px;}
.y1d5{bottom:307.723665px;}
.ye3{bottom:307.724865px;}
.yb2{bottom:307.726515px;}
.y8c{bottom:307.728915px;}
.y109{bottom:307.731465px;}
.y122{bottom:307.736415px;}
.y181{bottom:307.742265px;}
.y69{bottom:307.747515px;}
.y10{bottom:314.597715px;}
.y49{bottom:314.832840px;}
.y140{bottom:324.967365px;}
.y158{bottom:324.969015px;}
.ycf{bottom:324.970665px;}
.ye2{bottom:324.973965px;}
.y1d4{bottom:324.974415px;}
.y1b6{bottom:324.975615px;}
.yb1{bottom:324.977265px;}
.y8b{bottom:324.979665px;}
.y108{bottom:324.982215px;}
.y121{bottom:324.985515px;}
.y180{bottom:324.991365px;}
.y68{bottom:324.996615px;}
.y48{bottom:329.832390px;}
.yf{bottom:335.597940px;}
.y4d{bottom:335.833065px;}
.y13f{bottom:342.218115px;}
.y157{bottom:342.219765px;}
.yce{bottom:342.221415px;}
.y1d3{bottom:342.225165px;}
.y1b5{bottom:342.226365px;}
.yb0{bottom:342.228015px;}
.y8a{bottom:342.230415px;}
.y107{bottom:342.232965px;}
.y120{bottom:342.236265px;}
.y17f{bottom:342.240465px;}
.y67{bottom:342.245715px;}
.ye{bottom:350.597490px;}
.y47{bottom:350.832615px;}
.ye1{bottom:350.849265px;}
.y13e{bottom:359.468865px;}
.y156{bottom:359.470515px;}
.ycd{bottom:359.472165px;}
.y1d2{bottom:359.475915px;}
.y1b4{bottom:359.477115px;}
.yaf{bottom:359.478765px;}
.y89{bottom:359.481165px;}
.y106{bottom:359.483715px;}
.y11f{bottom:359.485365px;}
.y17e{bottom:359.489565px;}
.y66{bottom:359.494815px;}
.yd{bottom:365.597040px;}
.y13d{bottom:376.719615px;}
.y155{bottom:376.721265px;}
.ycc{bottom:376.722915px;}
.y1d1{bottom:376.726665px;}
.y1b3{bottom:376.727865px;}
.yae{bottom:376.729515px;}
.y88{bottom:376.731915px;}
.y105{bottom:376.734465px;}
.y17d{bottom:376.738665px;}
.y65{bottom:376.743915px;}
.y46{bottom:376.767615px;}
.yc{bottom:380.596590px;}
.y13c{bottom:393.970365px;}
.y154{bottom:393.972015px;}
.ycb{bottom:393.973665px;}
.y1d0{bottom:393.977415px;}
.y1b2{bottom:393.978615px;}
.yad{bottom:393.980265px;}
.y87{bottom:393.982665px;}
.y11e{bottom:393.983565px;}
.y104{bottom:393.985215px;}
.y17c{bottom:393.987765px;}
.y64{bottom:393.993015px;}
.yb{bottom:395.596140px;}
.y1a0{bottom:402.598215px;}
.ya{bottom:410.595690px;}
.y13b{bottom:411.221115px;}
.y153{bottom:411.222765px;}
.yca{bottom:411.224415px;}
.y1cf{bottom:411.228165px;}
.y1b1{bottom:411.229365px;}
.yac{bottom:411.231015px;}
.y11d{bottom:411.232665px;}
.y86{bottom:411.233415px;}
.y103{bottom:411.235965px;}
.y17b{bottom:411.236865px;}
.y63{bottom:411.242115px;}
.y9{bottom:425.595240px;}
.y3a{bottom:427.737615px;}
.y13a{bottom:428.471865px;}
.y152{bottom:428.473515px;}
.yc9{bottom:428.475165px;}
.y1ce{bottom:428.478915px;}
.yab{bottom:428.480115px;}
.y11c{bottom:428.481765px;}
.y85{bottom:428.484165px;}
.y17a{bottom:428.485965px;}
.y102{bottom:428.486715px;}
.y62{bottom:428.491215px;}
.y8{bottom:440.594790px;}
.y139{bottom:445.722615px;}
.y151{bottom:445.724265px;}
.yc8{bottom:445.725915px;}
.yaa{bottom:445.729215px;}
.y1cd{bottom:445.729665px;}
.y11b{bottom:445.730865px;}
.y84{bottom:445.734915px;}
.y179{bottom:445.735065px;}
.y101{bottom:445.737465px;}
.y61{bottom:445.740315px;}
.y39{bottom:448.742940px;}
.y7{bottom:455.594340px;}
.y138{bottom:462.973365px;}
.y150{bottom:462.975015px;}
.yc7{bottom:462.976665px;}
.ya9{bottom:462.978315px;}
.y11a{bottom:462.979965px;}
.y1cc{bottom:462.980415px;}
.y1b0{bottom:462.981615px;}
.y178{bottom:462.984165px;}
.y83{bottom:462.985665px;}
.y60{bottom:462.989415px;}
.y38{bottom:463.742490px;}
.y6{bottom:470.593890px;}
.y100{bottom:471.612765px;}
.y37{bottom:478.742040px;}
.y137{bottom:480.224115px;}
.y14f{bottom:480.225765px;}
.ya8{bottom:480.227415px;}
.y119{bottom:480.229065px;}
.y1cb{bottom:480.231165px;}
.y1af{bottom:480.232365px;}
.y177{bottom:480.233265px;}
.y82{bottom:480.236415px;}
.y5f{bottom:480.238515px;}
.y5{bottom:485.593440px;}
.y36{bottom:493.741590px;}
.y136{bottom:497.474865px;}
.ya7{bottom:497.476515px;}
.yc6{bottom:497.478165px;}
.y1ca{bottom:497.481915px;}
.y176{bottom:497.482365px;}
.y1ae{bottom:497.483115px;}
.y5e{bottom:497.484615px;}
.y81{bottom:497.487165px;}
.y4{bottom:500.592990px;}
.y35{bottom:508.741140px;}
.y135{bottom:514.725615px;}
.ya6{bottom:514.727265px;}
.yc5{bottom:514.728915px;}
.y1c9{bottom:514.732665px;}
.y175{bottom:514.733115px;}
.y1ad{bottom:514.733865px;}
.y5d{bottom:514.735365px;}
.yff{bottom:514.737165px;}
.y80{bottom:514.737915px;}
.y3{bottom:515.592540px;}
.y34{bottom:523.740690px;}
.y2{bottom:530.592090px;}
.y134{bottom:531.976365px;}
.ya5{bottom:531.978015px;}
.yc4{bottom:531.979665px;}
.y1c8{bottom:531.983415px;}
.y174{bottom:531.983865px;}
.y1ac{bottom:531.984615px;}
.y5c{bottom:531.986115px;}
.yfe{bottom:531.987915px;}
.y33{bottom:538.740240px;}
.y7f{bottom:540.613215px;}
.y133{bottom:549.227115px;}
.ya4{bottom:549.228765px;}
.yc3{bottom:549.230415px;}
.y1c7{bottom:549.234165px;}
.y173{bottom:549.234615px;}
.y1ab{bottom:549.235365px;}
.y5b{bottom:549.236865px;}
.yfd{bottom:549.238665px;}
.y32{bottom:553.739790px;}
.y1{bottom:560.592615px;}
.y132{bottom:566.477865px;}
.ya3{bottom:566.479515px;}
.yc2{bottom:566.481165px;}
.y172{bottom:566.485365px;}
.y1aa{bottom:566.486115px;}
.yfc{bottom:566.489415px;}
.y5a{bottom:566.493915px;}
.y31{bottom:568.739340px;}
.ye0{bottom:575.105715px;}
.y1c6{bottom:575.109465px;}
.y7e{bottom:583.728615px;}
.ya2{bottom:583.730265px;}
.yc1{bottom:583.731915px;}
.y171{bottom:583.736115px;}
.y1a9{bottom:583.736865px;}
.y30{bottom:583.738890px;}
.yfb{bottom:583.740165px;}
.y59{bottom:583.743015px;}
.ydf{bottom:592.356465px;}
.y2f{bottom:598.738440px;}
.y7d{bottom:600.979365px;}
.ya1{bottom:600.981015px;}
.yc0{bottom:600.982665px;}
.y170{bottom:600.986865px;}
.y1a8{bottom:600.987615px;}
.yfa{bottom:600.990915px;}
.y58{bottom:600.992115px;}
.y2e{bottom:613.737990px;}
.y7c{bottom:618.230115px;}
.ya0{bottom:618.231765px;}
.ybf{bottom:618.233415px;}
.y1c5{bottom:618.233865px;}
.y1a7{bottom:618.236715px;}
.y57{bottom:618.241215px;}
.yf9{bottom:618.241665px;}
.y2d{bottom:628.737540px;}
.y7b{bottom:635.480865px;}
.y9f{bottom:635.482515px;}
.ybe{bottom:635.484165px;}
.y1c4{bottom:635.484615px;}
.y1a6{bottom:635.485815px;}
.y56{bottom:635.490315px;}
.y2c{bottom:643.737090px;}
.yf8{bottom:644.116965px;}
.y7a{bottom:652.731615px;}
.y9e{bottom:652.733265px;}
.y118{bottom:652.734915px;}
.y1c3{bottom:652.735365px;}
.y55{bottom:652.739415px;}
.ybd{bottom:661.359465px;}
.y79{bottom:669.982365px;}
.y9d{bottom:669.984015px;}
.y1fc{bottom:669.985665px;}
.y1c2{bottom:669.986115px;}
.y54{bottom:669.988515px;}
.y2b{bottom:673.737615px;}
.y117{bottom:678.610215px;}
.y53{bottom:687.233115px;}
.y1c1{bottom:687.236865px;}
.yf7{bottom:687.241365px;}
.y167{bottom:695.859315px;}
.y1fb{bottom:695.860965px;}
.y52{bottom:704.483865px;}
.yf6{bottom:704.490465px;}
.y22{bottom:705.942765px;}
.y2a{bottom:709.739190px;}
.y166{bottom:713.110065px;}
.y51{bottom:721.734615px;}
.yf5{bottom:721.739565px;}
.y21{bottom:723.942765px;}
.y29{bottom:724.738740px;}
.y217{bottom:727.737765px;}
.y165{bottom:730.360815px;}
.y50{bottom:738.985365px;}
.yf4{bottom:738.988665px;}
.y20{bottom:741.942765px;}
.y216{bottom:743.487765px;}
.y28{bottom:745.738965px;}
.y4f{bottom:756.236115px;}
.yf3{bottom:756.237765px;}
.y215{bottom:759.237915px;}
.y27{bottom:760.738515px;}
.y4e{bottom:773.486865px;}
.y214{bottom:774.987915px;}
.y26{bottom:775.738065px;}
.y1f{bottom:786.942615px;}
.y25{bottom:790.737615px;}
.y1e{bottom:837.942765px;}
.h3{height:51.216000px;}
.h7{height:57.618000px;}
.h18{height:57.619200px;}
.h6{height:58.152000px;}
.hc{height:58.536000px;}
.h13{height:58.537200px;}
.h14{height:58.538400px;}
.h2{height:60.819000px;}
.h1b{height:65.038800px;}
.h1d{height:65.039400px;}
.h19{height:65.040000px;}
.h1c{height:65.040600px;}
.h1a{height:65.041200px;}
.h8{height:70.422000px;}
.ha{height:71.050200px;}
.hb{height:71.087400px;}
.h11{height:71.090400px;}
.h9{height:71.093400px;}
.h12{height:71.105400px;}
.hd{height:71.111400px;}
.he{height:71.113200px;}
.h10{height:71.122800px;}
.h15{height:71.165400px;}
.h17{height:71.167200px;}
.h16{height:71.195400px;}
.hf{height:71.544000px;}
.h5{height:76.824000px;}
.h4{height:102.432000px;}
.h1{height:889.500000px;}
.h0{height:889.654365px;}
.w1{width:602.250000px;}
.w0{width:602.585655px;}
.x0{left:0.000000px;}
.x1{left:66.945540px;}
.xa{left:68.925015px;}
.x5{left:74.985540px;}
.x2{left:89.444865px;}
.x6{left:96.121140px;}
.x8{left:99.555390px;}
.x9{left:107.505465px;}
.x7{left:202.830840px;}
.x4{left:288.975540px;}
.xb{left:322.620615px;}
.x3{left:433.560540px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.839467pt;}
.v2{vertical-align:19.376000pt;}
.lsa1{letter-spacing:-3.212000pt;}
.ls56{letter-spacing:-1.893600pt;}
.ls6e{letter-spacing:-1.542933pt;}
.ls66{letter-spacing:-1.443200pt;}
.ls33{letter-spacing:-1.337600pt;}
.ls45{letter-spacing:-1.331733pt;}
.ls30{letter-spacing:-1.284800pt;}
.ls78{letter-spacing:-1.237867pt;}
.ls74{letter-spacing:-1.232000pt;}
.ls9d{letter-spacing:-1.188000pt;}
.ls52{letter-spacing:-1.179200pt;}
.ls6d{letter-spacing:-1.126400pt;}
.ls5f{letter-spacing:-1.120533pt;}
.lsa{letter-spacing:-1.074133pt;}
.ls8c{letter-spacing:-1.047600pt;}
.ls7c{letter-spacing:-1.020800pt;}
.lsc{letter-spacing:-1.018400pt;}
.ls3b{letter-spacing:-1.017600pt;}
.ls7f{letter-spacing:-0.968000pt;}
.ls3f{letter-spacing:-0.962133pt;}
.ls95{letter-spacing:-0.915200pt;}
.ls80{letter-spacing:-0.909333pt;}
.ls6b{letter-spacing:-0.903467pt;}
.ls54{letter-spacing:-0.862400pt;}
.ls2e{letter-spacing:-0.856533pt;}
.ls38{letter-spacing:-0.809600pt;}
.ls58{letter-spacing:-0.803733pt;}
.ls6c{letter-spacing:-0.756800pt;}
.ls42{letter-spacing:-0.750933pt;}
.ls72{letter-spacing:-0.745067pt;}
.ls32{letter-spacing:-0.704000pt;}
.lsa3{letter-spacing:-0.700000pt;}
.ls1c{letter-spacing:-0.699200pt;}
.ls1d{letter-spacing:-0.698133pt;}
.lsa4{letter-spacing:-0.696000pt;}
.lsa2{letter-spacing:-0.693333pt;}
.ls46{letter-spacing:-0.657067pt;}
.ls5c{letter-spacing:-0.645333pt;}
.ls51{letter-spacing:-0.598400pt;}
.ls65{letter-spacing:-0.592533pt;}
.ls9b{letter-spacing:-0.548000pt;}
.ls47{letter-spacing:-0.545600pt;}
.ls98{letter-spacing:-0.540000pt;}
.ls5a{letter-spacing:-0.539733pt;}
.ls6{letter-spacing:-0.537067pt;}
.ls9a{letter-spacing:-0.536000pt;}
.ls99{letter-spacing:-0.533333pt;}
.ls85{letter-spacing:-0.504533pt;}
.ls60{letter-spacing:-0.498667pt;}
.ls79{letter-spacing:-0.492800pt;}
.ls35{letter-spacing:-0.486933pt;}
.ls53{letter-spacing:-0.481067pt;}
.lsa0{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.434133pt;}
.ls55{letter-spacing:-0.428267pt;}
.ls43{letter-spacing:-0.381333pt;}
.ls48{letter-spacing:-0.379200pt;}
.ls70{letter-spacing:-0.334400pt;}
.ls34{letter-spacing:-0.328533pt;}
.lsd{letter-spacing:-0.324267pt;}
.ls41{letter-spacing:-0.322667pt;}
.ls7e{letter-spacing:-0.320320pt;}
.ls40{letter-spacing:-0.275733pt;}
.ls1f{letter-spacing:-0.269867pt;}
.ls8b{letter-spacing:-0.258133pt;}
.ls1a{letter-spacing:-0.222933pt;}
.ls7{letter-spacing:-0.217867pt;}
.ls5b{letter-spacing:-0.217067pt;}
.ls89{letter-spacing:-0.213547pt;}
.ls37{letter-spacing:-0.170133pt;}
.ls1b{letter-spacing:-0.167200pt;}
.ls36{letter-spacing:-0.164267pt;}
.ls75{letter-spacing:-0.123200pt;}
.ls2d{letter-spacing:-0.117333pt;}
.ls8{letter-spacing:-0.111467pt;}
.ls86{letter-spacing:-0.106773pt;}
.ls69{letter-spacing:-0.064533pt;}
.lsb{letter-spacing:-0.060800pt;}
.ls31{letter-spacing:-0.058667pt;}
.ls59{letter-spacing:-0.017600pt;}
.lsf{letter-spacing:-0.017067pt;}
.ls9f{letter-spacing:-0.016000pt;}
.lsa5{letter-spacing:-0.012000pt;}
.ls2f{letter-spacing:-0.011733pt;}
.ls39{letter-spacing:-0.010800pt;}
.ls9e{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:-0.010133pt;}
.ls3a{letter-spacing:-0.009600pt;}
.ls10{letter-spacing:-0.008533pt;}
.ls96{letter-spacing:-0.008000pt;}
.ls87{letter-spacing:-0.007200pt;}
.ls11{letter-spacing:-0.006400pt;}
.ls1e{letter-spacing:-0.005867pt;}
.ls97{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:-0.005067pt;}
.ls12{letter-spacing:-0.004800pt;}
.lse{letter-spacing:-0.004267pt;}
.ls9c{letter-spacing:-0.004000pt;}
.ls81{letter-spacing:-0.003600pt;}
.ls9{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.003600pt;}
.ls7d{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.012800pt;}
.ls27{letter-spacing:0.041067pt;}
.ls4c{letter-spacing:0.046933pt;}
.ls2{letter-spacing:0.050667pt;}
.ls77{letter-spacing:0.052800pt;}
.ls4d{letter-spacing:0.053333pt;}
.ls73{letter-spacing:0.088000pt;}
.ls7a{letter-spacing:0.093867pt;}
.ls3c{letter-spacing:0.099733pt;}
.ls92{letter-spacing:0.144000pt;}
.ls6a{letter-spacing:0.146667pt;}
.ls50{letter-spacing:0.148800pt;}
.ls91{letter-spacing:0.152000pt;}
.ls2b{letter-spacing:0.152533pt;}
.ls90{letter-spacing:0.154667pt;}
.ls8f{letter-spacing:0.156000pt;}
.ls3d{letter-spacing:0.158400pt;}
.ls8e{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.199467pt;}
.ls18{letter-spacing:0.205333pt;}
.ls1{letter-spacing:0.207733pt;}
.ls82{letter-spacing:0.211200pt;}
.ls7b{letter-spacing:0.252267pt;}
.ls2c{letter-spacing:0.258133pt;}
.ls93{letter-spacing:0.260000pt;}
.ls94{letter-spacing:0.261333pt;}
.ls15{letter-spacing:0.263467pt;}
.ls25{letter-spacing:0.264000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls16{letter-spacing:0.309067pt;}
.ls2a{letter-spacing:0.310933pt;}
.ls17{letter-spacing:0.316800pt;}
.ls57{letter-spacing:0.363733pt;}
.ls4f{letter-spacing:0.367200pt;}
.ls26{letter-spacing:0.369600pt;}
.ls0{letter-spacing:0.369867pt;}
.ls4e{letter-spacing:0.374400pt;}
.ls22{letter-spacing:0.416533pt;}
.ls24{letter-spacing:0.422400pt;}
.ls5d{letter-spacing:0.469333pt;}
.ls3e{letter-spacing:0.475200pt;}
.ls20{letter-spacing:0.522133pt;}
.ls5e{letter-spacing:0.528000pt;}
.ls8a{letter-spacing:0.574933pt;}
.ls28{letter-spacing:0.580800pt;}
.ls13{letter-spacing:0.582667pt;}
.ls61{letter-spacing:0.627733pt;}
.ls19{letter-spacing:0.633333pt;}
.ls21{letter-spacing:0.633600pt;}
.ls64{letter-spacing:0.680533pt;}
.ls4a{letter-spacing:0.686400pt;}
.ls14{letter-spacing:0.689067pt;}
.ls8d{letter-spacing:0.733333pt;}
.ls49{letter-spacing:0.739200pt;}
.ls62{letter-spacing:0.786133pt;}
.ls29{letter-spacing:0.792000pt;}
.ls4b{letter-spacing:0.844800pt;}
.ls84{letter-spacing:0.850667pt;}
.ls71{letter-spacing:0.897600pt;}
.ls76{letter-spacing:0.903467pt;}
.ls63{letter-spacing:1.009067pt;}
.ls88{letter-spacing:1.067733pt;}
.ls83{letter-spacing:1.267200pt;}
.ls67{letter-spacing:1.490133pt;}
.wsba{word-spacing:-14.948267pt;}
.ws95{word-spacing:-14.654933pt;}
.ws83{word-spacing:-14.649067pt;}
.ws61{word-spacing:-13.804267pt;}
.wsbb{word-spacing:-13.333333pt;}
.wsc5{word-spacing:-13.322667pt;}
.ws1{word-spacing:-12.920000pt;}
.ws0{word-spacing:-12.914933pt;}
.ws1b{word-spacing:-12.909867pt;}
.ws1c{word-spacing:-12.656533pt;}
.wsad{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-10.266667pt;}
.wsc7{word-spacing:-10.264000pt;}
.wsc8{word-spacing:-10.260000pt;}
.wsab{word-spacing:-10.159893pt;}
.wsbd{word-spacing:-10.156000pt;}
.wsc1{word-spacing:-10.152000pt;}
.wsb5{word-spacing:-10.053120pt;}
.wsc3{word-spacing:-10.000000pt;}
.wsc6{word-spacing:-9.996000pt;}
.wsbc{word-spacing:-9.992000pt;}
.wsd7{word-spacing:-9.988000pt;}
.wsa3{word-spacing:-9.946347pt;}
.wsc9{word-spacing:-9.520000pt;}
.wsbf{word-spacing:-9.464000pt;}
.wsbe{word-spacing:-9.460000pt;}
.wsc0{word-spacing:-9.452000pt;}
.ws64{word-spacing:-9.374400pt;}
.ws63{word-spacing:-9.367200pt;}
.wsd6{word-spacing:-9.304000pt;}
.wsd5{word-spacing:-9.300000pt;}
.ws96{word-spacing:-9.003600pt;}
.wsa5{word-spacing:-9.000000pt;}
.wsa4{word-spacing:-8.996400pt;}
.wsae{word-spacing:-8.992800pt;}
.ws2f{word-spacing:-8.989200pt;}
.wsc4{word-spacing:-8.812000pt;}
.wsb6{word-spacing:-7.952400pt;}
.ws62{word-spacing:-7.106400pt;}
.wsd4{word-spacing:-6.788000pt;}
.ws2c{word-spacing:-0.745067pt;}
.ws3e{word-spacing:-0.692267pt;}
.ws38{word-spacing:-0.686400pt;}
.wsb1{word-spacing:-0.680533pt;}
.ws29{word-spacing:-0.639467pt;}
.ws30{word-spacing:-0.633600pt;}
.ws9e{word-spacing:-0.627733pt;}
.wsaa{word-spacing:-0.609600pt;}
.wsa{word-spacing:-0.587733pt;}
.ws46{word-spacing:-0.586667pt;}
.wsa9{word-spacing:-0.585600pt;}
.ws11{word-spacing:-0.582667pt;}
.ws49{word-spacing:-0.580800pt;}
.wse{word-spacing:-0.537067pt;}
.ws77{word-spacing:-0.533867pt;}
.ws16{word-spacing:-0.532000pt;}
.ws5c{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.526933pt;}
.ws3f{word-spacing:-0.481067pt;}
.ws60{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.476267pt;}
.ws50{word-spacing:-0.475200pt;}
.ws2b{word-spacing:-0.428267pt;}
.wsd{word-spacing:-0.425600pt;}
.ws53{word-spacing:-0.422400pt;}
.ws20{word-spacing:-0.420533pt;}
.ws43{word-spacing:-0.416533pt;}
.ws99{word-spacing:-0.410667pt;}
.ws31{word-spacing:-0.375467pt;}
.ws3a{word-spacing:-0.369600pt;}
.ws87{word-spacing:-0.363733pt;}
.ws6a{word-spacing:-0.322667pt;}
.ws15{word-spacing:-0.319200pt;}
.ws58{word-spacing:-0.316800pt;}
.wsb3{word-spacing:-0.310933pt;}
.ws68{word-spacing:-0.269867pt;}
.ws44{word-spacing:-0.264000pt;}
.ws8{word-spacing:-0.263467pt;}
.ws56{word-spacing:-0.258133pt;}
.ws9d{word-spacing:-0.252267pt;}
.wsb2{word-spacing:-0.246400pt;}
.wsb7{word-spacing:-0.228800pt;}
.ws28{word-spacing:-0.211200pt;}
.ws5b{word-spacing:-0.205333pt;}
.ws7d{word-spacing:-0.199467pt;}
.ws1f{word-spacing:-0.162133pt;}
.wscc{word-spacing:-0.160000pt;}
.ws7b{word-spacing:-0.158400pt;}
.ws72{word-spacing:-0.152533pt;}
.ws1d{word-spacing:-0.152000pt;}
.ws66{word-spacing:-0.146667pt;}
.wscb{word-spacing:-0.106667pt;}
.ws7a{word-spacing:-0.105600pt;}
.ws5a{word-spacing:-0.093867pt;}
.wsca{word-spacing:-0.085333pt;}
.ws27{word-spacing:-0.052800pt;}
.ws5{word-spacing:-0.050667pt;}
.ws40{word-spacing:-0.046933pt;}
.ws18{word-spacing:-0.012800pt;}
.ws98{word-spacing:-0.005867pt;}
.ws9b{word-spacing:-0.004800pt;}
.ws2d{word-spacing:-0.004267pt;}
.ws4{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.004800pt;}
.ws2{word-spacing:0.005067pt;}
.wscd{word-spacing:0.005333pt;}
.ws7c{word-spacing:0.005867pt;}
.ws17{word-spacing:0.006400pt;}
.wsd0{word-spacing:0.010667pt;}
.ws74{word-spacing:0.011733pt;}
.wsd9{word-spacing:0.016000pt;}
.wsa1{word-spacing:0.046933pt;}
.ws24{word-spacing:0.050667pt;}
.ws55{word-spacing:0.052800pt;}
.wsd8{word-spacing:0.053333pt;}
.ws21{word-spacing:0.055733pt;}
.wsa0{word-spacing:0.058667pt;}
.ws37{word-spacing:0.105600pt;}
.ws4a{word-spacing:0.111467pt;}
.ws8d{word-spacing:0.158400pt;}
.ws45{word-spacing:0.164267pt;}
.wsb0{word-spacing:0.170133pt;}
.ws94{word-spacing:0.205333pt;}
.ws92{word-spacing:0.211200pt;}
.ws8c{word-spacing:0.217067pt;}
.wscf{word-spacing:0.218667pt;}
.ws8f{word-spacing:0.258133pt;}
.wsa7{word-spacing:0.259200pt;}
.ws4f{word-spacing:0.264000pt;}
.ws9a{word-spacing:0.269867pt;}
.wsa8{word-spacing:0.283200pt;}
.ws3{word-spacing:0.319200pt;}
.ws76{word-spacing:0.322667pt;}
.ws93{word-spacing:0.369600pt;}
.ws13{word-spacing:0.374933pt;}
.ws78{word-spacing:0.375467pt;}
.ws80{word-spacing:0.422400pt;}
.ws10{word-spacing:0.425600pt;}
.ws4e{word-spacing:0.427200pt;}
.ws2a{word-spacing:0.428267pt;}
.wsf{word-spacing:0.430667pt;}
.wsaf{word-spacing:0.475200pt;}
.ws88{word-spacing:0.481067pt;}
.ws9f{word-spacing:0.486933pt;}
.ws5d{word-spacing:0.528000pt;}
.wsd3{word-spacing:0.533333pt;}
.ws8a{word-spacing:0.533867pt;}
.ws5e{word-spacing:0.537600pt;}
.ws8b{word-spacing:0.539733pt;}
.ws59{word-spacing:0.580800pt;}
.ws9{word-spacing:0.582667pt;}
.ws70{word-spacing:0.585600pt;}
.ws3b{word-spacing:0.586667pt;}
.ws23{word-spacing:0.587733pt;}
.ws7f{word-spacing:0.633600pt;}
.ws22{word-spacing:0.638400pt;}
.ws42{word-spacing:0.639467pt;}
.ws7{word-spacing:0.643467pt;}
.ws82{word-spacing:0.645333pt;}
.ws41{word-spacing:0.692267pt;}
.ws79{word-spacing:0.698133pt;}
.ws97{word-spacing:0.745067pt;}
.wsd1{word-spacing:0.746667pt;}
.ws65{word-spacing:0.750933pt;}
.ws86{word-spacing:0.756800pt;}
.ws6d{word-spacing:0.772800pt;}
.ws6e{word-spacing:0.782400pt;}
.ws69{word-spacing:0.797867pt;}
.ws85{word-spacing:0.803733pt;}
.ws81{word-spacing:0.809600pt;}
.ws34{word-spacing:0.850667pt;}
.ws6f{word-spacing:0.854400pt;}
.ws51{word-spacing:0.856533pt;}
.ws90{word-spacing:0.903467pt;}
.ws6{word-spacing:0.906933pt;}
.ws33{word-spacing:0.909333pt;}
.ws54{word-spacing:0.956267pt;}
.ws7e{word-spacing:0.962133pt;}
.ws25{word-spacing:0.962667pt;}
.ws84{word-spacing:1.009067pt;}
.wsb{word-spacing:1.013333pt;}
.ws35{word-spacing:1.014933pt;}
.ws71{word-spacing:1.017600pt;}
.ws36{word-spacing:1.020800pt;}
.ws6b{word-spacing:1.061867pt;}
.ws1e{word-spacing:1.064000pt;}
.ws19{word-spacing:1.065600pt;}
.wsd2{word-spacing:1.066667pt;}
.ws6c{word-spacing:1.067733pt;}
.ws91{word-spacing:1.079467pt;}
.ws3c{word-spacing:1.114667pt;}
.ws57{word-spacing:1.120533pt;}
.ws89{word-spacing:1.126400pt;}
.ws67{word-spacing:1.167467pt;}
.ws5f{word-spacing:1.171200pt;}
.ws26{word-spacing:1.173333pt;}
.wsa2{word-spacing:1.179200pt;}
.wsce{word-spacing:1.184000pt;}
.wsb4{word-spacing:1.185067pt;}
.wsb9{word-spacing:1.220267pt;}
.ws12{word-spacing:1.226133pt;}
.ws48{word-spacing:1.232000pt;}
.ws75{word-spacing:1.278933pt;}
.ws73{word-spacing:1.284800pt;}
.ws52{word-spacing:1.331733pt;}
.ws47{word-spacing:1.337600pt;}
.ws9c{word-spacing:1.343467pt;}
.ws32{word-spacing:1.384533pt;}
.ws3d{word-spacing:1.390400pt;}
.wsb8{word-spacing:1.431467pt;}
.ws4b{word-spacing:1.437333pt;}
.ws39{word-spacing:1.443200pt;}
.wsac{word-spacing:2.980800pt;}
.wsc2{word-spacing:3.277333pt;}
.ws8e{word-spacing:3.520000pt;}
.wsa6{word-spacing:8.001600pt;}
.ws1a{word-spacing:31.786667pt;}
.ws4c{word-spacing:32.001600pt;}
._e{margin-left:-10.507200pt;}
._12{margin-left:-8.905600pt;}
._6{margin-left:-7.673600pt;}
._2{margin-left:-6.576533pt;}
._9{margin-left:-5.598667pt;}
._8{margin-left:-4.228800pt;}
._1{margin-left:-3.293333pt;}
._3{margin-left:-2.021600pt;}
._0{margin-left:-1.114667pt;}
._4{width:1.236267pt;}
._10{width:2.312667pt;}
._f{width:15.265067pt;}
._c{width:32.001600pt;}
._d{width:33.390933pt;}
._11{width:36.003733pt;}
._5{width:42.419200pt;}
._7{width:44.006400pt;}
._b{width:619.144533pt;}
._a{width:873.749333pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:36.000000pt;}
.fsa{font-size:40.000000pt;}
.fs7{font-size:41.066667pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:27.543747pt;}
.y9c{bottom:28.154680pt;}
.ybc{bottom:28.155747pt;}
.y78{bottom:28.156280pt;}
.y24{bottom:28.157347pt;}
.y190{bottom:28.157880pt;}
.y19f{bottom:28.183347pt;}
.y164{bottom:28.184813pt;}
.y14e{bottom:28.186280pt;}
.yde{bottom:28.189213pt;}
.y116{bottom:28.198013pt;}
.y131{bottom:28.203880pt;}
.yf2{bottom:28.212680pt;}
.y213{bottom:34.211347pt;}
.y9b{bottom:40.821880pt;}
.ybb{bottom:40.822947pt;}
.y77{bottom:40.823480pt;}
.y1e3{bottom:40.824013pt;}
.y23{bottom:40.824547pt;}
.y44{bottom:42.877747pt;}
.y19e{bottom:43.517347pt;}
.y163{bottom:43.518813pt;}
.y14d{bottom:43.520280pt;}
.ydd{bottom:43.523213pt;}
.y115{bottom:43.532013pt;}
.y130{bottom:43.537880pt;}
.yf1{bottom:43.545213pt;}
.y212{bottom:48.211347pt;}
.y9a{bottom:53.489080pt;}
.yba{bottom:53.490147pt;}
.y76{bottom:53.490680pt;}
.y1e2{bottom:53.491213pt;}
.y43{bottom:58.211747pt;}
.y19d{bottom:58.851347pt;}
.y162{bottom:58.852813pt;}
.y16f{bottom:58.854280pt;}
.ydc{bottom:58.857213pt;}
.y114{bottom:58.866013pt;}
.y12f{bottom:58.871880pt;}
.y1ee{bottom:58.872813pt;}
.y18f{bottom:58.874147pt;}
.y1fa{bottom:58.876547pt;}
.yf0{bottom:58.877747pt;}
.y211{bottom:62.211347pt;}
.y99{bottom:66.156280pt;}
.yb9{bottom:66.157347pt;}
.y75{bottom:66.157880pt;}
.y14c{bottom:66.520547pt;}
.y42{bottom:73.545747pt;}
.y19c{bottom:74.185347pt;}
.y161{bottom:74.186813pt;}
.y16e{bottom:74.188280pt;}
.ydb{bottom:74.191213pt;}
.y113{bottom:74.200013pt;}
.y12e{bottom:74.205880pt;}
.y1ed{bottom:74.206813pt;}
.y202{bottom:74.207213pt;}
.y18e{bottom:74.208147pt;}
.yef{bottom:74.210280pt;}
.y1f9{bottom:74.210547pt;}
.y1d{bottom:74.308080pt;}
.y210{bottom:76.211347pt;}
.y98{bottom:78.823480pt;}
.yb8{bottom:78.824547pt;}
.y14b{bottom:81.854547pt;}
.y1c{bottom:87.641013pt;}
.y41{bottom:88.879747pt;}
.y1f8{bottom:89.517880pt;}
.y19b{bottom:89.519347pt;}
.y160{bottom:89.520813pt;}
.y16d{bottom:89.522280pt;}
.y1e1{bottom:89.524147pt;}
.yda{bottom:89.525213pt;}
.y12d{bottom:89.539880pt;}
.y1ec{bottom:89.540813pt;}
.y201{bottom:89.541213pt;}
.y18d{bottom:89.542147pt;}
.yee{bottom:89.542813pt;}
.y20f{bottom:90.211347pt;}
.y97{bottom:91.490680pt;}
.y14a{bottom:97.188547pt;}
.y112{bottom:97.200280pt;}
.y1b{bottom:100.973947pt;}
.y96{bottom:104.157880pt;}
.y20e{bottom:104.211347pt;}
.y40{bottom:104.213747pt;}
.y1f7{bottom:104.851880pt;}
.y19a{bottom:104.853347pt;}
.y15f{bottom:104.854813pt;}
.y16c{bottom:104.856280pt;}
.y1e0{bottom:104.858147pt;}
.yd9{bottom:104.859213pt;}
.y12c{bottom:104.873880pt;}
.y200{bottom:104.875213pt;}
.yed{bottom:104.875347pt;}
.y18c{bottom:104.876147pt;}
.y74{bottom:104.895480pt;}
.y1eb{bottom:112.541080pt;}
.y1a{bottom:114.306880pt;}
.y20d{bottom:118.211213pt;}
.y3f{bottom:119.547747pt;}
.y1f6{bottom:120.185880pt;}
.y199{bottom:120.187347pt;}
.y149{bottom:120.188813pt;}
.y16b{bottom:120.190280pt;}
.y1df{bottom:120.192147pt;}
.y1c0{bottom:120.193213pt;}
.yec{bottom:120.207880pt;}
.yb7{bottom:120.208547pt;}
.y1ff{bottom:120.209213pt;}
.y18b{bottom:120.210147pt;}
.y73{bottom:120.228013pt;}
.y19{bottom:127.639813pt;}
.yd8{bottom:127.859480pt;}
.y20c{bottom:132.211213pt;}
.y3e{bottom:134.880280pt;}
.y1f5{bottom:135.519880pt;}
.y198{bottom:135.521347pt;}
.y148{bottom:135.522813pt;}
.y16a{bottom:135.524280pt;}
.y1de{bottom:135.526147pt;}
.y1bf{bottom:135.527213pt;}
.y111{bottom:135.533080pt;}
.y95{bottom:135.539213pt;}
.yeb{bottom:135.540413pt;}
.y12b{bottom:135.541880pt;}
.yb6{bottom:135.542547pt;}
.y1fe{bottom:135.543213pt;}
.y18a{bottom:135.544147pt;}
.y72{bottom:135.560547pt;}
.y18{bottom:140.972747pt;}
.y20b{bottom:146.211480pt;}
.y3d{bottom:150.212813pt;}
.y1f4{bottom:150.853880pt;}
.y197{bottom:150.855347pt;}
.y147{bottom:150.856813pt;}
.y169{bottom:150.858280pt;}
.y1dd{bottom:150.860147pt;}
.y1be{bottom:150.861213pt;}
.y110{bottom:150.867080pt;}
.yea{bottom:150.872947pt;}
.y94{bottom:150.873213pt;}
.y1ea{bottom:150.873880pt;}
.y12a{bottom:150.875880pt;}
.yb5{bottom:150.876547pt;}
.y1fd{bottom:150.877213pt;}
.y189{bottom:150.878147pt;}
.y71{bottom:150.893080pt;}
.y17{bottom:154.305680pt;}
.y20a{bottom:160.211213pt;}
.y3c{bottom:165.545347pt;}
.y1f3{bottom:166.187880pt;}
.y196{bottom:166.189347pt;}
.y146{bottom:166.190813pt;}
.yd7{bottom:166.192280pt;}
.y1dc{bottom:166.194147pt;}
.y1bd{bottom:166.195213pt;}
.y10f{bottom:166.201080pt;}
.ye9{bottom:166.205480pt;}
.y93{bottom:166.207213pt;}
.y1e9{bottom:166.207880pt;}
.y129{bottom:166.209880pt;}
.yb4{bottom:166.210547pt;}
.y188{bottom:166.212147pt;}
.y70{bottom:166.225613pt;}
.y16{bottom:167.638613pt;}
.y15e{bottom:173.857080pt;}
.y209{bottom:174.211213pt;}
.y3b{bottom:180.877880pt;}
.y15{bottom:180.971547pt;}
.y1f2{bottom:181.521880pt;}
.y195{bottom:181.523347pt;}
.y145{bottom:181.524813pt;}
.yd6{bottom:181.526280pt;}
.y1db{bottom:181.528147pt;}
.y1bc{bottom:181.529213pt;}
.y10e{bottom:181.535080pt;}
.ye8{bottom:181.538013pt;}
.y92{bottom:181.541213pt;}
.y1e8{bottom:181.541880pt;}
.y128{bottom:181.543880pt;}
.y187{bottom:181.546147pt;}
.y6f{bottom:181.558147pt;}
.y208{bottom:188.211213pt;}
.y15d{bottom:189.191080pt;}
.y14{bottom:194.304480pt;}
.y1f1{bottom:196.855880pt;}
.y194{bottom:196.857347pt;}
.y144{bottom:196.858813pt;}
.yd5{bottom:196.860280pt;}
.y1da{bottom:196.862147pt;}
.y1bb{bottom:196.863213pt;}
.y10d{bottom:196.869080pt;}
.ye7{bottom:196.870547pt;}
.y91{bottom:196.875213pt;}
.y1e7{bottom:196.875880pt;}
.y127{bottom:196.877880pt;}
.y186{bottom:196.880147pt;}
.y6e{bottom:196.890680pt;}
.y207{bottom:202.211213pt;}
.y15c{bottom:204.525080pt;}
.y13{bottom:207.637413pt;}
.y1f0{bottom:212.189880pt;}
.y193{bottom:212.191347pt;}
.y1a5{bottom:212.192813pt;}
.yd4{bottom:212.194280pt;}
.y1d9{bottom:212.196147pt;}
.y1ba{bottom:212.197213pt;}
.ye6{bottom:212.203080pt;}
.y90{bottom:212.209213pt;}
.y1e6{bottom:212.209880pt;}
.y126{bottom:212.211880pt;}
.y185{bottom:212.214147pt;}
.y6d{bottom:212.223213pt;}
.y206{bottom:216.211213pt;}
.y143{bottom:219.859080pt;}
.y4c{bottom:223.850813pt;}
.y1ef{bottom:227.523880pt;}
.y192{bottom:227.525347pt;}
.y1a4{bottom:227.526813pt;}
.yd3{bottom:227.528280pt;}
.y1d8{bottom:227.530147pt;}
.y1b9{bottom:227.531213pt;}
.ye5{bottom:227.535613pt;}
.y10c{bottom:227.537080pt;}
.y8f{bottom:227.543213pt;}
.y1e5{bottom:227.543880pt;}
.y125{bottom:227.545880pt;}
.y184{bottom:227.548147pt;}
.y6c{bottom:227.555747pt;}
.y205{bottom:230.211213pt;}
.y12{bottom:234.304547pt;}
.y15b{bottom:235.193080pt;}
.y4b{bottom:242.517680pt;}
.y1e4{bottom:242.857880pt;}
.y191{bottom:242.859347pt;}
.y1a3{bottom:242.860813pt;}
.yd2{bottom:242.862280pt;}
.y1d7{bottom:242.864147pt;}
.y1b8{bottom:242.865213pt;}
.ye4{bottom:242.868147pt;}
.y10b{bottom:242.871080pt;}
.y8e{bottom:242.877213pt;}
.y124{bottom:242.878413pt;}
.y183{bottom:242.882147pt;}
.y6b{bottom:242.888280pt;}
.y204{bottom:244.211213pt;}
.y168{bottom:250.528547pt;}
.y142{bottom:258.191880pt;}
.y15a{bottom:258.193347pt;}
.y1a2{bottom:258.194813pt;}
.yd1{bottom:258.196280pt;}
.y1d6{bottom:258.198147pt;}
.y1b7{bottom:258.199213pt;}
.yb3{bottom:258.200680pt;}
.y8d{bottom:258.202813pt;}
.y10a{bottom:258.205080pt;}
.y123{bottom:258.210947pt;}
.y182{bottom:258.216147pt;}
.y6a{bottom:258.220813pt;}
.y4a{bottom:261.184547pt;}
.y203{bottom:265.862547pt;}
.y11{bottom:266.309480pt;}
.y141{bottom:273.525880pt;}
.y159{bottom:273.527347pt;}
.y1a1{bottom:273.528813pt;}
.yd0{bottom:273.530280pt;}
.y1d5{bottom:273.532147pt;}
.ye3{bottom:273.533213pt;}
.yb2{bottom:273.534680pt;}
.y8c{bottom:273.536813pt;}
.y109{bottom:273.539080pt;}
.y122{bottom:273.543480pt;}
.y181{bottom:273.548680pt;}
.y69{bottom:273.553347pt;}
.y10{bottom:279.642413pt;}
.y49{bottom:279.851413pt;}
.y140{bottom:288.859880pt;}
.y158{bottom:288.861347pt;}
.ycf{bottom:288.862813pt;}
.ye2{bottom:288.865747pt;}
.y1d4{bottom:288.866147pt;}
.y1b6{bottom:288.867213pt;}
.yb1{bottom:288.868680pt;}
.y8b{bottom:288.870813pt;}
.y108{bottom:288.873080pt;}
.y121{bottom:288.876013pt;}
.y180{bottom:288.881213pt;}
.y68{bottom:288.885880pt;}
.y48{bottom:293.184347pt;}
.yf{bottom:298.309280pt;}
.y4d{bottom:298.518280pt;}
.y13f{bottom:304.193880pt;}
.y157{bottom:304.195347pt;}
.yce{bottom:304.196813pt;}
.y1d3{bottom:304.200147pt;}
.y1b5{bottom:304.201213pt;}
.yb0{bottom:304.202680pt;}
.y8a{bottom:304.204813pt;}
.y107{bottom:304.207080pt;}
.y120{bottom:304.210013pt;}
.y17f{bottom:304.213747pt;}
.y67{bottom:304.218413pt;}
.ye{bottom:311.642213pt;}
.y47{bottom:311.851213pt;}
.ye1{bottom:311.866013pt;}
.y13e{bottom:319.527880pt;}
.y156{bottom:319.529347pt;}
.ycd{bottom:319.530813pt;}
.y1d2{bottom:319.534147pt;}
.y1b4{bottom:319.535213pt;}
.yaf{bottom:319.536680pt;}
.y89{bottom:319.538813pt;}
.y106{bottom:319.541080pt;}
.y11f{bottom:319.542547pt;}
.y17e{bottom:319.546280pt;}
.y66{bottom:319.550947pt;}
.yd{bottom:324.975147pt;}
.y13d{bottom:334.861880pt;}
.y155{bottom:334.863347pt;}
.ycc{bottom:334.864813pt;}
.y1d1{bottom:334.868147pt;}
.y1b3{bottom:334.869213pt;}
.yae{bottom:334.870680pt;}
.y88{bottom:334.872813pt;}
.y105{bottom:334.875080pt;}
.y17d{bottom:334.878813pt;}
.y65{bottom:334.883480pt;}
.y46{bottom:334.904547pt;}
.yc{bottom:338.308080pt;}
.y13c{bottom:350.195880pt;}
.y154{bottom:350.197347pt;}
.ycb{bottom:350.198813pt;}
.y1d0{bottom:350.202147pt;}
.y1b2{bottom:350.203213pt;}
.yad{bottom:350.204680pt;}
.y87{bottom:350.206813pt;}
.y11e{bottom:350.207613pt;}
.y104{bottom:350.209080pt;}
.y17c{bottom:350.211347pt;}
.y64{bottom:350.216013pt;}
.yb{bottom:351.641013pt;}
.y1a0{bottom:357.865080pt;}
.ya{bottom:364.973947pt;}
.y13b{bottom:365.529880pt;}
.y153{bottom:365.531347pt;}
.yca{bottom:365.532813pt;}
.y1cf{bottom:365.536147pt;}
.y1b1{bottom:365.537213pt;}
.yac{bottom:365.538680pt;}
.y11d{bottom:365.540147pt;}
.y86{bottom:365.540813pt;}
.y103{bottom:365.543080pt;}
.y17b{bottom:365.543880pt;}
.y63{bottom:365.548547pt;}
.y9{bottom:378.306880pt;}
.y3a{bottom:380.211213pt;}
.y13a{bottom:380.863880pt;}
.y152{bottom:380.865347pt;}
.yc9{bottom:380.866813pt;}
.y1ce{bottom:380.870147pt;}
.yab{bottom:380.871213pt;}
.y11c{bottom:380.872680pt;}
.y85{bottom:380.874813pt;}
.y17a{bottom:380.876413pt;}
.y102{bottom:380.877080pt;}
.y62{bottom:380.881080pt;}
.y8{bottom:391.639813pt;}
.y139{bottom:396.197880pt;}
.y151{bottom:396.199347pt;}
.yc8{bottom:396.200813pt;}
.yaa{bottom:396.203747pt;}
.y1cd{bottom:396.204147pt;}
.y11b{bottom:396.205213pt;}
.y84{bottom:396.208813pt;}
.y179{bottom:396.208947pt;}
.y101{bottom:396.211080pt;}
.y61{bottom:396.213613pt;}
.y39{bottom:398.882613pt;}
.y7{bottom:404.972747pt;}
.y138{bottom:411.531880pt;}
.y150{bottom:411.533347pt;}
.yc7{bottom:411.534813pt;}
.ya9{bottom:411.536280pt;}
.y11a{bottom:411.537747pt;}
.y1cc{bottom:411.538147pt;}
.y1b0{bottom:411.539213pt;}
.y178{bottom:411.541480pt;}
.y83{bottom:411.542813pt;}
.y60{bottom:411.546147pt;}
.y38{bottom:412.215547pt;}
.y6{bottom:418.305680pt;}
.y100{bottom:419.211347pt;}
.y37{bottom:425.548480pt;}
.y137{bottom:426.865880pt;}
.y14f{bottom:426.867347pt;}
.ya8{bottom:426.868813pt;}
.y119{bottom:426.870280pt;}
.y1cb{bottom:426.872147pt;}
.y1af{bottom:426.873213pt;}
.y177{bottom:426.874013pt;}
.y82{bottom:426.876813pt;}
.y5f{bottom:426.878680pt;}
.y5{bottom:431.638613pt;}
.y36{bottom:438.881413pt;}
.y136{bottom:442.199880pt;}
.ya7{bottom:442.201347pt;}
.yc6{bottom:442.202813pt;}
.y1ca{bottom:442.206147pt;}
.y176{bottom:442.206547pt;}
.y1ae{bottom:442.207213pt;}
.y5e{bottom:442.208547pt;}
.y81{bottom:442.210813pt;}
.y4{bottom:444.971547pt;}
.y35{bottom:452.214347pt;}
.y135{bottom:457.533880pt;}
.ya6{bottom:457.535347pt;}
.yc5{bottom:457.536813pt;}
.y1c9{bottom:457.540147pt;}
.y175{bottom:457.540547pt;}
.y1ad{bottom:457.541213pt;}
.y5d{bottom:457.542547pt;}
.yff{bottom:457.544147pt;}
.y80{bottom:457.544813pt;}
.y3{bottom:458.304480pt;}
.y34{bottom:465.547280pt;}
.y2{bottom:471.637413pt;}
.y134{bottom:472.867880pt;}
.ya5{bottom:472.869347pt;}
.yc4{bottom:472.870813pt;}
.y1c8{bottom:472.874147pt;}
.y174{bottom:472.874547pt;}
.y1ac{bottom:472.875213pt;}
.y5c{bottom:472.876547pt;}
.yfe{bottom:472.878147pt;}
.y33{bottom:478.880213pt;}
.y7f{bottom:480.545080pt;}
.y133{bottom:488.201880pt;}
.ya4{bottom:488.203347pt;}
.yc3{bottom:488.204813pt;}
.y1c7{bottom:488.208147pt;}
.y173{bottom:488.208547pt;}
.y1ab{bottom:488.209213pt;}
.y5b{bottom:488.210547pt;}
.yfd{bottom:488.212147pt;}
.y32{bottom:492.213147pt;}
.y1{bottom:498.304547pt;}
.y132{bottom:503.535880pt;}
.ya3{bottom:503.537347pt;}
.yc2{bottom:503.538813pt;}
.y172{bottom:503.542547pt;}
.y1aa{bottom:503.543213pt;}
.yfc{bottom:503.546147pt;}
.y5a{bottom:503.550147pt;}
.y31{bottom:505.546080pt;}
.ye0{bottom:511.205080pt;}
.y1c6{bottom:511.208413pt;}
.y7e{bottom:518.869880pt;}
.ya2{bottom:518.871347pt;}
.yc1{bottom:518.872813pt;}
.y171{bottom:518.876547pt;}
.y1a9{bottom:518.877213pt;}
.y30{bottom:518.879013pt;}
.yfb{bottom:518.880147pt;}
.y59{bottom:518.882680pt;}
.ydf{bottom:526.539080pt;}
.y2f{bottom:532.211947pt;}
.y7d{bottom:534.203880pt;}
.ya1{bottom:534.205347pt;}
.yc0{bottom:534.206813pt;}
.y170{bottom:534.210547pt;}
.y1a8{bottom:534.211213pt;}
.yfa{bottom:534.214147pt;}
.y58{bottom:534.215213pt;}
.y2e{bottom:545.544880pt;}
.y7c{bottom:549.537880pt;}
.ya0{bottom:549.539347pt;}
.ybf{bottom:549.540813pt;}
.y1c5{bottom:549.541213pt;}
.y1a7{bottom:549.543747pt;}
.y57{bottom:549.547747pt;}
.yf9{bottom:549.548147pt;}
.y2d{bottom:558.877813pt;}
.y7b{bottom:564.871880pt;}
.y9f{bottom:564.873347pt;}
.ybe{bottom:564.874813pt;}
.y1c4{bottom:564.875213pt;}
.y1a6{bottom:564.876280pt;}
.y56{bottom:564.880280pt;}
.y2c{bottom:572.210747pt;}
.yf8{bottom:572.548413pt;}
.y7a{bottom:580.205880pt;}
.y9e{bottom:580.207347pt;}
.y118{bottom:580.208813pt;}
.y1c3{bottom:580.209213pt;}
.y55{bottom:580.212813pt;}
.ybd{bottom:587.875080pt;}
.y79{bottom:595.539880pt;}
.y9d{bottom:595.541347pt;}
.y1fc{bottom:595.542813pt;}
.y1c2{bottom:595.543213pt;}
.y54{bottom:595.545347pt;}
.y2b{bottom:598.877880pt;}
.y117{bottom:603.209080pt;}
.y53{bottom:610.873880pt;}
.y1c1{bottom:610.877213pt;}
.yf7{bottom:610.881213pt;}
.y167{bottom:618.541613pt;}
.y1fb{bottom:618.543080pt;}
.y52{bottom:626.207880pt;}
.yf6{bottom:626.213747pt;}
.y22{bottom:627.504680pt;}
.y2a{bottom:630.879280pt;}
.y166{bottom:633.875613pt;}
.y51{bottom:641.541880pt;}
.yf5{bottom:641.546280pt;}
.y21{bottom:643.504680pt;}
.y29{bottom:644.212213pt;}
.y217{bottom:646.878013pt;}
.y165{bottom:649.209613pt;}
.y50{bottom:656.875880pt;}
.yf4{bottom:656.878813pt;}
.y20{bottom:659.504680pt;}
.y216{bottom:660.878013pt;}
.y28{bottom:662.879080pt;}
.y4f{bottom:672.209880pt;}
.yf3{bottom:672.211347pt;}
.y215{bottom:674.878147pt;}
.y27{bottom:676.212013pt;}
.y4e{bottom:687.543880pt;}
.y214{bottom:688.878147pt;}
.y26{bottom:689.544947pt;}
.y1f{bottom:699.504547pt;}
.y25{bottom:702.877880pt;}
.y1e{bottom:744.838013pt;}
.h3{height:45.525333pt;}
.h7{height:51.216000pt;}
.h18{height:51.217067pt;}
.h6{height:51.690667pt;}
.hc{height:52.032000pt;}
.h13{height:52.033067pt;}
.h14{height:52.034133pt;}
.h2{height:54.061333pt;}
.h1b{height:57.812267pt;}
.h1d{height:57.812800pt;}
.h19{height:57.813333pt;}
.h1c{height:57.813867pt;}
.h1a{height:57.814400pt;}
.h8{height:62.597333pt;}
.ha{height:63.155733pt;}
.hb{height:63.188800pt;}
.h11{height:63.191467pt;}
.h9{height:63.194133pt;}
.h12{height:63.204800pt;}
.hd{height:63.210133pt;}
.he{height:63.211733pt;}
.h10{height:63.220267pt;}
.h15{height:63.258133pt;}
.h17{height:63.259733pt;}
.h16{height:63.284800pt;}
.hf{height:63.594667pt;}
.h5{height:68.288000pt;}
.h4{height:91.050667pt;}
.h1{height:790.666667pt;}
.h0{height:790.803880pt;}
.w1{width:535.333333pt;}
.w0{width:535.631693pt;}
.x0{left:0.000000pt;}
.x1{left:59.507147pt;}
.xa{left:61.266680pt;}
.x5{left:66.653813pt;}
.x2{left:79.506547pt;}
.x6{left:85.441013pt;}
.x8{left:88.493680pt;}
.x9{left:95.560413pt;}
.x7{left:180.294080pt;}
.x4{left:256.867147pt;}
.xb{left:286.773880pt;}
.x3{left:385.387147pt;}
}




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