
    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_52dfbd740a1a5072449467ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.927246;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_bcb2ddd92f9a2afda5719268.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_252297c44b6ba7370ad567e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_e757d0ca561efbabe613b20f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_aa4c38a9b8fc6b32aefefa42.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_918ab5b7072fc118a7903ec6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_4e2524dde3caeaeaefee6789.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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_61780bdde9b3e1c5aaf7a3a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_73b8387d5eb800586400826d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_9c18028881c1fc7edb2d6201.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_99a33939e047e30203245e78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.728027;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_a1d5a523c24b79c113269431.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942871;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_be3c3650598e0b3e7a79fdfb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_6852471f23689efc67af7d65.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.728027;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_a97d50dd8d579d28af3ac77b.woff2')format("woff");}.fff{font-family:fff;line-height:0.728027;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);}
.v1{vertical-align:-4.367400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.000000px;}
.ls26{letter-spacing:-3.312000px;}
.ls2e{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.672000px;}
.ls1c{letter-spacing:-0.604800px;}
.ls27{letter-spacing:-0.600000px;}
.ls2f{letter-spacing:-0.480000px;}
.ls1b{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.005700px;}
.lsf{letter-spacing:0.011400px;}
.ls6{letter-spacing:0.012000px;}
.ls29{letter-spacing:0.014400px;}
.ls21{letter-spacing:0.022800px;}
.lse{letter-spacing:0.028500px;}
.ls1f{letter-spacing:0.114000px;}
.ls20{letter-spacing:0.119700px;}
.ls16{letter-spacing:0.564300px;}
.ls14{letter-spacing:0.570000px;}
.ls2c{letter-spacing:0.594000px;}
.ls2a{letter-spacing:0.600000px;}
.ls2d{letter-spacing:0.612000px;}
.ls2b{letter-spacing:1.200000px;}
.ls3{letter-spacing:1.245600px;}
.ls2{letter-spacing:1.252800px;}
.ls4{letter-spacing:1.274400px;}
.ls23{letter-spacing:1.863900px;}
.ls22{letter-spacing:1.869600px;}
.ls24{letter-spacing:1.875300px;}
.ls28{letter-spacing:1.900800px;}
.ls15{letter-spacing:2.040600px;}
.lsc{letter-spacing:2.223000px;}
.lsd{letter-spacing:2.228700px;}
.ls1{letter-spacing:2.534400px;}
.ls5{letter-spacing:2.541600px;}
.ls12{letter-spacing:2.552700px;}
.ls11{letter-spacing:2.570700px;}
.ls18{letter-spacing:2.815800px;}
.ls17{letter-spacing:2.821500px;}
.ls1a{letter-spacing:2.827200px;}
.ls19{letter-spacing:2.846100px;}
.ls13{letter-spacing:2.986800px;}
.ls10{letter-spacing:3.100800px;}
.ls0{letter-spacing:3.769200px;}
.ls1d{letter-spacing:3.780000px;}
.ls9{letter-spacing:4.223700px;}
.ls8{letter-spacing:4.229400px;}
.lsa{letter-spacing:4.235100px;}
.ls25{letter-spacing:163.636500px;}
.ls7{letter-spacing:311.206500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-74.541600px;}
.ws6{word-spacing:-74.534400px;}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-66.000000px;}
.ws8{word-spacing:-60.000000px;}
.ws9{word-spacing:-59.328000px;}
.ws4{word-spacing:-57.780000px;}
.wsf{word-spacing:-57.570000px;}
.wsc{word-spacing:-57.000000px;}
.ws2{word-spacing:-54.000000px;}
.ws1{word-spacing:-53.395200px;}
.wse{word-spacing:-51.000000px;}
.ws102{word-spacing:-48.000000px;}
.ws3{word-spacing:-30.000000px;}
.ws2d{word-spacing:-20.016000px;}
.wsac{word-spacing:-17.880000px;}
.ws78{word-spacing:-16.680000px;}
.ws2c{word-spacing:-13.368000px;}
.ws100{word-spacing:-13.344000px;}
.wsd{word-spacing:-12.996000px;}
.wsde{word-spacing:-5.874000px;}
.wsc8{word-spacing:-4.980000px;}
.ws54{word-spacing:-4.392000px;}
.wsb9{word-spacing:-4.212000px;}
.wsb0{word-spacing:-4.164000px;}
.ws13{word-spacing:-3.938400px;}
.ws51{word-spacing:-3.870000px;}
.ws158{word-spacing:-3.388800px;}
.ws5d{word-spacing:-3.372000px;}
.wsf0{word-spacing:-3.228000px;}
.ws3f{word-spacing:-3.048000px;}
.ws12d{word-spacing:-2.956800px;}
.ws153{word-spacing:-2.937600px;}
.ws155{word-spacing:-2.923200px;}
.ws13f{word-spacing:-2.726400px;}
.wsc3{word-spacing:-2.592000px;}
.wsc4{word-spacing:-2.562000px;}
.ws9f{word-spacing:-2.508000px;}
.ws115{word-spacing:-2.502000px;}
.wsa8{word-spacing:-2.484000px;}
.ws146{word-spacing:-2.270400px;}
.wsf6{word-spacing:-2.268000px;}
.ws5c{word-spacing:-2.262000px;}
.ws131{word-spacing:-2.169600px;}
.ws3a{word-spacing:-2.010000px;}
.wsc9{word-spacing:-2.004000px;}
.ws11{word-spacing:-2.003400px;}
.ws92{word-spacing:-1.968000px;}
.ws11e{word-spacing:-1.938000px;}
.ws79{word-spacing:-1.900800px;}
.wsa2{word-spacing:-1.884000px;}
.wsea{word-spacing:-1.734000px;}
.ws33{word-spacing:-1.692000px;}
.ws6d{word-spacing:-1.668000px;}
.ws73{word-spacing:-1.662000px;}
.wse9{word-spacing:-1.614000px;}
.wsba{word-spacing:-1.598400px;}
.ws10f{word-spacing:-1.500000px;}
.wsa6{word-spacing:-1.488000px;}
.ws141{word-spacing:-1.387200px;}
.ws142{word-spacing:-1.358400px;}
.ws12{word-spacing:-1.267200px;}
.ws11c{word-spacing:-1.242000px;}
.ws133{word-spacing:-1.219200px;}
.ws154{word-spacing:-1.195200px;}
.wsca{word-spacing:-1.182000px;}
.ws132{word-spacing:-1.108800px;}
.ws98{word-spacing:-1.002000px;}
.ws149{word-spacing:-0.854400px;}
.ws23{word-spacing:-0.803700px;}
.wsd8{word-spacing:-0.744000px;}
.wse8{word-spacing:-0.732000px;}
.ws12a{word-spacing:-0.710400px;}
.wsee{word-spacing:-0.648000px;}
.wsb3{word-spacing:-0.642000px;}
.ws14c{word-spacing:-0.633600px;}
.wsc2{word-spacing:-0.624000px;}
.wsc1{word-spacing:-0.618000px;}
.ws88{word-spacing:-0.558000px;}
.ws22{word-spacing:-0.381900px;}
.ws27{word-spacing:-0.296400px;}
.ws14b{word-spacing:-0.268800px;}
.ws6c{word-spacing:-0.264000px;}
.ws2b{word-spacing:-0.240000px;}
.ws2e{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.057000px;}
.ws101{word-spacing:-0.048000px;}
.ws10{word-spacing:0.000000px;}
.ws59{word-spacing:0.036000px;}
.ws76{word-spacing:0.096900px;}
.ws144{word-spacing:0.144000px;}
.wsaf{word-spacing:0.204000px;}
.wsb6{word-spacing:0.210000px;}
.wsb7{word-spacing:0.216000px;}
.ws5f{word-spacing:0.294000px;}
.wscb{word-spacing:0.426000px;}
.ws67{word-spacing:0.438000px;}
.ws12c{word-spacing:0.508800px;}
.ws81{word-spacing:0.534000px;}
.ws126{word-spacing:0.540000px;}
.ws35{word-spacing:0.606000px;}
.wse7{word-spacing:0.624000px;}
.wsf1{word-spacing:0.690000px;}
.ws66{word-spacing:0.702000px;}
.ws13e{word-spacing:0.734400px;}
.ws145{word-spacing:0.758400px;}
.ws71{word-spacing:0.822000px;}
.ws13d{word-spacing:0.835200px;}
.wsa5{word-spacing:0.846000px;}
.wsa0{word-spacing:0.972000px;}
.ws7f{word-spacing:1.032000px;}
.ws34{word-spacing:1.152000px;}
.wsdd{word-spacing:1.182000px;}
.ws117{word-spacing:1.194000px;}
.ws8e{word-spacing:1.218000px;}
.ws1f{word-spacing:1.225500px;}
.wsf3{word-spacing:1.230000px;}
.ws9d{word-spacing:1.266000px;}
.ws152{word-spacing:1.267200px;}
.ws7a{word-spacing:1.362000px;}
.wsc5{word-spacing:1.404000px;}
.wsfe{word-spacing:1.440000px;}
.ws29{word-spacing:1.470600px;}
.ws129{word-spacing:1.521600px;}
.ws80{word-spacing:1.548000px;}
.ws58{word-spacing:1.602000px;}
.ws10c{word-spacing:1.668000px;}
.ws14d{word-spacing:1.737600px;}
.ws89{word-spacing:1.752000px;}
.ws77{word-spacing:1.869600px;}
.ws9e{word-spacing:1.926000px;}
.ws6f{word-spacing:1.950000px;}
.ws20{word-spacing:1.966500px;}
.ws7b{word-spacing:2.154000px;}
.ws1e{word-spacing:2.205900px;}
.ws1a{word-spacing:2.240100px;}
.ws8d{word-spacing:2.262000px;}
.wsa9{word-spacing:2.274000px;}
.ws14a{word-spacing:2.356800px;}
.ws119{word-spacing:2.454000px;}
.ws128{word-spacing:2.466000px;}
.ws45{word-spacing:2.478000px;}
.wsa4{word-spacing:2.490000px;}
.ws26{word-spacing:2.565000px;}
.ws72{word-spacing:2.586000px;}
.wsc7{word-spacing:2.604000px;}
.ws157{word-spacing:2.630400px;}
.ws55{word-spacing:2.676000px;}
.ws140{word-spacing:2.750400px;}
.wsf2{word-spacing:2.784000px;}
.ws136{word-spacing:2.803200px;}
.ws2a{word-spacing:2.815800px;}
.ws21{word-spacing:2.832900px;}
.wsb4{word-spacing:2.886000px;}
.ws7e{word-spacing:2.970000px;}
.ws28{word-spacing:2.981100px;}
.ws43{word-spacing:3.012000px;}
.ws42{word-spacing:3.018000px;}
.ws7d{word-spacing:3.030000px;}
.wsd3{word-spacing:3.060000px;}
.wsfb{word-spacing:3.066000px;}
.wsd6{word-spacing:3.072000px;}
.ws12f{word-spacing:3.086400px;}
.ws25{word-spacing:3.100800px;}
.ws11f{word-spacing:3.120000px;}
.ws105{word-spacing:3.210000px;}
.ws5e{word-spacing:3.408000px;}
.ws1c{word-spacing:3.431400px;}
.ws1d{word-spacing:3.437100px;}
.ws99{word-spacing:3.546000px;}
.wsb1{word-spacing:3.558000px;}
.ws12e{word-spacing:3.614400px;}
.wsb2{word-spacing:3.660000px;}
.ws3c{word-spacing:3.678000px;}
.ws40{word-spacing:3.744000px;}
.ws85{word-spacing:3.780000px;}
.ws134{word-spacing:3.801600px;}
.ws159{word-spacing:3.897600px;}
.ws53{word-spacing:3.942000px;}
.ws14e{word-spacing:3.950400px;}
.wsb5{word-spacing:3.954000px;}
.ws8c{word-spacing:3.996000px;}
.wse6{word-spacing:4.038000px;}
.wsc6{word-spacing:4.050000px;}
.wseb{word-spacing:4.056000px;}
.ws17{word-spacing:4.075500px;}
.ws8b{word-spacing:4.080000px;}
.wsd1{word-spacing:4.140000px;}
.ws116{word-spacing:4.158000px;}
.wsff{word-spacing:4.224000px;}
.ws24{word-spacing:4.229400px;}
.ws9a{word-spacing:4.236000px;}
.ws75{word-spacing:4.296000px;}
.wsbf{word-spacing:4.380000px;}
.wsc0{word-spacing:4.506000px;}
.wsf5{word-spacing:4.560000px;}
.ws13c{word-spacing:4.574400px;}
.ws7c{word-spacing:4.602000px;}
.ws4f{word-spacing:4.704000px;}
.wse5{word-spacing:4.878000px;}
.ws60{word-spacing:4.926000px;}
.wsd7{word-spacing:4.974000px;}
.ws1b{word-spacing:4.987500px;}
.ws9b{word-spacing:5.004000px;}
.ws130{word-spacing:5.068800px;}
.ws108{word-spacing:5.094000px;}
.wsed{word-spacing:5.136000px;}
.ws110{word-spacing:5.226000px;}
.ws14f{word-spacing:5.304000px;}
.wsfc{word-spacing:5.334000px;}
.ws90{word-spacing:5.346000px;}
.ws19{word-spacing:5.352300px;}
.ws74{word-spacing:5.616000px;}
.wsec{word-spacing:5.634000px;}
.ws62{word-spacing:5.682000px;}
.wsdf{word-spacing:5.790000px;}
.wse0{word-spacing:5.796000px;}
.wsd2{word-spacing:5.802000px;}
.wsd0{word-spacing:5.808000px;}
.ws68{word-spacing:5.832000px;}
.ws143{word-spacing:5.841600px;}
.ws103{word-spacing:5.994000px;}
.ws148{word-spacing:6.220800px;}
.wscc{word-spacing:6.240000px;}
.ws118{word-spacing:6.342000px;}
.wsbe{word-spacing:6.390000px;}
.ws46{word-spacing:6.444000px;}
.ws61{word-spacing:6.582000px;}
.ws151{word-spacing:6.628800px;}
.wsfa{word-spacing:6.648000px;}
.ws91{word-spacing:6.918000px;}
.ws137{word-spacing:6.940800px;}
.ws83{word-spacing:6.948000px;}
.ws4e{word-spacing:6.954000px;}
.ws12b{word-spacing:6.955200px;}
.ws125{word-spacing:6.960000px;}
.ws41{word-spacing:7.008000px;}
.wsa1{word-spacing:7.044000px;}
.wsbc{word-spacing:7.146000px;}
.wsbd{word-spacing:7.152000px;}
.ws104{word-spacing:7.224000px;}
.wsda{word-spacing:7.362000px;}
.wsdb{word-spacing:7.368000px;}
.ws97{word-spacing:7.374000px;}
.ws3d{word-spacing:7.464000px;}
.ws84{word-spacing:7.482000px;}
.ws44{word-spacing:7.590000px;}
.ws10e{word-spacing:7.626000px;}
.ws93{word-spacing:7.680000px;}
.ws32{word-spacing:7.728000px;}
.ws4d{word-spacing:7.842000px;}
.ws6a{word-spacing:7.860000px;}
.ws69{word-spacing:7.938000px;}
.wsd9{word-spacing:7.950000px;}
.ws3e{word-spacing:8.028000px;}
.ws120{word-spacing:8.112000px;}
.wsf9{word-spacing:8.274000px;}
.ws138{word-spacing:8.313600px;}
.ws96{word-spacing:8.316000px;}
.ws139{word-spacing:8.342400px;}
.ws5b{word-spacing:8.358000px;}
.ws9c{word-spacing:8.598000px;}
.ws135{word-spacing:8.702400px;}
.wsb8{word-spacing:8.784000px;}
.ws18{word-spacing:8.812200px;}
.wsd5{word-spacing:8.826000px;}
.ws127{word-spacing:8.844000px;}
.wse4{word-spacing:8.958000px;}
.ws52{word-spacing:8.982000px;}
.ws124{word-spacing:9.006000px;}
.ws8f{word-spacing:9.102000px;}
.ws38{word-spacing:9.126000px;}
.ws64{word-spacing:9.672000px;}
.wse3{word-spacing:9.690000px;}
.ws3b{word-spacing:9.702000px;}
.ws11a{word-spacing:9.756000px;}
.ws111{word-spacing:9.762000px;}
.ws106{word-spacing:9.786000px;}
.ws113{word-spacing:9.810000px;}
.wsa7{word-spacing:9.906000px;}
.ws63{word-spacing:9.948000px;}
.ws65{word-spacing:9.990000px;}
.ws10d{word-spacing:10.146000px;}
.ws48{word-spacing:10.224000px;}
.wscf{word-spacing:10.236000px;}
.ws13a{word-spacing:10.238400px;}
.ws37{word-spacing:10.278000px;}
.ws107{word-spacing:10.290000px;}
.wsd4{word-spacing:10.302000px;}
.ws150{word-spacing:10.396800px;}
.wsf7{word-spacing:10.506000px;}
.ws31{word-spacing:10.554000px;}
.ws15{word-spacing:10.590600px;}
.ws16{word-spacing:10.596300px;}
.ws14{word-spacing:10.664700px;}
.wsae{word-spacing:10.692000px;}
.ws147{word-spacing:10.761600px;}
.wsfd{word-spacing:10.782000px;}
.ws56{word-spacing:10.818000px;}
.ws87{word-spacing:10.974000px;}
.ws30{word-spacing:11.046000px;}
.ws4b{word-spacing:11.190000px;}
.ws4c{word-spacing:11.196000px;}
.ws95{word-spacing:11.256000px;}
.wsbb{word-spacing:11.370000px;}
.wsef{word-spacing:11.376000px;}
.ws6e{word-spacing:11.592000px;}
.ws6b{word-spacing:11.670000px;}
.ws5a{word-spacing:11.922000px;}
.ws57{word-spacing:12.492000px;}
.ws8a{word-spacing:12.558000px;}
.ws39{word-spacing:12.726000px;}
.wsce{word-spacing:12.870000px;}
.ws47{word-spacing:12.960000px;}
.ws10a{word-spacing:12.966000px;}
.ws4a{word-spacing:13.044000px;}
.wsdc{word-spacing:13.572000px;}
.ws70{word-spacing:13.656000px;}
.ws10b{word-spacing:13.710000px;}
.ws11b{word-spacing:13.728000px;}
.ws36{word-spacing:13.746000px;}
.ws122{word-spacing:14.040000px;}
.wse2{word-spacing:14.520000px;}
.wsad{word-spacing:14.592000px;}
.wsf8{word-spacing:14.634000px;}
.ws121{word-spacing:14.790000px;}
.ws49{word-spacing:15.000000px;}
.ws13b{word-spacing:15.038400px;}
.ws86{word-spacing:15.624000px;}
.ws82{word-spacing:16.326000px;}
.wse1{word-spacing:16.380000px;}
.wsf4{word-spacing:16.506000px;}
.ws94{word-spacing:17.010000px;}
.ws50{word-spacing:17.664000px;}
.ws114{word-spacing:17.904000px;}
.ws123{word-spacing:19.380000px;}
.ws109{word-spacing:22.536000px;}
.ws11d{word-spacing:22.824000px;}
.wscd{word-spacing:23.844000px;}
.wsa3{word-spacing:25.944000px;}
.ws112{word-spacing:30.612000px;}
.ws156{word-spacing:32.121600px;}
.ws2f{word-spacing:34.920000px;}
.wsab{word-spacing:283.008000px;}
.wsa{word-spacing:291.841800px;}
.wsaa{word-spacing:296.356800px;}
._23{margin-left:-29.970000px;}
._24{margin-left:-19.334400px;}
._b{margin-left:-16.008000px;}
._c{margin-left:-14.898000px;}
._d{margin-left:-12.846000px;}
._8{margin-left:-11.331600px;}
._e{margin-left:-9.564000px;}
._6{margin-left:-7.500000px;}
._5{margin-left:-5.937000px;}
._1{margin-left:-4.415400px;}
._2{margin-left:-2.547600px;}
._0{margin-left:-1.452000px;}
._3{width:1.188000px;}
._4{width:2.534400px;}
._9{width:3.676500px;}
._f{width:5.574000px;}
._22{width:7.488000px;}
._7{width:10.647600px;}
._25{width:12.318000px;}
._21{width:13.878000px;}
._1a{width:117.973200px;}
._10{width:131.625600px;}
._1c{width:248.275200px;}
._a{width:259.303800px;}
._14{width:331.948800px;}
._18{width:334.583400px;}
._1f{width:342.901200px;}
._12{width:345.292800px;}
._16{width:358.372800px;}
._11{width:385.017600px;}
._17{width:402.811200px;}
._20{width:404.337600px;}
._15{width:414.364800px;}
._1b{width:423.067200px;}
._13{width:427.699200px;}
._1e{width:430.987200px;}
._19{width:457.334400px;}
._1d{width:489.696000px;}
.fc4{color:rgb(0,173,239);}
.fc3{color:transparent;}
.fc6{color:rgb(8,19,25);}
.fc5{color:rgb(8,19,25);}
.fc2{color:rgb(205,30,37);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(27,40,73);}
.fs2{font-size:30.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:0.001500px;}
.y38{bottom:94.009500px;}
.yd6{bottom:95.857500px;}
.y107{bottom:105.802500px;}
.y13d{bottom:107.161500px;}
.y8b{bottom:110.248650px;}
.y65{bottom:110.350500px;}
.y37{bottom:110.509500px;}
.y106{bottom:124.552500px;}
.y13c{bottom:125.911500px;}
.y8a{bottom:128.998650px;}
.y64{bottom:129.100500px;}
.y105{bottom:143.302500px;}
.y13b{bottom:144.661500px;}
.y89{bottom:147.748650px;}
.y63{bottom:147.850500px;}
.y104{bottom:162.052500px;}
.y13a{bottom:163.411500px;}
.y88{bottom:166.498650px;}
.y62{bottom:166.600500px;}
.y103{bottom:180.802500px;}
.y19d{bottom:181.396500px;}
.y139{bottom:182.161500px;}
.y19c{bottom:182.349000px;}
.y36{bottom:182.689725px;}
.y87{bottom:185.248650px;}
.y61{bottom:185.350500px;}
.y19b{bottom:198.099000px;}
.y102{bottom:199.552500px;}
.y35{bottom:199.941000px;}
.y138{bottom:200.911500px;}
.y86{bottom:203.998650px;}
.y60{bottom:204.100500px;}
.y19a{bottom:213.849000px;}
.y34{bottom:217.190625px;}
.y101{bottom:218.302500px;}
.y137{bottom:219.661500px;}
.y85{bottom:222.748650px;}
.y5f{bottom:222.850500px;}
.y161{bottom:227.833500px;}
.y199{bottom:229.599000px;}
.y33{bottom:234.440250px;}
.y100{bottom:237.052500px;}
.y136{bottom:238.411500px;}
.y84{bottom:241.498650px;}
.y5e{bottom:241.600500px;}
.y198{bottom:245.349000px;}
.y160{bottom:246.583500px;}
.y32{bottom:251.689875px;}
.yff{bottom:255.802500px;}
.y135{bottom:257.161500px;}
.y5d{bottom:260.350500px;}
.y197{bottom:261.099000px;}
.y15f{bottom:265.333500px;}
.y83{bottom:266.626500px;}
.y31{bottom:268.941000px;}
.yfe{bottom:274.552500px;}
.y134{bottom:275.911500px;}
.y196{bottom:276.849000px;}
.y5c{bottom:279.100500px;}
.y15e{bottom:284.083500px;}
.y30{bottom:286.190625px;}
.y195{bottom:292.599000px;}
.yfd{bottom:293.302500px;}
.y133{bottom:294.661500px;}
.y82{bottom:296.007000px;}
.y5b{bottom:297.850500px;}
.y15d{bottom:302.833500px;}
.y2f{bottom:303.440250px;}
.y194{bottom:308.349000px;}
.yfc{bottom:312.052500px;}
.y132{bottom:313.411500px;}
.y81{bottom:314.757000px;}
.y5a{bottom:316.600500px;}
.y2e{bottom:320.689875px;}
.y15c{bottom:321.583500px;}
.y193{bottom:324.099000px;}
.yfb{bottom:330.802500px;}
.y131{bottom:332.161500px;}
.y80{bottom:333.507000px;}
.y59{bottom:335.350500px;}
.y2d{bottom:337.940625px;}
.y192{bottom:339.849000px;}
.y15b{bottom:340.333500px;}
.yfa{bottom:349.552500px;}
.y130{bottom:350.911500px;}
.y7f{bottom:352.257000px;}
.y58{bottom:354.100500px;}
.y2c{bottom:355.190250px;}
.y191{bottom:355.599000px;}
.y15a{bottom:359.083500px;}
.yf9{bottom:368.302500px;}
.y12f{bottom:369.661500px;}
.y7e{bottom:371.007000px;}
.y190{bottom:371.349000px;}
.y2b{bottom:372.439875px;}
.y57{bottom:372.850500px;}
.yf8{bottom:387.052500px;}
.y18f{bottom:387.099000px;}
.y12e{bottom:388.411500px;}
.y7d{bottom:389.757000px;}
.y159{bottom:390.589650px;}
.y2a{bottom:390.781500px;}
.y56{bottom:391.600500px;}
.y18e{bottom:402.849000px;}
.yf7{bottom:405.802500px;}
.y12d{bottom:407.161500px;}
.y7c{bottom:408.507000px;}
.y55{bottom:410.350500px;}
.y18d{bottom:418.599000px;}
.yf6{bottom:424.552500px;}
.y12c{bottom:425.911500px;}
.y7b{bottom:427.257000px;}
.y54{bottom:429.100500px;}
.y18c{bottom:434.349000px;}
.y158{bottom:434.850900px;}
.yf5{bottom:443.302500px;}
.y12b{bottom:444.661500px;}
.y7a{bottom:446.007000px;}
.y53{bottom:447.850500px;}
.y18b{bottom:450.099000px;}
.y157{bottom:454.350900px;}
.y29{bottom:454.719225px;}
.y27{bottom:455.811525px;}
.y12a{bottom:463.411500px;}
.y79{bottom:464.757000px;}
.y18a{bottom:465.849000px;}
.y52{bottom:466.600500px;}
.y28{bottom:471.968850px;}
.y26{bottom:473.061000px;}
.y156{bottom:473.850900px;}
.y189{bottom:481.599000px;}
.yb4{bottom:481.818150px;}
.yd5{bottom:481.834500px;}
.y129{bottom:482.161500px;}
.yf4{bottom:483.208500px;}
.y78{bottom:483.507000px;}
.y51{bottom:485.350500px;}
.y155{bottom:493.350900px;}
.y25{bottom:495.435000px;}
.y188{bottom:497.349000px;}
.yb3{bottom:500.568150px;}
.yd4{bottom:500.584500px;}
.y128{bottom:500.911500px;}
.y50{bottom:504.100500px;}
.yf3{bottom:508.001700px;}
.y77{bottom:508.635000px;}
.y154{bottom:512.850900px;}
.y187{bottom:513.099000px;}
.y24{bottom:516.721875px;}
.yb2{bottom:519.318150px;}
.yd3{bottom:519.334500px;}
.y127{bottom:519.661500px;}
.y4f{bottom:522.850500px;}
.y186{bottom:528.849000px;}
.y153{bottom:532.350900px;}
.yf2{bottom:532.794900px;}
.y23{bottom:533.971500px;}
.yb1{bottom:538.068150px;}
.yd2{bottom:538.084500px;}
.y126{bottom:538.411500px;}
.y76{bottom:538.764150px;}
.y4e{bottom:541.600500px;}
.y185{bottom:544.599000px;}
.y22{bottom:551.221125px;}
.y152{bottom:551.850900px;}
.yb0{bottom:556.818150px;}
.yd1{bottom:556.834500px;}
.y125{bottom:557.161500px;}
.y75{bottom:557.514150px;}
.yf1{bottom:557.588100px;}
.y184{bottom:560.349000px;}
.y4d{bottom:560.350500px;}
.y21{bottom:568.470750px;}
.y151{bottom:571.350900px;}
.yd0{bottom:575.584500px;}
.y124{bottom:575.911500px;}
.y183{bottom:576.099000px;}
.y74{bottom:576.264150px;}
.y4c{bottom:579.100500px;}
.yaf{bottom:581.946150px;}
.yf0{bottom:582.381300px;}
.y20{bottom:585.720375px;}
.y150{bottom:590.850900px;}
.y182{bottom:591.849000px;}
.ycf{bottom:594.334500px;}
.y123{bottom:594.661500px;}
.y73{bottom:595.014150px;}
.y4b{bottom:597.850500px;}
.y1f{bottom:602.970000px;}
.yef{bottom:607.174500px;}
.y181{bottom:607.599000px;}
.y14f{bottom:609.600900px;}
.yce{bottom:613.084500px;}
.y122{bottom:613.411500px;}
.y72{bottom:613.764150px;}
.y4a{bottom:616.600500px;}
.y1e{bottom:620.219625px;}
.yae{bottom:623.331000px;}
.y180{bottom:623.349000px;}
.y14e{bottom:628.350900px;}
.ycd{bottom:631.834500px;}
.y121{bottom:632.161500px;}
.y71{bottom:632.514150px;}
.yee{bottom:634.566300px;}
.y49{bottom:635.350500px;}
.y1d{bottom:637.469250px;}
.y17f{bottom:639.099000px;}
.y14d{bottom:647.100900px;}
.y120{bottom:650.911500px;}
.yed{bottom:651.066000px;}
.y70{bottom:651.264150px;}
.y48{bottom:654.100500px;}
.y1c{bottom:654.718875px;}
.y17e{bottom:654.849000px;}
.ycc{bottom:656.962500px;}
.y14c{bottom:665.850900px;}
.yad{bottom:667.593000px;}
.y11f{bottom:669.661500px;}
.y6f{bottom:670.014150px;}
.y17d{bottom:670.599000px;}
.y1b{bottom:671.968500px;}
.y47{bottom:672.850500px;}
.y14b{bottom:684.600900px;}
.yac{bottom:686.343000px;}
.ycb{bottom:686.343150px;}
.y17c{bottom:686.349000px;}
.yec{bottom:686.691600px;}
.y11e{bottom:688.411500px;}
.y6e{bottom:688.764150px;}
.y1a{bottom:689.218125px;}
.y46{bottom:691.600500px;}
.y17b{bottom:702.099000px;}
.y14a{bottom:703.350900px;}
.yab{bottom:705.093000px;}
.yca{bottom:705.093150px;}
.y19{bottom:706.467750px;}
.y11d{bottom:707.161500px;}
.yeb{bottom:707.428800px;}
.y6d{bottom:707.514150px;}
.y45{bottom:710.350500px;}
.y17a{bottom:717.849000px;}
.y149{bottom:722.100900px;}
.y18{bottom:723.717375px;}
.yaa{bottom:723.843000px;}
.yc9{bottom:723.843150px;}
.y11c{bottom:725.911500px;}
.y6c{bottom:726.264150px;}
.yea{bottom:728.164800px;}
.y44{bottom:729.100500px;}
.y179{bottom:733.599000px;}
.y148{bottom:740.850900px;}
.y17{bottom:742.058850px;}
.ya9{bottom:742.593000px;}
.yc8{bottom:742.593150px;}
.y11b{bottom:744.661500px;}
.y6b{bottom:745.014150px;}
.y43{bottom:747.850500px;}
.ye9{bottom:748.900800px;}
.y178{bottom:749.349000px;}
.y147{bottom:759.600900px;}
.ya8{bottom:761.343000px;}
.yc7{bottom:761.343150px;}
.y11a{bottom:763.411500px;}
.y177{bottom:765.099000px;}
.y42{bottom:766.600500px;}
.ye8{bottom:769.636800px;}
.y6a{bottom:770.142000px;}
.y146{bottom:778.350900px;}
.ya7{bottom:780.093000px;}
.yc6{bottom:780.093150px;}
.y176{bottom:780.849000px;}
.y119{bottom:782.161500px;}
.y41{bottom:785.350500px;}
.ye7{bottom:790.374000px;}
.y175{bottom:796.599000px;}
.y145{bottom:797.100900px;}
.y16{bottom:797.357850px;}
.ya6{bottom:798.843000px;}
.yc5{bottom:798.843150px;}
.y118{bottom:800.911500px;}
.y40{bottom:804.100500px;}
.ye5{bottom:811.110000px;}
.y69{bottom:812.278500px;}
.y174{bottom:812.349000px;}
.y144{bottom:815.850900px;}
.y15{bottom:816.107850px;}
.ya5{bottom:817.593000px;}
.ye4{bottom:818.610000px;}
.y117{bottom:819.661500px;}
.y3f{bottom:822.850500px;}
.yc4{bottom:823.971000px;}
.ye6{bottom:826.110000px;}
.y173{bottom:828.099000px;}
.y143{bottom:834.600900px;}
.ya4{bottom:836.343000px;}
.y116{bottom:838.411500px;}
.y14{bottom:839.108850px;}
.y3e{bottom:841.600500px;}
.y172{bottom:843.849000px;}
.ye3{bottom:851.473800px;}
.y142{bottom:853.350900px;}
.yc3{bottom:853.351650px;}
.ya3{bottom:855.093000px;}
.y68{bottom:856.540500px;}
.y115{bottom:857.161500px;}
.y171{bottom:859.599000px;}
.y3d{bottom:860.350500px;}
.ye2{bottom:867.973500px;}
.y12{bottom:870.613500px;}
.y13{bottom:870.615000px;}
.y141{bottom:872.100900px;}
.yc2{bottom:872.101650px;}
.ya2{bottom:873.843000px;}
.y67{bottom:875.290500px;}
.y170{bottom:875.349000px;}
.y114{bottom:875.911500px;}
.y140{bottom:890.850900px;}
.yc1{bottom:890.851650px;}
.y16f{bottom:891.099000px;}
.y3c{bottom:891.856500px;}
.ya1{bottom:892.593000px;}
.y66{bottom:894.040500px;}
.y10{bottom:894.613500px;}
.y11{bottom:894.615000px;}
.y113{bottom:894.661500px;}
.ye1{bottom:903.223050px;}
.y16e{bottom:906.849000px;}
.y13f{bottom:909.600900px;}
.yc0{bottom:909.601650px;}
.y112{bottom:913.411500px;}
.ya0{bottom:917.721000px;}
.ye0{bottom:921.973050px;}
.y16d{bottom:922.599000px;}
.y13e{bottom:928.350900px;}
.ybf{bottom:928.351650px;}
.y111{bottom:932.161500px;}
.y16c{bottom:938.349000px;}
.ydf{bottom:940.723050px;}
.y9f{bottom:947.100900px;}
.ybe{bottom:947.101650px;}
.y110{bottom:950.911500px;}
.yf{bottom:952.630500px;}
.y16b{bottom:954.099000px;}
.yde{bottom:959.473050px;}
.y9e{bottom:965.850900px;}
.ybd{bottom:965.851650px;}
.y10f{bottom:969.661500px;}
.y16a{bottom:969.849000px;}
.ye{bottom:971.380500px;}
.ydd{bottom:978.223050px;}
.y95{bottom:979.398375px;}
.y93{bottom:980.490525px;}
.y9d{bottom:984.600900px;}
.ybc{bottom:984.601650px;}
.y169{bottom:985.599000px;}
.y10e{bottom:988.411500px;}
.yd{bottom:994.383000px;}
.y94{bottom:996.648000px;}
.ydc{bottom:996.973050px;}
.y92{bottom:997.740000px;}
.y168{bottom:1001.349000px;}
.y9c{bottom:1003.350900px;}
.ybb{bottom:1003.351650px;}
.y10d{bottom:1007.161500px;}
.ydb{bottom:1015.723050px;}
.y167{bottom:1017.099000px;}
.y91{bottom:1020.114000px;}
.y9b{bottom:1022.100900px;}
.yba{bottom:1022.101650px;}
.yb{bottom:1025.887500px;}
.yc{bottom:1025.889000px;}
.y10c{bottom:1025.911500px;}
.y166{bottom:1032.849000px;}
.yda{bottom:1034.473050px;}
.y9a{bottom:1040.850900px;}
.yb9{bottom:1040.851650px;}
.y90{bottom:1041.397875px;}
.y10b{bottom:1044.661500px;}
.y165{bottom:1048.599000px;}
.y9{bottom:1049.887500px;}
.ya{bottom:1049.889000px;}
.yd9{bottom:1053.223050px;}
.y8f{bottom:1058.648025px;}
.y99{bottom:1059.600900px;}
.yb8{bottom:1059.601650px;}
.y10a{bottom:1063.411500px;}
.y164{bottom:1064.349000px;}
.yd8{bottom:1071.973050px;}
.y8e{bottom:1075.897650px;}
.y98{bottom:1078.350900px;}
.yb7{bottom:1078.351650px;}
.y163{bottom:1080.099000px;}
.y109{bottom:1082.161500px;}
.yd7{bottom:1090.723050px;}
.y8d{bottom:1093.147275px;}
.y162{bottom:1095.849000px;}
.y97{bottom:1097.100900px;}
.yb6{bottom:1097.101650px;}
.y39{bottom:1097.839500px;}
.y8c{bottom:1110.396900px;}
.y108{bottom:1113.666900px;}
.y96{bottom:1115.850900px;}
.yb5{bottom:1115.851650px;}
.y5{bottom:1119.019200px;}
.y7{bottom:1123.219350px;}
.y4{bottom:1128.019200px;}
.y2{bottom:1128.266400px;}
.y3{bottom:1137.019200px;}
.y1{bottom:1144.466250px;}
.y6{bottom:1145.796750px;}
.y3b{bottom:1158.370650px;}
.y3a{bottom:1159.462800px;}
.h4{height:21.855469px;}
.h11{height:34.945312px;}
.h10{height:34.968750px;}
.he{height:37.129395px;}
.hd{height:37.185223px;}
.ha{height:37.185823px;}
.hf{height:37.380047px;}
.h5{height:39.313477px;}
.h3{height:39.339844px;}
.hb{height:41.553223px;}
.hc{height:41.748047px;}
.h8{height:43.681641px;}
.h12{height:43.710938px;}
.h9{height:44.853516px;}
.h2{height:48.082031px;}
.h7{height:52.417969px;}
.h13{height:64.945312px;}
.h1{height:1233.000000px;}
.h6{height:1233.069000px;}
.h0{height:1233.070500px;}
.w2{width:914.128500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x11{left:51.023550px;}
.x3{left:55.965450px;}
.x12{left:57.401550px;}
.x25{left:59.444850px;}
.xf{left:63.401550px;}
.x2{left:68.920200px;}
.x1b{left:82.913550px;}
.x1e{left:98.320950px;}
.x15{left:99.921000px;}
.xa{left:101.300852px;}
.x19{left:105.921150px;}
.x14{left:125.433000px;}
.x1{left:139.082850px;}
.x6{left:154.153502px;}
.xd{left:161.691000px;}
.xe{left:170.923500px;}
.x10{left:184.582500px;}
.x1f{left:198.717750px;}
.xc{left:202.183500px;}
.x7{left:217.282500px;}
.x9{left:218.521500px;}
.x8{left:220.744500px;}
.x18{left:227.103000px;}
.xb{left:256.441502px;}
.x20{left:275.889750px;}
.x21{left:308.235750px;}
.x22{left:396.004950px;}
.x1c{left:452.834400px;}
.x24{left:474.419400px;}
.x1d{left:478.346400px;}
.x23{left:481.095000px;}
.x16{left:495.354000px;}
.x17{left:520.866000px;}
.x13{left:595.872000px;}
.x4{left:670.524000px;}
.x5{left:678.295950px;}
.x1a{left:790.537500px;}
@media print{
.v1{vertical-align:-3.882133pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.666667pt;}
.ls26{letter-spacing:-2.944000pt;}
.ls2e{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.597333pt;}
.ls1c{letter-spacing:-0.537600pt;}
.ls27{letter-spacing:-0.533333pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls1b{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005067pt;}
.lsf{letter-spacing:0.010133pt;}
.ls6{letter-spacing:0.010667pt;}
.ls29{letter-spacing:0.012800pt;}
.ls21{letter-spacing:0.020267pt;}
.lse{letter-spacing:0.025333pt;}
.ls1f{letter-spacing:0.101333pt;}
.ls20{letter-spacing:0.106400pt;}
.ls16{letter-spacing:0.501600pt;}
.ls14{letter-spacing:0.506667pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls2a{letter-spacing:0.533333pt;}
.ls2d{letter-spacing:0.544000pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls3{letter-spacing:1.107200pt;}
.ls2{letter-spacing:1.113600pt;}
.ls4{letter-spacing:1.132800pt;}
.ls23{letter-spacing:1.656800pt;}
.ls22{letter-spacing:1.661867pt;}
.ls24{letter-spacing:1.666933pt;}
.ls28{letter-spacing:1.689600pt;}
.ls15{letter-spacing:1.813867pt;}
.lsc{letter-spacing:1.976000pt;}
.lsd{letter-spacing:1.981067pt;}
.ls1{letter-spacing:2.252800pt;}
.ls5{letter-spacing:2.259200pt;}
.ls12{letter-spacing:2.269067pt;}
.ls11{letter-spacing:2.285067pt;}
.ls18{letter-spacing:2.502933pt;}
.ls17{letter-spacing:2.508000pt;}
.ls1a{letter-spacing:2.513067pt;}
.ls19{letter-spacing:2.529867pt;}
.ls13{letter-spacing:2.654933pt;}
.ls10{letter-spacing:2.756267pt;}
.ls0{letter-spacing:3.350400pt;}
.ls1d{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.754400pt;}
.ls8{letter-spacing:3.759467pt;}
.lsa{letter-spacing:3.764533pt;}
.ls25{letter-spacing:145.454667pt;}
.ls7{letter-spacing:276.628000pt;}
.ws7{word-spacing:-66.259200pt;}
.ws6{word-spacing:-66.252800pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-58.666667pt;}
.ws8{word-spacing:-53.333333pt;}
.ws9{word-spacing:-52.736000pt;}
.ws4{word-spacing:-51.360000pt;}
.wsf{word-spacing:-51.173333pt;}
.wsc{word-spacing:-50.666667pt;}
.ws2{word-spacing:-48.000000pt;}
.ws1{word-spacing:-47.462400pt;}
.wse{word-spacing:-45.333333pt;}
.ws102{word-spacing:-42.666667pt;}
.ws3{word-spacing:-26.666667pt;}
.ws2d{word-spacing:-17.792000pt;}
.wsac{word-spacing:-15.893333pt;}
.ws78{word-spacing:-14.826667pt;}
.ws2c{word-spacing:-11.882667pt;}
.ws100{word-spacing:-11.861333pt;}
.wsd{word-spacing:-11.552000pt;}
.wsde{word-spacing:-5.221333pt;}
.wsc8{word-spacing:-4.426667pt;}
.ws54{word-spacing:-3.904000pt;}
.wsb9{word-spacing:-3.744000pt;}
.wsb0{word-spacing:-3.701333pt;}
.ws13{word-spacing:-3.500800pt;}
.ws51{word-spacing:-3.440000pt;}
.ws158{word-spacing:-3.012267pt;}
.ws5d{word-spacing:-2.997333pt;}
.wsf0{word-spacing:-2.869333pt;}
.ws3f{word-spacing:-2.709333pt;}
.ws12d{word-spacing:-2.628267pt;}
.ws153{word-spacing:-2.611200pt;}
.ws155{word-spacing:-2.598400pt;}
.ws13f{word-spacing:-2.423467pt;}
.wsc3{word-spacing:-2.304000pt;}
.wsc4{word-spacing:-2.277333pt;}
.ws9f{word-spacing:-2.229333pt;}
.ws115{word-spacing:-2.224000pt;}
.wsa8{word-spacing:-2.208000pt;}
.ws146{word-spacing:-2.018133pt;}
.wsf6{word-spacing:-2.016000pt;}
.ws5c{word-spacing:-2.010667pt;}
.ws131{word-spacing:-1.928533pt;}
.ws3a{word-spacing:-1.786667pt;}
.wsc9{word-spacing:-1.781333pt;}
.ws11{word-spacing:-1.780800pt;}
.ws92{word-spacing:-1.749333pt;}
.ws11e{word-spacing:-1.722667pt;}
.ws79{word-spacing:-1.689600pt;}
.wsa2{word-spacing:-1.674667pt;}
.wsea{word-spacing:-1.541333pt;}
.ws33{word-spacing:-1.504000pt;}
.ws6d{word-spacing:-1.482667pt;}
.ws73{word-spacing:-1.477333pt;}
.wse9{word-spacing:-1.434667pt;}
.wsba{word-spacing:-1.420800pt;}
.ws10f{word-spacing:-1.333333pt;}
.wsa6{word-spacing:-1.322667pt;}
.ws141{word-spacing:-1.233067pt;}
.ws142{word-spacing:-1.207467pt;}
.ws12{word-spacing:-1.126400pt;}
.ws11c{word-spacing:-1.104000pt;}
.ws133{word-spacing:-1.083733pt;}
.ws154{word-spacing:-1.062400pt;}
.wsca{word-spacing:-1.050667pt;}
.ws132{word-spacing:-0.985600pt;}
.ws98{word-spacing:-0.890667pt;}
.ws149{word-spacing:-0.759467pt;}
.ws23{word-spacing:-0.714400pt;}
.wsd8{word-spacing:-0.661333pt;}
.wse8{word-spacing:-0.650667pt;}
.ws12a{word-spacing:-0.631467pt;}
.wsee{word-spacing:-0.576000pt;}
.wsb3{word-spacing:-0.570667pt;}
.ws14c{word-spacing:-0.563200pt;}
.wsc2{word-spacing:-0.554667pt;}
.wsc1{word-spacing:-0.549333pt;}
.ws88{word-spacing:-0.496000pt;}
.ws22{word-spacing:-0.339467pt;}
.ws27{word-spacing:-0.263467pt;}
.ws14b{word-spacing:-0.238933pt;}
.ws6c{word-spacing:-0.234667pt;}
.ws2b{word-spacing:-0.213333pt;}
.ws2e{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.050667pt;}
.ws101{word-spacing:-0.042667pt;}
.ws10{word-spacing:0.000000pt;}
.ws59{word-spacing:0.032000pt;}
.ws76{word-spacing:0.086133pt;}
.ws144{word-spacing:0.128000pt;}
.wsaf{word-spacing:0.181333pt;}
.wsb6{word-spacing:0.186667pt;}
.wsb7{word-spacing:0.192000pt;}
.ws5f{word-spacing:0.261333pt;}
.wscb{word-spacing:0.378667pt;}
.ws67{word-spacing:0.389333pt;}
.ws12c{word-spacing:0.452267pt;}
.ws81{word-spacing:0.474667pt;}
.ws126{word-spacing:0.480000pt;}
.ws35{word-spacing:0.538667pt;}
.wse7{word-spacing:0.554667pt;}
.wsf1{word-spacing:0.613333pt;}
.ws66{word-spacing:0.624000pt;}
.ws13e{word-spacing:0.652800pt;}
.ws145{word-spacing:0.674133pt;}
.ws71{word-spacing:0.730667pt;}
.ws13d{word-spacing:0.742400pt;}
.wsa5{word-spacing:0.752000pt;}
.wsa0{word-spacing:0.864000pt;}
.ws7f{word-spacing:0.917333pt;}
.ws34{word-spacing:1.024000pt;}
.wsdd{word-spacing:1.050667pt;}
.ws117{word-spacing:1.061333pt;}
.ws8e{word-spacing:1.082667pt;}
.ws1f{word-spacing:1.089333pt;}
.wsf3{word-spacing:1.093333pt;}
.ws9d{word-spacing:1.125333pt;}
.ws152{word-spacing:1.126400pt;}
.ws7a{word-spacing:1.210667pt;}
.wsc5{word-spacing:1.248000pt;}
.wsfe{word-spacing:1.280000pt;}
.ws29{word-spacing:1.307200pt;}
.ws129{word-spacing:1.352533pt;}
.ws80{word-spacing:1.376000pt;}
.ws58{word-spacing:1.424000pt;}
.ws10c{word-spacing:1.482667pt;}
.ws14d{word-spacing:1.544533pt;}
.ws89{word-spacing:1.557333pt;}
.ws77{word-spacing:1.661867pt;}
.ws9e{word-spacing:1.712000pt;}
.ws6f{word-spacing:1.733333pt;}
.ws20{word-spacing:1.748000pt;}
.ws7b{word-spacing:1.914667pt;}
.ws1e{word-spacing:1.960800pt;}
.ws1a{word-spacing:1.991200pt;}
.ws8d{word-spacing:2.010667pt;}
.wsa9{word-spacing:2.021333pt;}
.ws14a{word-spacing:2.094933pt;}
.ws119{word-spacing:2.181333pt;}
.ws128{word-spacing:2.192000pt;}
.ws45{word-spacing:2.202667pt;}
.wsa4{word-spacing:2.213333pt;}
.ws26{word-spacing:2.280000pt;}
.ws72{word-spacing:2.298667pt;}
.wsc7{word-spacing:2.314667pt;}
.ws157{word-spacing:2.338133pt;}
.ws55{word-spacing:2.378667pt;}
.ws140{word-spacing:2.444800pt;}
.wsf2{word-spacing:2.474667pt;}
.ws136{word-spacing:2.491733pt;}
.ws2a{word-spacing:2.502933pt;}
.ws21{word-spacing:2.518133pt;}
.wsb4{word-spacing:2.565333pt;}
.ws7e{word-spacing:2.640000pt;}
.ws28{word-spacing:2.649867pt;}
.ws43{word-spacing:2.677333pt;}
.ws42{word-spacing:2.682667pt;}
.ws7d{word-spacing:2.693333pt;}
.wsd3{word-spacing:2.720000pt;}
.wsfb{word-spacing:2.725333pt;}
.wsd6{word-spacing:2.730667pt;}
.ws12f{word-spacing:2.743467pt;}
.ws25{word-spacing:2.756267pt;}
.ws11f{word-spacing:2.773333pt;}
.ws105{word-spacing:2.853333pt;}
.ws5e{word-spacing:3.029333pt;}
.ws1c{word-spacing:3.050133pt;}
.ws1d{word-spacing:3.055200pt;}
.ws99{word-spacing:3.152000pt;}
.wsb1{word-spacing:3.162667pt;}
.ws12e{word-spacing:3.212800pt;}
.wsb2{word-spacing:3.253333pt;}
.ws3c{word-spacing:3.269333pt;}
.ws40{word-spacing:3.328000pt;}
.ws85{word-spacing:3.360000pt;}
.ws134{word-spacing:3.379200pt;}
.ws159{word-spacing:3.464533pt;}
.ws53{word-spacing:3.504000pt;}
.ws14e{word-spacing:3.511467pt;}
.wsb5{word-spacing:3.514667pt;}
.ws8c{word-spacing:3.552000pt;}
.wse6{word-spacing:3.589333pt;}
.wsc6{word-spacing:3.600000pt;}
.wseb{word-spacing:3.605333pt;}
.ws17{word-spacing:3.622667pt;}
.ws8b{word-spacing:3.626667pt;}
.wsd1{word-spacing:3.680000pt;}
.ws116{word-spacing:3.696000pt;}
.wsff{word-spacing:3.754667pt;}
.ws24{word-spacing:3.759467pt;}
.ws9a{word-spacing:3.765333pt;}
.ws75{word-spacing:3.818667pt;}
.wsbf{word-spacing:3.893333pt;}
.wsc0{word-spacing:4.005333pt;}
.wsf5{word-spacing:4.053333pt;}
.ws13c{word-spacing:4.066133pt;}
.ws7c{word-spacing:4.090667pt;}
.ws4f{word-spacing:4.181333pt;}
.wse5{word-spacing:4.336000pt;}
.ws60{word-spacing:4.378667pt;}
.wsd7{word-spacing:4.421333pt;}
.ws1b{word-spacing:4.433333pt;}
.ws9b{word-spacing:4.448000pt;}
.ws130{word-spacing:4.505600pt;}
.ws108{word-spacing:4.528000pt;}
.wsed{word-spacing:4.565333pt;}
.ws110{word-spacing:4.645333pt;}
.ws14f{word-spacing:4.714667pt;}
.wsfc{word-spacing:4.741333pt;}
.ws90{word-spacing:4.752000pt;}
.ws19{word-spacing:4.757600pt;}
.ws74{word-spacing:4.992000pt;}
.wsec{word-spacing:5.008000pt;}
.ws62{word-spacing:5.050667pt;}
.wsdf{word-spacing:5.146667pt;}
.wse0{word-spacing:5.152000pt;}
.wsd2{word-spacing:5.157333pt;}
.wsd0{word-spacing:5.162667pt;}
.ws68{word-spacing:5.184000pt;}
.ws143{word-spacing:5.192533pt;}
.ws103{word-spacing:5.328000pt;}
.ws148{word-spacing:5.529600pt;}
.wscc{word-spacing:5.546667pt;}
.ws118{word-spacing:5.637333pt;}
.wsbe{word-spacing:5.680000pt;}
.ws46{word-spacing:5.728000pt;}
.ws61{word-spacing:5.850667pt;}
.ws151{word-spacing:5.892267pt;}
.wsfa{word-spacing:5.909333pt;}
.ws91{word-spacing:6.149333pt;}
.ws137{word-spacing:6.169600pt;}
.ws83{word-spacing:6.176000pt;}
.ws4e{word-spacing:6.181333pt;}
.ws12b{word-spacing:6.182400pt;}
.ws125{word-spacing:6.186667pt;}
.ws41{word-spacing:6.229333pt;}
.wsa1{word-spacing:6.261333pt;}
.wsbc{word-spacing:6.352000pt;}
.wsbd{word-spacing:6.357333pt;}
.ws104{word-spacing:6.421333pt;}
.wsda{word-spacing:6.544000pt;}
.wsdb{word-spacing:6.549333pt;}
.ws97{word-spacing:6.554667pt;}
.ws3d{word-spacing:6.634667pt;}
.ws84{word-spacing:6.650667pt;}
.ws44{word-spacing:6.746667pt;}
.ws10e{word-spacing:6.778667pt;}
.ws93{word-spacing:6.826667pt;}
.ws32{word-spacing:6.869333pt;}
.ws4d{word-spacing:6.970667pt;}
.ws6a{word-spacing:6.986667pt;}
.ws69{word-spacing:7.056000pt;}
.wsd9{word-spacing:7.066667pt;}
.ws3e{word-spacing:7.136000pt;}
.ws120{word-spacing:7.210667pt;}
.wsf9{word-spacing:7.354667pt;}
.ws138{word-spacing:7.389867pt;}
.ws96{word-spacing:7.392000pt;}
.ws139{word-spacing:7.415467pt;}
.ws5b{word-spacing:7.429333pt;}
.ws9c{word-spacing:7.642667pt;}
.ws135{word-spacing:7.735467pt;}
.wsb8{word-spacing:7.808000pt;}
.ws18{word-spacing:7.833067pt;}
.wsd5{word-spacing:7.845333pt;}
.ws127{word-spacing:7.861333pt;}
.wse4{word-spacing:7.962667pt;}
.ws52{word-spacing:7.984000pt;}
.ws124{word-spacing:8.005333pt;}
.ws8f{word-spacing:8.090667pt;}
.ws38{word-spacing:8.112000pt;}
.ws64{word-spacing:8.597333pt;}
.wse3{word-spacing:8.613333pt;}
.ws3b{word-spacing:8.624000pt;}
.ws11a{word-spacing:8.672000pt;}
.ws111{word-spacing:8.677333pt;}
.ws106{word-spacing:8.698667pt;}
.ws113{word-spacing:8.720000pt;}
.wsa7{word-spacing:8.805333pt;}
.ws63{word-spacing:8.842667pt;}
.ws65{word-spacing:8.880000pt;}
.ws10d{word-spacing:9.018667pt;}
.ws48{word-spacing:9.088000pt;}
.wscf{word-spacing:9.098667pt;}
.ws13a{word-spacing:9.100800pt;}
.ws37{word-spacing:9.136000pt;}
.ws107{word-spacing:9.146667pt;}
.wsd4{word-spacing:9.157333pt;}
.ws150{word-spacing:9.241600pt;}
.wsf7{word-spacing:9.338667pt;}
.ws31{word-spacing:9.381333pt;}
.ws15{word-spacing:9.413867pt;}
.ws16{word-spacing:9.418933pt;}
.ws14{word-spacing:9.479733pt;}
.wsae{word-spacing:9.504000pt;}
.ws147{word-spacing:9.565867pt;}
.wsfd{word-spacing:9.584000pt;}
.ws56{word-spacing:9.616000pt;}
.ws87{word-spacing:9.754667pt;}
.ws30{word-spacing:9.818667pt;}
.ws4b{word-spacing:9.946667pt;}
.ws4c{word-spacing:9.952000pt;}
.ws95{word-spacing:10.005333pt;}
.wsbb{word-spacing:10.106667pt;}
.wsef{word-spacing:10.112000pt;}
.ws6e{word-spacing:10.304000pt;}
.ws6b{word-spacing:10.373333pt;}
.ws5a{word-spacing:10.597333pt;}
.ws57{word-spacing:11.104000pt;}
.ws8a{word-spacing:11.162667pt;}
.ws39{word-spacing:11.312000pt;}
.wsce{word-spacing:11.440000pt;}
.ws47{word-spacing:11.520000pt;}
.ws10a{word-spacing:11.525333pt;}
.ws4a{word-spacing:11.594667pt;}
.wsdc{word-spacing:12.064000pt;}
.ws70{word-spacing:12.138667pt;}
.ws10b{word-spacing:12.186667pt;}
.ws11b{word-spacing:12.202667pt;}
.ws36{word-spacing:12.218667pt;}
.ws122{word-spacing:12.480000pt;}
.wse2{word-spacing:12.906667pt;}
.wsad{word-spacing:12.970667pt;}
.wsf8{word-spacing:13.008000pt;}
.ws121{word-spacing:13.146667pt;}
.ws49{word-spacing:13.333333pt;}
.ws13b{word-spacing:13.367467pt;}
.ws86{word-spacing:13.888000pt;}
.ws82{word-spacing:14.512000pt;}
.wse1{word-spacing:14.560000pt;}
.wsf4{word-spacing:14.672000pt;}
.ws94{word-spacing:15.120000pt;}
.ws50{word-spacing:15.701333pt;}
.ws114{word-spacing:15.914667pt;}
.ws123{word-spacing:17.226667pt;}
.ws109{word-spacing:20.032000pt;}
.ws11d{word-spacing:20.288000pt;}
.wscd{word-spacing:21.194667pt;}
.wsa3{word-spacing:23.061333pt;}
.ws112{word-spacing:27.210667pt;}
.ws156{word-spacing:28.552533pt;}
.ws2f{word-spacing:31.040000pt;}
.wsab{word-spacing:251.562667pt;}
.wsa{word-spacing:259.414933pt;}
.wsaa{word-spacing:263.428267pt;}
._23{margin-left:-26.640000pt;}
._24{margin-left:-17.186133pt;}
._b{margin-left:-14.229333pt;}
._c{margin-left:-13.242667pt;}
._d{margin-left:-11.418667pt;}
._8{margin-left:-10.072533pt;}
._e{margin-left:-8.501333pt;}
._6{margin-left:-6.666667pt;}
._5{margin-left:-5.277333pt;}
._1{margin-left:-3.924800pt;}
._2{margin-left:-2.264533pt;}
._0{margin-left:-1.290667pt;}
._3{width:1.056000pt;}
._4{width:2.252800pt;}
._9{width:3.268000pt;}
._f{width:4.954667pt;}
._22{width:6.656000pt;}
._7{width:9.464533pt;}
._25{width:10.949333pt;}
._21{width:12.336000pt;}
._1a{width:104.865067pt;}
._10{width:117.000533pt;}
._1c{width:220.689067pt;}
._a{width:230.492267pt;}
._14{width:295.065600pt;}
._18{width:297.407467pt;}
._1f{width:304.801067pt;}
._12{width:306.926933pt;}
._16{width:318.553600pt;}
._11{width:342.237867pt;}
._17{width:358.054400pt;}
._20{width:359.411200pt;}
._15{width:368.324267pt;}
._1b{width:376.059733pt;}
._13{width:380.177067pt;}
._1e{width:383.099733pt;}
._19{width:406.519467pt;}
._1d{width:435.285333pt;}
.fs2{font-size:26.666667pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:0.001333pt;}
.y38{bottom:83.564000pt;}
.yd6{bottom:85.206667pt;}
.y107{bottom:94.046667pt;}
.y13d{bottom:95.254667pt;}
.y8b{bottom:97.998800pt;}
.y65{bottom:98.089333pt;}
.y37{bottom:98.230667pt;}
.y106{bottom:110.713333pt;}
.y13c{bottom:111.921333pt;}
.y8a{bottom:114.665467pt;}
.y64{bottom:114.756000pt;}
.y105{bottom:127.380000pt;}
.y13b{bottom:128.588000pt;}
.y89{bottom:131.332133pt;}
.y63{bottom:131.422667pt;}
.y104{bottom:144.046667pt;}
.y13a{bottom:145.254667pt;}
.y88{bottom:147.998800pt;}
.y62{bottom:148.089333pt;}
.y103{bottom:160.713333pt;}
.y19d{bottom:161.241333pt;}
.y139{bottom:161.921333pt;}
.y19c{bottom:162.088000pt;}
.y36{bottom:162.390867pt;}
.y87{bottom:164.665467pt;}
.y61{bottom:164.756000pt;}
.y19b{bottom:176.088000pt;}
.y102{bottom:177.380000pt;}
.y35{bottom:177.725333pt;}
.y138{bottom:178.588000pt;}
.y86{bottom:181.332133pt;}
.y60{bottom:181.422667pt;}
.y19a{bottom:190.088000pt;}
.y34{bottom:193.058333pt;}
.y101{bottom:194.046667pt;}
.y137{bottom:195.254667pt;}
.y85{bottom:197.998800pt;}
.y5f{bottom:198.089333pt;}
.y161{bottom:202.518667pt;}
.y199{bottom:204.088000pt;}
.y33{bottom:208.391333pt;}
.y100{bottom:210.713333pt;}
.y136{bottom:211.921333pt;}
.y84{bottom:214.665467pt;}
.y5e{bottom:214.756000pt;}
.y198{bottom:218.088000pt;}
.y160{bottom:219.185333pt;}
.y32{bottom:223.724333pt;}
.yff{bottom:227.380000pt;}
.y135{bottom:228.588000pt;}
.y5d{bottom:231.422667pt;}
.y197{bottom:232.088000pt;}
.y15f{bottom:235.852000pt;}
.y83{bottom:237.001333pt;}
.y31{bottom:239.058667pt;}
.yfe{bottom:244.046667pt;}
.y134{bottom:245.254667pt;}
.y196{bottom:246.088000pt;}
.y5c{bottom:248.089333pt;}
.y15e{bottom:252.518667pt;}
.y30{bottom:254.391667pt;}
.y195{bottom:260.088000pt;}
.yfd{bottom:260.713333pt;}
.y133{bottom:261.921333pt;}
.y82{bottom:263.117333pt;}
.y5b{bottom:264.756000pt;}
.y15d{bottom:269.185333pt;}
.y2f{bottom:269.724667pt;}
.y194{bottom:274.088000pt;}
.yfc{bottom:277.380000pt;}
.y132{bottom:278.588000pt;}
.y81{bottom:279.784000pt;}
.y5a{bottom:281.422667pt;}
.y2e{bottom:285.057667pt;}
.y15c{bottom:285.852000pt;}
.y193{bottom:288.088000pt;}
.yfb{bottom:294.046667pt;}
.y131{bottom:295.254667pt;}
.y80{bottom:296.450667pt;}
.y59{bottom:298.089333pt;}
.y2d{bottom:300.391667pt;}
.y192{bottom:302.088000pt;}
.y15b{bottom:302.518667pt;}
.yfa{bottom:310.713333pt;}
.y130{bottom:311.921333pt;}
.y7f{bottom:313.117333pt;}
.y58{bottom:314.756000pt;}
.y2c{bottom:315.724667pt;}
.y191{bottom:316.088000pt;}
.y15a{bottom:319.185333pt;}
.yf9{bottom:327.380000pt;}
.y12f{bottom:328.588000pt;}
.y7e{bottom:329.784000pt;}
.y190{bottom:330.088000pt;}
.y2b{bottom:331.057667pt;}
.y57{bottom:331.422667pt;}
.yf8{bottom:344.046667pt;}
.y18f{bottom:344.088000pt;}
.y12e{bottom:345.254667pt;}
.y7d{bottom:346.450667pt;}
.y159{bottom:347.190800pt;}
.y2a{bottom:347.361333pt;}
.y56{bottom:348.089333pt;}
.y18e{bottom:358.088000pt;}
.yf7{bottom:360.713333pt;}
.y12d{bottom:361.921333pt;}
.y7c{bottom:363.117333pt;}
.y55{bottom:364.756000pt;}
.y18d{bottom:372.088000pt;}
.yf6{bottom:377.380000pt;}
.y12c{bottom:378.588000pt;}
.y7b{bottom:379.784000pt;}
.y54{bottom:381.422667pt;}
.y18c{bottom:386.088000pt;}
.y158{bottom:386.534133pt;}
.yf5{bottom:394.046667pt;}
.y12b{bottom:395.254667pt;}
.y7a{bottom:396.450667pt;}
.y53{bottom:398.089333pt;}
.y18b{bottom:400.088000pt;}
.y157{bottom:403.867467pt;}
.y29{bottom:404.194867pt;}
.y27{bottom:405.165800pt;}
.y12a{bottom:411.921333pt;}
.y79{bottom:413.117333pt;}
.y18a{bottom:414.088000pt;}
.y52{bottom:414.756000pt;}
.y28{bottom:419.527867pt;}
.y26{bottom:420.498667pt;}
.y156{bottom:421.200800pt;}
.y189{bottom:428.088000pt;}
.yb4{bottom:428.282800pt;}
.yd5{bottom:428.297333pt;}
.y129{bottom:428.588000pt;}
.yf4{bottom:429.518667pt;}
.y78{bottom:429.784000pt;}
.y51{bottom:431.422667pt;}
.y155{bottom:438.534133pt;}
.y25{bottom:440.386667pt;}
.y188{bottom:442.088000pt;}
.yb3{bottom:444.949467pt;}
.yd4{bottom:444.964000pt;}
.y128{bottom:445.254667pt;}
.y50{bottom:448.089333pt;}
.yf3{bottom:451.557067pt;}
.y77{bottom:452.120000pt;}
.y154{bottom:455.867467pt;}
.y187{bottom:456.088000pt;}
.y24{bottom:459.308333pt;}
.yb2{bottom:461.616133pt;}
.yd3{bottom:461.630667pt;}
.y127{bottom:461.921333pt;}
.y4f{bottom:464.756000pt;}
.y186{bottom:470.088000pt;}
.y153{bottom:473.200800pt;}
.yf2{bottom:473.595467pt;}
.y23{bottom:474.641333pt;}
.yb1{bottom:478.282800pt;}
.yd2{bottom:478.297333pt;}
.y126{bottom:478.588000pt;}
.y76{bottom:478.901467pt;}
.y4e{bottom:481.422667pt;}
.y185{bottom:484.088000pt;}
.y22{bottom:489.974333pt;}
.y152{bottom:490.534133pt;}
.yb0{bottom:494.949467pt;}
.yd1{bottom:494.964000pt;}
.y125{bottom:495.254667pt;}
.y75{bottom:495.568133pt;}
.yf1{bottom:495.633867pt;}
.y184{bottom:498.088000pt;}
.y4d{bottom:498.089333pt;}
.y21{bottom:505.307333pt;}
.y151{bottom:507.867467pt;}
.yd0{bottom:511.630667pt;}
.y124{bottom:511.921333pt;}
.y183{bottom:512.088000pt;}
.y74{bottom:512.234800pt;}
.y4c{bottom:514.756000pt;}
.yaf{bottom:517.285467pt;}
.yf0{bottom:517.672267pt;}
.y20{bottom:520.640333pt;}
.y150{bottom:525.200800pt;}
.y182{bottom:526.088000pt;}
.ycf{bottom:528.297333pt;}
.y123{bottom:528.588000pt;}
.y73{bottom:528.901467pt;}
.y4b{bottom:531.422667pt;}
.y1f{bottom:535.973333pt;}
.yef{bottom:539.710667pt;}
.y181{bottom:540.088000pt;}
.y14f{bottom:541.867467pt;}
.yce{bottom:544.964000pt;}
.y122{bottom:545.254667pt;}
.y72{bottom:545.568133pt;}
.y4a{bottom:548.089333pt;}
.y1e{bottom:551.306333pt;}
.yae{bottom:554.072000pt;}
.y180{bottom:554.088000pt;}
.y14e{bottom:558.534133pt;}
.ycd{bottom:561.630667pt;}
.y121{bottom:561.921333pt;}
.y71{bottom:562.234800pt;}
.yee{bottom:564.058933pt;}
.y49{bottom:564.756000pt;}
.y1d{bottom:566.639333pt;}
.y17f{bottom:568.088000pt;}
.y14d{bottom:575.200800pt;}
.y120{bottom:578.588000pt;}
.yed{bottom:578.725333pt;}
.y70{bottom:578.901467pt;}
.y48{bottom:581.422667pt;}
.y1c{bottom:581.972333pt;}
.y17e{bottom:582.088000pt;}
.ycc{bottom:583.966667pt;}
.y14c{bottom:591.867467pt;}
.yad{bottom:593.416000pt;}
.y11f{bottom:595.254667pt;}
.y6f{bottom:595.568133pt;}
.y17d{bottom:596.088000pt;}
.y1b{bottom:597.305333pt;}
.y47{bottom:598.089333pt;}
.y14b{bottom:608.534133pt;}
.yac{bottom:610.082667pt;}
.ycb{bottom:610.082800pt;}
.y17c{bottom:610.088000pt;}
.yec{bottom:610.392533pt;}
.y11e{bottom:611.921333pt;}
.y6e{bottom:612.234800pt;}
.y1a{bottom:612.638333pt;}
.y46{bottom:614.756000pt;}
.y17b{bottom:624.088000pt;}
.y14a{bottom:625.200800pt;}
.yab{bottom:626.749333pt;}
.yca{bottom:626.749467pt;}
.y19{bottom:627.971333pt;}
.y11d{bottom:628.588000pt;}
.yeb{bottom:628.825600pt;}
.y6d{bottom:628.901467pt;}
.y45{bottom:631.422667pt;}
.y17a{bottom:638.088000pt;}
.y149{bottom:641.867467pt;}
.y18{bottom:643.304333pt;}
.yaa{bottom:643.416000pt;}
.yc9{bottom:643.416133pt;}
.y11c{bottom:645.254667pt;}
.y6c{bottom:645.568133pt;}
.yea{bottom:647.257600pt;}
.y44{bottom:648.089333pt;}
.y179{bottom:652.088000pt;}
.y148{bottom:658.534133pt;}
.y17{bottom:659.607867pt;}
.ya9{bottom:660.082667pt;}
.yc8{bottom:660.082800pt;}
.y11b{bottom:661.921333pt;}
.y6b{bottom:662.234800pt;}
.y43{bottom:664.756000pt;}
.ye9{bottom:665.689600pt;}
.y178{bottom:666.088000pt;}
.y147{bottom:675.200800pt;}
.ya8{bottom:676.749333pt;}
.yc7{bottom:676.749467pt;}
.y11a{bottom:678.588000pt;}
.y177{bottom:680.088000pt;}
.y42{bottom:681.422667pt;}
.ye8{bottom:684.121600pt;}
.y6a{bottom:684.570667pt;}
.y146{bottom:691.867467pt;}
.ya7{bottom:693.416000pt;}
.yc6{bottom:693.416133pt;}
.y176{bottom:694.088000pt;}
.y119{bottom:695.254667pt;}
.y41{bottom:698.089333pt;}
.ye7{bottom:702.554667pt;}
.y175{bottom:708.088000pt;}
.y145{bottom:708.534133pt;}
.y16{bottom:708.762533pt;}
.ya6{bottom:710.082667pt;}
.yc5{bottom:710.082800pt;}
.y118{bottom:711.921333pt;}
.y40{bottom:714.756000pt;}
.ye5{bottom:720.986667pt;}
.y69{bottom:722.025333pt;}
.y174{bottom:722.088000pt;}
.y144{bottom:725.200800pt;}
.y15{bottom:725.429200pt;}
.ya5{bottom:726.749333pt;}
.ye4{bottom:727.653333pt;}
.y117{bottom:728.588000pt;}
.y3f{bottom:731.422667pt;}
.yc4{bottom:732.418667pt;}
.ye6{bottom:734.320000pt;}
.y173{bottom:736.088000pt;}
.y143{bottom:741.867467pt;}
.ya4{bottom:743.416000pt;}
.y116{bottom:745.254667pt;}
.y14{bottom:745.874533pt;}
.y3e{bottom:748.089333pt;}
.y172{bottom:750.088000pt;}
.ye3{bottom:756.865600pt;}
.y142{bottom:758.534133pt;}
.yc3{bottom:758.534800pt;}
.ya3{bottom:760.082667pt;}
.y68{bottom:761.369333pt;}
.y115{bottom:761.921333pt;}
.y171{bottom:764.088000pt;}
.y3d{bottom:764.756000pt;}
.ye2{bottom:771.532000pt;}
.y12{bottom:773.878667pt;}
.y13{bottom:773.880000pt;}
.y141{bottom:775.200800pt;}
.yc2{bottom:775.201467pt;}
.ya2{bottom:776.749333pt;}
.y67{bottom:778.036000pt;}
.y170{bottom:778.088000pt;}
.y114{bottom:778.588000pt;}
.y140{bottom:791.867467pt;}
.yc1{bottom:791.868133pt;}
.y16f{bottom:792.088000pt;}
.y3c{bottom:792.761333pt;}
.ya1{bottom:793.416000pt;}
.y66{bottom:794.702667pt;}
.y10{bottom:795.212000pt;}
.y11{bottom:795.213333pt;}
.y113{bottom:795.254667pt;}
.ye1{bottom:802.864933pt;}
.y16e{bottom:806.088000pt;}
.y13f{bottom:808.534133pt;}
.yc0{bottom:808.534800pt;}
.y112{bottom:811.921333pt;}
.ya0{bottom:815.752000pt;}
.ye0{bottom:819.531600pt;}
.y16d{bottom:820.088000pt;}
.y13e{bottom:825.200800pt;}
.ybf{bottom:825.201467pt;}
.y111{bottom:828.588000pt;}
.y16c{bottom:834.088000pt;}
.ydf{bottom:836.198267pt;}
.y9f{bottom:841.867467pt;}
.ybe{bottom:841.868133pt;}
.y110{bottom:845.254667pt;}
.yf{bottom:846.782667pt;}
.y16b{bottom:848.088000pt;}
.yde{bottom:852.864933pt;}
.y9e{bottom:858.534133pt;}
.ybd{bottom:858.534800pt;}
.y10f{bottom:861.921333pt;}
.y16a{bottom:862.088000pt;}
.ye{bottom:863.449333pt;}
.ydd{bottom:869.531600pt;}
.y95{bottom:870.576333pt;}
.y93{bottom:871.547133pt;}
.y9d{bottom:875.200800pt;}
.ybc{bottom:875.201467pt;}
.y169{bottom:876.088000pt;}
.y10e{bottom:878.588000pt;}
.yd{bottom:883.896000pt;}
.y94{bottom:885.909333pt;}
.ydc{bottom:886.198267pt;}
.y92{bottom:886.880000pt;}
.y168{bottom:890.088000pt;}
.y9c{bottom:891.867467pt;}
.ybb{bottom:891.868133pt;}
.y10d{bottom:895.254667pt;}
.ydb{bottom:902.864933pt;}
.y167{bottom:904.088000pt;}
.y91{bottom:906.768000pt;}
.y9b{bottom:908.534133pt;}
.yba{bottom:908.534800pt;}
.yb{bottom:911.900000pt;}
.yc{bottom:911.901333pt;}
.y10c{bottom:911.921333pt;}
.y166{bottom:918.088000pt;}
.yda{bottom:919.531600pt;}
.y9a{bottom:925.200800pt;}
.yb9{bottom:925.201467pt;}
.y90{bottom:925.687000pt;}
.y10b{bottom:928.588000pt;}
.y165{bottom:932.088000pt;}
.y9{bottom:933.233333pt;}
.ya{bottom:933.234667pt;}
.yd9{bottom:936.198267pt;}
.y8f{bottom:941.020467pt;}
.y99{bottom:941.867467pt;}
.yb8{bottom:941.868133pt;}
.y10a{bottom:945.254667pt;}
.y164{bottom:946.088000pt;}
.yd8{bottom:952.864933pt;}
.y8e{bottom:956.353467pt;}
.y98{bottom:958.534133pt;}
.yb7{bottom:958.534800pt;}
.y163{bottom:960.088000pt;}
.y109{bottom:961.921333pt;}
.yd7{bottom:969.531600pt;}
.y8d{bottom:971.686467pt;}
.y162{bottom:974.088000pt;}
.y97{bottom:975.200800pt;}
.yb6{bottom:975.201467pt;}
.y39{bottom:975.857333pt;}
.y8c{bottom:987.019467pt;}
.y108{bottom:989.926133pt;}
.y96{bottom:991.867467pt;}
.yb5{bottom:991.868133pt;}
.y5{bottom:994.683733pt;}
.y7{bottom:998.417200pt;}
.y4{bottom:1002.683733pt;}
.y2{bottom:1002.903467pt;}
.y3{bottom:1010.683733pt;}
.y1{bottom:1017.303333pt;}
.y6{bottom:1018.486000pt;}
.y3b{bottom:1029.662800pt;}
.y3a{bottom:1030.633600pt;}
.h4{height:19.427083pt;}
.h11{height:31.062500pt;}
.h10{height:31.083333pt;}
.he{height:33.003906pt;}
.hd{height:33.053531pt;}
.ha{height:33.054065pt;}
.hf{height:33.226708pt;}
.h5{height:34.945312pt;}
.h3{height:34.968750pt;}
.hb{height:36.936198pt;}
.hc{height:37.109375pt;}
.h8{height:38.828125pt;}
.h12{height:38.854167pt;}
.h9{height:39.869792pt;}
.h2{height:42.739583pt;}
.h7{height:46.593750pt;}
.h13{height:57.729167pt;}
.h1{height:1096.000000pt;}
.h6{height:1096.061333pt;}
.h0{height:1096.062667pt;}
.w2{width:812.558667pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x11{left:45.354267pt;}
.x3{left:49.747067pt;}
.x12{left:51.023600pt;}
.x25{left:52.839867pt;}
.xf{left:56.356933pt;}
.x2{left:61.262400pt;}
.x1b{left:73.700933pt;}
.x1e{left:87.396400pt;}
.x15{left:88.818667pt;}
.xa{left:90.045201pt;}
.x19{left:94.152133pt;}
.x14{left:111.496000pt;}
.x1{left:123.629200pt;}
.x6{left:137.025335pt;}
.xd{left:143.725333pt;}
.xe{left:151.932000pt;}
.x10{left:164.073333pt;}
.x1f{left:176.638000pt;}
.xc{left:179.718667pt;}
.x7{left:193.140000pt;}
.x9{left:194.241333pt;}
.x8{left:196.217333pt;}
.x18{left:201.869333pt;}
.xb{left:227.948001pt;}
.x20{left:245.235333pt;}
.x21{left:273.987333pt;}
.x22{left:352.004400pt;}
.x1c{left:402.519467pt;}
.x24{left:421.706133pt;}
.x1d{left:425.196800pt;}
.x23{left:427.640000pt;}
.x16{left:440.314667pt;}
.x17{left:462.992000pt;}
.x13{left:529.664000pt;}
.x4{left:596.021333pt;}
.x5{left:602.929733pt;}
.x1a{left:702.700000pt;}
}




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